1 /* $MirOS: src/lib/libssl/src/crypto/x509v3/v3_sxnet.c,v 1.3 2007/03/08 10:50:17 tg Exp $ */
2
3 /* v3_sxnet.c */
4 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
5 * project 1999.
6 */
7 /* ====================================================================
8 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 *
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
20 * distribution.
21 *
22 * 3. All advertising materials mentioning features or use of this
23 * software must display the following acknowledgment:
24 * "This product includes software developed by the OpenSSL Project
25 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 *
27 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
28 * endorse or promote products derived from this software without
29 * prior written permission. For written permission, please contact
30 * licensing@OpenSSL.org.
31 *
32 * 5. Products derived from this software may not be called "OpenSSL"
33 * nor may "OpenSSL" appear in their names without prior written
34 * permission of the OpenSSL Project.
35 *
36 * 6. Redistributions of any form whatsoever must retain the following
37 * acknowledgment:
38 * "This product includes software developed by the OpenSSL Project
39 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
42 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
44 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
45 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
46 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
47 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
52 * OF THE POSSIBILITY OF SUCH DAMAGE.
53 * ====================================================================
54 *
55 * This product includes cryptographic software written by Eric Young
56 * (eay@cryptsoft.com). This product includes software written by Tim
57 * Hudson (tjh@cryptsoft.com).
58 *
59 */
60
61 #include <stdio.h>
62 #include "cryptlib.h"
63 #include <openssl/conf.h>
64 #include <openssl/asn1.h>
65 #include <openssl/asn1t.h>
66 #include <openssl/x509v3.h>
67
68 /* Support for Thawte strong extranet extension */
69
70 #define SXNET_TEST
71
72 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
73 #ifdef SXNET_TEST
74 static SXNET * sxnet_v2i(X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
75 STACK_OF(CONF_VALUE) *nval);
76 #endif
77 const X509V3_EXT_METHOD v3_sxnet = {
78 NID_sxnet, X509V3_EXT_MULTILINE, ASN1_ITEM_ref(SXNET),
79 0,0,0,0,
80 0,0,
81 0,
82 #ifdef SXNET_TEST
83 (X509V3_EXT_V2I)sxnet_v2i,
84 #else
85 0,
86 #endif
87 (X509V3_EXT_I2R)sxnet_i2r,
88 0,
89 NULL
90 };
91
92 ASN1_SEQUENCE(SXNETID) = {
93 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
94 ASN1_SIMPLE(SXNETID, user, ASN1_OCTET_STRING)
95 } ASN1_SEQUENCE_END(SXNETID)
96
97 IMPLEMENT_ASN1_FUNCTIONS(SXNETID)
98
99 ASN1_SEQUENCE(SXNET) = {
100 ASN1_SIMPLE(SXNET, version, ASN1_INTEGER),
101 ASN1_SEQUENCE_OF(SXNET, ids, SXNETID)
102 } ASN1_SEQUENCE_END(SXNET)
103
104 IMPLEMENT_ASN1_FUNCTIONS(SXNET)
105
106 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
107 int indent)
108 {
109 long v;
110 char *tmp;
111 SXNETID *id;
112 int i;
113 v = ASN1_INTEGER_get(sx->version);
114 BIO_printf(out, "%*sVersion: %ld (0x%lX)", indent, "", v + 1, v);
115 for(i = 0; i < sk_SXNETID_num(sx->ids); i++) {
116 id = sk_SXNETID_value(sx->ids, i);
117 tmp = i2s_ASN1_INTEGER(NULL, id->zone);
118 BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp);
119 OPENSSL_free(tmp);
120 M_ASN1_OCTET_STRING_print(out, id->user);
121 }
122 return 1;
123 }
124
125 #ifdef SXNET_TEST
126
127 /* NBB: this is used for testing only. It should *not* be used for anything
128 * else because it will just take static IDs from the configuration file and
129 * they should really be separate values for each user.
130 */
131
132
sxnet_v2i(X509V3_EXT_METHOD * method,X509V3_CTX * ctx,STACK_OF (CONF_VALUE)* nval)133 static SXNET * sxnet_v2i(X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
134 STACK_OF(CONF_VALUE) *nval)
135 {
136 CONF_VALUE *cnf;
137 SXNET *sx = NULL;
138 int i;
139 for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
140 cnf = sk_CONF_VALUE_value(nval, i);
141 if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
142 return NULL;
143 }
144 return sx;
145 }
146
147
148 #endif
149
150 /* Strong Extranet utility functions */
151
152 /* Add an id given the zone as an ASCII number */
153
SXNET_add_id_asc(SXNET ** psx,char * zone,char * user,int userlen)154 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user,
155 int userlen)
156 {
157 ASN1_INTEGER *izone = NULL;
158 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
159 X509V3err(X509V3_F_SXNET_ADD_ASC,X509V3_R_ERROR_CONVERTING_ZONE);
160 return 0;
161 }
162 return SXNET_add_id_INTEGER(psx, izone, user, userlen);
163 }
164
165 /* Add an id given the zone as an unsigned long */
166
SXNET_add_id_ulong(SXNET ** psx,unsigned long lzone,char * user,int userlen)167 int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user,
168 int userlen)
169 {
170 ASN1_INTEGER *izone = NULL;
171 if(!(izone = M_ASN1_INTEGER_new()) || !ASN1_INTEGER_set(izone, lzone)) {
172 X509V3err(X509V3_F_SXNET_ADD_ID_ULONG,ERR_R_MALLOC_FAILURE);
173 M_ASN1_INTEGER_free(izone);
174 return 0;
175 }
176 return SXNET_add_id_INTEGER(psx, izone, user, userlen);
177
178 }
179
180 /* Add an id given the zone as an ASN1_INTEGER.
181 * Note this version uses the passed integer and doesn't make a copy so don't
182 * free it up afterwards.
183 */
184
SXNET_add_id_INTEGER(SXNET ** psx,ASN1_INTEGER * zone,char * user,int userlen)185 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user,
186 int userlen)
187 {
188 SXNET *sx = NULL;
189 SXNETID *id = NULL;
190 if(!psx || !zone || !user) {
191 X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,X509V3_R_INVALID_NULL_ARGUMENT);
192 return 0;
193 }
194 if(userlen == -1) userlen = strlen(user);
195 if(userlen > 64) {
196 X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,X509V3_R_USER_TOO_LONG);
197 return 0;
198 }
199 if(!*psx) {
200 if(!(sx = SXNET_new())) goto err;
201 if(!ASN1_INTEGER_set(sx->version, 0)) goto err;
202 *psx = sx;
203 } else sx = *psx;
204 if(SXNET_get_id_INTEGER(sx, zone)) {
205 X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,X509V3_R_DUPLICATE_ZONE_ID);
206 return 0;
207 }
208
209 if(!(id = SXNETID_new())) goto err;
210 if(userlen == -1) userlen = strlen(user);
211
212 if(!M_ASN1_OCTET_STRING_set(id->user, user, userlen)) goto err;
213 if(!sk_SXNETID_push(sx->ids, id)) goto err;
214 id->zone = zone;
215 return 1;
216
217 err:
218 X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,ERR_R_MALLOC_FAILURE);
219 SXNETID_free(id);
220 SXNET_free(sx);
221 *psx = NULL;
222 return 0;
223 }
224
SXNET_get_id_asc(SXNET * sx,char * zone)225 ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone)
226 {
227 ASN1_INTEGER *izone = NULL;
228 ASN1_OCTET_STRING *oct;
229 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
230 X509V3err(X509V3_F_SXNET_GET_ID_ASC,X509V3_R_ERROR_CONVERTING_ZONE);
231 return NULL;
232 }
233 oct = SXNET_get_id_INTEGER(sx, izone);
234 M_ASN1_INTEGER_free(izone);
235 return oct;
236 }
237
SXNET_get_id_ulong(SXNET * sx,unsigned long lzone)238 ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone)
239 {
240 ASN1_INTEGER *izone = NULL;
241 ASN1_OCTET_STRING *oct;
242 if(!(izone = M_ASN1_INTEGER_new()) || !ASN1_INTEGER_set(izone, lzone)) {
243 X509V3err(X509V3_F_SXNET_GET_ID_ULONG,ERR_R_MALLOC_FAILURE);
244 M_ASN1_INTEGER_free(izone);
245 return NULL;
246 }
247 oct = SXNET_get_id_INTEGER(sx, izone);
248 M_ASN1_INTEGER_free(izone);
249 return oct;
250 }
251
SXNET_get_id_INTEGER(SXNET * sx,ASN1_INTEGER * zone)252 ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone)
253 {
254 SXNETID *id;
255 int i;
256 for(i = 0; i < sk_SXNETID_num(sx->ids); i++) {
257 id = sk_SXNETID_value(sx->ids, i);
258 if(!M_ASN1_INTEGER_cmp(id->zone, zone)) return id->user;
259 }
260 return NULL;
261 }
262
263 IMPLEMENT_STACK_OF(SXNETID)
264 IMPLEMENT_ASN1_SET_OF(SXNETID)
265