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