-
Notifications
You must be signed in to change notification settings - Fork 5
/
SSHTunnel.m
executable file
·461 lines (414 loc) · 13.2 KB
/
SSHTunnel.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
//
// SSHTunnel.m
// SSH Tunnel Manager 2
//
// Created by Yann Bizeul on Wed Nov 19 2003.
// Copyright (c) 2003 __MyCompanyName__. All rights reserved.
//
#import "SSHTunnel.h"
#include <unistd.h>
#define T_START NSLocalizedString(@"T_START",@"")
#define T_STOP NSLocalizedString(@"T_STOP",@"")
#define S_IDLE NSLocalizedString(@"S_IDLE",@"")
#define S_CONNECTING NSLocalizedString(@"S_CONNECTING",@"")
#define S_CONNECTED NSLocalizedString(@"S_CONNECTED",@"")
#define S_AUTH NSLocalizedString(@"S_AUTH",@"")
#define S_PORT NSLocalizedString(@"S_PORT",@"")
@implementation SSHTunnel
@synthesize connName;
#pragma mark -
#pragma mark Initialization
-(id)init
{
return [ self initWithName:@"New Tunnel"];
}
-(id)initWithName:(NSString*)aName
{
NSDictionary *dictionary = [ NSDictionary dictionaryWithObjectsAndKeys:
[ NSNumber numberWithBool: NO ],@"compression",
[ NSNumber numberWithBool: YES ],@"connAuth",
@"", @"connHost",
aName, @"connName",
@"", @"connPort",
[ NSNumber numberWithBool: NO ],@"connRemote",
@"", @"connUser",
@"3des", @"encryption",
[ NSNumber numberWithBool: NO ],@"socks4",
[ NSNumber numberWithInt: 1080 ], @"socks4p",
[ NSArray array ], @"tunnelsLocal",
[ NSArray array ], @"tunnelsRemote",
[ NSNumber numberWithBool: NO ],@"v1", nil
];
return [ self initWithDictionary: dictionary ];
}
-(id)initWithDictionary:(NSDictionary*)aDictionary
{
NSEnumerator *e;
NSString *key;
self = [ super init ];
e = [[ aDictionary allKeys ] objectEnumerator ];
while (key = [ e nextObject ])
{
[ self setValue: [ aDictionary objectForKey: key ] forKey: key ];
}
code = 0;
if ([[ self valueForKey: @"autoConnect" ] boolValue ])
[ self startTunnel ];
return self;
}
+(id)tunnelWithName:(NSString*)aName
{
return [[ SSHTunnel alloc ] initWithName: aName ];
}
+(SSHTunnel*)tunnelFromDictionary:(NSDictionary*)aDictionary
{
return [[ SSHTunnel alloc ] initWithDictionary: aDictionary ];
}
+(NSArray*)tunnelsFromArray:(NSArray*)anArray
{
NSMutableArray *newArray;
SSHTunnel *currentTunnel;
NSEnumerator *e;
NSDictionary *currentTunnelDictionary;
newArray = [ NSMutableArray array ];
e = [ anArray objectEnumerator ];
while (currentTunnelDictionary = [ e nextObject ])
{
currentTunnel = [ SSHTunnel tunnelFromDictionary: currentTunnelDictionary ];
[ newArray addObject: currentTunnel ];
}
return [[ newArray copy ] autorelease ];
}
#pragma mark -
#pragma mark Adding and removing port redir.
-(void)addLocalTunnel:(NSDictionary*)aDictionary;
{
NSMutableArray *tempTunnelsLocal = [ NSMutableArray arrayWithArray: tunnelsLocal ];
[ tempTunnelsLocal addObject: aDictionary ];
[ tunnelsLocal release ];
tunnelsLocal = [ tempTunnelsLocal copy ];
}
- (void)removeLocal:(int)index
{
NSMutableArray *tempLocalTunnels = [ tunnelsLocal mutableCopy ];
[ tempLocalTunnels removeObjectAtIndex: index ];
[ tunnelsLocal release ];
tunnelsLocal = [ tempLocalTunnels copy ];
[ tempLocalTunnels release ];
}
-(void)addRemoteTunnel:(NSDictionary*)aDictionary;
{
NSMutableArray *tempTunnelsRemote = [ NSMutableArray arrayWithArray: tunnelsRemote ];
[ tempTunnelsRemote addObject: aDictionary ];
[ tunnelsRemote release ];
tunnelsRemote = [ tempTunnelsRemote copy ];
}
- (void)removeRemote:(int)index
{
NSMutableArray *tempRemoteTunnels = [ tunnelsRemote mutableCopy ];
[ tempRemoteTunnels removeObjectAtIndex: index ];
[ tunnelsRemote release ];
tunnelsRemote = [ tempRemoteTunnels copy ];
[ tempRemoteTunnels release ];
}
- (void)setLocalValue:(NSString*)aValue ofTunnel:(int)index forKey:(NSString*)key
{
NSMutableArray *tempLocalTunnel;
NSMutableDictionary *tempCurrentTunnel;
tempLocalTunnel = [tunnelsLocal mutableCopy];
tempCurrentTunnel = [[ tempLocalTunnel objectAtIndex: index ] mutableCopy ];
[ tempCurrentTunnel setObject: aValue forKey: key ];
[ tempLocalTunnel replaceObjectAtIndex:index withObject:[tempCurrentTunnel copy ]];
[ tempCurrentTunnel release ];
[ tunnelsLocal release ];
tunnelsLocal = [ tempLocalTunnel copy ];
}
- (void)setRemoteValue:(NSString*)aValue ofTunnel:(int)index forKey:(NSString*)key
{
NSMutableArray *tempRemoteTunnel;
NSMutableDictionary *tempCurrentTunnel;
tempRemoteTunnel = [tunnelsRemote mutableCopy];
tempCurrentTunnel = [[ tempRemoteTunnel objectAtIndex: index ] mutableCopy ];
[ tempCurrentTunnel setObject: aValue forKey: key ];
[ tempRemoteTunnel replaceObjectAtIndex:index withObject:[tempCurrentTunnel copy ]];
[ tempCurrentTunnel release ];
[ tunnelsRemote release ];
tunnelsRemote = [ tempRemoteTunnel copy ];
}
#pragma mark -
#pragma mark Execution related
- (void)startTunnel
{
if ([ self isRunning ])
return;
shouldStop = NO;
[ NSThread detachNewThreadSelector:@selector(launchTunnel:)
toTarget: self
withObject: nil ];
}
- (void)stopTunnel
{
if (! [ self isRunning ])
return;
shouldStop=YES;
[ self setValue: nil forKey: @"status" ];
[ task terminate ];
code = 0;
[[ NSNotificationCenter defaultCenter] postNotificationName:@"STMStatusChanged" object:self ];
}
- (void)toggleTunnel
{
if ([ self isRunning ])
[ self stopTunnel ];
else
[ self startTunnel ];
}
- (void)launchTunnel:(id)foo;
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
if (task)
[ task release ];
task = [[ NSTask alloc ] init ];
NSMutableDictionary *environment = [ NSMutableDictionary dictionaryWithDictionary: [[ NSProcessInfo processInfo ] environment ]];
NSString *pathToAuthentifier = [[ NSBundle mainBundle ] pathForResource: @"askForPass" ofType: @"sh" ];
if (socks4)
[ task setLaunchPath: [[ NSBundle mainBundle ] pathForResource: @"ssh" ofType: @"" ]];
else
[ task setLaunchPath: @"/usr/bin/ssh" ];
[ task setArguments: [ self arguments ]];
if (connAuth)
{
[ environment removeObjectForKey: @"SSH_AGENT_PID" ];
[ environment removeObjectForKey: @"SSH_AUTH_SOCK" ];
[ environment setObject: pathToAuthentifier forKey: @"SSH_ASKPASS" ];
[ environment setObject:@":0" forKey:@"DISPLAY" ];
}
[ environment setObject: connName forKey: @"TUNNEL_NAME" ];
[ task setEnvironment: environment ];
stdErrPipe = [[ NSPipe alloc ] init ];
[ task setStandardError: stdErrPipe ];
[[ NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(stdErr:)
name: @"NSFileHandleDataAvailableNotification"
object:[ stdErrPipe fileHandleForReading]];
[[ stdErrPipe fileHandleForReading] waitForDataInBackgroundAndNotify ];
NSLog(T_START,connName);
[ self setValue: S_CONNECTING forKey: @"status" ];
code = 1;
[ task launch ];
[[ NSNotificationCenter defaultCenter] postNotificationName:@"STMStatusChanged" object:self ];
[ task waitUntilExit ];
sleep(1);
code = 0;
[ self setValue: S_IDLE forKey: @"status" ];
NSLog(T_STOP,connName);
[[ NSNotificationCenter defaultCenter] removeObserver:self
name: @"NSFileHandleDataAvailableNotification"
object:[ stdErrPipe fileHandleForReading]];
[ task release ];
task = nil;
[ stdErrPipe release ];
stdErrPipe = nil;
[[ NSNotificationCenter defaultCenter] postNotificationName:@"STMStatusChanged" object:self ];
if (! shouldStop)
[ self startTunnel ];
[ pool release ];
}
- (void)stdErr:(NSNotification*)aNotification
{
NSData *data = [[ aNotification object ] availableData ];
NSString *log = [[ NSString alloc ] initWithData: data encoding: NSASCIIStringEncoding ];
BOOL wait = YES;
if ([ log length ])
{
//NSLog(log);
NSArray *lines = [ log componentsSeparatedByString:@"\n" ];
NSEnumerator *e = [ lines objectEnumerator ];
NSString *line;
while (line = [ e nextObject ])
{
if ([ line rangeOfString:@"Entering interactive session." ].location != NSNotFound)
{
code = 2;
[ self setValue: S_CONNECTED forKey: @"status"];
}
if ([ line rangeOfString:@"Authentication succeeded" ].location != NSNotFound)
[ self setValue: S_AUTH forKey: @"status"];
if ([ line rangeOfString:@"Connections to local port" ].location != NSNotFound)
{
NSScanner *s;
NSString *port;
s = [ NSScanner scannerWithString:log];
[ s scanUpToString: @"Connections to local port " intoString: nil ];
[ s scanString: @"Connections to local port " intoString: nil ];
[ s scanUpToString: @"forwarded" intoString:&port];
[ self setValue: [ NSString stringWithFormat: @"Port %@ forwarded", port ] forKey: @"status"];
}
if ([ line rangeOfString:@"closed by remote host." ].location != NSNotFound)
{
[ task terminate];
[ self setValue: @"Connection closed" forKey: @"status"];
wait = NO;
}
[[ NSNotificationCenter defaultCenter] postNotificationName:@"STMStatusChanged" object:self ];
}
if (wait)
[[ stdErrPipe fileHandleForReading ] waitForDataInBackgroundAndNotify ];
}
[ log release] ;
}
- (BOOL)isRunning
{
if ([ task isRunning ])
return YES;
return NO;
}
#pragma mark -
#pragma mark Getting tunnel informations
- (NSString*)status
{
if (status)
return status;
return S_IDLE;
}
- (NSArray*)arguments
{
NSMutableArray *arguments;
NSEnumerator *e;
NSDictionary *t;
BOOL asRoot;
arguments = [ NSMutableArray array ];
[ arguments addObject: @"-N" ];
[ arguments addObject: @"-v" ];
[ arguments addObject: @"-p" ];
if ([ connPort length ])
[ arguments addObject: connPort];
else
[ arguments addObject: @"22" ];
if (connRemote)
[ arguments addObject: @"-g" ];
if (compression)
[ arguments addObject: @"-C" ];
if (v1)
[ arguments addObject: @"-1" ];
[ arguments addObject: @"-c"];
if (encryption)
[ arguments addObject: encryption];
else
[ arguments addObject: @"3des"];
if (socks4 && socks4p != nil)
{
[ arguments addObject: @"-D" ];
[ arguments addObject: [ socks4p stringValue ]];
}
[ arguments addObject: [ NSString stringWithFormat: @"%@@%@",
connUser, connHost ]
];
NSString *hostPort;
e = [ tunnelsLocal objectEnumerator ];
NSDictionary *systemVersionDictionary =
[NSDictionary dictionaryWithContentsOfFile:
@"/System/Library/CoreServices/SystemVersion.plist"];
NSString *systemVersion =
[systemVersionDictionary objectForKey:@"ProductVersion"];
NSString *formatSring = @"%@/%@/%@";
if(systemVersion.doubleValue >= 10.11){
formatSring = @"%@:%@:%@";
// NSLog(@"I am El and have format string %@", formatSring)
}
// NSLog(@"OS version %@", systemVersion);
while (t = [ e nextObject ])
{
[ arguments addObject: @"-L" ];
if ([[ t objectForKey:@"hostport"] isEqualTo: @"" ])
hostPort = [ t objectForKey:@"port" ];
else
hostPort = [ t objectForKey:@"hostport" ];
[ arguments addObject: [NSString stringWithFormat:formatSring,
[ t objectForKey:@"port"],
[ t objectForKey:@"host"],
hostPort
] ];
if ([[ t objectForKey:@"port"] intValue] < 1024)
asRoot=YES;
}
e = [ tunnelsRemote objectEnumerator ];
while (t = [ e nextObject ])
{
[ arguments addObject: @"-R" ];
if ([[ t objectForKey:@"hostport"] isEqualTo: @"" ])
hostPort = [ t objectForKey:@"port" ];
else
hostPort = [ t objectForKey:@"hostport" ];
[ arguments addObject: [NSString stringWithFormat:formatSring,
[ t objectForKey:@"port"],
[ t objectForKey:@"host"],
hostPort
]];
}
return [[ arguments copy ] autorelease ];
}
- (NSDictionary*)dictionary
{
return [ NSDictionary dictionaryWithObjectsAndKeys:
[ NSNumber numberWithBool: compression ],@"compression",
[ NSNumber numberWithBool: connAuth ],@"connAuth",
[ NSNumber numberWithBool: autoConnect ],@"autoConnect",
connHost, @"connHost",
connName, @"connName",
connPort, @"connPort",
[ NSNumber numberWithBool: connRemote ],@"connRemote",
connUser, @"connUser",
encryption, @"encryption",
[ NSNumber numberWithBool: socks4 ],@"socks4",
socks4p, @"socks4p",
tunnelsLocal, @"tunnelsLocal",
tunnelsRemote, @"tunnelsRemote",
[ NSNumber numberWithBool: v1 ],@"v1", nil
];
}
#pragma mark -
#pragma mark Key/Value coding
- (NSImage*)icon
{
switch (code)
{
case 0:
return [ NSImage imageNamed: @"offState" ];
break;
case 1:
return [ NSImage imageNamed: @"middleState" ];
break;
case 2:
return [ NSImage imageNamed: @"onState" ];
break;
}
return [ NSImage imageNamed: @"offState" ];
}
- (void)setValue:(id)value forUndefinedKey:(NSString *)key
{
NSLog(@"key %@ undefined",key);
}
- (id)valueForUndefinedKey:(NSString *)key
{
return nil;
}
#pragma mark -
#pragma mark Misc.
-(void)dealloc
{
[ self stopTunnel ];
[ tunnelsLocal release ];
[ tunnelsRemote release ];
[ task release ];
[ stdErrPipe release ];
[ connName release ];
[ status release ];
[ connPort release ];
[ encryption release ];
[ socks4p release ];
[ connUser release ];
[ connHost release ];
[super dealloc];
}
@end