Added const modifier to some of the BER/ODR encoding routines.
[yaz-moved-to-github.git] / odr / ber_any.c
1 /*
2  * Copyright (c) 1995-1999, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_any.c,v $
7  * Revision 1.15  1999-01-08 11:23:20  adam
8  * Added const modifier to some of the BER/ODR encoding routines.
9  *
10  * Revision 1.14  1998/02/11 11:53:34  adam
11  * Changed code so that it compiles as C++.
12  *
13  * Revision 1.13  1997/05/14 06:53:56  adam
14  * C++ support.
15  *
16  * Revision 1.12  1995/09/29 17:12:15  quinn
17  * Smallish
18  *
19  * Revision 1.11  1995/09/27  15:02:54  quinn
20  * Modified function heads & prototypes.
21  *
22  * Revision 1.10  1995/05/16  08:50:42  quinn
23  * License, documentation, and memory fixes
24  *
25  * Revision 1.9  1995/04/18  08:15:12  quinn
26  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
27  * neater. We'll make the same change for decoding one day.
28  *
29  * Revision 1.8  1995/04/17  09:37:42  quinn
30  * *** empty log message ***
31  *
32  * Revision 1.7  1995/03/17  10:17:39  quinn
33  * Added memory management.
34  *
35  * Revision 1.6  1995/03/08  12:12:02  quinn
36  * Added better error checking.
37  *
38  * Revision 1.5  1995/02/14  20:39:54  quinn
39  * Fixed bugs in completeBER and (serious one in) ber_oid.
40  *
41  * Revision 1.4  1995/02/14  11:54:33  quinn
42  * Adjustments.
43  *
44  * Revision 1.3  1995/02/10  18:57:24  quinn
45  * More in the way of error-checking.
46  *
47  * Revision 1.2  1995/02/10  15:55:28  quinn
48  * Bug fixes, mostly.
49  *
50  * Revision 1.1  1995/02/09  15:51:45  quinn
51  * Works better now.
52  *
53  */
54
55 #include <odr.h>
56
57 int ber_any(ODR o, Odr_any **p)
58 {
59     int res;
60
61     switch (o->direction)
62     {
63         case ODR_DECODE:
64             if ((res = completeBER(o->bp, o->left)) <= 0)        /* FIX THIS */
65             {
66                 o->error = OPROTO;
67                 return 0;
68             }
69             (*p)->buf = (unsigned char *)odr_malloc(o, res);
70             memcpy((*p)->buf, o->bp, res);
71             (*p)->len = (*p)->size = res;
72             o->bp += res;
73             o->left -= res;
74             return 1;
75         case ODR_ENCODE:
76             if (odr_write(o, (*p)->buf, (*p)->len) < 0)
77                 return 0;
78             return 1;
79         default: o->error = OOTHER; return 0;
80     }
81 }
82
83 /*
84  * Return length of BER-package or 0.
85  */
86 int completeBER(const unsigned char *buf, int len)
87 {
88     int res, ll, zclass, tag, cons;
89     const unsigned char *b = buf;
90     
91     if (!len)
92         return 0;
93     if (!buf[0] && !buf[1])
94         return 0;
95     if ((res = ber_dectag(b, &zclass, &tag, &cons)) <= 0)
96         return 0;
97     if (res > len)
98         return 0;
99     b += res;
100     len -= res;
101     if ((res = ber_declen(b, &ll)) <= 0)
102         return 0;
103     if (res > len)
104         return 0;
105     b += res;
106     len -= res;
107     if (ll >= 0)
108         return (len >= ll ? ll + (b-buf) : 0);
109     if (!cons)
110         return 0;    
111     /* constructed - cycle through children */
112     while (len >= 2)
113     {
114         if (*b == 0 && *(b + 1) == 0)
115             break;
116         if (!(res = completeBER(b, len)))
117             return 0;
118         b += res;
119         len -= res;
120     }
121     if (len < 2)
122         return 0;
123     return (b - buf) + 2;
124 }