]> code.citadel.org Git - citadel.git/blob - citadel/tools.c
* mime_parser.c: now uses built-in functions to decode base64 and
[citadel.git] / citadel / tools.c
1 /*
2  * $Id$
3  *
4  * Utility functions that are used by both the client and server.
5  *
6  */
7
8 #ifdef DLL_EXPORT
9 #define IN_LIBCIT
10 #endif
11
12 #include "sysdep.h"
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <ctype.h>
16 #include <string.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29 #include "tools.h"
30 #include "citadel.h"
31
32 #define TRUE  1
33 #define FALSE 0
34
35 typedef unsigned char byte;           /* Byte type */
36 static byte dtable[256];              /* base64 encode / decode table */
37
38
39 char *safestrncpy(char *dest, const char *src, size_t n)
40 {
41         if (dest == NULL || src == NULL) {
42                 fprintf(stderr, "safestrncpy: NULL argument\n");
43                 abort();
44         }
45         strncpy(dest, src, n);
46         dest[n - 1] = 0;
47         return dest;
48 }
49
50
51
52 #ifndef HAVE_STRNCASECMP
53 int strncasecmp(char *lstr, char *rstr, int len)
54 {
55         int pos = 0;
56         char lc,rc;
57         while (pos<len) {
58                 lc=tolower(lstr[pos]);
59                 rc=tolower(rstr[pos]);
60                 if ((lc==0)&&(rc==0)) return(0);
61                 if (lc<rc) return(-1);
62                 if (lc>rc) return(1);
63                 pos=pos+1;
64         }
65         return(0);
66 }
67 #endif
68
69
70
71 /*
72  * num_tokens()  -  discover number of parameters/tokens in a string
73  */
74 int num_tokens(char *source, char tok) {
75         int a;
76         int count = 1;
77
78         if (source == NULL) return(0);
79         for (a=0; a<strlen(source); ++a) {
80                 if (source[a]==tok) ++count;
81         }
82         return(count);
83 }
84
85 /*
86  * extract_token()  -  a smarter string tokenizer
87  */
88 void extract_token(char *dest, char *source, int parmnum, char separator) 
89 {
90         int i;
91         int len;
92         int curr_parm;
93
94         strcpy(dest,"");
95         len = 0;
96         curr_parm = 0;
97
98         if (strlen(source)==0) {
99                 return;
100                 }
101
102         for (i=0; i<strlen(source); ++i) {
103                 if (source[i]==separator) {
104                         ++curr_parm;
105                 }
106                 else if (curr_parm == parmnum) {
107                         dest[len+1] = 0;
108                         dest[len++] = source[i];
109                 }
110         }
111 }
112
113
114
115 /*
116  * remove_token()  -  a tokenizer that kills, maims, and destroys
117  */
118 void remove_token(char *source, int parmnum, char separator)
119 {
120         int i;
121         int len;
122         int curr_parm;
123         int start, end;
124
125         len = 0;
126         curr_parm = 0;
127         start = (-1);
128         end = (-1);
129
130         if (strlen(source)==0) {
131                 return;
132                 }
133
134         for (i=0; i<strlen(source); ++i) {
135                 if ( (start < 0) && (curr_parm == parmnum) ) {
136                         start = i;
137                 }
138
139                 if ( (end < 0) && (curr_parm == (parmnum+1)) ) {
140                         end = i;
141                 }
142
143                 if (source[i]==separator) {
144                         ++curr_parm;
145                 }
146         }
147
148         if (end < 0) end = strlen(source);
149
150         printf("%d .. %d\n", start, end);
151
152         strcpy(&source[start], &source[end]);
153 }
154
155
156
157
158 /*
159  * extract_int()  -  extract an int parm w/o supplying a buffer
160  */
161 int extract_int(char *source, int parmnum)
162 {
163         char buf[SIZ];
164         
165         extract_token(buf, source, parmnum, '|');
166         return(atoi(buf));
167 }
168
169 /*
170  * extract_long()  -  extract an long parm w/o supplying a buffer
171  */
172 long extract_long(char *source, long int parmnum)
173 {
174         char buf[SIZ];
175         
176         extract_token(buf, source, parmnum, '|');
177         return(atol(buf));
178 }
179
180
181
182 /*
183  * decode_base64() and encode_base64() are adaptations of code by
184  * John Walker, found in full in the file "base64.c" included with this
185  * distribution.  The difference between those functions and these is that
186  * these are intended to encode/decode small string buffers, and those are
187  * intended to encode/decode entire MIME parts.
188  */
189
190 void encode_base64(char *dest, char *source)
191 {
192     int i, hiteof = FALSE;
193     int spos = 0;
194     int dpos = 0;
195
196     /*  Fill dtable with character encodings.  */
197
198     for (i = 0; i < 26; i++) {
199         dtable[i] = 'A' + i;
200         dtable[26 + i] = 'a' + i;
201     }
202     for (i = 0; i < 10; i++) {
203         dtable[52 + i] = '0' + i;
204     }
205     dtable[62] = '+';
206     dtable[63] = '/';
207
208     while (!hiteof) {
209         byte igroup[3], ogroup[4];
210         int c, n;
211
212         igroup[0] = igroup[1] = igroup[2] = 0;
213         for (n = 0; n < 3; n++) {
214             c = source[spos++];
215             if (c == 0) {
216                 hiteof = TRUE;
217                 break;
218             }
219             igroup[n] = (byte) c;
220         }
221         if (n > 0) {
222             ogroup[0] = dtable[igroup[0] >> 2];
223             ogroup[1] = dtable[((igroup[0] & 3) << 4) | (igroup[1] >> 4)];
224             ogroup[2] = dtable[((igroup[1] & 0xF) << 2) | (igroup[2] >> 6)];
225             ogroup[3] = dtable[igroup[2] & 0x3F];
226
227             /* Replace characters in output stream with "=" pad
228                characters if fewer than three characters were
229                read from the end of the input stream. */
230
231             if (n < 3) {
232                 ogroup[3] = '=';
233                 if (n < 2) {
234                     ogroup[2] = '=';
235                 }
236             }
237             for (i = 0; i < 4; i++) {
238                 dest[dpos++] = ogroup[i];
239                 dest[dpos] = 0;
240             }
241         }
242     }
243 }
244
245
246 /* 
247  * Convert base64-encoded to binary.  Returns the length of the decoded data.
248  */
249 int decode_base64(char *dest, char *source)
250 {
251     int i;
252     int dpos = 0;
253     int spos = 0;
254
255     for (i = 0; i < 255; i++) {
256         dtable[i] = 0x80;
257     }
258     for (i = 'A'; i <= 'Z'; i++) {
259         dtable[i] = 0 + (i - 'A');
260     }
261     for (i = 'a'; i <= 'z'; i++) {
262         dtable[i] = 26 + (i - 'a');
263     }
264     for (i = '0'; i <= '9'; i++) {
265         dtable[i] = 52 + (i - '0');
266     }
267     dtable['+'] = 62;
268     dtable['/'] = 63;
269     dtable['='] = 0;
270
271     /*CONSTANTCONDITION*/
272     while (TRUE) {
273         byte a[4], b[4], o[3];
274
275         for (i = 0; i < 4; i++) {
276             int c = source[spos++];
277
278             if (c == 0) {
279                 if (i > 0) {
280                     return(dpos);
281                 }
282                 return(dpos);
283             }
284             if (dtable[c] & 0x80) {
285                 /* Ignoring errors: discard invalid character. */
286                 i--;
287                 continue;
288             }
289             a[i] = (byte) c;
290             b[i] = (byte) dtable[c];
291         }
292         o[0] = (b[0] << 2) | (b[1] >> 4);
293         o[1] = (b[1] << 4) | (b[2] >> 2);
294         o[2] = (b[2] << 6) | b[3];
295         i = a[2] == '=' ? 1 : (a[3] == '=' ? 2 : 3);
296         if (i>=1) dest[dpos++] = o[0];
297         if (i>=2) dest[dpos++] = o[1];
298         if (i>=3) dest[dpos++] = o[2];
299         dest[dpos] = 0;
300         if (i < 3) {
301             return(dpos);
302         }
303     }
304 }
305
306
307
308 /*
309  * Strip leading and trailing spaces from a string
310  */
311 void striplt(char *buf)
312 {
313         while ((strlen(buf) > 0) && (isspace(buf[0])))
314                 strcpy(buf, &buf[1]);
315         while (isspace(buf[strlen(buf) - 1]))
316                 buf[strlen(buf) - 1] = 0;
317 }
318
319
320
321
322
323 /* 
324  * Return the number of occurances of character ch in string st
325  */ 
326 int haschar(char *st, int ch)
327 {
328         int a, b;
329         b = 0;
330         for (a = 0; a < strlen(st); ++a)
331                 if (st[a] == ch)
332                         ++b;
333         return (b);
334 }
335
336
337
338
339 /*
340  * Compare two strings, insensitive to case, punctuation, and non-alnum chars
341  */
342 int collapsed_strcmp(char *s1, char *s2) {
343         char *c1, *c2;
344         int i, ret, pos;
345
346         c1 = malloc(strlen(s1)+1);
347         c2 = malloc(strlen(s2)+1);
348         c1[0] = 0;
349         c2[0] = 0;
350
351         pos = 0;
352         for (i=0; i<strlen(s1); ++i) {
353                 if (isalnum(s1[i])) {
354                         c1[pos] = tolower(s1[i]);
355                         c1[++pos] = 0;
356                 }
357         }
358
359         pos = 0;
360         for (i=0; i<strlen(s2); ++i) {
361                 if (isalnum(s2[i])) {
362                         c2[pos] = tolower(s2[i]);
363                         c2[++pos] = 0;
364                 }
365         }
366
367         ret = strcmp(c1, c2);
368         free(c1);
369         free(c2);
370         return(ret);
371 }
372
373
374
375 /*
376  * Format a date/time stamp for output 
377  */
378 void fmt_date(char *buf, time_t thetime) {
379         struct tm *tm;
380         int hour;
381
382         char *ascmonths[] = {
383                 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
384                 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
385         };
386
387         strcpy(buf, "");
388         tm = localtime(&thetime);
389
390         hour = tm->tm_hour;
391         if (hour == 0)  hour = 12;
392         else if (hour > 12) hour = hour - 12;
393
394         sprintf(buf, "%s %d %4d %d:%02d%s",
395                 ascmonths[tm->tm_mon],
396                 tm->tm_mday,
397                 tm->tm_year + 1900,
398                 hour,
399                 tm->tm_min,
400                 ( (tm->tm_hour >= 12) ? "pm" : "am" )
401         );
402 }
403
404
405
406 /*
407  * Determine whether the specified message number is contained within the
408  * specified set.
409  */
410 int is_msg_in_mset(char *mset, long msgnum) {
411         int num_sets;
412         int s;
413         char setstr[SIZ], lostr[SIZ], histr[SIZ];       /* was 1024 */
414         long lo, hi;
415
416         /*
417          * Now set it for all specified messages.
418          */
419         num_sets = num_tokens(mset, ',');
420         for (s=0; s<num_sets; ++s) {
421                 extract_token(setstr, mset, s, ',');
422
423                 extract_token(lostr, setstr, 0, ':');
424                 if (num_tokens(setstr, ':') >= 2) {
425                         extract_token(histr, setstr, 1, ':');
426                         if (!strcmp(histr, "*")) {
427                                 sprintf(histr, "%ld", LONG_MAX);
428                         }
429                 } 
430                 else {
431                         strcpy(histr, lostr);
432                 }
433                 lo = atol(lostr);
434                 hi = atol(histr);
435
436                 if ((msgnum >= lo) && (msgnum <= hi)) return(1);
437         }
438
439         return(0);
440 }
441
442
443 /*
444  * Utility function to "readline" from memory
445  * (returns new pointer)
446  */
447 char *memreadline(char *start, char *buf, int maxlen)
448 {
449         char ch;
450         char *ptr;
451         int len = 0;    /* tally our own length to avoid strlen() delays */
452
453         ptr = start;
454         memset(buf, 0, maxlen);
455
456         while (1) {
457                 ch = *ptr++;
458                 if ( (len < (maxlen - 1)) && (ch != 13) && (ch != 10) ) {
459                         buf[strlen(buf) + 1] = 0;
460                         buf[strlen(buf)] = ch;
461                         ++len;
462                 }
463                 if ((ch == 10) || (ch == 0)) {
464                         return ptr;
465                 }
466         }
467 }
468
469
470 /*
471  * Strip a boundarized substring out of a string (for example, remove
472  * parentheses and anything inside them).
473  */
474 void stripout(char *str, char leftboundary, char rightboundary) {
475         int a;
476         int lb = (-1);
477         int rb = (-1);
478
479         for (a = 0; a < strlen(str); ++a) {
480                 if (str[a] == leftboundary) lb = a;
481                 if (str[a] == rightboundary) rb = a;
482         }
483
484         if ( (lb > 0) && (rb > lb) ) {
485                 strcpy(&str[lb - 1], &str[rb + 1]);
486         }
487
488 }
489
490
491 /*
492  * Reduce a string down to a boundarized substring (for example, remove
493  * parentheses and anything outside them).
494  */
495 void stripallbut(char *str, char leftboundary, char rightboundary) {
496         int a;
497
498         for (a = 0; a < strlen(str); ++ a) {
499                 if (str[a] == leftboundary) strcpy(str, &str[a+1]);
500         }
501
502         for (a = 0; a < strlen(str); ++ a) {
503                 if (str[a] == rightboundary) str[a] = 0;
504         }
505
506 }