| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2023-09-07 16:59:15 +08:00
										 |  |  |  * Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 21:00:54 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | /* X509 v3 extension utilities */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-22 09:26:40 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/conf.h>
 | 
					
						
							|  |  |  | #include <openssl/x509v3.h>
 | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-12-01 09:49:46 +08:00
										 |  |  | #include "ext_dat.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-17 18:08:05 +08:00
										 |  |  | static STACK_OF(X509V3_EXT_METHOD) *ext_list = NULL; | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static int ext_cmp(const X509V3_EXT_METHOD *const *a, | 
					
						
							|  |  |  |                    const X509V3_EXT_METHOD *const *b); | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | static void ext_list_free(X509V3_EXT_METHOD *ext); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int X509V3_EXT_add(X509V3_EXT_METHOD *ext) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if (ext_list == NULL | 
					
						
							|  |  |  |         && (ext_list = sk_X509V3_EXT_METHOD_new(ext_cmp)) == NULL) { | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!sk_X509V3_EXT_METHOD_push(ext_list, ext)) { | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static int ext_cmp(const X509V3_EXT_METHOD *const *a, | 
					
						
							|  |  |  |                    const X509V3_EXT_METHOD *const *b) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return ((*a)->ext_nid - (*b)->ext_nid); | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | DECLARE_OBJ_BSEARCH_CMP_FN(const X509V3_EXT_METHOD *, | 
					
						
							|  |  |  |                            const X509V3_EXT_METHOD *, ext); | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | IMPLEMENT_OBJ_BSEARCH_CMP_FN(const X509V3_EXT_METHOD *, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                              const X509V3_EXT_METHOD *, ext); | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-28 03:42:45 +08:00
										 |  |  | #include "standard_exts.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-12 01:16:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     X509V3_EXT_METHOD tmp; | 
					
						
							|  |  |  |     const X509V3_EXT_METHOD *t = &tmp, *const *ret; | 
					
						
							|  |  |  |     int idx; | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (nid < 0) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     tmp.ext_nid = nid; | 
					
						
							|  |  |  |     ret = OBJ_bsearch_ext(&t, standard_exts, STANDARD_EXTENSION_COUNT); | 
					
						
							|  |  |  |     if (ret) | 
					
						
							|  |  |  |         return *ret; | 
					
						
							|  |  |  |     if (!ext_list) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2023-04-27 08:58:50 +08:00
										 |  |  |     /* Ideally, this would be done under a lock */ | 
					
						
							|  |  |  |     sk_X509V3_EXT_METHOD_sort(ext_list); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     idx = sk_X509V3_EXT_METHOD_find(ext_list, &tmp); | 
					
						
							| 
									
										
										
										
											2023-04-27 08:58:50 +08:00
										 |  |  |     /* A failure to locate the item is handled by the value method */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return sk_X509V3_EXT_METHOD_value(ext_list, idx); | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int nid; | 
					
						
							| 
									
										
										
										
											2015-03-15 21:43:56 +08:00
										 |  |  |     if ((nid = OBJ_obj2nid(X509_EXTENSION_get_object(ext))) == NID_undef) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     return X509V3_EXT_get_nid(nid); | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (; extlist->ext_nid != -1; extlist++) | 
					
						
							|  |  |  |         if (!X509V3_EXT_add(extlist)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int X509V3_EXT_add_alias(int nid_to, int nid_from) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     const X509V3_EXT_METHOD *ext; | 
					
						
							|  |  |  |     X509V3_EXT_METHOD *tmpext; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((ext = X509V3_EXT_get_nid(nid_from)) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_EXTENSION_NOT_FOUND); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |     if ((tmpext = OPENSSL_malloc(sizeof(*tmpext))) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     *tmpext = *ext; | 
					
						
							|  |  |  |     tmpext->ext_nid = nid_to; | 
					
						
							|  |  |  |     tmpext->ext_flags |= X509V3_EXT_DYNAMIC; | 
					
						
							|  |  |  |     return X509V3_EXT_add(tmpext); | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | void X509V3_EXT_cleanup(void) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     sk_X509V3_EXT_METHOD_pop_free(ext_list, ext_list_free); | 
					
						
							|  |  |  |     ext_list = NULL; | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static void ext_list_free(X509V3_EXT_METHOD *ext) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ext->ext_flags & X509V3_EXT_DYNAMIC) | 
					
						
							|  |  |  |         OPENSSL_free(ext); | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Legacy function: we don't need to add standard extensions any more because | 
					
						
							|  |  |  |  * they are now kept in ext_dat.h. | 
					
						
							| 
									
										
										
										
											1999-12-01 09:49:46 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											1999-02-19 09:29:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int X509V3_add_standard_extensions(void) | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1999-01-24 08:50:01 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1999-02-18 07:22:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Return an extension internal structure */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 09:10:33 +08:00
										 |  |  | void *X509V3_EXT_d2i(X509_EXTENSION *ext) | 
					
						
							| 
									
										
										
										
											1999-02-18 07:22:57 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     const X509V3_EXT_METHOD *method; | 
					
						
							|  |  |  |     const unsigned char *p; | 
					
						
							| 
									
										
										
										
											2015-03-15 21:43:56 +08:00
										 |  |  |     ASN1_STRING *extvalue; | 
					
						
							|  |  |  |     int extlen; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((method = X509V3_EXT_get(ext)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-03-15 21:43:56 +08:00
										 |  |  |     extvalue = X509_EXTENSION_get_data(ext); | 
					
						
							| 
									
										
										
										
											2016-08-16 21:06:48 +08:00
										 |  |  |     p = ASN1_STRING_get0_data(extvalue); | 
					
						
							| 
									
										
										
										
											2015-03-15 21:43:56 +08:00
										 |  |  |     extlen = ASN1_STRING_length(extvalue); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (method->it) | 
					
						
							| 
									
										
										
										
											2015-03-15 21:43:56 +08:00
										 |  |  |         return ASN1_item_d2i(NULL, &p, extlen, ASN1_ITEM_ptr(method->it)); | 
					
						
							|  |  |  |     return method->d2i(NULL, &p, extlen); | 
					
						
							| 
									
										
										
										
											1999-02-18 07:22:57 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 08:34:00 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * Get critical flag and decoded version of extension from a NID. | 
					
						
							| 
									
										
										
										
											1999-10-09 10:54:10 +08:00
										 |  |  |  * The "idx" variable returns the last found extension and can | 
					
						
							|  |  |  |  * be used to retrieve multiple extensions of the same NID. | 
					
						
							|  |  |  |  * However multiple extensions with the same NID is usually | 
					
						
							|  |  |  |  * due to a badly encoded certificate so if idx is NULL we | 
					
						
							|  |  |  |  * choke if multiple extensions exist. | 
					
						
							|  |  |  |  * The "crit" variable is set to the critical value. | 
					
						
							|  |  |  |  * The return value is the decoded extension or NULL on | 
					
						
							|  |  |  |  * error. The actual error can have several different causes, | 
					
						
							|  |  |  |  * the value of *crit reflects the cause: | 
					
						
							|  |  |  |  * >= 0, extension found but not decoded (reflects critical value). | 
					
						
							|  |  |  |  * -1 extension not found. | 
					
						
							|  |  |  |  * -2 extension occurs more than once. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 06:08:40 +08:00
										 |  |  | void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *x, int nid, int *crit, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                      int *idx) | 
					
						
							| 
									
										
										
										
											1999-10-09 10:54:10 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int lastpos, i; | 
					
						
							|  |  |  |     X509_EXTENSION *ex, *found_ex = NULL; | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (!x) { | 
					
						
							|  |  |  |         if (idx) | 
					
						
							|  |  |  |             *idx = -1; | 
					
						
							|  |  |  |         if (crit) | 
					
						
							|  |  |  |             *crit = -1; | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (idx) | 
					
						
							|  |  |  |         lastpos = *idx + 1; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         lastpos = 0; | 
					
						
							|  |  |  |     if (lastpos < 0) | 
					
						
							|  |  |  |         lastpos = 0; | 
					
						
							|  |  |  |     for (i = lastpos; i < sk_X509_EXTENSION_num(x); i++) { | 
					
						
							|  |  |  |         ex = sk_X509_EXTENSION_value(x, i); | 
					
						
							| 
									
										
										
										
											2015-03-15 21:43:56 +08:00
										 |  |  |         if (OBJ_obj2nid(X509_EXTENSION_get_object(ex)) == nid) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (idx) { | 
					
						
							|  |  |  |                 *idx = i; | 
					
						
							|  |  |  |                 found_ex = ex; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } else if (found_ex) { | 
					
						
							|  |  |  |                 /* Found more than one */ | 
					
						
							|  |  |  |                 if (crit) | 
					
						
							|  |  |  |                     *crit = -2; | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             found_ex = ex; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (found_ex) { | 
					
						
							|  |  |  |         /* Found it */ | 
					
						
							|  |  |  |         if (crit) | 
					
						
							|  |  |  |             *crit = X509_EXTENSION_get_critical(found_ex); | 
					
						
							|  |  |  |         return X509V3_EXT_d2i(found_ex); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Extension not found */ | 
					
						
							|  |  |  |     if (idx) | 
					
						
							|  |  |  |         *idx = -1; | 
					
						
							|  |  |  |     if (crit) | 
					
						
							|  |  |  |         *crit = -1; | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1999-10-09 10:54:10 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2000-05-17 18:08:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function is a general extension append, replace and delete utility. | 
					
						
							| 
									
										
										
										
											2000-12-25 02:02:33 +08:00
										 |  |  |  * The precise operation is governed by the 'flags' value. The 'crit' and | 
					
						
							|  |  |  |  * 'value' arguments (if relevant) are the extensions internal structure. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-27 21:42:43 +08:00
										 |  |  | int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     int crit, unsigned long flags) | 
					
						
							| 
									
										
										
										
											2000-12-25 02:02:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  |     int errcode, extidx = -1; | 
					
						
							|  |  |  |     X509_EXTENSION *ext = NULL, *extmp; | 
					
						
							|  |  |  |     STACK_OF(X509_EXTENSION) *ret = NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     unsigned long ext_op = flags & X509V3_ADD_OP_MASK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * If appending we don't care if it exists, otherwise look for existing | 
					
						
							|  |  |  |      * extension. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (ext_op != X509V3_ADD_APPEND) | 
					
						
							|  |  |  |         extidx = X509v3_get_ext_by_NID(*x, nid, -1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* See if extension exists */ | 
					
						
							|  |  |  |     if (extidx >= 0) { | 
					
						
							|  |  |  |         /* If keep existing, nothing to do */ | 
					
						
							|  |  |  |         if (ext_op == X509V3_ADD_KEEP_EXISTING) | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         /* If default then its an error */ | 
					
						
							|  |  |  |         if (ext_op == X509V3_ADD_DEFAULT) { | 
					
						
							|  |  |  |             errcode = X509V3_R_EXTENSION_EXISTS; | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* If delete, just delete it */ | 
					
						
							|  |  |  |         if (ext_op == X509V3_ADD_DELETE) { | 
					
						
							| 
									
										
										
										
											2022-07-08 07:04:09 +08:00
										 |  |  |             extmp = sk_X509_EXTENSION_delete(*x, extidx); | 
					
						
							|  |  |  |             if (extmp == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 return -1; | 
					
						
							| 
									
										
										
										
											2022-07-08 07:04:09 +08:00
										 |  |  |             X509_EXTENSION_free(extmp); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If replace existing or delete, error since extension must exist | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if ((ext_op == X509V3_ADD_REPLACE_EXISTING) || | 
					
						
							|  |  |  |             (ext_op == X509V3_ADD_DELETE)) { | 
					
						
							|  |  |  |             errcode = X509V3_R_EXTENSION_NOT_FOUND; | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * If we get this far then we have to create an extension: could have | 
					
						
							|  |  |  |      * some flags for alternative encoding schemes... | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ext = X509V3_EXT_i2d(nid, crit, value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ext) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, X509V3_R_ERROR_CREATING_EXTENSION); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* If extension exists replace it.. */ | 
					
						
							|  |  |  |     if (extidx >= 0) { | 
					
						
							|  |  |  |         extmp = sk_X509_EXTENSION_value(*x, extidx); | 
					
						
							|  |  |  |         X509_EXTENSION_free(extmp); | 
					
						
							|  |  |  |         if (!sk_X509_EXTENSION_set(*x, extidx, ext)) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  |     ret = *x; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if (*x == NULL | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  |         && (ret = sk_X509_EXTENSION_new_null()) == NULL) | 
					
						
							|  |  |  |         goto m_fail; | 
					
						
							|  |  |  |     if (!sk_X509_EXTENSION_push(ret, ext)) | 
					
						
							|  |  |  |         goto m_fail; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  |     *x = ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  |  m_fail: | 
					
						
							| 
									
										
										
										
											2022-09-29 19:57:34 +08:00
										 |  |  |     /* ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB); */ | 
					
						
							| 
									
										
										
										
											2017-08-11 21:41:55 +08:00
										 |  |  |     if (ret != *x) | 
					
						
							|  |  |  |         sk_X509_EXTENSION_free(ret); | 
					
						
							|  |  |  |     X509_EXTENSION_free(ext); | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  err: | 
					
						
							|  |  |  |     if (!(flags & X509V3_ADD_SILENT)) | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_X509V3, errcode); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2000-12-25 02:02:33 +08:00
										 |  |  | } |