summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509v3/v3_pmaps.c
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2015-03-08 16:48:49 +0000
committercvs2svn <admin@example.com>2015-03-08 16:48:49 +0000
commitdecf84ba5550c1656a7fdb51b5b81969590c3f03 (patch)
tree44872802e872bdfd60730fa9cf01d9d5751251c1 /src/lib/libcrypto/x509v3/v3_pmaps.c
parent7a8f138352aa4eb7b65ac4b1a5fe7630fbee1427 (diff)
downloadopenbsd-libressl-v2.1.5.tar.gz
openbsd-libressl-v2.1.5.tar.bz2
openbsd-libressl-v2.1.5.zip
This commit was manufactured by cvs2git to create branch 'OPENBSD_5_7'.libressl-v2.1.5
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_pmaps.c')
-rw-r--r--src/lib/libcrypto/x509v3/v3_pmaps.c177
1 files changed, 0 insertions, 177 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_pmaps.c b/src/lib/libcrypto/x509v3/v3_pmaps.c
deleted file mode 100644
index e8099d7f12..0000000000
--- a/src/lib/libcrypto/x509v3/v3_pmaps.c
+++ /dev/null
@@ -1,177 +0,0 @@
1/* $OpenBSD: v3_pmaps.c,v 1.7 2015/02/13 01:16:26 beck Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project.
4 */
5/* ====================================================================
6 * Copyright (c) 2003 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 *
57 */
58
59
60#include <stdio.h>
61
62#include <openssl/asn1t.h>
63#include <openssl/conf.h>
64#include <openssl/err.h>
65#include <openssl/x509v3.h>
66
67static void *v2i_POLICY_MAPPINGS(const X509V3_EXT_METHOD *method,
68 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
69static STACK_OF(CONF_VALUE) *i2v_POLICY_MAPPINGS(
70 const X509V3_EXT_METHOD *method, void *pmps, STACK_OF(CONF_VALUE) *extlist);
71
72const X509V3_EXT_METHOD v3_policy_mappings = {
73 NID_policy_mappings, 0,
74 ASN1_ITEM_ref(POLICY_MAPPINGS),
75 0, 0, 0, 0,
76 0, 0,
77 i2v_POLICY_MAPPINGS,
78 v2i_POLICY_MAPPINGS,
79 0, 0,
80 NULL
81};
82
83ASN1_SEQUENCE(POLICY_MAPPING) = {
84 ASN1_SIMPLE(POLICY_MAPPING, issuerDomainPolicy, ASN1_OBJECT),
85 ASN1_SIMPLE(POLICY_MAPPING, subjectDomainPolicy, ASN1_OBJECT)
86} ASN1_SEQUENCE_END(POLICY_MAPPING)
87
88ASN1_ITEM_TEMPLATE(POLICY_MAPPINGS) =
89ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, POLICY_MAPPINGS,
90 POLICY_MAPPING)
91ASN1_ITEM_TEMPLATE_END(POLICY_MAPPINGS)
92
93
94POLICY_MAPPING *
95POLICY_MAPPING_new(void)
96{
97 return (POLICY_MAPPING*)ASN1_item_new(&POLICY_MAPPING_it);
98}
99
100void
101POLICY_MAPPING_free(POLICY_MAPPING *a)
102{
103 ASN1_item_free((ASN1_VALUE *)a, &POLICY_MAPPING_it);
104}
105
106static STACK_OF(CONF_VALUE) *
107i2v_POLICY_MAPPINGS(const X509V3_EXT_METHOD *method, void *a,
108 STACK_OF(CONF_VALUE) *ext_list)
109{
110 POLICY_MAPPINGS *pmaps = a;
111 POLICY_MAPPING *pmap;
112 int i;
113 char obj_tmp1[80];
114 char obj_tmp2[80];
115
116 for (i = 0; i < sk_POLICY_MAPPING_num(pmaps); i++) {
117 pmap = sk_POLICY_MAPPING_value(pmaps, i);
118 i2t_ASN1_OBJECT(obj_tmp1, 80, pmap->issuerDomainPolicy);
119 i2t_ASN1_OBJECT(obj_tmp2, 80, pmap->subjectDomainPolicy);
120 X509V3_add_value(obj_tmp1, obj_tmp2, &ext_list);
121 }
122 return ext_list;
123}
124
125static void *
126v2i_POLICY_MAPPINGS(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
127 STACK_OF(CONF_VALUE) *nval)
128{
129 POLICY_MAPPINGS *pmaps = NULL;
130 POLICY_MAPPING *pmap = NULL;
131 ASN1_OBJECT *obj1 = NULL, *obj2 = NULL;
132 CONF_VALUE *val;
133 int i, rc;
134
135 if (!(pmaps = sk_POLICY_MAPPING_new_null())) {
136 X509V3err(X509V3_F_V2I_POLICY_MAPPINGS, ERR_R_MALLOC_FAILURE);
137 return NULL;
138 }
139
140 for (i = 0; i < sk_CONF_VALUE_num(nval); i++) {
141 val = sk_CONF_VALUE_value(nval, i);
142 if (!val->value || !val->name) {
143 rc = X509V3_R_INVALID_OBJECT_IDENTIFIER;
144 goto err;
145 }
146 obj1 = OBJ_txt2obj(val->name, 0);
147 obj2 = OBJ_txt2obj(val->value, 0);
148 if (!obj1 || !obj2) {
149 rc = X509V3_R_INVALID_OBJECT_IDENTIFIER;
150 goto err;
151 }
152 pmap = POLICY_MAPPING_new();
153 if (!pmap) {
154 rc = ERR_R_MALLOC_FAILURE;
155 goto err;
156 }
157 pmap->issuerDomainPolicy = obj1;
158 pmap->subjectDomainPolicy = obj2;
159 obj1 = obj2 = NULL;
160 if (sk_POLICY_MAPPING_push(pmaps, pmap) == 0) {
161 rc = ERR_R_MALLOC_FAILURE;
162 goto err;
163 }
164 pmap = NULL;
165 }
166 return pmaps;
167
168err:
169 sk_POLICY_MAPPING_pop_free(pmaps, POLICY_MAPPING_free);
170 X509V3err(X509V3_F_V2I_POLICY_MAPPINGS, rc);
171 if (rc == X509V3_R_INVALID_OBJECT_IDENTIFIER)
172 X509V3_conf_err(val);
173 ASN1_OBJECT_free(obj1);
174 ASN1_OBJECT_free(obj2);
175 POLICY_MAPPING_free(pmap);
176 return NULL;
177}