]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - sshpubk.c
Const-correctness in key-loading functions.
[PuTTY.git] / sshpubk.c
1 /*
2  * Generic SSH public-key handling operations. In particular,
3  * reading of SSH public-key files, and also the generic `sign'
4  * operation for SSH-2 (which checks the type of the key and
5  * dispatches to the appropriate key-type specific function).
6  */
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <assert.h>
11
12 #include "putty.h"
13 #include "ssh.h"
14 #include "misc.h"
15
16 #define rsa_signature "SSH PRIVATE KEY FILE FORMAT 1.1\n"
17
18 #define BASE64_TOINT(x) ( (x)-'A'<26 ? (x)-'A'+0 :\
19                           (x)-'a'<26 ? (x)-'a'+26 :\
20                           (x)-'0'<10 ? (x)-'0'+52 :\
21                           (x)=='+' ? 62 : \
22                           (x)=='/' ? 63 : 0 )
23
24 static int loadrsakey_main(FILE * fp, struct RSAKey *key, int pub_only,
25                            char **commentptr, const char *passphrase,
26                            const char **error)
27 {
28     unsigned char buf[16384];
29     unsigned char keybuf[16];
30     int len;
31     int i, j, ciphertype;
32     int ret = 0;
33     struct MD5Context md5c;
34     char *comment;
35
36     *error = NULL;
37
38     /* Slurp the whole file (minus the header) into a buffer. */
39     len = fread(buf, 1, sizeof(buf), fp);
40     fclose(fp);
41     if (len < 0 || len == sizeof(buf)) {
42         *error = "error reading file";
43         goto end;                      /* file too big or not read */
44     }
45
46     i = 0;
47     *error = "file format error";
48
49     /*
50      * A zero byte. (The signature includes a terminating NUL.)
51      */
52     if (len - i < 1 || buf[i] != 0)
53         goto end;
54     i++;
55
56     /* One byte giving encryption type, and one reserved uint32. */
57     if (len - i < 1)
58         goto end;
59     ciphertype = buf[i];
60     if (ciphertype != 0 && ciphertype != SSH_CIPHER_3DES)
61         goto end;
62     i++;
63     if (len - i < 4)
64         goto end;                      /* reserved field not present */
65     if (buf[i] != 0 || buf[i + 1] != 0 || buf[i + 2] != 0
66         || buf[i + 3] != 0) goto end;  /* reserved field nonzero, panic! */
67     i += 4;
68
69     /* Now the serious stuff. An ordinary SSH-1 public key. */
70     j = makekey(buf + i, len - i, key, NULL, 1);
71     if (j < 0)
72         goto end;                      /* overran */
73     i += j;
74
75     /* Next, the comment field. */
76     j = toint(GET_32BIT(buf + i));
77     i += 4;
78     if (j < 0 || len - i < j)
79         goto end;
80     comment = snewn(j + 1, char);
81     if (comment) {
82         memcpy(comment, buf + i, j);
83         comment[j] = '\0';
84     }
85     i += j;
86     if (commentptr)
87         *commentptr = dupstr(comment);
88     if (key)
89         key->comment = comment;
90     else
91         sfree(comment);
92
93     if (pub_only) {
94         ret = 1;
95         goto end;
96     }
97
98     if (!key) {
99         ret = ciphertype != 0;
100         *error = NULL;
101         goto end;
102     }
103
104     /*
105      * Decrypt remainder of buffer.
106      */
107     if (ciphertype) {
108         MD5Init(&md5c);
109         MD5Update(&md5c, (unsigned char *)passphrase, strlen(passphrase));
110         MD5Final(keybuf, &md5c);
111         des3_decrypt_pubkey(keybuf, buf + i, (len - i + 7) & ~7);
112         smemclr(keybuf, sizeof(keybuf));        /* burn the evidence */
113     }
114
115     /*
116      * We are now in the secret part of the key. The first four
117      * bytes should be of the form a, b, a, b.
118      */
119     if (len - i < 4)
120         goto end;
121     if (buf[i] != buf[i + 2] || buf[i + 1] != buf[i + 3]) {
122         *error = "wrong passphrase";
123         ret = -1;
124         goto end;
125     }
126     i += 4;
127
128     /*
129      * After that, we have one further bignum which is our
130      * decryption exponent, and then the three auxiliary values
131      * (iqmp, q, p).
132      */
133     j = makeprivate(buf + i, len - i, key);
134     if (j < 0) goto end;
135     i += j;
136     j = ssh1_read_bignum(buf + i, len - i, &key->iqmp);
137     if (j < 0) goto end;
138     i += j;
139     j = ssh1_read_bignum(buf + i, len - i, &key->q);
140     if (j < 0) goto end;
141     i += j;
142     j = ssh1_read_bignum(buf + i, len - i, &key->p);
143     if (j < 0) goto end;
144     i += j;
145
146     if (!rsa_verify(key)) {
147         *error = "rsa_verify failed";
148         freersakey(key);
149         ret = 0;
150     } else
151         ret = 1;
152
153   end:
154     smemclr(buf, sizeof(buf));       /* burn the evidence */
155     return ret;
156 }
157
158 int loadrsakey(const Filename *filename, struct RSAKey *key,
159                const char *passphrase, const char **errorstr)
160 {
161     FILE *fp;
162     char buf[64];
163     int ret = 0;
164     const char *error = NULL;
165
166     fp = f_open(filename, "rb", FALSE);
167     if (!fp) {
168         error = "can't open file";
169         goto end;
170     }
171
172     /*
173      * Read the first line of the file and see if it's a v1 private
174      * key file.
175      */
176     if (fgets(buf, sizeof(buf), fp) && !strcmp(buf, rsa_signature)) {
177         /*
178          * This routine will take care of calling fclose() for us.
179          */
180         ret = loadrsakey_main(fp, key, FALSE, NULL, passphrase, &error);
181         fp = NULL;
182         goto end;
183     }
184
185     /*
186      * Otherwise, we have nothing. Return empty-handed.
187      */
188     error = "not an SSH-1 RSA file";
189
190   end:
191     if (fp)
192         fclose(fp);
193     if ((ret != 1) && errorstr)
194         *errorstr = error;
195     return ret;
196 }
197
198 /*
199  * See whether an RSA key is encrypted. Return its comment field as
200  * well.
201  */
202 int rsakey_encrypted(const Filename *filename, char **comment)
203 {
204     FILE *fp;
205     char buf[64];
206
207     fp = f_open(filename, "rb", FALSE);
208     if (!fp)
209         return 0;                      /* doesn't even exist */
210
211     /*
212      * Read the first line of the file and see if it's a v1 private
213      * key file.
214      */
215     if (fgets(buf, sizeof(buf), fp) && !strcmp(buf, rsa_signature)) {
216         const char *dummy;
217         /*
218          * This routine will take care of calling fclose() for us.
219          */
220         return loadrsakey_main(fp, NULL, FALSE, comment, NULL, &dummy);
221     }
222     fclose(fp);
223     return 0;                          /* wasn't the right kind of file */
224 }
225
226 /*
227  * Return a malloc'ed chunk of memory containing the public blob of
228  * an RSA key, as given in the agent protocol (modulus bits,
229  * exponent, modulus).
230  */
231 int rsakey_pubblob(const Filename *filename, void **blob, int *bloblen,
232                    char **commentptr, const char **errorstr)
233 {
234     FILE *fp;
235     char buf[64];
236     struct RSAKey key;
237     int ret;
238     const char *error = NULL;
239
240     /* Default return if we fail. */
241     *blob = NULL;
242     *bloblen = 0;
243     ret = 0;
244
245     fp = f_open(filename, "rb", FALSE);
246     if (!fp) {
247         error = "can't open file";
248         goto end;
249     }
250
251     /*
252      * Read the first line of the file and see if it's a v1 private
253      * key file.
254      */
255     if (fgets(buf, sizeof(buf), fp) && !strcmp(buf, rsa_signature)) {
256         memset(&key, 0, sizeof(key));
257         if (loadrsakey_main(fp, &key, TRUE, commentptr, NULL, &error)) {
258             *blob = rsa_public_blob(&key, bloblen);
259             freersakey(&key);
260             ret = 1;
261         }
262         fp = NULL; /* loadrsakey_main unconditionally closes fp */
263     } else {
264         error = "not an SSH-1 RSA file";
265     }
266
267   end:
268     if (fp)
269         fclose(fp);
270     if ((ret != 1) && errorstr)
271         *errorstr = error;
272     return ret;
273 }
274
275 /*
276  * Save an RSA key file. Return nonzero on success.
277  */
278 int saversakey(const Filename *filename, struct RSAKey *key, char *passphrase)
279 {
280     unsigned char buf[16384];
281     unsigned char keybuf[16];
282     struct MD5Context md5c;
283     unsigned char *p, *estart;
284     FILE *fp;
285
286     /*
287      * Write the initial signature.
288      */
289     p = buf;
290     memcpy(p, rsa_signature, sizeof(rsa_signature));
291     p += sizeof(rsa_signature);
292
293     /*
294      * One byte giving encryption type, and one reserved (zero)
295      * uint32.
296      */
297     *p++ = (passphrase ? SSH_CIPHER_3DES : 0);
298     PUT_32BIT(p, 0);
299     p += 4;
300
301     /*
302      * An ordinary SSH-1 public key consists of: a uint32
303      * containing the bit count, then two bignums containing the
304      * modulus and exponent respectively.
305      */
306     PUT_32BIT(p, bignum_bitcount(key->modulus));
307     p += 4;
308     p += ssh1_write_bignum(p, key->modulus);
309     p += ssh1_write_bignum(p, key->exponent);
310
311     /*
312      * A string containing the comment field.
313      */
314     if (key->comment) {
315         PUT_32BIT(p, strlen(key->comment));
316         p += 4;
317         memcpy(p, key->comment, strlen(key->comment));
318         p += strlen(key->comment);
319     } else {
320         PUT_32BIT(p, 0);
321         p += 4;
322     }
323
324     /*
325      * The encrypted portion starts here.
326      */
327     estart = p;
328
329     /*
330      * Two bytes, then the same two bytes repeated.
331      */
332     *p++ = random_byte();
333     *p++ = random_byte();
334     p[0] = p[-2];
335     p[1] = p[-1];
336     p += 2;
337
338     /*
339      * Four more bignums: the decryption exponent, then iqmp, then
340      * q, then p.
341      */
342     p += ssh1_write_bignum(p, key->private_exponent);
343     p += ssh1_write_bignum(p, key->iqmp);
344     p += ssh1_write_bignum(p, key->q);
345     p += ssh1_write_bignum(p, key->p);
346
347     /*
348      * Now write zeros until the encrypted portion is a multiple of
349      * 8 bytes.
350      */
351     while ((p - estart) % 8)
352         *p++ = '\0';
353
354     /*
355      * Now encrypt the encrypted portion.
356      */
357     if (passphrase) {
358         MD5Init(&md5c);
359         MD5Update(&md5c, (unsigned char *)passphrase, strlen(passphrase));
360         MD5Final(keybuf, &md5c);
361         des3_encrypt_pubkey(keybuf, estart, p - estart);
362         smemclr(keybuf, sizeof(keybuf));        /* burn the evidence */
363     }
364
365     /*
366      * Done. Write the result to the file.
367      */
368     fp = f_open(filename, "wb", TRUE);
369     if (fp) {
370         int ret = (fwrite(buf, 1, p - buf, fp) == (size_t) (p - buf));
371         if (fclose(fp))
372             ret = 0;
373         return ret;
374     } else
375         return 0;
376 }
377
378 /* ----------------------------------------------------------------------
379  * SSH-2 private key load/store functions.
380  */
381
382 /*
383  * PuTTY's own format for SSH-2 keys is as follows:
384  *
385  * The file is text. Lines are terminated by CRLF, although CR-only
386  * and LF-only are tolerated on input.
387  *
388  * The first line says "PuTTY-User-Key-File-2: " plus the name of the
389  * algorithm ("ssh-dss", "ssh-rsa" etc).
390  *
391  * The next line says "Encryption: " plus an encryption type.
392  * Currently the only supported encryption types are "aes256-cbc"
393  * and "none".
394  *
395  * The next line says "Comment: " plus the comment string.
396  *
397  * Next there is a line saying "Public-Lines: " plus a number N.
398  * The following N lines contain a base64 encoding of the public
399  * part of the key. This is encoded as the standard SSH-2 public key
400  * blob (with no initial length): so for RSA, for example, it will
401  * read
402  *
403  *    string "ssh-rsa"
404  *    mpint  exponent
405  *    mpint  modulus
406  *
407  * Next, there is a line saying "Private-Lines: " plus a number N,
408  * and then N lines containing the (potentially encrypted) private
409  * part of the key. For the key type "ssh-rsa", this will be
410  * composed of
411  *
412  *    mpint  private_exponent
413  *    mpint  p                  (the larger of the two primes)
414  *    mpint  q                  (the smaller prime)
415  *    mpint  iqmp               (the inverse of q modulo p)
416  *    data   padding            (to reach a multiple of the cipher block size)
417  *
418  * And for "ssh-dss", it will be composed of
419  *
420  *    mpint  x                  (the private key parameter)
421  *  [ string hash   20-byte hash of mpints p || q || g   only in old format ]
422  * 
423  * Finally, there is a line saying "Private-MAC: " plus a hex
424  * representation of a HMAC-SHA-1 of:
425  *
426  *    string  name of algorithm ("ssh-dss", "ssh-rsa")
427  *    string  encryption type
428  *    string  comment
429  *    string  public-blob
430  *    string  private-plaintext (the plaintext version of the
431  *                               private part, including the final
432  *                               padding)
433  * 
434  * The key to the MAC is itself a SHA-1 hash of:
435  * 
436  *    data    "putty-private-key-file-mac-key"
437  *    data    passphrase
438  *
439  * (An empty passphrase is used for unencrypted keys.)
440  *
441  * If the key is encrypted, the encryption key is derived from the
442  * passphrase by means of a succession of SHA-1 hashes. Each hash
443  * is the hash of:
444  *
445  *    uint32  sequence-number
446  *    data    passphrase
447  *
448  * where the sequence-number increases from zero. As many of these
449  * hashes are used as necessary.
450  *
451  * For backwards compatibility with snapshots between 0.51 and
452  * 0.52, we also support the older key file format, which begins
453  * with "PuTTY-User-Key-File-1" (version number differs). In this
454  * format the Private-MAC: field only covers the private-plaintext
455  * field and nothing else (and without the 4-byte string length on
456  * the front too). Moreover, the Private-MAC: field can be replaced
457  * with a Private-Hash: field which is a plain SHA-1 hash instead of
458  * an HMAC (this was generated for unencrypted keys).
459  */
460
461 static int read_header(FILE * fp, char *header)
462 {
463     int len = 39;
464     int c;
465
466     while (1) {
467         c = fgetc(fp);
468         if (c == '\n' || c == '\r' || c == EOF)
469             return 0;                  /* failure */
470         if (c == ':') {
471             c = fgetc(fp);
472             if (c != ' ')
473                 return 0;
474             *header = '\0';
475             return 1;                  /* success! */
476         }
477         if (len == 0)
478             return 0;                  /* failure */
479         *header++ = c;
480         len--;
481     }
482     return 0;                          /* failure */
483 }
484
485 static char *read_body(FILE * fp)
486 {
487     char *text;
488     int len;
489     int size;
490     int c;
491
492     size = 128;
493     text = snewn(size, char);
494     len = 0;
495     text[len] = '\0';
496
497     while (1) {
498         c = fgetc(fp);
499         if (c == '\r' || c == '\n' || c == EOF) {
500             if (c != EOF) {
501                 c = fgetc(fp);
502                 if (c != '\r' && c != '\n')
503                     ungetc(c, fp);
504             }
505             return text;
506         }
507         if (len + 1 >= size) {
508             size += 128;
509             text = sresize(text, size, char);
510         }
511         text[len++] = c;
512         text[len] = '\0';
513     }
514 }
515
516 static unsigned char *read_blob(FILE * fp, int nlines, int *bloblen)
517 {
518     unsigned char *blob;
519     char *line;
520     int linelen, len;
521     int i, j, k;
522
523     /* We expect at most 64 base64 characters, ie 48 real bytes, per line. */
524     blob = snewn(48 * nlines, unsigned char);
525     len = 0;
526     for (i = 0; i < nlines; i++) {
527         line = read_body(fp);
528         if (!line) {
529             sfree(blob);
530             return NULL;
531         }
532         linelen = strlen(line);
533         if (linelen % 4 != 0 || linelen > 64) {
534             sfree(blob);
535             sfree(line);
536             return NULL;
537         }
538         for (j = 0; j < linelen; j += 4) {
539             k = base64_decode_atom(line + j, blob + len);
540             if (!k) {
541                 sfree(line);
542                 sfree(blob);
543                 return NULL;
544             }
545             len += k;
546         }
547         sfree(line);
548     }
549     *bloblen = len;
550     return blob;
551 }
552
553 /*
554  * Magic error return value for when the passphrase is wrong.
555  */
556 struct ssh2_userkey ssh2_wrong_passphrase = {
557     NULL, NULL, NULL
558 };
559
560 const struct ssh_signkey *find_pubkey_alg_len(int namelen, const char *name)
561 {
562     if (match_ssh_id(namelen, name, "ssh-rsa"))
563         return &ssh_rsa;
564     else if (match_ssh_id(namelen, name, "ssh-dss"))
565         return &ssh_dss;
566     else if (match_ssh_id(namelen, name, "ecdsa-sha2-nistp256"))
567         return &ssh_ecdsa_nistp256;
568     else if (match_ssh_id(namelen, name, "ecdsa-sha2-nistp384"))
569         return &ssh_ecdsa_nistp384;
570     else if (match_ssh_id(namelen, name, "ecdsa-sha2-nistp521"))
571         return &ssh_ecdsa_nistp521;
572     else if (match_ssh_id(namelen, name, "ssh-ed25519"))
573         return &ssh_ecdsa_ed25519;
574     else
575         return NULL;
576 }
577
578 const struct ssh_signkey *find_pubkey_alg(const char *name)
579 {
580     return find_pubkey_alg_len(strlen(name), name);
581 }
582
583 struct ssh2_userkey *ssh2_load_userkey(const Filename *filename,
584                                        const char *passphrase,
585                                        const char **errorstr)
586 {
587     FILE *fp;
588     char header[40], *b, *encryption, *comment, *mac;
589     const struct ssh_signkey *alg;
590     struct ssh2_userkey *ret;
591     int cipher, cipherblk;
592     unsigned char *public_blob, *private_blob;
593     int public_blob_len, private_blob_len;
594     int i, is_mac, old_fmt;
595     int passlen = passphrase ? strlen(passphrase) : 0;
596     const char *error = NULL;
597
598     ret = NULL;                        /* return NULL for most errors */
599     encryption = comment = mac = NULL;
600     public_blob = private_blob = NULL;
601
602     fp = f_open(filename, "rb", FALSE);
603     if (!fp) {
604         error = "can't open file";
605         goto error;
606     }
607
608     /* Read the first header line which contains the key type. */
609     if (!read_header(fp, header))
610         goto error;
611     if (0 == strcmp(header, "PuTTY-User-Key-File-2")) {
612         old_fmt = 0;
613     } else if (0 == strcmp(header, "PuTTY-User-Key-File-1")) {
614         /* this is an old key file; warn and then continue */
615         old_keyfile_warning();
616         old_fmt = 1;
617     } else if (0 == strncmp(header, "PuTTY-User-Key-File-", 20)) {
618         /* this is a key file FROM THE FUTURE; refuse it, but with a
619          * more specific error message than the generic one below */
620         error = "PuTTY key format too new";
621         goto error;
622     } else {
623         error = "not a PuTTY SSH-2 private key";
624         goto error;
625     }
626     error = "file format error";
627     if ((b = read_body(fp)) == NULL)
628         goto error;
629     /* Select key algorithm structure. */
630     alg = find_pubkey_alg(b);
631     if (!alg) {
632         sfree(b);
633         goto error;
634     }
635     sfree(b);
636
637     /* Read the Encryption header line. */
638     if (!read_header(fp, header) || 0 != strcmp(header, "Encryption"))
639         goto error;
640     if ((encryption = read_body(fp)) == NULL)
641         goto error;
642     if (!strcmp(encryption, "aes256-cbc")) {
643         cipher = 1;
644         cipherblk = 16;
645     } else if (!strcmp(encryption, "none")) {
646         cipher = 0;
647         cipherblk = 1;
648     } else {
649         goto error;
650     }
651
652     /* Read the Comment header line. */
653     if (!read_header(fp, header) || 0 != strcmp(header, "Comment"))
654         goto error;
655     if ((comment = read_body(fp)) == NULL)
656         goto error;
657
658     /* Read the Public-Lines header line and the public blob. */
659     if (!read_header(fp, header) || 0 != strcmp(header, "Public-Lines"))
660         goto error;
661     if ((b = read_body(fp)) == NULL)
662         goto error;
663     i = atoi(b);
664     sfree(b);
665     if ((public_blob = read_blob(fp, i, &public_blob_len)) == NULL)
666         goto error;
667
668     /* Read the Private-Lines header line and the Private blob. */
669     if (!read_header(fp, header) || 0 != strcmp(header, "Private-Lines"))
670         goto error;
671     if ((b = read_body(fp)) == NULL)
672         goto error;
673     i = atoi(b);
674     sfree(b);
675     if ((private_blob = read_blob(fp, i, &private_blob_len)) == NULL)
676         goto error;
677
678     /* Read the Private-MAC or Private-Hash header line. */
679     if (!read_header(fp, header))
680         goto error;
681     if (0 == strcmp(header, "Private-MAC")) {
682         if ((mac = read_body(fp)) == NULL)
683             goto error;
684         is_mac = 1;
685     } else if (0 == strcmp(header, "Private-Hash") && old_fmt) {
686         if ((mac = read_body(fp)) == NULL)
687             goto error;
688         is_mac = 0;
689     } else
690         goto error;
691
692     fclose(fp);
693     fp = NULL;
694
695     /*
696      * Decrypt the private blob.
697      */
698     if (cipher) {
699         unsigned char key[40];
700         SHA_State s;
701
702         if (!passphrase)
703             goto error;
704         if (private_blob_len % cipherblk)
705             goto error;
706
707         SHA_Init(&s);
708         SHA_Bytes(&s, "\0\0\0\0", 4);
709         SHA_Bytes(&s, passphrase, passlen);
710         SHA_Final(&s, key + 0);
711         SHA_Init(&s);
712         SHA_Bytes(&s, "\0\0\0\1", 4);
713         SHA_Bytes(&s, passphrase, passlen);
714         SHA_Final(&s, key + 20);
715         aes256_decrypt_pubkey(key, private_blob, private_blob_len);
716     }
717
718     /*
719      * Verify the MAC.
720      */
721     {
722         char realmac[41];
723         unsigned char binary[20];
724         unsigned char *macdata;
725         int maclen;
726         int free_macdata;
727
728         if (old_fmt) {
729             /* MAC (or hash) only covers the private blob. */
730             macdata = private_blob;
731             maclen = private_blob_len;
732             free_macdata = 0;
733         } else {
734             unsigned char *p;
735             int namelen = strlen(alg->name);
736             int enclen = strlen(encryption);
737             int commlen = strlen(comment);
738             maclen = (4 + namelen +
739                       4 + enclen +
740                       4 + commlen +
741                       4 + public_blob_len +
742                       4 + private_blob_len);
743             macdata = snewn(maclen, unsigned char);
744             p = macdata;
745 #define DO_STR(s,len) PUT_32BIT(p,(len));memcpy(p+4,(s),(len));p+=4+(len)
746             DO_STR(alg->name, namelen);
747             DO_STR(encryption, enclen);
748             DO_STR(comment, commlen);
749             DO_STR(public_blob, public_blob_len);
750             DO_STR(private_blob, private_blob_len);
751
752             free_macdata = 1;
753         }
754
755         if (is_mac) {
756             SHA_State s;
757             unsigned char mackey[20];
758             char header[] = "putty-private-key-file-mac-key";
759
760             SHA_Init(&s);
761             SHA_Bytes(&s, header, sizeof(header)-1);
762             if (cipher && passphrase)
763                 SHA_Bytes(&s, passphrase, passlen);
764             SHA_Final(&s, mackey);
765
766             hmac_sha1_simple(mackey, 20, macdata, maclen, binary);
767
768             smemclr(mackey, sizeof(mackey));
769             smemclr(&s, sizeof(s));
770         } else {
771             SHA_Simple(macdata, maclen, binary);
772         }
773
774         if (free_macdata) {
775             smemclr(macdata, maclen);
776             sfree(macdata);
777         }
778
779         for (i = 0; i < 20; i++)
780             sprintf(realmac + 2 * i, "%02x", binary[i]);
781
782         if (strcmp(mac, realmac)) {
783             /* An incorrect MAC is an unconditional Error if the key is
784              * unencrypted. Otherwise, it means Wrong Passphrase. */
785             if (cipher) {
786                 error = "wrong passphrase";
787                 ret = SSH2_WRONG_PASSPHRASE;
788             } else {
789                 error = "MAC failed";
790                 ret = NULL;
791             }
792             goto error;
793         }
794     }
795     sfree(mac);
796     mac = NULL;
797
798     /*
799      * Create and return the key.
800      */
801     ret = snew(struct ssh2_userkey);
802     ret->alg = alg;
803     ret->comment = comment;
804     ret->data = alg->createkey(public_blob, public_blob_len,
805                                private_blob, private_blob_len);
806     if (!ret->data) {
807         sfree(ret);
808         ret = NULL;
809         error = "createkey failed";
810         goto error;
811     }
812     sfree(public_blob);
813     smemclr(private_blob, private_blob_len);
814     sfree(private_blob);
815     sfree(encryption);
816     if (errorstr)
817         *errorstr = NULL;
818     return ret;
819
820     /*
821      * Error processing.
822      */
823   error:
824     if (fp)
825         fclose(fp);
826     if (comment)
827         sfree(comment);
828     if (encryption)
829         sfree(encryption);
830     if (mac)
831         sfree(mac);
832     if (public_blob)
833         sfree(public_blob);
834     if (private_blob) {
835         smemclr(private_blob, private_blob_len);
836         sfree(private_blob);
837     }
838     if (errorstr)
839         *errorstr = error;
840     return ret;
841 }
842
843 unsigned char *ssh2_userkey_loadpub(const Filename *filename, char **algorithm,
844                                     int *pub_blob_len, char **commentptr,
845                                     const char **errorstr)
846 {
847     FILE *fp;
848     char header[40], *b;
849     const struct ssh_signkey *alg;
850     unsigned char *public_blob;
851     int public_blob_len;
852     int i;
853     const char *error = NULL;
854     char *comment = NULL;
855
856     public_blob = NULL;
857
858     fp = f_open(filename, "rb", FALSE);
859     if (!fp) {
860         error = "can't open file";
861         goto error;
862     }
863
864     /* Read the first header line which contains the key type. */
865     if (!read_header(fp, header)
866         || (0 != strcmp(header, "PuTTY-User-Key-File-2") &&
867             0 != strcmp(header, "PuTTY-User-Key-File-1"))) {
868         if (0 == strncmp(header, "PuTTY-User-Key-File-", 20))
869             error = "PuTTY key format too new";
870         else
871             error = "not a PuTTY SSH-2 private key";
872         goto error;
873     }
874     error = "file format error";
875     if ((b = read_body(fp)) == NULL)
876         goto error;
877     /* Select key algorithm structure. */
878     alg = find_pubkey_alg(b);
879     sfree(b);
880     if (!alg) {
881         goto error;
882     }
883
884     /* Read the Encryption header line. */
885     if (!read_header(fp, header) || 0 != strcmp(header, "Encryption"))
886         goto error;
887     if ((b = read_body(fp)) == NULL)
888         goto error;
889     sfree(b);                          /* we don't care */
890
891     /* Read the Comment header line. */
892     if (!read_header(fp, header) || 0 != strcmp(header, "Comment"))
893         goto error;
894     if ((comment = read_body(fp)) == NULL)
895         goto error;
896
897     if (commentptr)
898         *commentptr = comment;
899     else
900         sfree(comment);
901
902     /* Read the Public-Lines header line and the public blob. */
903     if (!read_header(fp, header) || 0 != strcmp(header, "Public-Lines"))
904         goto error;
905     if ((b = read_body(fp)) == NULL)
906         goto error;
907     i = atoi(b);
908     sfree(b);
909     if ((public_blob = read_blob(fp, i, &public_blob_len)) == NULL)
910         goto error;
911
912     fclose(fp);
913     if (pub_blob_len)
914         *pub_blob_len = public_blob_len;
915     if (algorithm)
916         *algorithm = alg->name;
917     return public_blob;
918
919     /*
920      * Error processing.
921      */
922   error:
923     if (fp)
924         fclose(fp);
925     if (public_blob)
926         sfree(public_blob);
927     if (errorstr)
928         *errorstr = error;
929     if (comment && commentptr) {
930         sfree(comment);
931         *commentptr = NULL;
932     }
933     return NULL;
934 }
935
936 int ssh2_userkey_encrypted(const Filename *filename, char **commentptr)
937 {
938     FILE *fp;
939     char header[40], *b, *comment;
940     int ret;
941
942     if (commentptr)
943         *commentptr = NULL;
944
945     fp = f_open(filename, "rb", FALSE);
946     if (!fp)
947         return 0;
948     if (!read_header(fp, header)
949         || (0 != strcmp(header, "PuTTY-User-Key-File-2") &&
950             0 != strcmp(header, "PuTTY-User-Key-File-1"))) {
951         fclose(fp);
952         return 0;
953     }
954     if ((b = read_body(fp)) == NULL) {
955         fclose(fp);
956         return 0;
957     }
958     sfree(b);                          /* we don't care about key type here */
959     /* Read the Encryption header line. */
960     if (!read_header(fp, header) || 0 != strcmp(header, "Encryption")) {
961         fclose(fp);
962         return 0;
963     }
964     if ((b = read_body(fp)) == NULL) {
965         fclose(fp);
966         return 0;
967     }
968
969     /* Read the Comment header line. */
970     if (!read_header(fp, header) || 0 != strcmp(header, "Comment")) {
971         fclose(fp);
972         sfree(b);
973         return 1;
974     }
975     if ((comment = read_body(fp)) == NULL) {
976         fclose(fp);
977         sfree(b);
978         return 1;
979     }
980
981     if (commentptr)
982         *commentptr = comment;
983     else
984         sfree(comment);
985
986     fclose(fp);
987     if (!strcmp(b, "aes256-cbc"))
988         ret = 1;
989     else
990         ret = 0;
991     sfree(b);
992     return ret;
993 }
994
995 int base64_lines(int datalen)
996 {
997     /* When encoding, we use 64 chars/line, which equals 48 real chars. */
998     return (datalen + 47) / 48;
999 }
1000
1001 void base64_encode(FILE * fp, unsigned char *data, int datalen, int cpl)
1002 {
1003     int linelen = 0;
1004     char out[4];
1005     int n, i;
1006
1007     while (datalen > 0) {
1008         n = (datalen < 3 ? datalen : 3);
1009         base64_encode_atom(data, n, out);
1010         data += n;
1011         datalen -= n;
1012         for (i = 0; i < 4; i++) {
1013             if (linelen >= cpl) {
1014                 linelen = 0;
1015                 fputc('\n', fp);
1016             }
1017             fputc(out[i], fp);
1018             linelen++;
1019         }
1020     }
1021     fputc('\n', fp);
1022 }
1023
1024 int ssh2_save_userkey(const Filename *filename, struct ssh2_userkey *key,
1025                       char *passphrase)
1026 {
1027     FILE *fp;
1028     unsigned char *pub_blob, *priv_blob, *priv_blob_encrypted;
1029     int pub_blob_len, priv_blob_len, priv_encrypted_len;
1030     int passlen;
1031     int cipherblk;
1032     int i;
1033     char *cipherstr;
1034     unsigned char priv_mac[20];
1035
1036     /*
1037      * Fetch the key component blobs.
1038      */
1039     pub_blob = key->alg->public_blob(key->data, &pub_blob_len);
1040     priv_blob = key->alg->private_blob(key->data, &priv_blob_len);
1041     if (!pub_blob || !priv_blob) {
1042         sfree(pub_blob);
1043         sfree(priv_blob);
1044         return 0;
1045     }
1046
1047     /*
1048      * Determine encryption details, and encrypt the private blob.
1049      */
1050     if (passphrase) {
1051         cipherstr = "aes256-cbc";
1052         cipherblk = 16;
1053     } else {
1054         cipherstr = "none";
1055         cipherblk = 1;
1056     }
1057     priv_encrypted_len = priv_blob_len + cipherblk - 1;
1058     priv_encrypted_len -= priv_encrypted_len % cipherblk;
1059     priv_blob_encrypted = snewn(priv_encrypted_len, unsigned char);
1060     memset(priv_blob_encrypted, 0, priv_encrypted_len);
1061     memcpy(priv_blob_encrypted, priv_blob, priv_blob_len);
1062     /* Create padding based on the SHA hash of the unpadded blob. This prevents
1063      * too easy a known-plaintext attack on the last block. */
1064     SHA_Simple(priv_blob, priv_blob_len, priv_mac);
1065     assert(priv_encrypted_len - priv_blob_len < 20);
1066     memcpy(priv_blob_encrypted + priv_blob_len, priv_mac,
1067            priv_encrypted_len - priv_blob_len);
1068
1069     /* Now create the MAC. */
1070     {
1071         unsigned char *macdata;
1072         int maclen;
1073         unsigned char *p;
1074         int namelen = strlen(key->alg->name);
1075         int enclen = strlen(cipherstr);
1076         int commlen = strlen(key->comment);
1077         SHA_State s;
1078         unsigned char mackey[20];
1079         char header[] = "putty-private-key-file-mac-key";
1080
1081         maclen = (4 + namelen +
1082                   4 + enclen +
1083                   4 + commlen +
1084                   4 + pub_blob_len +
1085                   4 + priv_encrypted_len);
1086         macdata = snewn(maclen, unsigned char);
1087         p = macdata;
1088 #define DO_STR(s,len) PUT_32BIT(p,(len));memcpy(p+4,(s),(len));p+=4+(len)
1089         DO_STR(key->alg->name, namelen);
1090         DO_STR(cipherstr, enclen);
1091         DO_STR(key->comment, commlen);
1092         DO_STR(pub_blob, pub_blob_len);
1093         DO_STR(priv_blob_encrypted, priv_encrypted_len);
1094
1095         SHA_Init(&s);
1096         SHA_Bytes(&s, header, sizeof(header)-1);
1097         if (passphrase)
1098             SHA_Bytes(&s, passphrase, strlen(passphrase));
1099         SHA_Final(&s, mackey);
1100         hmac_sha1_simple(mackey, 20, macdata, maclen, priv_mac);
1101         smemclr(macdata, maclen);
1102         sfree(macdata);
1103         smemclr(mackey, sizeof(mackey));
1104         smemclr(&s, sizeof(s));
1105     }
1106
1107     if (passphrase) {
1108         unsigned char key[40];
1109         SHA_State s;
1110
1111         passlen = strlen(passphrase);
1112
1113         SHA_Init(&s);
1114         SHA_Bytes(&s, "\0\0\0\0", 4);
1115         SHA_Bytes(&s, passphrase, passlen);
1116         SHA_Final(&s, key + 0);
1117         SHA_Init(&s);
1118         SHA_Bytes(&s, "\0\0\0\1", 4);
1119         SHA_Bytes(&s, passphrase, passlen);
1120         SHA_Final(&s, key + 20);
1121         aes256_encrypt_pubkey(key, priv_blob_encrypted,
1122                               priv_encrypted_len);
1123
1124         smemclr(key, sizeof(key));
1125         smemclr(&s, sizeof(s));
1126     }
1127
1128     fp = f_open(filename, "w", TRUE);
1129     if (!fp) {
1130         sfree(pub_blob);
1131         smemclr(priv_blob, priv_blob_len);
1132         sfree(priv_blob);
1133         smemclr(priv_blob_encrypted, priv_blob_len);
1134         sfree(priv_blob_encrypted);
1135         return 0;
1136     }
1137     fprintf(fp, "PuTTY-User-Key-File-2: %s\n", key->alg->name);
1138     fprintf(fp, "Encryption: %s\n", cipherstr);
1139     fprintf(fp, "Comment: %s\n", key->comment);
1140     fprintf(fp, "Public-Lines: %d\n", base64_lines(pub_blob_len));
1141     base64_encode(fp, pub_blob, pub_blob_len, 64);
1142     fprintf(fp, "Private-Lines: %d\n", base64_lines(priv_encrypted_len));
1143     base64_encode(fp, priv_blob_encrypted, priv_encrypted_len, 64);
1144     fprintf(fp, "Private-MAC: ");
1145     for (i = 0; i < 20; i++)
1146         fprintf(fp, "%02x", priv_mac[i]);
1147     fprintf(fp, "\n");
1148     fclose(fp);
1149
1150     sfree(pub_blob);
1151     smemclr(priv_blob, priv_blob_len);
1152     sfree(priv_blob);
1153     smemclr(priv_blob_encrypted, priv_blob_len);
1154     sfree(priv_blob_encrypted);
1155     return 1;
1156 }
1157
1158 /* ----------------------------------------------------------------------
1159  * A function to determine the type of a private key file. Returns
1160  * 0 on failure, 1 or 2 on success.
1161  */
1162 int key_type(const Filename *filename)
1163 {
1164     FILE *fp;
1165     char buf[32];
1166     const char putty2_sig[] = "PuTTY-User-Key-File-";
1167     const char sshcom_sig[] = "---- BEGIN SSH2 ENCRYPTED PRIVAT";
1168     const char openssh_new_sig[] = "-----BEGIN OPENSSH PRIVATE KEY";
1169     const char openssh_sig[] = "-----BEGIN ";
1170     int i;
1171
1172     fp = f_open(filename, "r", FALSE);
1173     if (!fp)
1174         return SSH_KEYTYPE_UNOPENABLE;
1175     i = fread(buf, 1, sizeof(buf), fp);
1176     fclose(fp);
1177     if (i < 0)
1178         return SSH_KEYTYPE_UNOPENABLE;
1179     if (i < 32)
1180         return SSH_KEYTYPE_UNKNOWN;
1181     if (!memcmp(buf, rsa_signature, sizeof(rsa_signature)-1))
1182         return SSH_KEYTYPE_SSH1;
1183     if (!memcmp(buf, putty2_sig, sizeof(putty2_sig)-1))
1184         return SSH_KEYTYPE_SSH2;
1185     if (!memcmp(buf, openssh_new_sig, sizeof(openssh_new_sig)-1))
1186         return SSH_KEYTYPE_OPENSSH_NEW;
1187     if (!memcmp(buf, openssh_sig, sizeof(openssh_sig)-1))
1188         return SSH_KEYTYPE_OPENSSH_PEM;
1189     if (!memcmp(buf, sshcom_sig, sizeof(sshcom_sig)-1))
1190         return SSH_KEYTYPE_SSHCOM;
1191     return SSH_KEYTYPE_UNKNOWN;        /* unrecognised or EOF */
1192 }
1193
1194 /*
1195  * Convert the type word to a string, for `wrong type' error
1196  * messages.
1197  */
1198 char *key_type_to_str(int type)
1199 {
1200     switch (type) {
1201       case SSH_KEYTYPE_UNOPENABLE: return "unable to open file"; break;
1202       case SSH_KEYTYPE_UNKNOWN: return "not a private key"; break;
1203       case SSH_KEYTYPE_SSH1: return "SSH-1 private key"; break;
1204       case SSH_KEYTYPE_SSH2: return "PuTTY SSH-2 private key"; break;
1205       case SSH_KEYTYPE_OPENSSH_PEM: return "OpenSSH SSH-2 private key (old PEM format)"; break;
1206       case SSH_KEYTYPE_OPENSSH_NEW: return "OpenSSH SSH-2 private key (new format)"; break;
1207       case SSH_KEYTYPE_SSHCOM: return "ssh.com SSH-2 private key"; break;
1208         /*
1209          * This function is called with a key type derived from
1210          * looking at an actual key file, so the output-only type
1211          * OPENSSH_AUTO should never get here, and is much an INTERNAL
1212          * ERROR as a code we don't even understand.
1213          */
1214       case SSH_KEYTYPE_OPENSSH_AUTO: return "INTERNAL ERROR (OPENSSH_AUTO)"; break;
1215       default: return "INTERNAL ERROR"; break;
1216     }
1217 }