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