Updated.
[yaz-moved-to-github.git] / odr / ber_oct.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_oct.c,v $
7  * Revision 1.10  1995-09-29 17:12:18  quinn
8  * Smallish
9  *
10  * Revision 1.9  1995/09/27  15:02:55  quinn
11  * Modified function heads & prototypes.
12  *
13  * Revision 1.8  1995/05/16  08:50:47  quinn
14  * License, documentation, and memory fixes
15  *
16  * Revision 1.7  1995/04/18  08:15:17  quinn
17  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
18  * neater. We'll make the same change for decoding one day.
19  *
20  * Revision 1.6  1995/03/17  10:17:41  quinn
21  * Added memory management.
22  *
23  * Revision 1.5  1995/03/08  12:12:10  quinn
24  * Added better error checking.
25  *
26  * Revision 1.4  1995/02/10  15:55:28  quinn
27  * Bug fixes, mostly.
28  *
29  * Revision 1.3  1995/02/03  17:04:34  quinn
30  * *** empty log message ***
31  *
32  * Revision 1.2  1995/02/02  20:38:50  quinn
33  * Updates.
34  *
35  * Revision 1.1  1995/02/02  16:21:52  quinn
36  * First kick.
37  *
38  */
39
40 #include <odr.h>
41
42 int ber_octetstring(ODR o, Odr_oct *p, int cons)
43 {
44     int res, len;
45     unsigned char *base, *c;
46
47     switch (o->direction)
48     {
49         case ODR_DECODE:
50             if ((res = ber_declen(o->bp, &len)) < 0)
51             {
52                 o->error = OPROTO;
53                 return 0;
54             }
55             o->bp += res;
56             o->left -= res;
57             if (cons)       /* fetch component strings */
58             {
59                 base = o->bp;
60                 while (odp_more_chunks(o, base, len))
61                     if (!odr_octetstring(o, &p, 0))
62                         return 0;
63                 return 1;
64             }
65             /* primitive octetstring */
66             if (len < 0)
67             {
68                 o->error = OOTHER;
69                 return 0;
70             }
71             if (len + 1 > p->size - p->len)
72             {
73                 c = odr_malloc(o, p->size += len + 1);
74                 if (p->len)
75                     memcpy(c, p->buf, p->len);
76                 p->buf = c;
77             }
78             if (len)
79                 memcpy(p->buf + p->len, o->bp, len);
80             p->len += len;
81             o->bp += len;
82             o->left -= len;
83             return 1;
84         case ODR_ENCODE:
85             if ((res = ber_enclen(o, p->len, 5, 0)) < 0)
86                 return 0;
87             if (p->len == 0)
88                 return 1;
89             if (odr_write(o, p->buf, p->len) < 0)
90                 return 0;
91             return 1;
92         case ODR_PRINT: return 1;
93         default: o->error = OOTHER; return 0;
94     }
95 }