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