1 /* $Id: prsa_par.y,v 1.3 2004/11/08 12:04:23 ludvigm Exp $ */
5 * Copyright (C) 2004 SuSE Linux AG, Nuernberg, Germany.
6 * Contributed by: Michal Ludvig <mludvig@suse.cz>, SUSE Labs
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 /* This file contains a parser for FreeS/WAN-style ipsec.secrets RSA keys. */
51 #include <netinet/in.h>
52 #include <sys/socket.h>
53 #include <arpa/inet.h>
54 #include <sys/types.h>
59 #include <openssl/bn.h>
60 #include <openssl/rsa.h>
66 #include "isakmp_var.h"
68 #include "crypto_openssl.h"
72 extern void prsaerror(const char *str, ...);
73 extern int prsawrap (void);
74 extern int prsalex (void);
76 extern char *prsatext;
77 extern int prsa_cur_lineno;
78 extern char *prsa_cur_fname;
81 int prsa_cur_lineno = 0;
82 char *prsa_cur_fname = NULL;
83 struct genlist *prsa_cur_list = NULL;
84 enum rsa_key_type prsa_cur_type = RSA_TYPE_ANY;
89 prsaerror(const char *s, ...)
99 snprintf(fmt, sizeof(fmt), "%s:%d: %s",
100 prsa_cur_fname, prsa_cur_lineno, s);
101 plogv(LLV_ERROR, LOCATION, NULL, fmt, ap);
106 prsawarning(const char *s, ...)
116 snprintf(fmt, sizeof(fmt), "%s:%d: %s",
117 prsa_cur_fname, prsa_cur_lineno, s);
118 plogv(LLV_WARNING, LOCATION, NULL, fmt, ap);
133 struct netaddr *naddr;
137 %token OBRACE EBRACE COLON HEX
138 %token TAG_RSA TAG_PUB TAG_PSK
139 %token MODULUS PUBLIC_EXPONENT PRIVATE_EXPONENT
140 %token PRIME1 PRIME2 EXPONENT1 EXPONENT2 COEFFICIENT
141 %token ADDR4 ADDR6 ADDRANY SLASH NUMBER BASE64
145 %type <chr> ADDR4 ADDR6 BASE64
147 %type <rsa> rsa_statement
149 %type <naddr> addr4 addr6 addr
158 addr addr COLON rsa_statement
160 rsa_key_insert(prsa_cur_list, $1, $2, $4);
162 | addr COLON rsa_statement
164 rsa_key_insert(prsa_cur_list, NULL, $1, $3);
166 | COLON rsa_statement
168 rsa_key_insert(prsa_cur_list, NULL, NULL, $2);
173 TAG_RSA OBRACE params EBRACE
175 if (prsa_cur_type == RSA_TYPE_PUBLIC) {
176 prsawarning("Using private key for public key purpose.\n");
177 if (!rsa_cur->n || !rsa_cur->e) {
178 prsaerror("Incomplete key. Mandatory parameters are missing!\n");
183 if (!rsa_cur->n || !rsa_cur->e || !rsa_cur->d) {
184 prsaerror("Incomplete key. Mandatory parameters are missing!\n");
187 if (!rsa_cur->p || !rsa_cur->q || !rsa_cur->dmp1
188 || !rsa_cur->dmq1 || !rsa_cur->iqmp) {
189 if (rsa_cur->p) BN_clear_free(rsa_cur->p);
190 if (rsa_cur->q) BN_clear_free(rsa_cur->q);
191 if (rsa_cur->dmp1) BN_clear_free(rsa_cur->dmp1);
192 if (rsa_cur->dmq1) BN_clear_free(rsa_cur->dmq1);
193 if (rsa_cur->iqmp) BN_clear_free(rsa_cur->iqmp);
197 rsa_cur->dmp1 = NULL;
198 rsa_cur->dmq1 = NULL;
199 rsa_cur->iqmp = NULL;
207 if (prsa_cur_type == RSA_TYPE_PRIVATE) {
208 prsaerror("Public key in private-key file!\n");
211 $$ = base64_pubkey2rsa($2);
215 if (prsa_cur_type == RSA_TYPE_PRIVATE) {
216 prsaerror("Public key in private-key file!\n");
219 $$ = bignum_pubkey2rsa($2);
236 struct sockaddr_in *sap;
238 if ($2 == -1) $2 = 32;
239 if ($2 < 0 || $2 > 32) {
240 prsaerror ("Invalid IPv4 prefix\n");
243 $$ = calloc (sizeof(struct netaddr), 1);
245 sap = (struct sockaddr_in *)(&$$->sa);
246 sap->sin_family = AF_INET;
247 err = inet_pton(AF_INET, $1, (struct in_addr*)(&sap->sin_addr));
249 prsaerror("inet_pton(%s): %s\n", $1, strerror(errno));
259 struct sockaddr_in6 *sap;
261 if ($2 == -1) $2 = 128;
262 if ($2 < 0 || $2 > 128) {
263 prsaerror ("Invalid IPv6 prefix\n");
266 $$ = calloc (sizeof(struct netaddr), 1);
268 sap = (struct sockaddr_in6 *)(&$$->sa);
269 sap->sin6_family = AF_INET6;
270 err = inet_pton(AF_INET6, $1, (struct in6_addr*)(&sap->sin6_addr));
272 prsaerror("inet_pton(%s): %s\n", $1, strerror(errno));
279 /* nothing */ { $$ = -1; }
280 | SLASH NUMBER { $$ = $2; }
289 { if (!rsa_cur->n) rsa_cur->n = $3; else { prsaerror ("Modulus already defined\n"); YYABORT; } }
290 | PUBLIC_EXPONENT COLON HEX
291 { if (!rsa_cur->e) rsa_cur->e = $3; else { prsaerror ("PublicExponent already defined\n"); YYABORT; } }
292 | PRIVATE_EXPONENT COLON HEX
293 { if (!rsa_cur->d) rsa_cur->d = $3; else { prsaerror ("PrivateExponent already defined\n"); YYABORT; } }
295 { if (!rsa_cur->p) rsa_cur->p = $3; else { prsaerror ("Prime1 already defined\n"); YYABORT; } }
297 { if (!rsa_cur->q) rsa_cur->q = $3; else { prsaerror ("Prime2 already defined\n"); YYABORT; } }
298 | EXPONENT1 COLON HEX
299 { if (!rsa_cur->dmp1) rsa_cur->dmp1 = $3; else { prsaerror ("Exponent1 already defined\n"); YYABORT; } }
300 | EXPONENT2 COLON HEX
301 { if (!rsa_cur->dmq1) rsa_cur->dmq1 = $3; else { prsaerror ("Exponent2 already defined\n"); YYABORT; } }
302 | COEFFICIENT COLON HEX
303 { if (!rsa_cur->iqmp) rsa_cur->iqmp = $3; else { prsaerror ("Coefficient already defined\n"); YYABORT; } }
310 prsa_parse_file(struct genlist *list, char *fname, enum rsa_key_type type)
317 if (type == RSA_TYPE_PRIVATE) {
319 if (stat(fname, &st) < 0)
321 if (st.st_mode & (S_IRWXG | S_IRWXO)) {
322 plog(LLV_ERROR, LOCATION, NULL,
323 "Too slack permissions on private key '%s'\n",
325 plog(LLV_ERROR, LOCATION, NULL,
326 "Should be at most 0600, now is 0%o\n",
331 fp = fopen(fname, "r");
336 prsa_cur_fname = fname;
337 prsa_cur_list = list;
338 prsa_cur_type = type;