chiark / gitweb /
rsa: rsapub_dispose: Make passing 0 OK
[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, bool_t unsup,
53                    const char *message, va_list args);
54     bool_t (*postreadcheck)(struct load_ctx *l, FILE *f);
55     const char *what;
56     struct cloc loc;
57     union {
58         struct {
59             struct log_if *log;
60         } tryload;
61     } u;
62 };
63
64 static void load_err(struct load_ctx *l,
65                      const struct cloc *maybe_loc, FILE *maybe_f,
66                      bool_t unsup, const char *fmt, ...)
67 {
68     va_list al;
69     va_start(al,fmt);
70     l->verror(l, maybe_loc ? *maybe_loc : l->loc, maybe_f,unsup,fmt,al);
71     va_end(al);
72 }
73
74 FORMAT(printf,5,0)
75 static void verror_tryload(struct load_ctx *l, struct cloc loc,
76                            FILE *maybe_f, bool_t unsup,
77                            const char *message, va_list args)
78 {
79     int class=unsup ? M_DEBUG : M_ERR;
80     slilog_part(l->u.tryload.log,class,"%s: ",l->what);
81     vslilog(l->u.tryload.log,class,message,args);
82 }
83
84 static void verror_cfgfatal(struct load_ctx *l, struct cloc loc,
85                             FILE *maybe_f, bool_t unsup,
86                             const char *message, va_list args)
87 {
88     vcfgfatal_maybefile(maybe_f,l->loc,l->what,message,args);
89 }
90
91 struct rsapriv {
92     closure_t cl;
93     struct sigprivkey_if ops;
94     struct cloc loc;
95     struct rsacommon common;
96     MP_INT n;
97     MP_INT p, dp;
98     MP_INT q, dq;
99     MP_INT w;
100 };
101
102 #define RSAPUB_BNS(each)                        \
103     each(0,e,"public exponent")                 \
104     each(1,n,"modulus")
105
106 #define RSAPUB_LOADCORE_PASSBN(ix,en,what) \
107     en##s, en##_loc,
108
109 #define RSAPUB_INIT_ST_BN( ix,en,what) mpz_init (&st->en);
110 #define RSAPUB_CLEAR_ST_BN(ix,en,what) mpz_clear(&st->en);
111
112 struct rsapub {
113     closure_t cl;
114     struct sigpubkey_if ops;
115     struct cloc loc;
116     struct rsacommon common;
117     MP_INT e;
118     MP_INT n;
119 };
120 /* Sign data. NB data must be smaller than modulus */
121
122 #define RSA_MAX_MODBYTES 2048
123 /* The largest modulus I've seen is 15360 bits, which works out at 1920
124  * bytes.  Using keys this big is quite implausible, but it doesn't cost us
125  * much to support them.
126  */
127
128 static const char *hexchars="0123456789abcdef";
129
130 static void rsa_sethash(struct rsacommon *c, struct hash_if *hash,
131                         const struct hash_if **in_ops)
132 {
133     free(c->hashbuf);
134     c->hashbuf=safe_malloc(hash->hlen, "generate_msg");
135     *in_ops=hash;
136 }
137 static void rsa_pub_sethash(void *sst, struct hash_if *hash)
138 {
139     struct rsapub *st=sst;
140     rsa_sethash(&st->common, hash, &st->ops.hash);
141 }
142 static void rsa_priv_sethash(void *sst, struct hash_if *hash)
143 {
144     struct rsapriv *st=sst;
145     rsa_sethash(&st->common, hash, &st->ops.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     mpz_clear(&st->e);
324     mpz_clear(&st->n);
325     rsacommon_dispose(&st->common);
326     free(st);
327 }
328
329 #define RSAPUB_LOADCORE_DEFBN(ix,en,what) \
330     const char *en##s, struct cloc en##_loc,
331
332 #define LDPUBFATAL(enloc,...) \
333     cfgfatal(enloc, "rsa-public", __VA_ARGS__)
334
335 static struct rsapub *rsa_loadpub_core(RSAPUB_BNS(RSAPUB_LOADCORE_DEFBN)
336                                        struct cloc overall_loc)
337 {
338     struct rsapub *st;
339
340     NEW(st);
341     st->cl.description="rsapub";
342     st->cl.type=CL_SIGPUBKEY;
343     st->cl.apply=NULL;
344     st->cl.interface=&st->ops;
345     st->ops.st=st;
346     st->ops.sethash=rsa_pub_sethash;
347     st->common.hashbuf=NULL;
348     st->ops.unpick=rsa_sig_unpick;
349     st->ops.check=rsa_sig_check;
350     st->ops.hash=0;
351     st->ops.dispose=rsapub_dispose;
352     st->loc=overall_loc;
353     RSAPUB_BNS(RSAPUB_INIT_ST_BN)
354
355 #define RSAPUB_LOADCORE_GETBN(ix,en,what)                               \
356     if (mpz_init_set_str(&st->en,en##s,10)!=0) {                        \
357         LDPUBFATAL(en##_loc, what " \"%s\" is not a "                   \
358                  "decimal number string\n",en##s);                      \
359     }                                                                   \
360     if (mpz_sizeinbase(&st->en, 256) > RSA_MAX_MODBYTES) {              \
361         LDPUBFATAL(en##_loc, "implausibly large " what "\n");           \
362     }
363
364     RSAPUB_BNS(RSAPUB_LOADCORE_GETBN)
365
366     return st;
367
368  error_out:
369     rsapub_dispose(st);
370     return 0;
371 }
372
373 static list_t *rsapub_apply(closure_t *self, struct cloc loc, dict_t *context,
374                             list_t *args)
375 {
376
377 #define RSAPUB_APPLY_GETBN(ix,en,what)                          \
378     item_t *en##i;                                              \
379     const char *en##s;                                          \
380     en##i=list_elem(args,ix);                                   \
381     if (!en##i)                                                 \
382         cfgfatal(loc,"rsa-public",                              \
383                  "you must provide an encryption key\n");       \
384     struct cloc en##_loc=en##i->loc;                            \
385     if (en##i->type!=t_string)                                  \
386         cfgfatal(en##_loc,"rsa-public",                         \
387                  "first argument must be a string\n");          \
388     en##s=en##i->data.string;
389
390     RSAPUB_BNS(RSAPUB_APPLY_GETBN)
391
392     struct rsapub *st=rsa_loadpub_core(RSAPUB_BNS(RSAPUB_LOADCORE_PASSBN)
393                                        loc);
394
395     return new_closure(&st->cl);
396 }
397
398 #define LDFATAL(...)      ({ load_err(l,0,0,0,__VA_ARGS__); goto error_out; })
399 #define LDUNSUP(...)      ({ load_err(l,0,0,1,__VA_ARGS__); goto error_out; })
400 #define LDFATAL_FILE(...) ({ load_err(l,0,f,0,__VA_ARGS__); goto error_out; })
401 #define LDUNSUP_FILE(...) ({ load_err(l,0,f,1,__VA_ARGS__); goto error_out; })
402 #define KEYFILE_GET(is)   ({                                    \
403         uint##is##_t keyfile_get_tmp=keyfile_get_##is(l,f);     \
404         if (!l->postreadcheck(l,f)) goto error_out;             \
405         keyfile_get_tmp;                                        \
406     })
407
408 static uint32_t keyfile_get_32(struct load_ctx *l, FILE *f)
409 {
410     uint32_t r;
411     r=fgetc(f)<<24;
412     r|=fgetc(f)<<16;
413     r|=fgetc(f)<<8;
414     r|=fgetc(f);
415     return r;
416 }
417
418 static uint16_t keyfile_get_16(struct load_ctx *l, FILE *f)
419 {
420     uint16_t r;
421     r=fgetc(f)<<8;
422     r|=fgetc(f);
423     return r;
424 }
425
426 static void rsapriv_dispose(void *sst)
427 {
428     struct rsapriv *st=sst;
429     mpz_clear(&st->n);
430     mpz_clear(&st->p); mpz_clear(&st->dp);
431     mpz_clear(&st->q); mpz_clear(&st->dq);
432     mpz_clear(&st->w);
433     rsacommon_dispose(&st->common);
434     free(st);
435 }
436
437 static struct rsapriv *rsa_loadpriv_core(struct load_ctx *l,
438                                          FILE *f, struct cloc loc,
439                                          bool_t do_validity_check)
440 {
441     struct rsapriv *st=0;
442     long length;
443     uint8_t *b=0, *c=0;
444     int cipher_type;
445     MP_INT e,d,iqmp,tmp,tmp2,tmp3;
446     bool_t valid;
447
448     mpz_init(&e);
449     mpz_init(&d);
450     mpz_init(&iqmp);
451     mpz_init(&tmp);
452     mpz_init(&tmp2);
453     mpz_init(&tmp3);
454
455     NEW(st);
456     st->cl.description="rsapriv";
457     st->cl.type=CL_SIGPRIVKEY;
458     st->cl.apply=NULL;
459     st->cl.interface=&st->ops;
460     st->ops.st=st;
461     st->ops.sethash=rsa_priv_sethash;
462     st->common.hashbuf=NULL;
463     st->ops.sign=rsa_sign;
464     st->ops.hash=0;
465     st->ops.dispose=rsapriv_dispose;
466     st->loc=loc;
467     mpz_init(&st->n);
468     mpz_init(&st->q);
469     mpz_init(&st->p);
470     mpz_init(&st->dp);
471     mpz_init(&st->dq);
472     mpz_init(&st->w);
473
474     if (!f) {
475         assert(just_check_config);
476         goto assume_valid;
477     }
478
479     /* Check that the ID string is correct */
480     length=strlen(AUTHFILE_ID_STRING)+1;
481     b=safe_malloc(length,"rsapriv_apply");
482     if (fread(b,length,1,f)!=1 || memcmp(b,AUTHFILE_ID_STRING,length)!=0) {
483         LDUNSUP_FILE("failed to read magic ID"
484                      " string from SSH1 private keyfile\n");
485     }
486     FREE(b);
487
488     cipher_type=fgetc(f);
489     KEYFILE_GET(32); /* "Reserved data" */
490     if (cipher_type != 0) {
491         LDUNSUP("we don't support encrypted keyfiles\n");
492     }
493
494     /* Read the public key */
495     KEYFILE_GET(32); /* Not sure what this is */
496     length=(KEYFILE_GET(16)+7)/8;
497     if (length>RSA_MAX_MODBYTES) {
498         LDFATAL("implausible length %ld for modulus\n",
499                  length);
500     }
501     b=safe_malloc(length,"rsapriv_apply");
502     if (fread(b,length,1,f) != 1) {
503         LDFATAL_FILE("error reading modulus\n");
504     }
505     read_mpbin(&st->n,b,length);
506     FREE(b);
507     length=(KEYFILE_GET(16)+7)/8;
508     if (length>RSA_MAX_MODBYTES) {
509         LDFATAL("implausible length %ld for e\n",length);
510     }
511     b=safe_malloc(length,"rsapriv_apply");
512     if (fread(b,length,1,f)!=1) {
513         LDFATAL_FILE("error reading e\n");
514     }
515     read_mpbin(&e,b,length);
516     FREE(b);
517     
518     length=KEYFILE_GET(32);
519     if (length>1024) {
520         LDFATAL("implausibly long (%ld) key comment\n",
521                  length);
522     }
523     c=safe_malloc(length+1,"rsapriv_apply");
524     if (fread(c,length,1,f)!=1) {
525         LDFATAL_FILE("error reading key comment\n");
526     }
527     c[length]=0;
528
529     /* Check that the next two pairs of characters are identical - the
530        keyfile is not encrypted, so they should be */
531
532     if (KEYFILE_GET(16) != KEYFILE_GET(16)) {
533         LDFATAL("corrupt keyfile\n");
534     }
535
536     /* Read d */
537     length=(KEYFILE_GET(16)+7)/8;
538     if (length>RSA_MAX_MODBYTES) {
539         LDFATAL("implausibly long (%ld) decryption key\n",
540                  length);
541     }
542     b=safe_malloc(length,"rsapriv_apply");
543     if (fread(b,length,1,f)!=1) {
544         LDFATAL_FILE("error reading decryption key\n");
545     }
546     read_mpbin(&d,b,length);
547     FREE(b);
548     /* Read iqmp (inverse of q mod p) */
549     length=(KEYFILE_GET(16)+7)/8;
550     if (length>RSA_MAX_MODBYTES) {
551         LDFATAL("implausibly long (%ld)"
552                  " iqmp auxiliary value\n", length);
553     }
554     b=safe_malloc(length,"rsapriv_apply");
555     if (fread(b,length,1,f)!=1) {
556         LDFATAL_FILE("error reading decryption key\n");
557     }
558     read_mpbin(&iqmp,b,length);
559     FREE(b);
560     /* Read q (the smaller of the two primes) */
561     length=(KEYFILE_GET(16)+7)/8;
562     if (length>RSA_MAX_MODBYTES) {
563         LDFATAL("implausibly long (%ld) q value\n",
564                  length);
565     }
566     b=safe_malloc(length,"rsapriv_apply");
567     if (fread(b,length,1,f)!=1) {
568         LDFATAL_FILE("error reading q value\n");
569     }
570     read_mpbin(&st->q,b,length);
571     FREE(b);
572     /* Read p (the larger of the two primes) */
573     length=(KEYFILE_GET(16)+7)/8;
574     if (length>RSA_MAX_MODBYTES) {
575         LDFATAL("implausibly long (%ld) p value\n",
576                  length);
577     }
578     b=safe_malloc(length,"rsapriv_apply");
579     if (fread(b,length,1,f)!=1) {
580         LDFATAL_FILE("error reading p value\n");
581     }
582     read_mpbin(&st->p,b,length);
583     FREE(b);
584     
585     if (ferror(f)) {
586         fatal_perror("rsa-private (%s:%d): ferror",loc.file,loc.line);
587     }
588
589     /*
590      * Now verify the validity of the key, and set up the auxiliary
591      * values for fast CRT signing.
592      */
593     valid=False;
594     if (do_validity_check) {
595         /* Verify that p*q is equal to n. */
596         mpz_mul(&tmp, &st->p, &st->q);
597         if (mpz_cmp(&tmp, &st->n) != 0)
598             goto done_checks;
599
600         /*
601          * Verify that d*e is congruent to 1 mod (p-1), and mod
602          * (q-1). This is equivalent to it being congruent to 1 mod
603          * lambda(n) = lcm(p-1,q-1).  The usual `textbook' condition,
604          * that d e == 1 (mod (p-1)(q-1)) is sufficient, but not
605          * actually necessary.
606          */
607         mpz_mul(&tmp, &d, &e);
608         mpz_sub_ui(&tmp2, &st->p, 1);
609         mpz_mod(&tmp3, &tmp, &tmp2);
610         if (mpz_cmp_si(&tmp3, 1) != 0)
611             goto done_checks;
612         mpz_sub_ui(&tmp2, &st->q, 1);
613         mpz_mod(&tmp3, &tmp, &tmp2);
614         if (mpz_cmp_si(&tmp3, 1) != 0)
615             goto done_checks;
616
617         /* Verify that q*iqmp is congruent to 1 mod p. */
618         mpz_mul(&tmp, &st->q, &iqmp);
619         mpz_mod(&tmp2, &tmp, &st->p);
620         if (mpz_cmp_si(&tmp2, 1) != 0)
621             goto done_checks;
622     }
623     /* Now we know the key is valid (or we don't care). */
624     valid = True;
625     
626     /*
627      * Now we compute auxiliary values dp, dq and w to allow us
628      * to use the CRT optimisation when signing.
629      * 
630      *   dp == d mod (p-1)      so that a^dp == a^d mod p, for all a
631      *   dq == d mod (q-1)      similarly mod q
632      *   w == iqmp * q          so that w == 0 mod q, and w == 1 mod p
633      */
634     mpz_sub_ui(&tmp, &st->p, 1);
635     mpz_mod(&st->dp, &d, &tmp);
636     mpz_sub_ui(&tmp, &st->q, 1);
637     mpz_mod(&st->dq, &d, &tmp);
638     mpz_mul(&st->w, &iqmp, &st->q);
639     
640 done_checks:
641     if (!valid) {
642         LDFATAL("file does not contain a "
643                  "valid RSA key!\n");
644     }
645
646 assume_valid:
647 out:
648     mpz_clear(&tmp);
649     mpz_clear(&tmp2);
650     mpz_clear(&tmp3);
651
652     FREE(b);
653     FREE(c);
654     mpz_clear(&e);
655     mpz_clear(&d);
656     mpz_clear(&iqmp);
657
658     return st;
659
660 error_out:
661     if (st) rsapriv_dispose(st);
662     st=0;
663     goto out;
664 }
665
666 static bool_t postreadcheck_tryload(struct load_ctx *l, FILE *f)
667 {
668     assert(!ferror(f));
669     if (feof(f)) { load_err(l,0,0,0,"eof mid-integer"); return False; }
670     return True;
671 }
672
673 bool_t rsa1_loadpriv(const struct sigscheme_info *algo,
674                      struct buffer_if *privkeydata,
675                      struct sigprivkey_if **sigpriv_r,
676                      struct log_if *log, struct cloc loc)
677 {
678     FILE *f=0;
679     struct rsapriv *st=0;
680
681     f=fmemopen(privkeydata->start,privkeydata->size,"r");
682     if (!f) {
683         slilog(log,M_ERR,"failed to fmemopen private key file\n");
684         goto error_out;
685     }
686
687     struct load_ctx l[1];
688     l->what="rsa1priv load";
689     l->verror=verror_tryload;
690     l->postreadcheck=postreadcheck_tryload;
691     l->loc=loc;
692     l->u.tryload.log=log;
693
694     st=rsa_loadpriv_core(l,f,loc,False);
695     if (!st) goto error_out;
696     goto out;
697
698  error_out:
699     if (st) { free(st); st=0; }
700  out:
701     if (f) fclose(f);
702     if (!st) return False;
703     *sigpriv_r=&st->ops;
704     return True;
705 }
706
707 static bool_t postreadcheck_apply(struct load_ctx *l, FILE *f)
708 {
709     cfgfile_postreadcheck(l->loc,f);
710     return True;
711 }
712
713 static list_t *rsapriv_apply(closure_t *self, struct cloc loc, dict_t *context,
714                              list_t *args)
715 {
716     struct rsapriv *st;
717     item_t *i;
718     cstring_t filename;
719     FILE *f;
720     struct load_ctx l[1];
721
722     l->what="rsa-private";
723     l->verror=verror_cfgfatal;
724     l->postreadcheck=postreadcheck_apply;
725     l->loc=loc;
726
727     /* Argument is filename pointing to SSH1 private key file */
728     i=list_elem(args,0);
729     if (i) {
730         if (i->type!=t_string) {
731             cfgfatal(i->loc,"rsa-private","first argument must be a string\n");
732         }
733         filename=i->data.string;
734     } else {
735         filename=NULL; /* Make compiler happy */
736         cfgfatal(i->loc,"rsa-private","you must provide a filename\n");
737     }
738
739     f=fopen(filename,"rb");
740     if (!f) {
741         if (just_check_config) {
742             Message(M_WARNING,"rsa-private (%s:%d): cannot open keyfile "
743                     "\"%s\"; assuming it's valid while we check the "
744                     "rest of the configuration\n",loc.file,loc.line,filename);
745         } else {
746             fatal_perror("rsa-private (%s:%d): cannot open file \"%s\"",
747                          loc.file,loc.line,filename);
748         }
749     }
750
751     bool_t do_validity_check=True;
752     i=list_elem(args,1);
753     if (i && i->type==t_bool && i->data.bool==False) {
754         Message(M_INFO,"rsa-private (%s:%d): skipping RSA key validity "
755                 "check\n",loc.file,loc.line);
756         do_validity_check=False;
757     }
758
759     st=rsa_loadpriv_core(l,f,loc,do_validity_check);
760     fclose(f);
761     return new_closure(&st->cl);
762 }
763
764 void rsa_module(dict_t *dict)
765 {
766     add_closure(dict,"rsa-private",rsapriv_apply);
767     add_closure(dict,"rsa-public",rsapub_apply);
768 }