You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

530 lines
15 KiB

  1. /* v3_conf.c */
  2. /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  3. * project 1999.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. All advertising materials mentioning features or use of this
  21. * software must display the following acknowledgment:
  22. * "This product includes software developed by the OpenSSL Project
  23. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  24. *
  25. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26. * endorse or promote products derived from this software without
  27. * prior written permission. For written permission, please contact
  28. * licensing@OpenSSL.org.
  29. *
  30. * 5. Products derived from this software may not be called "OpenSSL"
  31. * nor may "OpenSSL" appear in their names without prior written
  32. * permission of the OpenSSL Project.
  33. *
  34. * 6. Redistributions of any form whatsoever must retain the following
  35. * acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50. * OF THE POSSIBILITY OF SUCH DAMAGE.
  51. * ====================================================================
  52. *
  53. * This product includes cryptographic software written by Eric Young
  54. * (eay@cryptsoft.com). This product includes software written by Tim
  55. * Hudson (tjh@cryptsoft.com). */
  56. /* extension creation utilities */
  57. #include <ctype.h>
  58. #include <stdio.h>
  59. #include <string.h>
  60. #include <openssl/conf.h>
  61. #include <openssl/err.h>
  62. #include <openssl/mem.h>
  63. #include <openssl/obj.h>
  64. #include <openssl/x509.h>
  65. #include <openssl/x509v3.h>
  66. static int v3_check_critical(char **value);
  67. static int v3_check_generic(char **value);
  68. static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
  69. static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type, X509V3_CTX *ctx);
  70. static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, int ext_nid,
  71. int crit, void *ext_struc);
  72. static unsigned char *generic_asn1(char *value, X509V3_CTX *ctx, long *ext_len);
  73. /* CONF *conf: Config file */
  74. /* char *name: Name */
  75. /* char *value: Value */
  76. X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
  77. char *value)
  78. {
  79. int crit;
  80. int ext_type;
  81. X509_EXTENSION *ret;
  82. crit = v3_check_critical(&value);
  83. if ((ext_type = v3_check_generic(&value)))
  84. return v3_generic_extension(name, value, crit, ext_type, ctx);
  85. ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
  86. if (!ret)
  87. {
  88. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_nconf, X509V3_R_ERROR_IN_EXTENSION);
  89. ERR_add_error_data(4,"name=", name, ", value=", value);
  90. }
  91. return ret;
  92. }
  93. /* CONF *conf: Config file */
  94. /* char *value: Value */
  95. X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
  96. char *value)
  97. {
  98. int crit;
  99. int ext_type;
  100. crit = v3_check_critical(&value);
  101. if ((ext_type = v3_check_generic(&value)))
  102. return v3_generic_extension(OBJ_nid2sn(ext_nid),
  103. value, crit, ext_type, ctx);
  104. return do_ext_nconf(conf, ctx, ext_nid, crit, value);
  105. }
  106. /* CONF *conf: Config file */
  107. /* char *value: Value */
  108. static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
  109. int crit, char *value)
  110. {
  111. const X509V3_EXT_METHOD *method;
  112. X509_EXTENSION *ext;
  113. STACK_OF(CONF_VALUE) *nval;
  114. void *ext_struc;
  115. if (ext_nid == NID_undef)
  116. {
  117. OPENSSL_PUT_ERROR(X509V3, do_ext_nconf, X509V3_R_UNKNOWN_EXTENSION_NAME);
  118. return NULL;
  119. }
  120. if (!(method = X509V3_EXT_get_nid(ext_nid)))
  121. {
  122. OPENSSL_PUT_ERROR(X509V3, do_ext_nconf, X509V3_R_UNKNOWN_EXTENSION);
  123. return NULL;
  124. }
  125. /* Now get internal extension representation based on type */
  126. if (method->v2i)
  127. {
  128. if(*value == '@') nval = NCONF_get_section(conf, value + 1);
  129. else nval = X509V3_parse_list(value);
  130. if(sk_CONF_VALUE_num(nval) <= 0)
  131. {
  132. OPENSSL_PUT_ERROR(X509V3, do_ext_nconf, X509V3_R_INVALID_EXTENSION_STRING);
  133. ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
  134. return NULL;
  135. }
  136. ext_struc = method->v2i(method, ctx, nval);
  137. if(*value != '@') sk_CONF_VALUE_pop_free(nval,
  138. X509V3_conf_free);
  139. if(!ext_struc) return NULL;
  140. }
  141. else if(method->s2i)
  142. {
  143. if(!(ext_struc = method->s2i(method, ctx, value))) return NULL;
  144. }
  145. else if(method->r2i)
  146. {
  147. if(!ctx->db || !ctx->db_meth)
  148. {
  149. OPENSSL_PUT_ERROR(X509V3, do_ext_nconf, X509V3_R_NO_CONFIG_DATABASE);
  150. return NULL;
  151. }
  152. if(!(ext_struc = method->r2i(method, ctx, value))) return NULL;
  153. }
  154. else
  155. {
  156. OPENSSL_PUT_ERROR(X509V3, do_ext_nconf, X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED);
  157. ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid));
  158. return NULL;
  159. }
  160. ext = do_ext_i2d(method, ext_nid, crit, ext_struc);
  161. if(method->it) ASN1_item_free(ext_struc, ASN1_ITEM_ptr(method->it));
  162. else method->ext_free(ext_struc);
  163. return ext;
  164. }
  165. static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, int ext_nid,
  166. int crit, void *ext_struc)
  167. {
  168. unsigned char *ext_der;
  169. int ext_len;
  170. ASN1_OCTET_STRING *ext_oct;
  171. X509_EXTENSION *ext;
  172. /* Convert internal representation to DER */
  173. if (method->it)
  174. {
  175. ext_der = NULL;
  176. ext_len = ASN1_item_i2d(ext_struc, &ext_der, ASN1_ITEM_ptr(method->it));
  177. if (ext_len < 0) goto merr;
  178. }
  179. else
  180. {
  181. unsigned char *p;
  182. ext_len = method->i2d(ext_struc, NULL);
  183. if(!(ext_der = OPENSSL_malloc(ext_len))) goto merr;
  184. p = ext_der;
  185. method->i2d(ext_struc, &p);
  186. }
  187. if (!(ext_oct = M_ASN1_OCTET_STRING_new())) goto merr;
  188. ext_oct->data = ext_der;
  189. ext_oct->length = ext_len;
  190. ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct);
  191. if (!ext) goto merr;
  192. M_ASN1_OCTET_STRING_free(ext_oct);
  193. return ext;
  194. merr:
  195. OPENSSL_PUT_ERROR(X509V3, do_ext_i2d, ERR_R_MALLOC_FAILURE);
  196. return NULL;
  197. }
  198. /* Given an internal structure, nid and critical flag create an extension */
  199. X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc)
  200. {
  201. const X509V3_EXT_METHOD *method;
  202. if (!(method = X509V3_EXT_get_nid(ext_nid))) {
  203. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_i2d, X509V3_R_UNKNOWN_EXTENSION);
  204. return NULL;
  205. }
  206. return do_ext_i2d(method, ext_nid, crit, ext_struc);
  207. }
  208. /* Check the extension string for critical flag */
  209. static int v3_check_critical(char **value)
  210. {
  211. char *p = *value;
  212. if ((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0;
  213. p+=9;
  214. while(isspace((unsigned char)*p)) p++;
  215. *value = p;
  216. return 1;
  217. }
  218. /* Check extension string for generic extension and return the type */
  219. static int v3_check_generic(char **value)
  220. {
  221. int gen_type = 0;
  222. char *p = *value;
  223. if ((strlen(p) >= 4) && !strncmp(p, "DER:", 4))
  224. {
  225. p+=4;
  226. gen_type = 1;
  227. }
  228. else if ((strlen(p) >= 5) && !strncmp(p, "ASN1:", 5))
  229. {
  230. p+=5;
  231. gen_type = 2;
  232. }
  233. else
  234. return 0;
  235. while (isspace((unsigned char)*p)) p++;
  236. *value = p;
  237. return gen_type;
  238. }
  239. /* Create a generic extension: for now just handle DER type */
  240. static X509_EXTENSION *v3_generic_extension(const char *ext, char *value,
  241. int crit, int gen_type,
  242. X509V3_CTX *ctx)
  243. {
  244. unsigned char *ext_der=NULL;
  245. long ext_len;
  246. ASN1_OBJECT *obj=NULL;
  247. ASN1_OCTET_STRING *oct=NULL;
  248. X509_EXTENSION *extension=NULL;
  249. if (!(obj = OBJ_txt2obj(ext, 0)))
  250. {
  251. OPENSSL_PUT_ERROR(X509V3, v3_generic_extension, X509V3_R_EXTENSION_NAME_ERROR);
  252. ERR_add_error_data(2, "name=", ext);
  253. goto err;
  254. }
  255. if (gen_type == 1)
  256. ext_der = string_to_hex(value, &ext_len);
  257. else if (gen_type == 2)
  258. ext_der = generic_asn1(value, ctx, &ext_len);
  259. if (ext_der == NULL)
  260. {
  261. OPENSSL_PUT_ERROR(X509V3, v3_generic_extension, X509V3_R_EXTENSION_VALUE_ERROR);
  262. ERR_add_error_data(2, "value=", value);
  263. goto err;
  264. }
  265. if (!(oct = M_ASN1_OCTET_STRING_new()))
  266. {
  267. OPENSSL_PUT_ERROR(X509V3, v3_generic_extension, ERR_R_MALLOC_FAILURE);
  268. goto err;
  269. }
  270. oct->data = ext_der;
  271. oct->length = ext_len;
  272. ext_der = NULL;
  273. extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct);
  274. err:
  275. ASN1_OBJECT_free(obj);
  276. M_ASN1_OCTET_STRING_free(oct);
  277. if(ext_der) OPENSSL_free(ext_der);
  278. return extension;
  279. }
  280. static unsigned char *generic_asn1(char *value, X509V3_CTX *ctx, long *ext_len)
  281. {
  282. ASN1_TYPE *typ;
  283. unsigned char *ext_der = NULL;
  284. typ = ASN1_generate_v3(value, ctx);
  285. if (typ == NULL)
  286. return NULL;
  287. *ext_len = i2d_ASN1_TYPE(typ, &ext_der);
  288. ASN1_TYPE_free(typ);
  289. return ext_der;
  290. }
  291. /* This is the main function: add a bunch of extensions based on a config file
  292. * section to an extension STACK.
  293. */
  294. int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
  295. STACK_OF(X509_EXTENSION) **sk)
  296. {
  297. X509_EXTENSION *ext;
  298. STACK_OF(CONF_VALUE) *nval;
  299. CONF_VALUE *val;
  300. size_t i;
  301. if (!(nval = NCONF_get_section(conf, section))) return 0;
  302. for (i = 0; i < sk_CONF_VALUE_num(nval); i++)
  303. {
  304. val = sk_CONF_VALUE_value(nval, i);
  305. if (!(ext = X509V3_EXT_nconf(conf, ctx, val->name, val->value)))
  306. return 0;
  307. if (sk) X509v3_add_ext(sk, ext, -1);
  308. X509_EXTENSION_free(ext);
  309. }
  310. return 1;
  311. }
  312. /* Convenience functions to add extensions to a certificate, CRL and request */
  313. int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
  314. X509 *cert)
  315. {
  316. STACK_OF(X509_EXTENSION) **sk = NULL;
  317. if (cert)
  318. sk = &cert->cert_info->extensions;
  319. return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
  320. }
  321. /* Same as above but for a CRL */
  322. int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
  323. X509_CRL *crl)
  324. {
  325. STACK_OF(X509_EXTENSION) **sk = NULL;
  326. if (crl)
  327. sk = &crl->crl->extensions;
  328. return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
  329. }
  330. /* Add extensions to certificate request */
  331. int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
  332. X509_REQ *req)
  333. {
  334. STACK_OF(X509_EXTENSION) *extlist = NULL, **sk = NULL;
  335. int i;
  336. if (req)
  337. sk = &extlist;
  338. i = X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
  339. if (!i || !sk)
  340. return i;
  341. i = X509_REQ_add_extensions(req, extlist);
  342. sk_X509_EXTENSION_pop_free(extlist, X509_EXTENSION_free);
  343. return i;
  344. }
  345. /* Config database functions */
  346. char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section)
  347. {
  348. if(!ctx->db || !ctx->db_meth || !ctx->db_meth->get_string)
  349. {
  350. OPENSSL_PUT_ERROR(X509V3, X509V3_get_string, X509V3_R_OPERATION_NOT_DEFINED);
  351. return NULL;
  352. }
  353. if (ctx->db_meth->get_string)
  354. return ctx->db_meth->get_string(ctx->db, name, section);
  355. return NULL;
  356. }
  357. STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section)
  358. {
  359. if(!ctx->db || !ctx->db_meth || !ctx->db_meth->get_section)
  360. {
  361. OPENSSL_PUT_ERROR(X509V3, X509V3_get_section, X509V3_R_OPERATION_NOT_DEFINED);
  362. return NULL;
  363. }
  364. if (ctx->db_meth->get_section)
  365. return ctx->db_meth->get_section(ctx->db, section);
  366. return NULL;
  367. }
  368. void X509V3_string_free(X509V3_CTX *ctx, char *str)
  369. {
  370. if (!str) return;
  371. if (ctx->db_meth->free_string)
  372. ctx->db_meth->free_string(ctx->db, str);
  373. }
  374. void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section)
  375. {
  376. if (!section) return;
  377. if (ctx->db_meth->free_section)
  378. ctx->db_meth->free_section(ctx->db, section);
  379. }
  380. static char *nconf_get_string(void *db, char *section, char *value)
  381. {
  382. /* TODO(fork): this should return a const value. */
  383. return (char *) NCONF_get_string(db, section, value);
  384. }
  385. static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, char *section)
  386. {
  387. return NCONF_get_section(db, section);
  388. }
  389. static const X509V3_CONF_METHOD nconf_method = {
  390. nconf_get_string,
  391. nconf_get_section,
  392. NULL,
  393. NULL
  394. };
  395. void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf)
  396. {
  397. ctx->db_meth = &nconf_method;
  398. ctx->db = conf;
  399. }
  400. void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req,
  401. X509_CRL *crl, int flags)
  402. {
  403. ctx->issuer_cert = issuer;
  404. ctx->subject_cert = subj;
  405. ctx->crl = crl;
  406. ctx->subject_req = req;
  407. ctx->flags = flags;
  408. }
  409. /* TODO(fork): remove */
  410. #if 0
  411. /* Old conf compatibility functions */
  412. X509_EXTENSION *X509V3_EXT_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
  413. char *name, char *value)
  414. {
  415. CONF ctmp;
  416. CONF_set_nconf(&ctmp, conf);
  417. return X509V3_EXT_nconf(&ctmp, ctx, name, value);
  418. }
  419. /* LHASH *conf: Config file */
  420. /* char *value: Value */
  421. X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
  422. int ext_nid, char *value)
  423. {
  424. CONF ctmp;
  425. CONF_set_nconf(&ctmp, conf);
  426. return X509V3_EXT_nconf_nid(&ctmp, ctx, ext_nid, value);
  427. }
  428. static char *conf_lhash_get_string(void *db, char *section, char *value)
  429. {
  430. return CONF_get_string(db, section, value);
  431. }
  432. static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section)
  433. {
  434. return CONF_get_section(db, section);
  435. }
  436. static const X509V3_CONF_METHOD conf_lhash_method = {
  437. conf_lhash_get_string,
  438. conf_lhash_get_section,
  439. NULL,
  440. NULL
  441. };
  442. void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH_OF(CONF_VALUE) *lhash)
  443. {
  444. ctx->db_meth = &conf_lhash_method;
  445. ctx->db = lhash;
  446. }
  447. int X509V3_EXT_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
  448. char *section, X509 *cert)
  449. {
  450. CONF ctmp;
  451. CONF_set_nconf(&ctmp, conf);
  452. return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert);
  453. }
  454. /* Same as above but for a CRL */
  455. int X509V3_EXT_CRL_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
  456. char *section, X509_CRL *crl)
  457. {
  458. CONF ctmp;
  459. CONF_set_nconf(&ctmp, conf);
  460. return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl);
  461. }
  462. /* Add extensions to certificate request */
  463. int X509V3_EXT_REQ_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
  464. char *section, X509_REQ *req)
  465. {
  466. CONF ctmp;
  467. CONF_set_nconf(&ctmp, conf);
  468. return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req);
  469. }
  470. #endif