fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / internet_addressing.c
1 /*
2  * $Id$
3  *
4  * This file contains functions which handle the mapping of Internet addresses
5  * to users on the Citadel system.
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <ctype.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <errno.h>
17 #include <sys/types.h>
18
19 #if TIME_WITH_SYS_TIME
20 # include <sys/time.h>
21 # include <time.h>
22 #else
23 # if HAVE_SYS_TIME_H
24 #  include <sys/time.h>
25 # else
26 #  include <time.h>
27 # endif
28 #endif
29
30 #include <sys/wait.h>
31 #include <string.h>
32 #include <limits.h>
33 #include "citadel.h"
34 #include "server.h"
35 #include "sysdep_decls.h"
36 #include "citserver.h"
37 #include "support.h"
38 #include "config.h"
39 #include "tools.h"
40 #include "msgbase.h"
41 #include "internet_addressing.h"
42 #include "user_ops.h"
43 #include "room_ops.h"
44 #include "parsedate.h"
45
46
47 struct trynamebuf {
48         char buffer1[SIZ];
49         char buffer2[SIZ];
50 };
51
52 char *inetcfg = NULL;
53
54
55
56 /*
57  * Return nonzero if the supplied name is an alias for this host.
58  */
59 int CtdlHostAlias(char *fqdn) {
60         int config_lines;
61         int i;
62         char buf[SIZ];
63         char host[SIZ], type[SIZ];
64
65         if (!strcasecmp(fqdn, config.c_fqdn)) return(hostalias_localhost);
66         if (!strcasecmp(fqdn, config.c_nodename)) return(hostalias_localhost);
67         if (inetcfg == NULL) return(hostalias_nomatch);
68
69         config_lines = num_tokens(inetcfg, '\n');
70         for (i=0; i<config_lines; ++i) {
71                 extract_token(buf, inetcfg, i, '\n');
72                 extract_token(host, buf, 0, '|');
73                 extract_token(type, buf, 1, '|');
74
75                 if ( (!strcasecmp(type, "localhost"))
76                    && (!strcasecmp(fqdn, host)))
77                         return(hostalias_localhost);
78
79                 if ( (!strcasecmp(type, "gatewaydomain"))
80                    && (!strcasecmp(&fqdn[strlen(fqdn)-strlen(host)], host)))
81                         return(hostalias_gatewaydomain);
82
83         }
84
85         return(hostalias_nomatch);
86 }
87
88
89
90
91
92
93
94 /*
95  * Return 0 if a given string fuzzy-matches a Citadel user account
96  *
97  * FIXME ... this needs to be updated to handle aliases.
98  */
99 int fuzzy_match(struct usersupp *us, char *matchstring) {
100         int a;
101
102         if ( (!strncasecmp(matchstring, "cit", 3)) 
103            && (atol(&matchstring[3]) == us->usernum)) {
104                 return 0;
105         }
106
107
108         for (a=0; a<strlen(us->fullname); ++a) {
109                 if (!strncasecmp(&us->fullname[a],
110                    matchstring, strlen(matchstring))) {
111                         return 0;
112                 }
113         }
114         return -1;
115 }
116
117
118 /*
119  * Unfold a multi-line field into a single line, removing multi-whitespaces
120  */
121 void unfold_rfc822_field(char *field) {
122         int i;
123         int quote = 0;
124
125         striplt(field);         /* remove leading/trailing whitespace */
126
127         /* convert non-space whitespace to spaces, and remove double blanks */
128         for (i=0; i<strlen(field); ++i) {
129                 if (field[i]=='\"') quote = 1 - quote;
130                 if (!quote) {
131                         if (isspace(field[i])) field[i] = ' ';
132                         while (isspace(field[i]) && isspace(field[i+1])) {
133                                 strcpy(&field[i+1], &field[i+2]);
134                         }
135                 }
136         }
137 }
138
139
140
141 /*
142  * Split an RFC822-style address into userid, host, and full name
143  *
144  */
145 void process_rfc822_addr(char *rfc822, char *user, char *node, char *name)
146 {
147         int a;
148
149         strcpy(user, "");
150         strcpy(node, config.c_fqdn);
151         strcpy(name, "");
152
153         /* extract full name - first, it's From minus <userid> */
154         strcpy(name, rfc822);
155         for (a = 0; a < strlen(name); ++a) {
156                 if (name[a] == '<') {
157                         do {
158                                 strcpy(&name[a], &name[a + 1]);
159                         } while ((strlen(name) > 0) && (name[a] != '>'));
160                         strcpy(&name[a], &name[a + 1]);
161                 }
162         }
163         /* strip anything to the left of a bang */
164         while ((strlen(name) > 0) && (haschar(name, '!') > 0))
165                 strcpy(name, &name[1]);
166
167         /* and anything to the right of a @ or % */
168         for (a = 0; a < strlen(name); ++a) {
169                 if (name[a] == '@')
170                         name[a] = 0;
171                 if (name[a] == '%')
172                         name[a] = 0;
173         }
174
175         /* but if there are parentheses, that changes the rules... */
176         if ((haschar(rfc822, '(') == 1) && (haschar(rfc822, ')') == 1)) {
177                 strcpy(name, rfc822);
178                 while ((strlen(name) > 0) && (name[0] != '(')) {
179                         strcpy(&name[0], &name[1]);
180                 }
181                 strcpy(&name[0], &name[1]);
182                 for (a = 0; a < strlen(name); ++a) {
183                         if (name[a] == ')') {
184                                 name[a] = 0;
185                         }
186                 }
187         }
188         /* but if there are a set of quotes, that supersedes everything */
189         if (haschar(rfc822, 34) == 2) {
190                 strcpy(name, rfc822);
191                 while ((strlen(name) > 0) && (name[0] != 34)) {
192                         strcpy(&name[0], &name[1]);
193                 }
194                 strcpy(&name[0], &name[1]);
195                 for (a = 0; a < strlen(name); ++a)
196                         if (name[a] == 34)
197                                 name[a] = 0;
198         }
199         /* extract user id */
200         strcpy(user, rfc822);
201
202         /* first get rid of anything in parens */
203         for (a = 0; a < strlen(user); ++a)
204                 if (user[a] == '(') {
205                         do {
206                                 strcpy(&user[a], &user[a + 1]);
207                         } while ((strlen(user) > 0) && (user[a] != ')'));
208                         strcpy(&user[a], &user[a + 1]);
209                 }
210         /* if there's a set of angle brackets, strip it down to that */
211         if ((haschar(user, '<') == 1) && (haschar(user, '>') == 1)) {
212                 while ((strlen(user) > 0) && (user[0] != '<')) {
213                         strcpy(&user[0], &user[1]);
214                 }
215                 strcpy(&user[0], &user[1]);
216                 for (a = 0; a < strlen(user); ++a)
217                         if (user[a] == '>')
218                                 user[a] = 0;
219         }
220         /* strip anything to the left of a bang */
221         while ((strlen(user) > 0) && (haschar(user, '!') > 0))
222                 strcpy(user, &user[1]);
223
224         /* and anything to the right of a @ or % */
225         for (a = 0; a < strlen(user); ++a) {
226                 if (user[a] == '@')
227                         user[a] = 0;
228                 if (user[a] == '%')
229                         user[a] = 0;
230         }
231
232
233         /* extract node name */
234         strcpy(node, rfc822);
235
236         /* first get rid of anything in parens */
237         for (a = 0; a < strlen(node); ++a)
238                 if (node[a] == '(') {
239                         do {
240                                 strcpy(&node[a], &node[a + 1]);
241                         } while ((strlen(node) > 0) && (node[a] != ')'));
242                         strcpy(&node[a], &node[a + 1]);
243                 }
244         /* if there's a set of angle brackets, strip it down to that */
245         if ((haschar(node, '<') == 1) && (haschar(node, '>') == 1)) {
246                 while ((strlen(node) > 0) && (node[0] != '<')) {
247                         strcpy(&node[0], &node[1]);
248                 }
249                 strcpy(&node[0], &node[1]);
250                 for (a = 0; a < strlen(node); ++a)
251                         if (node[a] == '>')
252                                 node[a] = 0;
253         }
254
255         /* If no node specified, tack ours on instead */
256         if (
257                 (haschar(node, '@')==0)
258                 && (haschar(node, '%')==0)
259                 && (haschar(node, '!')==0)
260         ) {
261                 strcpy(node, config.c_nodename);
262         }
263
264         else {
265
266                 /* strip anything to the left of a @ */
267                 while ((strlen(node) > 0) && (haschar(node, '@') > 0))
268                         strcpy(node, &node[1]);
269         
270                 /* strip anything to the left of a % */
271                 while ((strlen(node) > 0) && (haschar(node, '%') > 0))
272                         strcpy(node, &node[1]);
273         
274                 /* reduce multiple system bang paths to node!user */
275                 while ((strlen(node) > 0) && (haschar(node, '!') > 1))
276                         strcpy(node, &node[1]);
277         
278                 /* now get rid of the user portion of a node!user string */
279                 for (a = 0; a < strlen(node); ++a)
280                         if (node[a] == '!')
281                                 node[a] = 0;
282         }
283
284         /* strip leading and trailing spaces in all strings */
285         striplt(user);
286         striplt(node);
287         striplt(name);
288 }
289
290
291
292 /*
293  * Back end for convert_internet_address()
294  * (Compares an internet name [buffer1] and stores in [buffer2] if found)
295  */
296 void try_name(struct usersupp *us, void *data) {
297         struct trynamebuf *tnb;
298         tnb = (struct trynamebuf *)data;
299
300         if (!strncasecmp(tnb->buffer1, "cit", 3))
301                 if (atol(&tnb->buffer1[3]) == us->usernum)
302                         strcpy(tnb->buffer2, us->fullname);
303
304         if (!collapsed_strcmp(tnb->buffer1, us->fullname)) 
305                         strcpy(tnb->buffer2, us->fullname);
306
307         if (us->uid != BBSUID)
308                 if (!strcasecmp(tnb->buffer1, getpwuid(us->uid)->pw_name))
309                         strcpy(tnb->buffer2, us->fullname);
310 }
311
312
313 /*
314  * Convert an Internet email address to a Citadel user/host combination
315  */
316 int convert_internet_address(char *destuser, char *desthost, char *source)
317 {
318         char user[SIZ];
319         char node[SIZ];
320         char name[SIZ];
321         struct quickroom qrbuf;
322         int i;
323         int hostalias;
324         struct trynamebuf tnb;
325         char buf[SIZ];
326         int passes = 0;
327         char sourcealias[1024];
328
329         safestrncpy(sourcealias, source, sizeof(sourcealias) );
330         alias(sourcealias);
331
332 REALIAS:
333         /* Split it up */
334         process_rfc822_addr(sourcealias, user, node, name);
335         lprintf(9, "process_rfc822_addr() converted to <%s@%s> (%s)\n",
336                 user, node, name);
337
338         /* Map the FQDN to a Citadel node name
339          */
340         hostalias =  CtdlHostAlias(node);
341         switch(hostalias) {
342                 case hostalias_localhost:
343                         strcpy(node, config.c_nodename);
344                         break;
345
346                 case hostalias_gatewaydomain:
347                         extract_token(buf, node, 0, '.');
348                         safestrncpy(node, buf, sizeof buf);
349         }
350
351         /* Now try to resolve the name
352          * FIXME ... do the multiple-addresses thing
353          */
354         if (!strcasecmp(node, config.c_nodename)) {
355
356
357                 /* First, see if we hit an alias.  Don't do this more than
358                  * a few times, in case we accidentally hit an alias loop
359                  */
360                 strcpy(sourcealias, user);
361                 alias(user);
362                 if ( (strcasecmp(user, sourcealias)) && (++passes < 3) )
363                         goto REALIAS;
364
365                 /* Try all local rooms */
366                 if (!strncasecmp(user, "room_", 5)) {
367                         strcpy(name, &user[5]);
368                         for (i=0; i<strlen(name); ++i) 
369                                 if (name[i]=='_') name[i]=' ';
370                         if (getroom(&qrbuf, name) == 0) {
371                                 strcpy(destuser, qrbuf.QRname);
372                                 strcpy(desthost, config.c_nodename);
373                                 return rfc822_room_delivery;
374                         }
375                 }
376
377                 /* Try all local users */
378                 strcpy(destuser, user);
379                 strcpy(desthost, config.c_nodename);
380                 strcpy(tnb.buffer1, user);
381                 strcpy(tnb.buffer2, "");
382                 ForEachUser(try_name, &tnb);
383                 if (strlen(tnb.buffer2) == 0) return(rfc822_no_such_user);
384                 strcpy(destuser, tnb.buffer2);
385                 return(rfc822_address_locally_validated);
386         }
387
388         strcpy(destuser, user);
389         strcpy(desthost, node);
390         if (hostalias == hostalias_gatewaydomain)
391                 return(rfc822_address_on_citadel_network);
392         return(rfc822_address_nonlocal);
393 }
394
395
396
397
398 /*
399  * convert_field() is a helper function for convert_internet_message().
400  * Given start/end positions for an rfc822 field, it converts it to a Citadel
401  * field if it wants to, and unfolds it if necessary.
402  *
403  * Returns 1 if the field was converted and inserted into the Citadel message
404  * structure, implying that the source field should be removed from the
405  * message text.
406  */
407 int convert_field(struct CtdlMessage *msg, int beg, int end) {
408         char *rfc822;
409         char *key, *value;
410         int i;
411         int colonpos = (-1);
412         int processed = 0;
413         char buf[SIZ];
414         char user[1024];
415         char node[1024];
416         char name[1024];
417         char addr[1024];
418         time_t parsed_date;
419
420         rfc822 = msg->cm_fields['M'];   /* M field contains rfc822 text */
421         for (i = end; i >= beg; --i) {
422                 if (rfc822[i] == ':') colonpos = i;
423         }
424
425         if (colonpos < 0) return(0);    /* no colon? not a valid header line */
426
427         key = mallok((end - beg) + 2);
428         safestrncpy(key, &rfc822[beg], (end-beg)+1);
429         key[colonpos - beg] = 0;
430         value = &key[(colonpos - beg) + 1];
431         unfold_rfc822_field(value);
432
433         /*
434          * Here's the big rfc822-to-citadel loop.
435          */
436
437         /* Date/time is converted into a unix timestamp.  If the conversion
438          * fails, we replace it with the time the message arrived locally.
439          */
440         if (!strcasecmp(key, "Date")) {
441                 parsed_date = parsedate(value);
442                 if (parsed_date < 0L) parsed_date = time(NULL);
443                 snprintf(buf, sizeof buf, "%ld", parsed_date );
444                 if (msg->cm_fields['T'] == NULL)
445                         msg->cm_fields['T'] = strdoop(buf);
446                 processed = 1;
447         }
448
449         else if (!strcasecmp(key, "From")) {
450                 process_rfc822_addr(value, user, node, name);
451                 lprintf(9, "Converted to <%s@%s> (%s)\n", user, node, name);
452                 snprintf(addr, sizeof addr, "%s@%s", user, node);
453                 if (msg->cm_fields['A'] == NULL)
454                         msg->cm_fields['A'] = strdoop(name);
455                 processed = 1;
456                 if (msg->cm_fields['F'] == NULL)
457                         msg->cm_fields['F'] = strdoop(addr);
458                 processed = 1;
459         }
460
461         else if (!strcasecmp(key, "Subject")) {
462                 if (msg->cm_fields['U'] == NULL)
463                         msg->cm_fields['U'] = strdoop(value);
464                 processed = 1;
465         }
466
467         else if (!strcasecmp(key, "Message-ID")) {
468                 if (msg->cm_fields['I'] != NULL) {
469                         lprintf(5, "duplicate message id\n");
470                 }
471
472                 if (msg->cm_fields['I'] == NULL) {
473                         msg->cm_fields['I'] = strdoop(value);
474
475                         /* Strip angle brackets */
476                         while (haschar(msg->cm_fields['I'], '<') > 0) {
477                                 strcpy(&msg->cm_fields['I'][0],
478                                         &msg->cm_fields['I'][1]);
479                         }
480                         for (i = 0; i<strlen(msg->cm_fields['I']); ++i)
481                                 if (msg->cm_fields['I'][i] == '>')
482                                         msg->cm_fields['I'][i] = 0;
483                 }
484
485                 processed = 1;
486         }
487
488         /* Clean up and move on. */
489         phree(key);     /* Don't free 'value', it's actually the same buffer */
490         return(processed);
491 }
492
493
494 /*
495  * Convert an RFC822 message (headers + body) to a CtdlMessage structure.
496  * NOTE: the supplied buffer becomes part of the CtdlMessage structure, and
497  * will be deallocated when CtdlFreeMessage() is called.  Therefore, the
498  * supplied buffer should be DEREFERENCED.  It should not be freed or used
499  * again.
500  */
501 struct CtdlMessage *convert_internet_message(char *rfc822) {
502
503         struct CtdlMessage *msg;
504         int pos, beg, end, msglen;
505         int done;
506         char buf[SIZ];
507         int converted;
508
509         msg = mallok(sizeof(struct CtdlMessage));
510         if (msg == NULL) return msg;
511
512         memset(msg, 0, sizeof(struct CtdlMessage));
513         msg->cm_magic = CTDLMESSAGE_MAGIC;      /* self check */
514         msg->cm_anon_type = 0;                  /* never anonymous */
515         msg->cm_format_type = FMT_RFC822;       /* internet message */
516         msg->cm_fields['M'] = rfc822;
517
518         lprintf(9, "Unconverted RFC822 message length = %d\n", strlen(rfc822));
519         pos = 0;
520         done = 0;
521
522         while (!done) {
523
524                 /* Locate beginning and end of field, keeping in mind that
525                  * some fields might be multiline
526                  */
527                 beg = pos;
528                 end = (-1);
529
530                 msglen = strlen(rfc822);        
531                 while ( (end < 0) && (done == 0) ) {
532
533                         if ((rfc822[pos]=='\n')
534                            && (!isspace(rfc822[pos+1]))) {
535                                 end = pos;
536                         }
537
538                         /* done with headers? */
539                         if (   ((rfc822[pos]=='\n')
540                               ||(rfc822[pos]=='\r') )
541                            && ( (rfc822[pos+1]=='\n')
542                               ||(rfc822[pos+1]=='\r')) ) {
543                                 end = pos;
544                                 done = 1;
545                         }
546
547                         if (pos >= (msglen-1) ) {
548                                 end = pos;
549                                 done = 1;
550                         }
551
552                         ++pos;
553
554                 }
555
556                 /* At this point we have a field.  Are we interested in it? */
557                 converted = convert_field(msg, beg, end);
558
559                 /* Strip the field out of the RFC822 header if we used it */
560                 if (converted) {
561                         strcpy(&rfc822[beg], &rfc822[pos]);
562                         pos = beg;
563                 }
564
565                 /* If we've hit the end of the message, bail out */
566                 if (pos > strlen(rfc822)) done = 1;
567         }
568
569         /* Follow-up sanity checks... */
570
571         /* If there's no timestamp on this message, set it to now. */
572         if (msg->cm_fields['T'] == NULL) {
573                 snprintf(buf, sizeof buf, "%ld", time(NULL));
574                 msg->cm_fields['T'] = strdoop(buf);
575         }
576
577         lprintf(9, "RFC822 length remaining after conversion = %d\n",
578                 strlen(rfc822));
579         return msg;
580 }
581
582
583
584 /*
585  * Look for a particular header field in an RFC822 message text.  If the
586  * requested field is found, it is unfolded (if necessary) and returned to
587  * the caller.  The field name is stripped out, leaving only its contents.
588  * The caller is responsible for freeing the returned buffer.  If the requested
589  * field is not present, or anything else goes wrong, it returns NULL.
590  */
591 char *rfc822_fetch_field(char *rfc822, char *fieldname) {
592         int pos = 0;
593         int beg, end;
594         int done = 0;
595         int colonpos, i;
596         char *fieldbuf = NULL;
597
598         /* Should never happen, but sometimes we get stupid */
599         if (rfc822 == NULL) return(NULL);
600         if (fieldname == NULL) return(NULL);
601
602         while (!done) {
603
604                 /* Locate beginning and end of field, keeping in mind that
605                  * some fields might be multiline
606                  */
607                 beg = pos;
608                 end = (-1);
609                 for (pos=beg; ((pos<=strlen(rfc822))&&(end<0)); ++pos) {
610                         if ((rfc822[pos]=='\n')
611                            && (!isspace(rfc822[pos+1]))) {
612                                 end = pos;
613                         }
614                         if ( (rfc822[pos]=='\n')        /* done w. headers? */
615                            && ( (rfc822[pos+1]=='\n')
616                               ||(rfc822[pos+1]=='\r'))) {
617                                 end = pos;
618                                 done = 1;
619                         }
620
621                 }
622
623                 /* At this point we have a field.  Is it The One? */
624                 if (end > beg) {
625                         fieldbuf = mallok((end-beg)+3);
626                         if (fieldbuf == NULL) return(NULL);
627                         safestrncpy(fieldbuf, &rfc822[beg], (end-beg)+1);
628                         unfold_rfc822_field(fieldbuf);
629                         colonpos = (-1);
630                         for (i = strlen(fieldbuf); i >= 0; --i) {
631                                 if (fieldbuf[i] == ':') colonpos = i;
632                         }
633                         if (colonpos > 0) {
634                                 fieldbuf[colonpos] = 0;
635                                 if (!strcasecmp(fieldbuf, fieldname)) {
636                                         strcpy(fieldbuf, &fieldbuf[colonpos+1]);
637                                         striplt(fieldbuf);
638                                         return(fieldbuf);
639                                 }
640                         }
641                         phree(fieldbuf);
642                 }
643
644                 /* If we've hit the end of the message, bail out */
645                 if (pos > strlen(rfc822)) done = 1;
646         }
647         return(NULL);
648 }