First crack at `terminal-modes' in SSH. PuTTY now sends ERASE by default,
[u/mdw/putty] / settings.c
1 /*
2 * settings.c: read and write saved sessions. (platform-independent)
3 */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include "putty.h"
8 #include "storage.h"
9
10 /*
11 * Tables of string <-> enum value mappings
12 */
13 struct keyval { char *s; int v; };
14
15 /* The cipher order given here is the default order. */
16 static const struct keyval ciphernames[] = {
17 { "aes", CIPHER_AES },
18 { "blowfish", CIPHER_BLOWFISH },
19 { "3des", CIPHER_3DES },
20 { "WARN", CIPHER_WARN },
21 { "arcfour", CIPHER_ARCFOUR },
22 { "des", CIPHER_DES }
23 };
24
25 static const struct keyval kexnames[] = {
26 { "dh-gex-sha1", KEX_DHGEX },
27 { "dh-group14-sha1", KEX_DHGROUP14 },
28 { "dh-group1-sha1", KEX_DHGROUP1 },
29 { "WARN", KEX_WARN }
30 };
31
32 /*
33 * All the terminal modes that we know about for the "TerminalModes"
34 * setting. (Also used by config.c for the drop-down list.)
35 * This is currently precisely the same as the set in ssh.c, but could
36 * in principle differ if other backends started to support tty modes
37 * (e.g., the pty backend).
38 */
39 const char *const ttymodes[] = {
40 "INTR", "QUIT", "ERASE", "KILL", "EOF",
41 "EOL", "EOL2", "START", "STOP", "SUSP",
42 "DSUSP", "REPRINT", "WERASE", "LNEXT", "FLUSH",
43 "SWTCH", "STATUS", "DISCARD", "IGNPAR", "PARMRK",
44 "INPCK", "ISTRIP", "INLCR", "IGNCR", "ICRNL",
45 "IUCLC", "IXON", "IXANY", "IXOFF", "IMAXBEL",
46 "ISIG", "ICANON", "XCASE", "ECHO", "ECHOE",
47 "ECHOK", "ECHONL", "NOFLSH", "TOSTOP", "IEXTEN",
48 "ECHOCTL", "ECHOKE", "PENDIN", "OPOST", "OLCUC",
49 "ONLCR", "OCRNL", "ONOCR", "ONLRET", "CS7",
50 "CS8", "PARENB", "PARODD", NULL
51 };
52
53 static void gpps(void *handle, const char *name, const char *def,
54 char *val, int len)
55 {
56 if (!read_setting_s(handle, name, val, len)) {
57 char *pdef;
58
59 pdef = platform_default_s(name);
60 if (pdef) {
61 strncpy(val, pdef, len);
62 sfree(pdef);
63 } else {
64 strncpy(val, def, len);
65 }
66
67 val[len - 1] = '\0';
68 }
69 }
70
71 /*
72 * gppfont and gppfile cannot have local defaults, since the very
73 * format of a Filename or Font is platform-dependent. So the
74 * platform-dependent functions MUST return some sort of value.
75 */
76 static void gppfont(void *handle, const char *name, FontSpec *result)
77 {
78 if (!read_setting_fontspec(handle, name, result))
79 *result = platform_default_fontspec(name);
80 }
81 static void gppfile(void *handle, const char *name, Filename *result)
82 {
83 if (!read_setting_filename(handle, name, result))
84 *result = platform_default_filename(name);
85 }
86
87 static void gppi(void *handle, char *name, int def, int *i)
88 {
89 def = platform_default_i(name, def);
90 *i = read_setting_i(handle, name, def);
91 }
92
93 /*
94 * Read a set of name-value pairs in the format we occasionally use:
95 * NAME\tVALUE\0NAME\tVALUE\0\0 in memory
96 * NAME=VALUE,NAME=VALUE, in storage
97 * `def' is in the storage format.
98 */
99 static void gppmap(void *handle, char *name, char *def, char *val, int len)
100 {
101 char *buf = snewn(2*len, char), *p, *q;
102 gpps(handle, name, def, buf, 2*len);
103 p = buf;
104 q = val;
105 while (*p) {
106 while (*p && *p != ',') {
107 int c = *p++;
108 if (c == '=')
109 c = '\t';
110 if (c == '\\')
111 c = *p++;
112 *q++ = c;
113 }
114 if (*p == ',')
115 p++;
116 *q++ = '\0';
117 }
118 *q = '\0';
119 sfree(buf);
120 }
121
122 /*
123 * Write a set of name/value pairs in the above format.
124 */
125 static void wmap(void *handle, char const *key, char const *value, int len)
126 {
127 char *buf = snewn(2*len, char), *p;
128 const char *q;
129 p = buf;
130 q = value;
131 while (*q) {
132 while (*q) {
133 int c = *q++;
134 if (c == '=' || c == ',' || c == '\\')
135 *p++ = '\\';
136 if (c == '\t')
137 c = '=';
138 *p++ = c;
139 }
140 *p++ = ',';
141 q++;
142 }
143 *p = '\0';
144 write_setting_s(handle, key, buf);
145 sfree(buf);
146 }
147
148 static int key2val(const struct keyval *mapping, int nmaps, char *key)
149 {
150 int i;
151 for (i = 0; i < nmaps; i++)
152 if (!strcmp(mapping[i].s, key)) return mapping[i].v;
153 return -1;
154 }
155
156 static const char *val2key(const struct keyval *mapping, int nmaps, int val)
157 {
158 int i;
159 for (i = 0; i < nmaps; i++)
160 if (mapping[i].v == val) return mapping[i].s;
161 return NULL;
162 }
163
164 /*
165 * Helper function to parse a comma-separated list of strings into
166 * a preference list array of values. Any missing values are added
167 * to the end and duplicates are weeded.
168 * XXX: assumes vals in 'mapping' are small +ve integers
169 */
170 static void gprefs(void *sesskey, char *name, char *def,
171 const struct keyval *mapping, int nvals,
172 int *array)
173 {
174 char commalist[80];
175 int n;
176 unsigned long seen = 0; /* bitmap for weeding dups etc */
177 gpps(sesskey, name, def, commalist, sizeof(commalist));
178
179 /* Grotty parsing of commalist. */
180 n = 0;
181 do {
182 int v;
183 char *key;
184 key = strtok(n==0 ? commalist : NULL, ","); /* sorry */
185 if (!key) break;
186 if (((v = key2val(mapping, nvals, key)) != -1) &&
187 !(seen & 1<<v)) {
188 array[n] = v;
189 n++;
190 seen |= 1<<v;
191 }
192 } while (n < nvals);
193 /* Add any missing values (backward compatibility ect). */
194 {
195 int i;
196 for (i = 0; i < nvals; i++) {
197 if (!(seen & 1<<mapping[i].v)) {
198 array[n] = mapping[i].v;
199 n++;
200 }
201 }
202 }
203 }
204
205 /*
206 * Write out a preference list.
207 */
208 static void wprefs(void *sesskey, char *name,
209 const struct keyval *mapping, int nvals,
210 int *array)
211 {
212 char buf[80] = ""; /* XXX assumed big enough */
213 int l = sizeof(buf)-1, i;
214 buf[l] = '\0';
215 for (i = 0; l > 0 && i < nvals; i++) {
216 const char *s = val2key(mapping, nvals, array[i]);
217 if (s) {
218 int sl = strlen(s);
219 if (i > 0) {
220 strncat(buf, ",", l);
221 l--;
222 }
223 strncat(buf, s, l);
224 l -= sl;
225 }
226 }
227 write_setting_s(sesskey, name, buf);
228 }
229
230 char *save_settings(char *section, int do_host, Config * cfg)
231 {
232 void *sesskey;
233 char *errmsg;
234
235 sesskey = open_settings_w(section, &errmsg);
236 if (!sesskey)
237 return errmsg;
238 save_open_settings(sesskey, do_host, cfg);
239 close_settings_w(sesskey);
240 return NULL;
241 }
242
243 void save_open_settings(void *sesskey, int do_host, Config *cfg)
244 {
245 int i;
246 char *p;
247
248 write_setting_i(sesskey, "Present", 1);
249 if (do_host) {
250 write_setting_s(sesskey, "HostName", cfg->host);
251 }
252 write_setting_filename(sesskey, "LogFileName", cfg->logfilename);
253 write_setting_i(sesskey, "LogType", cfg->logtype);
254 write_setting_i(sesskey, "LogFileClash", cfg->logxfovr);
255 write_setting_i(sesskey, "LogFlush", cfg->logflush);
256 write_setting_i(sesskey, "SSHLogOmitPasswords", cfg->logomitpass);
257 write_setting_i(sesskey, "SSHLogOmitData", cfg->logomitdata);
258 p = "raw";
259 for (i = 0; backends[i].name != NULL; i++)
260 if (backends[i].protocol == cfg->protocol) {
261 p = backends[i].name;
262 break;
263 }
264 write_setting_s(sesskey, "Protocol", p);
265 write_setting_i(sesskey, "PortNumber", cfg->port);
266 /* The CloseOnExit numbers are arranged in a different order from
267 * the standard FORCE_ON / FORCE_OFF / AUTO. */
268 write_setting_i(sesskey, "CloseOnExit", (cfg->close_on_exit+2)%3);
269 write_setting_i(sesskey, "WarnOnClose", !!cfg->warn_on_close);
270 write_setting_i(sesskey, "PingInterval", cfg->ping_interval / 60); /* minutes */
271 write_setting_i(sesskey, "PingIntervalSecs", cfg->ping_interval % 60); /* seconds */
272 write_setting_i(sesskey, "TCPNoDelay", cfg->tcp_nodelay);
273 write_setting_i(sesskey, "TCPKeepalives", cfg->tcp_keepalives);
274 write_setting_s(sesskey, "TerminalType", cfg->termtype);
275 write_setting_s(sesskey, "TerminalSpeed", cfg->termspeed);
276 wmap(sesskey, "TerminalModes", cfg->ttymodes, lenof(cfg->ttymodes));
277
278 /* Address family selection */
279 write_setting_i(sesskey, "AddressFamily", cfg->addressfamily);
280
281 /* proxy settings */
282 write_setting_s(sesskey, "ProxyExcludeList", cfg->proxy_exclude_list);
283 write_setting_i(sesskey, "ProxyDNS", (cfg->proxy_dns+2)%3);
284 write_setting_i(sesskey, "ProxyLocalhost", cfg->even_proxy_localhost);
285 write_setting_i(sesskey, "ProxyMethod", cfg->proxy_type);
286 write_setting_s(sesskey, "ProxyHost", cfg->proxy_host);
287 write_setting_i(sesskey, "ProxyPort", cfg->proxy_port);
288 write_setting_s(sesskey, "ProxyUsername", cfg->proxy_username);
289 write_setting_s(sesskey, "ProxyPassword", cfg->proxy_password);
290 write_setting_s(sesskey, "ProxyTelnetCommand", cfg->proxy_telnet_command);
291 wmap(sesskey, "Environment", cfg->environmt, lenof(cfg->environmt));
292 write_setting_s(sesskey, "UserName", cfg->username);
293 write_setting_s(sesskey, "LocalUserName", cfg->localusername);
294 write_setting_i(sesskey, "NoPTY", cfg->nopty);
295 write_setting_i(sesskey, "Compression", cfg->compression);
296 write_setting_i(sesskey, "AgentFwd", cfg->agentfwd);
297 write_setting_i(sesskey, "ChangeUsername", cfg->change_username);
298 wprefs(sesskey, "Cipher", ciphernames, CIPHER_MAX,
299 cfg->ssh_cipherlist);
300 wprefs(sesskey, "KEX", kexnames, KEX_MAX, cfg->ssh_kexlist);
301 write_setting_i(sesskey, "RekeyTime", cfg->ssh_rekey_time);
302 write_setting_s(sesskey, "RekeyBytes", cfg->ssh_rekey_data);
303 write_setting_i(sesskey, "AuthTIS", cfg->try_tis_auth);
304 write_setting_i(sesskey, "AuthKI", cfg->try_ki_auth);
305 write_setting_i(sesskey, "SshNoShell", cfg->ssh_no_shell);
306 write_setting_i(sesskey, "SshProt", cfg->sshprot);
307 write_setting_i(sesskey, "SSH2DES", cfg->ssh2_des_cbc);
308 write_setting_filename(sesskey, "PublicKeyFile", cfg->keyfile);
309 write_setting_s(sesskey, "RemoteCommand", cfg->remote_cmd);
310 write_setting_i(sesskey, "RFCEnviron", cfg->rfc_environ);
311 write_setting_i(sesskey, "PassiveTelnet", cfg->passive_telnet);
312 write_setting_i(sesskey, "BackspaceIsDelete", cfg->bksp_is_delete);
313 write_setting_i(sesskey, "RXVTHomeEnd", cfg->rxvt_homeend);
314 write_setting_i(sesskey, "LinuxFunctionKeys", cfg->funky_type);
315 write_setting_i(sesskey, "NoApplicationKeys", cfg->no_applic_k);
316 write_setting_i(sesskey, "NoApplicationCursors", cfg->no_applic_c);
317 write_setting_i(sesskey, "NoMouseReporting", cfg->no_mouse_rep);
318 write_setting_i(sesskey, "NoRemoteResize", cfg->no_remote_resize);
319 write_setting_i(sesskey, "NoAltScreen", cfg->no_alt_screen);
320 write_setting_i(sesskey, "NoRemoteWinTitle", cfg->no_remote_wintitle);
321 write_setting_i(sesskey, "NoRemoteQTitle", cfg->no_remote_qtitle);
322 write_setting_i(sesskey, "NoDBackspace", cfg->no_dbackspace);
323 write_setting_i(sesskey, "NoRemoteCharset", cfg->no_remote_charset);
324 write_setting_i(sesskey, "ApplicationCursorKeys", cfg->app_cursor);
325 write_setting_i(sesskey, "ApplicationKeypad", cfg->app_keypad);
326 write_setting_i(sesskey, "NetHackKeypad", cfg->nethack_keypad);
327 write_setting_i(sesskey, "AltF4", cfg->alt_f4);
328 write_setting_i(sesskey, "AltSpace", cfg->alt_space);
329 write_setting_i(sesskey, "AltOnly", cfg->alt_only);
330 write_setting_i(sesskey, "ComposeKey", cfg->compose_key);
331 write_setting_i(sesskey, "CtrlAltKeys", cfg->ctrlaltkeys);
332 write_setting_i(sesskey, "TelnetKey", cfg->telnet_keyboard);
333 write_setting_i(sesskey, "TelnetRet", cfg->telnet_newline);
334 write_setting_i(sesskey, "LocalEcho", cfg->localecho);
335 write_setting_i(sesskey, "LocalEdit", cfg->localedit);
336 write_setting_s(sesskey, "Answerback", cfg->answerback);
337 write_setting_i(sesskey, "AlwaysOnTop", cfg->alwaysontop);
338 write_setting_i(sesskey, "FullScreenOnAltEnter", cfg->fullscreenonaltenter);
339 write_setting_i(sesskey, "HideMousePtr", cfg->hide_mouseptr);
340 write_setting_i(sesskey, "SunkenEdge", cfg->sunken_edge);
341 write_setting_i(sesskey, "WindowBorder", cfg->window_border);
342 write_setting_i(sesskey, "CurType", cfg->cursor_type);
343 write_setting_i(sesskey, "BlinkCur", cfg->blink_cur);
344 write_setting_i(sesskey, "Beep", cfg->beep);
345 write_setting_i(sesskey, "BeepInd", cfg->beep_ind);
346 write_setting_filename(sesskey, "BellWaveFile", cfg->bell_wavefile);
347 write_setting_i(sesskey, "BellOverload", cfg->bellovl);
348 write_setting_i(sesskey, "BellOverloadN", cfg->bellovl_n);
349 write_setting_i(sesskey, "BellOverloadT", cfg->bellovl_t
350 #ifdef PUTTY_UNIX_H
351 * 1000
352 #endif
353 );
354 write_setting_i(sesskey, "BellOverloadS", cfg->bellovl_s
355 #ifdef PUTTY_UNIX_H
356 * 1000
357 #endif
358 );
359 write_setting_i(sesskey, "ScrollbackLines", cfg->savelines);
360 write_setting_i(sesskey, "DECOriginMode", cfg->dec_om);
361 write_setting_i(sesskey, "AutoWrapMode", cfg->wrap_mode);
362 write_setting_i(sesskey, "LFImpliesCR", cfg->lfhascr);
363 write_setting_i(sesskey, "DisableArabicShaping", cfg->arabicshaping);
364 write_setting_i(sesskey, "DisableBidi", cfg->bidi);
365 write_setting_i(sesskey, "WinNameAlways", cfg->win_name_always);
366 write_setting_s(sesskey, "WinTitle", cfg->wintitle);
367 write_setting_i(sesskey, "TermWidth", cfg->width);
368 write_setting_i(sesskey, "TermHeight", cfg->height);
369 write_setting_fontspec(sesskey, "Font", cfg->font);
370 write_setting_i(sesskey, "FontVTMode", cfg->vtmode);
371 write_setting_i(sesskey, "UseSystemColours", cfg->system_colour);
372 write_setting_i(sesskey, "TryPalette", cfg->try_palette);
373 write_setting_i(sesskey, "ANSIColour", cfg->ansi_colour);
374 write_setting_i(sesskey, "Xterm256Colour", cfg->xterm_256_colour);
375 write_setting_i(sesskey, "BoldAsColour", cfg->bold_colour);
376
377 for (i = 0; i < 22; i++) {
378 char buf[20], buf2[30];
379 sprintf(buf, "Colour%d", i);
380 sprintf(buf2, "%d,%d,%d", cfg->colours[i][0],
381 cfg->colours[i][1], cfg->colours[i][2]);
382 write_setting_s(sesskey, buf, buf2);
383 }
384 write_setting_i(sesskey, "RawCNP", cfg->rawcnp);
385 write_setting_i(sesskey, "PasteRTF", cfg->rtf_paste);
386 write_setting_i(sesskey, "MouseIsXterm", cfg->mouse_is_xterm);
387 write_setting_i(sesskey, "RectSelect", cfg->rect_select);
388 write_setting_i(sesskey, "MouseOverride", cfg->mouse_override);
389 for (i = 0; i < 256; i += 32) {
390 char buf[20], buf2[256];
391 int j;
392 sprintf(buf, "Wordness%d", i);
393 *buf2 = '\0';
394 for (j = i; j < i + 32; j++) {
395 sprintf(buf2 + strlen(buf2), "%s%d",
396 (*buf2 ? "," : ""), cfg->wordness[j]);
397 }
398 write_setting_s(sesskey, buf, buf2);
399 }
400 write_setting_s(sesskey, "LineCodePage", cfg->line_codepage);
401 write_setting_i(sesskey, "CJKAmbigWide", cfg->cjk_ambig_wide);
402 write_setting_i(sesskey, "UTF8Override", cfg->utf8_override);
403 write_setting_s(sesskey, "Printer", cfg->printer);
404 write_setting_i(sesskey, "CapsLockCyr", cfg->xlat_capslockcyr);
405 write_setting_i(sesskey, "ScrollBar", cfg->scrollbar);
406 write_setting_i(sesskey, "ScrollBarFullScreen", cfg->scrollbar_in_fullscreen);
407 write_setting_i(sesskey, "ScrollOnKey", cfg->scroll_on_key);
408 write_setting_i(sesskey, "ScrollOnDisp", cfg->scroll_on_disp);
409 write_setting_i(sesskey, "EraseToScrollback", cfg->erase_to_scrollback);
410 write_setting_i(sesskey, "LockSize", cfg->resize_action);
411 write_setting_i(sesskey, "BCE", cfg->bce);
412 write_setting_i(sesskey, "BlinkText", cfg->blinktext);
413 write_setting_i(sesskey, "X11Forward", cfg->x11_forward);
414 write_setting_s(sesskey, "X11Display", cfg->x11_display);
415 write_setting_i(sesskey, "X11AuthType", cfg->x11_auth);
416 write_setting_i(sesskey, "LocalPortAcceptAll", cfg->lport_acceptall);
417 write_setting_i(sesskey, "RemotePortAcceptAll", cfg->rport_acceptall);
418 wmap(sesskey, "PortForwardings", cfg->portfwd, lenof(cfg->portfwd));
419 write_setting_i(sesskey, "BugIgnore1", 2-cfg->sshbug_ignore1);
420 write_setting_i(sesskey, "BugPlainPW1", 2-cfg->sshbug_plainpw1);
421 write_setting_i(sesskey, "BugRSA1", 2-cfg->sshbug_rsa1);
422 write_setting_i(sesskey, "BugHMAC2", 2-cfg->sshbug_hmac2);
423 write_setting_i(sesskey, "BugDeriveKey2", 2-cfg->sshbug_derivekey2);
424 write_setting_i(sesskey, "BugRSAPad2", 2-cfg->sshbug_rsapad2);
425 write_setting_i(sesskey, "BugPKSessID2", 2-cfg->sshbug_pksessid2);
426 write_setting_i(sesskey, "StampUtmp", cfg->stamp_utmp);
427 write_setting_i(sesskey, "LoginShell", cfg->login_shell);
428 write_setting_i(sesskey, "ScrollbarOnLeft", cfg->scrollbar_on_left);
429 write_setting_fontspec(sesskey, "BoldFont", cfg->boldfont);
430 write_setting_fontspec(sesskey, "WideFont", cfg->widefont);
431 write_setting_fontspec(sesskey, "WideBoldFont", cfg->wideboldfont);
432 write_setting_i(sesskey, "ShadowBold", cfg->shadowbold);
433 write_setting_i(sesskey, "ShadowBoldOffset", cfg->shadowboldoffset);
434 }
435
436 void load_settings(char *section, int do_host, Config * cfg)
437 {
438 void *sesskey;
439
440 sesskey = open_settings_r(section);
441 load_open_settings(sesskey, do_host, cfg);
442 close_settings_r(sesskey);
443 }
444
445 void load_open_settings(void *sesskey, int do_host, Config *cfg)
446 {
447 int i;
448 char prot[10];
449
450 cfg->ssh_subsys = 0; /* FIXME: load this properly */
451 cfg->remote_cmd_ptr = NULL;
452 cfg->remote_cmd_ptr2 = NULL;
453
454 if (do_host) {
455 gpps(sesskey, "HostName", "", cfg->host, sizeof(cfg->host));
456 } else {
457 cfg->host[0] = '\0'; /* blank hostname */
458 }
459 gppfile(sesskey, "LogFileName", &cfg->logfilename);
460 gppi(sesskey, "LogType", 0, &cfg->logtype);
461 gppi(sesskey, "LogFileClash", LGXF_ASK, &cfg->logxfovr);
462 gppi(sesskey, "LogFlush", 1, &cfg->logflush);
463 gppi(sesskey, "SSHLogOmitPasswords", 1, &cfg->logomitpass);
464 gppi(sesskey, "SSHLogOmitData", 0, &cfg->logomitdata);
465
466 gpps(sesskey, "Protocol", "default", prot, 10);
467 cfg->protocol = default_protocol;
468 cfg->port = default_port;
469 for (i = 0; backends[i].name != NULL; i++)
470 if (!strcmp(prot, backends[i].name)) {
471 cfg->protocol = backends[i].protocol;
472 gppi(sesskey, "PortNumber", default_port, &cfg->port);
473 break;
474 }
475
476 /* Address family selection */
477 gppi(sesskey, "AddressFamily", ADDRTYPE_UNSPEC, &cfg->addressfamily);
478
479 /* The CloseOnExit numbers are arranged in a different order from
480 * the standard FORCE_ON / FORCE_OFF / AUTO. */
481 gppi(sesskey, "CloseOnExit", 1, &i); cfg->close_on_exit = (i+1)%3;
482 gppi(sesskey, "WarnOnClose", 1, &cfg->warn_on_close);
483 {
484 /* This is two values for backward compatibility with 0.50/0.51 */
485 int pingmin, pingsec;
486 gppi(sesskey, "PingInterval", 0, &pingmin);
487 gppi(sesskey, "PingIntervalSecs", 0, &pingsec);
488 cfg->ping_interval = pingmin * 60 + pingsec;
489 }
490 gppi(sesskey, "TCPNoDelay", 1, &cfg->tcp_nodelay);
491 gppi(sesskey, "TCPKeepalives", 0, &cfg->tcp_keepalives);
492 gpps(sesskey, "TerminalType", "xterm", cfg->termtype,
493 sizeof(cfg->termtype));
494 gpps(sesskey, "TerminalSpeed", "38400,38400", cfg->termspeed,
495 sizeof(cfg->termspeed));
496 {
497 /* This hardcodes a big set of defaults in any new saved
498 * sessions. Let's hope we don't change our mind. */
499 int i;
500 char *def = dupstr("");
501 /* Default: all set to "auto" */
502 for (i = 0; ttymodes[i]; i++) {
503 char *def2 = dupprintf("%s%s=A,", def, ttymodes[i]);
504 sfree(def);
505 def = def2;
506 }
507 gppmap(sesskey, "TerminalModes", def,
508 cfg->ttymodes, lenof(cfg->ttymodes));
509 sfree(def);
510 }
511
512 /* proxy settings */
513 gpps(sesskey, "ProxyExcludeList", "", cfg->proxy_exclude_list,
514 sizeof(cfg->proxy_exclude_list));
515 gppi(sesskey, "ProxyDNS", 1, &i); cfg->proxy_dns = (i+1)%3;
516 gppi(sesskey, "ProxyLocalhost", 0, &cfg->even_proxy_localhost);
517 gppi(sesskey, "ProxyMethod", -1, &cfg->proxy_type);
518 if (cfg->proxy_type == -1) {
519 int i;
520 gppi(sesskey, "ProxyType", 0, &i);
521 if (i == 0)
522 cfg->proxy_type = PROXY_NONE;
523 else if (i == 1)
524 cfg->proxy_type = PROXY_HTTP;
525 else if (i == 3)
526 cfg->proxy_type = PROXY_TELNET;
527 else if (i == 4)
528 cfg->proxy_type = PROXY_CMD;
529 else {
530 gppi(sesskey, "ProxySOCKSVersion", 5, &i);
531 if (i == 5)
532 cfg->proxy_type = PROXY_SOCKS5;
533 else
534 cfg->proxy_type = PROXY_SOCKS4;
535 }
536 }
537 gpps(sesskey, "ProxyHost", "proxy", cfg->proxy_host,
538 sizeof(cfg->proxy_host));
539 gppi(sesskey, "ProxyPort", 80, &cfg->proxy_port);
540 gpps(sesskey, "ProxyUsername", "", cfg->proxy_username,
541 sizeof(cfg->proxy_username));
542 gpps(sesskey, "ProxyPassword", "", cfg->proxy_password,
543 sizeof(cfg->proxy_password));
544 gpps(sesskey, "ProxyTelnetCommand", "connect %host %port\\n",
545 cfg->proxy_telnet_command, sizeof(cfg->proxy_telnet_command));
546 gppmap(sesskey, "Environment", "", cfg->environmt, lenof(cfg->environmt));
547 gpps(sesskey, "UserName", "", cfg->username, sizeof(cfg->username));
548 gpps(sesskey, "LocalUserName", "", cfg->localusername,
549 sizeof(cfg->localusername));
550 gppi(sesskey, "NoPTY", 0, &cfg->nopty);
551 gppi(sesskey, "Compression", 0, &cfg->compression);
552 gppi(sesskey, "AgentFwd", 0, &cfg->agentfwd);
553 gppi(sesskey, "ChangeUsername", 0, &cfg->change_username);
554 gprefs(sesskey, "Cipher", "\0",
555 ciphernames, CIPHER_MAX, cfg->ssh_cipherlist);
556 {
557 /* Backward-compatibility: we used to have an option to
558 * disable gex under the "bugs" panel after one report of
559 * a server which offered it then choked, but we never got
560 * a server version string or any other reports. */
561 char *default_kexes;
562 gppi(sesskey, "BugDHGEx2", 0, &i); i = 2-i;
563 if (i == FORCE_ON)
564 default_kexes = "dh-group14-sha1,dh-group1-sha1,WARN,dh-gex-sha1";
565 else
566 default_kexes = "dh-gex-sha1,dh-group14-sha1,dh-group1-sha1,WARN";
567 gprefs(sesskey, "KEX", default_kexes,
568 kexnames, KEX_MAX, cfg->ssh_kexlist);
569 }
570 gppi(sesskey, "RekeyTime", 60, &cfg->ssh_rekey_time);
571 gpps(sesskey, "RekeyBytes", "1G", cfg->ssh_rekey_data,
572 sizeof(cfg->ssh_rekey_data));
573 gppi(sesskey, "SshProt", 2, &cfg->sshprot);
574 gppi(sesskey, "SSH2DES", 0, &cfg->ssh2_des_cbc);
575 gppi(sesskey, "AuthTIS", 0, &cfg->try_tis_auth);
576 gppi(sesskey, "AuthKI", 1, &cfg->try_ki_auth);
577 gppi(sesskey, "SshNoShell", 0, &cfg->ssh_no_shell);
578 gppfile(sesskey, "PublicKeyFile", &cfg->keyfile);
579 gpps(sesskey, "RemoteCommand", "", cfg->remote_cmd,
580 sizeof(cfg->remote_cmd));
581 gppi(sesskey, "RFCEnviron", 0, &cfg->rfc_environ);
582 gppi(sesskey, "PassiveTelnet", 0, &cfg->passive_telnet);
583 gppi(sesskey, "BackspaceIsDelete", 1, &cfg->bksp_is_delete);
584 gppi(sesskey, "RXVTHomeEnd", 0, &cfg->rxvt_homeend);
585 gppi(sesskey, "LinuxFunctionKeys", 0, &cfg->funky_type);
586 gppi(sesskey, "NoApplicationKeys", 0, &cfg->no_applic_k);
587 gppi(sesskey, "NoApplicationCursors", 0, &cfg->no_applic_c);
588 gppi(sesskey, "NoMouseReporting", 0, &cfg->no_mouse_rep);
589 gppi(sesskey, "NoRemoteResize", 0, &cfg->no_remote_resize);
590 gppi(sesskey, "NoAltScreen", 0, &cfg->no_alt_screen);
591 gppi(sesskey, "NoRemoteWinTitle", 0, &cfg->no_remote_wintitle);
592 gppi(sesskey, "NoRemoteQTitle", 1, &cfg->no_remote_qtitle);
593 gppi(sesskey, "NoDBackspace", 0, &cfg->no_dbackspace);
594 gppi(sesskey, "NoRemoteCharset", 0, &cfg->no_remote_charset);
595 gppi(sesskey, "ApplicationCursorKeys", 0, &cfg->app_cursor);
596 gppi(sesskey, "ApplicationKeypad", 0, &cfg->app_keypad);
597 gppi(sesskey, "NetHackKeypad", 0, &cfg->nethack_keypad);
598 gppi(sesskey, "AltF4", 1, &cfg->alt_f4);
599 gppi(sesskey, "AltSpace", 0, &cfg->alt_space);
600 gppi(sesskey, "AltOnly", 0, &cfg->alt_only);
601 gppi(sesskey, "ComposeKey", 0, &cfg->compose_key);
602 gppi(sesskey, "CtrlAltKeys", 1, &cfg->ctrlaltkeys);
603 gppi(sesskey, "TelnetKey", 0, &cfg->telnet_keyboard);
604 gppi(sesskey, "TelnetRet", 1, &cfg->telnet_newline);
605 gppi(sesskey, "LocalEcho", AUTO, &cfg->localecho);
606 gppi(sesskey, "LocalEdit", AUTO, &cfg->localedit);
607 gpps(sesskey, "Answerback", "PuTTY", cfg->answerback,
608 sizeof(cfg->answerback));
609 gppi(sesskey, "AlwaysOnTop", 0, &cfg->alwaysontop);
610 gppi(sesskey, "FullScreenOnAltEnter", 0, &cfg->fullscreenonaltenter);
611 gppi(sesskey, "HideMousePtr", 0, &cfg->hide_mouseptr);
612 gppi(sesskey, "SunkenEdge", 0, &cfg->sunken_edge);
613 gppi(sesskey, "WindowBorder", 1, &cfg->window_border);
614 gppi(sesskey, "CurType", 0, &cfg->cursor_type);
615 gppi(sesskey, "BlinkCur", 0, &cfg->blink_cur);
616 /* pedantic compiler tells me I can't use &cfg->beep as an int * :-) */
617 gppi(sesskey, "Beep", 1, &cfg->beep);
618 gppi(sesskey, "BeepInd", 0, &cfg->beep_ind);
619 gppfile(sesskey, "BellWaveFile", &cfg->bell_wavefile);
620 gppi(sesskey, "BellOverload", 1, &cfg->bellovl);
621 gppi(sesskey, "BellOverloadN", 5, &cfg->bellovl_n);
622 gppi(sesskey, "BellOverloadT", 2*TICKSPERSEC, &i);
623 cfg->bellovl_t = i
624 #ifdef PUTTY_UNIX_H
625 / 1000
626 #endif
627 ;
628 gppi(sesskey, "BellOverloadS", 5*TICKSPERSEC, &i);
629 cfg->bellovl_s = i
630 #ifdef PUTTY_UNIX_H
631 / 1000
632 #endif
633 ;
634 gppi(sesskey, "ScrollbackLines", 200, &cfg->savelines);
635 gppi(sesskey, "DECOriginMode", 0, &cfg->dec_om);
636 gppi(sesskey, "AutoWrapMode", 1, &cfg->wrap_mode);
637 gppi(sesskey, "LFImpliesCR", 0, &cfg->lfhascr);
638 gppi(sesskey, "DisableArabicShaping", 0, &cfg->arabicshaping);
639 gppi(sesskey, "DisableBidi", 0, &cfg->bidi);
640 gppi(sesskey, "WinNameAlways", 1, &cfg->win_name_always);
641 gpps(sesskey, "WinTitle", "", cfg->wintitle, sizeof(cfg->wintitle));
642 gppi(sesskey, "TermWidth", 80, &cfg->width);
643 gppi(sesskey, "TermHeight", 24, &cfg->height);
644 gppfont(sesskey, "Font", &cfg->font);
645 gppi(sesskey, "FontVTMode", VT_UNICODE, (int *) &cfg->vtmode);
646 gppi(sesskey, "UseSystemColours", 0, &cfg->system_colour);
647 gppi(sesskey, "TryPalette", 0, &cfg->try_palette);
648 gppi(sesskey, "ANSIColour", 1, &cfg->ansi_colour);
649 gppi(sesskey, "Xterm256Colour", 1, &cfg->xterm_256_colour);
650 gppi(sesskey, "BoldAsColour", 1, &cfg->bold_colour);
651
652 for (i = 0; i < 22; i++) {
653 static const char *const defaults[] = {
654 "187,187,187", "255,255,255", "0,0,0", "85,85,85", "0,0,0",
655 "0,255,0", "0,0,0", "85,85,85", "187,0,0", "255,85,85",
656 "0,187,0", "85,255,85", "187,187,0", "255,255,85", "0,0,187",
657 "85,85,255", "187,0,187", "255,85,255", "0,187,187",
658 "85,255,255", "187,187,187", "255,255,255"
659 };
660 char buf[20], buf2[30];
661 int c0, c1, c2;
662 sprintf(buf, "Colour%d", i);
663 gpps(sesskey, buf, defaults[i], buf2, sizeof(buf2));
664 if (sscanf(buf2, "%d,%d,%d", &c0, &c1, &c2) == 3) {
665 cfg->colours[i][0] = c0;
666 cfg->colours[i][1] = c1;
667 cfg->colours[i][2] = c2;
668 }
669 }
670 gppi(sesskey, "RawCNP", 0, &cfg->rawcnp);
671 gppi(sesskey, "PasteRTF", 0, &cfg->rtf_paste);
672 gppi(sesskey, "MouseIsXterm", 0, &cfg->mouse_is_xterm);
673 gppi(sesskey, "RectSelect", 0, &cfg->rect_select);
674 gppi(sesskey, "MouseOverride", 1, &cfg->mouse_override);
675 for (i = 0; i < 256; i += 32) {
676 static const char *const defaults[] = {
677 "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
678 "0,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1",
679 "1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2",
680 "1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1",
681 "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1",
682 "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1",
683 "2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2",
684 "2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2"
685 };
686 char buf[20], buf2[256], *p;
687 int j;
688 sprintf(buf, "Wordness%d", i);
689 gpps(sesskey, buf, defaults[i / 32], buf2, sizeof(buf2));
690 p = buf2;
691 for (j = i; j < i + 32; j++) {
692 char *q = p;
693 while (*p && *p != ',')
694 p++;
695 if (*p == ',')
696 *p++ = '\0';
697 cfg->wordness[j] = atoi(q);
698 }
699 }
700 /*
701 * The empty default for LineCodePage will be converted later
702 * into a plausible default for the locale.
703 */
704 gpps(sesskey, "LineCodePage", "", cfg->line_codepage,
705 sizeof(cfg->line_codepage));
706 gppi(sesskey, "CJKAmbigWide", 0, &cfg->cjk_ambig_wide);
707 gppi(sesskey, "UTF8Override", 1, &cfg->utf8_override);
708 gpps(sesskey, "Printer", "", cfg->printer, sizeof(cfg->printer));
709 gppi (sesskey, "CapsLockCyr", 0, &cfg->xlat_capslockcyr);
710 gppi(sesskey, "ScrollBar", 1, &cfg->scrollbar);
711 gppi(sesskey, "ScrollBarFullScreen", 0, &cfg->scrollbar_in_fullscreen);
712 gppi(sesskey, "ScrollOnKey", 0, &cfg->scroll_on_key);
713 gppi(sesskey, "ScrollOnDisp", 1, &cfg->scroll_on_disp);
714 gppi(sesskey, "EraseToScrollback", 1, &cfg->erase_to_scrollback);
715 gppi(sesskey, "LockSize", 0, &cfg->resize_action);
716 gppi(sesskey, "BCE", 1, &cfg->bce);
717 gppi(sesskey, "BlinkText", 0, &cfg->blinktext);
718 gppi(sesskey, "X11Forward", 0, &cfg->x11_forward);
719 gpps(sesskey, "X11Display", "", cfg->x11_display,
720 sizeof(cfg->x11_display));
721 gppi(sesskey, "X11AuthType", X11_MIT, &cfg->x11_auth);
722
723 gppi(sesskey, "LocalPortAcceptAll", 0, &cfg->lport_acceptall);
724 gppi(sesskey, "RemotePortAcceptAll", 0, &cfg->rport_acceptall);
725 gppmap(sesskey, "PortForwardings", "", cfg->portfwd, lenof(cfg->portfwd));
726 gppi(sesskey, "BugIgnore1", 0, &i); cfg->sshbug_ignore1 = 2-i;
727 gppi(sesskey, "BugPlainPW1", 0, &i); cfg->sshbug_plainpw1 = 2-i;
728 gppi(sesskey, "BugRSA1", 0, &i); cfg->sshbug_rsa1 = 2-i;
729 {
730 int i;
731 gppi(sesskey, "BugHMAC2", 0, &i); cfg->sshbug_hmac2 = 2-i;
732 if (cfg->sshbug_hmac2 == AUTO) {
733 gppi(sesskey, "BuggyMAC", 0, &i);
734 if (i == 1)
735 cfg->sshbug_hmac2 = FORCE_ON;
736 }
737 }
738 gppi(sesskey, "BugDeriveKey2", 0, &i); cfg->sshbug_derivekey2 = 2-i;
739 gppi(sesskey, "BugRSAPad2", 0, &i); cfg->sshbug_rsapad2 = 2-i;
740 gppi(sesskey, "BugPKSessID2", 0, &i); cfg->sshbug_pksessid2 = 2-i;
741 gppi(sesskey, "BugRekey2", 0, &i); cfg->sshbug_rekey2 = 2-i;
742 gppi(sesskey, "StampUtmp", 1, &cfg->stamp_utmp);
743 gppi(sesskey, "LoginShell", 1, &cfg->login_shell);
744 gppi(sesskey, "ScrollbarOnLeft", 0, &cfg->scrollbar_on_left);
745 gppi(sesskey, "ShadowBold", 0, &cfg->shadowbold);
746 gppfont(sesskey, "BoldFont", &cfg->boldfont);
747 gppfont(sesskey, "WideFont", &cfg->widefont);
748 gppfont(sesskey, "WideBoldFont", &cfg->wideboldfont);
749 gppi(sesskey, "ShadowBoldOffset", 1, &cfg->shadowboldoffset);
750 }
751
752 void do_defaults(char *session, Config * cfg)
753 {
754 load_settings(session, (session != NULL && *session), cfg);
755 }
756
757 static int sessioncmp(const void *av, const void *bv)
758 {
759 const char *a = *(const char *const *) av;
760 const char *b = *(const char *const *) bv;
761
762 /*
763 * Alphabetical order, except that "Default Settings" is a
764 * special case and comes first.
765 */
766 if (!strcmp(a, "Default Settings"))
767 return -1; /* a comes first */
768 if (!strcmp(b, "Default Settings"))
769 return +1; /* b comes first */
770 /*
771 * FIXME: perhaps we should ignore the first & in determining
772 * sort order.
773 */
774 return strcmp(a, b); /* otherwise, compare normally */
775 }
776
777 void get_sesslist(struct sesslist *list, int allocate)
778 {
779 char otherbuf[2048];
780 int buflen, bufsize, i;
781 char *p, *ret;
782 void *handle;
783
784 if (allocate) {
785
786 buflen = bufsize = 0;
787 list->buffer = NULL;
788 if ((handle = enum_settings_start()) != NULL) {
789 do {
790 ret = enum_settings_next(handle, otherbuf, sizeof(otherbuf));
791 if (ret) {
792 int len = strlen(otherbuf) + 1;
793 if (bufsize < buflen + len) {
794 bufsize = buflen + len + 2048;
795 list->buffer = sresize(list->buffer, bufsize, char);
796 }
797 strcpy(list->buffer + buflen, otherbuf);
798 buflen += strlen(list->buffer + buflen) + 1;
799 }
800 } while (ret);
801 enum_settings_finish(handle);
802 }
803 list->buffer = sresize(list->buffer, buflen + 1, char);
804 list->buffer[buflen] = '\0';
805
806 /*
807 * Now set up the list of sessions. Note that "Default
808 * Settings" must always be claimed to exist, even if it
809 * doesn't really.
810 */
811
812 p = list->buffer;
813 list->nsessions = 1; /* "Default Settings" counts as one */
814 while (*p) {
815 if (strcmp(p, "Default Settings"))
816 list->nsessions++;
817 while (*p)
818 p++;
819 p++;
820 }
821
822 list->sessions = snewn(list->nsessions + 1, char *);
823 list->sessions[0] = "Default Settings";
824 p = list->buffer;
825 i = 1;
826 while (*p) {
827 if (strcmp(p, "Default Settings"))
828 list->sessions[i++] = p;
829 while (*p)
830 p++;
831 p++;
832 }
833
834 qsort(list->sessions, i, sizeof(char *), sessioncmp);
835 } else {
836 sfree(list->buffer);
837 sfree(list->sessions);
838 list->buffer = NULL;
839 list->sessions = NULL;
840 }
841 }