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