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