Change the semantics of 'FontSpec' so that it's a dynamically
[u/mdw/putty] / unix / uxstore.c
1 /*
2 * uxstore.c: Unix-specific implementation of the interface defined
3 * in storage.h.
4 */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9 #include <assert.h>
10 #include <errno.h>
11 #include <ctype.h>
12 #include <limits.h>
13 #include <unistd.h>
14 #include <fcntl.h>
15 #include <dirent.h>
16 #include <sys/stat.h>
17 #include <sys/types.h>
18 #include <pwd.h>
19 #include "putty.h"
20 #include "storage.h"
21 #include "tree234.h"
22
23 #ifdef PATH_MAX
24 #define FNLEN PATH_MAX
25 #else
26 #define FNLEN 1024 /* XXX */
27 #endif
28
29 enum {
30 INDEX_DIR, INDEX_HOSTKEYS, INDEX_HOSTKEYS_TMP, INDEX_RANDSEED,
31 INDEX_SESSIONDIR, INDEX_SESSION,
32 };
33
34 static const char hex[16] = "0123456789ABCDEF";
35
36 static char *mungestr(const char *in)
37 {
38 char *out, *ret;
39
40 if (!in || !*in)
41 in = "Default Settings";
42
43 ret = out = snewn(3*strlen(in)+1, char);
44
45 while (*in) {
46 /*
47 * There are remarkably few punctuation characters that
48 * aren't shell-special in some way or likely to be used as
49 * separators in some file format or another! Hence we use
50 * opt-in for safe characters rather than opt-out for
51 * specific unsafe ones...
52 */
53 if (*in!='+' && *in!='-' && *in!='.' && *in!='@' && *in!='_' &&
54 !(*in >= '0' && *in <= '9') &&
55 !(*in >= 'A' && *in <= 'Z') &&
56 !(*in >= 'a' && *in <= 'z')) {
57 *out++ = '%';
58 *out++ = hex[((unsigned char) *in) >> 4];
59 *out++ = hex[((unsigned char) *in) & 15];
60 } else
61 *out++ = *in;
62 in++;
63 }
64 *out = '\0';
65 return ret;
66 }
67
68 static char *unmungestr(const char *in)
69 {
70 char *out, *ret;
71 out = ret = snewn(strlen(in)+1, char);
72 while (*in) {
73 if (*in == '%' && in[1] && in[2]) {
74 int i, j;
75
76 i = in[1] - '0';
77 i -= (i > 9 ? 7 : 0);
78 j = in[2] - '0';
79 j -= (j > 9 ? 7 : 0);
80
81 *out++ = (i << 4) + j;
82 in += 3;
83 } else {
84 *out++ = *in++;
85 }
86 }
87 *out = '\0';
88 return ret;
89 }
90
91 static char *make_filename(int index, const char *subname)
92 {
93 char *env, *tmp, *ret;
94
95 /*
96 * Allow override of the PuTTY configuration location, and of
97 * specific subparts of it, by means of environment variables.
98 */
99 if (index == INDEX_DIR) {
100 struct passwd *pwd;
101
102 env = getenv("PUTTYDIR");
103 if (env)
104 return dupstr(env);
105 env = getenv("HOME");
106 if (env)
107 return dupprintf("%s/.putty", env);
108 pwd = getpwuid(getuid());
109 if (pwd && pwd->pw_dir)
110 return dupprintf("%s/.putty", pwd->pw_dir);
111 return dupstr("/.putty");
112 }
113 if (index == INDEX_SESSIONDIR) {
114 env = getenv("PUTTYSESSIONS");
115 if (env)
116 return dupstr(env);
117 tmp = make_filename(INDEX_DIR, NULL);
118 ret = dupprintf("%s/sessions", tmp);
119 sfree(tmp);
120 return ret;
121 }
122 if (index == INDEX_SESSION) {
123 char *munged = mungestr(subname);
124 tmp = make_filename(INDEX_SESSIONDIR, NULL);
125 ret = dupprintf("%s/%s", tmp, munged);
126 sfree(tmp);
127 sfree(munged);
128 return ret;
129 }
130 if (index == INDEX_HOSTKEYS) {
131 env = getenv("PUTTYSSHHOSTKEYS");
132 if (env)
133 return dupstr(env);
134 tmp = make_filename(INDEX_DIR, NULL);
135 ret = dupprintf("%s/sshhostkeys", tmp);
136 sfree(tmp);
137 return ret;
138 }
139 if (index == INDEX_HOSTKEYS_TMP) {
140 tmp = make_filename(INDEX_HOSTKEYS, NULL);
141 ret = dupprintf("%s.tmp", tmp);
142 sfree(tmp);
143 return ret;
144 }
145 if (index == INDEX_RANDSEED) {
146 env = getenv("PUTTYRANDOMSEED");
147 if (env)
148 return dupstr(env);
149 tmp = make_filename(INDEX_DIR, NULL);
150 ret = dupprintf("%s/randomseed", tmp);
151 sfree(tmp);
152 return ret;
153 }
154 tmp = make_filename(INDEX_DIR, NULL);
155 ret = dupprintf("%s/ERROR", tmp);
156 sfree(tmp);
157 return ret;
158 }
159
160 void *open_settings_w(const char *sessionname, char **errmsg)
161 {
162 char *filename;
163 FILE *fp;
164
165 *errmsg = NULL;
166
167 /*
168 * Start by making sure the .putty directory and its sessions
169 * subdir actually exist. Ignore error returns from mkdir since
170 * they're perfectly likely to be `already exists', and any
171 * other error will trip us up later on so there's no real need
172 * to catch it now.
173 */
174 filename = make_filename(INDEX_SESSIONDIR, NULL);
175 if (mkdir(filename, 0700) != 0) {
176 char *filename2 = make_filename(INDEX_DIR, NULL);
177 mkdir(filename2, 0700);
178 sfree(filename2);
179 mkdir(filename, 0700);
180 }
181 sfree(filename);
182
183 filename = make_filename(INDEX_SESSION, sessionname);
184 fp = fopen(filename, "w");
185 if (!fp) {
186 *errmsg = dupprintf("Unable to create %s: %s",
187 filename, strerror(errno));
188 sfree(filename);
189 return NULL; /* can't open */
190 }
191 sfree(filename);
192 return fp;
193 }
194
195 void write_setting_s(void *handle, const char *key, const char *value)
196 {
197 FILE *fp = (FILE *)handle;
198 fprintf(fp, "%s=%s\n", key, value);
199 }
200
201 void write_setting_i(void *handle, const char *key, int value)
202 {
203 FILE *fp = (FILE *)handle;
204 fprintf(fp, "%s=%d\n", key, value);
205 }
206
207 void close_settings_w(void *handle)
208 {
209 FILE *fp = (FILE *)handle;
210 fclose(fp);
211 }
212
213 /*
214 * Reading settings, for the moment, is done by retrieving X
215 * resources from the X display. When we introduce disk files, I
216 * think what will happen is that the X resources will override
217 * PuTTY's inbuilt defaults, but that the disk files will then
218 * override those. This isn't optimal, but it's the best I can
219 * immediately work out.
220 * FIXME: the above comment is a bit out of date. Did it happen?
221 */
222
223 struct skeyval {
224 const char *key;
225 const char *value;
226 };
227
228 static tree234 *xrmtree = NULL;
229
230 int keycmp(void *av, void *bv)
231 {
232 struct skeyval *a = (struct skeyval *)av;
233 struct skeyval *b = (struct skeyval *)bv;
234 return strcmp(a->key, b->key);
235 }
236
237 void provide_xrm_string(char *string)
238 {
239 char *p, *q, *key;
240 struct skeyval *xrms, *ret;
241
242 p = q = strchr(string, ':');
243 if (!q) {
244 fprintf(stderr, "pterm: expected a colon in resource string"
245 " \"%s\"\n", string);
246 return;
247 }
248 q++;
249 while (p > string && p[-1] != '.' && p[-1] != '*')
250 p--;
251 xrms = snew(struct skeyval);
252 key = snewn(q-p, char);
253 memcpy(key, p, q-p);
254 key[q-p-1] = '\0';
255 xrms->key = key;
256 while (*q && isspace((unsigned char)*q))
257 q++;
258 xrms->value = dupstr(q);
259
260 if (!xrmtree)
261 xrmtree = newtree234(keycmp);
262
263 ret = add234(xrmtree, xrms);
264 if (ret) {
265 /* Override an existing string. */
266 del234(xrmtree, ret);
267 add234(xrmtree, xrms);
268 }
269 }
270
271 const char *get_setting(const char *key)
272 {
273 struct skeyval tmp, *ret;
274 tmp.key = key;
275 if (xrmtree) {
276 ret = find234(xrmtree, &tmp, NULL);
277 if (ret)
278 return ret->value;
279 }
280 return x_get_default(key);
281 }
282
283 void *open_settings_r(const char *sessionname)
284 {
285 char *filename;
286 FILE *fp;
287 char *line;
288 tree234 *ret;
289
290 filename = make_filename(INDEX_SESSION, sessionname);
291 fp = fopen(filename, "r");
292 sfree(filename);
293 if (!fp)
294 return NULL; /* can't open */
295
296 ret = newtree234(keycmp);
297
298 while ( (line = fgetline(fp)) ) {
299 char *value = strchr(line, '=');
300 struct skeyval *kv;
301
302 if (!value)
303 continue;
304 *value++ = '\0';
305 value[strcspn(value, "\r\n")] = '\0'; /* trim trailing NL */
306
307 kv = snew(struct skeyval);
308 kv->key = dupstr(line);
309 kv->value = dupstr(value);
310 add234(ret, kv);
311
312 sfree(line);
313 }
314
315 fclose(fp);
316
317 return ret;
318 }
319
320 char *read_setting_s(void *handle, const char *key)
321 {
322 tree234 *tree = (tree234 *)handle;
323 const char *val;
324 struct skeyval tmp, *kv;
325
326 tmp.key = key;
327 if (tree != NULL &&
328 (kv = find234(tree, &tmp, NULL)) != NULL) {
329 val = kv->value;
330 assert(val != NULL);
331 } else
332 val = get_setting(key);
333
334 if (!val)
335 return NULL;
336 else
337 return dupstr(val);
338 }
339
340 int read_setting_i(void *handle, const char *key, int defvalue)
341 {
342 tree234 *tree = (tree234 *)handle;
343 const char *val;
344 struct skeyval tmp, *kv;
345
346 tmp.key = key;
347 if (tree != NULL &&
348 (kv = find234(tree, &tmp, NULL)) != NULL) {
349 val = kv->value;
350 assert(val != NULL);
351 } else
352 val = get_setting(key);
353
354 if (!val)
355 return defvalue;
356 else
357 return atoi(val);
358 }
359
360 FontSpec *read_setting_fontspec(void *handle, const char *name)
361 {
362 /*
363 * In GTK1-only PuTTY, we used to store font names simply as a
364 * valid X font description string (logical or alias), under a
365 * bare key such as "Font".
366 *
367 * In GTK2 PuTTY, we have a prefix system where "client:"
368 * indicates a Pango font and "server:" an X one; existing
369 * configuration needs to be reinterpreted as having the
370 * "server:" prefix, so we change the storage key from the
371 * provided name string (e.g. "Font") to a suffixed one
372 * ("FontName").
373 */
374 char *suffname = dupcat(name, "Name", NULL);
375 char *tmp;
376
377 if ((tmp = read_setting_s(handle, suffname)) != NULL) {
378 FontSpec *fs = fontspec_new(tmp);
379 sfree(suffname);
380 sfree(tmp);
381 return fs; /* got new-style name */
382 }
383 sfree(suffname);
384
385 /* Fall back to old-style name. */
386 tmp = read_setting_s(handle, name);
387 if (tmp && *tmp) {
388 char *tmp2 = dupcat("server:", tmp, NULL);
389 FontSpec *fs = fontspec_new(tmp2);
390 sfree(tmp2);
391 sfree(tmp);
392 return fs;
393 } else {
394 sfree(tmp);
395 return NULL;
396 }
397 }
398 int read_setting_filename(void *handle, const char *name, Filename *result)
399 {
400 char *tmp = read_setting_s(handle, name);
401 if (tmp) {
402 strncpy(result->path, tmp, sizeof(result->path)-1);
403 result->path[sizeof(result->path)-1] = '\0';
404 sfree(tmp);
405 return TRUE;
406 } else
407 return FALSE;
408 }
409
410 void write_setting_fontspec(void *handle, const char *name, FontSpec *fs)
411 {
412 /*
413 * read_setting_fontspec had to handle two cases, but when
414 * writing our settings back out we simply always generate the
415 * new-style name.
416 */
417 char *suffname = dupcat(name, "Name", NULL);
418 write_setting_s(handle, suffname, fs->name);
419 sfree(suffname);
420 }
421 void write_setting_filename(void *handle, const char *name, Filename result)
422 {
423 write_setting_s(handle, name, result.path);
424 }
425
426 void close_settings_r(void *handle)
427 {
428 tree234 *tree = (tree234 *)handle;
429 struct skeyval *kv;
430
431 if (!tree)
432 return;
433
434 while ( (kv = index234(tree, 0)) != NULL) {
435 del234(tree, kv);
436 sfree((char *)kv->key);
437 sfree((char *)kv->value);
438 sfree(kv);
439 }
440
441 freetree234(tree);
442 }
443
444 void del_settings(const char *sessionname)
445 {
446 char *filename;
447 filename = make_filename(INDEX_SESSION, sessionname);
448 unlink(filename);
449 sfree(filename);
450 }
451
452 void *enum_settings_start(void)
453 {
454 DIR *dp;
455 char *filename;
456
457 filename = make_filename(INDEX_SESSIONDIR, NULL);
458 dp = opendir(filename);
459 sfree(filename);
460
461 return dp;
462 }
463
464 char *enum_settings_next(void *handle, char *buffer, int buflen)
465 {
466 DIR *dp = (DIR *)handle;
467 struct dirent *de;
468 struct stat st;
469 char *fullpath;
470 int maxlen, thislen, len;
471 char *unmunged;
472
473 fullpath = make_filename(INDEX_SESSIONDIR, NULL);
474 maxlen = len = strlen(fullpath);
475
476 while ( (de = readdir(dp)) != NULL ) {
477 thislen = len + 1 + strlen(de->d_name);
478 if (maxlen < thislen) {
479 maxlen = thislen;
480 fullpath = sresize(fullpath, maxlen+1, char);
481 }
482 fullpath[len] = '/';
483 strncpy(fullpath+len+1, de->d_name, thislen - (len+1));
484 fullpath[thislen] = '\0';
485
486 if (stat(fullpath, &st) < 0 || !S_ISREG(st.st_mode))
487 continue; /* try another one */
488
489 unmunged = unmungestr(de->d_name);
490 strncpy(buffer, unmunged, buflen);
491 buffer[buflen-1] = '\0';
492 sfree(unmunged);
493 sfree(fullpath);
494 return buffer;
495 }
496
497 sfree(fullpath);
498 return NULL;
499 }
500
501 void enum_settings_finish(void *handle)
502 {
503 DIR *dp = (DIR *)handle;
504 closedir(dp);
505 }
506
507 /*
508 * Lines in the host keys file are of the form
509 *
510 * type@port:hostname keydata
511 *
512 * e.g.
513 *
514 * rsa@22:foovax.example.org 0x23,0x293487364395345345....2343
515 */
516 int verify_host_key(const char *hostname, int port,
517 const char *keytype, const char *key)
518 {
519 FILE *fp;
520 char *filename;
521 char *line;
522 int ret;
523
524 filename = make_filename(INDEX_HOSTKEYS, NULL);
525 fp = fopen(filename, "r");
526 sfree(filename);
527 if (!fp)
528 return 1; /* key does not exist */
529
530 ret = 1;
531 while ( (line = fgetline(fp)) ) {
532 int i;
533 char *p = line;
534 char porttext[20];
535
536 line[strcspn(line, "\n")] = '\0'; /* strip trailing newline */
537
538 i = strlen(keytype);
539 if (strncmp(p, keytype, i))
540 goto done;
541 p += i;
542
543 if (*p != '@')
544 goto done;
545 p++;
546
547 sprintf(porttext, "%d", port);
548 i = strlen(porttext);
549 if (strncmp(p, porttext, i))
550 goto done;
551 p += i;
552
553 if (*p != ':')
554 goto done;
555 p++;
556
557 i = strlen(hostname);
558 if (strncmp(p, hostname, i))
559 goto done;
560 p += i;
561
562 if (*p != ' ')
563 goto done;
564 p++;
565
566 /*
567 * Found the key. Now just work out whether it's the right
568 * one or not.
569 */
570 if (!strcmp(p, key))
571 ret = 0; /* key matched OK */
572 else
573 ret = 2; /* key mismatch */
574
575 done:
576 sfree(line);
577 if (ret != 1)
578 break;
579 }
580
581 fclose(fp);
582 return ret;
583 }
584
585 void store_host_key(const char *hostname, int port,
586 const char *keytype, const char *key)
587 {
588 FILE *rfp, *wfp;
589 char *newtext, *line;
590 int headerlen;
591 char *filename, *tmpfilename;
592
593 newtext = dupprintf("%s@%d:%s %s\n", keytype, port, hostname, key);
594 headerlen = 1 + strcspn(newtext, " "); /* count the space too */
595
596 /*
597 * Open both the old file and a new file.
598 */
599 tmpfilename = make_filename(INDEX_HOSTKEYS_TMP, NULL);
600 wfp = fopen(tmpfilename, "w");
601 if (!wfp) {
602 char *dir;
603
604 dir = make_filename(INDEX_DIR, NULL);
605 mkdir(dir, 0700);
606 sfree(dir);
607
608 wfp = fopen(tmpfilename, "w");
609 }
610 if (!wfp) {
611 sfree(tmpfilename);
612 return;
613 }
614 filename = make_filename(INDEX_HOSTKEYS, NULL);
615 rfp = fopen(filename, "r");
616
617 /*
618 * Copy all lines from the old file to the new one that _don't_
619 * involve the same host key identifier as the one we're adding.
620 */
621 if (rfp) {
622 while ( (line = fgetline(rfp)) ) {
623 if (strncmp(line, newtext, headerlen))
624 fputs(line, wfp);
625 }
626 fclose(rfp);
627 }
628
629 /*
630 * Now add the new line at the end.
631 */
632 fputs(newtext, wfp);
633
634 fclose(wfp);
635
636 rename(tmpfilename, filename);
637
638 sfree(tmpfilename);
639 sfree(filename);
640 sfree(newtext);
641 }
642
643 void read_random_seed(noise_consumer_t consumer)
644 {
645 int fd;
646 char *fname;
647
648 fname = make_filename(INDEX_RANDSEED, NULL);
649 fd = open(fname, O_RDONLY);
650 sfree(fname);
651 if (fd >= 0) {
652 char buf[512];
653 int ret;
654 while ( (ret = read(fd, buf, sizeof(buf))) > 0)
655 consumer(buf, ret);
656 close(fd);
657 }
658 }
659
660 void write_random_seed(void *data, int len)
661 {
662 int fd;
663 char *fname;
664
665 fname = make_filename(INDEX_RANDSEED, NULL);
666 /*
667 * Don't truncate the random seed file if it already exists; if
668 * something goes wrong half way through writing it, it would
669 * be better to leave the old data there than to leave it empty.
670 */
671 fd = open(fname, O_CREAT | O_WRONLY, 0600);
672 if (fd < 0) {
673 char *dir;
674
675 dir = make_filename(INDEX_DIR, NULL);
676 mkdir(dir, 0700);
677 sfree(dir);
678
679 fd = open(fname, O_CREAT | O_WRONLY, 0600);
680 }
681
682 while (len > 0) {
683 int ret = write(fd, data, len);
684 if (ret <= 0) break;
685 len -= ret;
686 data = (char *)data + len;
687 }
688
689 close(fd);
690 sfree(fname);
691 }
692
693 void cleanup_all(void)
694 {
695 }