diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_conf.c')
| -rw-r--r-- | src/lib/libcrypto/x509v3/v3_conf.c | 387 |
1 files changed, 253 insertions, 134 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_conf.c b/src/lib/libcrypto/x509v3/v3_conf.c index f19bb3ad84..1a3448e121 100644 --- a/src/lib/libcrypto/x509v3/v3_conf.c +++ b/src/lib/libcrypto/x509v3/v3_conf.c | |||
| @@ -68,115 +68,138 @@ | |||
| 68 | 68 | ||
| 69 | static int v3_check_critical(char **value); | 69 | static int v3_check_critical(char **value); |
| 70 | static int v3_check_generic(char **value); | 70 | static int v3_check_generic(char **value); |
| 71 | static X509_EXTENSION *do_ext_conf(LHASH *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value); | 71 | static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value); |
| 72 | static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type); | 72 | static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type); |
| 73 | static char *conf_lhash_get_string(void *db, char *section, char *value); | 73 | static char *conf_lhash_get_string(void *db, char *section, char *value); |
| 74 | static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section); | 74 | static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section); |
| 75 | static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, | 75 | static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, |
| 76 | int crit, void *ext_struc); | 76 | int crit, void *ext_struc); |
| 77 | /* LHASH *conf: Config file */ | 77 | /* CONF *conf: Config file */ |
| 78 | /* char *name: Name */ | 78 | /* char *name: Name */ |
| 79 | /* char *value: Value */ | 79 | /* char *value: Value */ |
| 80 | X509_EXTENSION *X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name, | 80 | X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, |
| 81 | char *value) | 81 | char *value) |
| 82 | { | 82 | { |
| 83 | int crit; | 83 | int crit; |
| 84 | int ext_type; | 84 | int ext_type; |
| 85 | X509_EXTENSION *ret; | 85 | X509_EXTENSION *ret; |
| 86 | crit = v3_check_critical(&value); | 86 | crit = v3_check_critical(&value); |
| 87 | if((ext_type = v3_check_generic(&value))) | 87 | if ((ext_type = v3_check_generic(&value))) |
| 88 | return v3_generic_extension(name, value, crit, ext_type); | 88 | return v3_generic_extension(name, value, crit, ext_type); |
| 89 | ret = do_ext_conf(conf, ctx, OBJ_sn2nid(name), crit, value); | 89 | ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value); |
| 90 | if(!ret) { | 90 | if (!ret) |
| 91 | { | ||
| 91 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_ERROR_IN_EXTENSION); | 92 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_ERROR_IN_EXTENSION); |
| 92 | ERR_add_error_data(4,"name=", name, ", value=", value); | 93 | ERR_add_error_data(4,"name=", name, ", value=", value); |
| 93 | } | 94 | } |
| 94 | return ret; | 95 | return ret; |
| 95 | } | 96 | } |
| 96 | 97 | ||
| 97 | /* LHASH *conf: Config file */ | 98 | /* CONF *conf: Config file */ |
| 98 | /* char *value: Value */ | 99 | /* char *value: Value */ |
| 99 | X509_EXTENSION *X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid, | 100 | X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, |
| 100 | char *value) | 101 | char *value) |
| 101 | { | 102 | { |
| 102 | int crit; | 103 | int crit; |
| 103 | int ext_type; | 104 | int ext_type; |
| 104 | crit = v3_check_critical(&value); | 105 | crit = v3_check_critical(&value); |
| 105 | if((ext_type = v3_check_generic(&value))) | 106 | if ((ext_type = v3_check_generic(&value))) |
| 106 | return v3_generic_extension(OBJ_nid2sn(ext_nid), | 107 | return v3_generic_extension(OBJ_nid2sn(ext_nid), |
| 107 | value, crit, ext_type); | 108 | value, crit, ext_type); |
| 108 | return do_ext_conf(conf, ctx, ext_nid, crit, value); | 109 | return do_ext_nconf(conf, ctx, ext_nid, crit, value); |
| 109 | } | 110 | } |
| 110 | 111 | ||
| 111 | /* LHASH *conf: Config file */ | 112 | /* CONF *conf: Config file */ |
| 112 | /* char *value: Value */ | 113 | /* char *value: Value */ |
| 113 | static X509_EXTENSION *do_ext_conf(LHASH *conf, X509V3_CTX *ctx, int ext_nid, | 114 | static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, |
| 114 | int crit, char *value) | 115 | int crit, char *value) |
| 115 | { | 116 | { |
| 116 | X509V3_EXT_METHOD *method; | 117 | X509V3_EXT_METHOD *method; |
| 117 | X509_EXTENSION *ext; | 118 | X509_EXTENSION *ext; |
| 118 | STACK_OF(CONF_VALUE) *nval; | 119 | STACK_OF(CONF_VALUE) *nval; |
| 119 | void *ext_struc; | 120 | void *ext_struc; |
| 120 | if(ext_nid == NID_undef) { | 121 | if (ext_nid == NID_undef) |
| 122 | { | ||
| 121 | X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION_NAME); | 123 | X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION_NAME); |
| 122 | return NULL; | 124 | return NULL; |
| 123 | } | 125 | } |
| 124 | if(!(method = X509V3_EXT_get_nid(ext_nid))) { | 126 | if (!(method = X509V3_EXT_get_nid(ext_nid))) |
| 127 | { | ||
| 125 | X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION); | 128 | X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION); |
| 126 | return NULL; | 129 | return NULL; |
| 127 | } | 130 | } |
| 128 | /* Now get internal extension representation based on type */ | 131 | /* Now get internal extension representation based on type */ |
| 129 | if(method->v2i) { | 132 | if (method->v2i) |
| 130 | if(*value == '@') nval = CONF_get_section(conf, value + 1); | 133 | { |
| 134 | if(*value == '@') nval = NCONF_get_section(conf, value + 1); | ||
| 131 | else nval = X509V3_parse_list(value); | 135 | else nval = X509V3_parse_list(value); |
| 132 | if(!nval) { | 136 | if(!nval) |
| 137 | { | ||
| 133 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_INVALID_EXTENSION_STRING); | 138 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_INVALID_EXTENSION_STRING); |
| 134 | ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value); | 139 | ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value); |
| 135 | return NULL; | 140 | return NULL; |
| 136 | } | 141 | } |
| 137 | ext_struc = method->v2i(method, ctx, nval); | 142 | ext_struc = method->v2i(method, ctx, nval); |
| 138 | if(*value != '@') sk_CONF_VALUE_pop_free(nval, | 143 | if(*value != '@') sk_CONF_VALUE_pop_free(nval, |
| 139 | X509V3_conf_free); | 144 | X509V3_conf_free); |
| 140 | if(!ext_struc) return NULL; | 145 | if(!ext_struc) return NULL; |
| 141 | } else if(method->s2i) { | 146 | } |
| 147 | else if(method->s2i) | ||
| 148 | { | ||
| 142 | if(!(ext_struc = method->s2i(method, ctx, value))) return NULL; | 149 | if(!(ext_struc = method->s2i(method, ctx, value))) return NULL; |
| 143 | } else if(method->r2i) { | 150 | } |
| 144 | if(!ctx->db) { | 151 | else if(method->r2i) |
| 152 | { | ||
| 153 | if(!ctx->db) | ||
| 154 | { | ||
| 145 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_NO_CONFIG_DATABASE); | 155 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_NO_CONFIG_DATABASE); |
| 146 | return NULL; | 156 | return NULL; |
| 147 | } | 157 | } |
| 148 | if(!(ext_struc = method->r2i(method, ctx, value))) return NULL; | 158 | if(!(ext_struc = method->r2i(method, ctx, value))) return NULL; |
| 149 | } else { | 159 | } |
| 160 | else | ||
| 161 | { | ||
| 150 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED); | 162 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED); |
| 151 | ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid)); | 163 | ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid)); |
| 152 | return NULL; | 164 | return NULL; |
| 153 | } | 165 | } |
| 154 | 166 | ||
| 155 | ext = do_ext_i2d(method, ext_nid, crit, ext_struc); | 167 | ext = do_ext_i2d(method, ext_nid, crit, ext_struc); |
| 156 | method->ext_free(ext_struc); | 168 | if(method->it) ASN1_item_free(ext_struc, ASN1_ITEM_ptr(method->it)); |
| 169 | else method->ext_free(ext_struc); | ||
| 157 | return ext; | 170 | return ext; |
| 158 | 171 | ||
| 159 | } | 172 | } |
| 160 | 173 | ||
| 161 | static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, | 174 | static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, |
| 162 | int crit, void *ext_struc) | 175 | int crit, void *ext_struc) |
| 163 | { | 176 | { |
| 164 | unsigned char *ext_der, *p; | 177 | unsigned char *ext_der; |
| 165 | int ext_len; | 178 | int ext_len; |
| 166 | ASN1_OCTET_STRING *ext_oct; | 179 | ASN1_OCTET_STRING *ext_oct; |
| 167 | X509_EXTENSION *ext; | 180 | X509_EXTENSION *ext; |
| 168 | /* Convert internal representation to DER */ | 181 | /* Convert internal representation to DER */ |
| 169 | ext_len = method->i2d(ext_struc, NULL); | 182 | if (method->it) |
| 170 | if(!(ext_der = Malloc(ext_len))) goto merr; | 183 | { |
| 171 | p = ext_der; | 184 | ext_der = NULL; |
| 172 | method->i2d(ext_struc, &p); | 185 | ext_len = ASN1_item_i2d(ext_struc, &ext_der, ASN1_ITEM_ptr(method->it)); |
| 173 | if(!(ext_oct = ASN1_OCTET_STRING_new())) goto merr; | 186 | if (ext_len < 0) goto merr; |
| 187 | } | ||
| 188 | else | ||
| 189 | { | ||
| 190 | unsigned char *p; | ||
| 191 | ext_len = method->i2d(ext_struc, NULL); | ||
| 192 | if(!(ext_der = OPENSSL_malloc(ext_len))) goto merr; | ||
| 193 | p = ext_der; | ||
| 194 | method->i2d(ext_struc, &p); | ||
| 195 | } | ||
| 196 | if (!(ext_oct = M_ASN1_OCTET_STRING_new())) goto merr; | ||
| 174 | ext_oct->data = ext_der; | 197 | ext_oct->data = ext_der; |
| 175 | ext_oct->length = ext_len; | 198 | ext_oct->length = ext_len; |
| 176 | 199 | ||
| 177 | ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct); | 200 | ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct); |
| 178 | if(!ext) goto merr; | 201 | if (!ext) goto merr; |
| 179 | ASN1_OCTET_STRING_free(ext_oct); | 202 | M_ASN1_OCTET_STRING_free(ext_oct); |
| 180 | 203 | ||
| 181 | return ext; | 204 | return ext; |
| 182 | 205 | ||
| @@ -184,14 +207,14 @@ static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, | |||
| 184 | X509V3err(X509V3_F_DO_EXT_I2D,ERR_R_MALLOC_FAILURE); | 207 | X509V3err(X509V3_F_DO_EXT_I2D,ERR_R_MALLOC_FAILURE); |
| 185 | return NULL; | 208 | return NULL; |
| 186 | 209 | ||
| 187 | } | 210 | } |
| 188 | 211 | ||
| 189 | /* Given an internal structure, nid and critical flag create an extension */ | 212 | /* Given an internal structure, nid and critical flag create an extension */ |
| 190 | 213 | ||
| 191 | X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc) | 214 | X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc) |
| 192 | { | 215 | { |
| 193 | X509V3_EXT_METHOD *method; | 216 | X509V3_EXT_METHOD *method; |
| 194 | if(!(method = X509V3_EXT_get_nid(ext_nid))) { | 217 | if (!(method = X509V3_EXT_get_nid(ext_nid))) { |
| 195 | X509V3err(X509V3_F_X509V3_EXT_I2D,X509V3_R_UNKNOWN_EXTENSION); | 218 | X509V3err(X509V3_F_X509V3_EXT_I2D,X509V3_R_UNKNOWN_EXTENSION); |
| 196 | return NULL; | 219 | return NULL; |
| 197 | } | 220 | } |
| @@ -202,7 +225,7 @@ X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc) | |||
| 202 | static int v3_check_critical(char **value) | 225 | static int v3_check_critical(char **value) |
| 203 | { | 226 | { |
| 204 | char *p = *value; | 227 | char *p = *value; |
| 205 | if((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0; | 228 | if ((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0; |
| 206 | p+=9; | 229 | p+=9; |
| 207 | while(isspace((unsigned char)*p)) p++; | 230 | while(isspace((unsigned char)*p)) p++; |
| 208 | *value = p; | 231 | *value = p; |
| @@ -213,134 +236,212 @@ static int v3_check_critical(char **value) | |||
| 213 | static int v3_check_generic(char **value) | 236 | static int v3_check_generic(char **value) |
| 214 | { | 237 | { |
| 215 | char *p = *value; | 238 | char *p = *value; |
| 216 | if((strlen(p) < 4) || strncmp(p, "DER:,", 4)) return 0; | 239 | if ((strlen(p) < 4) || strncmp(p, "DER:,", 4)) return 0; |
| 217 | p+=4; | 240 | p+=4; |
| 218 | while(isspace((unsigned char)*p)) p++; | 241 | while (isspace((unsigned char)*p)) p++; |
| 219 | *value = p; | 242 | *value = p; |
| 220 | return 1; | 243 | return 1; |
| 221 | } | 244 | } |
| 222 | 245 | ||
| 223 | /* Create a generic extension: for now just handle RAW type */ | 246 | /* Create a generic extension: for now just handle DER type */ |
| 224 | static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, | 247 | static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, |
| 225 | int crit, int type) | 248 | int crit, int type) |
| 226 | { | 249 | { |
| 227 | unsigned char *ext_der=NULL; | 250 | unsigned char *ext_der=NULL; |
| 228 | long ext_len; | 251 | long ext_len; |
| 229 | ASN1_OBJECT *obj=NULL; | 252 | ASN1_OBJECT *obj=NULL; |
| 230 | ASN1_OCTET_STRING *oct=NULL; | 253 | ASN1_OCTET_STRING *oct=NULL; |
| 231 | X509_EXTENSION *extension=NULL; | 254 | X509_EXTENSION *extension=NULL; |
| 232 | if(!(obj = OBJ_txt2obj(ext, 0))) { | 255 | if (!(obj = OBJ_txt2obj(ext, 0))) |
| 233 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_NAME_ERROR); | 256 | { |
| 234 | ERR_add_error_data(2, "name=", ext); | 257 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_NAME_ERROR); |
| 235 | goto err; | 258 | ERR_add_error_data(2, "name=", ext); |
| 236 | } | 259 | goto err; |
| 260 | } | ||
| 237 | 261 | ||
| 238 | if(!(ext_der = string_to_hex(value, &ext_len))) { | 262 | if (!(ext_der = string_to_hex(value, &ext_len))) |
| 239 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_VALUE_ERROR); | 263 | { |
| 240 | ERR_add_error_data(2, "value=", value); | 264 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_VALUE_ERROR); |
| 241 | goto err; | 265 | ERR_add_error_data(2, "value=", value); |
| 242 | } | 266 | goto err; |
| 267 | } | ||
| 243 | 268 | ||
| 244 | if(!(oct = ASN1_OCTET_STRING_new())) { | 269 | if (!(oct = M_ASN1_OCTET_STRING_new())) |
| 245 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,ERR_R_MALLOC_FAILURE); | 270 | { |
| 246 | goto err; | 271 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,ERR_R_MALLOC_FAILURE); |
| 247 | } | 272 | goto err; |
| 273 | } | ||
| 248 | 274 | ||
| 249 | oct->data = ext_der; | 275 | oct->data = ext_der; |
| 250 | oct->length = ext_len; | 276 | oct->length = ext_len; |
| 251 | ext_der = NULL; | 277 | ext_der = NULL; |
| 252 | 278 | ||
| 253 | extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct); | 279 | extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct); |
| 254 | 280 | ||
| 255 | err: | 281 | err: |
| 256 | ASN1_OBJECT_free(obj); | 282 | ASN1_OBJECT_free(obj); |
| 257 | ASN1_OCTET_STRING_free(oct); | 283 | M_ASN1_OCTET_STRING_free(oct); |
| 258 | if(ext_der) Free(ext_der); | 284 | if(ext_der) OPENSSL_free(ext_der); |
| 259 | return extension; | 285 | return extension; |
| 260 | } | 286 | |
| 287 | } | ||
| 261 | 288 | ||
| 262 | 289 | ||
| 263 | /* This is the main function: add a bunch of extensions based on a config file | 290 | /* This is the main function: add a bunch of extensions based on a config file |
| 264 | * section | 291 | * section to an extension STACK. |
| 265 | */ | 292 | */ |
| 266 | 293 | ||
| 267 | int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, | 294 | |
| 268 | X509 *cert) | 295 | int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, |
| 269 | { | 296 | STACK_OF(X509_EXTENSION) **sk) |
| 297 | { | ||
| 270 | X509_EXTENSION *ext; | 298 | X509_EXTENSION *ext; |
| 271 | STACK_OF(CONF_VALUE) *nval; | 299 | STACK_OF(CONF_VALUE) *nval; |
| 272 | CONF_VALUE *val; | 300 | CONF_VALUE *val; |
| 273 | int i; | 301 | int i; |
| 274 | if(!(nval = CONF_get_section(conf, section))) return 0; | 302 | if (!(nval = NCONF_get_section(conf, section))) return 0; |
| 275 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | 303 | for (i = 0; i < sk_CONF_VALUE_num(nval); i++) |
| 304 | { | ||
| 276 | val = sk_CONF_VALUE_value(nval, i); | 305 | val = sk_CONF_VALUE_value(nval, i); |
| 277 | if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value))) | 306 | if (!(ext = X509V3_EXT_nconf(conf, ctx, val->name, val->value))) |
| 278 | return 0; | 307 | return 0; |
| 279 | if(cert) X509_add_ext(cert, ext, -1); | 308 | if (sk) X509v3_add_ext(sk, ext, -1); |
| 280 | X509_EXTENSION_free(ext); | 309 | X509_EXTENSION_free(ext); |
| 281 | } | 310 | } |
| 282 | return 1; | 311 | return 1; |
| 283 | } | 312 | } |
| 313 | |||
| 314 | /* Convenience functions to add extensions to a certificate, CRL and request */ | ||
| 315 | |||
| 316 | int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, | ||
| 317 | X509 *cert) | ||
| 318 | { | ||
| 319 | STACK_OF(X509_EXTENSION) **sk = NULL; | ||
| 320 | if (cert) | ||
| 321 | sk = &cert->cert_info->extensions; | ||
| 322 | return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); | ||
| 323 | } | ||
| 284 | 324 | ||
| 285 | /* Same as above but for a CRL */ | 325 | /* Same as above but for a CRL */ |
| 286 | 326 | ||
| 287 | int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, | 327 | int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, |
| 288 | X509_CRL *crl) | 328 | X509_CRL *crl) |
| 289 | { | 329 | { |
| 290 | X509_EXTENSION *ext; | 330 | STACK_OF(X509_EXTENSION) **sk = NULL; |
| 291 | STACK_OF(CONF_VALUE) *nval; | 331 | if (crl) |
| 292 | CONF_VALUE *val; | 332 | sk = &crl->crl->extensions; |
| 333 | return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); | ||
| 334 | } | ||
| 335 | |||
| 336 | /* Add extensions to certificate request */ | ||
| 337 | |||
| 338 | int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, | ||
| 339 | X509_REQ *req) | ||
| 340 | { | ||
| 341 | STACK_OF(X509_EXTENSION) *extlist = NULL, **sk = NULL; | ||
| 293 | int i; | 342 | int i; |
| 294 | if(!(nval = CONF_get_section(conf, section))) return 0; | 343 | if (req) |
| 295 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | 344 | sk = &extlist; |
| 296 | val = sk_CONF_VALUE_value(nval, i); | 345 | i = X509V3_EXT_add_nconf_sk(conf, ctx, section, sk); |
| 297 | if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value))) | 346 | if (!i || !sk) |
| 298 | return 0; | 347 | return i; |
| 299 | if(crl) X509_CRL_add_ext(crl, ext, -1); | 348 | i = X509_REQ_add_extensions(req, extlist); |
| 300 | X509_EXTENSION_free(ext); | 349 | sk_X509_EXTENSION_pop_free(extlist, X509_EXTENSION_free); |
| 350 | return i; | ||
| 301 | } | 351 | } |
| 302 | return 1; | ||
| 303 | } | ||
| 304 | 352 | ||
| 305 | /* Config database functions */ | 353 | /* Config database functions */ |
| 306 | 354 | ||
| 307 | char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section) | 355 | char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section) |
| 308 | { | 356 | { |
| 309 | if(ctx->db_meth->get_string) | 357 | if (ctx->db_meth->get_string) |
| 310 | return ctx->db_meth->get_string(ctx->db, name, section); | 358 | return ctx->db_meth->get_string(ctx->db, name, section); |
| 311 | return NULL; | 359 | return NULL; |
| 312 | } | 360 | } |
| 313 | 361 | ||
| 314 | STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section) | 362 | STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section) |
| 315 | { | 363 | { |
| 316 | if(ctx->db_meth->get_section) | 364 | if (ctx->db_meth->get_section) |
| 317 | return ctx->db_meth->get_section(ctx->db, section); | 365 | return ctx->db_meth->get_section(ctx->db, section); |
| 318 | return NULL; | 366 | return NULL; |
| 319 | } | 367 | } |
| 320 | 368 | ||
| 321 | void X509V3_string_free(X509V3_CTX *ctx, char *str) | 369 | void X509V3_string_free(X509V3_CTX *ctx, char *str) |
| 322 | { | 370 | { |
| 323 | if(!str) return; | 371 | if (!str) return; |
| 324 | if(ctx->db_meth->free_string) | 372 | if (ctx->db_meth->free_string) |
| 325 | ctx->db_meth->free_string(ctx->db, str); | 373 | ctx->db_meth->free_string(ctx->db, str); |
| 326 | } | 374 | } |
| 327 | 375 | ||
| 328 | void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) | 376 | void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) |
| 329 | { | 377 | { |
| 330 | if(!section) return; | 378 | if (!section) return; |
| 331 | if(ctx->db_meth->free_section) | 379 | if (ctx->db_meth->free_section) |
| 332 | ctx->db_meth->free_section(ctx->db, section); | 380 | ctx->db_meth->free_section(ctx->db, section); |
| 333 | } | 381 | } |
| 382 | |||
| 383 | static char *nconf_get_string(void *db, char *section, char *value) | ||
| 384 | { | ||
| 385 | return NCONF_get_string(db, section, value); | ||
| 386 | } | ||
| 387 | |||
| 388 | static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, char *section) | ||
| 389 | { | ||
| 390 | return NCONF_get_section(db, section); | ||
| 391 | } | ||
| 392 | |||
| 393 | static X509V3_CONF_METHOD nconf_method = { | ||
| 394 | nconf_get_string, | ||
| 395 | nconf_get_section, | ||
| 396 | NULL, | ||
| 397 | NULL | ||
| 398 | }; | ||
| 399 | |||
| 400 | void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf) | ||
| 401 | { | ||
| 402 | ctx->db_meth = &nconf_method; | ||
| 403 | ctx->db = conf; | ||
| 404 | } | ||
| 405 | |||
| 406 | void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req, | ||
| 407 | X509_CRL *crl, int flags) | ||
| 408 | { | ||
| 409 | ctx->issuer_cert = issuer; | ||
| 410 | ctx->subject_cert = subj; | ||
| 411 | ctx->crl = crl; | ||
| 412 | ctx->subject_req = req; | ||
| 413 | ctx->flags = flags; | ||
| 414 | } | ||
| 415 | |||
| 416 | /* Old conf compatibility functions */ | ||
| 417 | |||
| 418 | X509_EXTENSION *X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name, | ||
| 419 | char *value) | ||
| 420 | { | ||
| 421 | CONF ctmp; | ||
| 422 | CONF_set_nconf(&ctmp, conf); | ||
| 423 | return X509V3_EXT_nconf(&ctmp, ctx, name, value); | ||
| 424 | } | ||
| 425 | |||
| 426 | /* LHASH *conf: Config file */ | ||
| 427 | /* char *value: Value */ | ||
| 428 | X509_EXTENSION *X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid, | ||
| 429 | char *value) | ||
| 430 | { | ||
| 431 | CONF ctmp; | ||
| 432 | CONF_set_nconf(&ctmp, conf); | ||
| 433 | return X509V3_EXT_nconf_nid(&ctmp, ctx, ext_nid, value); | ||
| 434 | } | ||
| 334 | 435 | ||
| 335 | static char *conf_lhash_get_string(void *db, char *section, char *value) | 436 | static char *conf_lhash_get_string(void *db, char *section, char *value) |
| 336 | { | 437 | { |
| 337 | return CONF_get_string(db, section, value); | 438 | return CONF_get_string(db, section, value); |
| 338 | } | 439 | } |
| 339 | 440 | ||
| 340 | static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section) | 441 | static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section) |
| 341 | { | 442 | { |
| 342 | return CONF_get_section(db, section); | 443 | return CONF_get_section(db, section); |
| 343 | } | 444 | } |
| 344 | 445 | ||
| 345 | static X509V3_CONF_METHOD conf_lhash_method = { | 446 | static X509V3_CONF_METHOD conf_lhash_method = { |
| 346 | conf_lhash_get_string, | 447 | conf_lhash_get_string, |
| @@ -350,17 +451,35 @@ NULL | |||
| 350 | }; | 451 | }; |
| 351 | 452 | ||
| 352 | void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH *lhash) | 453 | void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH *lhash) |
| 353 | { | 454 | { |
| 354 | ctx->db_meth = &conf_lhash_method; | 455 | ctx->db_meth = &conf_lhash_method; |
| 355 | ctx->db = lhash; | 456 | ctx->db = lhash; |
| 356 | } | 457 | } |
| 357 | 458 | ||
| 358 | void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req, | 459 | int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, |
| 359 | X509_CRL *crl, int flags) | 460 | X509 *cert) |
| 360 | { | 461 | { |
| 361 | ctx->issuer_cert = issuer; | 462 | CONF ctmp; |
| 362 | ctx->subject_cert = subj; | 463 | CONF_set_nconf(&ctmp, conf); |
| 363 | ctx->crl = crl; | 464 | return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert); |
| 364 | ctx->subject_req = req; | 465 | } |
| 365 | ctx->flags = flags; | 466 | |
| 366 | } | 467 | /* Same as above but for a CRL */ |
| 468 | |||
| 469 | int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, | ||
| 470 | X509_CRL *crl) | ||
| 471 | { | ||
| 472 | CONF ctmp; | ||
| 473 | CONF_set_nconf(&ctmp, conf); | ||
| 474 | return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl); | ||
| 475 | } | ||
| 476 | |||
| 477 | /* Add extensions to certificate request */ | ||
| 478 | |||
| 479 | int X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, | ||
| 480 | X509_REQ *req) | ||
| 481 | { | ||
| 482 | CONF ctmp; | ||
| 483 | CONF_set_nconf(&ctmp, conf); | ||
| 484 | return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req); | ||
| 485 | } | ||
