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