Fixed possible buf in proto.c
[yaz-moved-to-github.git] / odr / ber_any.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_any.c,v $
7  * Revision 1.7  1995-03-17 10:17:39  quinn
8  * Added memory management.
9  *
10  * Revision 1.6  1995/03/08  12:12:02  quinn
11  * Added better error checking.
12  *
13  * Revision 1.5  1995/02/14  20:39:54  quinn
14  * Fixed bugs in completeBER and (serious one in) ber_oid.
15  *
16  * Revision 1.4  1995/02/14  11:54:33  quinn
17  * Adjustments.
18  *
19  * Revision 1.3  1995/02/10  18:57:24  quinn
20  * More in the way of error-checking.
21  *
22  * Revision 1.2  1995/02/10  15:55:28  quinn
23  * Bug fixes, mostly.
24  *
25  * Revision 1.1  1995/02/09  15:51:45  quinn
26  * Works better now.
27  *
28  */
29
30 #include <odr.h>
31
32 int ber_any(ODR o, Odr_any **p)
33 {
34     int res;
35
36     switch (o->direction)
37     {
38         case ODR_DECODE:
39             if ((res = completeBER(o->bp, o->left)) <= 0)        /* FIX THIS */
40             {
41                 o->error = OPROTO;
42                 return 0;
43             }
44             (*p)->buf = odr_malloc(o, res);
45             memcpy((*p)->buf, o->bp, res);
46             (*p)->len = (*p)->size = res;
47             o->bp += res;
48             o->left -= res;
49             return 1;
50         case ODR_ENCODE:
51             if ((*p)->len > o->left)
52             {
53                 o->error = OSPACE;
54                 return 0;
55             }
56             memcpy(o->bp , (*p)->buf, (*p)->len);
57             o->bp += (*p)->len;
58             o->left -= (*p)->len;
59             return 1;
60         default: o->error = OOTHER; return 0;
61     }
62 }
63
64 /*
65  * Return length of BER-package or 0.
66  */
67 int completeBER(unsigned char *buf, int len)
68 {
69     int res, ll, class, tag, cons;
70     unsigned char *b = buf;
71     
72     if (!len)
73         return 0;
74     if (!buf[0] && !buf[1])
75         return 0;
76     if ((res = ber_dectag(b, &class, &tag, &cons)) <= 0)
77         return 0;
78     if (res > len)
79         return 0;
80     b += res;
81     len -= res;
82     if ((res = ber_declen(b, &ll)) <= 0)
83         return 0;
84     if (res > len)
85         return 0;
86     b += res;
87     len -= res;
88     if (ll >= 0)
89         return (len >= ll ? ll + (b-buf) : 0);
90     if (!cons)
91         return 0;    
92     /* constructed - cycle through children */
93     while (len >= 2)
94     {
95         if (*b == 0 && *(b + 1) == 0)
96             break;
97         if (!(res = completeBER(b, len)))
98             return 0;
99         b += res;
100         len -= res;
101     }
102     return (b - buf) + 2;
103 }