-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
257 lines (221 loc) · 10.8 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import ssh2.libssh2;
import ssh2.libssh2_h;
import java.foreign.NativeTypes;
import java.foreign.Scope;
import java.foreign.memory.Callback;
import java.foreign.memory.Pointer;
import java.io.Console;
import java.io.File;
import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.IOException;
import java.lang.reflect.Field;
import java.net.Socket;
import java.nio.charset.StandardCharsets;
import java.util.function.Supplier;
import static java.foreign.memory.Pointer.ofNull;
/**
* A demo Java SSH2 client using JDK13 <a href="https://openjdk.java.net/projects/panama/">Project Panama</a>.
* <p>
* Based on libSSH2 <a href="https://www.libssh2.org/examples/">sample source code</a>.
*/
public class Main {
private static final String RT_SHELL = "shell";
private static final String RT_EXEC = "exec";
private static final String TERMINAL_TYPE = "ansi";
private static final String CHANNEL_TYPE = "session";
private static final int BUFSIZE = libssh2_h.LIBSSH2_CHANNEL_PACKET_DEFAULT + 1;
private static String hostname, username, keysPath;
private static int port, connType;
private static boolean g_quit = false;
private static Pointer<libssh2._LIBSSH2_SESSION> ptrSession = Pointer.ofNull();
private static Pointer<libssh2._LIBSSH2_CHANNEL> ptrChannel = Pointer.ofNull();
public static void main(String[] args) {
parseArgs(args);
int rc = libssh2_h.libssh2_init(0);
if (rc != 0) {
System.err.println(String.format("Could not init libssh2: %d", rc));
return;
}
try (Scope scope = libssh2_h.scope().fork()) {
try {
System.out.println(String.format("Connecting to %s:%d...", hostname, port));
ptrSession = libssh2_h.libssh2_session_init_ex(Callback.ofNull(), Callback.ofNull(),
Callback.ofNull(), ofNull());
final int fd = (int) connectFd(hostname, port);
bio(() -> libssh2_h.libssh2_session_handshake(ptrSession, fd), "SSH handshake failed!");
String fingerprint = Pointer.toString(libssh2_h.libssh2_hostkey_hash(ptrSession,
libssh2_h.LIBSSH2_HOSTKEY_HASH_SHA1));
System.out.println(String.format("SHA1 Fingerprint: %s", bytesToHex(
fingerprint.getBytes(StandardCharsets.US_ASCII))));
final String auth = Pointer.toString(libssh2_h.libssh2_userauth_list(ptrSession,
scope.allocateCString(username), username.length()));
System.out.println("Authentications: " + auth);
if (auth.contains("password") && connType == 1) {
Console console = System.console();
StringBuilder sb = new StringBuilder();
sb.append(console.readPassword("%s's password: ", hostname));
bio(() -> libssh2_h.libssh2_userauth_password_ex(ptrSession,
scope.allocateCString(username), username.length(),
scope.allocateCString(sb.toString()), sb.length(), Callback.ofNull()), "Authentication by password failed!");
System.out.println("Authentication by password successful.");
} else if (auth.contains("publickey") && connType == 2) {
System.out.println("Using SSH keys from " + keysPath);
bio(() -> libssh2_h.libssh2_userauth_publickey_fromfile_ex(ptrSession,
scope.allocateCString(username), username.length(),
scope.allocateCString(keysPath + "id_rsa.pub"), scope.allocateCString(keysPath + "id_rsa"),
scope.allocateCString("")), "Authentication by public key failed!");
System.out.println("Authentication by public key successful.");
} else {
throw new RuntimeException("No known authentication type supported!");
}
ptrChannel = libssh2_h.libssh2_channel_open_ex(ptrSession,
scope.allocateCString(CHANNEL_TYPE), CHANNEL_TYPE.length(),
libssh2_h.LIBSSH2_CHANNEL_WINDOW_DEFAULT,
libssh2_h.LIBSSH2_CHANNEL_PACKET_DEFAULT,
ofNull(), 0);
if (ptrChannel.isNull()) {
throw new RuntimeException("Could not open a session!");
}
bio(() -> libssh2_h.libssh2_channel_request_pty_ex(ptrChannel, scope.allocateCString(TERMINAL_TYPE),
TERMINAL_TYPE.length(), Pointer.ofNull(), 0,
libssh2_h.LIBSSH2_TERM_WIDTH, libssh2_h.LIBSSH2_TERM_HEIGHT,
libssh2_h.LIBSSH2_TERM_WIDTH_PX, libssh2_h.LIBSSH2_TERM_HEIGHT_PX), "Failed requesting pty!");
bio(() -> libssh2_h.libssh2_channel_process_startup(ptrChannel,
scope.allocateCString(RT_SHELL), RT_SHELL.length(), ofNull(), 0), "Unable to request shell on pty!");
// disable blocking mode
libssh2_h.libssh2_session_set_blocking(ptrSession, 0);
Thread t = new Thread(() -> {
while (!g_quit) {
String cmd = System.console().readLine();
if (cmd.equals("quit") || cmd.equals("logout") || cmd.equals("exit")) {
g_quit = true;
} else {
cmd += "\n";
long written;
while (libssh2_h.LIBSSH2_ERROR_EAGAIN == (written = libssh2_h.libssh2_channel_write_ex(
ptrChannel, 0, scope.allocateCString(cmd), cmd.length()))) {
if (written != libssh2_h.LIBSSH2_ERROR_EAGAIN && written < 0) {
throw new RuntimeException("Error writing to ssh channel!");
}
}
// bio(() -> libssh2_h.libssh2_channel_send_eof(ptrChannel), "Error writing eof to channel!");
}
}
});
t.start();
long read;
while (!g_quit) {
Pointer<Byte> buffer = scope.allocate(NativeTypes.CHAR, BUFSIZE);
do {
read = libssh2_h.libssh2_channel_read_ex(ptrChannel, 0, buffer, BUFSIZE);
if (read < 0 && read != libssh2_h.LIBSSH2_ERROR_EAGAIN) {
break;
}
} while (libssh2_h.LIBSSH2_ERROR_EAGAIN == read && !g_quit);
if (read > 0) {
System.out.println(Pointer.toString(buffer).substring(0, (int) read));
}
if (libssh2_h.libssh2_channel_eof(ptrChannel) == 1) {
break;
}
}
t.join();
System.out.println("Good bye!");
} finally {
// clean up
if (!ptrChannel.isNull()) {
libssh2_h.libssh2_channel_free(ptrChannel);
}
if (!ptrSession.isNull()) {
libssh2_h.libssh2_session_disconnect_ex(ptrSession, libssh2_h.SSH_DISCONNECT_BY_APPLICATION,
scope.allocateCString("Normal shutdown."), Pointer.ofNull());
libssh2_h.libssh2_session_free(ptrSession);
}
}
} catch (Throwable t) {
t.printStackTrace();
} finally {
libssh2_h.libssh2_exit();
}
}
private static void parseArgs(String[] args) {
if (args.length < 4) {
throw new RuntimeException("Insufficient arguments!");
}
switch (args[0]) {
case "-p":
connType = 1;
break;
case "-k":
connType = 2;
if (args.length < 5) {
throw new RuntimeException("Please specify the path to your id_rsa and id_rsa.pub keys as last parameter.");
}
break;
default:
throw new RuntimeException("Invalid authentication type!");
}
hostname = args[1];
port = Integer.parseInt(args[2]);
username = args[3];
if (connType == 2) {
keysPath = args[4];
if (!keysPath.endsWith(File.separator)) {
keysPath += File.separator;
}
}
}
// --- UTILS
private static void bio(Supplier<Integer> supplier, String errorMsg) {
int rc;
while (libssh2_h.LIBSSH2_ERROR_EAGAIN == (rc = supplier.get())) ;
if (rc != 0) {
throw new RuntimeException(errorMsg + " (RC=" + rc + ")");
}
}
private static long connectFd(String address, int port) throws IOException {
var socket = new Socket(address, port);
var fs = (FileInputStream) socket.getInputStream();
// a somewhat hacky way to get the socket's file id
return fileNo(fs.getFD());
}
// @see - https://stackoverflow.com/a/48070332/10364676
public static long fileNo(FileDescriptor fd) throws IOException {
try {
if (fd.valid()) {
// windows builds use long handle
long fileno = getFileDescriptorField(fd, "handle", false);
if (fileno != -1) {
return fileno;
}
// unix builds use int fd
return getFileDescriptorField(fd, "fd", true);
}
} catch (IllegalAccessException e) {
throw new IOException("unable to access handle/fd fields in FileDescriptor", e);
} catch (NoSuchFieldException e) {
throw new IOException("FileDescriptor in this JVM lacks handle/fd fields", e);
}
return -1;
}
private static long getFileDescriptorField(FileDescriptor fd, String fieldName, boolean isInt) throws
NoSuchFieldException, IllegalAccessException {
Field field = FileDescriptor.class.getDeclaredField(fieldName);
field.setAccessible(true);
long value = isInt ? field.getInt(fd) : field.getLong(fd);
field.setAccessible(false);
return value;
}
private final static char[] hexArray = "0123456789abcdef".toCharArray();
public static String bytesToHex(byte[] bytes) {
char[] hexChars = new char[bytes.length * 3];
for (int j = 0; j < bytes.length; j++) {
int v = bytes[j] & 0xff;
hexChars[j * 3] = hexArray[v >>> 4];
hexChars[j * 3 + 1] = hexArray[v & 0x0f];
hexChars[j * 3 + 2] = ':';
}
return new String(hexChars).substring(0, hexChars.length - 1);
}
}