]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - macosx/osxdlg.m
Ahem. Actually _checking_ that asynchronous askalg() worked would
[PuTTY.git] / macosx / osxdlg.m
1 /*
2  * osxdlg.m: various PuTTY dialog boxes for OS X.
3  */
4
5 #import <Cocoa/Cocoa.h>
6 #include "putty.h"
7 #include "storage.h"
8 #include "dialog.h"
9 #include "osxclass.h"
10
11 /*
12  * The `ConfigWindow' class is used to start up a new PuTTY
13  * session.
14  */
15
16 @class ConfigTree;
17 @interface ConfigTree : NSObject
18 {
19     NSString **paths;
20     int *levels;
21     int nitems, itemsize;
22 }
23 - (void)addPath:(char *)path;
24 @end
25
26 @implementation ConfigTree
27 - (id)init
28 {
29     self = [super init];
30     paths = NULL;
31     levels = NULL;
32     nitems = itemsize = 0;
33     return self;
34 }
35 - (void)addPath:(char *)path
36 {
37     if (nitems >= itemsize) {
38         itemsize += 32;
39         paths = sresize(paths, itemsize, NSString *);
40         levels = sresize(levels, itemsize, int);
41     }
42     paths[nitems] = [[NSString stringWithCString:path] retain];
43     levels[nitems] = ctrl_path_elements(path) - 1;
44     nitems++;
45 }
46 - (void)dealloc
47 {
48     int i;
49
50     for (i = 0; i < nitems; i++)
51         [paths[i] release];
52
53     sfree(paths);
54     sfree(levels);
55
56     [super dealloc];
57 }
58 - (id)iterateChildren:(int)index ofItem:(id)item count:(int *)count
59 {
60     int i, plevel;
61
62     if (item) {
63         for (i = 0; i < nitems; i++)
64             if (paths[i] == item)
65                 break;
66         assert(i < nitems);
67         plevel = levels[i];
68         i++;
69     } else {
70         i = 0;
71         plevel = -1;
72     }
73
74     if (count)
75         *count = 0;
76
77     while (index > 0) {
78         if (i >= nitems || levels[i] != plevel+1)
79             return nil;
80         if (count)
81             (*count)++;
82         do {
83             i++;
84         } while (i < nitems && levels[i] > plevel+1);
85         index--;
86     }
87
88     return paths[i];
89 }
90 - (id)outlineView:(NSOutlineView *)outlineView child:(int)index ofItem:(id)item
91 {
92     return [self iterateChildren:index ofItem:item count:NULL];
93 }
94 - (int)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item
95 {
96     int count = 0;
97     /* pass nitems+1 to ensure we run off the end */
98     [self iterateChildren:nitems+1 ofItem:item count:&count];
99     return count;
100 }
101 - (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item
102 {
103     return [self outlineView:outlineView numberOfChildrenOfItem:item] > 0;
104 }
105 - (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
106 {
107     /*
108      * Trim off all path elements except the last one.
109      */
110     NSArray *components = [item componentsSeparatedByString:@"/"];
111     return [components objectAtIndex:[components count]-1];
112 }
113 @end
114
115 @implementation ConfigWindow
116 - (id)initWithConfig:(Config)aCfg
117 {
118     NSScrollView *scrollview;
119     NSTableColumn *col;
120     ConfigTree *treedata;
121     int by = 0, mby = 0;
122     int wmin = 0;
123     int hmin = 0;
124     int panelht = 0;
125
126     get_sesslist(&sl, TRUE);
127
128     ctrlbox = ctrl_new_box();
129     setup_config_box(ctrlbox, &sl, FALSE /*midsession*/, aCfg.protocol,
130                      0 /* protcfginfo */);
131     unix_setup_config_box(ctrlbox, FALSE /*midsession*/);
132
133     cfg = aCfg;                        /* structure copy */
134
135     self = [super initWithContentRect:NSMakeRect(0,0,300,300)
136             styleMask:(NSTitledWindowMask | NSMiniaturizableWindowMask |
137                        NSClosableWindowMask)
138             backing:NSBackingStoreBuffered
139             defer:YES];
140     [self setTitle:@"PuTTY Configuration"];
141
142     [self setIgnoresMouseEvents:NO];
143
144     dv = fe_dlg_init(&cfg, self, self, @selector(configBoxFinished:));
145
146     scrollview = [[NSScrollView alloc] initWithFrame:NSMakeRect(20,20,10,10)];
147     treeview = [[NSOutlineView alloc] initWithFrame:[scrollview frame]];
148     [scrollview setBorderType:NSLineBorder];
149     [scrollview setDocumentView:treeview];
150     [[self contentView] addSubview:scrollview];
151     [scrollview setHasVerticalScroller:YES];
152     [scrollview setAutohidesScrollers:YES];
153     /* FIXME: the below is untested. Test it then remove this notice. */
154     [treeview setAllowsColumnReordering:NO];
155     [treeview setAllowsColumnResizing:NO];
156     [treeview setAllowsMultipleSelection:NO];
157     [treeview setAllowsEmptySelection:NO];
158     [treeview setAllowsColumnSelection:YES];
159
160     treedata = [[[ConfigTree alloc] init] retain];
161
162     col = [[NSTableColumn alloc] initWithIdentifier:nil];
163     [treeview addTableColumn:col];
164     [treeview setOutlineTableColumn:col];
165
166     [[treeview headerView] setFrame:NSMakeRect(0,0,0,0)];
167
168     /*
169      * Create the controls.
170      */
171     {
172         int i;
173         char *path = NULL;
174
175         for (i = 0; i < ctrlbox->nctrlsets; i++) {
176             struct controlset *s = ctrlbox->ctrlsets[i];
177             int mw, mh;
178
179             if (!*s->pathname) {
180
181                 create_ctrls(dv, [self contentView], s, &mw, &mh);
182
183                 by += 20 + mh;
184
185                 if (wmin < mw + 40)
186                     wmin = mw + 40;
187             } else {
188                 int j = path ? ctrl_path_compare(s->pathname, path) : 0;
189
190                 if (j != INT_MAX) {    /* add to treeview, start new panel */
191                     char *c;
192
193                     /*
194                      * We expect never to find an implicit path
195                      * component. For example, we expect never to
196                      * see A/B/C followed by A/D/E, because that
197                      * would _implicitly_ create A/D. All our path
198                      * prefixes are expected to contain actual
199                      * controls and be selectable in the treeview;
200                      * so we would expect to see A/D _explicitly_
201                      * before encountering A/D/E.
202                      */
203                     assert(j == ctrl_path_elements(s->pathname) - 1);
204
205                     c = strrchr(s->pathname, '/');
206                     if (!c)
207                         c = s->pathname;
208                     else
209                         c++;
210
211                     [treedata addPath:s->pathname];
212                     path = s->pathname;
213
214                     panelht = 0;
215                 }
216
217                 create_ctrls(dv, [self contentView], s, &mw, &mh);
218                 if (wmin < mw + 3*20+150)
219                     wmin = mw + 3*20+150;
220                 panelht += mh + 20;
221                 if (hmin < panelht - 20)
222                     hmin = panelht - 20;
223             }
224         }
225     }
226
227     {
228         int i;
229         NSRect r;
230
231         [treeview setDataSource:treedata];
232         for (i = [treeview numberOfRows]; i-- ;)
233             [treeview expandItem:[treeview itemAtRow:i] expandChildren:YES];
234
235         [treeview sizeToFit];
236         r = [treeview frame];
237         if (hmin < r.size.height)
238             hmin = r.size.height;
239     }
240
241     [self setContentSize:NSMakeSize(wmin, hmin+60+by)];
242     [scrollview setFrame:NSMakeRect(20, 40+by, 150, hmin)];
243     [treeview setDelegate:self];
244     mby = by;
245
246     /*
247      * Now place the controls.
248      */
249     {
250         int i;
251         char *path = NULL;
252         panelht = 0;
253
254         for (i = 0; i < ctrlbox->nctrlsets; i++) {
255             struct controlset *s = ctrlbox->ctrlsets[i];
256
257             if (!*s->pathname) {
258                 by -= VSPACING + place_ctrls(dv, s, 20, by, wmin-40);
259             } else {
260                 if (!path || strcmp(s->pathname, path))
261                     panelht = 0;
262
263                 panelht += VSPACING + place_ctrls(dv, s, 2*20+150,
264                                                   40+mby+hmin-panelht,
265                                                   wmin - (3*20+150));
266
267                 path = s->pathname;
268             }
269         }
270     }
271
272     select_panel(dv, ctrlbox, [[treeview itemAtRow:0] cString]);
273
274     [treeview reloadData];
275
276     dlg_refresh(NULL, dv);
277
278     [self center];                     /* :-) */
279
280     return self;
281 }
282 - (void)configBoxFinished:(id)object
283 {
284     int ret = [object intValue];       /* it'll be an NSNumber */
285     if (ret) {
286         [controller performSelectorOnMainThread:
287          @selector(newSessionWithConfig:)
288          withObject:[NSData dataWithBytes:&cfg length:sizeof(cfg)]
289          waitUntilDone:NO];
290     }
291     [self close];
292 }
293 - (void)outlineViewSelectionDidChange:(NSNotification *)notification
294 {
295     const char *path = [[treeview itemAtRow:[treeview selectedRow]] cString];
296     select_panel(dv, ctrlbox, path);
297 }
298 - (BOOL)outlineView:(NSOutlineView *)outlineView
299     shouldEditTableColumn:(NSTableColumn *)tableColumn item:(id)item
300 {
301     return NO;                         /* no editing! */
302 }
303 @end
304
305 /* ----------------------------------------------------------------------
306  * Various special-purpose dialog boxes.
307  */
308
309 int askappend(void *frontend, Filename filename)
310 {
311     return 0;                          /* FIXME */
312 }
313
314 struct algstate {
315     void (*callback)(void *ctx, int result);
316     void *ctx;
317 };
318
319 static void askalg_callback(void *ctx, int result)
320 {
321     struct algstate *state = (struct algstate *)ctx;
322
323     state->callback(state->ctx, result == NSAlertFirstButtonReturn);
324     sfree(state);
325 }
326
327 int askalg(void *frontend, const char *algtype, const char *algname,
328            void (*callback)(void *ctx, int result), void *ctx)
329 {
330     static const char msg[] =
331         "The first %s supported by the server is "
332         "%s, which is below the configured warning threshold.\n"
333         "Continue with connection?";
334
335     char *text;
336     SessionWindow *win = (SessionWindow *)frontend;
337     struct algstate *state;
338     NSAlert *alert;
339
340     text = dupprintf(msg, algtype, algname);
341
342     state = snew(struct algstate);
343     state->callback = callback;
344     state->ctx = ctx;
345
346     alert = [[NSAlert alloc] init];
347     [alert setInformativeText:[NSString stringWithCString:text]];
348     [alert addButtonWithTitle:@"Yes"];
349     [alert addButtonWithTitle:@"No"];
350     [win startAlert:alert withCallback:askalg_callback andCtx:state];
351
352     return -1;
353 }
354
355 struct hostkeystate {
356     char *host, *keytype, *keystr;
357     int port;
358     void (*callback)(void *ctx, int result);
359     void *ctx;
360 };
361
362 static void verify_ssh_host_key_callback(void *ctx, int result)
363 {
364     struct hostkeystate *state = (struct hostkeystate *)ctx;
365
366     if (result == NSAlertThirdButtonReturn)   /* `Accept' */
367         store_host_key(state->host, state->port,
368                        state->keytype, state->keystr);
369     state->callback(state->ctx, result != NSAlertFirstButtonReturn);
370     sfree(state->host);
371     sfree(state->keytype);
372     sfree(state->keystr);
373     sfree(state);
374 }
375
376 int verify_ssh_host_key(void *frontend, char *host, int port, char *keytype,
377                         char *keystr, char *fingerprint,
378                         void (*callback)(void *ctx, int result), void *ctx)
379 {
380     static const char absenttxt[] =
381         "The server's host key is not cached. You have no guarantee "
382         "that the server is the computer you think it is.\n"
383         "The server's %s key fingerprint is:\n"
384         "%s\n"
385         "If you trust this host, press \"Accept\" to add the key to "
386         "PuTTY's cache and carry on connecting.\n"
387         "If you want to carry on connecting just once, without "
388         "adding the key to the cache, press \"Connect Once\".\n"
389         "If you do not trust this host, press \"Cancel\" to abandon the "
390         "connection.";
391     static const char wrongtxt[] =
392         "WARNING - POTENTIAL SECURITY BREACH!\n"
393         "The server's host key does not match the one PuTTY has "
394         "cached. This means that either the server administrator "
395         "has changed the host key, or you have actually connected "
396         "to another computer pretending to be the server.\n"
397         "The new %s key fingerprint is:\n"
398         "%s\n"
399         "If you were expecting this change and trust the new key, "
400         "press \"Accept\" to update PuTTY's cache and continue connecting.\n"
401         "If you want to carry on connecting but without updating "
402         "the cache, press \"Connect Once\".\n"
403         "If you want to abandon the connection completely, press "
404         "\"Cancel\" to cancel. Pressing \"Cancel\" is the ONLY guaranteed "
405         "safe choice.";
406
407     int ret;
408     char *text;
409     SessionWindow *win = (SessionWindow *)frontend;
410     struct hostkeystate *state;
411     NSAlert *alert;
412
413     /*
414      * Verify the key.
415      */
416     ret = verify_host_key(host, port, keytype, keystr);
417
418     if (ret == 0)
419         return 1;
420
421     text = dupprintf((ret == 2 ? wrongtxt : absenttxt), keytype, fingerprint);
422
423     state = snew(struct hostkeystate);
424     state->callback = callback;
425     state->ctx = ctx;
426     state->host = dupstr(host);
427     state->port = port;
428     state->keytype = dupstr(keytype);
429     state->keystr = dupstr(keystr);
430
431     alert = [[NSAlert alloc] init];
432     [alert setInformativeText:[NSString stringWithCString:text]];
433     [alert addButtonWithTitle:@"Cancel"];
434     [alert addButtonWithTitle:@"Connect Once"];
435     [alert addButtonWithTitle:@"Accept"];
436     [win startAlert:alert withCallback:verify_ssh_host_key_callback
437      andCtx:state];
438
439     return -1;
440 }
441
442 void old_keyfile_warning(void)
443 {
444     /*
445      * This should never happen on OS X. We hope.
446      */
447 }
448
449 void about_box(void *window)
450 {
451     /* FIXME */
452 }