-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathesp32sshclient.cpp
506 lines (429 loc) · 13 KB
/
esp32sshclient.cpp
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
/**************************************************************************************************/
// Project: esp32sshclient
// File: esp32sshclient.h
// Description: Simple abstraction layer for create and use a SSH client from libssh2.
// Created on: 16 jun. 2019
// Last modified date: 29 jun. 2019
// Version: 0.0.1
/**************************************************************************************************/
/* Libraries */
#include <Arduino.h>
#include "esp32sshclient.h"
/**************************************************************************************************/
/* Macros */
#define _millis() (unsigned long)(esp_timer_get_time()/1000)
#define _delay(x) vTaskDelay(x/portTICK_PERIOD_MS);
/**************************************************************************************************/
static int socket_wait(int socket_fd, LIBSSH2_SESSION *session);
/**************************************************************************************************/
/* Constructor & Destructor */
// SSH Client constructor
ESP32SSHCLIENT::ESP32SSHCLIENT(void)
{
session = NULL;
channel = NULL;
sock = -1;
rc = -1;
connected = 0;
memset(response, '\0', MAX_SSH_CMD_RESPONSE_LENGTH);
init_libssh2();
}
// SSH Client destructor
ESP32SSHCLIENT::~ESP32SSHCLIENT(void)
{
if(connected)
{
libssh2_channel_free(channel);
channel = NULL;
libssh2_session_disconnect(session, "Iteration end, releasing ssh resources...");
libssh2_session_free(session);
session = NULL;
close(sock);
}
libssh2_exit();
}
/**************************************************************************************************/
/* Public Methods */
// Get SSH connection status
int8_t ESP32SSHCLIENT::is_connected(void)
{
return connected;
}
// Connect to server by password
int8_t ESP32SSHCLIENT::connect(const char* host, const uint16_t port, const char* user,
const char* pass)
{
if(!connected)
{
log_d("Connecting to Server \"%s:%d\"...\n", host, port);
if(socket_connect(host, port) == -1)
return -1;
session_create();
lets_handshake();
auth_pass(user, pass);
log_d("Connected to SSH Server.\n");
connected = 1;
}
return connected;
}
// Connect to server by public key certificate (uint8_t* args)
int8_t ESP32SSHCLIENT::connect(const char* host, const uint16_t port, const char* user,
uint8_t* pubkey, size_t pubkeylen, uint8_t* privkey, size_t privkeylen,
const char* key_passphrase)
{
if(!connected)
{
log_d("Connecting to Server \"%s:%d\"...\n", host, port);
if(socket_connect(host, port) == -1)
return -1;
session_create();
lets_handshake();
auth_publickey(user, key_passphrase, (const char*)pubkey, pubkeylen, (const char*)privkey,
privkeylen);
connected = 1;
log_d("Connected to SSH Server.\n");
}
return connected;
}
// Connect to server by public key certificate (const char* args)
int8_t ESP32SSHCLIENT::connect(const char* host, const uint16_t port, const char* user,
const char* pubkey, size_t pubkeylen, const char* privkey, size_t privkeylen,
const char* key_passphrase)
{
if(!connected)
{
log_d("Connecting to Server \"%s:%d\"...\n", host, port);
if(socket_connect(host, port) == -1)
return -1;
session_create();
lets_handshake();
auth_publickey(user, key_passphrase, pubkey, pubkeylen, privkey, privkeylen);
connected = 1;
log_d("Connected to SSH Server.\n");
}
return connected;
}
// Disconnect from server and close and release SSH session and socket
int8_t ESP32SSHCLIENT::disconnect(void)
{
if(connected)
{
channel_close();
libssh2_channel_free(channel);
channel = NULL;
libssh2_session_disconnect(session, "Iteration end, releasing ssh resources...");
libssh2_session_free(session);
session = NULL;
close(sock);
connected = 0;
log_d("Disconnected from SSH Server.\n");
}
return !connected;
}
int8_t ESP32SSHCLIENT::send_cmd(const char* cmd)
{
int bytecount = 0;
unsigned long t0, t1;
if(!connected)
return -1;
// log_d("Executing command in SSH Server:\n%s\n", cmd);
session_open();
rc = libssh2_channel_exec(channel, cmd);
t0 = _millis();
while(rc == LIBSSH2_ERROR_EAGAIN)
{
::socket_wait(sock, session);
rc = libssh2_channel_exec(channel, cmd);
t1 = _millis();
if(t1 < t0)
t1 = t0;
if(t1 - t0 > TIMEOUT_CMD_TX)
{
rc = -125; // -125 == timeout
break;
}
_delay(100);
}
if(rc != 0) {
log_d("Error: Command send fail (%d).\n", rc);
disconnect();
return -1;
}
// Wait response
memset(response, '\0', MAX_SSH_CMD_RESPONSE_LENGTH);
t0 = _millis();
rc = 255;
while(rc != 0)
{
if(bytecount >= MAX_SSH_CMD_RESPONSE_LENGTH)
break;
rc = libssh2_channel_read(channel, response, sizeof(response));
if(rc > 0)
{
bytecount += rc;
// Show in real time each received byte
/*for(int i = 0; i < rc; ++i)
fputc(response[i], stderr);
log_d("\n");*/
}
else
{
if((rc != 0) && (rc != LIBSSH2_ERROR_EAGAIN))
{
log_d("Error: Read command response fail (%d).\n", rc);
disconnect();
return -1;
}
_delay(10);
}
t1 = _millis();
if(t1 < t0)
t1 = t0;
if(t1 - t0 > TIMEOUT_CMD_RX)
{
rc = -125; // -125 == timeout
break;
}
}
response[MAX_SSH_CMD_RESPONSE_LENGTH-1] = '\0';
if(bytecount < MAX_SSH_CMD_RESPONSE_LENGTH)
response[bytecount] = '\0';
//log_d("Response:\n%s\n", response);
channel_close();
libssh2_channel_free(channel);
channel = NULL;
return rc;
}
/**************************************************************************************************/
/* Private Methods */
// Initialize libssh2
int8_t ESP32SSHCLIENT::init_libssh2(void)
{
int rc = libssh2_init(0);
if(rc != 0)
{
log_d("Error: libssh2 initialization failed (%d)\n", rc);
system_reboot();
}
log_d("SSH client initialized.\n");
return rc;
}
// Initialize socket and connect to host with it
int8_t ESP32SSHCLIENT::socket_connect(const char* host, const uint16_t port)
{
sock = socket(AF_INET, SOCK_STREAM, 0);
sin.sin_family = AF_INET;
sin.sin_port = htons(port);
sin.sin_addr.s_addr = inet_addr(host);
rc = ::connect(sock, (struct sockaddr*)(&sin), sizeof(struct sockaddr_in));
if(rc != 0)
{
log_d("Error: Connection fail (%d).\n", rc);
return -1;
}
log_d("SSH host connection established.\n");
return rc;
}
// Create SSH session
int8_t ESP32SSHCLIENT::session_create(void)
{
// Create a session instance and start it up. This will trade welcome banners,
// exchange keys, and setup crypto, compression, and MAC layers
session = libssh2_session_init();
if(!session)
{
log_d("failed to create session!\n");
system_reboot();
}
log_d("SSH session created.\n");
// Set non-blocking communication
libssh2_session_set_blocking(session, 0);
return 0;
}
// Start session handshake
int8_t ESP32SSHCLIENT::lets_handshake(void)
{
unsigned long t0, t1;
rc = libssh2_session_handshake(session, sock);
t0 = _millis();
while(rc == LIBSSH2_ERROR_EAGAIN)
{
rc = libssh2_session_handshake(session, sock);
t1 = _millis();
if(t1 < t0)
t1 = t0;
if(t1 - t0 > TIMEOUT_HANDSHAKE)
{
rc = -125; // -125 == timeout
break;
}
_delay(100);
}
if(rc != 0)
{
log_d("Failure establishing SSH session: %d\n", rc);
system_reboot();
}
log_d("SSH host session handshake success.\n");
return rc;
}
// SSH authentication using password
int8_t ESP32SSHCLIENT::auth_pass(const char* user, const char* pass)
{
unsigned long t0, t1;
rc = libssh2_userauth_password(session, user, pass);
t0 = _millis();
while(rc == LIBSSH2_ERROR_EAGAIN)
{
rc = libssh2_userauth_password(session, user, pass);
t1 = _millis();
if(t1 < t0)
t1 = t0;
if(t1 - t0 > TIMEOUT_AUTH_PASS)
{
rc = -125; // -125 == timeout
break;
}
_delay(100);
}
if(rc != 0)
{
log_d(" Authentication by password failed (%d)!\n", rc);
system_reboot();
}
log_d(" Authentication by password succeeded.\n");
return rc;
}
// SSH authentication using publickey
int8_t ESP32SSHCLIENT::auth_publickey(const char* user, const char* passphrase,
const char* pubkey, size_t pubkeylen, const char* privkey, size_t privkeylen)
{
unsigned long t0, t1;
rc = libssh2_userauth_publickey_frommemory(session, user, strlen(user), pubkey, pubkeylen,
privkey, privkeylen, passphrase);
t0 = _millis();
while(rc == LIBSSH2_ERROR_EAGAIN)
{
rc = libssh2_userauth_publickey_frommemory(session, user, strlen(user), pubkey, pubkeylen,
privkey, privkeylen, passphrase);
t1 = _millis();
if(t1 < t0)
t1 = t0;
if(t1 - t0 > TIMEOUT_AUTH_PUBKEY)
{
rc = -125; // -125 == timeout
break;
}
_delay(100);
}
if(rc != 0)
{
log_d(" Authentication by public key failed (%d)!\n", rc);
system_reboot();
}
log_d(" Authentication by public key succeeded.\n");
return rc;
}
int8_t ESP32SSHCLIENT::session_open(void)
{
unsigned long t0, t1;
/* Exec non-blocking on the remove host */
t0 = _millis();
while((channel = libssh2_channel_open_session(session)) == NULL &&
libssh2_session_last_error(session, NULL, NULL, 0) == LIBSSH2_ERROR_EAGAIN)
{
::socket_wait(sock, session);
t1 = _millis();
if(t1 < t0)
t1 = t0;
if(t1 - t0 > TIMEOUT_SESSION_OPEN)
{
rc = -125; // -125 == timeout
break;
}
_delay(100);
}
if(channel == NULL)
{
log_d("Error: SSH client session open fail.\n");
system_reboot();
return -1;
}
return 0;
}
int8_t ESP32SSHCLIENT::channel_close(void)
{
unsigned long t0, t1;
char* exitsignal = (char*)"none\0";
int exitcode;
exitcode = 127;
rc = libssh2_channel_close(channel);
t0 = _millis();
while(rc == LIBSSH2_ERROR_EAGAIN)
{
::socket_wait(sock, session);
rc = libssh2_channel_close(channel);
t1 = _millis();
if(t1 < t0)
t1 = t0;
if(t1 - t0 > TIMEOUT_CHANNEL_CLOSE)
{
rc = -125; // -125 == timeout
break;
}
_delay(100);
}
if(rc == 0)
{
exitcode = libssh2_channel_get_exit_status(channel);
libssh2_channel_get_exit_signal(channel, &exitsignal, NULL, NULL, NULL, NULL, NULL);
}
if(exitsignal)
{
//log_d("Exit signal: %s\n", exitsignal);
return -1;
}
else
{
//log_d("Exit code: %d\n", exitcode);
return 0;
}
}
// Wait for socket
static int socket_wait(int socket_fd, LIBSSH2_SESSION *session)
{
struct timeval timeout;
int rc;
fd_set fd;
fd_set *writefd = NULL;
fd_set *readfd = NULL;
int dir;
timeout.tv_sec = 10;
timeout.tv_usec = 0;
FD_ZERO(&fd);
FD_SET(socket_fd, &fd);
/* now make sure we wait in the correct direction */
dir = libssh2_session_block_directions(session);
if(dir & LIBSSH2_SESSION_BLOCK_INBOUND)
readfd = &fd;
if(dir & LIBSSH2_SESSION_BLOCK_OUTBOUND)
writefd = &fd;
rc = select(socket_fd + 1, readfd, writefd, NULL, &timeout);
return rc;
}
// Get and show host fingerprint
void ESP32SSHCLIENT::show_server_fingerprint(void)
{
const char* fingerprint = libssh2_hostkey_hash(session, LIBSSH2_HOSTKEY_HASH_SHA1);
log_d("Server Fingerprint: ");
for(int i = 0; i < 20; i++)
log_d("%02X ", (unsigned char)fingerprint[i]);
log_d("\n");
}
// Softreboot device
void ESP32SSHCLIENT::system_reboot(void)
{
log_d("Rebooting system now.\n\n");
fflush(stdout);
esp_restart();
}