]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/x509/x509name.c
mark all block comments that need format preserving so that
[thirdparty/openssl.git] / crypto / x509 / x509name.c
1 /* crypto/x509/x509name.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59 #include <stdio.h>
60 #include <openssl/stack.h>
61 #include "cryptlib.h"
62 #include <openssl/asn1.h>
63 #include <openssl/objects.h>
64 #include <openssl/evp.h>
65 #include <openssl/x509.h>
66
67 int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf, int len)
68 {
69 ASN1_OBJECT *obj;
70
71 obj=OBJ_nid2obj(nid);
72 if (obj == NULL) return(-1);
73 return(X509_NAME_get_text_by_OBJ(name,obj,buf,len));
74 }
75
76 int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf,
77 int len)
78 {
79 int i;
80 ASN1_STRING *data;
81
82 i=X509_NAME_get_index_by_OBJ(name,obj,-1);
83 if (i < 0) return(-1);
84 data=X509_NAME_ENTRY_get_data(X509_NAME_get_entry(name,i));
85 i=(data->length > (len-1))?(len-1):data->length;
86 if (buf == NULL) return(data->length);
87 memcpy(buf,data->data,i);
88 buf[i]='\0';
89 return(i);
90 }
91
92 int X509_NAME_entry_count(X509_NAME *name)
93 {
94 if (name == NULL) return(0);
95 return(sk_X509_NAME_ENTRY_num(name->entries));
96 }
97
98 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos)
99 {
100 ASN1_OBJECT *obj;
101
102 obj=OBJ_nid2obj(nid);
103 if (obj == NULL) return(-2);
104 return(X509_NAME_get_index_by_OBJ(name,obj,lastpos));
105 }
106
107 /* NOTE: you should be passsing -1, not 0 as lastpos */
108 int X509_NAME_get_index_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj,
109 int lastpos)
110 {
111 int n;
112 X509_NAME_ENTRY *ne;
113 STACK_OF(X509_NAME_ENTRY) *sk;
114
115 if (name == NULL) return(-1);
116 if (lastpos < 0)
117 lastpos= -1;
118 sk=name->entries;
119 n=sk_X509_NAME_ENTRY_num(sk);
120 for (lastpos++; lastpos < n; lastpos++)
121 {
122 ne=sk_X509_NAME_ENTRY_value(sk,lastpos);
123 if (OBJ_cmp(ne->object,obj) == 0)
124 return(lastpos);
125 }
126 return(-1);
127 }
128
129 X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc)
130 {
131 if(name == NULL || sk_X509_NAME_ENTRY_num(name->entries) <= loc
132 || loc < 0)
133 return(NULL);
134 else
135 return(sk_X509_NAME_ENTRY_value(name->entries,loc));
136 }
137
138 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc)
139 {
140 X509_NAME_ENTRY *ret;
141 int i,n,set_prev,set_next;
142 STACK_OF(X509_NAME_ENTRY) *sk;
143
144 if (name == NULL || sk_X509_NAME_ENTRY_num(name->entries) <= loc
145 || loc < 0)
146 return(NULL);
147 sk=name->entries;
148 ret=sk_X509_NAME_ENTRY_delete(sk,loc);
149 n=sk_X509_NAME_ENTRY_num(sk);
150 name->modified=1;
151 if (loc == n) return(ret);
152
153 /* else we need to fixup the set field */
154 if (loc != 0)
155 set_prev=(sk_X509_NAME_ENTRY_value(sk,loc-1))->set;
156 else
157 set_prev=ret->set-1;
158 set_next=sk_X509_NAME_ENTRY_value(sk,loc)->set;
159
160 /*-
161 * set_prev is the previous set
162 * set is the current set
163 * set_next is the following
164 * prev 1 1 1 1 1 1 1 1
165 * set 1 1 2 2
166 * next 1 1 2 2 2 2 3 2
167 * so basically only if prev and next differ by 2, then
168 * re-number down by 1
169 */
170 if (set_prev+1 < set_next)
171 for (i=loc; i<n; i++)
172 sk_X509_NAME_ENTRY_value(sk,i)->set--;
173 return(ret);
174 }
175
176 int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type,
177 unsigned char *bytes, int len, int loc, int set)
178 {
179 X509_NAME_ENTRY *ne;
180 int ret;
181 ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len);
182 if(!ne) return 0;
183 ret = X509_NAME_add_entry(name, ne, loc, set);
184 X509_NAME_ENTRY_free(ne);
185 return ret;
186 }
187
188 int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type,
189 unsigned char *bytes, int len, int loc, int set)
190 {
191 X509_NAME_ENTRY *ne;
192 int ret;
193 ne = X509_NAME_ENTRY_create_by_NID(NULL, nid, type, bytes, len);
194 if(!ne) return 0;
195 ret = X509_NAME_add_entry(name, ne, loc, set);
196 X509_NAME_ENTRY_free(ne);
197 return ret;
198 }
199
200 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type,
201 const unsigned char *bytes, int len, int loc, int set)
202 {
203 X509_NAME_ENTRY *ne;
204 int ret;
205 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len);
206 if(!ne) return 0;
207 ret = X509_NAME_add_entry(name, ne, loc, set);
208 X509_NAME_ENTRY_free(ne);
209 return ret;
210 }
211
212 /* if set is -1, append to previous set, 0 'a new one', and 1,
213 * prepend to the guy we are about to stomp on. */
214 int X509_NAME_add_entry(X509_NAME *name, X509_NAME_ENTRY *ne, int loc,
215 int set)
216 {
217 X509_NAME_ENTRY *new_name=NULL;
218 int n,i,inc;
219 STACK_OF(X509_NAME_ENTRY) *sk;
220
221 if (name == NULL) return(0);
222 sk=name->entries;
223 n=sk_X509_NAME_ENTRY_num(sk);
224 if (loc > n) loc=n;
225 else if (loc < 0) loc=n;
226
227 name->modified=1;
228
229 if (set == -1)
230 {
231 if (loc == 0)
232 {
233 set=0;
234 inc=1;
235 }
236 else
237 {
238 set=sk_X509_NAME_ENTRY_value(sk,loc-1)->set;
239 inc=0;
240 }
241 }
242 else /* if (set >= 0) */
243 {
244 if (loc >= n)
245 {
246 if (loc != 0)
247 set=sk_X509_NAME_ENTRY_value(sk,loc-1)->set+1;
248 else
249 set=0;
250 }
251 else
252 set=sk_X509_NAME_ENTRY_value(sk,loc)->set;
253 inc=(set == 0)?1:0;
254 }
255
256 if ((new_name=X509_NAME_ENTRY_dup(ne)) == NULL)
257 goto err;
258 new_name->set=set;
259 if (!sk_X509_NAME_ENTRY_insert(sk,new_name,loc))
260 {
261 X509err(X509_F_X509_NAME_ADD_ENTRY,ERR_R_MALLOC_FAILURE);
262 goto err;
263 }
264 if (inc)
265 {
266 n=sk_X509_NAME_ENTRY_num(sk);
267 for (i=loc+1; i<n; i++)
268 sk_X509_NAME_ENTRY_value(sk,i-1)->set+=1;
269 }
270 return(1);
271 err:
272 if (new_name != NULL)
273 X509_NAME_ENTRY_free(new_name);
274 return(0);
275 }
276
277 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne,
278 const char *field, int type, const unsigned char *bytes, int len)
279 {
280 ASN1_OBJECT *obj;
281 X509_NAME_ENTRY *nentry;
282
283 obj=OBJ_txt2obj(field, 0);
284 if (obj == NULL)
285 {
286 X509err(X509_F_X509_NAME_ENTRY_CREATE_BY_TXT,
287 X509_R_INVALID_FIELD_NAME);
288 ERR_add_error_data(2, "name=", field);
289 return(NULL);
290 }
291 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len);
292 ASN1_OBJECT_free(obj);
293 return nentry;
294 }
295
296 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid,
297 int type, unsigned char *bytes, int len)
298 {
299 ASN1_OBJECT *obj;
300 X509_NAME_ENTRY *nentry;
301
302 obj=OBJ_nid2obj(nid);
303 if (obj == NULL)
304 {
305 X509err(X509_F_X509_NAME_ENTRY_CREATE_BY_NID,X509_R_UNKNOWN_NID);
306 return(NULL);
307 }
308 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len);
309 ASN1_OBJECT_free(obj);
310 return nentry;
311 }
312
313 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne,
314 ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len)
315 {
316 X509_NAME_ENTRY *ret;
317
318 if ((ne == NULL) || (*ne == NULL))
319 {
320 if ((ret=X509_NAME_ENTRY_new()) == NULL)
321 return(NULL);
322 }
323 else
324 ret= *ne;
325
326 if (!X509_NAME_ENTRY_set_object(ret,obj))
327 goto err;
328 if (!X509_NAME_ENTRY_set_data(ret,type,bytes,len))
329 goto err;
330
331 if ((ne != NULL) && (*ne == NULL)) *ne=ret;
332 return(ret);
333 err:
334 if ((ne == NULL) || (ret != *ne))
335 X509_NAME_ENTRY_free(ret);
336 return(NULL);
337 }
338
339 int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj)
340 {
341 if ((ne == NULL) || (obj == NULL))
342 {
343 X509err(X509_F_X509_NAME_ENTRY_SET_OBJECT,ERR_R_PASSED_NULL_PARAMETER);
344 return(0);
345 }
346 ASN1_OBJECT_free(ne->object);
347 ne->object=OBJ_dup(obj);
348 return((ne->object == NULL)?0:1);
349 }
350
351 int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
352 const unsigned char *bytes, int len)
353 {
354 int i;
355
356 if ((ne == NULL) || ((bytes == NULL) && (len != 0))) return(0);
357 if((type > 0) && (type & MBSTRING_FLAG))
358 return ASN1_STRING_set_by_NID(&ne->value, bytes,
359 len, type,
360 OBJ_obj2nid(ne->object)) ? 1 : 0;
361 if (len < 0) len=strlen((const char *)bytes);
362 i=ASN1_STRING_set(ne->value,bytes,len);
363 if (!i) return(0);
364 if (type != V_ASN1_UNDEF)
365 {
366 if (type == V_ASN1_APP_CHOOSE)
367 ne->value->type=ASN1_PRINTABLE_type(bytes,len);
368 else
369 ne->value->type=type;
370 }
371 return(1);
372 }
373
374 ASN1_OBJECT *X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne)
375 {
376 if (ne == NULL) return(NULL);
377 return(ne->object);
378 }
379
380 ASN1_STRING *X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne)
381 {
382 if (ne == NULL) return(NULL);
383 return(ne->value);
384 }
385