1 /* $NetBSD: prsa_par.y,v 1.4 2006/09/09 16:22:10 manu Exp $ */
3 /* Id: prsa_par.y,v 1.3 2004/11/08 12:04:23 ludvigm Exp */
7 * Copyright (C) 2004 SuSE Linux AG, Nuernberg, Germany.
8 * Contributed by: Michal Ludvig <mludvig@suse.cz>, SUSE Labs
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the project nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 /* This file contains a parser for FreeS/WAN-style ipsec.secrets RSA keys. */
53 #include <netinet/in.h>
54 #include <sys/socket.h>
55 #include <arpa/inet.h>
56 #include <sys/types.h>
62 #include <openssl/bn.h>
63 #include <openssl/rsa.h>
65 #include "crypto_openssl.h"
70 #include "isakmp_var.h"
76 extern void prsaerror(const char *str, ...);
77 extern int prsawrap (void);
78 extern int prsalex (void);
80 extern char *prsatext;
81 extern int prsa_cur_lineno;
82 extern char *prsa_cur_fname;
85 int prsa_cur_lineno = 0;
86 char *prsa_cur_fname = NULL;
87 struct genlist *prsa_cur_list = NULL;
88 enum rsa_key_type prsa_cur_type = RSA_TYPE_ANY;
93 prsaerror(const char *s, ...)
103 snprintf(fmt, sizeof(fmt), "%s:%d: %s",
104 prsa_cur_fname, prsa_cur_lineno, s);
105 plogv(LLV_ERROR, LOCATION, NULL, fmt, &ap);
110 prsawarning(const char *s, ...)
120 snprintf(fmt, sizeof(fmt), "%s:%d: %s",
121 prsa_cur_fname, prsa_cur_lineno, s);
122 plogv(LLV_WARNING, LOCATION, NULL, fmt, &ap);
137 struct netaddr *naddr;
141 %token OBRACE EBRACE COLON HEX
142 %token TAG_RSA TAG_PUB TAG_PSK
143 %token MODULUS PUBLIC_EXPONENT PRIVATE_EXPONENT
144 %token PRIME1 PRIME2 EXPONENT1 EXPONENT2 COEFFICIENT
145 %token ADDR4 ADDR6 ADDRANY SLASH NUMBER BASE64
149 %type <chr> ADDR4 ADDR6 BASE64
151 %type <rsa> rsa_statement
153 %type <naddr> addr4 addr6 addr
162 addr addr COLON rsa_statement
164 rsa_key_insert(prsa_cur_list, $1, $2, $4);
166 | addr COLON rsa_statement
168 rsa_key_insert(prsa_cur_list, NULL, $1, $3);
170 | COLON rsa_statement
172 rsa_key_insert(prsa_cur_list, NULL, NULL, $2);
177 TAG_RSA OBRACE params EBRACE
179 if (prsa_cur_type == RSA_TYPE_PUBLIC) {
180 prsawarning("Using private key for public key purpose.\n");
181 if (!rsa_cur->n || !rsa_cur->e) {
182 prsaerror("Incomplete key. Mandatory parameters are missing!\n");
187 if (!rsa_cur->n || !rsa_cur->e || !rsa_cur->d) {
188 prsaerror("Incomplete key. Mandatory parameters are missing!\n");
191 if (!rsa_cur->p || !rsa_cur->q || !rsa_cur->dmp1
192 || !rsa_cur->dmq1 || !rsa_cur->iqmp) {
193 if (rsa_cur->p) BN_clear_free(rsa_cur->p);
194 if (rsa_cur->q) BN_clear_free(rsa_cur->q);
195 if (rsa_cur->dmp1) BN_clear_free(rsa_cur->dmp1);
196 if (rsa_cur->dmq1) BN_clear_free(rsa_cur->dmq1);
197 if (rsa_cur->iqmp) BN_clear_free(rsa_cur->iqmp);
201 rsa_cur->dmp1 = NULL;
202 rsa_cur->dmq1 = NULL;
203 rsa_cur->iqmp = NULL;
211 if (prsa_cur_type == RSA_TYPE_PRIVATE) {
212 prsaerror("Public key in private-key file!\n");
215 $$ = base64_pubkey2rsa($2);
219 if (prsa_cur_type == RSA_TYPE_PRIVATE) {
220 prsaerror("Public key in private-key file!\n");
223 $$ = bignum_pubkey2rsa($2);
240 struct sockaddr_in *sap;
242 if ($2 == -1) $2 = 32;
243 if ($2 < 0 || $2 > 32) {
244 prsaerror ("Invalid IPv4 prefix\n");
247 $$ = calloc (sizeof(struct netaddr), 1);
249 sap = (struct sockaddr_in *)(&$$->sa);
250 sap->sin_family = AF_INET;
251 err = inet_pton(AF_INET, $1, (struct in_addr*)(&sap->sin_addr));
253 prsaerror("inet_pton(%s): %s\n", $1, strerror(errno));
263 struct sockaddr_in6 *sap;
265 if ($2 == -1) $2 = 128;
266 if ($2 < 0 || $2 > 128) {
267 prsaerror ("Invalid IPv6 prefix\n");
270 $$ = calloc (sizeof(struct netaddr), 1);
272 sap = (struct sockaddr_in6 *)(&$$->sa);
273 sap->sin6_family = AF_INET6;
274 err = inet_pton(AF_INET6, $1, (struct in6_addr*)(&sap->sin6_addr));
276 prsaerror("inet_pton(%s): %s\n", $1, strerror(errno));
283 /* nothing */ { $$ = -1; }
284 | SLASH NUMBER { $$ = $2; }
293 { if (!rsa_cur->n) rsa_cur->n = $3; else { prsaerror ("Modulus already defined\n"); YYABORT; } }
294 | PUBLIC_EXPONENT COLON HEX
295 { if (!rsa_cur->e) rsa_cur->e = $3; else { prsaerror ("PublicExponent already defined\n"); YYABORT; } }
296 | PRIVATE_EXPONENT COLON HEX
297 { if (!rsa_cur->d) rsa_cur->d = $3; else { prsaerror ("PrivateExponent already defined\n"); YYABORT; } }
299 { if (!rsa_cur->p) rsa_cur->p = $3; else { prsaerror ("Prime1 already defined\n"); YYABORT; } }
301 { if (!rsa_cur->q) rsa_cur->q = $3; else { prsaerror ("Prime2 already defined\n"); YYABORT; } }
302 | EXPONENT1 COLON HEX
303 { if (!rsa_cur->dmp1) rsa_cur->dmp1 = $3; else { prsaerror ("Exponent1 already defined\n"); YYABORT; } }
304 | EXPONENT2 COLON HEX
305 { if (!rsa_cur->dmq1) rsa_cur->dmq1 = $3; else { prsaerror ("Exponent2 already defined\n"); YYABORT; } }
306 | COEFFICIENT COLON HEX
307 { if (!rsa_cur->iqmp) rsa_cur->iqmp = $3; else { prsaerror ("Coefficient already defined\n"); YYABORT; } }
314 prsa_parse_file(struct genlist *list, char *fname, enum rsa_key_type type)
321 if (type == RSA_TYPE_PRIVATE) {
323 if (stat(fname, &st) < 0)
325 if (st.st_mode & (S_IRWXG | S_IRWXO)) {
326 plog(LLV_ERROR, LOCATION, NULL,
327 "Too slack permissions on private key '%s'\n",
329 plog(LLV_ERROR, LOCATION, NULL,
330 "Should be at most 0600, now is 0%o\n",
335 fp = fopen(fname, "r");
340 prsa_cur_fname = fname;
341 prsa_cur_list = list;
342 prsa_cur_type = type;