Added log level flag LOG_MALLOC, moved malloc entries there.
[yaz-moved-to-github.git] / odr / ber_oct.c
1 /*
2  * Copyright (c) 1995-2001, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_oct.c,v $
7  * Revision 1.18  2001-06-26 13:03:48  adam
8  * Bug fix: introduced by previous commit.
9  *
10  * Revision 1.17  2001/06/26 12:14:15  adam
11  * When BER decoding a null byte is appended to the OCTET buffer.
12  *
13  * Revision 1.16  2000/02/29 13:44:55  adam
14  * Check for config.h (currently not generated).
15  *
16  * Revision 1.15  2000/01/31 13:15:21  adam
17  * Removed uses of assert(3). Cleanup of ODR. CCL parser update so
18  * that some characters are not surrounded by spaces in resulting term.
19  * ILL-code updates.
20  *
21  * Revision 1.14  1999/11/30 13:47:11  adam
22  * Improved installation. Moved header files to include/yaz.
23  *
24  * Revision 1.13  1999/04/20 09:56:48  adam
25  * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
26  * Modified all encoders/decoders to reflect this change.
27  *
28  * Revision 1.12  1999/01/08 11:23:24  adam
29  * Added const modifier to some of the BER/ODR encoding routines.
30  *
31  * Revision 1.11  1998/02/11 11:53:34  adam
32  * Changed code so that it compiles as C++.
33  *
34  * Revision 1.10  1995/09/29 17:12:18  quinn
35  * Smallish
36  *
37  * Revision 1.9  1995/09/27  15:02:55  quinn
38  * Modified function heads & prototypes.
39  *
40  * Revision 1.8  1995/05/16  08:50:47  quinn
41  * License, documentation, and memory fixes
42  *
43  * Revision 1.7  1995/04/18  08:15:17  quinn
44  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
45  * neater. We'll make the same change for decoding one day.
46  *
47  * Revision 1.6  1995/03/17  10:17:41  quinn
48  * Added memory management.
49  *
50  * Revision 1.5  1995/03/08  12:12:10  quinn
51  * Added better error checking.
52  *
53  * Revision 1.4  1995/02/10  15:55:28  quinn
54  * Bug fixes, mostly.
55  *
56  * Revision 1.3  1995/02/03  17:04:34  quinn
57  * *** empty log message ***
58  *
59  * Revision 1.2  1995/02/02  20:38:50  quinn
60  * Updates.
61  *
62  * Revision 1.1  1995/02/02  16:21:52  quinn
63  * First kick.
64  *
65  */
66 #if HAVE_CONFIG_H
67 #include <config.h>
68 #endif
69
70 #include <yaz/odr.h>
71
72 int ber_octetstring(ODR o, Odr_oct *p, int cons)
73 {
74     int res, len;
75     const unsigned char *base;
76     unsigned char *c;
77
78     switch (o->direction)
79     {
80         case ODR_DECODE:
81             if ((res = ber_declen(o->bp, &len)) < 0)
82             {
83                 o->error = OPROTO;
84                 return 0;
85             }
86             o->bp += res;
87             if (cons)       /* fetch component strings */
88             {
89                 base = o->bp;
90                 while (odp_more_chunks(o, base, len))
91                     if (!odr_octetstring(o, &p, 0, 0))
92                         return 0;
93                 return 1;
94             }
95             /* primitive octetstring */
96             if (len < 0)
97             {
98                 o->error = OOTHER;
99                 return 0;
100             }
101             if (len + 1 > p->size - p->len)
102             {
103                 c = (unsigned char *)odr_malloc(o, p->size += len + 1);
104                 if (p->len)
105                     memcpy(c, p->buf, p->len);
106                 p->buf = c;
107             }
108             if (len)
109                 memcpy(p->buf + p->len, o->bp, len);
110             p->len += len;
111             o->bp += len;
112             /* the final null is really not part of the buffer, but */
113             /* it helps somes applications that assumes C strings */
114             if (len)
115                 p->buf[p->len] = '\0';
116             return 1;
117         case ODR_ENCODE:
118             if ((res = ber_enclen(o, p->len, 5, 0)) < 0)
119                 return 0;
120             if (p->len == 0)
121                 return 1;
122             if (odr_write(o, p->buf, p->len) < 0)
123                 return 0;
124             return 1;
125         case ODR_PRINT: return 1;
126         default: o->error = OOTHER; return 0;
127     }
128 }