]> git.sur5r.net Git - openldap/blob - libraries/libldif/line64.c
Regarding previous commit:
[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[0x40f] =
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            *l;
180
181         if ( *next == NULL || **next == '\n' || **next == '\0' ) {
182                 return( NULL );
183         }
184
185         l = *next;
186         while ( (*next = strchr( *next, '\n' )) != NULL ) {
187                 unsigned char c = *(*next + 1);
188                 if ( isspace( c ) && c != '\n' ) {
189                         **next = CONTINUED_LINE_MARKER;
190                         *(*next+1) = CONTINUED_LINE_MARKER;
191                 } else {
192                         *(*next)++ = '\0';
193                         break;
194                 }
195                 (*next)++;
196         }
197
198         return( l );
199 }
200
201 void
202 ldif_put_type_and_value(
203         char **out,
204         LDAP_CONST char *t,
205         LDAP_CONST char *val,
206         int vlen )
207 {
208         unsigned char   *byte, *p, *stop;
209         unsigned char   buf[3];
210         unsigned long   bits;
211         char            *save;
212         int             i, b64, pad, len, savelen;
213         len = 0;
214
215         /* put the type + ": " */
216         for ( p = (unsigned char *) t; *p; p++, len++ ) {
217                 *(*out)++ = *p;
218         }
219         *(*out)++ = ':';
220         len++;
221         save = *out;
222         savelen = len;
223         *(*out)++ = ' ';
224         b64 = 0;
225
226         stop = (unsigned char *) (val + vlen);
227         if ( isascii( val[0] ) && (isspace( val[0] ) || val[0] == ':') ) {
228                 b64 = 1;
229         } else {
230                 for ( byte = (unsigned char *) val; byte < stop;
231                     byte++, len++ ) {
232                         if ( !isascii( *byte ) || !isprint( *byte ) ) {
233                                 b64 = 1;
234                                 break;
235                         }
236                         if ( len > LDIF_LINE_WIDTH ) {
237                                 *(*out)++ = '\n';
238                                 *(*out)++ = ' ';
239                                 len = 1;
240                         }
241                         *(*out)++ = *byte;
242                 }
243         }
244         if ( b64 ) {
245                 *out = save;
246                 *(*out)++ = ':';
247                 *(*out)++ = ' ';
248                 len = savelen + 2;
249                 /* convert to base 64 (3 bytes => 4 base 64 digits) */
250                 for ( byte = (unsigned char *) val; byte < stop - 2;
251                     byte += 3 ) {
252                         bits = (byte[0] & 0xff) << 16;
253                         bits |= (byte[1] & 0xff) << 8;
254                         bits |= (byte[2] & 0xff);
255
256                         for ( i = 0; i < 4; i++, len++, bits <<= 6 ) {
257                                 if ( len > LDIF_LINE_WIDTH ) {
258                                         *(*out)++ = '\n';
259                                         *(*out)++ = ' ';
260                                         len = 1;
261                                 }
262
263                                 /* get b64 digit from high order 6 bits */
264                                 *(*out)++ = nib2b64[ (bits & 0xfc0000L) >> 18 ];
265                         }
266                 }
267
268                 /* add padding if necessary */
269                 if ( byte < stop ) {
270                         for ( i = 0; byte + i < stop; i++ ) {
271                                 buf[i] = byte[i];
272                         }
273                         for ( pad = 0; i < 3; i++, pad++ ) {
274                                 buf[i] = '\0';
275                         }
276                         byte = buf;
277                         bits = (byte[0] & 0xff) << 16;
278                         bits |= (byte[1] & 0xff) << 8;
279                         bits |= (byte[2] & 0xff);
280
281                         for ( i = 0; i < 4; i++, len++, bits <<= 6 ) {
282                                 if ( len > LDIF_LINE_WIDTH ) {
283                                         *(*out)++ = '\n';
284                                         *(*out)++ = ' ';
285                                         len = 1;
286                                 }
287
288                                 if( i + pad < 4 ) {
289                                         /* get b64 digit from low order 6 bits */
290                                         *(*out)++ = nib2b64[ (bits & 0xfc0000L) >> 18 ];
291                                 } else {
292                                         *(*out)++ = '=';
293                                 }
294                         }
295                 }
296         }
297         *(*out)++ = '\n';
298 }
299
300
301 char *
302 ldif_type_and_value( LDAP_CONST char *type, LDAP_CONST char *val, int vlen )
303 /*
304  * return BER malloc'd, zero-terminated LDIF line
305  */
306 {
307     char        *buf, *p;
308     int         tlen;
309
310     tlen = strlen( type );
311     if (( buf = (char *) ber_memalloc( LDIF_SIZE_NEEDED( tlen, vlen ) + 1 ))
312                 == NULL )
313         {
314                 ber_pvt_log_printf( LDAP_DEBUG_ANY, ldif_debug,
315                         "ldif_type_and_value: malloc failed!" );
316                 return NULL;
317     }
318
319     p = buf;
320     ldif_put_type_and_value( &p, type, val, vlen );
321     *p = '\0';
322
323     return( buf );
324 }