forked from blinksh/blink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SSHSession.m
1042 lines (878 loc) · 30.2 KB
/
SSHSession.m
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
////////////////////////////////////////////////////////////////////////////////
//
// B L I N K
//
// Copyright (C) 2016-2018 Blink Mobile Shell Project
//
// This file is part of Blink.
//
// Blink is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Blink is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Blink. If not, see <http://www.gnu.org/licenses/>.
//
// In addition, Blink is also subject to certain additional terms under
// GNU GPL version 3 section 7.
//
// You should have received a copy of these additional terms immediately
// following the terms and conditions of the GNU General Public License
// which accompanied the Blink Source Code. If not, see
// <http://www.github.com/blinksh/blink>.
//
////////////////////////////////////////////////////////////////////////////////
#include <arpa/inet.h>
#include <getopt.h>
#include <libssh2/libssh2.h>
#include <libssh2/libssh2_sftp.h>
#include <limits.h>
#include <netdb.h>
#include <poll.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/time.h>
#import "BKDefaults.h"
#import "BKHosts.h"
#import "BKPubKey.h"
#import "SSHSession.h"
#import "BlinkPaths.h"
#define REQUEST_TTY_AUTO 0
#define REQUEST_TTY_NO 1
#define REQUEST_TTY_YES 2
#define REQUEST_TTY_FORCE 3
#define PORT 22
#define TERM "xterm-256color"
static const char *usage_format =
"usage: ssh [options] [user@]hostname [command]\n"
"[-l login_name] [-i identity_file] [-p port]\n"
"[-t request_tty] [-v verbose]\n"
"\n";
typedef struct {
int address_family;
int connection_timeout;
int port;
const char *hostname;
const char *user;
int request_tty;
const char *identity_file;
const char *password;
BOOL disableHostKeyCheck;
} Options;
@interface SSHSession ()
@end
@implementation SSHSession {
Options _options;
//SSHWrapper _ssh;
int _sock;
LIBSSH2_SESSION *_session;
LIBSSH2_CHANNEL *_channel;
NSMutableArray *_identities;
const char *_command;
int _tty_flag;
}
static int waitsocket(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;
}
static void kbd_callback(const char *name, int name_len,
const char *instruction, int instruction_len,
int num_prompts,
const LIBSSH2_USERAUTH_KBDINT_PROMPT *prompts,
LIBSSH2_USERAUTH_KBDINT_RESPONSE *responses,
void **abstract)
{
SSHSession *s = (__bridge SSHSession *)(*abstract);
// We want to write straight to the control
// ssh does the same and writes straight to /dev/tty or stderr
FILE *termout = s.device.stream.out;
if (name_len > 0) {
fwrite(name, 1, name_len, termout);
fprintf(termout, "\n");
}
if (instruction_len > 0) {
fwrite(instruction, 1, instruction_len, termout);
fprintf(termout, "\n");
}
for (int i = 0; i < num_prompts; i++) {
LIBSSH2_USERAUTH_KBDINT_PROMPT prompt = prompts[i];
NSString *text = [NSString stringWithCString:prompt.text length:prompt.length];
NSLog(@"prompt: %@", text);
NSString *response = [s.device readline:text secure:!prompt.echo];
if (!response) {
fprintf(termout, "\n");
return;
}
responses[i].text = strdup(response.UTF8String);
responses[i].length = (int)[response lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
}
} /* kbd_callback */
- (int)main:(int)argc argv:(char **)argv
{
// Options
// port -p
// verbose --verbose
// command (Obtain data at the end)
// tty -t
// key -i identity file
// forced password
optind = 1;
while (1) {
int c = getopt_long(argc, argv, "p:i:htvl:", NULL, NULL);
if (c == -1) {
break;
}
char *ep;
switch (c) {
case 'p':
_options.port = (unsigned int)strtol(optarg, &ep, 10);
if (optarg == ep || *ep != '\0' || _options.port > 65536) {
return [self dieMsg:@"Wrong port value provided."];
}
break;
case 'h':
_options.disableHostKeyCheck = true;
break;
case 'v':
_debug = 1;
break;
case 'i':
_options.identity_file = optarg;
break;
case 't':
_options.request_tty = REQUEST_TTY_FORCE;
break;
case 'l':
_options.user = optarg;
break;
default:
optind = 0;
return [self dieMsg:@(usage_format)];
}
}
if (argc - optind < 1) {
return [self dieMsg:@(usage_format)];
}
NSString *userhost = [NSString stringWithFormat:@"%s", argv[optind++]];
char **command = &argv[optind];
int commands = argc - optind;
NSArray *chunks = [userhost componentsSeparatedByString:@"@"];
if ([chunks count] != 2) {
_options.hostname = [userhost UTF8String];
} else {
_options.user = [chunks[0] UTF8String];
_options.hostname = [chunks[1] UTF8String];
}
[self processHostSettings];
if (!_options.user) {
// If no user provided, use the default
_options.user = [[BKDefaults defaultUserName] UTF8String];
}
NSMutableArray *command_args = [[NSMutableArray alloc] init];
if (commands) {
for (int i = 0; i < commands; i++) {
[command_args addObject:[NSString stringWithFormat:@"%s", command[i]]];
}
_command = [[command_args componentsJoinedByString:@" "] UTF8String];
} else {
_options.request_tty = REQUEST_TTY_YES;
}
// Request tty can have different options, but depends on the process to choose whether to use it or not.
// I want to maintain the REQUEST_TTY_XXX because it will give us flexibility with the command in the future.
if ((_options.request_tty == REQUEST_TTY_FORCE) || (_options.request_tty == REQUEST_TTY_YES)) {
_tty_flag = 1;
} else {
_tty_flag = 0;
}
_options.connection_timeout = 10;
struct addrinfo *addrs;
NSError *e = nil;
// Obtain a list of all possible hosts for the name given.
if ((addrs = [self resolve_host:_options.hostname port:_options.port]) == NULL) {
return [self dieMsg:@"Could not resolve host address."];
}
// Connect to any of the hosts provided and return the successful one.
struct sockaddr_storage hostaddr;
[self ssh_connect:_options.hostname addrs:addrs succ_addr:&hostaddr error:&e];
if (e != nil) {
return [self dieMsg:[NSString stringWithFormat:@"Could not connect to host: %@", [e localizedDescription]]];
}
// Login to the host through one of the possible identities
[self load_identity_files];
[self ssh_login:_identities to:(struct sockaddr *)&hostaddr port:_options.port user:_options.user timeout:_options.connection_timeout error:&e];
if (e != nil) {
return [self dieMsg:[e localizedDescription]];
}
int exit_code = 0;
exit_code = [self ssh_session_start];
[self debugMsg:[NSString stringWithFormat:@"session finished with code %d", exit_code]];
return exit_code;
}
- (int)dieMsg:(NSString *)msg
{
fprintf(_stream.out, "%s\n", [msg UTF8String]);
return -1;
}
- (void)errMsg:(NSString *)msg
{
fprintf(_stream.err, "%s\n", [msg UTF8String]);
}
- (void)debugMsg:(NSString *)msg
{
if (_debug) {
fprintf(_stream.out, "SSHSession:DEBUG:%s\n", [msg UTF8String]);
}
}
- (void)processHostSettings
{
BKHosts *host;
if (!(host = [BKHosts withHost:[NSString stringWithUTF8String:_options.hostname]])) {
return;
}
_options.hostname = host.hostName ? [host.hostName UTF8String] : _options.hostname;
_options.port = _options.port ? _options.port : [host.port intValue];
if (!_options.user && [host.user length]) {
_options.user = [host.user UTF8String];
}
_options.identity_file = _options.identity_file ? _options.identity_file : [host.key UTF8String];
_options.password = host.password ? [host.password UTF8String] : NULL;
}
- (void)load_identity_files
{
// Obtain valid auths that will be tried for the connection
_identities = [[NSMutableArray alloc] init];
BKPubKey *pk;
if (_options.identity_file) {
if ((pk = [BKPubKey withID:[NSString stringWithUTF8String:_options.identity_file]]) != nil) {
[_identities addObject:pk];
}
}
if ((pk = [BKPubKey withID:@"id_rsa"]) != nil) {
[_identities addObject:pk];
}
}
// Hosts and no hosts tested
- (struct addrinfo *)resolve_host:(const char *)name port:(int)port
{
char strport[NI_MAXSERV];
struct addrinfo hints, *res;
int err;
if (port <= 0) {
port = PORT;
}
snprintf(strport, sizeof strport, "%d", port);
memset(&hints, 0, sizeof(hints));
// IPv4 / IPv6
hints.ai_family = _options.address_family == -1 ? AF_UNSPEC : _options.address_family;
hints.ai_socktype = SOCK_STREAM;
if ((err = getaddrinfo(name, strport, &hints, &res)) != 0) {
return NULL;
}
return res;
}
- (void)ssh_connect:(const char *)host addrs:(struct addrinfo *)aitop succ_addr:(struct sockaddr_storage *)hostaddr error:(NSError **)error
{
struct addrinfo *ai;
char ntop[NI_MAXHOST], strport[NI_MAXSERV];
for (ai = aitop; ai; ai = ai->ai_next) {
if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6) {
continue;
}
if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
ntop, sizeof(ntop), strport,
sizeof(strport), NI_NUMERICHOST | NI_NUMERICSERV) != 0) {
[self debugMsg:@"ssh_connect: getnameinfo failed"];
continue;
}
[self debugMsg:[NSString stringWithFormat:@"Connecting to %.200s [%.100s] port %s.", host, ntop, strport]];
_sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
if (_sock < 0) {
[self debugMsg:[NSString stringWithFormat:@"%s", strerror(errno)]];
if (!ai->ai_next) {
*error = [NSError errorWithDomain:@"blk.ssh.libssh2" code:-1 userInfo:@{ NSLocalizedDescriptionKey : [NSString stringWithFormat:@"ssh: connect to host %s port %s: %s", host, strport, strerror(errno)] }];
return;
}
continue;
}
if ([self timeout_connect:_sock
serv_addr:ai->ai_addr
addr_len:ai->ai_addrlen
timeout:&_options.connection_timeout] >= 0) {
// Successful connection. Save host address
memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
fprintf(_stream.out, "Connected to %s\n", ntop);
break;
} else {
[self debugMsg:[NSString stringWithFormat:@"connect to host %s port %s: %s", ntop, strport, strerror(errno)]];
_sock = -1;
}
}
if (_sock < 0) {
*error = [NSError errorWithDomain:@"blk.ssh.libssh2" code:-1 userInfo:@{ NSLocalizedDescriptionKey : [NSString stringWithFormat:@"ssh: connect to host %s port %s: %s", host, strport, strerror(errno)] }];
[self debugMsg:@"Could not establish a successful connection."];
return;
}
if (0 != [self ssh_set_session]) {
*error = [NSError errorWithDomain:@"blk.ssh.libssh2" code:-1 userInfo:@{ NSLocalizedDescriptionKey : @"Error establishing SSH session." }];
return;
}
if (!_options.disableHostKeyCheck) {
if (![self verify_host:ntop]) {
*error = [NSError errorWithDomain:@"blk.ssh.libssh2" code:-1 userInfo:@{ NSLocalizedDescriptionKey : @"Host key verification failed." }];
}
} else {
[self errMsg:@"@@@@@@ WARNING @@@@@@@@ --- Host Key check disabled."];
}
return;
}
- (int)ssh_set_session
{
int rc;
_session = libssh2_session_init();
if (!_session) {
[self debugMsg:@"Session init failed"];
// *error = [NSError errorWithDomain:@"bnk.sessions.sshwrapper" code:401 userInfo:@{NSLocalizedDescriptionKey : @"Create session failed"}];
return -1;
}
//libssh2_trace(_session, LIBSSH2_TRACE_SOCKET);
libssh2_session_flag(_session, LIBSSH2_FLAG_COMPRESS, 1);
libssh2_session_set_blocking(_session, 0);
// Set timeout for libssh2 controlled functions
libssh2_session_set_timeout(_session, _options.connection_timeout);
/* ... start it up. This will trade welcome banners, exchange keys,
* and setup crypto, compression, and MAC layers
*/
char *errmsg;
while ((rc = libssh2_session_handshake(_session, _sock)) ==
LIBSSH2_ERROR_EAGAIN)
;
if (rc) {
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self debugMsg:[NSString stringWithFormat:@"%s", errmsg]];
return -1;
}
// Set object as handler
void **handler = libssh2_session_abstract(_session);
*handler = CFBridgingRetain(self);
return 0;
}
- (void)ssh_login:(NSArray *)ids to:(struct sockaddr *)addr port:(int)port user:(const char *)user timeout:(int)timeout error:(NSError **)error
{
char *userauthlist = NULL;
int auth_type;
// Set supported auth_type from server
do {
userauthlist = libssh2_userauth_list(_session, user, (int)strlen(user));
if (!userauthlist) {
if (libssh2_session_last_errno(_session) != LIBSSH2_ERROR_EAGAIN) {
*error = [NSError errorWithDomain:@"blk.ssh.libssh2" code:-1 userInfo:@{ NSLocalizedDescriptionKey : @"No userauth list" }];
return;
} else {
waitsocket(_sock, _session); /* now we wait */
}
}
} while (!userauthlist);
[self debugMsg:[NSString stringWithFormat:@"Authenticating as '%s'.", user]];
if (strstr(userauthlist, "password") != NULL) {
auth_type |= 1;
}
if (strstr(userauthlist, "keyboard-interactive") != NULL) {
auth_type |= 2;
}
if (strstr(userauthlist, "publickey") != NULL) {
auth_type |= 4;
}
int succ = 0;
if (auth_type & 4) {
succ = [self ssh_login_publickey:user];
}
if (!succ && _options.password) {
succ = [self ssh_login_password:user password:_options.password];
}
if (!succ && (auth_type & 2)) {
succ = [self ssh_login_interactive:user];
}
if (!succ && auth_type & 1) {
succ = [self ssh_login_password:user password:NULL];
}
if (!succ) {
*error = [NSError errorWithDomain:@"blk.ssh.libssh2" code:-1 userInfo:@{ NSLocalizedDescriptionKey : [NSString stringWithFormat:@"Permission denied (%s).", userauthlist] }];
return;
}
return;
}
- (int)ssh_login_password:(const char *)user password:(char *)password
{
int retries = 3;
char *errmsg;
NSString *pass = nil;
do {
int rc;
if (!password) {
NSString *prompt = [NSString stringWithFormat:@"%s@%s's password: ", user, _options.hostname];
pass = [_device readline:prompt secure:YES];
if (!pass) {
fprintf(_device.stream.out, "\n");
return 0;
}
password = pass.UTF8String;
}
if (strlen(password) != 0) {
while ((rc = libssh2_userauth_password(_session, user, password)) == LIBSSH2_ERROR_EAGAIN)
;
if (rc == 0) {
[self debugMsg:@"Authentication by password succeeded."];
return 1;
} else if (rc != LIBSSH2_ERROR_PASSWORD_EXPIRED || rc != LIBSSH2_ERROR_AUTHENTICATION_FAILED) {
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self errMsg:[NSString stringWithFormat:@"Authentication by password failed: %s", errmsg]];
return 0;
}
}
} while (--retries);
[self debugMsg:@"Could not match user and password."];
return 0;
}
- (int)ssh_login_interactive:(const char *)user
{
int rc;
[self debugMsg:@"Attempting interactive authentication."];
// [_device setSecureTextEntry:YES];
while ((rc = libssh2_userauth_keyboard_interactive(_session, user, &kbd_callback)) == LIBSSH2_ERROR_EAGAIN)
;
// [_device setSecureTextEntry:NO];
if (rc == 0) {
[self debugMsg:@"Authentication succeeded."];
return 1;
} else {
[self debugMsg:@"Auth by password failed"];
}
return 0;
}
- (int)ssh_login_publickey:(const char *)user
{
// Try all the identities until finding a successful one, and return
for (BKPubKey *pk in _identities) {
[self debugMsg:@"Attempting authentication with publickey."];
int rc = 0;
const char *pub = [pk.publicKey UTF8String];
const char *priv = [pk.privateKey UTF8String];
if (!priv || !pub) {
[self debugMsg:@"Could not find public key files."];
return 0;
}
// char *passphrase = NULL;
NSString *passphrase = nil;
// Request passphrase from user
if ([pk isEncrypted]) {
// [_device setSecureTextEntry:YES];
NSString *prompt = [NSString stringWithFormat:@"Enter your passphrase for key '%@':", pk.ID];
passphrase = [_device readline:prompt secure:YES];
// [_device setSecureTextEntry:NO];
if (!passphrase) {
return 0;
}
}
while ((rc = libssh2_userauth_publickey_frommemory(_session, user, strlen(user),
pub, strlen(pub), // or sizeof_publickey methods
priv, strlen(priv),
passphrase.UTF8String)) == LIBSSH2_ERROR_EAGAIN)
;
if (rc == 0) {
[self debugMsg:@"Authentication succeeded."];
return 1;
} else {
[self debugMsg:@"Authentication failed"];
}
}
// Login with publickey failed
return 0;
}
- (int)timeout_connect:(int)fd serv_addr:(const struct sockaddr *)addr
addr_len:(socklen_t)len
timeout:(int *)timeoutp
{
struct timeval tv;
fd_set fdset;
int res;
int valopt = 0;
socklen_t lon;
if ([self set_nonblock:_sock] != 0) {
return -1;
}
// Trying to initiate connection as nonblock
res = connect(_sock, addr, len);
if (res == 0) {
return [self unset_nonblock:_sock];
}
if (errno != EINPROGRESS) {
return -1;
}
do {
// Set timeout params
tv.tv_sec = *timeoutp;
tv.tv_usec = 0;
FD_ZERO(&fdset);
FD_SET(fd, &fdset);
// Try to select it to write
res = select(fd + 1, NULL, &fdset, NULL, &tv);
if (res != -1 || errno != EINTR) {
//fprintf(stderr, "Error connecting %d - %s\n", errno, strerror(errno));
break;
}
} while (1);
switch (res) {
case 0:
// Timed out message
errno = ETIMEDOUT;
return -1;
case -1:
// Select failed
return -1;
case 1:
// Completed or failed. Socket selected for write
valopt = 0;
lon = sizeof(valopt);
lon = sizeof(int);
if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &valopt, &lon) == -1) {
return -1;
}
if (valopt != 0) {
errno = valopt;
return -1;
}
return [self unset_nonblock:fd];
default:
return -1;
}
}
- (int)set_nonblock:(int)fd
{
int arg;
if ((arg = fcntl(fd, F_GETFL, NULL)) < 0) {
[self debugMsg:[NSString stringWithFormat:@"Error fcntl(..., F_GETFL) (%s)", strerror(errno)]];
return -1;
}
arg |= O_NONBLOCK;
if (fcntl(fd, F_SETFL, arg) < 0) {
[self debugMsg:[NSString stringWithFormat:@"Error fcntl(..., F_GETFL) (%s)", strerror(errno)]];
return -1;
}
return 0;
}
- (int)unset_nonblock:(int)fd
{
int arg;
if ((arg = fcntl(fd, F_GETFL, NULL)) < 0) {
[self debugMsg:[NSString stringWithFormat:@"Error fcntl(..., F_GETFL) (%s)", strerror(errno)]];
return -1;
}
arg &= (~O_NONBLOCK);
if (fcntl(fd, F_SETFL, arg) < 0) {
[self debugMsg:[NSString stringWithFormat:@"Error fcntl(..., F_GETFL) (%s)", strerror(errno)]];
return -1;
}
return 0;
}
void trace(void* ptr, const char *mess, size_t size) {
NSLog(@"trace %@", @(mess));
}
- (int)ssh_session_start
{
// This function is responsible to start all the session requirements, like port forwarding, shell, commands...
// using the ssh library that we want to.
// It would be responsible to open the channels, and requesting the shells or commands as necessary
// We just have a couple of things, so maybe we can avoid it.
// [self ssh_session_setup];
// It would be responsible to read / write to the channels, shutting down the system and dropping the result of the operation.
int rc = 0;
char *errmsg;
while ((_channel = libssh2_channel_open_session(_session)) == NULL &&
libssh2_session_last_error(_session, NULL, NULL, 0) == LIBSSH2_ERROR_EAGAIN) {
waitsocket(_sock, _session);
}
if (_channel == NULL) {
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self debugMsg:[NSString stringWithFormat:@"ssh_session_start: error creating channel: %s", errmsg]];
return -1;
}
[self debugMsg:@"ssh_session_start: channel created"];
if (_tty_flag) {
// [self debugMsg:[NSString stringWithFormat:@"Sending env LC_CTYPE = UTF-8"]];
// while ((rc = libssh2_channel_setenv(_channel, "LC_CTYPE", "UTF-8")) == LIBSSH2_ERROR_EAGAIN) {
// waitsocket(_sock, _session);
// }
while ((rc = libssh2_channel_request_pty(_channel, TERM)) == LIBSSH2_ERROR_EAGAIN) {
waitsocket(_sock, _session);
}
if (rc) {
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self debugMsg:[NSString stringWithFormat:@"ssh_session_start: error creating channel: %s", errmsg]];
return -1;
}
[self debugMsg:@"ssh_session_start: pty requested"];
libssh2_channel_request_pty_size(_channel,
_device->win.ws_col,
_device->win.ws_row);
}
// Send command or start shell
if (_command != NULL) {
// else {
[self debugMsg:[NSString stringWithFormat:@"sending command: %s", _command]];
while ((rc = libssh2_channel_exec(_channel, _command)) == LIBSSH2_ERROR_EAGAIN) {
waitsocket(_sock, _session);
}
if (rc != 0) {
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self debugMsg:[NSString stringWithFormat:@"ssh_session_start: error exec: %s", errmsg]];
return -1;
}
[self debugMsg:@"exec request accepted"];
} else {
[self debugMsg:@"requesting shell"];
while ((rc = libssh2_channel_shell(_channel)) == LIBSSH2_ERROR_EAGAIN) {
waitsocket(_sock, _session);
}
if (rc) {
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self debugMsg:[NSString stringWithFormat:@"ssh_session_start: error shell : %s", errmsg]];
return -1;
}
[self debugMsg:@"shell request accepted"];
}
return [self ssh_client_loop];
}
- (int)verify_host:(char *)addr
{
LIBSSH2_KNOWNHOSTS *kh;
const char *key;
size_t key_len;
int key_type;
char *type_str;
if (!(kh = libssh2_knownhost_init(_session))) {
return -1;
}
// NSURL *dd = [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] firstObject];
// NSURL *khURL = [dd URLByAppendingPathComponent:@"known_hosts"];
const char *khFilePath = [BlinkPaths knownHostsFile].UTF8String;// [khURL.path UTF8String];
libssh2_knownhost_readfile(kh, khFilePath, LIBSSH2_KNOWNHOST_FILE_OPENSSH);
key = libssh2_session_hostkey(_session, &key_len, &key_type);
int kh_key_type = (key_type == LIBSSH2_HOSTKEY_TYPE_RSA) ? LIBSSH2_KNOWNHOST_KEY_SSHRSA : LIBSSH2_KNOWNHOST_KEY_SSHDSS;
type_str = (key_type == LIBSSH2_HOSTKEY_TYPE_RSA) ? "RSA" : "DSS";
const char *hk_hash = libssh2_hostkey_hash(_session, LIBSSH2_HOSTKEY_HASH_SHA1);
NSData *data = [NSData dataWithBytes:hk_hash length:20];
NSString *fingerprint = [data base64EncodedStringWithOptions:0];
[self debugMsg:[NSString stringWithFormat:@"Server host key: %s %@ ", type_str, fingerprint]];
int succ = 0;
if (key) {
struct libssh2_knownhost *knownHost;
int check = libssh2_knownhost_checkp(kh, _options.hostname, _options.port, key, key_len,
LIBSSH2_KNOWNHOST_TYPE_PLAIN | LIBSSH2_KNOWNHOST_KEYENC_RAW | kh_key_type,
&knownHost);
if (check == LIBSSH2_KNOWNHOST_CHECK_FAILURE) {
[self errMsg:@"Known host check failed"];
} else if (check == LIBSSH2_KNOWNHOST_CHECK_NOTFOUND) {
[self errMsg:[NSString stringWithFormat:@"The authenticity of host %.200s (%s) can't be established.\r\n"
"%s key fingerprint is %@",
_options.hostname, addr,
type_str, fingerprint]];
} else if (check == LIBSSH2_KNOWNHOST_CHECK_MISMATCH) {
[self errMsg:[NSString stringWithFormat:@"@@@@@@ REMOTE HOST IDENTIFICATION HAS CHANGED @@@@@@\r\n"
"%s host key for %.200s (%s) has changed.\r\n"
"This might be due to someone doing something nasty or just a change in the host.\r\n"
"Current %s key fingerprint is %@",
type_str, _options.hostname, addr,
type_str, fingerprint]];
} else if (check == LIBSSH2_KNOWNHOST_CHECK_MATCH) {
succ = 1;
}
}
if (!succ && (succ = [self confirm:"Are you sure you want to continue connecting (yes/no)?"])) {
[self authorize_new_key:key length:key_len type:kh_key_type knownHosts:kh filePath:khFilePath];
}
libssh2_knownhost_free(kh);
return succ;
}
- (int)authorize_new_key:(const char *)key length:(ssize_t)key_len type:(int)key_type knownHosts:(LIBSSH2_KNOWNHOSTS *)kh filePath:(const char *)kh_path
{
int rc;
// Add key to the server
rc = libssh2_knownhost_addc(kh, _options.hostname,
NULL, // No hashed addr, no salt
key, key_len,
NULL, 0, // No comment
LIBSSH2_KNOWNHOST_TYPE_PLAIN | LIBSSH2_KNOWNHOST_KEYENC_RAW | key_type, //LIBSSH2_KNOWNHOST_KEY_SSHRSA,
NULL); // No pointer to the stored structure
if (rc < 0) {
char *errmsg;
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self errMsg:[NSString stringWithFormat:@"Error adding to the known host: %s", errmsg]];
}
rc = libssh2_knownhost_writefile(kh, kh_path, LIBSSH2_KNOWNHOST_FILE_OPENSSH);
if (rc < 0) {
char *errmsg;
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self errMsg:[NSString stringWithFormat:@"Error writing known host: %s", errmsg]];
} else {
[self errMsg:[NSString stringWithFormat:@"Permanently added key for %s to list of known hosts.", _options.hostname]];
}
return 1;
}
- (int)confirm:(const char *)prompt
{
NSString *again = @"Please type 'yes' or 'no': ";
NSString *msg = @(prompt);
for (;; msg = again) {
NSString *answer = [_device readline:msg secure:NO];
if (!answer) {
break;
}
if ([[answer lowercaseString] isEqualToString:@"yes"]) {
return 1;
}
if ([[answer lowercaseString] isEqualToString:@"no"]) {
return 0;
}
}
return 0;
}
- (int)ssh_client_loop
{
int numfds = 2;
struct pollfd pfds[numfds];
ssize_t rc;
char inputbuf[BUFSIZ];
char streambuf[BUFSIZ];
BOOL mode = [_device rawMode];
[self set_nonblock:_sock];
libssh2_channel_set_blocking(_channel, 0);
if (_tty_flag) {
[self set_nonblock:fileno(_stream.in)];
mode = [_device rawMode];
[_device setRawMode:YES];
}
memset(pfds, 0, sizeof(struct pollfd) * numfds);
pfds[0].fd = _sock;
pfds[0].events = 0;
pfds[0].revents = 0;
pfds[1].fd = fileno(_stream.in);
pfds[1].events = POLLIN;
pfds[1].revents = 0;
// Wait for stream->in or socket while not ready for reading
do {
if (!pfds[0].events || pfds[0].revents & (POLLIN)) {
// Read from socket
do {
rc = libssh2_channel_read(_channel, inputbuf, BUFSIZ);
if (rc > 0) {
fwrite(inputbuf, rc, 1, _stream.out);
pfds[0].events = 0;
} else if (rc == LIBSSH2_ERROR_EAGAIN) {
// Request the socket for input
pfds[0].events = POLLIN;
}
memset(inputbuf, 0, BUFSIZ);
} while (LIBSSH2_ERROR_EAGAIN != rc && rc > 0);
do {
rc = libssh2_channel_read_stderr(_channel, inputbuf, BUFSIZ);
if (rc > 0) {
fwrite(inputbuf, rc, 1, _stream.err);
pfds[0].events |= 0;
} else if (rc == LIBSSH2_ERROR_EAGAIN) {
pfds[0].events = POLLIN;
}
memset(inputbuf, 0, BUFSIZ);
} while (LIBSSH2_ERROR_EAGAIN != rc && rc > 0);
}
if (rc < 0 && LIBSSH2_ERROR_EAGAIN != rc) {
[self debugMsg:@"error reading from socket. exiting..."];
break;
}
if (libssh2_channel_eof(_channel)) {
break;
}
rc = poll(pfds, numfds, 15000);
if (-1 == rc) {
break;
}
ssize_t towrite = 0;
if (!_stream.in || feof(_stream.in)) {
// Propagate the EOF to the other end
libssh2_channel_send_eof(_channel);
break;
}
// Input from stream
if (pfds[1].revents & POLLIN) {
towrite = fread(streambuf, 1, BUFSIZ, _stream.in);
rc = 0;
do {
rc = libssh2_channel_write(_channel, streambuf + rc, towrite);
if (rc > 0) {
towrite -= rc;
}
} while (LIBSSH2_ERROR_EAGAIN != rc && rc > 0 && towrite > 0);
memset(streambuf, 0, BUFSIZ);
}
if (rc < 0 && LIBSSH2_ERROR_EAGAIN != rc) {
char *errmsg;
libssh2_session_last_error(_session, &errmsg, NULL, 0);
[self debugMsg:[NSString stringWithFormat:@"%s", errmsg]];
[self debugMsg:@"error writing to socket. exiting..."];
break;
}