chiark / gitweb /
rsa: Bring hash selection in-house
[secnet.git] / rsa.c
1 /*
2  * rsa.c: implementation of RSA with PKCS#1 padding
3  */
4 /*
5  * This file is Free Software.  It was originally written for secnet.
6  *
7  * Copyright 1995-2003 Stephen Early
8  * Copyright 2002-2014 Ian Jackson
9  * Copyright 2001      Simon Tatham
10  * Copyright 2013      Mark Wooding
11  *
12  * You may redistribute secnet as a whole and/or modify it under the
13  * terms of the GNU General Public License as published by the Free
14  * Software Foundation; either version 3, or (at your option) any
15  * later version.
16  *
17  * You may redistribute this file and/or modify it under the terms of
18  * the GNU General Public License as published by the Free Software
19  * Foundation; either version 2, or (at your option) any later
20  * version.
21  *
22  * This software is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this software; if not, see
29  * https://www.gnu.org/licenses/gpl.html.
30  */
31
32
33 #include <stdio.h>
34 #include <string.h>
35 #include <gmp.h>
36 #include "secnet.h"
37 #include "util.h"
38 #include "unaligned.h"
39
40 #define AUTHFILE_ID_STRING "SSH PRIVATE KEY FILE FORMAT 1.1\n"
41
42 #define mpp(s,n) do { char *p = mpz_get_str(NULL,16,n); printf("%s 0x%sL\n", s, p); free(p); } while (0)
43
44 struct rsacommon {
45     uint8_t *hashbuf;
46 };
47
48 #define FREE(b)                ({ free((b)); (b)=0; })
49
50 struct load_ctx {
51     void (*verror)(struct load_ctx *l, struct cloc loc,
52                    FILE *maybe_f,
53                    const char *message, va_list args);
54     bool_t (*postreadcheck)(struct load_ctx *l, FILE *f);
55     const char *what;
56     dict_t *deprdict; /* used only to look up hash */
57     struct cloc loc;
58     union {
59         struct {
60             struct log_if *log;
61         } tryload;
62     } u;
63 };
64
65 static void load_err(struct load_ctx *l,
66                      const struct cloc *maybe_loc, FILE *maybe_f,
67                      const char *fmt, ...)
68 {
69     va_list al;
70     va_start(al,fmt);
71     l->verror(l, maybe_loc ? *maybe_loc : l->loc, maybe_f,fmt,al);
72     va_end(al);
73 }
74
75 FORMAT(printf,4,0)
76 static void verror_tryload(struct load_ctx *l, struct cloc loc,
77                            FILE *maybe_f,
78                            const char *message, va_list args)
79 {
80     int class=M_ERR;
81     slilog_part(l->u.tryload.log,class,"%s: ",l->what);
82     vslilog(l->u.tryload.log,class,message,args);
83 }
84
85 static void verror_cfgfatal(struct load_ctx *l, struct cloc loc,
86                             FILE *maybe_f,
87                             const char *message, va_list args)
88 {
89     vcfgfatal_maybefile(maybe_f,l->loc,l->what,message,args,"");
90 }
91
92 struct rsapriv {
93     closure_t cl;
94     struct sigprivkey_if ops;
95     struct cloc loc;
96     struct rsacommon common;
97     MP_INT n;
98     MP_INT p, dp;
99     MP_INT q, dq;
100     MP_INT w;
101 };
102
103 #define RSAPUB_BNS(each)                        \
104     each(0,e,"public exponent")                 \
105     each(1,n,"modulus")
106
107 #define RSAPUB_LOADCORE_PASSBN(ix,en,what) \
108     en##s, en##_loc,
109
110 #define RSAPUB_INIT_ST_BN( ix,en,what) mpz_init (&st->en);
111 #define RSAPUB_CLEAR_ST_BN(ix,en,what) mpz_clear(&st->en);
112
113 struct rsapub {
114     closure_t cl;
115     struct sigpubkey_if ops;
116     struct cloc loc;
117     struct rsacommon common;
118     MP_INT e;
119     MP_INT n;
120 };
121 /* Sign data. NB data must be smaller than modulus */
122
123 #define RSA_MAX_MODBYTES 2048
124 /* The largest modulus I've seen is 15360 bits, which works out at 1920
125  * bytes.  Using keys this big is quite implausible, but it doesn't cost us
126  * much to support them.
127  */
128
129 static const char *hexchars="0123456789abcdef";
130
131 static void rsa_sethash(struct load_ctx *l,
132                         struct rsacommon *c,
133                         const struct hash_if **in_ops)
134 {
135     struct hash_if *hash=0;
136     if (l->deprdict)
137         hash=find_cl_if(l->deprdict,"hash",CL_HASH,False,"site",l->loc);
138     if (!hash)
139         hash=sha1_hash_if;
140     c->hashbuf=safe_malloc(hash->hlen, "generate_msg");
141     *in_ops=hash;
142 }
143
144 static void rsa_pub_sethash(void *sst, struct hash_if *hash) { }
145 static void rsa_priv_sethash(void *sst, struct hash_if *hash) { }
146
147 static void rsacommon_dispose(struct rsacommon *c)
148 {
149     free(c->hashbuf);
150 }
151
152 static void emsa_pkcs1(MP_INT *n, MP_INT *m,
153                        const uint8_t *data, int32_t datalen)
154 {
155     char buff[2*RSA_MAX_MODBYTES + 1];
156     int msize, i;
157
158     /* RSA PKCS#1 v1.5 signature padding:
159      *
160      * <------------ msize hex digits ---------->
161      *
162      * 00 01 ff ff .... ff ff 00 vv vv vv .... vv
163      *
164      *                           <--- datalen -->
165      *                                 bytes
166      *                         = datalen*2 hex digits
167      *
168      * NB that according to PKCS#1 v1.5 we're supposed to include a
169      * hash function OID in the data.  We don't do that (because we
170      * don't have the hash function OID to hand here), thus violating
171      * the spec in a way that affects interop but not security.
172      *
173      * -iwj 17.9.2002
174      */
175
176     msize=mpz_sizeinbase(n, 16);
177
178     if (datalen*2+6>=msize) {
179         fatal("rsa: message too big");
180     }
181
182     strcpy(buff,"0001");
183
184     for (i=0; i<datalen; i++) {
185         buff[msize+(-datalen+i)*2]=hexchars[(data[i]&0xf0)>>4];
186         buff[msize+(-datalen+i)*2+1]=hexchars[data[i]&0xf];
187     }
188     
189     buff[msize-datalen*2-2]= '0';
190     buff[msize-datalen*2-1]= '0';
191  
192     for (i=4; i<msize-datalen*2-2; i++)
193        buff[i]='f';
194
195     buff[msize]=0;
196
197     mpz_set_str(m, buff, 16);
198 }
199
200 static bool_t rsa_sign(void *sst, uint8_t *data, int32_t datalen,
201                        struct buffer_if *msg)
202 {
203     struct rsapriv *st=sst;
204     MP_INT a, b, u, v, tmp, tmp2;
205     string_t signature = 0;
206     bool_t ok;
207
208     mpz_init(&a);
209     mpz_init(&b);
210
211     hash_hash(st->ops.hash,data,datalen,st->common.hashbuf);
212     /* Construct the message representative. */
213     emsa_pkcs1(&st->n, &a, st->common.hashbuf, st->ops.hash->hlen);
214
215     /*
216      * Produce an RSA signature (a^d mod n) using the Chinese
217      * Remainder Theorem. We compute:
218      * 
219      *   u = a^dp mod p    (== a^d mod p, since dp == d mod (p-1))
220      *   v = a^dq mod q    (== a^d mod q, similarly)
221      * 
222      * We also know w == iqmp * q, which has the property that w ==
223      * 0 mod q and w == 1 mod p. So (1-w) has the reverse property
224      * (congruent to 0 mod p and to 1 mod q). Hence we now compute
225      * 
226      *   b = w * u + (1-w) * v
227      *     = w * (u-v) + v
228      * 
229      * so that b is congruent to a^d both mod p and mod q. Hence b,
230      * reduced mod n, is the required signature.
231      */
232     mpz_init(&tmp);
233     mpz_init(&tmp2);
234     mpz_init(&u);
235     mpz_init(&v);
236
237     mpz_powm_sec(&u, &a, &st->dp, &st->p);
238     mpz_powm_sec(&v, &a, &st->dq, &st->q);
239     mpz_sub(&tmp, &u, &v);
240     mpz_mul(&tmp2, &tmp, &st->w);
241     mpz_add(&tmp, &tmp2, &v);
242     mpz_mod(&b, &tmp, &st->n);
243
244     mpz_clear(&tmp);
245     mpz_clear(&tmp2);
246     mpz_clear(&u);
247     mpz_clear(&v);
248
249     signature=write_mpstring(&b);
250
251     uint8_t *op = buf_append(msg,2);
252     if (!op) { ok=False; goto out; }
253     size_t l = strlen(signature);
254     assert(l < 65536);
255     put_uint16(op, l);
256     op = buf_append(msg,l);
257     if (!op) { ok=False; goto out; }
258     memcpy(op, signature, l);
259
260     ok = True;
261
262  out:
263     free(signature);
264     mpz_clear(&b);
265     mpz_clear(&a);
266     return ok;
267 }
268
269 static bool_t rsa_sig_unpick(void *sst, struct buffer_if *msg,
270                              struct alg_msg_data *sig)
271 {
272     uint8_t *lp = buf_unprepend(msg, 2);
273     if (!lp) return False;
274     sig->len = get_uint16(lp);
275     sig->start = buf_unprepend(msg, sig->len);
276     if (!sig->start) return False;
277
278     /* In `rsa_sig_check' below, we assume that we can write a nul
279      * terminator following the signature.  Make sure there's enough space.
280      */
281     if (msg->start >= msg->base + msg->alloclen)
282         return False;
283
284     return True;
285 }
286
287 static sig_checksig_fn rsa_sig_check;
288 static bool_t rsa_sig_check(void *sst, uint8_t *data, int32_t datalen,
289                             const struct alg_msg_data *sig)
290 {
291     struct rsapub *st=sst;
292     MP_INT a, b, c;
293     bool_t ok;
294
295     mpz_init(&a);
296     mpz_init(&b);
297     mpz_init(&c);
298
299     hash_hash(st->ops.hash,data,datalen,st->common.hashbuf);
300     emsa_pkcs1(&st->n, &a, st->common.hashbuf, st->ops.hash->hlen);
301
302     /* Terminate signature with a '0' - already checked that this will fit */
303     int save = sig->start[sig->len];
304     sig->start[sig->len] = 0;
305     mpz_set_str(&b, sig->start, 16);
306     sig->start[sig->len] = save;
307
308     mpz_powm(&c, &b, &st->e, &st->n);
309
310     ok=(mpz_cmp(&a, &c)==0);
311
312     mpz_clear(&c);
313     mpz_clear(&b);
314     mpz_clear(&a);
315
316     return ok;
317 }
318
319 static void rsapub_dispose(void *sst) {
320     struct rsapub *st=sst;
321
322     if (!st) return;
323     RSAPUB_BNS(RSAPUB_CLEAR_ST_BN)
324     rsacommon_dispose(&st->common);
325     free(st);
326 }
327
328 #define RSAPUB_LOADCORE_DEFBN(ix,en,what) \
329     const char *en##s, struct cloc en##_loc,
330
331 #define LDPUBFATAL(lc,...) ({                   \
332         load_err(l,(lc),0,__VA_ARGS__); \
333         goto error_out;                         \
334     })
335
336 static struct rsapub *rsa_loadpub_core(RSAPUB_BNS(RSAPUB_LOADCORE_DEFBN)
337                                        struct load_ctx *l)
338 {
339     struct rsapub *st;
340
341     NEW(st);
342     st->cl.description="rsapub";
343     st->cl.type=CL_SIGPUBKEY;
344     st->cl.apply=NULL;
345     st->cl.interface=&st->ops;
346     st->ops.st=st;
347     st->ops.sethash=rsa_pub_sethash;
348     st->common.hashbuf=NULL;
349     st->ops.unpick=rsa_sig_unpick;
350     st->ops.check=rsa_sig_check;
351     st->ops.hash=0;
352     st->ops.dispose=rsapub_dispose;
353     st->loc=l->loc;
354     RSAPUB_BNS(RSAPUB_INIT_ST_BN)
355
356 #define RSAPUB_LOADCORE_GETBN(ix,en,what)                               \
357     if (mpz_init_set_str(&st->en,en##s,10)!=0) {                        \
358         LDPUBFATAL(&en##_loc, what " \"%s\" is not a "                  \
359                  "decimal number string",en##s);                        \
360     }                                                                   \
361     if (mpz_sizeinbase(&st->en, 256) > RSA_MAX_MODBYTES) {              \
362         LDPUBFATAL(&en##_loc, "implausibly large " what);               \
363     }
364
365     RSAPUB_BNS(RSAPUB_LOADCORE_GETBN)
366
367     rsa_sethash(l,&st->common,&st->ops.hash);
368
369     return st;
370
371  error_out:
372     rsapub_dispose(st);
373     return 0;
374 }
375
376 static list_t *rsapub_apply(closure_t *self, struct cloc loc, dict_t *context,
377                             list_t *args)
378 {
379     struct load_ctx l[1];
380     l->verror=verror_cfgfatal;
381     l->postreadcheck=0;
382     l->what="rsa-public";
383     l->deprdict=context;
384     l->loc=loc;
385
386 #define RSAPUB_APPLY_GETBN(ix,en,what)                          \
387     item_t *en##i;                                              \
388     const char *en##s;                                          \
389     en##i=list_elem(args,ix);                                   \
390     if (!en##i)                                                 \
391         cfgfatal(loc,"rsa-public",                              \
392                  "you must provide an encryption key\n");       \
393     struct cloc en##_loc=en##i->loc;                            \
394     if (en##i->type!=t_string)                                  \
395         cfgfatal(en##_loc,"rsa-public",                         \
396                  "first argument must be a string\n");          \
397     en##s=en##i->data.string;
398
399     RSAPUB_BNS(RSAPUB_APPLY_GETBN)
400
401     struct rsapub *st=rsa_loadpub_core(RSAPUB_BNS(RSAPUB_LOADCORE_PASSBN)
402                                        l);
403
404     return new_closure(&st->cl);
405 }
406
407 bool_t rsa1_loadpub(const struct sigscheme_info *algo,
408                     struct buffer_if *pubkeydata,
409                     struct sigpubkey_if **sigpub_r,
410                     closure_t **closure_r,
411                     struct log_if *log, struct cloc loc)
412 {
413     struct rsapub *st=0;
414
415     struct load_ctx l[1];
416     l->verror=verror_tryload;
417     l->postreadcheck=0;
418     l->what="rsa1_loadpub";
419     l->deprdict=0;
420     l->loc=loc;
421     l->u.tryload.log=log;
422
423     char *nul=buf_append(pubkeydata,1);
424     if (!nul) LDPUBFATAL(0,"rsa1 public key data too long for extra nul");
425     *nul=0;
426
427     const char *delim=" \t\n";
428     char *saveptr;
429     /*unused*/ strtok_r(pubkeydata->start,delim,&saveptr);
430
431 #define RSAPUB_TRYLOAD_GETBN(ix,en,what)                                \
432     struct cloc en##_loc=loc;                                           \
433     const char *en##s=strtok_r(0,delim,&saveptr);                       \
434     if (!en##s) LDPUBFATAL(0,"end of pubkey data looking for " what);
435
436     RSAPUB_BNS(RSAPUB_TRYLOAD_GETBN);
437
438     st=rsa_loadpub_core(RSAPUB_BNS(RSAPUB_LOADCORE_PASSBN) l);
439     if (!st) goto error_out;
440
441     *sigpub_r=&st->ops;
442     *closure_r=&st->cl;
443     return True;
444
445  error_out:
446     rsapub_dispose(st);
447     return False;
448 }
449
450 #define LDFATAL(...)      ({ load_err(l,0,0,__VA_ARGS__); goto error_out; })
451 #define LDFATAL_FILE(...) ({ load_err(l,0,f,__VA_ARGS__); goto error_out; })
452 #define KEYFILE_GET(is)   ({                                    \
453         uint##is##_t keyfile_get_tmp=keyfile_get_##is(l,f);     \
454         if (!l->postreadcheck(l,f)) goto error_out;             \
455         keyfile_get_tmp;                                        \
456     })
457
458 static uint32_t keyfile_get_32(struct load_ctx *l, FILE *f)
459 {
460     uint32_t r;
461     r=fgetc(f)<<24;
462     r|=fgetc(f)<<16;
463     r|=fgetc(f)<<8;
464     r|=fgetc(f);
465     return r;
466 }
467
468 static uint16_t keyfile_get_16(struct load_ctx *l, FILE *f)
469 {
470     uint16_t r;
471     r=fgetc(f)<<8;
472     r|=fgetc(f);
473     return r;
474 }
475
476 static void rsapriv_dispose(void *sst)
477 {
478     struct rsapriv *st=sst;
479     mpz_clear(&st->n);
480     mpz_clear(&st->p); mpz_clear(&st->dp);
481     mpz_clear(&st->q); mpz_clear(&st->dq);
482     mpz_clear(&st->w);
483     rsacommon_dispose(&st->common);
484     free(st);
485 }
486
487 static struct rsapriv *rsa_loadpriv_core(struct load_ctx *l,
488                                          FILE *f, struct cloc loc,
489                                          bool_t do_validity_check)
490 {
491     struct rsapriv *st=0;
492     long length;
493     uint8_t *b=0, *c=0;
494     int cipher_type;
495     MP_INT e,d,iqmp,tmp,tmp2,tmp3;
496     bool_t valid;
497
498     mpz_init(&e);
499     mpz_init(&d);
500     mpz_init(&iqmp);
501     mpz_init(&tmp);
502     mpz_init(&tmp2);
503     mpz_init(&tmp3);
504
505     NEW(st);
506     st->cl.description="rsapriv";
507     st->cl.type=CL_SIGPRIVKEY;
508     st->cl.apply=NULL;
509     st->cl.interface=&st->ops;
510     st->ops.st=st;
511     st->ops.sethash=rsa_priv_sethash;
512     st->common.hashbuf=NULL;
513     st->ops.sign=rsa_sign;
514     st->ops.hash=0;
515     st->ops.dispose=rsapriv_dispose;
516     st->loc=loc;
517     mpz_init(&st->n);
518     mpz_init(&st->q);
519     mpz_init(&st->p);
520     mpz_init(&st->dp);
521     mpz_init(&st->dq);
522     mpz_init(&st->w);
523
524     if (!f) {
525         assert(just_check_config);
526         goto assume_valid;
527     }
528
529     /* Check that the ID string is correct */
530     length=strlen(AUTHFILE_ID_STRING)+1;
531     b=safe_malloc(length,"rsapriv_apply");
532     if (fread(b,length,1,f)!=1 || memcmp(b,AUTHFILE_ID_STRING,length)!=0) {
533         LDFATAL_FILE("failed to read magic ID"
534                      " string from SSH1 private keyfile\n");
535     }
536     FREE(b);
537
538     cipher_type=fgetc(f);
539     KEYFILE_GET(32); /* "Reserved data" */
540     if (cipher_type != 0) {
541         LDFATAL("we don't support encrypted keyfiles\n");
542     }
543
544     /* Read the public key */
545     KEYFILE_GET(32); /* Not sure what this is */
546     length=(KEYFILE_GET(16)+7)/8;
547     if (length>RSA_MAX_MODBYTES) {
548         LDFATAL("implausible length %ld for modulus\n",
549                  length);
550     }
551     b=safe_malloc(length,"rsapriv_apply");
552     if (fread(b,length,1,f) != 1) {
553         LDFATAL_FILE("error reading modulus\n");
554     }
555     read_mpbin(&st->n,b,length);
556     FREE(b);
557     length=(KEYFILE_GET(16)+7)/8;
558     if (length>RSA_MAX_MODBYTES) {
559         LDFATAL("implausible length %ld for e\n",length);
560     }
561     b=safe_malloc(length,"rsapriv_apply");
562     if (fread(b,length,1,f)!=1) {
563         LDFATAL_FILE("error reading e\n");
564     }
565     read_mpbin(&e,b,length);
566     FREE(b);
567     
568     length=KEYFILE_GET(32);
569     if (length>1024) {
570         LDFATAL("implausibly long (%ld) key comment\n",
571                  length);
572     }
573     c=safe_malloc(length+1,"rsapriv_apply");
574     if (fread(c,length,1,f)!=1) {
575         LDFATAL_FILE("error reading key comment\n");
576     }
577     c[length]=0;
578
579     /* Check that the next two pairs of characters are identical - the
580        keyfile is not encrypted, so they should be */
581
582     if (KEYFILE_GET(16) != KEYFILE_GET(16)) {
583         LDFATAL("corrupt keyfile\n");
584     }
585
586     /* Read d */
587     length=(KEYFILE_GET(16)+7)/8;
588     if (length>RSA_MAX_MODBYTES) {
589         LDFATAL("implausibly long (%ld) decryption key\n",
590                  length);
591     }
592     b=safe_malloc(length,"rsapriv_apply");
593     if (fread(b,length,1,f)!=1) {
594         LDFATAL_FILE("error reading decryption key\n");
595     }
596     read_mpbin(&d,b,length);
597     FREE(b);
598     /* Read iqmp (inverse of q mod p) */
599     length=(KEYFILE_GET(16)+7)/8;
600     if (length>RSA_MAX_MODBYTES) {
601         LDFATAL("implausibly long (%ld)"
602                  " iqmp auxiliary value\n", length);
603     }
604     b=safe_malloc(length,"rsapriv_apply");
605     if (fread(b,length,1,f)!=1) {
606         LDFATAL_FILE("error reading decryption key\n");
607     }
608     read_mpbin(&iqmp,b,length);
609     FREE(b);
610     /* Read q (the smaller of the two primes) */
611     length=(KEYFILE_GET(16)+7)/8;
612     if (length>RSA_MAX_MODBYTES) {
613         LDFATAL("implausibly long (%ld) q value\n",
614                  length);
615     }
616     b=safe_malloc(length,"rsapriv_apply");
617     if (fread(b,length,1,f)!=1) {
618         LDFATAL_FILE("error reading q value\n");
619     }
620     read_mpbin(&st->q,b,length);
621     FREE(b);
622     /* Read p (the larger of the two primes) */
623     length=(KEYFILE_GET(16)+7)/8;
624     if (length>RSA_MAX_MODBYTES) {
625         LDFATAL("implausibly long (%ld) p value\n",
626                  length);
627     }
628     b=safe_malloc(length,"rsapriv_apply");
629     if (fread(b,length,1,f)!=1) {
630         LDFATAL_FILE("error reading p value\n");
631     }
632     read_mpbin(&st->p,b,length);
633     FREE(b);
634     
635     if (ferror(f)) {
636         fatal_perror("rsa-private (%s:%d): ferror",loc.file,loc.line);
637     }
638
639     rsa_sethash(l,&st->common,&st->ops.hash);
640
641     /*
642      * Now verify the validity of the key, and set up the auxiliary
643      * values for fast CRT signing.
644      */
645     valid=False;
646     if (do_validity_check) {
647         /* Verify that p*q is equal to n. */
648         mpz_mul(&tmp, &st->p, &st->q);
649         if (mpz_cmp(&tmp, &st->n) != 0)
650             goto done_checks;
651
652         /*
653          * Verify that d*e is congruent to 1 mod (p-1), and mod
654          * (q-1). This is equivalent to it being congruent to 1 mod
655          * lambda(n) = lcm(p-1,q-1).  The usual `textbook' condition,
656          * that d e == 1 (mod (p-1)(q-1)) is sufficient, but not
657          * actually necessary.
658          */
659         mpz_mul(&tmp, &d, &e);
660         mpz_sub_ui(&tmp2, &st->p, 1);
661         mpz_mod(&tmp3, &tmp, &tmp2);
662         if (mpz_cmp_si(&tmp3, 1) != 0)
663             goto done_checks;
664         mpz_sub_ui(&tmp2, &st->q, 1);
665         mpz_mod(&tmp3, &tmp, &tmp2);
666         if (mpz_cmp_si(&tmp3, 1) != 0)
667             goto done_checks;
668
669         /* Verify that q*iqmp is congruent to 1 mod p. */
670         mpz_mul(&tmp, &st->q, &iqmp);
671         mpz_mod(&tmp2, &tmp, &st->p);
672         if (mpz_cmp_si(&tmp2, 1) != 0)
673             goto done_checks;
674     }
675     /* Now we know the key is valid (or we don't care). */
676     valid = True;
677     
678     /*
679      * Now we compute auxiliary values dp, dq and w to allow us
680      * to use the CRT optimisation when signing.
681      * 
682      *   dp == d mod (p-1)      so that a^dp == a^d mod p, for all a
683      *   dq == d mod (q-1)      similarly mod q
684      *   w == iqmp * q          so that w == 0 mod q, and w == 1 mod p
685      */
686     mpz_sub_ui(&tmp, &st->p, 1);
687     mpz_mod(&st->dp, &d, &tmp);
688     mpz_sub_ui(&tmp, &st->q, 1);
689     mpz_mod(&st->dq, &d, &tmp);
690     mpz_mul(&st->w, &iqmp, &st->q);
691     
692 done_checks:
693     if (!valid) {
694         LDFATAL("file does not contain a "
695                  "valid RSA key!\n");
696     }
697
698 assume_valid:
699 out:
700     mpz_clear(&tmp);
701     mpz_clear(&tmp2);
702     mpz_clear(&tmp3);
703
704     FREE(b);
705     FREE(c);
706     mpz_clear(&e);
707     mpz_clear(&d);
708     mpz_clear(&iqmp);
709
710     return st;
711
712 error_out:
713     if (st) rsapriv_dispose(st);
714     st=0;
715     goto out;
716 }
717
718 static bool_t postreadcheck_tryload(struct load_ctx *l, FILE *f)
719 {
720     assert(!ferror(f));
721     if (feof(f)) { load_err(l,0,0,"eof mid-integer"); return False; }
722     return True;
723 }
724
725 bool_t rsa1_loadpriv(const struct sigscheme_info *algo,
726                      struct buffer_if *privkeydata,
727                      struct sigprivkey_if **sigpriv_r,
728                      closure_t **closure_r,
729                      struct log_if *log, struct cloc loc)
730 {
731     FILE *f=0;
732     struct rsapriv *st=0;
733
734     f=fmemopen(privkeydata->start,privkeydata->size,"r");
735     if (!f) {
736         slilog(log,M_ERR,"failed to fmemopen private key file\n");
737         goto error_out;
738     }
739
740     struct load_ctx l[1];
741     l->what="rsa1priv load";
742     l->verror=verror_tryload;
743     l->postreadcheck=postreadcheck_tryload;
744     l->deprdict=0;
745     l->loc=loc;
746     l->u.tryload.log=log;
747
748     st=rsa_loadpriv_core(l,f,loc,False);
749     if (!st) goto error_out;
750     goto out;
751
752  error_out:
753     FREE(st);
754  out:
755     if (f) fclose(f);
756     if (!st) return False;
757     *sigpriv_r=&st->ops;
758     *closure_r=&st->cl;
759     return True;
760 }
761
762 static bool_t postreadcheck_apply(struct load_ctx *l, FILE *f)
763 {
764     cfgfile_postreadcheck(l->loc,f);
765     return True;
766 }
767
768 static list_t *rsapriv_apply(closure_t *self, struct cloc loc, dict_t *context,
769                              list_t *args)
770 {
771     struct rsapriv *st;
772     item_t *i;
773     cstring_t filename;
774     FILE *f;
775     struct load_ctx l[1];
776
777     l->what="rsa-private";
778     l->verror=verror_cfgfatal;
779     l->postreadcheck=postreadcheck_apply;
780     l->deprdict=context;
781     l->loc=loc;
782
783     /* Argument is filename pointing to SSH1 private key file */
784     i=list_elem(args,0);
785     if (i) {
786         if (i->type!=t_string) {
787             cfgfatal(i->loc,"rsa-private","first argument must be a string\n");
788         }
789         filename=i->data.string;
790     } else {
791         filename=NULL; /* Make compiler happy */
792         cfgfatal(i->loc,"rsa-private","you must provide a filename\n");
793     }
794
795     f=fopen(filename,"rb");
796     if (!f) {
797         if (just_check_config) {
798             Message(M_WARNING,"rsa-private (%s:%d): cannot open keyfile "
799                     "\"%s\"; assuming it's valid while we check the "
800                     "rest of the configuration\n",loc.file,loc.line,filename);
801         } else {
802             fatal_perror("rsa-private (%s:%d): cannot open file \"%s\"",
803                          loc.file,loc.line,filename);
804         }
805     }
806
807     bool_t do_validity_check=True;
808     i=list_elem(args,1);
809     if (i && i->type==t_bool && i->data.bool==False) {
810         Message(M_INFO,"rsa-private (%s:%d): skipping RSA key validity "
811                 "check\n",loc.file,loc.line);
812         do_validity_check=False;
813     }
814
815     st=rsa_loadpriv_core(l,f,loc,do_validity_check);
816     fclose(f);
817     return new_closure(&st->cl);
818 }
819
820 void rsa_module(dict_t *dict)
821 {
822     add_closure(dict,"rsa-private",rsapriv_apply);
823     add_closure(dict,"rsa-public",rsapub_apply);
824 }