Add another bug workaround, this one for old OpenSSH (<2.3) servers
[u/mdw/putty] / settings.c
CommitLineData
a9422f39 1/*
2 * settings.c: read and write saved sessions.
3 */
4
a9422f39 5#include <stdio.h>
49bad831 6#include <stdlib.h>
a9422f39 7#include "putty.h"
8#include "storage.h"
9
ca20bfcf 10/*
11 * Tables of string <-> enum value mappings
12 */
13struct keyval { char *s; int v; };
14
15static const struct keyval ciphernames[] = {
ca20bfcf 16 { "aes", CIPHER_AES },
e411be57 17 { "blowfish", CIPHER_BLOWFISH },
18 { "3des", CIPHER_3DES },
19 { "WARN", CIPHER_WARN },
ca20bfcf 20 { "des", CIPHER_DES }
21};
22
c85623f9 23static void gpps(void *handle, const char *name, const char *def,
24 char *val, int len)
32874aea 25{
a9422f39 26 if (!read_setting_s(handle, name, val, len)) {
5a9eb105 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
32874aea 36 val[len - 1] = '\0';
a9422f39 37 }
38}
39
9a30e26b 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 */
45static 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}
50static 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
32874aea 56static void gppi(void *handle, char *name, int def, int *i)
57{
5a9eb105 58 def = platform_default_i(name, def);
a9422f39 59 *i = read_setting_i(handle, name, def);
60}
61
ca20bfcf 62static 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
70static 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 */
84static 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 {
cdcbdf3b 109 int i;
ca20bfcf 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 */
122static 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
32874aea 144void save_settings(char *section, int do_host, Config * cfg)
145{
a9422f39 146 void *sesskey;
147
148 sesskey = open_settings_w(section);
149 if (!sesskey)
32874aea 150 return;
b537dd42 151 save_open_settings(sesskey, do_host, cfg);
152 close_settings_w(sesskey);
153}
154
155void save_open_settings(void *sesskey, int do_host, Config *cfg)
156{
157 int i;
158 char *p;
a9422f39 159
32874aea 160 write_setting_i(sesskey, "Present", 1);
a9422f39 161 if (do_host) {
32874aea 162 write_setting_s(sesskey, "HostName", cfg->host);
9a30e26b 163 write_setting_filename(sesskey, "LogFileName", cfg->logfilename);
32874aea 164 write_setting_i(sesskey, "LogType", cfg->logtype);
165 write_setting_i(sesskey, "LogFileClash", cfg->logxfovr);
a9422f39 166 }
348a9ad6 167 p = "raw";
168 for (i = 0; backends[i].name != NULL; i++)
169 if (backends[i].protocol == cfg->protocol) {
170 p = backends[i].name;
171 break;
172 }
173 write_setting_s(sesskey, "Protocol", p);
174 write_setting_i(sesskey, "PortNumber", cfg->port);
88103a48 175 /* The CloseOnExit numbers are arranged in a different order from
176 * the standard FORCE_ON / FORCE_OFF / AUTO. */
177 write_setting_i(sesskey, "CloseOnExit", (cfg->close_on_exit+2)%3);
32874aea 178 write_setting_i(sesskey, "WarnOnClose", !!cfg->warn_on_close);
179 write_setting_i(sesskey, "PingInterval", cfg->ping_interval / 60); /* minutes */
180 write_setting_i(sesskey, "PingIntervalSecs", cfg->ping_interval % 60); /* seconds */
2184a5d9 181 write_setting_i(sesskey, "TCPNoDelay", cfg->tcp_nodelay);
32874aea 182 write_setting_s(sesskey, "TerminalType", cfg->termtype);
183 write_setting_s(sesskey, "TerminalSpeed", cfg->termspeed);
8eebd221 184
185 /* proxy settings */
186 write_setting_s(sesskey, "ProxyExcludeList", cfg->proxy_exclude_list);
88103a48 187 write_setting_i(sesskey, "ProxyDNS", (cfg->proxy_dns+2)%3);
b804e1e5 188 write_setting_i(sesskey, "ProxyLocalhost", cfg->even_proxy_localhost);
8eebd221 189 write_setting_i(sesskey, "ProxyType", cfg->proxy_type);
190 write_setting_s(sesskey, "ProxyHost", cfg->proxy_host);
191 write_setting_i(sesskey, "ProxyPort", cfg->proxy_port);
192 write_setting_s(sesskey, "ProxyUsername", cfg->proxy_username);
193 write_setting_s(sesskey, "ProxyPassword", cfg->proxy_password);
194 write_setting_s(sesskey, "ProxyTelnetCommand", cfg->proxy_telnet_command);
195 write_setting_i(sesskey, "ProxySOCKSVersion", cfg->proxy_socks_version);
196
a9422f39 197 {
32874aea 198 char buf[2 * sizeof(cfg->environmt)], *p, *q;
a9422f39 199 p = buf;
32874aea 200 q = cfg->environmt;
a9422f39 201 while (*q) {
202 while (*q) {
203 int c = *q++;
204 if (c == '=' || c == ',' || c == '\\')
205 *p++ = '\\';
206 if (c == '\t')
207 c = '=';
208 *p++ = c;
209 }
210 *p++ = ',';
211 q++;
212 }
213 *p = '\0';
32874aea 214 write_setting_s(sesskey, "Environment", buf);
a9422f39 215 }
32874aea 216 write_setting_s(sesskey, "UserName", cfg->username);
217 write_setting_s(sesskey, "LocalUserName", cfg->localusername);
218 write_setting_i(sesskey, "NoPTY", cfg->nopty);
219 write_setting_i(sesskey, "Compression", cfg->compression);
220 write_setting_i(sesskey, "AgentFwd", cfg->agentfwd);
5bb641e1 221 write_setting_i(sesskey, "ChangeUsername", cfg->change_username);
e411be57 222 wprefs(sesskey, "Cipher", ciphernames, CIPHER_MAX,
ca20bfcf 223 cfg->ssh_cipherlist);
32874aea 224 write_setting_i(sesskey, "AuthTIS", cfg->try_tis_auth);
f091e308 225 write_setting_i(sesskey, "AuthKI", cfg->try_ki_auth);
32874aea 226 write_setting_i(sesskey, "SshProt", cfg->sshprot);
cb4d4768 227 write_setting_i(sesskey, "SSH2DES", cfg->ssh2_des_cbc);
9a30e26b 228 write_setting_filename(sesskey, "PublicKeyFile", cfg->keyfile);
32874aea 229 write_setting_s(sesskey, "RemoteCommand", cfg->remote_cmd);
230 write_setting_i(sesskey, "RFCEnviron", cfg->rfc_environ);
8faa456c 231 write_setting_i(sesskey, "PassiveTelnet", cfg->passive_telnet);
32874aea 232 write_setting_i(sesskey, "BackspaceIsDelete", cfg->bksp_is_delete);
233 write_setting_i(sesskey, "RXVTHomeEnd", cfg->rxvt_homeend);
234 write_setting_i(sesskey, "LinuxFunctionKeys", cfg->funky_type);
235 write_setting_i(sesskey, "NoApplicationKeys", cfg->no_applic_k);
236 write_setting_i(sesskey, "NoApplicationCursors", cfg->no_applic_c);
c0d36a72 237 write_setting_i(sesskey, "NoMouseReporting", cfg->no_mouse_rep);
0d2086c5 238 write_setting_i(sesskey, "NoRemoteResize", cfg->no_remote_resize);
239 write_setting_i(sesskey, "NoAltScreen", cfg->no_alt_screen);
240 write_setting_i(sesskey, "NoRemoteWinTitle", cfg->no_remote_wintitle);
241 write_setting_i(sesskey, "NoDBackspace", cfg->no_dbackspace);
242 write_setting_i(sesskey, "NoRemoteCharset", cfg->no_remote_charset);
32874aea 243 write_setting_i(sesskey, "ApplicationCursorKeys", cfg->app_cursor);
244 write_setting_i(sesskey, "ApplicationKeypad", cfg->app_keypad);
245 write_setting_i(sesskey, "NetHackKeypad", cfg->nethack_keypad);
246 write_setting_i(sesskey, "AltF4", cfg->alt_f4);
247 write_setting_i(sesskey, "AltSpace", cfg->alt_space);
248 write_setting_i(sesskey, "AltOnly", cfg->alt_only);
249 write_setting_i(sesskey, "ComposeKey", cfg->compose_key);
250 write_setting_i(sesskey, "CtrlAltKeys", cfg->ctrlaltkeys);
a5f3e637 251 write_setting_i(sesskey, "TelnetKey", cfg->telnet_keyboard);
eee63b77 252 write_setting_i(sesskey, "TelnetRet", cfg->telnet_newline);
32874aea 253 write_setting_i(sesskey, "LocalEcho", cfg->localecho);
254 write_setting_i(sesskey, "LocalEdit", cfg->localedit);
255 write_setting_s(sesskey, "Answerback", cfg->answerback);
256 write_setting_i(sesskey, "AlwaysOnTop", cfg->alwaysontop);
8f57d753 257 write_setting_i(sesskey, "FullScreenOnAltEnter", cfg->fullscreenonaltenter);
32874aea 258 write_setting_i(sesskey, "HideMousePtr", cfg->hide_mouseptr);
259 write_setting_i(sesskey, "SunkenEdge", cfg->sunken_edge);
5a73255e 260 write_setting_i(sesskey, "WindowBorder", cfg->window_border);
32874aea 261 write_setting_i(sesskey, "CurType", cfg->cursor_type);
262 write_setting_i(sesskey, "BlinkCur", cfg->blink_cur);
263 write_setting_i(sesskey, "Beep", cfg->beep);
f8a28d1f 264 write_setting_i(sesskey, "BeepInd", cfg->beep_ind);
9a30e26b 265 write_setting_filename(sesskey, "BellWaveFile", cfg->bell_wavefile);
32874aea 266 write_setting_i(sesskey, "BellOverload", cfg->bellovl);
267 write_setting_i(sesskey, "BellOverloadN", cfg->bellovl_n);
268 write_setting_i(sesskey, "BellOverloadT", cfg->bellovl_t);
269 write_setting_i(sesskey, "BellOverloadS", cfg->bellovl_s);
270 write_setting_i(sesskey, "ScrollbackLines", cfg->savelines);
271 write_setting_i(sesskey, "DECOriginMode", cfg->dec_om);
272 write_setting_i(sesskey, "AutoWrapMode", cfg->wrap_mode);
273 write_setting_i(sesskey, "LFImpliesCR", cfg->lfhascr);
274 write_setting_i(sesskey, "WinNameAlways", cfg->win_name_always);
275 write_setting_s(sesskey, "WinTitle", cfg->wintitle);
276 write_setting_i(sesskey, "TermWidth", cfg->width);
277 write_setting_i(sesskey, "TermHeight", cfg->height);
9a30e26b 278 write_setting_fontspec(sesskey, "Font", cfg->font);
32874aea 279 write_setting_i(sesskey, "FontVTMode", cfg->vtmode);
280 write_setting_i(sesskey, "TryPalette", cfg->try_palette);
281 write_setting_i(sesskey, "BoldAsColour", cfg->bold_colour);
282 for (i = 0; i < 22; i++) {
a9422f39 283 char buf[20], buf2[30];
284 sprintf(buf, "Colour%d", i);
285 sprintf(buf2, "%d,%d,%d", cfg->colours[i][0],
286 cfg->colours[i][1], cfg->colours[i][2]);
32874aea 287 write_setting_s(sesskey, buf, buf2);
a9422f39 288 }
32874aea 289 write_setting_i(sesskey, "RawCNP", cfg->rawcnp);
a7419ea4 290 write_setting_i(sesskey, "PasteRTF", cfg->rtf_paste);
32874aea 291 write_setting_i(sesskey, "MouseIsXterm", cfg->mouse_is_xterm);
6908fed7 292 write_setting_i(sesskey, "RectSelect", cfg->rect_select);
b90840c3 293 write_setting_i(sesskey, "MouseOverride", cfg->mouse_override);
32874aea 294 for (i = 0; i < 256; i += 32) {
a9422f39 295 char buf[20], buf2[256];
296 int j;
297 sprintf(buf, "Wordness%d", i);
298 *buf2 = '\0';
32874aea 299 for (j = i; j < i + 32; j++) {
300 sprintf(buf2 + strlen(buf2), "%s%d",
a9422f39 301 (*buf2 ? "," : ""), cfg->wordness[j]);
302 }
32874aea 303 write_setting_s(sesskey, buf, buf2);
a9422f39 304 }
4eeb7d09 305 write_setting_s(sesskey, "LineCodePage", cfg->line_codepage);
b44b307a 306 write_setting_s(sesskey, "Printer", cfg->printer);
a9c02454 307 write_setting_i(sesskey, "CapsLockCyr", cfg->xlat_capslockcyr);
32874aea 308 write_setting_i(sesskey, "ScrollBar", cfg->scrollbar);
a401e5f3 309 write_setting_i(sesskey, "ScrollBarFullScreen", cfg->scrollbar_in_fullscreen);
32874aea 310 write_setting_i(sesskey, "ScrollOnKey", cfg->scroll_on_key);
311 write_setting_i(sesskey, "ScrollOnDisp", cfg->scroll_on_disp);
ad5c93cc 312 write_setting_i(sesskey, "LockSize", cfg->resize_action);
32874aea 313 write_setting_i(sesskey, "BCE", cfg->bce);
314 write_setting_i(sesskey, "BlinkText", cfg->blinktext);
315 write_setting_i(sesskey, "X11Forward", cfg->x11_forward);
316 write_setting_s(sesskey, "X11Display", cfg->x11_display);
b3ebaa28 317 write_setting_i(sesskey, "X11AuthType", cfg->x11_auth);
d74d141c 318 write_setting_i(sesskey, "LocalPortAcceptAll", cfg->lport_acceptall);
beefa433 319 write_setting_i(sesskey, "RemotePortAcceptAll", cfg->rport_acceptall);
d74d141c 320 {
321 char buf[2 * sizeof(cfg->portfwd)], *p, *q;
322 p = buf;
323 q = cfg->portfwd;
324 while (*q) {
325 while (*q) {
326 int c = *q++;
327 if (c == '=' || c == ',' || c == '\\')
328 *p++ = '\\';
329 if (c == '\t')
330 c = '=';
331 *p++ = c;
332 }
333 *p++ = ',';
334 q++;
335 }
336 *p = '\0';
337 write_setting_s(sesskey, "PortForwardings", buf);
338 }
88103a48 339 write_setting_i(sesskey, "BugIgnore1", 2-cfg->sshbug_ignore1);
340 write_setting_i(sesskey, "BugPlainPW1", 2-cfg->sshbug_plainpw1);
341 write_setting_i(sesskey, "BugRSA1", 2-cfg->sshbug_rsa1);
342 write_setting_i(sesskey, "BugHMAC2", 2-cfg->sshbug_hmac2);
343 write_setting_i(sesskey, "BugDeriveKey2", 2-cfg->sshbug_derivekey2);
344 write_setting_i(sesskey, "BugRSAPad2", 2-cfg->sshbug_rsapad2);
345 write_setting_i(sesskey, "BugDHGEx2", 2-cfg->sshbug_dhgex2);
dda87a28 346 write_setting_i(sesskey, "BugPKSessID2", 2-cfg->sshbug_pksessid2);
c8ee61b9 347 write_setting_i(sesskey, "StampUtmp", cfg->stamp_utmp);
348 write_setting_i(sesskey, "LoginShell", cfg->login_shell);
239b3b36 349 write_setting_i(sesskey, "ScrollbarOnLeft", cfg->scrollbar_on_left);
9a30e26b 350 write_setting_fontspec(sesskey, "BoldFont", cfg->boldfont);
12994a99 351 write_setting_i(sesskey, "ShadowBoldOffset", cfg->shadowboldoffset);
a9422f39 352}
353
32874aea 354void load_settings(char *section, int do_host, Config * cfg)
355{
a9422f39 356 void *sesskey;
357
358 sesskey = open_settings_r(section);
ce283213 359 load_open_settings(sesskey, do_host, cfg);
360 close_settings_r(sesskey);
361}
362
363void load_open_settings(void *sesskey, int do_host, Config *cfg)
364{
365 int i;
366 char prot[10];
a9422f39 367
32874aea 368 cfg->ssh_subsys = 0; /* FIXME: load this properly */
96621a84 369 cfg->remote_cmd_ptr = cfg->remote_cmd;
fd5e5847 370 cfg->remote_cmd_ptr2 = NULL;
a9100732 371
3b2eb121 372 if (do_host) {
373 gpps(sesskey, "HostName", "", cfg->host, sizeof(cfg->host));
374 } else {
375 cfg->host[0] = '\0'; /* blank hostname */
376 }
9a30e26b 377 gppfile(sesskey, "LogFileName", &cfg->logfilename);
32874aea 378 gppi(sesskey, "LogType", 0, &cfg->logtype);
379 gppi(sesskey, "LogFileClash", LGXF_ASK, &cfg->logxfovr);
a9422f39 380
32874aea 381 gpps(sesskey, "Protocol", "default", prot, 10);
a9422f39 382 cfg->protocol = default_protocol;
1ff52e17 383 cfg->port = default_port;
a9422f39 384 for (i = 0; backends[i].name != NULL; i++)
32874aea 385 if (!strcmp(prot, backends[i].name)) {
386 cfg->protocol = backends[i].protocol;
1ff52e17 387 gppi(sesskey, "PortNumber", default_port, &cfg->port);
32874aea 388 break;
389 }
a9422f39 390
88103a48 391 /* The CloseOnExit numbers are arranged in a different order from
392 * the standard FORCE_ON / FORCE_OFF / AUTO. */
393 gppi(sesskey, "CloseOnExit", 1, &i); cfg->close_on_exit = (i+1)%3;
32874aea 394 gppi(sesskey, "WarnOnClose", 1, &cfg->warn_on_close);
edce8e45 395 {
32874aea 396 /* This is two values for backward compatibility with 0.50/0.51 */
397 int pingmin, pingsec;
398 gppi(sesskey, "PingInterval", 0, &pingmin);
399 gppi(sesskey, "PingIntervalSecs", 0, &pingsec);
400 cfg->ping_interval = pingmin * 60 + pingsec;
edce8e45 401 }
2184a5d9 402 gppi(sesskey, "TCPNoDelay", 1, &cfg->tcp_nodelay);
32874aea 403 gpps(sesskey, "TerminalType", "xterm", cfg->termtype,
404 sizeof(cfg->termtype));
405 gpps(sesskey, "TerminalSpeed", "38400,38400", cfg->termspeed,
406 sizeof(cfg->termspeed));
8eebd221 407
408 /* proxy settings */
409 gpps(sesskey, "ProxyExcludeList", "", cfg->proxy_exclude_list,
410 sizeof(cfg->proxy_exclude_list));
88103a48 411 gppi(sesskey, "ProxyDNS", 1, &i); cfg->proxy_dns = (i+1)%3;
b804e1e5 412 gppi(sesskey, "ProxyLocalhost", 0, &cfg->even_proxy_localhost);
5ecd7ad0 413 gppi(sesskey, "ProxyType", PROXY_NONE, &cfg->proxy_type);
8eebd221 414 gpps(sesskey, "ProxyHost", "proxy", cfg->proxy_host,
415 sizeof(cfg->proxy_host));
416 gppi(sesskey, "ProxyPort", 80, &cfg->proxy_port);
417 gpps(sesskey, "ProxyUsername", "", cfg->proxy_username,
418 sizeof(cfg->proxy_username));
419 gpps(sesskey, "ProxyPassword", "", cfg->proxy_password,
420 sizeof(cfg->proxy_password));
0e8f4cda 421 gpps(sesskey, "ProxyTelnetCommand", "connect %host %port\\n",
8eebd221 422 cfg->proxy_telnet_command, sizeof(cfg->proxy_telnet_command));
423 gppi(sesskey, "ProxySOCKSVersion", 5, &cfg->proxy_socks_version);
424
a9422f39 425 {
32874aea 426 char buf[2 * sizeof(cfg->environmt)], *p, *q;
427 gpps(sesskey, "Environment", "", buf, sizeof(buf));
a9422f39 428 p = buf;
429 q = cfg->environmt;
430 while (*p) {
431 while (*p && *p != ',') {
432 int c = *p++;
433 if (c == '=')
434 c = '\t';
435 if (c == '\\')
436 c = *p++;
437 *q++ = c;
438 }
32874aea 439 if (*p == ',')
440 p++;
a9422f39 441 *q++ = '\0';
442 }
443 *q = '\0';
444 }
32874aea 445 gpps(sesskey, "UserName", "", cfg->username, sizeof(cfg->username));
446 gpps(sesskey, "LocalUserName", "", cfg->localusername,
447 sizeof(cfg->localusername));
448 gppi(sesskey, "NoPTY", 0, &cfg->nopty);
449 gppi(sesskey, "Compression", 0, &cfg->compression);
450 gppi(sesskey, "AgentFwd", 0, &cfg->agentfwd);
5bb641e1 451 gppi(sesskey, "ChangeUsername", 0, &cfg->change_username);
e411be57 452 gprefs(sesskey, "Cipher", "\0",
453 ciphernames, CIPHER_MAX, cfg->ssh_cipherlist);
102b17eb 454 gppi(sesskey, "SshProt", 2, &cfg->sshprot);
cb4d4768 455 gppi(sesskey, "SSH2DES", 0, &cfg->ssh2_des_cbc);
32874aea 456 gppi(sesskey, "AuthTIS", 0, &cfg->try_tis_auth);
f091e308 457 gppi(sesskey, "AuthKI", 1, &cfg->try_ki_auth);
9a30e26b 458 gppfile(sesskey, "PublicKeyFile", &cfg->keyfile);
32874aea 459 gpps(sesskey, "RemoteCommand", "", cfg->remote_cmd,
460 sizeof(cfg->remote_cmd));
461 gppi(sesskey, "RFCEnviron", 0, &cfg->rfc_environ);
8faa456c 462 gppi(sesskey, "PassiveTelnet", 0, &cfg->passive_telnet);
32874aea 463 gppi(sesskey, "BackspaceIsDelete", 1, &cfg->bksp_is_delete);
464 gppi(sesskey, "RXVTHomeEnd", 0, &cfg->rxvt_homeend);
465 gppi(sesskey, "LinuxFunctionKeys", 0, &cfg->funky_type);
466 gppi(sesskey, "NoApplicationKeys", 0, &cfg->no_applic_k);
467 gppi(sesskey, "NoApplicationCursors", 0, &cfg->no_applic_c);
c0d36a72 468 gppi(sesskey, "NoMouseReporting", 0, &cfg->no_mouse_rep);
0d2086c5 469 gppi(sesskey, "NoRemoteResize", 0, &cfg->no_remote_resize);
470 gppi(sesskey, "NoAltScreen", 0, &cfg->no_alt_screen);
471 gppi(sesskey, "NoRemoteWinTitle", 0, &cfg->no_remote_wintitle);
472 gppi(sesskey, "NoDBackspace", 0, &cfg->no_dbackspace);
473 gppi(sesskey, "NoRemoteCharset", 0, &cfg->no_remote_charset);
32874aea 474 gppi(sesskey, "ApplicationCursorKeys", 0, &cfg->app_cursor);
475 gppi(sesskey, "ApplicationKeypad", 0, &cfg->app_keypad);
476 gppi(sesskey, "NetHackKeypad", 0, &cfg->nethack_keypad);
477 gppi(sesskey, "AltF4", 1, &cfg->alt_f4);
478 gppi(sesskey, "AltSpace", 0, &cfg->alt_space);
479 gppi(sesskey, "AltOnly", 0, &cfg->alt_only);
480 gppi(sesskey, "ComposeKey", 0, &cfg->compose_key);
481 gppi(sesskey, "CtrlAltKeys", 1, &cfg->ctrlaltkeys);
a5f3e637 482 gppi(sesskey, "TelnetKey", 0, &cfg->telnet_keyboard);
eee63b77 483 gppi(sesskey, "TelnetRet", 1, &cfg->telnet_newline);
5ecd7ad0 484 gppi(sesskey, "LocalEcho", AUTO, &cfg->localecho);
485 gppi(sesskey, "LocalEdit", AUTO, &cfg->localedit);
32874aea 486 gpps(sesskey, "Answerback", "PuTTY", cfg->answerback,
487 sizeof(cfg->answerback));
488 gppi(sesskey, "AlwaysOnTop", 0, &cfg->alwaysontop);
8f57d753 489 gppi(sesskey, "FullScreenOnAltEnter", 0, &cfg->fullscreenonaltenter);
32874aea 490 gppi(sesskey, "HideMousePtr", 0, &cfg->hide_mouseptr);
491 gppi(sesskey, "SunkenEdge", 0, &cfg->sunken_edge);
5a73255e 492 gppi(sesskey, "WindowBorder", 1, &cfg->window_border);
32874aea 493 gppi(sesskey, "CurType", 0, &cfg->cursor_type);
494 gppi(sesskey, "BlinkCur", 0, &cfg->blink_cur);
2d466ffd 495 /* pedantic compiler tells me I can't use &cfg->beep as an int * :-) */
5ecd7ad0 496 gppi(sesskey, "Beep", 1, &cfg->beep);
497 gppi(sesskey, "BeepInd", 0, &cfg->beep_ind);
9a30e26b 498 gppfile(sesskey, "BellWaveFile", &cfg->bell_wavefile);
32874aea 499 gppi(sesskey, "BellOverload", 1, &cfg->bellovl);
500 gppi(sesskey, "BellOverloadN", 5, &cfg->bellovl_n);
b1c10a70 501 gppi(sesskey, "BellOverloadT", 2*TICKSPERSEC, &cfg->bellovl_t);
502 gppi(sesskey, "BellOverloadS", 5*TICKSPERSEC, &cfg->bellovl_s);
32874aea 503 gppi(sesskey, "ScrollbackLines", 200, &cfg->savelines);
504 gppi(sesskey, "DECOriginMode", 0, &cfg->dec_om);
505 gppi(sesskey, "AutoWrapMode", 1, &cfg->wrap_mode);
506 gppi(sesskey, "LFImpliesCR", 0, &cfg->lfhascr);
505db88d 507 gppi(sesskey, "WinNameAlways", 1, &cfg->win_name_always);
32874aea 508 gpps(sesskey, "WinTitle", "", cfg->wintitle, sizeof(cfg->wintitle));
509 gppi(sesskey, "TermWidth", 80, &cfg->width);
510 gppi(sesskey, "TermHeight", 24, &cfg->height);
9a30e26b 511 gppfont(sesskey, "Font", &cfg->font);
5a73255e 512 gppi(sesskey, "FontVTMode", VT_UNICODE, (int *) &cfg->vtmode);
32874aea 513 gppi(sesskey, "TryPalette", 0, &cfg->try_palette);
514 gppi(sesskey, "BoldAsColour", 1, &cfg->bold_colour);
515 for (i = 0; i < 22; i++) {
c85623f9 516 static const char *const defaults[] = {
a9422f39 517 "187,187,187", "255,255,255", "0,0,0", "85,85,85", "0,0,0",
518 "0,255,0", "0,0,0", "85,85,85", "187,0,0", "255,85,85",
519 "0,187,0", "85,255,85", "187,187,0", "255,255,85", "0,0,187",
520 "85,85,255", "187,0,187", "255,85,255", "0,187,187",
521 "85,255,255", "187,187,187", "255,255,255"
32874aea 522 };
a9422f39 523 char buf[20], buf2[30];
524 int c0, c1, c2;
525 sprintf(buf, "Colour%d", i);
32874aea 526 gpps(sesskey, buf, defaults[i], buf2, sizeof(buf2));
527 if (sscanf(buf2, "%d,%d,%d", &c0, &c1, &c2) == 3) {
a9422f39 528 cfg->colours[i][0] = c0;
529 cfg->colours[i][1] = c1;
530 cfg->colours[i][2] = c2;
531 }
532 }
32874aea 533 gppi(sesskey, "RawCNP", 0, &cfg->rawcnp);
a7419ea4 534 gppi(sesskey, "PasteRTF", 0, &cfg->rtf_paste);
32874aea 535 gppi(sesskey, "MouseIsXterm", 0, &cfg->mouse_is_xterm);
6908fed7 536 gppi(sesskey, "RectSelect", 0, &cfg->rect_select);
b90840c3 537 gppi(sesskey, "MouseOverride", 1, &cfg->mouse_override);
32874aea 538 for (i = 0; i < 256; i += 32) {
c85623f9 539 static const char *const defaults[] = {
a9422f39 540 "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",
541 "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",
542 "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",
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,1",
544 "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",
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 "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",
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 };
549 char buf[20], buf2[256], *p;
550 int j;
551 sprintf(buf, "Wordness%d", i);
32874aea 552 gpps(sesskey, buf, defaults[i / 32], buf2, sizeof(buf2));
a9422f39 553 p = buf2;
32874aea 554 for (j = i; j < i + 32; j++) {
a9422f39 555 char *q = p;
32874aea 556 while (*p && *p != ',')
557 p++;
558 if (*p == ',')
559 *p++ = '\0';
a9422f39 560 cfg->wordness[j] = atoi(q);
561 }
562 }
b8ae1f0f 563 /*
564 * The empty default for LineCodePage will be converted later
565 * into a plausible default for the locale.
566 */
567 gpps(sesskey, "LineCodePage", "", cfg->line_codepage,
4eeb7d09 568 sizeof(cfg->line_codepage));
b44b307a 569 gpps(sesskey, "Printer", "", cfg->printer, sizeof(cfg->printer));
a9c02454 570 gppi (sesskey, "CapsLockCyr", 0, &cfg->xlat_capslockcyr);
32874aea 571 gppi(sesskey, "ScrollBar", 1, &cfg->scrollbar);
a401e5f3 572 gppi(sesskey, "ScrollBarFullScreen", 0, &cfg->scrollbar_in_fullscreen);
32874aea 573 gppi(sesskey, "ScrollOnKey", 0, &cfg->scroll_on_key);
574 gppi(sesskey, "ScrollOnDisp", 1, &cfg->scroll_on_disp);
5ecd7ad0 575 gppi(sesskey, "LockSize", 0, &cfg->resize_action);
102b17eb 576 gppi(sesskey, "BCE", 1, &cfg->bce);
32874aea 577 gppi(sesskey, "BlinkText", 0, &cfg->blinktext);
578 gppi(sesskey, "X11Forward", 0, &cfg->x11_forward);
579 gpps(sesskey, "X11Display", "localhost:0", cfg->x11_display,
580 sizeof(cfg->x11_display));
b3ebaa28 581 gppi(sesskey, "X11AuthType", X11_MIT, &cfg->x11_auth);
a9422f39 582
d74d141c 583 gppi(sesskey, "LocalPortAcceptAll", 0, &cfg->lport_acceptall);
beefa433 584 gppi(sesskey, "RemotePortAcceptAll", 0, &cfg->rport_acceptall);
d74d141c 585 {
586 char buf[2 * sizeof(cfg->portfwd)], *p, *q;
587 gpps(sesskey, "PortForwardings", "", buf, sizeof(buf));
588 p = buf;
589 q = cfg->portfwd;
590 while (*p) {
591 while (*p && *p != ',') {
592 int c = *p++;
593 if (c == '=')
594 c = '\t';
595 if (c == '\\')
596 c = *p++;
597 *q++ = c;
598 }
599 if (*p == ',')
600 p++;
601 *q++ = '\0';
602 }
603 *q = '\0';
604 }
88103a48 605 gppi(sesskey, "BugIgnore1", 0, &i); cfg->sshbug_ignore1 = 2-i;
606 gppi(sesskey, "BugPlainPW1", 0, &i); cfg->sshbug_plainpw1 = 2-i;
607 gppi(sesskey, "BugRSA1", 0, &i); cfg->sshbug_rsa1 = 2-i;
2c9c6388 608 {
609 int i;
88103a48 610 gppi(sesskey, "BugHMAC2", 0, &i); cfg->sshbug_hmac2 = 2-i;
5ecd7ad0 611 if (cfg->sshbug_hmac2 == AUTO) {
2c9c6388 612 gppi(sesskey, "BuggyMAC", 0, &i);
613 if (i == 1)
5ecd7ad0 614 cfg->sshbug_hmac2 = FORCE_ON;
2c9c6388 615 }
616 }
88103a48 617 gppi(sesskey, "BugDeriveKey2", 0, &i); cfg->sshbug_derivekey2 = 2-i;
618 gppi(sesskey, "BugRSAPad2", 0, &i); cfg->sshbug_rsapad2 = 2-i;
619 gppi(sesskey, "BugDHGEx2", 0, &i); cfg->sshbug_dhgex2 = 2-i;
dda87a28 620 gppi(sesskey, "BugPKSessID2", 0, &i); cfg->sshbug_pksessid2 = 2-i;
c8ee61b9 621 gppi(sesskey, "StampUtmp", 1, &cfg->stamp_utmp);
622 gppi(sesskey, "LoginShell", 1, &cfg->login_shell);
239b3b36 623 gppi(sesskey, "ScrollbarOnLeft", 0, &cfg->scrollbar_on_left);
9a30e26b 624 gppfont(sesskey, "BoldFont", &cfg->boldfont);
623f81b7 625 gppi(sesskey, "ShadowBoldOffset", 1, &cfg->shadowboldoffset);
a9422f39 626}
627
32874aea 628void do_defaults(char *session, Config * cfg)
629{
a9422f39 630 if (session)
32874aea 631 load_settings(session, TRUE, cfg);
a9422f39 632 else
32874aea 633 load_settings("Default Settings", FALSE, cfg);
a9422f39 634}
635
32874aea 636static 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;
a84ca2f5 640
641 /*
642 * Alphabetical order, except that "Default Settings" is a
643 * special case and comes first.
644 */
645 if (!strcmp(a, "Default Settings"))
32874aea 646 return -1; /* a comes first */
a84ca2f5 647 if (!strcmp(b, "Default Settings"))
32874aea 648 return +1; /* b comes first */
78a8d889 649 /*
650 * FIXME: perhaps we should ignore the first & in determining
651 * sort order.
652 */
32874aea 653 return strcmp(a, b); /* otherwise, compare normally */
a84ca2f5 654}
655
0b4f0bc0 656void get_sesslist(struct sesslist *list, int allocate)
32874aea 657{
0b4f0bc0 658 char otherbuf[2048];
a9422f39 659 int buflen, bufsize, i;
660 char *p, *ret;
661 void *handle;
662
663 if (allocate) {
32874aea 664
a9422f39 665 buflen = bufsize = 0;
0b4f0bc0 666 list->buffer = NULL;
1728c012 667 if ((handle = enum_settings_start()) != NULL) {
5f2df4d2 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;
0b4f0bc0 674 list->buffer = srealloc(list->buffer, bufsize);
5f2df4d2 675 }
0b4f0bc0 676 strcpy(list->buffer + buflen, otherbuf);
677 buflen += strlen(list->buffer + buflen) + 1;
32874aea 678 }
5f2df4d2 679 } while (ret);
680 enum_settings_finish(handle);
681 }
0b4f0bc0 682 list->buffer = srealloc(list->buffer, buflen + 1);
683 list->buffer[buflen] = '\0';
a9422f39 684
2221af18 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
0b4f0bc0 691 p = list->buffer;
692 list->nsessions = 1; /* "Default Settings" counts as one */
a9422f39 693 while (*p) {
32874aea 694 if (strcmp(p, "Default Settings"))
0b4f0bc0 695 list->nsessions++;
32874aea 696 while (*p)
697 p++;
a9422f39 698 p++;
699 }
700
0b4f0bc0 701 list->sessions = smalloc((list->nsessions + 1) * sizeof(char *));
702 list->sessions[0] = "Default Settings";
703 p = list->buffer;
2221af18 704 i = 1;
a9422f39 705 while (*p) {
32874aea 706 if (strcmp(p, "Default Settings"))
0b4f0bc0 707 list->sessions[i++] = p;
32874aea 708 while (*p)
709 p++;
a9422f39 710 p++;
711 }
a84ca2f5 712
0b4f0bc0 713 qsort(list->sessions, i, sizeof(char *), sessioncmp);
a9422f39 714 } else {
0b4f0bc0 715 sfree(list->buffer);
716 sfree(list->sessions);
a9422f39 717 }
718}