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