blob: 4802116ba0d4552b171580afe09f6e6e60dfcfb6 [file] [log] [blame]
Matt Caswell0f113f32015-01-22 03:40:55 +00001/*
Rich Salzd2e9e322016-05-17 14:51:26 -04002 * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +00003 *
Rich Salzd2e9e322016-05-17 14:51:26 -04004 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +00008 */
9
10#include <stdio.h>
Richard Levitteb39fc562015-05-14 16:56:48 +020011#include "internal/cryptlib.h"
Bodo Möllerec577821999-04-23 22:13:45 +000012#include <openssl/conf.h>
13#include <openssl/x509v3.h>
Ben Lauriedf2ee0e2015-09-05 13:32:58 +010014#include "ext_dat.h"
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000015
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000016static BIT_STRING_BITNAME ns_cert_type_table[] = {
Matt Caswell0f113f32015-01-22 03:40:55 +000017 {0, "SSL Client", "client"},
18 {1, "SSL Server", "server"},
19 {2, "S/MIME", "email"},
20 {3, "Object Signing", "objsign"},
21 {4, "Unused", "reserved"},
22 {5, "SSL CA", "sslCA"},
23 {6, "S/MIME CA", "emailCA"},
24 {7, "Object Signing CA", "objCA"},
25 {-1, NULL, NULL}
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000026};
27
28static BIT_STRING_BITNAME key_usage_type_table[] = {
Matt Caswell0f113f32015-01-22 03:40:55 +000029 {0, "Digital Signature", "digitalSignature"},
30 {1, "Non Repudiation", "nonRepudiation"},
31 {2, "Key Encipherment", "keyEncipherment"},
32 {3, "Data Encipherment", "dataEncipherment"},
33 {4, "Key Agreement", "keyAgreement"},
34 {5, "Certificate Sign", "keyCertSign"},
35 {6, "CRL Sign", "cRLSign"},
36 {7, "Encipher Only", "encipherOnly"},
37 {8, "Decipher Only", "decipherOnly"},
38 {-1, NULL, NULL}
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000039};
40
Matt Caswell0f113f32015-01-22 03:40:55 +000041const X509V3_EXT_METHOD v3_nscert =
42EXT_BITSTRING(NID_netscape_cert_type, ns_cert_type_table);
43const X509V3_EXT_METHOD v3_key_usage =
44EXT_BITSTRING(NID_key_usage, key_usage_type_table);
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000045
Dr. Stephen Henson5d6383c2004-03-28 12:40:11 +000046STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
Matt Caswell0f113f32015-01-22 03:40:55 +000047 ASN1_BIT_STRING *bits,
48 STACK_OF(CONF_VALUE) *ret)
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000049{
Matt Caswell0f113f32015-01-22 03:40:55 +000050 BIT_STRING_BITNAME *bnam;
51 for (bnam = method->usr_data; bnam->lname; bnam++) {
52 if (ASN1_BIT_STRING_get_bit(bits, bnam->bitnum))
53 X509V3_add_value(bnam->lname, NULL, &ret);
54 }
55 return ret;
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000056}
Dr. Stephen Henson9aeaf1b1999-01-24 00:50:01 +000057
Matt Caswell0f113f32015-01-22 03:40:55 +000058ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
59 X509V3_CTX *ctx,
60 STACK_OF(CONF_VALUE) *nval)
61{
62 CONF_VALUE *val;
63 ASN1_BIT_STRING *bs;
64 int i;
65 BIT_STRING_BITNAME *bnam;
Rich Salz75ebbd92015-05-06 13:43:59 -040066 if ((bs = ASN1_BIT_STRING_new()) == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +000067 X509V3err(X509V3_F_V2I_ASN1_BIT_STRING, ERR_R_MALLOC_FAILURE);
68 return NULL;
69 }
70 for (i = 0; i < sk_CONF_VALUE_num(nval); i++) {
71 val = sk_CONF_VALUE_value(nval, i);
72 for (bnam = method->usr_data; bnam->lname; bnam++) {
Rich Salz86885c22015-05-06 14:56:14 -040073 if (strcmp(bnam->sname, val->name) == 0
74 || strcmp(bnam->lname, val->name) == 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +000075 if (!ASN1_BIT_STRING_set_bit(bs, bnam->bitnum, 1)) {
76 X509V3err(X509V3_F_V2I_ASN1_BIT_STRING,
77 ERR_R_MALLOC_FAILURE);
Dr. Stephen Hensonf422a512015-03-14 04:16:42 +000078 ASN1_BIT_STRING_free(bs);
Matt Caswell0f113f32015-01-22 03:40:55 +000079 return NULL;
80 }
81 break;
82 }
83 }
84 if (!bnam->lname) {
85 X509V3err(X509V3_F_V2I_ASN1_BIT_STRING,
86 X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT);
87 X509V3_conf_err(val);
Dr. Stephen Hensonf422a512015-03-14 04:16:42 +000088 ASN1_BIT_STRING_free(bs);
Matt Caswell0f113f32015-01-22 03:40:55 +000089 return NULL;
90 }
91 }
92 return bs;
93}