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