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