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