]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - settings.c
Merge SSH-2-only default from 'pre-0.64'.
[PuTTY.git] / settings.c
1 /*
2  * settings.c: read and write saved sessions. (platform-independent)
3  */
4
5 #include <assert.h>
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include "putty.h"
9 #include "storage.h"
10
11 /* The cipher order given here is the default order. */
12 static const struct keyvalwhere ciphernames[] = {
13     { "aes",        CIPHER_AES,             -1, -1 },
14     { "blowfish",   CIPHER_BLOWFISH,        -1, -1 },
15     { "3des",       CIPHER_3DES,            -1, -1 },
16     { "WARN",       CIPHER_WARN,            -1, -1 },
17     { "arcfour",    CIPHER_ARCFOUR,         -1, -1 },
18     { "des",        CIPHER_DES,             -1, -1 }
19 };
20
21 static const struct keyvalwhere kexnames[] = {
22     { "ecdh",               KEX_ECDH,       -1, +1 },
23     { "dh-gex-sha1",        KEX_DHGEX,      -1, -1 },
24     { "dh-group14-sha1",    KEX_DHGROUP14,  -1, -1 },
25     { "dh-group1-sha1",     KEX_DHGROUP1,   -1, -1 },
26     { "rsa",                KEX_RSA,        KEX_WARN, -1 },
27     { "WARN",               KEX_WARN,       -1, -1 }
28 };
29
30 /*
31  * All the terminal modes that we know about for the "TerminalModes"
32  * setting. (Also used by config.c for the drop-down list.)
33  * This is currently precisely the same as the set in ssh.c, but could
34  * in principle differ if other backends started to support tty modes
35  * (e.g., the pty backend).
36  */
37 const char *const ttymodes[] = {
38     "INTR",     "QUIT",     "ERASE",    "KILL",     "EOF",
39     "EOL",      "EOL2",     "START",    "STOP",     "SUSP",
40     "DSUSP",    "REPRINT",  "WERASE",   "LNEXT",    "FLUSH",
41     "SWTCH",    "STATUS",   "DISCARD",  "IGNPAR",   "PARMRK",
42     "INPCK",    "ISTRIP",   "INLCR",    "IGNCR",    "ICRNL",
43     "IUCLC",    "IXON",     "IXANY",    "IXOFF",    "IMAXBEL",
44     "ISIG",     "ICANON",   "XCASE",    "ECHO",     "ECHOE",
45     "ECHOK",    "ECHONL",   "NOFLSH",   "TOSTOP",   "IEXTEN",
46     "ECHOCTL",  "ECHOKE",   "PENDIN",   "OPOST",    "OLCUC",
47     "ONLCR",    "OCRNL",    "ONOCR",    "ONLRET",   "CS7",
48     "CS8",      "PARENB",   "PARODD",   NULL
49 };
50
51 /*
52  * Convenience functions to access the backends[] array
53  * (which is only present in tools that manage settings).
54  */
55
56 Backend *backend_from_name(const char *name)
57 {
58     Backend **p;
59     for (p = backends; *p != NULL; p++)
60         if (!strcmp((*p)->name, name))
61             return *p;
62     return NULL;
63 }
64
65 Backend *backend_from_proto(int proto)
66 {
67     Backend **p;
68     for (p = backends; *p != NULL; p++)
69         if ((*p)->protocol == proto)
70             return *p;
71     return NULL;
72 }
73
74 char *get_remote_username(Conf *conf)
75 {
76     char *username = conf_get_str(conf, CONF_username);
77     if (*username) {
78         return dupstr(username);
79     } else if (conf_get_int(conf, CONF_username_from_env)) {
80         /* Use local username. */
81         return get_username();     /* might still be NULL */
82     } else {
83         return NULL;
84     }
85 }
86
87 static char *gpps_raw(void *handle, const char *name, const char *def)
88 {
89     char *ret = read_setting_s(handle, name);
90     if (!ret)
91         ret = platform_default_s(name);
92     if (!ret)
93         ret = def ? dupstr(def) : NULL;   /* permit NULL as final fallback */
94     return ret;
95 }
96
97 static void gpps(void *handle, const char *name, const char *def,
98                  Conf *conf, int primary)
99 {
100     char *val = gpps_raw(handle, name, def);
101     conf_set_str(conf, primary, val);
102     sfree(val);
103 }
104
105 /*
106  * gppfont and gppfile cannot have local defaults, since the very
107  * format of a Filename or FontSpec is platform-dependent. So the
108  * platform-dependent functions MUST return some sort of value.
109  */
110 static void gppfont(void *handle, const char *name, Conf *conf, int primary)
111 {
112     FontSpec *result = read_setting_fontspec(handle, name);
113     if (!result)
114         result = platform_default_fontspec(name);
115     conf_set_fontspec(conf, primary, result);
116     fontspec_free(result);
117 }
118 static void gppfile(void *handle, const char *name, Conf *conf, int primary)
119 {
120     Filename *result = read_setting_filename(handle, name);
121     if (!result)
122         result = platform_default_filename(name);
123     conf_set_filename(conf, primary, result);
124     filename_free(result);
125 }
126
127 static int gppi_raw(void *handle, char *name, int def)
128 {
129     def = platform_default_i(name, def);
130     return read_setting_i(handle, name, def);
131 }
132
133 static void gppi(void *handle, char *name, int def, Conf *conf, int primary)
134 {
135     conf_set_int(conf, primary, gppi_raw(handle, name, def));
136 }
137
138 /*
139  * Read a set of name-value pairs in the format we occasionally use:
140  *   NAME\tVALUE\0NAME\tVALUE\0\0 in memory
141  *   NAME=VALUE,NAME=VALUE, in storage
142  * If there's no "=VALUE" (e.g. just NAME,NAME,NAME) then those keys
143  * are mapped to the empty string.
144  */
145 static int gppmap(void *handle, char *name, Conf *conf, int primary)
146 {
147     char *buf, *p, *q, *key, *val;
148
149     /*
150      * Start by clearing any existing subkeys of this key from conf.
151      */
152     while ((key = conf_get_str_nthstrkey(conf, primary, 0)) != NULL)
153         conf_del_str_str(conf, primary, key);
154
155     /*
156      * Now read a serialised list from the settings and unmarshal it
157      * into its components.
158      */
159     buf = gpps_raw(handle, name, NULL);
160     if (!buf)
161         return FALSE;
162
163     p = buf;
164     while (*p) {
165         q = buf;
166         val = NULL;
167         while (*p && *p != ',') {
168             int c = *p++;
169             if (c == '=')
170                 c = '\0';
171             if (c == '\\')
172                 c = *p++;
173             *q++ = c;
174             if (!c)
175                 val = q;
176         }
177         if (*p == ',')
178             p++;
179         if (!val)
180             val = q;
181         *q = '\0';
182
183         if (primary == CONF_portfwd && strchr(buf, 'D') != NULL) {
184             /*
185              * Backwards-compatibility hack: dynamic forwardings are
186              * indexed in the data store as a third type letter in the
187              * key, 'D' alongside 'L' and 'R' - but really, they
188              * should be filed under 'L' with a special _value_,
189              * because local and dynamic forwardings both involve
190              * _listening_ on a local port, and are hence mutually
191              * exclusive on the same port number. So here we translate
192              * the legacy storage format into the sensible internal
193              * form, by finding the D and turning it into a L.
194              */
195             char *newkey = dupstr(buf);
196             *strchr(newkey, 'D') = 'L';
197             conf_set_str_str(conf, primary, newkey, "D");
198             sfree(newkey);
199         } else {
200             conf_set_str_str(conf, primary, buf, val);
201         }
202     }
203     sfree(buf);
204
205     return TRUE;
206 }
207
208 /*
209  * Write a set of name/value pairs in the above format, or just the
210  * names if include_values is FALSE.
211  */
212 static void wmap(void *handle, char const *outkey, Conf *conf, int primary,
213                  int include_values)
214 {
215     char *buf, *p, *q, *key, *realkey, *val;
216     int len;
217
218     len = 1;                           /* allow for NUL */
219
220     for (val = conf_get_str_strs(conf, primary, NULL, &key);
221          val != NULL;
222          val = conf_get_str_strs(conf, primary, key, &key))
223         len += 2 + 2 * (strlen(key) + strlen(val));   /* allow for escaping */
224
225     buf = snewn(len, char);
226     p = buf;
227
228     for (val = conf_get_str_strs(conf, primary, NULL, &key);
229          val != NULL;
230          val = conf_get_str_strs(conf, primary, key, &key)) {
231
232         if (primary == CONF_portfwd && !strcmp(val, "D")) {
233             /*
234              * Backwards-compatibility hack, as above: translate from
235              * the sensible internal representation of dynamic
236              * forwardings (key "L<port>", value "D") to the
237              * conceptually incoherent legacy storage format (key
238              * "D<port>", value empty).
239              */
240             char *L;
241
242             realkey = key;             /* restore it at end of loop */
243             val = "";
244             key = dupstr(key);
245             L = strchr(key, 'L');
246             if (L) *L = 'D';
247         } else {
248             realkey = NULL;
249         }
250
251         if (p != buf)
252             *p++ = ',';
253         for (q = key; *q; q++) {
254             if (*q == '=' || *q == ',' || *q == '\\')
255                 *p++ = '\\';
256             *p++ = *q;
257         }
258         if (include_values) {
259             *p++ = '=';
260             for (q = val; *q; q++) {
261                 if (*q == '=' || *q == ',' || *q == '\\')
262                     *p++ = '\\';
263                 *p++ = *q;
264             }
265         }
266
267         if (realkey) {
268             free(key);
269             key = realkey;
270         }
271     }
272     *p = '\0';
273     write_setting_s(handle, outkey, buf);
274     sfree(buf);
275 }
276
277 static int key2val(const struct keyvalwhere *mapping,
278                    int nmaps, char *key)
279 {
280     int i;
281     for (i = 0; i < nmaps; i++)
282         if (!strcmp(mapping[i].s, key)) return mapping[i].v;
283     return -1;
284 }
285
286 static const char *val2key(const struct keyvalwhere *mapping,
287                            int nmaps, int val)
288 {
289     int i;
290     for (i = 0; i < nmaps; i++)
291         if (mapping[i].v == val) return mapping[i].s;
292     return NULL;
293 }
294
295 /*
296  * Helper function to parse a comma-separated list of strings into
297  * a preference list array of values. Any missing values are added
298  * to the end and duplicates are weeded.
299  * XXX: assumes vals in 'mapping' are small +ve integers
300  */
301 static void gprefs(void *sesskey, char *name, char *def,
302                    const struct keyvalwhere *mapping, int nvals,
303                    Conf *conf, int primary)
304 {
305     char *commalist;
306     char *p, *q;
307     int i, j, n, v, pos;
308     unsigned long seen = 0;            /* bitmap for weeding dups etc */
309
310     /*
311      * Fetch the string which we'll parse as a comma-separated list.
312      */
313     commalist = gpps_raw(sesskey, name, def);
314
315     /*
316      * Go through that list and convert it into values.
317      */
318     n = 0;
319     p = commalist;
320     while (1) {
321         while (*p && *p == ',') p++;
322         if (!*p)
323             break;                     /* no more words */
324
325         q = p;
326         while (*p && *p != ',') p++;
327         if (*p) *p++ = '\0';
328
329         v = key2val(mapping, nvals, q);
330         if (v != -1 && !(seen & (1 << v))) {
331             seen |= (1 << v);
332             conf_set_int_int(conf, primary, n, v);
333             n++;
334         }
335     }
336
337     sfree(commalist);
338
339     /*
340      * Now go through 'mapping' and add values that weren't mentioned
341      * in the list we fetched. We may have to loop over it multiple
342      * times so that we add values before other values whose default
343      * positions depend on them.
344      */
345     while (n < nvals) {
346         for (i = 0; i < nvals; i++) {
347             assert(mapping[i].v < 32);
348
349             if (!(seen & (1 << mapping[i].v))) {
350                 /*
351                  * This element needs adding. But can we add it yet?
352                  */
353                 if (mapping[i].vrel != -1 && !(seen & (1 << mapping[i].vrel)))
354                     continue;          /* nope */
355
356                 /*
357                  * OK, we can work out where to add this element, so
358                  * do so.
359                  */
360                 if (mapping[i].vrel == -1) {
361                     pos = (mapping[i].where < 0 ? n : 0);
362                 } else {
363                     for (j = 0; j < n; j++)
364                         if (conf_get_int_int(conf, primary, j) ==
365                             mapping[i].vrel)
366                             break;
367                     assert(j < n);     /* implied by (seen & (1<<vrel)) */
368                     pos = (mapping[i].where < 0 ? j : j+1);
369                 }
370
371                 /*
372                  * And add it.
373                  */
374                 for (j = n-1; j >= pos; j--)
375                     conf_set_int_int(conf, primary, j+1,
376                                      conf_get_int_int(conf, primary, j));
377                 conf_set_int_int(conf, primary, pos, mapping[i].v);
378                 n++;
379             }
380         }
381     }
382 }
383
384 /* 
385  * Write out a preference list.
386  */
387 static void wprefs(void *sesskey, char *name,
388                    const struct keyvalwhere *mapping, int nvals,
389                    Conf *conf, int primary)
390 {
391     char *buf, *p;
392     int i, maxlen;
393
394     for (maxlen = i = 0; i < nvals; i++) {
395         const char *s = val2key(mapping, nvals,
396                                 conf_get_int_int(conf, primary, i));
397         if (s) {
398             maxlen += (maxlen > 0 ? 1 : 0) + strlen(s);
399         }
400     }
401
402     buf = snewn(maxlen + 1, char);
403     p = buf;
404
405     for (i = 0; i < nvals; i++) {
406         const char *s = val2key(mapping, nvals,
407                                 conf_get_int_int(conf, primary, i));
408         if (s) {
409             p += sprintf(p, "%s%s", (p > buf ? "," : ""), s);
410         }
411     }
412
413     assert(p - buf == maxlen);
414     *p = '\0';
415
416     write_setting_s(sesskey, name, buf);
417
418     sfree(buf);
419 }
420
421 char *save_settings(char *section, Conf *conf)
422 {
423     void *sesskey;
424     char *errmsg;
425
426     sesskey = open_settings_w(section, &errmsg);
427     if (!sesskey)
428         return errmsg;
429     save_open_settings(sesskey, conf);
430     close_settings_w(sesskey);
431     return NULL;
432 }
433
434 void save_open_settings(void *sesskey, Conf *conf)
435 {
436     int i;
437     char *p;
438
439     write_setting_i(sesskey, "Present", 1);
440     write_setting_s(sesskey, "HostName", conf_get_str(conf, CONF_host));
441     write_setting_filename(sesskey, "LogFileName", conf_get_filename(conf, CONF_logfilename));
442     write_setting_i(sesskey, "LogType", conf_get_int(conf, CONF_logtype));
443     write_setting_i(sesskey, "LogFileClash", conf_get_int(conf, CONF_logxfovr));
444     write_setting_i(sesskey, "LogFlush", conf_get_int(conf, CONF_logflush));
445     write_setting_i(sesskey, "SSHLogOmitPasswords", conf_get_int(conf, CONF_logomitpass));
446     write_setting_i(sesskey, "SSHLogOmitData", conf_get_int(conf, CONF_logomitdata));
447     p = "raw";
448     {
449         const Backend *b = backend_from_proto(conf_get_int(conf, CONF_protocol));
450         if (b)
451             p = b->name;
452     }
453     write_setting_s(sesskey, "Protocol", p);
454     write_setting_i(sesskey, "PortNumber", conf_get_int(conf, CONF_port));
455     /* The CloseOnExit numbers are arranged in a different order from
456      * the standard FORCE_ON / FORCE_OFF / AUTO. */
457     write_setting_i(sesskey, "CloseOnExit", (conf_get_int(conf, CONF_close_on_exit)+2)%3);
458     write_setting_i(sesskey, "WarnOnClose", !!conf_get_int(conf, CONF_warn_on_close));
459     write_setting_i(sesskey, "PingInterval", conf_get_int(conf, CONF_ping_interval) / 60);      /* minutes */
460     write_setting_i(sesskey, "PingIntervalSecs", conf_get_int(conf, CONF_ping_interval) % 60);  /* seconds */
461     write_setting_i(sesskey, "TCPNoDelay", conf_get_int(conf, CONF_tcp_nodelay));
462     write_setting_i(sesskey, "TCPKeepalives", conf_get_int(conf, CONF_tcp_keepalives));
463     write_setting_s(sesskey, "TerminalType", conf_get_str(conf, CONF_termtype));
464     write_setting_s(sesskey, "TerminalSpeed", conf_get_str(conf, CONF_termspeed));
465     wmap(sesskey, "TerminalModes", conf, CONF_ttymodes, TRUE);
466
467     /* Address family selection */
468     write_setting_i(sesskey, "AddressFamily", conf_get_int(conf, CONF_addressfamily));
469
470     /* proxy settings */
471     write_setting_s(sesskey, "ProxyExcludeList", conf_get_str(conf, CONF_proxy_exclude_list));
472     write_setting_i(sesskey, "ProxyDNS", (conf_get_int(conf, CONF_proxy_dns)+2)%3);
473     write_setting_i(sesskey, "ProxyLocalhost", conf_get_int(conf, CONF_even_proxy_localhost));
474     write_setting_i(sesskey, "ProxyMethod", conf_get_int(conf, CONF_proxy_type));
475     write_setting_s(sesskey, "ProxyHost", conf_get_str(conf, CONF_proxy_host));
476     write_setting_i(sesskey, "ProxyPort", conf_get_int(conf, CONF_proxy_port));
477     write_setting_s(sesskey, "ProxyUsername", conf_get_str(conf, CONF_proxy_username));
478     write_setting_s(sesskey, "ProxyPassword", conf_get_str(conf, CONF_proxy_password));
479     write_setting_s(sesskey, "ProxyTelnetCommand", conf_get_str(conf, CONF_proxy_telnet_command));
480     wmap(sesskey, "Environment", conf, CONF_environmt, TRUE);
481     write_setting_s(sesskey, "UserName", conf_get_str(conf, CONF_username));
482     write_setting_i(sesskey, "UserNameFromEnvironment", conf_get_int(conf, CONF_username_from_env));
483     write_setting_s(sesskey, "LocalUserName", conf_get_str(conf, CONF_localusername));
484     write_setting_i(sesskey, "NoPTY", conf_get_int(conf, CONF_nopty));
485     write_setting_i(sesskey, "Compression", conf_get_int(conf, CONF_compression));
486     write_setting_i(sesskey, "TryAgent", conf_get_int(conf, CONF_tryagent));
487     write_setting_i(sesskey, "AgentFwd", conf_get_int(conf, CONF_agentfwd));
488     write_setting_i(sesskey, "GssapiFwd", conf_get_int(conf, CONF_gssapifwd));
489     write_setting_i(sesskey, "ChangeUsername", conf_get_int(conf, CONF_change_username));
490     wprefs(sesskey, "Cipher", ciphernames, CIPHER_MAX, conf, CONF_ssh_cipherlist);
491     wprefs(sesskey, "KEX", kexnames, KEX_MAX, conf, CONF_ssh_kexlist);
492     write_setting_i(sesskey, "RekeyTime", conf_get_int(conf, CONF_ssh_rekey_time));
493     write_setting_s(sesskey, "RekeyBytes", conf_get_str(conf, CONF_ssh_rekey_data));
494     write_setting_i(sesskey, "SshNoAuth", conf_get_int(conf, CONF_ssh_no_userauth));
495     write_setting_i(sesskey, "SshBanner", conf_get_int(conf, CONF_ssh_show_banner));
496     write_setting_i(sesskey, "AuthTIS", conf_get_int(conf, CONF_try_tis_auth));
497     write_setting_i(sesskey, "AuthKI", conf_get_int(conf, CONF_try_ki_auth));
498     write_setting_i(sesskey, "AuthGSSAPI", conf_get_int(conf, CONF_try_gssapi_auth));
499 #ifndef NO_GSSAPI
500     wprefs(sesskey, "GSSLibs", gsslibkeywords, ngsslibs, conf, CONF_ssh_gsslist);
501     write_setting_filename(sesskey, "GSSCustom", conf_get_filename(conf, CONF_ssh_gss_custom));
502 #endif
503     write_setting_i(sesskey, "SshNoShell", conf_get_int(conf, CONF_ssh_no_shell));
504     write_setting_i(sesskey, "SshProt", conf_get_int(conf, CONF_sshprot));
505     write_setting_s(sesskey, "LogHost", conf_get_str(conf, CONF_loghost));
506     write_setting_i(sesskey, "SSH2DES", conf_get_int(conf, CONF_ssh2_des_cbc));
507     write_setting_filename(sesskey, "PublicKeyFile", conf_get_filename(conf, CONF_keyfile));
508     write_setting_s(sesskey, "RemoteCommand", conf_get_str(conf, CONF_remote_cmd));
509     write_setting_i(sesskey, "RFCEnviron", conf_get_int(conf, CONF_rfc_environ));
510     write_setting_i(sesskey, "PassiveTelnet", conf_get_int(conf, CONF_passive_telnet));
511     write_setting_i(sesskey, "BackspaceIsDelete", conf_get_int(conf, CONF_bksp_is_delete));
512     write_setting_i(sesskey, "RXVTHomeEnd", conf_get_int(conf, CONF_rxvt_homeend));
513     write_setting_i(sesskey, "LinuxFunctionKeys", conf_get_int(conf, CONF_funky_type));
514     write_setting_i(sesskey, "NoApplicationKeys", conf_get_int(conf, CONF_no_applic_k));
515     write_setting_i(sesskey, "NoApplicationCursors", conf_get_int(conf, CONF_no_applic_c));
516     write_setting_i(sesskey, "NoMouseReporting", conf_get_int(conf, CONF_no_mouse_rep));
517     write_setting_i(sesskey, "NoRemoteResize", conf_get_int(conf, CONF_no_remote_resize));
518     write_setting_i(sesskey, "NoAltScreen", conf_get_int(conf, CONF_no_alt_screen));
519     write_setting_i(sesskey, "NoRemoteWinTitle", conf_get_int(conf, CONF_no_remote_wintitle));
520     write_setting_i(sesskey, "RemoteQTitleAction", conf_get_int(conf, CONF_remote_qtitle_action));
521     write_setting_i(sesskey, "NoDBackspace", conf_get_int(conf, CONF_no_dbackspace));
522     write_setting_i(sesskey, "NoRemoteCharset", conf_get_int(conf, CONF_no_remote_charset));
523     write_setting_i(sesskey, "ApplicationCursorKeys", conf_get_int(conf, CONF_app_cursor));
524     write_setting_i(sesskey, "ApplicationKeypad", conf_get_int(conf, CONF_app_keypad));
525     write_setting_i(sesskey, "NetHackKeypad", conf_get_int(conf, CONF_nethack_keypad));
526     write_setting_i(sesskey, "AltF4", conf_get_int(conf, CONF_alt_f4));
527     write_setting_i(sesskey, "AltSpace", conf_get_int(conf, CONF_alt_space));
528     write_setting_i(sesskey, "AltOnly", conf_get_int(conf, CONF_alt_only));
529     write_setting_i(sesskey, "ComposeKey", conf_get_int(conf, CONF_compose_key));
530     write_setting_i(sesskey, "CtrlAltKeys", conf_get_int(conf, CONF_ctrlaltkeys));
531     write_setting_i(sesskey, "TelnetKey", conf_get_int(conf, CONF_telnet_keyboard));
532     write_setting_i(sesskey, "TelnetRet", conf_get_int(conf, CONF_telnet_newline));
533     write_setting_i(sesskey, "LocalEcho", conf_get_int(conf, CONF_localecho));
534     write_setting_i(sesskey, "LocalEdit", conf_get_int(conf, CONF_localedit));
535     write_setting_s(sesskey, "Answerback", conf_get_str(conf, CONF_answerback));
536     write_setting_i(sesskey, "AlwaysOnTop", conf_get_int(conf, CONF_alwaysontop));
537     write_setting_i(sesskey, "FullScreenOnAltEnter", conf_get_int(conf, CONF_fullscreenonaltenter));
538     write_setting_i(sesskey, "HideMousePtr", conf_get_int(conf, CONF_hide_mouseptr));
539     write_setting_i(sesskey, "SunkenEdge", conf_get_int(conf, CONF_sunken_edge));
540     write_setting_i(sesskey, "WindowBorder", conf_get_int(conf, CONF_window_border));
541     write_setting_i(sesskey, "CurType", conf_get_int(conf, CONF_cursor_type));
542     write_setting_i(sesskey, "BlinkCur", conf_get_int(conf, CONF_blink_cur));
543     write_setting_i(sesskey, "Beep", conf_get_int(conf, CONF_beep));
544     write_setting_i(sesskey, "BeepInd", conf_get_int(conf, CONF_beep_ind));
545     write_setting_filename(sesskey, "BellWaveFile", conf_get_filename(conf, CONF_bell_wavefile));
546     write_setting_i(sesskey, "BellOverload", conf_get_int(conf, CONF_bellovl));
547     write_setting_i(sesskey, "BellOverloadN", conf_get_int(conf, CONF_bellovl_n));
548     write_setting_i(sesskey, "BellOverloadT", conf_get_int(conf, CONF_bellovl_t)
549 #ifdef PUTTY_UNIX_H
550                     * 1000
551 #endif
552                     );
553     write_setting_i(sesskey, "BellOverloadS", conf_get_int(conf, CONF_bellovl_s)
554 #ifdef PUTTY_UNIX_H
555                     * 1000
556 #endif
557                     );
558     write_setting_i(sesskey, "ScrollbackLines", conf_get_int(conf, CONF_savelines));
559     write_setting_i(sesskey, "DECOriginMode", conf_get_int(conf, CONF_dec_om));
560     write_setting_i(sesskey, "AutoWrapMode", conf_get_int(conf, CONF_wrap_mode));
561     write_setting_i(sesskey, "LFImpliesCR", conf_get_int(conf, CONF_lfhascr));
562     write_setting_i(sesskey, "CRImpliesLF", conf_get_int(conf, CONF_crhaslf));
563     write_setting_i(sesskey, "DisableArabicShaping", conf_get_int(conf, CONF_arabicshaping));
564     write_setting_i(sesskey, "DisableBidi", conf_get_int(conf, CONF_bidi));
565     write_setting_i(sesskey, "WinNameAlways", conf_get_int(conf, CONF_win_name_always));
566     write_setting_s(sesskey, "WinTitle", conf_get_str(conf, CONF_wintitle));
567     write_setting_i(sesskey, "TermWidth", conf_get_int(conf, CONF_width));
568     write_setting_i(sesskey, "TermHeight", conf_get_int(conf, CONF_height));
569     write_setting_fontspec(sesskey, "Font", conf_get_fontspec(conf, CONF_font));
570     write_setting_i(sesskey, "FontQuality", conf_get_int(conf, CONF_font_quality));
571     write_setting_i(sesskey, "FontVTMode", conf_get_int(conf, CONF_vtmode));
572     write_setting_i(sesskey, "UseSystemColours", conf_get_int(conf, CONF_system_colour));
573     write_setting_i(sesskey, "TryPalette", conf_get_int(conf, CONF_try_palette));
574     write_setting_i(sesskey, "ANSIColour", conf_get_int(conf, CONF_ansi_colour));
575     write_setting_i(sesskey, "Xterm256Colour", conf_get_int(conf, CONF_xterm_256_colour));
576     write_setting_i(sesskey, "BoldAsColour", conf_get_int(conf, CONF_bold_style)-1);
577
578     for (i = 0; i < 22; i++) {
579         char buf[20], buf2[30];
580         sprintf(buf, "Colour%d", i);
581         sprintf(buf2, "%d,%d,%d",
582                 conf_get_int_int(conf, CONF_colours, i*3+0),
583                 conf_get_int_int(conf, CONF_colours, i*3+1),
584                 conf_get_int_int(conf, CONF_colours, i*3+2));
585         write_setting_s(sesskey, buf, buf2);
586     }
587     write_setting_i(sesskey, "RawCNP", conf_get_int(conf, CONF_rawcnp));
588     write_setting_i(sesskey, "PasteRTF", conf_get_int(conf, CONF_rtf_paste));
589     write_setting_i(sesskey, "MouseIsXterm", conf_get_int(conf, CONF_mouse_is_xterm));
590     write_setting_i(sesskey, "RectSelect", conf_get_int(conf, CONF_rect_select));
591     write_setting_i(sesskey, "MouseOverride", conf_get_int(conf, CONF_mouse_override));
592     for (i = 0; i < 256; i += 32) {
593         char buf[20], buf2[256];
594         int j;
595         sprintf(buf, "Wordness%d", i);
596         *buf2 = '\0';
597         for (j = i; j < i + 32; j++) {
598             sprintf(buf2 + strlen(buf2), "%s%d",
599                     (*buf2 ? "," : ""),
600                     conf_get_int_int(conf, CONF_wordness, j));
601         }
602         write_setting_s(sesskey, buf, buf2);
603     }
604     write_setting_s(sesskey, "LineCodePage", conf_get_str(conf, CONF_line_codepage));
605     write_setting_i(sesskey, "CJKAmbigWide", conf_get_int(conf, CONF_cjk_ambig_wide));
606     write_setting_i(sesskey, "UTF8Override", conf_get_int(conf, CONF_utf8_override));
607     write_setting_s(sesskey, "Printer", conf_get_str(conf, CONF_printer));
608     write_setting_i(sesskey, "CapsLockCyr", conf_get_int(conf, CONF_xlat_capslockcyr));
609     write_setting_i(sesskey, "ScrollBar", conf_get_int(conf, CONF_scrollbar));
610     write_setting_i(sesskey, "ScrollBarFullScreen", conf_get_int(conf, CONF_scrollbar_in_fullscreen));
611     write_setting_i(sesskey, "ScrollOnKey", conf_get_int(conf, CONF_scroll_on_key));
612     write_setting_i(sesskey, "ScrollOnDisp", conf_get_int(conf, CONF_scroll_on_disp));
613     write_setting_i(sesskey, "EraseToScrollback", conf_get_int(conf, CONF_erase_to_scrollback));
614     write_setting_i(sesskey, "LockSize", conf_get_int(conf, CONF_resize_action));
615     write_setting_i(sesskey, "BCE", conf_get_int(conf, CONF_bce));
616     write_setting_i(sesskey, "BlinkText", conf_get_int(conf, CONF_blinktext));
617     write_setting_i(sesskey, "X11Forward", conf_get_int(conf, CONF_x11_forward));
618     write_setting_s(sesskey, "X11Display", conf_get_str(conf, CONF_x11_display));
619     write_setting_i(sesskey, "X11AuthType", conf_get_int(conf, CONF_x11_auth));
620     write_setting_filename(sesskey, "X11AuthFile", conf_get_filename(conf, CONF_xauthfile));
621     write_setting_i(sesskey, "LocalPortAcceptAll", conf_get_int(conf, CONF_lport_acceptall));
622     write_setting_i(sesskey, "RemotePortAcceptAll", conf_get_int(conf, CONF_rport_acceptall));
623     wmap(sesskey, "PortForwardings", conf, CONF_portfwd, TRUE);
624     write_setting_i(sesskey, "BugIgnore1", 2-conf_get_int(conf, CONF_sshbug_ignore1));
625     write_setting_i(sesskey, "BugPlainPW1", 2-conf_get_int(conf, CONF_sshbug_plainpw1));
626     write_setting_i(sesskey, "BugRSA1", 2-conf_get_int(conf, CONF_sshbug_rsa1));
627     write_setting_i(sesskey, "BugIgnore2", 2-conf_get_int(conf, CONF_sshbug_ignore2));
628     write_setting_i(sesskey, "BugHMAC2", 2-conf_get_int(conf, CONF_sshbug_hmac2));
629     write_setting_i(sesskey, "BugDeriveKey2", 2-conf_get_int(conf, CONF_sshbug_derivekey2));
630     write_setting_i(sesskey, "BugRSAPad2", 2-conf_get_int(conf, CONF_sshbug_rsapad2));
631     write_setting_i(sesskey, "BugPKSessID2", 2-conf_get_int(conf, CONF_sshbug_pksessid2));
632     write_setting_i(sesskey, "BugRekey2", 2-conf_get_int(conf, CONF_sshbug_rekey2));
633     write_setting_i(sesskey, "BugMaxPkt2", 2-conf_get_int(conf, CONF_sshbug_maxpkt2));
634     write_setting_i(sesskey, "BugWinadj", 2-conf_get_int(conf, CONF_sshbug_winadj));
635     write_setting_i(sesskey, "BugChanReq", 2-conf_get_int(conf, CONF_sshbug_chanreq));
636     write_setting_i(sesskey, "StampUtmp", conf_get_int(conf, CONF_stamp_utmp));
637     write_setting_i(sesskey, "LoginShell", conf_get_int(conf, CONF_login_shell));
638     write_setting_i(sesskey, "ScrollbarOnLeft", conf_get_int(conf, CONF_scrollbar_on_left));
639     write_setting_fontspec(sesskey, "BoldFont", conf_get_fontspec(conf, CONF_boldfont));
640     write_setting_fontspec(sesskey, "WideFont", conf_get_fontspec(conf, CONF_widefont));
641     write_setting_fontspec(sesskey, "WideBoldFont", conf_get_fontspec(conf, CONF_wideboldfont));
642     write_setting_i(sesskey, "ShadowBold", conf_get_int(conf, CONF_shadowbold));
643     write_setting_i(sesskey, "ShadowBoldOffset", conf_get_int(conf, CONF_shadowboldoffset));
644     write_setting_s(sesskey, "SerialLine", conf_get_str(conf, CONF_serline));
645     write_setting_i(sesskey, "SerialSpeed", conf_get_int(conf, CONF_serspeed));
646     write_setting_i(sesskey, "SerialDataBits", conf_get_int(conf, CONF_serdatabits));
647     write_setting_i(sesskey, "SerialStopHalfbits", conf_get_int(conf, CONF_serstopbits));
648     write_setting_i(sesskey, "SerialParity", conf_get_int(conf, CONF_serparity));
649     write_setting_i(sesskey, "SerialFlowControl", conf_get_int(conf, CONF_serflow));
650     write_setting_s(sesskey, "WindowClass", conf_get_str(conf, CONF_winclass));
651     write_setting_i(sesskey, "ConnectionSharing", conf_get_int(conf, CONF_ssh_connection_sharing));
652     write_setting_i(sesskey, "ConnectionSharingUpstream", conf_get_int(conf, CONF_ssh_connection_sharing_upstream));
653     write_setting_i(sesskey, "ConnectionSharingDownstream", conf_get_int(conf, CONF_ssh_connection_sharing_downstream));
654     wmap(sesskey, "SSHManualHostKeys", conf, CONF_ssh_manual_hostkeys, FALSE);
655 }
656
657 void load_settings(char *section, Conf *conf)
658 {
659     void *sesskey;
660
661     sesskey = open_settings_r(section);
662     load_open_settings(sesskey, conf);
663     close_settings_r(sesskey);
664
665     if (conf_launchable(conf))
666         add_session_to_jumplist(section);
667 }
668
669 void load_open_settings(void *sesskey, Conf *conf)
670 {
671     int i;
672     char *prot;
673
674     conf_set_int(conf, CONF_ssh_subsys, 0);   /* FIXME: load this properly */
675     conf_set_str(conf, CONF_remote_cmd, "");
676     conf_set_str(conf, CONF_remote_cmd2, "");
677     conf_set_str(conf, CONF_ssh_nc_host, "");
678
679     gpps(sesskey, "HostName", "", conf, CONF_host);
680     gppfile(sesskey, "LogFileName", conf, CONF_logfilename);
681     gppi(sesskey, "LogType", 0, conf, CONF_logtype);
682     gppi(sesskey, "LogFileClash", LGXF_ASK, conf, CONF_logxfovr);
683     gppi(sesskey, "LogFlush", 1, conf, CONF_logflush);
684     gppi(sesskey, "SSHLogOmitPasswords", 1, conf, CONF_logomitpass);
685     gppi(sesskey, "SSHLogOmitData", 0, conf, CONF_logomitdata);
686
687     prot = gpps_raw(sesskey, "Protocol", "default");
688     conf_set_int(conf, CONF_protocol, default_protocol);
689     conf_set_int(conf, CONF_port, default_port);
690     {
691         const Backend *b = backend_from_name(prot);
692         if (b) {
693             conf_set_int(conf, CONF_protocol, b->protocol);
694             gppi(sesskey, "PortNumber", default_port, conf, CONF_port);
695         }
696     }
697     sfree(prot);
698
699     /* Address family selection */
700     gppi(sesskey, "AddressFamily", ADDRTYPE_UNSPEC, conf, CONF_addressfamily);
701
702     /* The CloseOnExit numbers are arranged in a different order from
703      * the standard FORCE_ON / FORCE_OFF / AUTO. */
704     i = gppi_raw(sesskey, "CloseOnExit", 1); conf_set_int(conf, CONF_close_on_exit, (i+1)%3);
705     gppi(sesskey, "WarnOnClose", 1, conf, CONF_warn_on_close);
706     {
707         /* This is two values for backward compatibility with 0.50/0.51 */
708         int pingmin, pingsec;
709         pingmin = gppi_raw(sesskey, "PingInterval", 0);
710         pingsec = gppi_raw(sesskey, "PingIntervalSecs", 0);
711         conf_set_int(conf, CONF_ping_interval, pingmin * 60 + pingsec);
712     }
713     gppi(sesskey, "TCPNoDelay", 1, conf, CONF_tcp_nodelay);
714     gppi(sesskey, "TCPKeepalives", 0, conf, CONF_tcp_keepalives);
715     gpps(sesskey, "TerminalType", "xterm", conf, CONF_termtype);
716     gpps(sesskey, "TerminalSpeed", "38400,38400", conf, CONF_termspeed);
717     if (!gppmap(sesskey, "TerminalModes", conf, CONF_ttymodes)) {
718         /* This hardcodes a big set of defaults in any new saved
719          * sessions. Let's hope we don't change our mind. */
720         for (i = 0; ttymodes[i]; i++)
721             conf_set_str_str(conf, CONF_ttymodes, ttymodes[i], "A");
722     }
723
724     /* proxy settings */
725     gpps(sesskey, "ProxyExcludeList", "", conf, CONF_proxy_exclude_list);
726     i = gppi_raw(sesskey, "ProxyDNS", 1); conf_set_int(conf, CONF_proxy_dns, (i+1)%3);
727     gppi(sesskey, "ProxyLocalhost", 0, conf, CONF_even_proxy_localhost);
728     gppi(sesskey, "ProxyMethod", -1, conf, CONF_proxy_type);
729     if (conf_get_int(conf, CONF_proxy_type) == -1) {
730         int i;
731         i = gppi_raw(sesskey, "ProxyType", 0);
732         if (i == 0)
733             conf_set_int(conf, CONF_proxy_type, PROXY_NONE);
734         else if (i == 1)
735             conf_set_int(conf, CONF_proxy_type, PROXY_HTTP);
736         else if (i == 3)
737             conf_set_int(conf, CONF_proxy_type, PROXY_TELNET);
738         else if (i == 4)
739             conf_set_int(conf, CONF_proxy_type, PROXY_CMD);
740         else {
741             i = gppi_raw(sesskey, "ProxySOCKSVersion", 5);
742             if (i == 5)
743                 conf_set_int(conf, CONF_proxy_type, PROXY_SOCKS5);
744             else
745                 conf_set_int(conf, CONF_proxy_type, PROXY_SOCKS4);
746         }
747     }
748     gpps(sesskey, "ProxyHost", "proxy", conf, CONF_proxy_host);
749     gppi(sesskey, "ProxyPort", 80, conf, CONF_proxy_port);
750     gpps(sesskey, "ProxyUsername", "", conf, CONF_proxy_username);
751     gpps(sesskey, "ProxyPassword", "", conf, CONF_proxy_password);
752     gpps(sesskey, "ProxyTelnetCommand", "connect %host %port\\n",
753          conf, CONF_proxy_telnet_command);
754     gppmap(sesskey, "Environment", conf, CONF_environmt);
755     gpps(sesskey, "UserName", "", conf, CONF_username);
756     gppi(sesskey, "UserNameFromEnvironment", 0, conf, CONF_username_from_env);
757     gpps(sesskey, "LocalUserName", "", conf, CONF_localusername);
758     gppi(sesskey, "NoPTY", 0, conf, CONF_nopty);
759     gppi(sesskey, "Compression", 0, conf, CONF_compression);
760     gppi(sesskey, "TryAgent", 1, conf, CONF_tryagent);
761     gppi(sesskey, "AgentFwd", 0, conf, CONF_agentfwd);
762     gppi(sesskey, "ChangeUsername", 0, conf, CONF_change_username);
763     gppi(sesskey, "GssapiFwd", 0, conf, CONF_gssapifwd);
764     gprefs(sesskey, "Cipher", "\0",
765            ciphernames, CIPHER_MAX, conf, CONF_ssh_cipherlist);
766     {
767         /* Backward-compatibility: we used to have an option to
768          * disable gex under the "bugs" panel after one report of
769          * a server which offered it then choked, but we never got
770          * a server version string or any other reports. */
771         char *default_kexes;
772         i = 2 - gppi_raw(sesskey, "BugDHGEx2", 0);
773         if (i == FORCE_ON)
774             default_kexes = "ecdh,dh-group14-sha1,dh-group1-sha1,rsa,"
775                 "WARN,dh-gex-sha1";
776         else
777             default_kexes = "ecdh,dh-gex-sha1,dh-group14-sha1,"
778                 "dh-group1-sha1,rsa,WARN";
779         gprefs(sesskey, "KEX", default_kexes,
780                kexnames, KEX_MAX, conf, CONF_ssh_kexlist);
781     }
782     gppi(sesskey, "RekeyTime", 60, conf, CONF_ssh_rekey_time);
783     gpps(sesskey, "RekeyBytes", "1G", conf, CONF_ssh_rekey_data);
784     /* SSH-2 only by default */
785     gppi(sesskey, "SshProt", 3, conf, CONF_sshprot);
786     gpps(sesskey, "LogHost", "", conf, CONF_loghost);
787     gppi(sesskey, "SSH2DES", 0, conf, CONF_ssh2_des_cbc);
788     gppi(sesskey, "SshNoAuth", 0, conf, CONF_ssh_no_userauth);
789     gppi(sesskey, "SshBanner", 1, conf, CONF_ssh_show_banner);
790     gppi(sesskey, "AuthTIS", 0, conf, CONF_try_tis_auth);
791     gppi(sesskey, "AuthKI", 1, conf, CONF_try_ki_auth);
792     gppi(sesskey, "AuthGSSAPI", 1, conf, CONF_try_gssapi_auth);
793 #ifndef NO_GSSAPI
794     gprefs(sesskey, "GSSLibs", "\0",
795            gsslibkeywords, ngsslibs, conf, CONF_ssh_gsslist);
796     gppfile(sesskey, "GSSCustom", conf, CONF_ssh_gss_custom);
797 #endif
798     gppi(sesskey, "SshNoShell", 0, conf, CONF_ssh_no_shell);
799     gppfile(sesskey, "PublicKeyFile", conf, CONF_keyfile);
800     gpps(sesskey, "RemoteCommand", "", conf, CONF_remote_cmd);
801     gppi(sesskey, "RFCEnviron", 0, conf, CONF_rfc_environ);
802     gppi(sesskey, "PassiveTelnet", 0, conf, CONF_passive_telnet);
803     gppi(sesskey, "BackspaceIsDelete", 1, conf, CONF_bksp_is_delete);
804     gppi(sesskey, "RXVTHomeEnd", 0, conf, CONF_rxvt_homeend);
805     gppi(sesskey, "LinuxFunctionKeys", 0, conf, CONF_funky_type);
806     gppi(sesskey, "NoApplicationKeys", 0, conf, CONF_no_applic_k);
807     gppi(sesskey, "NoApplicationCursors", 0, conf, CONF_no_applic_c);
808     gppi(sesskey, "NoMouseReporting", 0, conf, CONF_no_mouse_rep);
809     gppi(sesskey, "NoRemoteResize", 0, conf, CONF_no_remote_resize);
810     gppi(sesskey, "NoAltScreen", 0, conf, CONF_no_alt_screen);
811     gppi(sesskey, "NoRemoteWinTitle", 0, conf, CONF_no_remote_wintitle);
812     {
813         /* Backward compatibility */
814         int no_remote_qtitle = gppi_raw(sesskey, "NoRemoteQTitle", 1);
815         /* We deliberately interpret the old setting of "no response" as
816          * "empty string". This changes the behaviour, but hopefully for
817          * the better; the user can always recover the old behaviour. */
818         gppi(sesskey, "RemoteQTitleAction",
819              no_remote_qtitle ? TITLE_EMPTY : TITLE_REAL,
820              conf, CONF_remote_qtitle_action);
821     }
822     gppi(sesskey, "NoDBackspace", 0, conf, CONF_no_dbackspace);
823     gppi(sesskey, "NoRemoteCharset", 0, conf, CONF_no_remote_charset);
824     gppi(sesskey, "ApplicationCursorKeys", 0, conf, CONF_app_cursor);
825     gppi(sesskey, "ApplicationKeypad", 0, conf, CONF_app_keypad);
826     gppi(sesskey, "NetHackKeypad", 0, conf, CONF_nethack_keypad);
827     gppi(sesskey, "AltF4", 1, conf, CONF_alt_f4);
828     gppi(sesskey, "AltSpace", 0, conf, CONF_alt_space);
829     gppi(sesskey, "AltOnly", 0, conf, CONF_alt_only);
830     gppi(sesskey, "ComposeKey", 0, conf, CONF_compose_key);
831     gppi(sesskey, "CtrlAltKeys", 1, conf, CONF_ctrlaltkeys);
832     gppi(sesskey, "TelnetKey", 0, conf, CONF_telnet_keyboard);
833     gppi(sesskey, "TelnetRet", 1, conf, CONF_telnet_newline);
834     gppi(sesskey, "LocalEcho", AUTO, conf, CONF_localecho);
835     gppi(sesskey, "LocalEdit", AUTO, conf, CONF_localedit);
836     gpps(sesskey, "Answerback", "PuTTY", conf, CONF_answerback);
837     gppi(sesskey, "AlwaysOnTop", 0, conf, CONF_alwaysontop);
838     gppi(sesskey, "FullScreenOnAltEnter", 0, conf, CONF_fullscreenonaltenter);
839     gppi(sesskey, "HideMousePtr", 0, conf, CONF_hide_mouseptr);
840     gppi(sesskey, "SunkenEdge", 0, conf, CONF_sunken_edge);
841     gppi(sesskey, "WindowBorder", 1, conf, CONF_window_border);
842     gppi(sesskey, "CurType", 0, conf, CONF_cursor_type);
843     gppi(sesskey, "BlinkCur", 0, conf, CONF_blink_cur);
844     /* pedantic compiler tells me I can't use conf, CONF_beep as an int * :-) */
845     gppi(sesskey, "Beep", 1, conf, CONF_beep);
846     gppi(sesskey, "BeepInd", 0, conf, CONF_beep_ind);
847     gppfile(sesskey, "BellWaveFile", conf, CONF_bell_wavefile);
848     gppi(sesskey, "BellOverload", 1, conf, CONF_bellovl);
849     gppi(sesskey, "BellOverloadN", 5, conf, CONF_bellovl_n);
850     i = gppi_raw(sesskey, "BellOverloadT", 2*TICKSPERSEC
851 #ifdef PUTTY_UNIX_H
852                                    *1000
853 #endif
854                                    );
855     conf_set_int(conf, CONF_bellovl_t, i
856 #ifdef PUTTY_UNIX_H
857                  / 1000
858 #endif
859                  );
860     i = gppi_raw(sesskey, "BellOverloadS", 5*TICKSPERSEC
861 #ifdef PUTTY_UNIX_H
862                                    *1000
863 #endif
864                                    );
865     conf_set_int(conf, CONF_bellovl_s, i
866 #ifdef PUTTY_UNIX_H
867                  / 1000
868 #endif
869                  );
870     gppi(sesskey, "ScrollbackLines", 2000, conf, CONF_savelines);
871     gppi(sesskey, "DECOriginMode", 0, conf, CONF_dec_om);
872     gppi(sesskey, "AutoWrapMode", 1, conf, CONF_wrap_mode);
873     gppi(sesskey, "LFImpliesCR", 0, conf, CONF_lfhascr);
874     gppi(sesskey, "CRImpliesLF", 0, conf, CONF_crhaslf);
875     gppi(sesskey, "DisableArabicShaping", 0, conf, CONF_arabicshaping);
876     gppi(sesskey, "DisableBidi", 0, conf, CONF_bidi);
877     gppi(sesskey, "WinNameAlways", 1, conf, CONF_win_name_always);
878     gpps(sesskey, "WinTitle", "", conf, CONF_wintitle);
879     gppi(sesskey, "TermWidth", 80, conf, CONF_width);
880     gppi(sesskey, "TermHeight", 24, conf, CONF_height);
881     gppfont(sesskey, "Font", conf, CONF_font);
882     gppi(sesskey, "FontQuality", FQ_DEFAULT, conf, CONF_font_quality);
883     gppi(sesskey, "FontVTMode", VT_UNICODE, conf, CONF_vtmode);
884     gppi(sesskey, "UseSystemColours", 0, conf, CONF_system_colour);
885     gppi(sesskey, "TryPalette", 0, conf, CONF_try_palette);
886     gppi(sesskey, "ANSIColour", 1, conf, CONF_ansi_colour);
887     gppi(sesskey, "Xterm256Colour", 1, conf, CONF_xterm_256_colour);
888     i = gppi_raw(sesskey, "BoldAsColour", 1); conf_set_int(conf, CONF_bold_style, i+1);
889
890     for (i = 0; i < 22; i++) {
891         static const char *const defaults[] = {
892             "187,187,187", "255,255,255", "0,0,0", "85,85,85", "0,0,0",
893             "0,255,0", "0,0,0", "85,85,85", "187,0,0", "255,85,85",
894             "0,187,0", "85,255,85", "187,187,0", "255,255,85", "0,0,187",
895             "85,85,255", "187,0,187", "255,85,255", "0,187,187",
896             "85,255,255", "187,187,187", "255,255,255"
897         };
898         char buf[20], *buf2;
899         int c0, c1, c2;
900         sprintf(buf, "Colour%d", i);
901         buf2 = gpps_raw(sesskey, buf, defaults[i]);
902         if (sscanf(buf2, "%d,%d,%d", &c0, &c1, &c2) == 3) {
903             conf_set_int_int(conf, CONF_colours, i*3+0, c0);
904             conf_set_int_int(conf, CONF_colours, i*3+1, c1);
905             conf_set_int_int(conf, CONF_colours, i*3+2, c2);
906         }
907         sfree(buf2);
908     }
909     gppi(sesskey, "RawCNP", 0, conf, CONF_rawcnp);
910     gppi(sesskey, "PasteRTF", 0, conf, CONF_rtf_paste);
911     gppi(sesskey, "MouseIsXterm", 0, conf, CONF_mouse_is_xterm);
912     gppi(sesskey, "RectSelect", 0, conf, CONF_rect_select);
913     gppi(sesskey, "MouseOverride", 1, conf, CONF_mouse_override);
914     for (i = 0; i < 256; i += 32) {
915         static const char *const defaults[] = {
916             "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",
917             "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",
918             "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",
919             "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",
920             "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",
921             "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",
922             "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",
923             "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"
924         };
925         char buf[20], *buf2, *p;
926         int j;
927         sprintf(buf, "Wordness%d", i);
928         buf2 = gpps_raw(sesskey, buf, defaults[i / 32]);
929         p = buf2;
930         for (j = i; j < i + 32; j++) {
931             char *q = p;
932             while (*p && *p != ',')
933                 p++;
934             if (*p == ',')
935                 *p++ = '\0';
936             conf_set_int_int(conf, CONF_wordness, j, atoi(q));
937         }
938         sfree(buf2);
939     }
940     /*
941      * The empty default for LineCodePage will be converted later
942      * into a plausible default for the locale.
943      */
944     gpps(sesskey, "LineCodePage", "", conf, CONF_line_codepage);
945     gppi(sesskey, "CJKAmbigWide", 0, conf, CONF_cjk_ambig_wide);
946     gppi(sesskey, "UTF8Override", 1, conf, CONF_utf8_override);
947     gpps(sesskey, "Printer", "", conf, CONF_printer);
948     gppi(sesskey, "CapsLockCyr", 0, conf, CONF_xlat_capslockcyr);
949     gppi(sesskey, "ScrollBar", 1, conf, CONF_scrollbar);
950     gppi(sesskey, "ScrollBarFullScreen", 0, conf, CONF_scrollbar_in_fullscreen);
951     gppi(sesskey, "ScrollOnKey", 0, conf, CONF_scroll_on_key);
952     gppi(sesskey, "ScrollOnDisp", 1, conf, CONF_scroll_on_disp);
953     gppi(sesskey, "EraseToScrollback", 1, conf, CONF_erase_to_scrollback);
954     gppi(sesskey, "LockSize", 0, conf, CONF_resize_action);
955     gppi(sesskey, "BCE", 1, conf, CONF_bce);
956     gppi(sesskey, "BlinkText", 0, conf, CONF_blinktext);
957     gppi(sesskey, "X11Forward", 0, conf, CONF_x11_forward);
958     gpps(sesskey, "X11Display", "", conf, CONF_x11_display);
959     gppi(sesskey, "X11AuthType", X11_MIT, conf, CONF_x11_auth);
960     gppfile(sesskey, "X11AuthFile", conf, CONF_xauthfile);
961
962     gppi(sesskey, "LocalPortAcceptAll", 0, conf, CONF_lport_acceptall);
963     gppi(sesskey, "RemotePortAcceptAll", 0, conf, CONF_rport_acceptall);
964     gppmap(sesskey, "PortForwardings", conf, CONF_portfwd);
965     i = gppi_raw(sesskey, "BugIgnore1", 0); conf_set_int(conf, CONF_sshbug_ignore1, 2-i);
966     i = gppi_raw(sesskey, "BugPlainPW1", 0); conf_set_int(conf, CONF_sshbug_plainpw1, 2-i);
967     i = gppi_raw(sesskey, "BugRSA1", 0); conf_set_int(conf, CONF_sshbug_rsa1, 2-i);
968     i = gppi_raw(sesskey, "BugIgnore2", 0); conf_set_int(conf, CONF_sshbug_ignore2, 2-i);
969     {
970         int i;
971         i = gppi_raw(sesskey, "BugHMAC2", 0); conf_set_int(conf, CONF_sshbug_hmac2, 2-i);
972         if (2-i == AUTO) {
973             i = gppi_raw(sesskey, "BuggyMAC", 0);
974             if (i == 1)
975                 conf_set_int(conf, CONF_sshbug_hmac2, FORCE_ON);
976         }
977     }
978     i = gppi_raw(sesskey, "BugDeriveKey2", 0); conf_set_int(conf, CONF_sshbug_derivekey2, 2-i);
979     i = gppi_raw(sesskey, "BugRSAPad2", 0); conf_set_int(conf, CONF_sshbug_rsapad2, 2-i);
980     i = gppi_raw(sesskey, "BugPKSessID2", 0); conf_set_int(conf, CONF_sshbug_pksessid2, 2-i);
981     i = gppi_raw(sesskey, "BugRekey2", 0); conf_set_int(conf, CONF_sshbug_rekey2, 2-i);
982     i = gppi_raw(sesskey, "BugMaxPkt2", 0); conf_set_int(conf, CONF_sshbug_maxpkt2, 2-i);
983     i = gppi_raw(sesskey, "BugWinadj", 0); conf_set_int(conf, CONF_sshbug_winadj, 2-i);
984     i = gppi_raw(sesskey, "BugChanReq", 0); conf_set_int(conf, CONF_sshbug_chanreq, 2-i);
985     conf_set_int(conf, CONF_ssh_simple, FALSE);
986     gppi(sesskey, "StampUtmp", 1, conf, CONF_stamp_utmp);
987     gppi(sesskey, "LoginShell", 1, conf, CONF_login_shell);
988     gppi(sesskey, "ScrollbarOnLeft", 0, conf, CONF_scrollbar_on_left);
989     gppi(sesskey, "ShadowBold", 0, conf, CONF_shadowbold);
990     gppfont(sesskey, "BoldFont", conf, CONF_boldfont);
991     gppfont(sesskey, "WideFont", conf, CONF_widefont);
992     gppfont(sesskey, "WideBoldFont", conf, CONF_wideboldfont);
993     gppi(sesskey, "ShadowBoldOffset", 1, conf, CONF_shadowboldoffset);
994     gpps(sesskey, "SerialLine", "", conf, CONF_serline);
995     gppi(sesskey, "SerialSpeed", 9600, conf, CONF_serspeed);
996     gppi(sesskey, "SerialDataBits", 8, conf, CONF_serdatabits);
997     gppi(sesskey, "SerialStopHalfbits", 2, conf, CONF_serstopbits);
998     gppi(sesskey, "SerialParity", SER_PAR_NONE, conf, CONF_serparity);
999     gppi(sesskey, "SerialFlowControl", SER_FLOW_XONXOFF, conf, CONF_serflow);
1000     gpps(sesskey, "WindowClass", "", conf, CONF_winclass);
1001     gppi(sesskey, "ConnectionSharing", 0, conf, CONF_ssh_connection_sharing);
1002     gppi(sesskey, "ConnectionSharingUpstream", 1, conf, CONF_ssh_connection_sharing_upstream);
1003     gppi(sesskey, "ConnectionSharingDownstream", 1, conf, CONF_ssh_connection_sharing_downstream);
1004     gppmap(sesskey, "SSHManualHostKeys", conf, CONF_ssh_manual_hostkeys);
1005 }
1006
1007 void do_defaults(char *session, Conf *conf)
1008 {
1009     load_settings(session, conf);
1010 }
1011
1012 static int sessioncmp(const void *av, const void *bv)
1013 {
1014     const char *a = *(const char *const *) av;
1015     const char *b = *(const char *const *) bv;
1016
1017     /*
1018      * Alphabetical order, except that "Default Settings" is a
1019      * special case and comes first.
1020      */
1021     if (!strcmp(a, "Default Settings"))
1022         return -1;                     /* a comes first */
1023     if (!strcmp(b, "Default Settings"))
1024         return +1;                     /* b comes first */
1025     /*
1026      * FIXME: perhaps we should ignore the first & in determining
1027      * sort order.
1028      */
1029     return strcmp(a, b);               /* otherwise, compare normally */
1030 }
1031
1032 void get_sesslist(struct sesslist *list, int allocate)
1033 {
1034     char otherbuf[2048];
1035     int buflen, bufsize, i;
1036     char *p, *ret;
1037     void *handle;
1038
1039     if (allocate) {
1040
1041         buflen = bufsize = 0;
1042         list->buffer = NULL;
1043         if ((handle = enum_settings_start()) != NULL) {
1044             do {
1045                 ret = enum_settings_next(handle, otherbuf, sizeof(otherbuf));
1046                 if (ret) {
1047                     int len = strlen(otherbuf) + 1;
1048                     if (bufsize < buflen + len) {
1049                         bufsize = buflen + len + 2048;
1050                         list->buffer = sresize(list->buffer, bufsize, char);
1051                     }
1052                     strcpy(list->buffer + buflen, otherbuf);
1053                     buflen += strlen(list->buffer + buflen) + 1;
1054                 }
1055             } while (ret);
1056             enum_settings_finish(handle);
1057         }
1058         list->buffer = sresize(list->buffer, buflen + 1, char);
1059         list->buffer[buflen] = '\0';
1060
1061         /*
1062          * Now set up the list of sessions. Note that "Default
1063          * Settings" must always be claimed to exist, even if it
1064          * doesn't really.
1065          */
1066
1067         p = list->buffer;
1068         list->nsessions = 1;           /* "Default Settings" counts as one */
1069         while (*p) {
1070             if (strcmp(p, "Default Settings"))
1071                 list->nsessions++;
1072             while (*p)
1073                 p++;
1074             p++;
1075         }
1076
1077         list->sessions = snewn(list->nsessions + 1, char *);
1078         list->sessions[0] = "Default Settings";
1079         p = list->buffer;
1080         i = 1;
1081         while (*p) {
1082             if (strcmp(p, "Default Settings"))
1083                 list->sessions[i++] = p;
1084             while (*p)
1085                 p++;
1086             p++;
1087         }
1088
1089         qsort(list->sessions, i, sizeof(char *), sessioncmp);
1090     } else {
1091         sfree(list->buffer);
1092         sfree(list->sessions);
1093         list->buffer = NULL;
1094         list->sessions = NULL;
1095     }
1096 }