]> git.sur5r.net Git - openldap/blob - libraries/libldif/line64.c
Added lber_get/set_option. Removed lber_debug/ldap_debug.
[openldap] / libraries / libldif / line64.c
1 /* line64.c - routines for dealing with the slapd line format */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <ctype.h>
8
9 #include <ac/string.h>
10 #include <ac/socket.h>
11 #include <ac/time.h>
12
13 int ldif_debug = 0;
14
15 #define ldap_debug      ldif_debug
16 #include "ldap_log.h"
17 #include "ldif.h"
18
19 #define RIGHT2                  0x03
20 #define RIGHT4                  0x0f
21 #define CONTINUED_LINE_MARKER   '\001'
22
23 static char nib2b64[0x40f] =
24         "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
25
26 static unsigned char b642nib[0x80] = {
27         0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
28         0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
29         0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
30         0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
31         0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
32         0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f,
33         0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
34         0x3c, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
35         0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
36         0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
37         0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,
38         0x17, 0x18, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
39         0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,
40         0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,
41         0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,
42         0x31, 0x32, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff
43 };
44
45 /*
46  * ldif_parse_line - takes a line of the form "type:[:] value" and splits it
47  * into components "type" and "value".  if a double colon separates type from
48  * value, then value is encoded in base 64, and parse_line un-decodes it
49  * (in place) before returning.
50  */
51
52 int
53 ldif_parse_line(
54     char        *line,
55     char        **type,
56     char        **value,
57     int         *vlen
58 )
59 {
60         char    *p, *s, *d, *byte, *stop;
61         char    nib;
62         int     i, b64;
63
64         /* skip any leading space */
65         while ( isspace( *line ) ) {
66                 line++;
67         }
68         *type = line;
69
70         for ( s = line; *s && *s != ':'; s++ )
71                 ;       /* NULL */
72         if ( *s == '\0' ) {
73                 Debug( LDAP_DEBUG_PARSE, "parse_line missing ':'\n", 0, 0, 0 );
74                 return( -1 );
75         }
76
77         /* trim any space between type and : */
78         for ( p = s - 1; p > line && isspace( *p ); p-- ) {
79                 *p = '\0';
80         }
81         *s++ = '\0';
82
83         /* check for double : - indicates base 64 encoded value */
84         if ( *s == ':' ) {
85                 s++;
86                 b64 = 1;
87
88         /* single : - normally encoded value */
89         } else {
90                 b64 = 0;
91         }
92
93         /* skip space between : and value */
94         while ( isspace( *s ) ) {
95                 s++;
96         }
97
98         /* if no value is present, error out */
99         if ( *s == '\0' ) {
100                 Debug( LDAP_DEBUG_PARSE, "parse_line missing value\n", 0,0,0 );
101                 return( -1 );
102         }
103
104         /* check for continued line markers that should be deleted */
105         for ( p = s, d = s; *p; p++ ) {
106                 if ( *p != CONTINUED_LINE_MARKER )
107                         *d++ = *p;
108         }
109         *d = '\0';
110
111         *value = s;
112         if ( b64 ) {
113                 stop = strchr( s, '\0' );
114                 byte = s;
115                 for ( p = s, *vlen = 0; p < stop; p += 4, *vlen += 3 ) {
116                         for ( i = 0; i < 4; i++ ) {
117                                 if ( p[i] != '=' && (p[i] & 0x80 ||
118                                     b642nib[ p[i] & 0x7f ] > 0x3f) ) {
119                                         Debug( LDAP_DEBUG_ANY,
120                                     "invalid base 64 encoding char (%c) 0x%x\n",
121                                             p[i], p[i], 0 );
122                                         return( -1 );
123                                 }
124                         }
125
126                         /* first digit */
127                         nib = b642nib[ p[0] & 0x7f ];
128                         byte[0] = nib << 2;
129                         /* second digit */
130                         nib = b642nib[ p[1] & 0x7f ];
131                         byte[0] |= nib >> 4;
132                         byte[1] = (nib & RIGHT4) << 4;
133                         /* third digit */
134                         if ( p[2] == '=' ) {
135                                 *vlen += 1;
136                                 break;
137                         }
138                         nib = b642nib[ p[2] & 0x7f ];
139                         byte[1] |= nib >> 2;
140                         byte[2] = (nib & RIGHT2) << 6;
141                         /* fourth digit */
142                         if ( p[3] == '=' ) {
143                                 *vlen += 2;
144                                 break;
145                         }
146                         nib = b642nib[ p[3] & 0x7f ];
147                         byte[2] |= nib;
148
149                         byte += 3;
150                 }
151                 s[ *vlen ] = '\0';
152         } else {
153                 *vlen = (int) (d - s);
154         }
155
156         return( 0 );
157 }
158
159 /*
160  * ldif_getline - return the next "line" (minus newline) of input from a
161  * string buffer of lines separated by newlines, terminated by \n\n
162  * or \0.  this routine handles continued lines, bundling them into
163  * a single big line before returning.  if a line begins with a white
164  * space character, it is a continuation of the previous line. the white
165  * space character (nb: only one char), and preceeding newline are changed
166  * into CONTINUED_LINE_MARKER chars, to be deleted later by the
167  * str_parse_line() routine above.
168  *
169  * it takes a pointer to a pointer to the buffer on the first call,
170  * which it updates and must be supplied on subsequent calls.
171  */
172
173 char *
174 ldif_getline( char **next )
175 {
176         char    *l;
177         char    c;
178
179         if ( *next == NULL || **next == '\n' || **next == '\0' ) {
180                 return( NULL );
181         }
182
183         l = *next;
184         while ( (*next = strchr( *next, '\n' )) != NULL ) {
185                 c = *(*next + 1);
186                 if ( isspace( c ) && c != '\n' ) {
187                         **next = CONTINUED_LINE_MARKER;
188                         *(*next+1) = CONTINUED_LINE_MARKER;
189                 } else {
190                         *(*next)++ = '\0';
191                         break;
192                 }
193                 (*next)++;
194         }
195
196         return( l );
197 }
198
199 void
200 ldif_put_type_and_value( char **out, char *t, char *val, int vlen )
201 {
202         unsigned char   *byte, *p, *stop;
203         unsigned char   buf[3];
204         unsigned long   bits;
205         char            *save;
206         int             i, b64, pad, len, savelen;
207         len = 0;
208
209         /* put the type + ": " */
210         for ( p = (unsigned char *) t; *p; p++, len++ ) {
211                 *(*out)++ = *p;
212         }
213         *(*out)++ = ':';
214         len++;
215         save = *out;
216         savelen = len;
217         *(*out)++ = ' ';
218         b64 = 0;
219
220         stop = (unsigned char *) (val + vlen);
221         if ( isascii( val[0] ) && (isspace( val[0] ) || val[0] == ':') ) {
222                 b64 = 1;
223         } else {
224                 for ( byte = (unsigned char *) val; byte < stop;
225                     byte++, len++ ) {
226                         if ( !isascii( *byte ) || !isprint( *byte ) ) {
227                                 b64 = 1;
228                                 break;
229                         }
230                         if ( len > LINE_WIDTH ) {
231                                 *(*out)++ = '\n';
232                                 *(*out)++ = ' ';
233                                 len = 1;
234                         }
235                         *(*out)++ = *byte;
236                 }
237         }
238         if ( b64 ) {
239                 *out = save;
240                 *(*out)++ = ':';
241                 *(*out)++ = ' ';
242                 len = savelen + 2;
243                 /* convert to base 64 (3 bytes => 4 base 64 digits) */
244                 for ( byte = (unsigned char *) val; byte < stop - 2;
245                     byte += 3 ) {
246                         bits = (byte[0] & 0xff) << 16;
247                         bits |= (byte[1] & 0xff) << 8;
248                         bits |= (byte[2] & 0xff);
249
250                         for ( i = 0; i < 4; i++, len++, bits <<= 6 ) {
251                                 if ( len > LINE_WIDTH ) {
252                                         *(*out)++ = '\n';
253                                         *(*out)++ = ' ';
254                                         len = 1;
255                                 }
256
257                                 /* get b64 digit from high order 6 bits */
258                                 *(*out)++ = nib2b64[ (bits & 0xfc0000L) >> 18 ];
259                         }
260                 }
261
262                 /* add padding if necessary */
263                 if ( byte < stop ) {
264                         for ( i = 0; byte + i < stop; i++ ) {
265                                 buf[i] = byte[i];
266                         }
267                         for ( pad = 0; i < 3; i++, pad++ ) {
268                                 buf[i] = '\0';
269                         }
270                         byte = buf;
271                         bits = (byte[0] & 0xff) << 16;
272                         bits |= (byte[1] & 0xff) << 8;
273                         bits |= (byte[2] & 0xff);
274
275                         for ( i = 0; i < 4; i++, len++, bits <<= 6 ) {
276                                 if ( len > LINE_WIDTH ) {
277                                         *(*out)++ = '\n';
278                                         *(*out)++ = ' ';
279                                         len = 1;
280                                 }
281
282                                 if( i + pad < 4 ) {
283                                         /* get b64 digit from low order 6 bits */
284                                         *(*out)++ = nib2b64[ (bits & 0xfc0000L) >> 18 ];
285                                 } else {
286                                         *(*out)++ = '=';
287                                 }
288                         }
289                 }
290         }
291         *(*out)++ = '\n';
292 }
293
294
295 char *
296 ldif_type_and_value( char *type, char *val, int vlen )
297 /*
298  * return malloc'd, zero-terminated LDIF line
299  */
300 {
301     char        *buf, *p;
302     int         tlen;
303
304     tlen = strlen( type );
305     if (( buf = (char *)malloc( LDIF_SIZE_NEEDED( tlen, vlen ) + 1 )) !=
306             NULL ) {
307     }
308
309     p = buf;
310     ldif_put_type_and_value( &p, type, val, vlen );
311     *p = '\0';
312
313     return( buf );
314 }