*** empty log message ***
[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? */
431                         if (   (rfc822[pos]=='\n')
432                            && ( (rfc822[pos+1]=='\n')
433                               ||(rfc822[pos+1]=='\r')) ) {
434                                 end = pos;
435                                 done = 1;
436                         }
437
438                         if (pos >= (msglen-1) ) {
439                                 end = pos;
440                                 done = 1;
441                         }
442
443                         ++pos;
444
445                 }
446
447                 /* At this point we have a field.  Are we interested in it? */
448                 converted = convert_field(msg, beg, end);
449
450                 /* Strip the field out of the RFC822 header if we used it */
451                 if (converted) {
452                         strcpy(&rfc822[beg], &rfc822[pos]);
453                         pos = beg;
454                 }
455
456                 /* If we've hit the end of the message, bail out */
457                 if (pos > strlen(rfc822)) done = 1;
458         }
459
460         /* Follow-up sanity checks... */
461
462         /* If there's no timestamp on this message, set it to now. */
463         if (msg->cm_fields['T'] == NULL) {
464                 snprintf(buf, sizeof buf, "%ld", (long)time(NULL));
465                 msg->cm_fields['T'] = strdup(buf);
466         }
467
468         lprintf(CTDL_DEBUG, "RFC822 length remaining after conversion = %ld\n",
469                 (long)strlen(rfc822));
470         return msg;
471 }
472
473
474
475 /*
476  * Look for a particular header field in an RFC822 message text.  If the
477  * requested field is found, it is unfolded (if necessary) and returned to
478  * the caller.  The field name is stripped out, leaving only its contents.
479  * The caller is responsible for freeing the returned buffer.  If the requested
480  * field is not present, or anything else goes wrong, it returns NULL.
481  */
482 char *rfc822_fetch_field(char *rfc822, char *fieldname) {
483         char *fieldbuf = NULL;
484         char *end_of_headers;
485         char *field_start;
486         char *ptr;
487         char *cont;
488         char fieldhdr[SIZ];
489
490         /* Should never happen, but sometimes we get stupid */
491         if (rfc822 == NULL) return(NULL);
492         if (fieldname == NULL) return(NULL);
493
494         snprintf(fieldhdr, sizeof fieldhdr, "%s:", fieldname);
495
496         /* Locate the end of the headers, so we don't run past that point */
497         end_of_headers = bmstrstr(rfc822, "\n\r\n", strncmp);
498         if (end_of_headers == NULL) {
499                 end_of_headers = bmstrstr(rfc822, "\n\n", strncmp);
500         }
501         if (end_of_headers == NULL) return (NULL);
502
503         field_start = bmstrstr(rfc822, fieldhdr, strncasecmp);
504         if (field_start == NULL) return(NULL);
505         if (field_start > end_of_headers) return(NULL);
506
507         fieldbuf = malloc(SIZ);
508         strcpy(fieldbuf, "");
509
510         ptr = field_start;
511         ptr = memreadline(ptr, fieldbuf, SIZ-strlen(fieldbuf) );
512         while ( (isspace(ptr[0])) && (ptr < end_of_headers) ) {
513                 strcat(fieldbuf, " ");
514                 cont = &fieldbuf[strlen(fieldbuf)];
515                 ptr = memreadline(ptr, cont, SIZ-strlen(fieldbuf) );
516                 striplt(cont);
517         }
518
519         strcpy(fieldbuf, &fieldbuf[strlen(fieldhdr)]);
520         striplt(fieldbuf);
521
522         return(fieldbuf);
523 }
524
525
526
527 /*****************************************************************************
528  *                      DIRECTORY MANAGEMENT FUNCTIONS                       *
529  *****************************************************************************/
530
531 /*
532  * Generate the index key for an Internet e-mail address to be looked up
533  * in the database.
534  */
535 void directory_key(char *key, char *addr) {
536         int i;
537         int keylen = 0;
538
539         for (i=0; i<strlen(addr); ++i) {
540                 if (!isspace(addr[i])) {
541                         key[keylen++] = tolower(addr[i]);
542                 }
543         }
544         key[keylen++] = 0;
545
546         lprintf(CTDL_DEBUG, "Directory key is <%s>\n", key);
547 }
548
549
550
551 /* Return nonzero if the supplied address is in a domain we keep in
552  * the directory
553  */
554 int IsDirectory(char *addr) {
555         char domain[SIZ];
556         int h;
557
558         extract_token(domain, addr, 1, '@');
559         striplt(domain);
560
561         h = CtdlHostAlias(domain);
562         lprintf(CTDL_DEBUG, "IsDirectory(%s)\n", domain);
563
564         if ( (h == hostalias_localhost) || (h == hostalias_directory) ) {
565                 lprintf(CTDL_DEBUG, " ...yes\n");
566                 return(1);
567         }
568         else {
569                 lprintf(CTDL_DEBUG, " ...no\n");
570                 return(0);
571         }
572 }
573
574
575 /*
576  * Initialize the directory database (erasing anything already there)
577  */
578 void CtdlDirectoryInit(void) {
579         cdb_trunc(CDB_DIRECTORY);
580 }
581
582
583 /*
584  * Add an Internet e-mail address to the directory for a user
585  */
586 void CtdlDirectoryAddUser(char *internet_addr, char *citadel_addr) {
587         char key[SIZ];
588
589         lprintf(CTDL_DEBUG, "Dir: %s --> %s\n",
590                 internet_addr, citadel_addr);
591         if (IsDirectory(internet_addr) == 0) return;
592
593         directory_key(key, internet_addr);
594
595         cdb_store(CDB_DIRECTORY, key, strlen(key),
596                 citadel_addr, strlen(citadel_addr)+1 );
597 }
598
599
600 /*
601  * Delete an Internet e-mail address from the directory.
602  *
603  * (NOTE: we don't actually use or need the citadel_addr variable; it's merely
604  * here because the callback API expects to be able to send it.)
605  */
606 void CtdlDirectoryDelUser(char *internet_addr, char *citadel_addr) {
607         char key[SIZ];
608
609         directory_key(key, internet_addr);
610         cdb_delete(CDB_DIRECTORY, key, strlen(key) );
611 }
612
613
614 /*
615  * Look up an Internet e-mail address in the directory.
616  * On success: returns 0, and Citadel address stored in 'target'
617  * On failure: returns nonzero
618  */
619 int CtdlDirectoryLookup(char *target, char *internet_addr) {
620         struct cdbdata *cdbrec;
621         char key[SIZ];
622
623         /* Dump it in there unchanged, just for kicks */
624         strcpy(target, internet_addr);
625
626         /* Only do lookups for addresses with hostnames in them */
627         if (num_tokens(internet_addr, '@') != 2) return(-1);
628
629         /* Only do lookups for domains in the directory */
630         if (IsDirectory(internet_addr) == 0) return(-1);
631
632         directory_key(key, internet_addr);
633         cdbrec = cdb_fetch(CDB_DIRECTORY, key, strlen(key) );
634         if (cdbrec != NULL) {
635                 safestrncpy(target, cdbrec->ptr, SIZ);
636                 cdb_free(cdbrec);
637                 return(0);
638         }
639
640         return(-1);
641 }