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