* Inbound network authentication working. Fixed a bug in the split-horizon
[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 void decode_base64(char *dest, char *source)
248 {
249     int i;
250     int dpos = 0;
251     int spos = 0;
252
253     for (i = 0; i < 255; i++) {
254         dtable[i] = 0x80;
255     }
256     for (i = 'A'; i <= 'Z'; i++) {
257         dtable[i] = 0 + (i - 'A');
258     }
259     for (i = 'a'; i <= 'z'; i++) {
260         dtable[i] = 26 + (i - 'a');
261     }
262     for (i = '0'; i <= '9'; i++) {
263         dtable[i] = 52 + (i - '0');
264     }
265     dtable['+'] = 62;
266     dtable['/'] = 63;
267     dtable['='] = 0;
268
269     /*CONSTANTCONDITION*/
270     while (TRUE) {
271         byte a[4], b[4], o[3];
272
273         for (i = 0; i < 4; i++) {
274             int c = source[spos++];
275
276             if (c == 0) {
277                 if (i > 0) {
278                     return;
279                 }
280                 return;
281             }
282             if (dtable[c] & 0x80) {
283                 /* Ignoring errors: discard invalid character. */
284                 i--;
285                 continue;
286             }
287             a[i] = (byte) c;
288             b[i] = (byte) dtable[c];
289         }
290         o[0] = (b[0] << 2) | (b[1] >> 4);
291         o[1] = (b[1] << 4) | (b[2] >> 2);
292         o[2] = (b[2] << 6) | b[3];
293         i = a[2] == '=' ? 1 : (a[3] == '=' ? 2 : 3);
294         if (i>=1) dest[dpos++] = o[0];
295         if (i>=2) dest[dpos++] = o[1];
296         if (i>=3) dest[dpos++] = o[2];
297         dest[dpos] = 0;
298         if (i < 3) {
299             return;
300         }
301     }
302 }
303
304
305
306 /*
307  * Strip leading and trailing spaces from a string
308  */
309 void striplt(char *buf)
310 {
311         while ((strlen(buf) > 0) && (isspace(buf[0])))
312                 strcpy(buf, &buf[1]);
313         while (isspace(buf[strlen(buf) - 1]))
314                 buf[strlen(buf) - 1] = 0;
315 }
316
317
318
319
320
321 /* 
322  * Return the number of occurances of character ch in string st
323  */ 
324 int haschar(char *st, int ch)
325 {
326         int a, b;
327         b = 0;
328         for (a = 0; a < strlen(st); ++a)
329                 if (st[a] == ch)
330                         ++b;
331         return (b);
332 }
333
334
335
336
337 /*
338  * Compare two strings, insensitive to case, punctuation, and non-alnum chars
339  */
340 int collapsed_strcmp(char *s1, char *s2) {
341         char *c1, *c2;
342         int i, ret, pos;
343
344         c1 = malloc(strlen(s1)+1);
345         c2 = malloc(strlen(s2)+1);
346         c1[0] = 0;
347         c2[0] = 0;
348
349         pos = 0;
350         for (i=0; i<strlen(s1); ++i) {
351                 if (isalnum(s1[i])) {
352                         c1[pos] = tolower(s1[i]);
353                         c1[++pos] = 0;
354                 }
355         }
356
357         pos = 0;
358         for (i=0; i<strlen(s2); ++i) {
359                 if (isalnum(s2[i])) {
360                         c2[pos] = tolower(s2[i]);
361                         c2[++pos] = 0;
362                 }
363         }
364
365         ret = strcmp(c1, c2);
366         free(c1);
367         free(c2);
368         return(ret);
369 }
370
371
372
373 /*
374  * Format a date/time stamp for output 
375  */
376 void fmt_date(char *buf, time_t thetime) {
377         struct tm *tm;
378         int hour;
379
380         char *ascmonths[] = {
381                 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
382                 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
383         };
384
385         strcpy(buf, "");
386         tm = localtime(&thetime);
387
388         hour = tm->tm_hour;
389         if (hour == 0)  hour = 12;
390         else if (hour > 12) hour = hour - 12;
391
392         sprintf(buf, "%s %d %4d %d:%02d%s",
393                 ascmonths[tm->tm_mon],
394                 tm->tm_mday,
395                 tm->tm_year + 1900,
396                 hour,
397                 tm->tm_min,
398                 ( (tm->tm_hour >= 12) ? "pm" : "am" )
399         );
400 }
401
402
403
404 /*
405  * Determine whether the specified message number is contained within the
406  * specified set.
407  */
408 int is_msg_in_mset(char *mset, long msgnum) {
409         int num_sets;
410         int s;
411         char setstr[SIZ], lostr[SIZ], histr[SIZ];       /* was 1024 */
412         long lo, hi;
413
414         /*
415          * Now set it for all specified messages.
416          */
417         num_sets = num_tokens(mset, ',');
418         for (s=0; s<num_sets; ++s) {
419                 extract_token(setstr, mset, s, ',');
420
421                 extract_token(lostr, setstr, 0, ':');
422                 if (num_tokens(setstr, ':') >= 2) {
423                         extract_token(histr, setstr, 1, ':');
424                         if (!strcmp(histr, "*")) {
425                                 sprintf(histr, "%ld", LONG_MAX);
426                         }
427                 } 
428                 else {
429                         strcpy(histr, lostr);
430                 }
431                 lo = atol(lostr);
432                 hi = atol(histr);
433
434                 if ((msgnum >= lo) && (msgnum <= hi)) return(1);
435         }
436
437         return(0);
438 }
439
440
441 /*
442  * Utility function to "readline" from memory
443  * (returns new pointer)
444  */
445 char *memreadline(char *start, char *buf, int maxlen)
446 {
447         char ch;
448         char *ptr;
449         int len = 0;    /* tally our own length to avoid strlen() delays */
450
451         ptr = start;
452         memset(buf, 0, maxlen);
453
454         while (1) {
455                 ch = *ptr++;
456                 if ( (len < (maxlen - 1)) && (ch != 13) && (ch != 10) ) {
457                         buf[strlen(buf) + 1] = 0;
458                         buf[strlen(buf)] = ch;
459                         ++len;
460                 }
461                 if ((ch == 10) || (ch == 0)) {
462                         return ptr;
463                 }
464         }
465 }
466
467
468 /*
469  * Strip a boundarized substring out of a string (for example, remove
470  * parentheses and anything inside them).
471  */
472 void stripout(char *str, char leftboundary, char rightboundary) {
473         int a;
474         int lb = (-1);
475         int rb = (-1);
476
477         for (a = 0; a < strlen(str); ++a) {
478                 if (str[a] == leftboundary) lb = a;
479                 if (str[a] == rightboundary) rb = a;
480         }
481
482         if ( (lb > 0) && (rb > lb) ) {
483                 strcpy(&str[lb - 1], &str[rb + 1]);
484         }
485
486 }
487
488
489 /*
490  * Reduce a string down to a boundarized substring (for example, remove
491  * parentheses and anything outside them).
492  */
493 void stripallbut(char *str, char leftboundary, char rightboundary) {
494         int a;
495
496         for (a = 0; a < strlen(str); ++ a) {
497                 if (str[a] == leftboundary) strcpy(str, &str[a+1]);
498         }
499
500         for (a = 0; a < strlen(str); ++ a) {
501                 if (str[a] == rightboundary) str[a] = 0;
502         }
503
504 }