Inhibit the Serial configuration panel in mid-session if the session
[u/mdw/putty] / windows / windlg.c
CommitLineData
eaf1e20a 1/*
2 * windlg.c - dialogs for PuTTY(tel), including the configuration dialog.
3 */
4
374330e2 5#include <stdio.h>
6#include <stdlib.h>
fe8abbf4 7#include <limits.h>
8#include <assert.h>
b6c680d4 9#include <ctype.h>
71346075 10#include <time.h>
374330e2 11
bea1ef5f 12#include "putty.h"
7440fd44 13#include "ssh.h"
374330e2 14#include "win_res.h"
d5859615 15#include "storage.h"
fe8abbf4 16#include "dialog.h"
374330e2 17
7440fd44 18#include <commctrl.h>
19#include <commdlg.h>
4e95095a 20#include <shellapi.h>
7440fd44 21
9a1291fe 22#ifdef MSVC4
23#define TVINSERTSTRUCT TV_INSERTSTRUCT
24#define TVITEM TV_ITEM
25#define ICON_BIG 1
26#endif
27
fe8abbf4 28/*
29 * These are the various bits of data required to handle the
30 * portable-dialog stuff in the config box. Having them at file
31 * scope in here isn't too bad a place to put them; if we were ever
32 * to need more than one config box per process we could always
33 * shift them to a per-config-box structure stored in GWL_USERDATA.
34 */
35static struct controlbox *ctrlbox;
36/*
37 * ctrls_base holds the OK and Cancel buttons: the controls which
38 * are present in all dialog panels. ctrls_panel holds the ones
39 * which change from panel to panel.
40 */
41static struct winctrls ctrls_base, ctrls_panel;
42static struct dlgparam dp;
43
c5e9c988 44static char **events = NULL;
45static int nevents = 0, negsize = 0;
46
3ea863a3 47extern Config cfg; /* defined in window.c */
48
b44b307a 49#define PRINTER_DISABLED_STRING "None (printing disabled)"
50
3da0b1d2 51void force_normal(HWND hwnd)
c9def1b8 52{
a9422f39 53 static int recurse = 0;
c9def1b8 54
55 WINDOWPLACEMENT wp;
56
32874aea 57 if (recurse)
58 return;
c9def1b8 59 recurse = 1;
60
61 wp.length = sizeof(wp);
32874aea 62 if (GetWindowPlacement(hwnd, &wp) && wp.showCmd == SW_SHOWMAXIMIZED) {
c9def1b8 63 wp.showCmd = SW_SHOWNORMAL;
64 SetWindowPlacement(hwnd, &wp);
65 }
66 recurse = 0;
67}
68
32874aea 69static int CALLBACK LogProc(HWND hwnd, UINT msg,
70 WPARAM wParam, LPARAM lParam)
71{
374330e2 72 int i;
73
74 switch (msg) {
75 case WM_INITDIALOG:
32874aea 76 {
f6f450e2 77 char *str = dupprintf("%s Event Log", appname);
78 SetWindowText(hwnd, str);
79 sfree(str);
80 }
81 {
32874aea 82 static int tabs[4] = { 78, 108 };
83 SendDlgItemMessage(hwnd, IDN_LIST, LB_SETTABSTOPS, 2,
84 (LPARAM) tabs);
85 }
86 for (i = 0; i < nevents; i++)
87 SendDlgItemMessage(hwnd, IDN_LIST, LB_ADDSTRING,
88 0, (LPARAM) events[i]);
374330e2 89 return 1;
374330e2 90 case WM_COMMAND:
91 switch (LOWORD(wParam)) {
92 case IDOK:
475eebf9 93 case IDCANCEL:
374330e2 94 logbox = NULL;
32874aea 95 SetActiveWindow(GetParent(hwnd));
96 DestroyWindow(hwnd);
374330e2 97 return 0;
32874aea 98 case IDN_COPY:
989b10e9 99 if (HIWORD(wParam) == BN_CLICKED ||
100 HIWORD(wParam) == BN_DOUBLECLICKED) {
32874aea 101 int selcount;
102 int *selitems;
103 selcount = SendDlgItemMessage(hwnd, IDN_LIST,
104 LB_GETSELCOUNT, 0, 0);
105 if (selcount == 0) { /* don't even try to copy zero items */
106 MessageBeep(0);
107 break;
108 }
109
3d88e64d 110 selitems = snewn(selcount, int);
32874aea 111 if (selitems) {
112 int count = SendDlgItemMessage(hwnd, IDN_LIST,
113 LB_GETSELITEMS,
114 selcount,
115 (LPARAM) selitems);
116 int i;
117 int size;
118 char *clipdata;
119 static unsigned char sel_nl[] = SEL_NL;
120
121 if (count == 0) { /* can't copy zero stuff */
122 MessageBeep(0);
123 break;
124 }
125
126 size = 0;
127 for (i = 0; i < count; i++)
128 size +=
129 strlen(events[selitems[i]]) + sizeof(sel_nl);
130
3d88e64d 131 clipdata = snewn(size, char);
32874aea 132 if (clipdata) {
133 char *p = clipdata;
134 for (i = 0; i < count; i++) {
135 char *q = events[selitems[i]];
136 int qlen = strlen(q);
137 memcpy(p, q, qlen);
138 p += qlen;
139 memcpy(p, sel_nl, sizeof(sel_nl));
140 p += sizeof(sel_nl);
141 }
a8327734 142 write_aclip(NULL, clipdata, size, TRUE);
32874aea 143 sfree(clipdata);
144 }
145 sfree(selitems);
146
147 for (i = 0; i < nevents; i++)
148 SendDlgItemMessage(hwnd, IDN_LIST, LB_SETSEL,
149 FALSE, i);
150 }
151 }
152 return 0;
374330e2 153 }
154 return 0;
155 case WM_CLOSE:
156 logbox = NULL;
32874aea 157 SetActiveWindow(GetParent(hwnd));
158 DestroyWindow(hwnd);
374330e2 159 return 0;
160 }
161 return 0;
162}
163
32874aea 164static int CALLBACK LicenceProc(HWND hwnd, UINT msg,
165 WPARAM wParam, LPARAM lParam)
166{
d57835ab 167 switch (msg) {
168 case WM_INITDIALOG:
f6f450e2 169 {
170 char *str = dupprintf("%s Licence", appname);
171 SetWindowText(hwnd, str);
172 sfree(str);
173 }
d57835ab 174 return 1;
175 case WM_COMMAND:
176 switch (LOWORD(wParam)) {
177 case IDOK:
c4c04fac 178 case IDCANCEL:
97749503 179 EndDialog(hwnd, 1);
d57835ab 180 return 0;
181 }
182 return 0;
183 case WM_CLOSE:
97749503 184 EndDialog(hwnd, 1);
d57835ab 185 return 0;
186 }
187 return 0;
188}
189
32874aea 190static int CALLBACK AboutProc(HWND hwnd, UINT msg,
191 WPARAM wParam, LPARAM lParam)
192{
f6f450e2 193 char *str;
194
374330e2 195 switch (msg) {
196 case WM_INITDIALOG:
f6f450e2 197 str = dupprintf("About %s", appname);
198 SetWindowText(hwnd, str);
199 sfree(str);
200 SetDlgItemText(hwnd, IDA_TEXT1, appname);
32874aea 201 SetDlgItemText(hwnd, IDA_VERSION, ver);
374330e2 202 return 1;
374330e2 203 case WM_COMMAND:
204 switch (LOWORD(wParam)) {
205 case IDOK:
32874aea 206 case IDCANCEL:
207 EndDialog(hwnd, TRUE);
374330e2 208 return 0;
209 case IDA_LICENCE:
210 EnableWindow(hwnd, 0);
32874aea 211 DialogBox(hinst, MAKEINTRESOURCE(IDD_LICENCEBOX),
c4c04fac 212 hwnd, LicenceProc);
374330e2 213 EnableWindow(hwnd, 1);
32874aea 214 SetActiveWindow(hwnd);
374330e2 215 return 0;
defab6b8 216
32874aea 217 case IDA_WEB:
218 /* Load web browser */
219 ShellExecute(hwnd, "open",
220 "http://www.chiark.greenend.org.uk/~sgtatham/putty/",
221 0, 0, SW_SHOWDEFAULT);
222 return 0;
374330e2 223 }
224 return 0;
225 case WM_CLOSE:
32874aea 226 EndDialog(hwnd, TRUE);
374330e2 227 return 0;
228 }
229 return 0;
230}
231
939395a8 232static int SaneDialogBox(HINSTANCE hinst,
233 LPCTSTR tmpl,
234 HWND hwndparent,
235 DLGPROC lpDialogFunc)
236{
237 WNDCLASS wc;
238 HWND hwnd;
239 MSG msg;
240 int flags;
241 int ret;
242 int gm;
243
244 wc.style = CS_DBLCLKS | CS_SAVEBITS | CS_BYTEALIGNWINDOW;
245 wc.lpfnWndProc = DefDlgProc;
246 wc.cbClsExtra = 0;
1e5eefb6 247 wc.cbWndExtra = DLGWINDOWEXTRA + 2*sizeof(LONG_PTR);
939395a8 248 wc.hInstance = hinst;
249 wc.hIcon = NULL;
250 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
251 wc.hbrBackground = (HBRUSH) (COLOR_BACKGROUND +1);
252 wc.lpszMenuName = NULL;
253 wc.lpszClassName = "PuTTYConfigBox";
254 RegisterClass(&wc);
255
256 hwnd = CreateDialog(hinst, tmpl, hwndparent, lpDialogFunc);
257
1e5eefb6 258 SetWindowLongPtr(hwnd, BOXFLAGS, 0); /* flags */
259 SetWindowLongPtr(hwnd, BOXRESULT, 0); /* result from SaneEndDialog */
939395a8 260
261 while ((gm=GetMessage(&msg, NULL, 0, 0)) > 0) {
1e5eefb6 262 flags=GetWindowLongPtr(hwnd, BOXFLAGS);
939395a8 263 if (!(flags & DF_END) && !IsDialogMessage(hwnd, &msg))
264 DispatchMessage(&msg);
265 if (flags & DF_END)
266 break;
267 }
268
269 if (gm == 0)
270 PostQuitMessage(msg.wParam); /* We got a WM_QUIT, pass it on */
271
1e5eefb6 272 ret=GetWindowLongPtr(hwnd, BOXRESULT);
939395a8 273 DestroyWindow(hwnd);
274 return ret;
275}
276
277static void SaneEndDialog(HWND hwnd, int ret)
278{
1e5eefb6 279 SetWindowLongPtr(hwnd, BOXRESULT, ret);
280 SetWindowLongPtr(hwnd, BOXFLAGS, DF_END);
939395a8 281}
282
301b66db 283/*
284 * Null dialog procedure.
285 */
32874aea 286static int CALLBACK NullDlgProc(HWND hwnd, UINT msg,
287 WPARAM wParam, LPARAM lParam)
288{
301b66db 289 return 0;
290}
291
fe8abbf4 292enum {
293 IDCX_ABOUT = IDC_ABOUT,
294 IDCX_TVSTATIC,
295 IDCX_TREEVIEW,
296 IDCX_STDBASE,
297 IDCX_PANELBASE = IDCX_STDBASE + 32
c96a8fef 298};
c96a8fef 299
927d4fc5 300struct treeview_faff {
301 HWND treeview;
302 HTREEITEM lastat[4];
303};
304
305static HTREEITEM treeview_insert(struct treeview_faff *faff,
fe8abbf4 306 int level, char *text, char *path)
32874aea 307{
927d4fc5 308 TVINSERTSTRUCT ins;
309 int i;
310 HTREEITEM newitem;
32874aea 311 ins.hParent = (level > 0 ? faff->lastat[level - 1] : TVI_ROOT);
927d4fc5 312 ins.hInsertAfter = faff->lastat[level];
06a03685 313#if _WIN32_IE >= 0x0400 && defined NONAMELESSUNION
314#define INSITEM DUMMYUNIONNAME.item
315#else
316#define INSITEM item
317#endif
fe8abbf4 318 ins.INSITEM.mask = TVIF_TEXT | TVIF_PARAM;
06a03685 319 ins.INSITEM.pszText = text;
fe8abbf4 320 ins.INSITEM.cchTextMax = strlen(text)+1;
321 ins.INSITEM.lParam = (LPARAM)path;
927d4fc5 322 newitem = TreeView_InsertItem(faff->treeview, &ins);
323 if (level > 0)
32874aea 324 TreeView_Expand(faff->treeview, faff->lastat[level - 1],
325 TVE_EXPAND);
927d4fc5 326 faff->lastat[level] = newitem;
32874aea 327 for (i = level + 1; i < 4; i++)
328 faff->lastat[i] = NULL;
927d4fc5 329 return newitem;
330}
331
c96a8fef 332/*
3ac9cd9f 333 * Create the panelfuls of controls in the configuration box.
334 */
fe8abbf4 335static void create_controls(HWND hwnd, char *path)
32874aea 336{
fe8abbf4 337 struct ctlpos cp;
338 int index;
339 int base_id;
340 struct winctrls *wc;
3ac9cd9f 341
fe8abbf4 342 if (!path[0]) {
343 /*
344 * Here we must create the basic standard controls.
345 */
346 ctlposinit(&cp, hwnd, 3, 3, 235);
347 wc = &ctrls_base;
348 base_id = IDCX_STDBASE;
349 } else {
350 /*
351 * Otherwise, we're creating the controls for a particular
352 * panel.
353 */
05581745 354 ctlposinit(&cp, hwnd, 100, 3, 13);
fe8abbf4 355 wc = &ctrls_panel;
356 base_id = IDCX_PANELBASE;
3ac9cd9f 357 }
3ac9cd9f 358
fe8abbf4 359 for (index=-1; (index = ctrl_find_path(ctrlbox, path, index)) >= 0 ;) {
360 struct controlset *s = ctrlbox->ctrlsets[index];
361 winctrl_layout(&dp, wc, &cp, s, &base_id);
c8d7378d 362 }
c8d7378d 363}
364
3ac9cd9f 365/*
366 * This function is the configuration box.
5c4dea05 367 * (Being a dialog procedure, in general it returns 0 if the default
368 * dialog processing should be performed, and 1 if it should not.)
c96a8fef 369 */
fe8abbf4 370static int CALLBACK GenericMainDlgProc(HWND hwnd, UINT msg,
371 WPARAM wParam, LPARAM lParam)
32874aea 372{
927d4fc5 373 HWND hw, treeview;
374 struct treeview_faff tvfaff;
fe8abbf4 375 int ret;
374330e2 376
377 switch (msg) {
378 case WM_INITDIALOG:
fe8abbf4 379 dp.hwnd = hwnd;
380 create_controls(hwnd, ""); /* Open and Cancel buttons etc */
f6f450e2 381 SetWindowText(hwnd, dp.wintitle);
1e5eefb6 382 SetWindowLongPtr(hwnd, GWLP_USERDATA, 0);
70133c0e 383 if (help_path)
1e5eefb6 384 SetWindowLongPtr(hwnd, GWL_EXSTYLE,
385 GetWindowLongPtr(hwnd, GWL_EXSTYLE) |
386 WS_EX_CONTEXTHELP);
70133c0e 387 else {
388 HWND item = GetDlgItem(hwnd, IDC_HELPBTN);
389 if (item)
390 DestroyWindow(item);
391 }
392 requested_help = FALSE;
648947d4 393 SendMessage(hwnd, WM_SETICON, (WPARAM) ICON_BIG,
394 (LPARAM) LoadIcon(hinst, MAKEINTRESOURCE(IDI_CFGICON)));
c96a8fef 395 /*
396 * Centre the window.
397 */
398 { /* centre the window */
399 RECT rs, rd;
400
401 hw = GetDesktopWindow();
32874aea 402 if (GetWindowRect(hw, &rs) && GetWindowRect(hwnd, &rd))
403 MoveWindow(hwnd,
404 (rs.right + rs.left + rd.left - rd.right) / 2,
405 (rs.bottom + rs.top + rd.top - rd.bottom) / 2,
406 rd.right - rd.left, rd.bottom - rd.top, TRUE);
c96a8fef 407 }
408
409 /*
927d4fc5 410 * Create the tree view.
c96a8fef 411 */
32874aea 412 {
413 RECT r;
c96a8fef 414 WPARAM font;
32874aea 415 HWND tvstatic;
416
417 r.left = 3;
05581745 418 r.right = r.left + 95;
32874aea 419 r.top = 3;
420 r.bottom = r.top + 10;
421 MapDialogRect(hwnd, &r);
422 tvstatic = CreateWindowEx(0, "STATIC", "Cate&gory:",
423 WS_CHILD | WS_VISIBLE,
424 r.left, r.top,
425 r.right - r.left, r.bottom - r.top,
426 hwnd, (HMENU) IDCX_TVSTATIC, hinst,
427 NULL);
c96a8fef 428 font = SendMessage(hwnd, WM_GETFONT, 0, 0);
927d4fc5 429 SendMessage(tvstatic, WM_SETFONT, font, MAKELPARAM(TRUE, 0));
430
32874aea 431 r.left = 3;
05581745 432 r.right = r.left + 95;
32874aea 433 r.top = 13;
a401e5f3 434 r.bottom = r.top + 219;
32874aea 435 MapDialogRect(hwnd, &r);
436 treeview = CreateWindowEx(WS_EX_CLIENTEDGE, WC_TREEVIEW, "",
437 WS_CHILD | WS_VISIBLE |
438 WS_TABSTOP | TVS_HASLINES |
439 TVS_DISABLEDRAGDROP | TVS_HASBUTTONS
440 | TVS_LINESATROOT |
441 TVS_SHOWSELALWAYS, r.left, r.top,
442 r.right - r.left, r.bottom - r.top,
443 hwnd, (HMENU) IDCX_TREEVIEW, hinst,
444 NULL);
927d4fc5 445 font = SendMessage(hwnd, WM_GETFONT, 0, 0);
446 SendMessage(treeview, WM_SETFONT, font, MAKELPARAM(TRUE, 0));
32874aea 447 tvfaff.treeview = treeview;
448 memset(tvfaff.lastat, 0, sizeof(tvfaff.lastat));
449 }
c96a8fef 450
451 /*
3ac9cd9f 452 * Set up the tree view contents.
c96a8fef 453 */
fe8abbf4 454 {
455 HTREEITEM hfirst = NULL;
456 int i;
457 char *path = NULL;
458
459 for (i = 0; i < ctrlbox->nctrlsets; i++) {
460 struct controlset *s = ctrlbox->ctrlsets[i];
461 HTREEITEM item;
462 int j;
463 char *c;
464
465 if (!s->pathname[0])
466 continue;
467 j = path ? ctrl_path_compare(s->pathname, path) : 0;
468 if (j == INT_MAX)
469 continue; /* same path, nothing to add to tree */
470
471 /*
472 * We expect never to find an implicit path
473 * component. For example, we expect never to see
474 * A/B/C followed by A/D/E, because that would
475 * _implicitly_ create A/D. All our path prefixes
476 * are expected to contain actual controls and be
477 * selectable in the treeview; so we would expect
478 * to see A/D _explicitly_ before encountering
479 * A/D/E.
480 */
481 assert(j == ctrl_path_elements(s->pathname) - 1);
482
483 c = strrchr(s->pathname, '/');
484 if (!c)
485 c = s->pathname;
486 else
487 c++;
488
489 item = treeview_insert(&tvfaff, j, c, s->pathname);
490 if (!hfirst)
491 hfirst = item;
492
493 path = s->pathname;
32874aea 494 }
32874aea 495
fe8abbf4 496 /*
497 * Put the treeview selection on to the Session panel.
498 * This should also cause creation of the relevant
499 * controls.
500 */
501 TreeView_SelectItem(treeview, hfirst);
502 }
32874aea 503
504 /*
505 * Set focus into the first available control.
506 */
507 {
fe8abbf4 508 int i;
509 struct winctrl *c;
510
511 for (i = 0; (c = winctrl_findbyindex(&ctrls_panel, i)) != NULL;
512 i++) {
513 if (c->ctrl) {
514 dlg_set_focus(c->ctrl, &dp);
515 break;
516 }
517 }
32874aea 518 }
c96a8fef 519
1e5eefb6 520 SetWindowLongPtr(hwnd, GWLP_USERDATA, 1);
c96a8fef 521 return 0;
1cd246bb 522 case WM_LBUTTONUP:
32874aea 523 /*
524 * Button release should trigger WM_OK if there was a
525 * previous double click on the session list.
526 */
527 ReleaseCapture();
fe8abbf4 528 if (dp.ended)
8ee3ff16 529 SaneEndDialog(hwnd, dp.endresult ? 1 : 0);
32874aea 530 break;
c96a8fef 531 case WM_NOTIFY:
927d4fc5 532 if (LOWORD(wParam) == IDCX_TREEVIEW &&
32874aea 533 ((LPNMHDR) lParam)->code == TVN_SELCHANGED) {
534 HTREEITEM i =
535 TreeView_GetSelection(((LPNMHDR) lParam)->hwndFrom);
927d4fc5 536 TVITEM item;
c96a8fef 537 char buffer[64];
78a79d97 538
539 SendMessage (hwnd, WM_SETREDRAW, FALSE, 0);
540
32874aea 541 item.hItem = i;
c96a8fef 542 item.pszText = buffer;
543 item.cchTextMax = sizeof(buffer);
fe8abbf4 544 item.mask = TVIF_TEXT | TVIF_PARAM;
32874aea 545 TreeView_GetItem(((LPNMHDR) lParam)->hwndFrom, &item);
fe8abbf4 546 {
547 /* Destroy all controls in the currently visible panel. */
548 int k;
549 HWND item;
550 struct winctrl *c;
551
552 while ((c = winctrl_findbyindex(&ctrls_panel, 0)) != NULL) {
553 for (k = 0; k < c->num_ids; k++) {
554 item = GetDlgItem(hwnd, c->base_id + k);
555 if (item)
556 DestroyWindow(item);
557 }
558 winctrl_rem_shortcuts(&dp, c);
559 winctrl_remove(&ctrls_panel, c);
560 sfree(c->data);
561 sfree(c);
562 }
32874aea 563 }
fe8abbf4 564 create_controls(hwnd, (char *)item.lParam);
565
566 dlg_refresh(NULL, &dp); /* set up control values */
78a79d97 567
568 SendMessage (hwnd, WM_SETREDRAW, TRUE, 0);
569 InvalidateRect (hwnd, NULL, TRUE);
c96a8fef 570
32874aea 571 SetFocus(((LPNMHDR) lParam)->hwndFrom); /* ensure focus stays */
c96a8fef 572 return 0;
573 }
574 break;
374330e2 575 case WM_COMMAND:
fe8abbf4 576 case WM_DRAWITEM:
577 default: /* also handle drag list msg here */
c96a8fef 578 /*
579 * Only process WM_COMMAND once the dialog is fully formed.
580 */
1e5eefb6 581 if (GetWindowLongPtr(hwnd, GWLP_USERDATA) == 1) {
fe8abbf4 582 ret = winctrl_handle_command(&dp, msg, wParam, lParam);
583 if (dp.ended && GetCapture() != hwnd)
8ee3ff16 584 SaneEndDialog(hwnd, dp.endresult ? 1 : 0);
fe8abbf4 585 } else
586 ret = 0;
587 return ret;
70133c0e 588 case WM_HELP:
589 if (help_path) {
fe8abbf4 590 if (winctrl_context_help(&dp, hwnd,
591 ((LPHELPINFO)lParam)->iCtrlId))
70133c0e 592 requested_help = TRUE;
fe8abbf4 593 else
70133c0e 594 MessageBeep(0);
70133c0e 595 }
596 break;
374330e2 597 case WM_CLOSE:
70133c0e 598 if (requested_help) {
599 WinHelp(hwnd, help_path, HELP_QUIT, 0);
600 requested_help = FALSE;
601 }
8ee3ff16 602 SaneEndDialog(hwnd, 0);
374330e2 603 return 0;
c9def1b8 604
605 /* Grrr Explorer will maximize Dialogs! */
606 case WM_SIZE:
607 if (wParam == SIZE_MAXIMIZED)
32874aea 608 force_normal(hwnd);
c9def1b8 609 return 0;
ca20bfcf 610
374330e2 611 }
612 return 0;
613}
614
fe8abbf4 615void modal_about_box(HWND hwnd)
32874aea 616{
fe8abbf4 617 EnableWindow(hwnd, 0);
618 DialogBox(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX), hwnd, AboutProc);
619 EnableWindow(hwnd, 1);
620 SetActiveWindow(hwnd);
374330e2 621}
622
fe8abbf4 623void show_help(HWND hwnd)
32874aea 624{
fe8abbf4 625 if (help_path) {
626 WinHelp(hwnd, help_path,
627 help_has_contents ? HELP_FINDER : HELP_CONTENTS,
628 0);
629 requested_help = TRUE;
630 }
374330e2 631}
632
32874aea 633void defuse_showwindow(void)
634{
301b66db 635 /*
636 * Work around the fact that the app's first call to ShowWindow
637 * will ignore the default in favour of the shell-provided
638 * setting.
639 */
640 {
32874aea 641 HWND hwnd;
642 hwnd = CreateDialog(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX),
643 NULL, NullDlgProc);
644 ShowWindow(hwnd, SW_HIDE);
f5eca4f8 645 SetActiveWindow(hwnd);
32874aea 646 DestroyWindow(hwnd);
301b66db 647 }
648}
649
32874aea 650int do_config(void)
651{
374330e2 652 int ret;
653
fe8abbf4 654 ctrlbox = ctrl_new_box();
12745e35 655 setup_config_box(ctrlbox, FALSE, 0, 0);
8a7f1392 656 win_setup_config_box(ctrlbox, &dp.hwnd, (help_path != NULL), FALSE, 0);
4e6d4091 657 dp_init(&dp);
fe8abbf4 658 winctrl_init(&ctrls_base);
659 winctrl_init(&ctrls_panel);
4e6d4091 660 dp_add_tree(&dp, &ctrls_base);
661 dp_add_tree(&dp, &ctrls_panel);
f6f450e2 662 dp.wintitle = dupprintf("%s Configuration", appname);
663 dp.errtitle = dupprintf("%s Error", appname);
fe8abbf4 664 dp.data = &cfg;
fe8abbf4 665 dp.shortcuts['g'] = TRUE; /* the treeview: `Cate&gory' */
666
32874aea 667 ret =
8ee3ff16 668 SaneDialogBox(hinst, MAKEINTRESOURCE(IDD_MAINBOX), NULL,
fe8abbf4 669 GenericMainDlgProc);
374330e2 670
fe8abbf4 671 ctrl_free_box(ctrlbox);
fe8abbf4 672 winctrl_cleanup(&ctrls_panel);
4e6d4091 673 winctrl_cleanup(&ctrls_base);
674 dp_cleanup(&dp);
fe8abbf4 675
374330e2 676 return ret;
677}
678
f89c3294 679int do_reconfig(HWND hwnd, int protcfginfo)
32874aea 680{
374330e2 681 Config backup_cfg;
682 int ret;
683
684 backup_cfg = cfg; /* structure copy */
fe8abbf4 685
686 ctrlbox = ctrl_new_box();
12745e35 687 setup_config_box(ctrlbox, TRUE, cfg.protocol, protcfginfo);
8a7f1392 688 win_setup_config_box(ctrlbox, &dp.hwnd, (help_path != NULL), TRUE,
689 cfg.protocol);
4e6d4091 690 dp_init(&dp);
fe8abbf4 691 winctrl_init(&ctrls_base);
692 winctrl_init(&ctrls_panel);
4e6d4091 693 dp_add_tree(&dp, &ctrls_base);
694 dp_add_tree(&dp, &ctrls_panel);
f6f450e2 695 dp.wintitle = dupprintf("%s Reconfiguration", appname);
696 dp.errtitle = dupprintf("%s Error", appname);
fe8abbf4 697 dp.data = &cfg;
fe8abbf4 698 dp.shortcuts['g'] = TRUE; /* the treeview: `Cate&gory' */
699
8ee3ff16 700 ret = SaneDialogBox(hinst, MAKEINTRESOURCE(IDD_MAINBOX), NULL,
fe8abbf4 701 GenericMainDlgProc);
702
703 ctrl_free_box(ctrlbox);
704 winctrl_cleanup(&ctrls_base);
705 winctrl_cleanup(&ctrls_panel);
4e6d4091 706 dp_cleanup(&dp);
fe8abbf4 707
374330e2 708 if (!ret)
709 cfg = backup_cfg; /* structure copy */
c9def1b8 710
374330e2 711 return ret;
712}
713
cbe2d68f 714void logevent(void *frontend, const char *string)
32874aea 715{
71346075 716 char timebuf[40];
aca589d9 717 struct tm tm;
71346075 718
a8327734 719 log_eventlog(logctx, string);
fb89f7ff 720
c5e9c988 721 if (nevents >= negsize) {
374330e2 722 negsize += 64;
3d88e64d 723 events = sresize(events, negsize, char *);
374330e2 724 }
71346075 725
aca589d9 726 tm=ltime();
727 strftime(timebuf, sizeof(timebuf), "%Y-%m-%d %H:%M:%S\t", &tm);
71346075 728
3d88e64d 729 events[nevents] = snewn(strlen(timebuf) + strlen(string) + 1, char);
71346075 730 strcpy(events[nevents], timebuf);
731 strcat(events[nevents], string);
9ad90448 732 if (logbox) {
32874aea 733 int count;
734 SendDlgItemMessage(logbox, IDN_LIST, LB_ADDSTRING,
735 0, (LPARAM) events[nevents]);
736 count = SendDlgItemMessage(logbox, IDN_LIST, LB_GETCOUNT, 0, 0);
737 SendDlgItemMessage(logbox, IDN_LIST, LB_SETTOPINDEX, count - 1, 0);
9ad90448 738 }
bce816e7 739 nevents++;
374330e2 740}
741
32874aea 742void showeventlog(HWND hwnd)
743{
374330e2 744 if (!logbox) {
32874aea 745 logbox = CreateDialog(hinst, MAKEINTRESOURCE(IDD_LOGBOX),
746 hwnd, LogProc);
747 ShowWindow(logbox, SW_SHOWNORMAL);
374330e2 748 }
9ecf8e5a 749 SetActiveWindow(logbox);
374330e2 750}
751
32874aea 752void showabout(HWND hwnd)
753{
754 DialogBox(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX), hwnd, AboutProc);
374330e2 755}
756
3d9449a1 757int verify_ssh_host_key(void *frontend, char *host, int port, char *keytype,
758 char *keystr, char *fingerprint,
759 void (*callback)(void *ctx, int result), void *ctx)
32874aea 760{
d5859615 761 int ret;
374330e2 762
d5859615 763 static const char absentmsg[] =
32874aea 764 "The server's host key is not cached in the registry. You\n"
765 "have no guarantee that the server is the computer you\n"
766 "think it is.\n"
65f66c88 767 "The server's %s key fingerprint is:\n"
32874aea 768 "%s\n"
769 "If you trust this host, hit Yes to add the key to\n"
f6f450e2 770 "%s's cache and carry on connecting.\n"
d0718310 771 "If you want to carry on connecting just once, without\n"
772 "adding the key to the cache, hit No.\n"
773 "If you do not trust this host, hit Cancel to abandon the\n"
32874aea 774 "connection.\n";
d5859615 775
776 static const char wrongmsg[] =
32874aea 777 "WARNING - POTENTIAL SECURITY BREACH!\n"
778 "\n"
f6f450e2 779 "The server's host key does not match the one %s has\n"
32874aea 780 "cached in the registry. This means that either the\n"
781 "server administrator has changed the host key, or you\n"
782 "have actually connected to another computer pretending\n"
783 "to be the server.\n"
65f66c88 784 "The new %s key fingerprint is:\n"
32874aea 785 "%s\n"
786 "If you were expecting this change and trust the new key,\n"
f6f450e2 787 "hit Yes to update %s's cache and continue connecting.\n"
32874aea 788 "If you want to carry on connecting but without updating\n"
789 "the cache, hit No.\n"
790 "If you want to abandon the connection completely, hit\n"
791 "Cancel. Hitting Cancel is the ONLY guaranteed safe\n" "choice.\n";
d5859615 792
f6f450e2 793 static const char mbtitle[] = "%s Security Alert";
de3df031 794
795 /*
d5859615 796 * Verify the key against the registry.
de3df031 797 */
d4857987 798 ret = verify_host_key(host, port, keytype, keystr);
d5859615 799
32874aea 800 if (ret == 0) /* success - key matched OK */
3d9449a1 801 return 1;
32874aea 802 if (ret == 2) { /* key was different */
803 int mbret;
690695e0 804 char *text = dupprintf(wrongmsg, appname, keytype, fingerprint,
805 appname);
806 char *caption = dupprintf(mbtitle, appname);
807 mbret = message_box(text, caption,
808 MB_ICONWARNING | MB_YESNOCANCEL | MB_DEFBUTTON3,
809 HELPCTXID(errors_hostkey_changed));
b3f3c051 810 assert(mbret==IDYES || mbret==IDNO || mbret==IDCANCEL);
690695e0 811 sfree(text);
812 sfree(caption);
13d40433 813 if (mbret == IDYES) {
32874aea 814 store_host_key(host, port, keytype, keystr);
13d40433 815 return 1;
816 } else if (mbret == IDNO)
b3f3c051 817 return 1;
818 return 0;
de3df031 819 }
32874aea 820 if (ret == 1) { /* key was absent */
821 int mbret;
690695e0 822 char *text = dupprintf(absentmsg, keytype, fingerprint, appname);
823 char *caption = dupprintf(mbtitle, appname);
824 mbret = message_box(text, caption,
825 MB_ICONWARNING | MB_YESNOCANCEL | MB_DEFBUTTON3,
826 HELPCTXID(errors_hostkey_absent));
b3f3c051 827 assert(mbret==IDYES || mbret==IDNO || mbret==IDCANCEL);
690695e0 828 sfree(text);
829 sfree(caption);
830 if (mbret == IDYES) {
d0718310 831 store_host_key(host, port, keytype, keystr);
690695e0 832 return 1;
833 } else if (mbret == IDNO)
b3f3c051 834 return 1;
835 return 0;
de3df031 836 }
de3df031 837}
e1c8e0ed 838
839/*
83e7d008 840 * Ask whether the selected algorithm is acceptable (since it was
ca20bfcf 841 * below the configured 'warn' threshold).
ca20bfcf 842 */
3d9449a1 843int askalg(void *frontend, const char *algtype, const char *algname,
844 void (*callback)(void *ctx, int result), void *ctx)
ca20bfcf 845{
f6f450e2 846 static const char mbtitle[] = "%s Security Alert";
ca20bfcf 847 static const char msg[] =
83e7d008 848 "The first %s supported by the server\n"
ca20bfcf 849 "is %.64s, which is below the configured\n"
850 "warning threshold.\n"
851 "Do you want to continue with this connection?\n";
f6f450e2 852 char *message, *title;
ca20bfcf 853 int mbret;
854
83e7d008 855 message = dupprintf(msg, algtype, algname);
f6f450e2 856 title = dupprintf(mbtitle, appname);
857 mbret = MessageBox(NULL, message, title,
76347f46 858 MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2);
f6f450e2 859 sfree(message);
860 sfree(title);
ca20bfcf 861 if (mbret == IDYES)
3d9449a1 862 return 1;
ca20bfcf 863 else
3d9449a1 864 return 0;
ca20bfcf 865}
866
867/*
e1c8e0ed 868 * Ask whether to wipe a session log file before writing to it.
869 * Returns 2 for wipe, 1 for append, 0 for cancel (don't log).
870 */
919baedb 871int askappend(void *frontend, Filename filename,
872 void (*callback)(void *ctx, int result), void *ctx)
32874aea 873{
e1c8e0ed 874 static const char msgtemplate[] =
875 "The session log file \"%.*s\" already exists.\n"
876 "You can overwrite it with a new session log,\n"
877 "append your session log to the end of it,\n"
878 "or disable session logging for this session.\n"
879 "Hit Yes to wipe the file, No to append to it,\n"
880 "or Cancel to disable logging.";
f6f450e2 881 char *message;
882 char *mbtitle;
e1c8e0ed 883 int mbret;
bf61b566 884
f6f450e2 885 message = dupprintf(msgtemplate, FILENAME_MAX, filename.path);
886 mbtitle = dupprintf("%s Log to File", appname);
e1c8e0ed 887
888 mbret = MessageBox(NULL, message, mbtitle,
76347f46 889 MB_ICONQUESTION | MB_YESNOCANCEL | MB_DEFBUTTON3);
f6f450e2 890
891 sfree(message);
892 sfree(mbtitle);
893
e1c8e0ed 894 if (mbret == IDYES)
895 return 2;
896 else if (mbret == IDNO)
897 return 1;
898 else
899 return 0;
900}
7bedb13c 901
902/*
903 * Warn about the obsolescent key file format.
a8327734 904 *
905 * Uniquely among these functions, this one does _not_ expect a
906 * frontend handle. This means that if PuTTY is ported to a
907 * platform which requires frontend handles, this function will be
908 * an anomaly. Fortunately, the problem it addresses will not have
909 * been present on that platform, so it can plausibly be
910 * implemented as an empty function.
7bedb13c 911 */
912void old_keyfile_warning(void)
913{
f6f450e2 914 static const char mbtitle[] = "%s Key File Warning";
7bedb13c 915 static const char message[] =
2e85c969 916 "You are loading an SSH-2 private key which has an\n"
7bedb13c 917 "old version of the file format. This means your key\n"
918 "file is not fully tamperproof. Future versions of\n"
f6f450e2 919 "%s may stop supporting this private key format,\n"
7bedb13c 920 "so we recommend you convert your key to the new\n"
921 "format.\n"
922 "\n"
923 "You can perform this conversion by loading the key\n"
924 "into PuTTYgen and then saving it again.";
925
f6f450e2 926 char *msg, *title;
927 msg = dupprintf(message, appname);
928 title = dupprintf(mbtitle, appname);
929
930 MessageBox(NULL, msg, title, MB_OK);
931
932 sfree(msg);
933 sfree(title);
7bedb13c 934}