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