/src/gnutls/lib/minitasn1/element.c
Line  | Count  | Source (jump to first uncovered line)  | 
1  |  | /*  | 
2  |  |  * Copyright (C) 2000-2025 Free Software Foundation, Inc.  | 
3  |  |  *  | 
4  |  |  * This file is part of LIBTASN1.  | 
5  |  |  *  | 
6  |  |  * The LIBTASN1 library is free software; you can redistribute it  | 
7  |  |  * and/or modify it under the terms of the GNU Lesser General Public  | 
8  |  |  * License as published by the Free Software Foundation; either  | 
9  |  |  * version 2.1 of the License, or (at your option) any later version.  | 
10  |  |  *  | 
11  |  |  * This library is distributed in the hope that it will be useful, but  | 
12  |  |  * WITHOUT ANY WARRANTY; without even the implied warranty of  | 
13  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  | 
14  |  |  * Lesser General Public License for more details.  | 
15  |  |  *  | 
16  |  |  * You should have received a copy of the GNU Lesser General Public  | 
17  |  |  * License along with this library; if not, see  | 
18  |  |  * <https://www.gnu.org/licenses/>.  | 
19  |  |  */  | 
20  |  |  | 
21  |  | #include <config.h>  | 
22  |  |  | 
23  |  | /*****************************************************/  | 
24  |  | /* File: element.c                                   */  | 
25  |  | /* Description: Functions with the read and write    */  | 
26  |  | /*   functions.                                      */  | 
27  |  | /*****************************************************/  | 
28  |  |  | 
29  |  |  | 
30  |  | #include <int.h>  | 
31  |  | #include "parser_aux.h"  | 
32  |  | #include <gstr.h>  | 
33  |  | #include "structure.h"  | 
34  |  | #include "c-ctype.h"  | 
35  |  | #include "element.h"  | 
36  |  | #include <limits.h>  | 
37  |  | #include "intprops.h"  | 
38  |  |  | 
39  |  | void  | 
40  |  | _asn1_hierarchical_name (asn1_node_const node, char *name, int name_size)  | 
41  | 0  | { | 
42  | 0  |   asn1_node_const p;  | 
43  | 0  |   char tmp_name[64];  | 
44  |  | 
  | 
45  | 0  |   p = node;  | 
46  |  | 
  | 
47  | 0  |   name[0] = 0;  | 
48  |  | 
  | 
49  | 0  |   while (p != NULL)  | 
50  | 0  |     { | 
51  | 0  |       if (p->name[0] != 0)  | 
52  | 0  |   { | 
53  | 0  |     _asn1_str_cpy (tmp_name, sizeof (tmp_name), name),  | 
54  | 0  |       _asn1_str_cpy (name, name_size, p->name);  | 
55  | 0  |     _asn1_str_cat (name, name_size, ".");  | 
56  | 0  |     _asn1_str_cat (name, name_size, tmp_name);  | 
57  | 0  |   }  | 
58  | 0  |       p = _asn1_find_up (p);  | 
59  | 0  |     }  | 
60  |  | 
  | 
61  | 0  |   if (name[0] == 0)  | 
62  | 0  |     _asn1_str_cpy (name, name_size, "ROOT");  | 
63  | 0  | }  | 
64  |  |  | 
65  |  |  | 
66  |  | /******************************************************************/  | 
67  |  | /* Function : _asn1_convert_integer                               */  | 
68  |  | /* Description: converts an integer from a null terminated string */  | 
69  |  | /*              to der decoding. The conversion from a null       */  | 
70  |  | /*              terminated string to an integer is made with      */  | 
71  |  | /*              the 'strtol' function.                            */  | 
72  |  | /* Parameters:                                                    */  | 
73  |  | /*   value: null terminated string to convert.                    */  | 
74  |  | /*   value_out: conversion result (memory must be already         */  | 
75  |  | /*              allocated).                                       */  | 
76  |  | /*   value_out_size: number of bytes of value_out.                */  | 
77  |  | /*   len: number of significant byte of value_out.                */  | 
78  |  | /* Return: ASN1_MEM_ERROR or ASN1_SUCCESS                         */  | 
79  |  | /******************************************************************/  | 
80  |  | int  | 
81  |  | _asn1_convert_integer (const unsigned char *value, unsigned char *value_out,  | 
82  |  |            int value_out_size, int *len)  | 
83  | 0  | { | 
84  | 0  |   char negative;  | 
85  | 0  |   unsigned char val[SIZEOF_UNSIGNED_LONG_INT];  | 
86  | 0  |   long valtmp;  | 
87  | 0  |   int k, k2;  | 
88  |  | 
  | 
89  | 0  |   valtmp = _asn1_strtol (value, NULL, 10);  | 
90  |  | 
  | 
91  | 0  |   for (k = 0; k < SIZEOF_UNSIGNED_LONG_INT; k++)  | 
92  | 0  |     { | 
93  | 0  |       val[SIZEOF_UNSIGNED_LONG_INT - k - 1] = (valtmp >> (8 * k)) & 0xFF;  | 
94  | 0  |     }  | 
95  |  | 
  | 
96  | 0  |   if (val[0] & 0x80)  | 
97  | 0  |     negative = 1;  | 
98  | 0  |   else  | 
99  | 0  |     negative = 0;  | 
100  |  | 
  | 
101  | 0  |   for (k = 0; k < SIZEOF_UNSIGNED_LONG_INT - 1; k++)  | 
102  | 0  |     { | 
103  | 0  |       if (negative && (val[k] != 0xFF))  | 
104  | 0  |   break;  | 
105  | 0  |       else if (!negative && val[k])  | 
106  | 0  |   break;  | 
107  | 0  |     }  | 
108  |  | 
  | 
109  | 0  |   if ((negative && !(val[k] & 0x80)) || (!negative && (val[k] & 0x80)))  | 
110  | 0  |     k--;  | 
111  |  | 
  | 
112  | 0  |   *len = SIZEOF_UNSIGNED_LONG_INT - k;  | 
113  |  | 
  | 
114  | 0  |   if (SIZEOF_UNSIGNED_LONG_INT - k > value_out_size)  | 
115  |  |     /* VALUE_OUT is too short to contain the value conversion */  | 
116  | 0  |     return ASN1_MEM_ERROR;  | 
117  |  |  | 
118  | 0  |   if (value_out != NULL)  | 
119  | 0  |     { | 
120  | 0  |       for (k2 = k; k2 < SIZEOF_UNSIGNED_LONG_INT; k2++)  | 
121  | 0  |   value_out[k2 - k] = val[k2];  | 
122  | 0  |     }  | 
123  |  | 
  | 
124  |  | #if 0  | 
125  |  |   printf ("_asn1_convert_integer: valueIn=%s, lenOut=%d", value, *len); | 
126  |  |   for (k = 0; k < SIZEOF_UNSIGNED_LONG_INT; k++)  | 
127  |  |     printf (", vOut[%d]=%d", k, value_out[k]); | 
128  |  |   printf ("\n"); | 
129  |  | #endif  | 
130  |  | 
  | 
131  | 0  |   return ASN1_SUCCESS;  | 
132  | 0  | }  | 
133  |  |  | 
134  |  | int  | 
135  |  | _asn1_node_array_set (struct asn1_node_array_st *array, size_t position,  | 
136  |  |           asn1_node node)  | 
137  | 0  | { | 
138  | 0  |   if (position >= array->size)  | 
139  | 0  |     { | 
140  | 0  |       size_t new_size = position, i;  | 
141  | 0  |       asn1_node *new_nodes;  | 
142  |  | 
  | 
143  | 0  |       if (INT_MULTIPLY_OVERFLOW (new_size, 2))  | 
144  | 0  |   return ASN1_GENERIC_ERROR;  | 
145  | 0  |       new_size *= 2;  | 
146  |  | 
  | 
147  | 0  |       if (INT_ADD_OVERFLOW (new_size, 1))  | 
148  | 0  |   return ASN1_GENERIC_ERROR;  | 
149  | 0  |       new_size += 1;  | 
150  |  | 
  | 
151  | 0  |       if (INT_MULTIPLY_OVERFLOW (new_size, sizeof (*new_nodes)))  | 
152  | 0  |   return ASN1_GENERIC_ERROR;  | 
153  |  |  | 
154  | 0  |       new_nodes = realloc (array->nodes, new_size * sizeof (*new_nodes));  | 
155  | 0  |       if (!new_nodes)  | 
156  | 0  |   return ASN1_MEM_ALLOC_ERROR;  | 
157  |  |  | 
158  | 0  |       for (i = array->size; i < new_size; i++)  | 
159  | 0  |   new_nodes[i] = NULL;  | 
160  |  | 
  | 
161  | 0  |       array->nodes = new_nodes;  | 
162  | 0  |       array->size = new_size;  | 
163  | 0  |     }  | 
164  |  |  | 
165  | 0  |   array->nodes[position] = node;  | 
166  | 0  |   return ASN1_SUCCESS;  | 
167  | 0  | }  | 
168  |  |  | 
169  |  | /* Appends a new element into the sequence (or set) defined by this  | 
170  |  |  * node. The new element will have a name of '?number', where number  | 
171  |  |  * is a monotonically increased serial number.  | 
172  |  |  *  | 
173  |  |  * The last element in the list may be provided in @pcache, to avoid  | 
174  |  |  * traversing the list, an expensive operation in long lists.  | 
175  |  |  *  | 
176  |  |  * On success it returns in @pcache the added element (which is the  | 
177  |  |  * tail in the list of added elements).  | 
178  |  |  */  | 
179  |  | int  | 
180  |  | _asn1_append_sequence_set (asn1_node node, struct node_tail_cache_st *pcache)  | 
181  | 0  | { | 
182  | 0  |   asn1_node p, p2;  | 
183  | 0  |   char temp[LTOSTR_MAX_SIZE + 1];  | 
184  | 0  |   long n;  | 
185  | 0  |   int result;  | 
186  |  | 
  | 
187  | 0  |   if (!node || !(node->down))  | 
188  | 0  |     return ASN1_GENERIC_ERROR;  | 
189  |  |  | 
190  | 0  |   p = node->down;  | 
191  | 0  |   while ((type_field (p->type) == ASN1_ETYPE_TAG)  | 
192  | 0  |    || (type_field (p->type) == ASN1_ETYPE_SIZE))  | 
193  | 0  |     p = p->right;  | 
194  |  | 
  | 
195  | 0  |   p2 = _asn1_copy_structure3 (p);  | 
196  | 0  |   if (p2 == NULL)  | 
197  | 0  |     return ASN1_GENERIC_ERROR;  | 
198  |  |  | 
199  | 0  |   if (pcache == NULL || pcache->tail == NULL || pcache->head != node)  | 
200  | 0  |     { | 
201  | 0  |       while (p->right)  | 
202  | 0  |   { | 
203  | 0  |     p = p->right;  | 
204  | 0  |   }  | 
205  | 0  |     }  | 
206  | 0  |   else  | 
207  | 0  |     { | 
208  | 0  |       p = pcache->tail;  | 
209  | 0  |     }  | 
210  |  | 
  | 
211  | 0  |   _asn1_set_right (p, p2);  | 
212  | 0  |   if (pcache)  | 
213  | 0  |     { | 
214  | 0  |       pcache->head = node;  | 
215  | 0  |       pcache->tail = p2;  | 
216  | 0  |     }  | 
217  |  | 
  | 
218  | 0  |   n = 0;  | 
219  | 0  |   if (p->name[0] != 0)  | 
220  | 0  |     { | 
221  | 0  |       n = strtol (p->name + 1, NULL, 10);  | 
222  | 0  |       if (n <= 0 || n >= LONG_MAX - 1)  | 
223  | 0  |   return ASN1_GENERIC_ERROR;  | 
224  | 0  |     }  | 
225  | 0  |   temp[0] = '?';  | 
226  | 0  |   _asn1_ltostr (n + 1, temp + 1);  | 
227  | 0  |   _asn1_set_name (p2, temp);  | 
228  |  |   /*  p2->type |= CONST_OPTION; */  | 
229  | 0  |   result = _asn1_node_array_set (&node->numbered_children, n, p2);  | 
230  | 0  |   if (result != ASN1_SUCCESS)  | 
231  | 0  |     return result;  | 
232  | 0  |   p2->parent = node;  | 
233  |  | 
  | 
234  | 0  |   return ASN1_SUCCESS;  | 
235  | 0  | }  | 
236  |  |  | 
237  |  |  | 
238  |  | /**  | 
239  |  |  * asn1_write_value:  | 
240  |  |  * @node_root: pointer to a structure  | 
241  |  |  * @name: the name of the element inside the structure that you want to set.  | 
242  |  |  * @ivalue: vector used to specify the value to set. If len is >0,  | 
243  |  |  *   VALUE must be a two's complement form integer.  if len=0 *VALUE  | 
244  |  |  *   must be a null terminated string with an integer value.  | 
245  |  |  * @len: number of bytes of *value to use to set the value:  | 
246  |  |  *   value[0]..value[len-1] or 0 if value is a null terminated string  | 
247  |  |  *  | 
248  |  |  * Set the value of one element inside a structure.  | 
249  |  |  *  | 
250  |  |  * If an element is OPTIONAL and you want to delete it, you must use  | 
251  |  |  * the value=NULL and len=0.  Using "pkix.asn":  | 
252  |  |  *  | 
253  |  |  * result=asn1_write_value(cert, "tbsCertificate.issuerUniqueID",  | 
254  |  |  * NULL, 0);  | 
255  |  |  *  | 
256  |  |  * Description for each type:  | 
257  |  |  *  | 
258  |  |  * INTEGER: VALUE must contain a two's complement form integer.  | 
259  |  |  *  | 
260  |  |  *            value[0]=0xFF ,               len=1 -> integer=-1.  | 
261  |  |  *            value[0]=0xFF value[1]=0xFF , len=2 -> integer=-1.  | 
262  |  |  *            value[0]=0x01 ,               len=1 -> integer= 1.  | 
263  |  |  *            value[0]=0x00 value[1]=0x01 , len=2 -> integer= 1.  | 
264  |  |  *            value="123"                 , len=0 -> integer= 123.  | 
265  |  |  *  | 
266  |  |  * ENUMERATED: As INTEGER (but only with not negative numbers).  | 
267  |  |  *  | 
268  |  |  * BOOLEAN: VALUE must be the null terminated string "TRUE" or  | 
269  |  |  *   "FALSE" and LEN != 0.  | 
270  |  |  *  | 
271  |  |  *            value="TRUE" , len=1 -> boolean=TRUE.  | 
272  |  |  *            value="FALSE" , len=1 -> boolean=FALSE.  | 
273  |  |  *  | 
274  |  |  * OBJECT IDENTIFIER: VALUE must be a null terminated string with  | 
275  |  |  *   each number separated by a dot (e.g. "1.2.3.543.1").  LEN != 0.  | 
276  |  |  *  | 
277  |  |  *            value="1 2 840 10040 4 3" , len=1 -> OID=dsa-with-sha.  | 
278  |  |  *  | 
279  |  |  * UTCTime: VALUE must be a null terminated string in one of these  | 
280  |  |  *   formats: "YYMMDDhhmmssZ", "YYMMDDhhmmssZ",  | 
281  |  |  *   "YYMMDDhhmmss+hh'mm'", "YYMMDDhhmmss-hh'mm'",  | 
282  |  |  *   "YYMMDDhhmm+hh'mm'", or "YYMMDDhhmm-hh'mm'".  LEN != 0.  | 
283  |  |  *  | 
284  |  |  *            value="9801011200Z" , len=1 -> time=Jannuary 1st, 1998  | 
285  |  |  *            at 12h 00m Greenwich Mean Time  | 
286  |  |  *  | 
287  |  |  * GeneralizedTime: VALUE must be in one of this format:  | 
288  |  |  *   "YYYYMMDDhhmmss.sZ", "YYYYMMDDhhmmss.sZ",  | 
289  |  |  *   "YYYYMMDDhhmmss.s+hh'mm'", "YYYYMMDDhhmmss.s-hh'mm'",  | 
290  |  |  *   "YYYYMMDDhhmm+hh'mm'", or "YYYYMMDDhhmm-hh'mm'" where ss.s  | 
291  |  |  *   indicates the seconds with any precision like "10.1" or "01.02".  | 
292  |  |  *   LEN != 0  | 
293  |  |  *  | 
294  |  |  *            value="2001010112001.12-0700" , len=1 -> time=Jannuary  | 
295  |  |  *            1st, 2001 at 12h 00m 01.12s Pacific Daylight Time  | 
296  |  |  *  | 
297  |  |  * OCTET STRING: VALUE contains the octet string and LEN is the  | 
298  |  |  *   number of octets.  | 
299  |  |  *  | 
300  |  |  *            value="$\backslash$x01$\backslash$x02$\backslash$x03" ,  | 
301  |  |  *            len=3 -> three bytes octet string  | 
302  |  |  *  | 
303  |  |  * GeneralString: VALUE contains the generalstring and LEN is the  | 
304  |  |  *   number of octets.  | 
305  |  |  *  | 
306  |  |  *            value="$\backslash$x01$\backslash$x02$\backslash$x03" ,  | 
307  |  |  *            len=3 -> three bytes generalstring  | 
308  |  |  *  | 
309  |  |  * BIT STRING: VALUE contains the bit string organized by bytes and  | 
310  |  |  *   LEN is the number of bits.  | 
311  |  |  *  | 
312  |  |  *   value="$\backslash$xCF" , len=6 -> bit string="110011" (six  | 
313  |  |  *   bits)  | 
314  |  |  *  | 
315  |  |  * CHOICE: if NAME indicates a choice type, VALUE must specify one of  | 
316  |  |  *   the alternatives with a null terminated string. LEN != 0. Using  | 
317  |  |  *   "pkix.asn"\:  | 
318  |  |  *  | 
319  |  |  *           result=asn1_write_value(cert,  | 
320  |  |  *           "certificate1.tbsCertificate.subject", "rdnSequence",  | 
321  |  |  *           1);  | 
322  |  |  *  | 
323  |  |  * ANY: VALUE indicates the der encoding of a structure.  LEN != 0.  | 
324  |  |  *  | 
325  |  |  * SEQUENCE OF: VALUE must be the null terminated string "NEW" and  | 
326  |  |  *   LEN != 0. With this instruction another element is appended in  | 
327  |  |  *   the sequence. The name of this element will be "?1" if it's the  | 
328  |  |  *   first one, "?2" for the second and so on.  | 
329  |  |  *  | 
330  |  |  *   Using "pkix.asn"\:  | 
331  |  |  *  | 
332  |  |  *   result=asn1_write_value(cert,  | 
333  |  |  *   "certificate1.tbsCertificate.subject.rdnSequence", "NEW", 1);  | 
334  |  |  *  | 
335  |  |  * SET OF: the same as SEQUENCE OF.  Using "pkix.asn":  | 
336  |  |  *  | 
337  |  |  *           result=asn1_write_value(cert,  | 
338  |  |  *           "tbsCertificate.subject.rdnSequence.?LAST", "NEW", 1);  | 
339  |  |  *  | 
340  |  |  * Returns: %ASN1_SUCCESS if the value was set,  | 
341  |  |  *   %ASN1_ELEMENT_NOT_FOUND if @name is not a valid element, and  | 
342  |  |  *   %ASN1_VALUE_NOT_VALID if @ivalue has a wrong format.  | 
343  |  |  **/  | 
344  |  | int  | 
345  |  | asn1_write_value (asn1_node node_root, const char *name,  | 
346  |  |       const void *ivalue, int len)  | 
347  | 0  | { | 
348  | 0  |   asn1_node node, p, p2;  | 
349  | 0  |   unsigned char *temp, *value_temp = NULL, *default_temp = NULL;  | 
350  | 0  |   int len2, k, k2, negative;  | 
351  | 0  |   size_t i;  | 
352  | 0  |   const unsigned char *value = ivalue;  | 
353  | 0  |   unsigned int type;  | 
354  |  | 
  | 
355  | 0  |   node = asn1_find_node (node_root, name);  | 
356  | 0  |   if (node == NULL)  | 
357  | 0  |     return ASN1_ELEMENT_NOT_FOUND;  | 
358  |  |  | 
359  | 0  |   if ((node->type & CONST_OPTION) && (value == NULL) && (len == 0))  | 
360  | 0  |     { | 
361  | 0  |       asn1_delete_structure (&node);  | 
362  | 0  |       return ASN1_SUCCESS;  | 
363  | 0  |     }  | 
364  |  |  | 
365  | 0  |   type = type_field (node->type);  | 
366  |  | 
  | 
367  | 0  |   if ((type == ASN1_ETYPE_SEQUENCE_OF || type == ASN1_ETYPE_SET_OF)  | 
368  | 0  |       && (value == NULL) && (len == 0))  | 
369  | 0  |     { | 
370  | 0  |       p = node->down;  | 
371  | 0  |       while ((type_field (p->type) == ASN1_ETYPE_TAG)  | 
372  | 0  |        || (type_field (p->type) == ASN1_ETYPE_SIZE))  | 
373  | 0  |   p = p->right;  | 
374  |  | 
  | 
375  | 0  |       while (p->right)  | 
376  | 0  |   asn1_delete_structure (&p->right);  | 
377  |  | 
  | 
378  | 0  |       return ASN1_SUCCESS;  | 
379  | 0  |     }  | 
380  |  |  | 
381  |  |   /* Don't allow element deletion for other types */  | 
382  | 0  |   if (value == NULL)  | 
383  | 0  |     { | 
384  | 0  |       return ASN1_VALUE_NOT_VALID;  | 
385  | 0  |     }  | 
386  |  |  | 
387  | 0  |   switch (type)  | 
388  | 0  |     { | 
389  | 0  |     case ASN1_ETYPE_BOOLEAN:  | 
390  | 0  |       if (!_asn1_strcmp (value, "TRUE"))  | 
391  | 0  |   { | 
392  | 0  |     if (node->type & CONST_DEFAULT)  | 
393  | 0  |       { | 
394  | 0  |         p = node->down;  | 
395  | 0  |         while (type_field (p->type) != ASN1_ETYPE_DEFAULT)  | 
396  | 0  |     p = p->right;  | 
397  | 0  |         if (p->type & CONST_TRUE)  | 
398  | 0  |     _asn1_set_value (node, NULL, 0);  | 
399  | 0  |         else  | 
400  | 0  |     _asn1_set_value (node, "T", 1);  | 
401  | 0  |       }  | 
402  | 0  |     else  | 
403  | 0  |       _asn1_set_value (node, "T", 1);  | 
404  | 0  |   }  | 
405  | 0  |       else if (!_asn1_strcmp (value, "FALSE"))  | 
406  | 0  |   { | 
407  | 0  |     if (node->type & CONST_DEFAULT)  | 
408  | 0  |       { | 
409  | 0  |         p = node->down;  | 
410  | 0  |         while (type_field (p->type) != ASN1_ETYPE_DEFAULT)  | 
411  | 0  |     p = p->right;  | 
412  | 0  |         if (p->type & CONST_FALSE)  | 
413  | 0  |     _asn1_set_value (node, NULL, 0);  | 
414  | 0  |         else  | 
415  | 0  |     _asn1_set_value (node, "F", 1);  | 
416  | 0  |       }  | 
417  | 0  |     else  | 
418  | 0  |       _asn1_set_value (node, "F", 1);  | 
419  | 0  |   }  | 
420  | 0  |       else  | 
421  | 0  |   return ASN1_VALUE_NOT_VALID;  | 
422  | 0  |       break;  | 
423  | 0  |     case ASN1_ETYPE_INTEGER:  | 
424  | 0  |     case ASN1_ETYPE_ENUMERATED:  | 
425  | 0  |       if (len == 0)  | 
426  | 0  |   { | 
427  | 0  |     if ((c_isdigit (value[0])) || (value[0] == '-'))  | 
428  | 0  |       { | 
429  | 0  |         value_temp = malloc (SIZEOF_UNSIGNED_LONG_INT);  | 
430  | 0  |         if (value_temp == NULL)  | 
431  | 0  |     return ASN1_MEM_ALLOC_ERROR;  | 
432  |  |  | 
433  | 0  |         _asn1_convert_integer (value, value_temp,  | 
434  | 0  |              SIZEOF_UNSIGNED_LONG_INT, &len);  | 
435  | 0  |       }  | 
436  | 0  |     else  | 
437  | 0  |       {     /* is an identifier like v1 */ | 
438  | 0  |         if (!(node->type & CONST_LIST))  | 
439  | 0  |     return ASN1_VALUE_NOT_VALID;  | 
440  | 0  |         p = node->down;  | 
441  | 0  |         while (p)  | 
442  | 0  |     { | 
443  | 0  |       if (type_field (p->type) == ASN1_ETYPE_CONSTANT)  | 
444  | 0  |         { | 
445  | 0  |           if (!_asn1_strcmp (p->name, value))  | 
446  | 0  |       { | 
447  | 0  |         value_temp = malloc (SIZEOF_UNSIGNED_LONG_INT);  | 
448  | 0  |         if (value_temp == NULL)  | 
449  | 0  |           return ASN1_MEM_ALLOC_ERROR;  | 
450  |  |  | 
451  | 0  |         _asn1_convert_integer (p->value,  | 
452  | 0  |              value_temp,  | 
453  | 0  |              SIZEOF_UNSIGNED_LONG_INT,  | 
454  | 0  |              &len);  | 
455  | 0  |         break;  | 
456  | 0  |       }  | 
457  | 0  |         }  | 
458  | 0  |       p = p->right;  | 
459  | 0  |     }  | 
460  | 0  |         if (p == NULL)  | 
461  | 0  |     return ASN1_VALUE_NOT_VALID;  | 
462  | 0  |       }  | 
463  | 0  |   }  | 
464  | 0  |       else  | 
465  | 0  |   {     /* len != 0 */ | 
466  | 0  |     value_temp = malloc (len);  | 
467  | 0  |     if (value_temp == NULL)  | 
468  | 0  |       return ASN1_MEM_ALLOC_ERROR;  | 
469  | 0  |     memcpy (value_temp, value, len);  | 
470  | 0  |   }  | 
471  |  |  | 
472  | 0  |       if (value_temp[0] & 0x80)  | 
473  | 0  |   negative = 1;  | 
474  | 0  |       else  | 
475  | 0  |   negative = 0;  | 
476  |  | 
  | 
477  | 0  |       if (negative && (type_field (node->type) == ASN1_ETYPE_ENUMERATED))  | 
478  | 0  |   { | 
479  | 0  |     free (value_temp);  | 
480  | 0  |     return ASN1_VALUE_NOT_VALID;  | 
481  | 0  |   }  | 
482  |  |  | 
483  | 0  |       for (k = 0; k < len - 1; k++)  | 
484  | 0  |   if (negative && (value_temp[k] != 0xFF))  | 
485  | 0  |     break;  | 
486  | 0  |   else if (!negative && value_temp[k])  | 
487  | 0  |     break;  | 
488  |  | 
  | 
489  | 0  |       if ((negative && !(value_temp[k] & 0x80)) ||  | 
490  | 0  |     (!negative && (value_temp[k] & 0x80)))  | 
491  | 0  |   k--;  | 
492  |  | 
  | 
493  | 0  |       _asn1_set_value_lv (node, value_temp + k, len - k);  | 
494  |  | 
  | 
495  | 0  |       if (node->type & CONST_DEFAULT)  | 
496  | 0  |   { | 
497  | 0  |     p = node->down;  | 
498  | 0  |     while (type_field (p->type) != ASN1_ETYPE_DEFAULT)  | 
499  | 0  |       p = p->right;  | 
500  | 0  |     if ((c_isdigit (p->value[0])) || (p->value[0] == '-'))  | 
501  | 0  |       { | 
502  | 0  |         default_temp = malloc (SIZEOF_UNSIGNED_LONG_INT);  | 
503  | 0  |         if (default_temp == NULL)  | 
504  | 0  |     { | 
505  | 0  |       free (value_temp);  | 
506  | 0  |       return ASN1_MEM_ALLOC_ERROR;  | 
507  | 0  |     }  | 
508  |  |  | 
509  | 0  |         _asn1_convert_integer (p->value, default_temp,  | 
510  | 0  |              SIZEOF_UNSIGNED_LONG_INT, &len2);  | 
511  | 0  |       }  | 
512  | 0  |     else  | 
513  | 0  |       {     /* is an identifier like v1 */ | 
514  | 0  |         if (!(node->type & CONST_LIST))  | 
515  | 0  |     { | 
516  | 0  |       free (value_temp);  | 
517  | 0  |       return ASN1_VALUE_NOT_VALID;  | 
518  | 0  |     }  | 
519  | 0  |         p2 = node->down;  | 
520  | 0  |         while (p2)  | 
521  | 0  |     { | 
522  | 0  |       if (type_field (p2->type) == ASN1_ETYPE_CONSTANT)  | 
523  | 0  |         { | 
524  | 0  |           if (!_asn1_strcmp (p2->name, p->value))  | 
525  | 0  |       { | 
526  | 0  |         default_temp = malloc (SIZEOF_UNSIGNED_LONG_INT);  | 
527  | 0  |         if (default_temp == NULL)  | 
528  | 0  |           { | 
529  | 0  |             free (value_temp);  | 
530  | 0  |             return ASN1_MEM_ALLOC_ERROR;  | 
531  | 0  |           }  | 
532  |  |  | 
533  | 0  |         _asn1_convert_integer (p2->value,  | 
534  | 0  |              default_temp,  | 
535  | 0  |              SIZEOF_UNSIGNED_LONG_INT,  | 
536  | 0  |              &len2);  | 
537  | 0  |         break;  | 
538  | 0  |       }  | 
539  | 0  |         }  | 
540  | 0  |       p2 = p2->right;  | 
541  | 0  |     }  | 
542  | 0  |         if (p2 == NULL)  | 
543  | 0  |     { | 
544  | 0  |       free (value_temp);  | 
545  | 0  |       return ASN1_VALUE_NOT_VALID;  | 
546  | 0  |     }  | 
547  | 0  |       }  | 
548  |  |  | 
549  |  |  | 
550  | 0  |     if ((len - k) == len2)  | 
551  | 0  |       { | 
552  | 0  |         for (k2 = 0; k2 < len2; k2++)  | 
553  | 0  |     if (value_temp[k + k2] != default_temp[k2])  | 
554  | 0  |       { | 
555  | 0  |         break;  | 
556  | 0  |       }  | 
557  | 0  |         if (k2 == len2)  | 
558  | 0  |     _asn1_set_value (node, NULL, 0);  | 
559  | 0  |       }  | 
560  | 0  |     free (default_temp);  | 
561  | 0  |   }  | 
562  | 0  |       free (value_temp);  | 
563  | 0  |       break;  | 
564  | 0  |     case ASN1_ETYPE_OBJECT_ID:  | 
565  | 0  |       for (i = 0; i < _asn1_strlen (value); i++)  | 
566  | 0  |   if ((!c_isdigit (value[i])) && (value[i] != '.') && (value[i] != '+'))  | 
567  | 0  |     return ASN1_VALUE_NOT_VALID;  | 
568  | 0  |       if (node->type & CONST_DEFAULT)  | 
569  | 0  |   { | 
570  | 0  |     p = node->down;  | 
571  | 0  |     while (type_field (p->type) != ASN1_ETYPE_DEFAULT)  | 
572  | 0  |       p = p->right;  | 
573  | 0  |     if (!_asn1_strcmp (value, p->value))  | 
574  | 0  |       { | 
575  | 0  |         _asn1_set_value (node, NULL, 0);  | 
576  | 0  |         break;  | 
577  | 0  |       }  | 
578  | 0  |   }  | 
579  | 0  |       _asn1_set_value (node, value, _asn1_strlen (value) + 1);  | 
580  | 0  |       break;  | 
581  | 0  |     case ASN1_ETYPE_UTC_TIME:  | 
582  | 0  |       { | 
583  | 0  |   len = _asn1_strlen (value);  | 
584  | 0  |   if (len < 11)  | 
585  | 0  |     return ASN1_VALUE_NOT_VALID;  | 
586  | 0  |   for (k = 0; k < 10; k++)  | 
587  | 0  |     if (!c_isdigit (value[k]))  | 
588  | 0  |       return ASN1_VALUE_NOT_VALID;  | 
589  | 0  |   switch (len)  | 
590  | 0  |     { | 
591  | 0  |     case 11:  | 
592  | 0  |       if (value[10] != 'Z')  | 
593  | 0  |         return ASN1_VALUE_NOT_VALID;  | 
594  | 0  |       break;  | 
595  | 0  |     case 13:  | 
596  | 0  |       if ((!c_isdigit (value[10])) || (!c_isdigit (value[11])) ||  | 
597  | 0  |     (value[12] != 'Z'))  | 
598  | 0  |         return ASN1_VALUE_NOT_VALID;  | 
599  | 0  |       break;  | 
600  | 0  |     case 15:  | 
601  | 0  |       if ((value[10] != '+') && (value[10] != '-'))  | 
602  | 0  |         return ASN1_VALUE_NOT_VALID;  | 
603  | 0  |       for (k = 11; k < 15; k++)  | 
604  | 0  |         if (!c_isdigit (value[k]))  | 
605  | 0  |     return ASN1_VALUE_NOT_VALID;  | 
606  | 0  |       break;  | 
607  | 0  |     case 17:  | 
608  | 0  |       if ((!c_isdigit (value[10])) || (!c_isdigit (value[11])))  | 
609  | 0  |         return ASN1_VALUE_NOT_VALID;  | 
610  | 0  |       if ((value[12] != '+') && (value[12] != '-'))  | 
611  | 0  |         return ASN1_VALUE_NOT_VALID;  | 
612  | 0  |       for (k = 13; k < 17; k++)  | 
613  | 0  |         if (!c_isdigit (value[k]))  | 
614  | 0  |     return ASN1_VALUE_NOT_VALID;  | 
615  | 0  |       break;  | 
616  | 0  |     default:  | 
617  | 0  |       return ASN1_VALUE_NOT_FOUND;  | 
618  | 0  |     }  | 
619  | 0  |   _asn1_set_value (node, value, len);  | 
620  | 0  |       }  | 
621  | 0  |       break;  | 
622  | 0  |     case ASN1_ETYPE_GENERALIZED_TIME:  | 
623  | 0  |       len = _asn1_strlen (value);  | 
624  | 0  |       _asn1_set_value (node, value, len);  | 
625  | 0  |       break;  | 
626  | 0  |     case ASN1_ETYPE_OCTET_STRING:  | 
627  | 0  |     case ASN1_ETYPE_GENERALSTRING:  | 
628  | 0  |     case ASN1_ETYPE_NUMERIC_STRING:  | 
629  | 0  |     case ASN1_ETYPE_IA5_STRING:  | 
630  | 0  |     case ASN1_ETYPE_TELETEX_STRING:  | 
631  | 0  |     case ASN1_ETYPE_PRINTABLE_STRING:  | 
632  | 0  |     case ASN1_ETYPE_UNIVERSAL_STRING:  | 
633  | 0  |     case ASN1_ETYPE_BMP_STRING:  | 
634  | 0  |     case ASN1_ETYPE_UTF8_STRING:  | 
635  | 0  |     case ASN1_ETYPE_VISIBLE_STRING:  | 
636  | 0  |       if (len == 0)  | 
637  | 0  |   len = _asn1_strlen (value);  | 
638  | 0  |       _asn1_set_value_lv (node, value, len);  | 
639  | 0  |       break;  | 
640  | 0  |     case ASN1_ETYPE_BIT_STRING:  | 
641  | 0  |       if (len == 0)  | 
642  | 0  |   len = _asn1_strlen (value);  | 
643  | 0  |       asn1_length_der ((len >> 3) + 2, NULL, &len2);  | 
644  | 0  |       temp = malloc ((len >> 3) + 2 + len2);  | 
645  | 0  |       if (temp == NULL)  | 
646  | 0  |   return ASN1_MEM_ALLOC_ERROR;  | 
647  |  |  | 
648  | 0  |       asn1_bit_der (value, len, temp, &len2);  | 
649  | 0  |       _asn1_set_value_m (node, temp, len2);  | 
650  | 0  |       temp = NULL;  | 
651  | 0  |       break;  | 
652  | 0  |     case ASN1_ETYPE_CHOICE:  | 
653  | 0  |       p = node->down;  | 
654  | 0  |       while (p)  | 
655  | 0  |   { | 
656  | 0  |     if (!_asn1_strcmp (p->name, value))  | 
657  | 0  |       { | 
658  | 0  |         p2 = node->down;  | 
659  | 0  |         while (p2)  | 
660  | 0  |     { | 
661  | 0  |       if (p2 != p)  | 
662  | 0  |         { | 
663  | 0  |           asn1_delete_structure (&p2);  | 
664  | 0  |           p2 = node->down;  | 
665  | 0  |         }  | 
666  | 0  |       else  | 
667  | 0  |         p2 = p2->right;  | 
668  | 0  |     }  | 
669  | 0  |         break;  | 
670  | 0  |       }  | 
671  | 0  |     p = p->right;  | 
672  | 0  |   }  | 
673  | 0  |       if (!p)  | 
674  | 0  |   return ASN1_ELEMENT_NOT_FOUND;  | 
675  | 0  |       break;  | 
676  | 0  |     case ASN1_ETYPE_ANY:  | 
677  | 0  |       _asn1_set_value_lv (node, value, len);  | 
678  | 0  |       break;  | 
679  | 0  |     case ASN1_ETYPE_SEQUENCE_OF:  | 
680  | 0  |     case ASN1_ETYPE_SET_OF:  | 
681  | 0  |       if (_asn1_strcmp (value, "NEW"))  | 
682  | 0  |   return ASN1_VALUE_NOT_VALID;  | 
683  | 0  |       _asn1_append_sequence_set (node, NULL);  | 
684  | 0  |       break;  | 
685  | 0  |     default:  | 
686  | 0  |       return ASN1_ELEMENT_NOT_FOUND;  | 
687  | 0  |       break;  | 
688  | 0  |     }  | 
689  |  |  | 
690  | 0  |   return ASN1_SUCCESS;  | 
691  | 0  | }  | 
692  |  |  | 
693  |  |  | 
694  |  | #define PUT_VALUE( ptr, ptr_size, data, data_size) \  | 
695  | 0  |   *len = data_size; \  | 
696  | 0  |   if (ptr_size < data_size) { \ | 
697  | 0  |     return ASN1_MEM_ERROR; \  | 
698  | 0  |   } else { \ | 
699  | 0  |     if (ptr && data_size > 0) \  | 
700  | 0  |       memcpy (ptr, data, data_size); \  | 
701  | 0  |   }  | 
702  |  |  | 
703  |  | #define PUT_STR_VALUE( ptr, ptr_size, data) \  | 
704  | 0  |   *len = _asn1_strlen (data) + 1; \  | 
705  | 0  |   if (ptr_size < *len) { \ | 
706  | 0  |     return ASN1_MEM_ERROR; \  | 
707  | 0  |   } else { \ | 
708  | 0  |     /* this strcpy is checked */ \  | 
709  | 0  |     if (ptr) { \ | 
710  | 0  |       _asn1_strcpy (ptr, data); \  | 
711  | 0  |     } \  | 
712  | 0  |   }  | 
713  |  |  | 
714  |  | #define PUT_AS_STR_VALUE( ptr, ptr_size, data, data_size) \  | 
715  | 0  |   *len = data_size + 1; \  | 
716  | 0  |   if (ptr_size < *len) { \ | 
717  | 0  |     return ASN1_MEM_ERROR; \  | 
718  | 0  |   } else { \ | 
719  | 0  |     /* this strcpy is checked */ \  | 
720  | 0  |     if (ptr) { \ | 
721  | 0  |       if (data_size > 0) \  | 
722  | 0  |         memcpy (ptr, data, data_size); \  | 
723  | 0  |       ptr[data_size] = 0; \  | 
724  | 0  |     } \  | 
725  | 0  |   }  | 
726  |  |  | 
727  |  | #define ADD_STR_VALUE( ptr, ptr_size, data) \  | 
728  | 0  |         *len += _asn1_strlen(data); \  | 
729  | 0  |         if (ptr_size < (int) *len) { \ | 
730  | 0  |                 (*len)++; \  | 
731  | 0  |                 return ASN1_MEM_ERROR; \  | 
732  | 0  |         } else { \ | 
733  | 0  |                 /* this strcat is checked */ \  | 
734  | 0  |                 if (ptr) _asn1_strcat (ptr, data); \  | 
735  | 0  |         }  | 
736  |  |  | 
737  |  | /**  | 
738  |  |  * asn1_read_value:  | 
739  |  |  * @root: pointer to a structure.  | 
740  |  |  * @name: the name of the element inside a structure that you want to read.  | 
741  |  |  * @ivalue: vector that will contain the element's content, must be a  | 
742  |  |  *   pointer to memory cells already allocated (may be %NULL).  | 
743  |  |  * @len: number of bytes of *value: value[0]..value[len-1]. Initially  | 
744  |  |  *   holds the sizeof value.  | 
745  |  |  *  | 
746  |  |  * Returns the value of one element inside a structure.  | 
747  |  |  * If an element is OPTIONAL and this returns  | 
748  |  |  * %ASN1_ELEMENT_NOT_FOUND, it means that this element wasn't present  | 
749  |  |  * in the der encoding that created the structure.  The first element  | 
750  |  |  * of a SEQUENCE_OF or SET_OF is named "?1". The second one "?2" and  | 
751  |  |  * so on. If the @root provided is a node to specific sequence element,  | 
752  |  |  * then the keyword "?CURRENT" is also acceptable and indicates the  | 
753  |  |  * current sequence element of this node.  | 
754  |  |  *  | 
755  |  |  * Note that there can be valid values with length zero. In these case  | 
756  |  |  * this function will succeed and @len will be zero.  | 
757  |  |  *  | 
758  |  |  * INTEGER: VALUE will contain a two's complement form integer.  | 
759  |  |  *  | 
760  |  |  *            integer=-1  -> value[0]=0xFF , len=1.  | 
761  |  |  *            integer=1   -> value[0]=0x01 , len=1.  | 
762  |  |  *  | 
763  |  |  * ENUMERATED: As INTEGER (but only with not negative numbers).  | 
764  |  |  *  | 
765  |  |  * BOOLEAN: VALUE will be the null terminated string "TRUE" or  | 
766  |  |  *   "FALSE" and LEN=5 or LEN=6.  | 
767  |  |  *  | 
768  |  |  * OBJECT IDENTIFIER: VALUE will be a null terminated string with  | 
769  |  |  *   each number separated by a dot (i.e. "1.2.3.543.1").  | 
770  |  |  *  | 
771  |  |  *                      LEN = strlen(VALUE)+1  | 
772  |  |  *  | 
773  |  |  * UTCTime: VALUE will be a null terminated string in one of these  | 
774  |  |  *   formats: "YYMMDDhhmmss+hh'mm'" or "YYMMDDhhmmss-hh'mm'".  | 
775  |  |  *   LEN=strlen(VALUE)+1.  | 
776  |  |  *  | 
777  |  |  * GeneralizedTime: VALUE will be a null terminated string in the  | 
778  |  |  *   same format used to set the value.  | 
779  |  |  *  | 
780  |  |  * OCTET STRING: VALUE will contain the octet string and LEN will be  | 
781  |  |  *   the number of octets.  | 
782  |  |  *  | 
783  |  |  * GeneralString: VALUE will contain the generalstring and LEN will  | 
784  |  |  *   be the number of octets.  | 
785  |  |  *  | 
786  |  |  * BIT STRING: VALUE will contain the bit string organized by bytes  | 
787  |  |  *   and LEN will be the number of bits.  | 
788  |  |  *  | 
789  |  |  * CHOICE: If NAME indicates a choice type, VALUE will specify the  | 
790  |  |  *   alternative selected.  | 
791  |  |  *  | 
792  |  |  * ANY: If NAME indicates an any type, VALUE will indicate the DER  | 
793  |  |  *   encoding of the structure actually used.  | 
794  |  |  *  | 
795  |  |  * Returns: %ASN1_SUCCESS if value is returned,  | 
796  |  |  *   %ASN1_ELEMENT_NOT_FOUND if @name is not a valid element,  | 
797  |  |  *   %ASN1_VALUE_NOT_FOUND if there isn't any value for the element  | 
798  |  |  *   selected, and %ASN1_MEM_ERROR if The value vector isn't big enough  | 
799  |  |  *   to store the result, and in this case @len will contain the number of  | 
800  |  |  *   bytes needed. On the occasion that the stored data are of zero-length  | 
801  |  |  *   this function may return %ASN1_SUCCESS even if the provided @len is zero.  | 
802  |  |  **/  | 
803  |  | int  | 
804  |  | asn1_read_value (asn1_node_const root, const char *name, void *ivalue,  | 
805  |  |      int *len)  | 
806  | 0  | { | 
807  | 0  |   return asn1_read_value_type (root, name, ivalue, len, NULL);  | 
808  | 0  | }  | 
809  |  |  | 
810  |  | /**  | 
811  |  |  * asn1_read_value_type:  | 
812  |  |  * @root: pointer to a structure.  | 
813  |  |  * @name: the name of the element inside a structure that you want to read.  | 
814  |  |  * @ivalue: vector that will contain the element's content, must be a  | 
815  |  |  *   pointer to memory cells already allocated (may be %NULL).  | 
816  |  |  * @len: number of bytes of *value: value[0]..value[len-1]. Initially  | 
817  |  |  *   holds the sizeof value.  | 
818  |  |  * @etype: The type of the value read (ASN1_ETYPE)  | 
819  |  |  *  | 
820  |  |  * Returns the type and value of one element inside a structure.  | 
821  |  |  * If an element is OPTIONAL and this returns  | 
822  |  |  * %ASN1_ELEMENT_NOT_FOUND, it means that this element wasn't present  | 
823  |  |  * in the der encoding that created the structure.  The first element  | 
824  |  |  * of a SEQUENCE_OF or SET_OF is named "?1". The second one "?2" and  | 
825  |  |  * so on. If the @root provided is a node to specific sequence element,  | 
826  |  |  * then the keyword "?CURRENT" is also acceptable and indicates the  | 
827  |  |  * current sequence element of this node.  | 
828  |  |  *  | 
829  |  |  * Note that there can be valid values with length zero. In these case  | 
830  |  |  * this function will succeed and @len will be zero.  | 
831  |  |  *  | 
832  |  |  *  | 
833  |  |  * INTEGER: VALUE will contain a two's complement form integer.  | 
834  |  |  *  | 
835  |  |  *            integer=-1  -> value[0]=0xFF , len=1.  | 
836  |  |  *            integer=1   -> value[0]=0x01 , len=1.  | 
837  |  |  *  | 
838  |  |  * ENUMERATED: As INTEGER (but only with not negative numbers).  | 
839  |  |  *  | 
840  |  |  * BOOLEAN: VALUE will be the null terminated string "TRUE" or  | 
841  |  |  *   "FALSE" and LEN=5 or LEN=6.  | 
842  |  |  *  | 
843  |  |  * OBJECT IDENTIFIER: VALUE will be a null terminated string with  | 
844  |  |  *   each number separated by a dot (i.e. "1.2.3.543.1").  | 
845  |  |  *  | 
846  |  |  *                      LEN = strlen(VALUE)+1  | 
847  |  |  *  | 
848  |  |  * UTCTime: VALUE will be a null terminated string in one of these  | 
849  |  |  *   formats: "YYMMDDhhmmss+hh'mm'" or "YYMMDDhhmmss-hh'mm'".  | 
850  |  |  *   LEN=strlen(VALUE)+1.  | 
851  |  |  *  | 
852  |  |  * GeneralizedTime: VALUE will be a null terminated string in the  | 
853  |  |  *   same format used to set the value.  | 
854  |  |  *  | 
855  |  |  * OCTET STRING: VALUE will contain the octet string and LEN will be  | 
856  |  |  *   the number of octets.  | 
857  |  |  *  | 
858  |  |  * GeneralString: VALUE will contain the generalstring and LEN will  | 
859  |  |  *   be the number of octets.  | 
860  |  |  *  | 
861  |  |  * BIT STRING: VALUE will contain the bit string organized by bytes  | 
862  |  |  *   and LEN will be the number of bits.  | 
863  |  |  *  | 
864  |  |  * CHOICE: If NAME indicates a choice type, VALUE will specify the  | 
865  |  |  *   alternative selected.  | 
866  |  |  *  | 
867  |  |  * ANY: If NAME indicates an any type, VALUE will indicate the DER  | 
868  |  |  *   encoding of the structure actually used.  | 
869  |  |  *  | 
870  |  |  * Returns: %ASN1_SUCCESS if value is returned,  | 
871  |  |  *   %ASN1_ELEMENT_NOT_FOUND if @name is not a valid element,  | 
872  |  |  *   %ASN1_VALUE_NOT_FOUND if there isn't any value for the element  | 
873  |  |  *   selected, and %ASN1_MEM_ERROR if The value vector isn't big enough  | 
874  |  |  *   to store the result, and in this case @len will contain the number of  | 
875  |  |  *   bytes needed. On the occasion that the stored data are of zero-length  | 
876  |  |  *   this function may return %ASN1_SUCCESS even if the provided @len is zero.  | 
877  |  |  **/  | 
878  |  | int  | 
879  |  | asn1_read_value_type (asn1_node_const root, const char *name, void *ivalue,  | 
880  |  |           int *len, unsigned int *etype)  | 
881  | 0  | { | 
882  | 0  |   asn1_node_const node, p, p2;  | 
883  | 0  |   int len2, len3, result;  | 
884  | 0  |   int value_size = *len;  | 
885  | 0  |   unsigned char *value = ivalue;  | 
886  | 0  |   unsigned type;  | 
887  |  | 
  | 
888  | 0  |   node = asn1_find_node (root, name);  | 
889  | 0  |   if (node == NULL)  | 
890  | 0  |     return ASN1_ELEMENT_NOT_FOUND;  | 
891  |  |  | 
892  | 0  |   type = type_field (node->type);  | 
893  |  | 
  | 
894  | 0  |   if ((type != ASN1_ETYPE_NULL) &&  | 
895  | 0  |       (type != ASN1_ETYPE_CHOICE) &&  | 
896  | 0  |       !(node->type & CONST_DEFAULT) && !(node->type & CONST_ASSIGN) &&  | 
897  | 0  |       (node->value == NULL))  | 
898  | 0  |     return ASN1_VALUE_NOT_FOUND;  | 
899  |  |  | 
900  | 0  |   if (etype)  | 
901  | 0  |     *etype = type;  | 
902  | 0  |   switch (type)  | 
903  | 0  |     { | 
904  | 0  |     case ASN1_ETYPE_NULL:  | 
905  | 0  |       PUT_STR_VALUE (value, value_size, "NULL");  | 
906  | 0  |       break;  | 
907  | 0  |     case ASN1_ETYPE_BOOLEAN:  | 
908  | 0  |       if ((node->type & CONST_DEFAULT) && (node->value == NULL))  | 
909  | 0  |   { | 
910  | 0  |     p = node->down;  | 
911  | 0  |     while (type_field (p->type) != ASN1_ETYPE_DEFAULT)  | 
912  | 0  |       p = p->right;  | 
913  | 0  |     if (p->type & CONST_TRUE)  | 
914  | 0  |       { | 
915  | 0  |         PUT_STR_VALUE (value, value_size, "TRUE");  | 
916  | 0  |       }  | 
917  | 0  |     else  | 
918  | 0  |       { | 
919  | 0  |         PUT_STR_VALUE (value, value_size, "FALSE");  | 
920  | 0  |       }  | 
921  | 0  |   }  | 
922  | 0  |       else if (node->value[0] == 'T')  | 
923  | 0  |   { | 
924  | 0  |     PUT_STR_VALUE (value, value_size, "TRUE");  | 
925  | 0  |   }  | 
926  | 0  |       else  | 
927  | 0  |   { | 
928  | 0  |     PUT_STR_VALUE (value, value_size, "FALSE");  | 
929  | 0  |   }  | 
930  | 0  |       break;  | 
931  | 0  |     case ASN1_ETYPE_INTEGER:  | 
932  | 0  |     case ASN1_ETYPE_ENUMERATED:  | 
933  | 0  |       if ((node->type & CONST_DEFAULT) && (node->value == NULL))  | 
934  | 0  |   { | 
935  | 0  |     p = node->down;  | 
936  | 0  |     while (type_field (p->type) != ASN1_ETYPE_DEFAULT)  | 
937  | 0  |       p = p->right;  | 
938  | 0  |     if ((c_isdigit (p->value[0])) || (p->value[0] == '-')  | 
939  | 0  |         || (p->value[0] == '+'))  | 
940  | 0  |       { | 
941  | 0  |         result = _asn1_convert_integer  | 
942  | 0  |     (p->value, value, value_size, len);  | 
943  | 0  |         if (result != ASN1_SUCCESS)  | 
944  | 0  |     return result;  | 
945  | 0  |       }  | 
946  | 0  |     else  | 
947  | 0  |       {     /* is an identifier like v1 */ | 
948  | 0  |         p2 = node->down;  | 
949  | 0  |         while (p2)  | 
950  | 0  |     { | 
951  | 0  |       if (type_field (p2->type) == ASN1_ETYPE_CONSTANT)  | 
952  | 0  |         { | 
953  | 0  |           if (!_asn1_strcmp (p2->name, p->value))  | 
954  | 0  |       { | 
955  | 0  |         result = _asn1_convert_integer  | 
956  | 0  |           (p2->value, value, value_size, len);  | 
957  | 0  |         if (result != ASN1_SUCCESS)  | 
958  | 0  |           return result;  | 
959  | 0  |         break;  | 
960  | 0  |       }  | 
961  | 0  |         }  | 
962  | 0  |       p2 = p2->right;  | 
963  | 0  |     }  | 
964  | 0  |       }  | 
965  | 0  |   }  | 
966  | 0  |       else  | 
967  | 0  |   { | 
968  | 0  |     len2 = -1;  | 
969  | 0  |     result = asn1_get_octet_der  | 
970  | 0  |       (node->value, node->value_len, &len2, value, value_size, len);  | 
971  | 0  |     if (result != ASN1_SUCCESS)  | 
972  | 0  |       return result;  | 
973  | 0  |   }  | 
974  | 0  |       break;  | 
975  | 0  |     case ASN1_ETYPE_OBJECT_ID:  | 
976  | 0  |       if (node->type & CONST_ASSIGN)  | 
977  | 0  |   { | 
978  | 0  |     *len = 0;  | 
979  | 0  |     if (value)  | 
980  | 0  |       value[0] = 0;  | 
981  | 0  |     p = node->down;  | 
982  | 0  |     while (p)  | 
983  | 0  |       { | 
984  | 0  |         if (type_field (p->type) == ASN1_ETYPE_CONSTANT)  | 
985  | 0  |     { | 
986  | 0  |       ADD_STR_VALUE (value, value_size, p->value);  | 
987  | 0  |       if (p->right)  | 
988  | 0  |         { | 
989  | 0  |           ADD_STR_VALUE (value, value_size, ".");  | 
990  | 0  |         }  | 
991  | 0  |     }  | 
992  | 0  |         p = p->right;  | 
993  | 0  |       }  | 
994  | 0  |     (*len)++;  | 
995  | 0  |   }  | 
996  | 0  |       else if ((node->type & CONST_DEFAULT) && (node->value == NULL))  | 
997  | 0  |   { | 
998  | 0  |     p = node->down;  | 
999  | 0  |     while (type_field (p->type) != ASN1_ETYPE_DEFAULT)  | 
1000  | 0  |       p = p->right;  | 
1001  | 0  |     PUT_STR_VALUE (value, value_size, p->value);  | 
1002  | 0  |   }  | 
1003  | 0  |       else  | 
1004  | 0  |   { | 
1005  | 0  |     PUT_STR_VALUE (value, value_size, node->value);  | 
1006  | 0  |   }  | 
1007  | 0  |       break;  | 
1008  | 0  |     case ASN1_ETYPE_GENERALIZED_TIME:  | 
1009  | 0  |     case ASN1_ETYPE_UTC_TIME:  | 
1010  | 0  |       PUT_AS_STR_VALUE (value, value_size, node->value, node->value_len);  | 
1011  | 0  |       break;  | 
1012  | 0  |     case ASN1_ETYPE_OCTET_STRING:  | 
1013  | 0  |     case ASN1_ETYPE_GENERALSTRING:  | 
1014  | 0  |     case ASN1_ETYPE_NUMERIC_STRING:  | 
1015  | 0  |     case ASN1_ETYPE_IA5_STRING:  | 
1016  | 0  |     case ASN1_ETYPE_TELETEX_STRING:  | 
1017  | 0  |     case ASN1_ETYPE_PRINTABLE_STRING:  | 
1018  | 0  |     case ASN1_ETYPE_UNIVERSAL_STRING:  | 
1019  | 0  |     case ASN1_ETYPE_BMP_STRING:  | 
1020  | 0  |     case ASN1_ETYPE_UTF8_STRING:  | 
1021  | 0  |     case ASN1_ETYPE_VISIBLE_STRING:  | 
1022  | 0  |       len2 = -1;  | 
1023  | 0  |       result = asn1_get_octet_der  | 
1024  | 0  |   (node->value, node->value_len, &len2, value, value_size, len);  | 
1025  | 0  |       if (result != ASN1_SUCCESS)  | 
1026  | 0  |   return result;  | 
1027  | 0  |       break;  | 
1028  | 0  |     case ASN1_ETYPE_BIT_STRING:  | 
1029  | 0  |       len2 = -1;  | 
1030  | 0  |       result = asn1_get_bit_der  | 
1031  | 0  |   (node->value, node->value_len, &len2, value, value_size, len);  | 
1032  | 0  |       if (result != ASN1_SUCCESS)  | 
1033  | 0  |   return result;  | 
1034  | 0  |       break;  | 
1035  | 0  |     case ASN1_ETYPE_CHOICE:  | 
1036  | 0  |       PUT_STR_VALUE (value, value_size, node->down->name);  | 
1037  | 0  |       break;  | 
1038  | 0  |     case ASN1_ETYPE_ANY:  | 
1039  | 0  |       len3 = -1;  | 
1040  | 0  |       len2 = asn1_get_length_der (node->value, node->value_len, &len3);  | 
1041  | 0  |       if (len2 < 0)  | 
1042  | 0  |   return ASN1_DER_ERROR;  | 
1043  | 0  |       PUT_VALUE (value, value_size, node->value + len3, len2);  | 
1044  | 0  |       break;  | 
1045  | 0  |     default:  | 
1046  | 0  |       return ASN1_ELEMENT_NOT_FOUND;  | 
1047  | 0  |       break;  | 
1048  | 0  |     }  | 
1049  | 0  |   return ASN1_SUCCESS;  | 
1050  | 0  | }  | 
1051  |  |  | 
1052  |  |  | 
1053  |  | /**  | 
1054  |  |  * asn1_read_tag:  | 
1055  |  |  * @root: pointer to a structure  | 
1056  |  |  * @name: the name of the element inside a structure.  | 
1057  |  |  * @tagValue:  variable that will contain the TAG value.  | 
1058  |  |  * @classValue: variable that will specify the TAG type.  | 
1059  |  |  *  | 
1060  |  |  * Returns the TAG and the CLASS of one element inside a structure.  | 
1061  |  |  * CLASS can have one of these constants: %ASN1_CLASS_APPLICATION,  | 
1062  |  |  * %ASN1_CLASS_UNIVERSAL, %ASN1_CLASS_PRIVATE or  | 
1063  |  |  * %ASN1_CLASS_CONTEXT_SPECIFIC.  | 
1064  |  |  *  | 
1065  |  |  * Returns: %ASN1_SUCCESS if successful, %ASN1_ELEMENT_NOT_FOUND if  | 
1066  |  |  *   @name is not a valid element.  | 
1067  |  |  **/  | 
1068  |  | int  | 
1069  |  | asn1_read_tag (asn1_node_const root, const char *name, int *tagValue,  | 
1070  |  |          int *classValue)  | 
1071  | 0  | { | 
1072  | 0  |   asn1_node node, p, pTag;  | 
1073  |  | 
  | 
1074  | 0  |   node = asn1_find_node (root, name);  | 
1075  | 0  |   if (node == NULL)  | 
1076  | 0  |     return ASN1_ELEMENT_NOT_FOUND;  | 
1077  |  |  | 
1078  | 0  |   p = node->down;  | 
1079  |  |  | 
1080  |  |   /* pTag will points to the IMPLICIT TAG */  | 
1081  | 0  |   pTag = NULL;  | 
1082  | 0  |   if (node->type & CONST_TAG)  | 
1083  | 0  |     { | 
1084  | 0  |       while (p)  | 
1085  | 0  |   { | 
1086  | 0  |     if (type_field (p->type) == ASN1_ETYPE_TAG)  | 
1087  | 0  |       { | 
1088  | 0  |         if ((p->type & CONST_IMPLICIT) && (pTag == NULL))  | 
1089  | 0  |     pTag = p;  | 
1090  | 0  |         else if (p->type & CONST_EXPLICIT)  | 
1091  | 0  |     pTag = NULL;  | 
1092  | 0  |       }  | 
1093  | 0  |     p = p->right;  | 
1094  | 0  |   }  | 
1095  | 0  |     }  | 
1096  |  | 
  | 
1097  | 0  |   if (pTag)  | 
1098  | 0  |     { | 
1099  | 0  |       *tagValue = _asn1_strtoul (pTag->value, NULL, 10);  | 
1100  |  | 
  | 
1101  | 0  |       if (pTag->type & CONST_APPLICATION)  | 
1102  | 0  |   *classValue = ASN1_CLASS_APPLICATION;  | 
1103  | 0  |       else if (pTag->type & CONST_UNIVERSAL)  | 
1104  | 0  |   *classValue = ASN1_CLASS_UNIVERSAL;  | 
1105  | 0  |       else if (pTag->type & CONST_PRIVATE)  | 
1106  | 0  |   *classValue = ASN1_CLASS_PRIVATE;  | 
1107  | 0  |       else  | 
1108  | 0  |   *classValue = ASN1_CLASS_CONTEXT_SPECIFIC;  | 
1109  | 0  |     }  | 
1110  | 0  |   else  | 
1111  | 0  |     { | 
1112  | 0  |       unsigned type = type_field (node->type);  | 
1113  | 0  |       *classValue = ASN1_CLASS_UNIVERSAL;  | 
1114  |  | 
  | 
1115  | 0  |       switch (type)  | 
1116  | 0  |   { | 
1117  | 0  |   CASE_HANDLED_ETYPES:  | 
1118  | 0  |     *tagValue = _asn1_tags[type].tag;  | 
1119  | 0  |     break;  | 
1120  | 0  |   case ASN1_ETYPE_TAG:  | 
1121  | 0  |   case ASN1_ETYPE_CHOICE:  | 
1122  | 0  |   case ASN1_ETYPE_ANY:  | 
1123  | 0  |     *tagValue = -1;  | 
1124  | 0  |     break;  | 
1125  | 0  |   default:  | 
1126  | 0  |     break;  | 
1127  | 0  |   }  | 
1128  | 0  |     }  | 
1129  |  |  | 
1130  | 0  |   return ASN1_SUCCESS;  | 
1131  | 0  | }  | 
1132  |  |  | 
1133  |  | /**  | 
1134  |  |  * asn1_read_node_value:  | 
1135  |  |  * @node: pointer to a node.  | 
1136  |  |  * @data: a point to a asn1_data_node_st  | 
1137  |  |  *  | 
1138  |  |  * Returns the value a data node inside a asn1_node structure.  | 
1139  |  |  * The data returned should be handled as constant values.  | 
1140  |  |  *  | 
1141  |  |  * Returns: %ASN1_SUCCESS if the node exists.  | 
1142  |  |  **/  | 
1143  |  | int  | 
1144  |  | asn1_read_node_value (asn1_node_const node, asn1_data_node_st *data)  | 
1145  | 0  | { | 
1146  | 0  |   data->name = node->name;  | 
1147  | 0  |   data->value = node->value;  | 
1148  | 0  |   data->value_len = node->value_len;  | 
1149  | 0  |   data->type = type_field (node->type);  | 
1150  |  | 
  | 
1151  | 0  |   return ASN1_SUCCESS;  | 
1152  | 0  | }  |