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