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