* New user registration, as well as existing user re-registration, now
[citadel.git] / webcit / webcit.c
1 /*
2  * webcit.c
3  *
4  * This is the actual program called by the webserver.  It maintains a
5  * persistent session to the Citadel server, handling HTTP WebCit requests as
6  * they arrive and presenting a user interface.
7  *
8  * $Id$
9  */
10
11 #include <ctype.h>
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <stdio.h>
15 #include <fcntl.h>
16 #include <signal.h>
17 #include <sys/types.h>
18 #include <sys/wait.h>
19 #include <sys/socket.h>
20 #include <sys/time.h>
21 #include <sys/stat.h>
22 #include <limits.h>
23 #include <netinet/in.h>
24 #include <netdb.h>
25 #include <string.h>
26 #include <pwd.h>
27 #include <errno.h>
28 #include <stdarg.h>
29 #include <pthread.h>
30 #include <signal.h>
31 #include "webcit.h"
32 #include "webserver.h"
33 #include "mime_parser.h"
34
35 /*
36  * String to unset the cookie.
37  * Any date "in the past" will work, so I chose my birthday, right down to
38  * the exact minute.  :)
39  */
40 static char *unset = "; expires=28-May-1971 18:10:00 GMT";
41
42 void unescape_input(char *buf)
43 {
44         int a, b;
45         char hex[3];
46
47         while ((isspace(buf[strlen(buf) - 1])) && (strlen(buf) > 0))
48                 buf[strlen(buf) - 1] = 0;
49
50         for (a = 0; a < strlen(buf); ++a) {
51                 if (buf[a] == '+')
52                         buf[a] = ' ';
53                 if (buf[a] == '%') {
54                         hex[0] = buf[a + 1];
55                         hex[1] = buf[a + 2];
56                         hex[2] = 0;
57                         sscanf(hex, "%02x", &b);
58                         buf[a] = (char) b;
59                         strcpy(&buf[a + 1], &buf[a + 3]);
60                 }
61         }
62
63 }
64
65
66 void addurls(char *url)
67 {
68         char *up, *ptr;
69         char buf[SIZ];
70         int a, b;
71         struct urlcontent *u;
72
73         up = url;
74         while (strlen(up) > 0) {
75
76                 /* locate the = sign */
77                 safestrncpy(buf, up, sizeof buf);
78                 b = (-1);
79                 for (a = 255; a >= 0; --a)
80                         if (buf[a] == '=')
81                                 b = a;
82                 if (b < 0)
83                         return;
84                 buf[b] = 0;
85
86                 u = (struct urlcontent *) malloc(sizeof(struct urlcontent));
87                 u->next = WC->urlstrings;
88                 WC->urlstrings = u;
89                 strcpy(u->url_key, buf);
90
91                 /* now chop that part off */
92                 for (a = 0; a <= b; ++a)
93                         ++up;
94
95                 /* locate the & sign */
96                 ptr = up;
97                 b = strlen(up);
98                 for (a = 0; a < strlen(up); ++a) {
99                         if (!strncmp(ptr, "&", 1)) {
100                                 b = a;
101                                 break;
102                         }
103                         ++ptr;
104                 }
105                 ptr = up;
106                 for (a = 0; a < b; ++a)
107                         ++ptr;
108                 strcpy(ptr, "");
109
110                 u->url_data = malloc(strlen(up) + 1);
111                 strcpy(u->url_data, up);
112                 u->url_data[b] = 0;
113                 unescape_input(u->url_data);
114                 up = ptr;
115                 ++up;
116         }
117 }
118
119 void free_urls(void)
120 {
121         struct urlcontent *u;
122
123         while (WC->urlstrings != NULL) {
124                 free(WC->urlstrings->url_data);
125                 u = WC->urlstrings->next;
126                 free(WC->urlstrings);
127                 WC->urlstrings = u;
128         }
129 }
130
131 /*
132  * Diagnostic function to display the contents of all variables
133  */
134 void dump_vars(void)
135 {
136         struct urlcontent *u;
137
138         for (u = WC->urlstrings; u != NULL; u = u->next) {
139                 wprintf("%38s = %s\n", u->url_key, u->url_data);
140         }
141 }
142
143 char *bstr(char *key)
144 {
145         struct urlcontent *u;
146
147         for (u = WC->urlstrings; u != NULL; u = u->next) {
148                 if (!strcasecmp(u->url_key, key))
149                         return (u->url_data);
150         }
151         return ("");
152 }
153
154
155 void wprintf(const char *format,...)
156 {
157         va_list arg_ptr;
158         char wbuf[4096];
159
160         va_start(arg_ptr, format);
161         vsprintf(wbuf, format, arg_ptr);
162         va_end(arg_ptr);
163
164         write(WC->http_sock, wbuf, strlen(wbuf));
165 }
166
167
168 /*
169  * wDumpContent() wraps up an HTTP session, closes tags, etc.
170  *
171  * print_standard_html_footer should be set to 0 to transmit only, 1 to
172  * append the main menu and closing tags, or 2 to
173  * append the closing tags only.
174  */
175 void wDumpContent(int print_standard_html_footer)
176 {
177         if (print_standard_html_footer) {
178                 do_template("trailing");
179         }
180
181
182 }
183
184
185 /*
186  * Copy a string, escaping characters which have meaning in HTML.  If
187  * nbsp is nonzero, spaces are converted to non-breaking spaces.
188  */
189 void stresc(char *target, char *strbuf, int nbsp)
190 {
191         int a;
192         strcpy(target, "");
193
194         for (a = 0; a < strlen(strbuf); ++a) {
195                 if (strbuf[a] == '<')
196                         strcat(target, "&lt;");
197                 else if (strbuf[a] == '>')
198                         strcat(target, "&gt;");
199                 else if (strbuf[a] == '&')
200                         strcat(target, "&amp;");
201                 else if (strbuf[a] == '\"')
202                         strcat(target, "&quot;");
203                 else if (strbuf[a] == '\'') 
204                         strcat(target, "&#39;");
205                 else if (strbuf[a] == LB)
206                         strcat(target, "<");
207                 else if (strbuf[a] == RB)
208                         strcat(target, ">");
209                 else if (strbuf[a] == QU)
210                         strcat(target, "\"");
211                 else if ((strbuf[a] == 32) && (nbsp == 1)) {
212                         strcat(target, "&nbsp;");
213                 } else {
214                         strncat(target, &strbuf[a], 1);
215                 }
216         }
217 }
218
219 void escputs1(char *strbuf, int nbsp)
220 {
221         char buf[1024];
222         stresc(buf, strbuf, nbsp);
223         wprintf("%s", buf);
224 }
225
226 void escputs(char *strbuf)
227 {
228         escputs1(strbuf, 0);
229 }
230
231 /*
232  * Escape a string for feeding out as a URL.
233  * Returns a pointer to a buffer that must be freed by the caller!
234  */
235 void urlesc(char *outbuf, char *strbuf)
236 {
237         int a, b, c;
238         char *ec = " #&;`'|*?-~<>^()[]{}$\\";
239
240         strcpy(outbuf, "");
241
242         for (a = 0; a < strlen(strbuf); ++a) {
243                 c = 0;
244                 for (b = 0; b < strlen(ec); ++b) {
245                         if (strbuf[a] == ec[b])
246                                 c = 1;
247                 }
248                 b = strlen(outbuf);
249                 if (c == 1)
250                         sprintf(&outbuf[b], "%%%02x", strbuf[a]);
251                 else
252                         sprintf(&outbuf[b], "%c", strbuf[a]);
253         }
254 }
255
256 void urlescputs(char *strbuf)
257 {
258         char outbuf[SIZ];
259         
260         urlesc(outbuf, strbuf);
261         wprintf("%s", outbuf);
262 }
263
264
265
266
267 /*
268  * Output all that important stuff that the browser will want to see
269  *
270  * control codes:
271  * 
272  * Bits 0 and 1:
273  * 0 = Nothing.  Do not display any leading HTTP or HTML.
274  * 1 = HTTP headers plus the room banner
275  * 2 = HTTP headers required to terminate the session (unset cookies)
276  * 3 = HTTP and HTML headers, but no room banner
277  *
278  * Bit 2: Set to 1 to auto-refresh page every 30 seconds
279  *
280  * Bit 3: suppress check for express messages
281  */
282 void output_headers(int controlcode)
283 {
284         char cookie[SIZ];
285         int print_standard_html_head = 0;
286         int refresh30 = 0;
287         int suppress_check = 0;
288         char httpnow[SIZ];
289         static int pageseq = 0;
290         print_standard_html_head        =       controlcode & 0x03;
291         refresh30                       =       ((controlcode & 0x04) >> 2);
292         suppress_check                  =       ((controlcode & 0x08) >> 3);
293
294         wprintf("HTTP/1.0 200 OK\n");
295
296         httpdate(httpnow, time(NULL));
297
298         if (print_standard_html_head > 0) {
299                 wprintf("Content-type: text/html\n"
300                         "Server: %s\n", SERVER
301                 );
302                 wprintf("Connection: close\n"
303                         "Pragma: no-cache\n"
304                         "Cache-Control: no-store\n"
305                 );
306         }
307         stuff_to_cookie(cookie, WC->wc_session, WC->wc_username,
308                         WC->wc_password, WC->wc_roomname);
309         if (print_standard_html_head == 2) {
310                 wprintf("Set-cookie: webcit=%s\n", unset);
311         } else {
312                 wprintf("Set-cookie: webcit=%s\n", cookie);
313                 if (server_cookie != NULL) {
314                         wprintf("%s\n", server_cookie);
315                 }
316         }
317
318         if (print_standard_html_head > 0) {
319                 wprintf("\n");
320
321                 if (refresh30) svprintf("REFRESHTAG", WCS_STRING,
322                         "<META HTTP-EQUIV=\"refresh\" CONTENT=\"30\">\n");
323                 else svprintf("REFRESHTAG", WCS_STRING,
324                         "<META HTTP-EQUIV=\"refresh\" CONTENT=\"500363689;\">\n");
325                 /* script for checking for pages (not always launched) */
326                 svprintf("PAGERSCRIPT", WCS_STRING,
327                         "<SCRIPT LANGUAGE=\"JavaScript\">\n"
328                         "function launch_page_popup() {\n"
329                         "pwin = window.open('/page_popup', 'CitaPage%d', "
330                         "'toolbar=no,location=no,copyhistory=no,status=no,"
331                         "scrollbars=yes,resizable=no,height=250,width=400');\n"
332                         "}\n"
333                         "</SCRIPT>\n",
334                         ++pageseq
335                 );
336                 /* end script */
337
338                 do_template("head");
339                 clear_local_substs();
340
341                 if (!suppress_check) if (WC->HaveExpressMessages) {
342                         svprintf("extrabodyparms", WCS_STRING, "%s", 
343                                 "onload=\"launch_page_popup()\" ");
344                         WC->HaveExpressMessages = 0;
345                 }
346
347                 do_template("background");
348                 clear_local_substs();
349
350         if (print_standard_html_head == 1) {
351                 wprintf("<A NAME=\"TheTop\"></A>");
352
353                 embed_room_banner(NULL);
354
355                 }
356         }
357 }
358
359
360 /*
361  *
362  */
363 void http_redirect(char *whichpage) {
364         wprintf("HTTP/1.0 302 Moved Temporarily\n");
365         wprintf("Location: %s\n", whichpage);
366         wprintf("URI: %s\n", whichpage);
367         wprintf("Content-type: text/html\n\n");
368         wprintf("<html><body>\n");
369         wprintf("you really want to be <A HREF=\"%s\">here</A> now\n",
370                 whichpage);
371         wprintf("</body></html>\n");
372 }
373
374
375
376 void check_for_express_messages()
377 {
378         char buf[SIZ];
379
380         serv_puts("NOOP");
381         serv_gets(buf);
382         if (buf[3] == '*') WC->HaveExpressMessages = 1;
383 }
384
385
386
387
388 /* 
389  * Output a piece of content to the web browser
390  */
391 void http_transmit_thing(char *thing, size_t length, char *content_type) {
392         output_headers(0);
393         wprintf("Content-type: %s\n"
394                 "Content-length: %ld\n"
395                 "Server: %s\n"
396                 "Connection: close\n"
397                 "\n",
398                 content_type,
399                 (long) length,
400                 SERVER
401         );
402         write(WC->http_sock, thing, (size_t)length);
403 }
404
405
406
407
408 void output_static(char *what)
409 {
410         char buf[4096];
411         FILE *fp;
412         struct stat statbuf;
413         off_t bytes;
414         char *bigbuffer;
415         char content_type[SIZ];
416
417         lprintf(9, "output_static(%s)\n", what);
418         sprintf(buf, "static/%s", what);
419         fp = fopen(buf, "rb");
420         if (fp == NULL) {
421                 wprintf("HTTP/1.0 404 %s\n", strerror(errno));
422                 wprintf("Content-Type: text/plain\n");
423                 wprintf("\n");
424                 wprintf("Cannot open %s: %s\n", what, strerror(errno));
425         } else {
426                 if (!strncasecmp(&what[strlen(what) - 4], ".gif", 4))
427                         strcpy(content_type, "image/gif");
428                 else if (!strncasecmp(&what[strlen(what) - 4], ".txt", 4))
429                         strcpy(content_type, "text/plain");
430                 else if (!strncasecmp(&what[strlen(what) - 4], ".css", 4))
431                         strcpy(content_type, "text/css");
432                 else if (!strncasecmp(&what[strlen(what) - 4], ".jpg", 4))
433                         strcpy(content_type, "image/jpeg");
434                 else if (!strncasecmp(&what[strlen(what) - 4], ".png", 4))
435                         strcpy(content_type, "image/png");
436                 else if (!strncasecmp(&what[strlen(what) - 5], ".html", 5))
437                         strcpy(content_type, "text/html");
438                 else if (!strncasecmp(&what[strlen(what) - 4], ".wml", 4))
439                         strcpy(content_type, "text/vnd.wap.wml");
440                 else if (!strncasecmp(&what[strlen(what) - 5], ".wmls", 5))
441                         strcpy(content_type, "text/vnd.wap.wmlscript");
442                 else if (!strncasecmp(&what[strlen(what) - 5], ".wmlc", 5))
443                         strcpy(content_type, "application/vnd.wap.wmlc");
444                 else if (!strncasecmp(&what[strlen(what) - 6], ".wmlsc", 6))
445                         strcpy(content_type, "application/vnd.wap.wmlscriptc");
446                 else if (!strncasecmp(&what[strlen(what) - 5], ".wbmp", 5))
447                         wprintf("Content-type: image/vnd.wap.wbmp");
448                 else
449                         wprintf("Content-type: application/octet-stream");
450
451                 fstat(fileno(fp), &statbuf);
452                 bytes = statbuf.st_size;
453                 lprintf(3, "Static: %s, %ld bytes\n", what, bytes);
454                 bigbuffer = malloc(bytes);
455                 fread(bigbuffer, bytes, 1, fp);
456                 fclose(fp);
457
458                 http_transmit_thing(bigbuffer, (size_t)bytes, content_type);
459                 free(bigbuffer);
460         }
461         if (!strcasecmp(bstr("force_close_session"), "yes")) {
462                 end_webcit_session();
463         }
464 }
465
466
467 /*
468  * When the browser requests an image file from the Citadel server,
469  * this function is called to transmit it.
470  */
471 void output_image()
472 {
473         char buf[SIZ];
474         char *xferbuf = NULL;
475         off_t bytes;
476
477         serv_printf("OIMG %s|%s", bstr("name"), bstr("parm"));
478         serv_gets(buf);
479         if (buf[0] == '2') {
480                 bytes = extract_long(&buf[4], 0);
481                 xferbuf = malloc(bytes);
482
483                 /* Read it from the server */
484                 read_server_binary(xferbuf, bytes);
485                 serv_puts("CLOS");
486                 serv_gets(buf);
487
488                 /* Write it to the browser */
489                 http_transmit_thing(xferbuf, (size_t)bytes, "image/gif");
490                 free(xferbuf);
491
492         } else {
493                 wprintf("HTTP/1.0 404 %s\n", &buf[4]);
494                 output_headers(0);
495                 wprintf("Content-Type: text/plain\n"
496                         "\n"
497                         "Error retrieving image: %s\n",
498                         &buf[4]
499                 );
500         }
501
502
503
504 }
505
506 /*
507  */
508 void output_mimepart()
509 {
510         char buf[SIZ];
511         off_t bytes;
512         char content_type[SIZ];
513         char *content = NULL;
514         
515         serv_printf("OPNA %s|%s", bstr("msgnum"), bstr("partnum"));
516         serv_gets(buf);
517         if (buf[0] == '2') {
518                 bytes = extract_long(&buf[4], 0);
519                 content = malloc(bytes);
520                 extract(content_type, &buf[4], 3);
521                 output_headers(0);
522                 read_server_binary(content, bytes);
523                 serv_puts("CLOS");
524                 serv_gets(buf);
525                 http_transmit_thing(content, bytes, content_type);
526                 free(content);
527         } else {
528                 wprintf("HTTP/1.0 404 %s\n", &buf[4]);
529                 output_headers(0);
530                 wprintf("Content-Type: text/plain\n");
531                 wprintf("\n");
532                 wprintf("Error retrieving part: %s\n", &buf[4]);
533         }
534
535 }
536
537
538 /*
539  */
540 char *load_mimepart(long msgnum, char *partnum)
541 {
542         char buf[SIZ];
543         off_t bytes;
544         char content_type[SIZ];
545         char *content;
546         
547         serv_printf("OPNA %ld|%s", msgnum, partnum);
548         serv_gets(buf);
549         if (buf[0] == '2') {
550                 bytes = extract_long(&buf[4], 0);
551                 extract(content_type, &buf[4], 3);
552
553                 content = malloc(bytes + 1);
554                 read_server_binary(content, bytes);
555
556                 serv_puts("CLOS");
557                 serv_gets(buf);
558                 content[bytes] = 0;     /* null terminate for good measure */
559                 return(content);
560         }
561         else {
562                 return(NULL);
563         }
564
565 }
566
567
568 /*
569  * Convenience functions to display a page containing only a string
570  */
571 void convenience_page(char *titlebarcolor, char *titlebarmsg, char *messagetext)
572 {
573         wprintf("HTTP/1.0 200 OK\n");
574         output_headers(1);
575         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=%s><TR><TD>", titlebarcolor);
576         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
577         wprintf("<B>%s</B>\n", titlebarmsg);
578         wprintf("</FONT></TD></TR></TABLE><BR>\n");
579         escputs(messagetext);
580
581         wprintf("<HR>\n");
582         wDumpContent(1);
583 }
584
585
586 /*
587  * Display a blank page.
588  */
589 void blank_page(void) {
590         output_headers(7);
591         wDumpContent(2);
592 }
593
594
595
596
597 /*
598  * Offer to make any page the user's "start page."
599  */
600 void offer_start_page(void) {
601         wprintf("<A HREF=\"/change_start_page?startpage=");
602         urlescputs(WC->this_page);
603         wprintf("\">"
604                 "<FONT SIZE=-2 COLOR=#AAAAAA>Make this my start page</FONT>"
605                 "</A>"
606         );
607 }
608
609
610 /* 
611  * Change the user's start page
612  */
613 void change_start_page(void) {
614
615         if (bstr("startpage") == NULL) {
616                 display_error("startpage set to null");
617                 return;
618         }
619
620         set_preference("startpage", bstr("startpage"));
621
622         output_headers(3);
623         do_template("newstartpage");
624         wDumpContent(1);
625 }
626
627
628
629
630 void display_error(char *errormessage)
631 {
632         convenience_page("770000", "Error", errormessage);
633 }
634
635 void display_success(char *successmessage)
636 {
637         convenience_page("007700", "OK", successmessage);
638 }
639
640
641
642 void extract_action(char *actbuf, char *cmdbuf)
643 {
644         int i;
645
646         strcpy(actbuf, cmdbuf);
647         if (!strncasecmp(actbuf, "GET /", 5))
648                 strcpy(actbuf, &actbuf[5]);
649         if (!strncasecmp(actbuf, "PUT /", 5))
650                 strcpy(actbuf, &actbuf[5]);
651         if (!strncasecmp(actbuf, "POST /", 6))
652                 strcpy(actbuf, &actbuf[6]);
653
654         for (i = 0; i < strlen(actbuf); ++i) {
655                 if (actbuf[i] == ' ') {
656                         actbuf[i] = 0;
657                         i = 0;
658                 }
659                 if (actbuf[i] == '/') {
660                         actbuf[i] = 0;
661                         i = 0;
662                 }
663                 if (actbuf[i] == '?') {
664                         actbuf[i] = 0;
665                         i = 0;
666                 }
667                 if (actbuf[i] == '&') {
668                         actbuf[i] = 0;
669                         i = 0;
670                 }
671         }
672 }
673
674
675 void upload_handler(char *name, char *filename, char *partnum, char *disp,
676                         void *content, char *cbtype, size_t length,
677                         char *encoding, void *userdata)
678 {
679
680         lprintf(5, "UPLOAD HANDLER CALLED\n");
681         lprintf(5, "    name = %s\n", name);
682         lprintf(5, "filename = %s\n", filename);
683         lprintf(5, "encoding = %s\n", encoding);
684         lprintf(5, "    type = %s\n", cbtype);
685         lprintf(5, "  length = %ld\n", (long)length);
686
687         if (length > 0) {
688                 WC->upload = malloc(length);
689                 if (WC->upload != NULL) {
690                         WC->upload_length = length;
691                         memcpy(WC->upload, content, length);
692                 }
693                 else {
694                         lprintf(9, "malloc() failed: %s\n",
695                                 strerror(errno));
696                 }
697         }
698 }
699
700
701
702
703 /*
704  * Entry point for WebCit transaction
705  */
706 void session_loop(struct httprequest *req)
707 {
708         char cmd[SIZ];
709         char action[SIZ];
710         char buf[SIZ];
711         int a, b;
712         int ContentLength = 0;
713         int BytesRead;
714         char ContentType[512];
715         char *content;
716         char *content_end;
717         struct httprequest *hptr;
718         char browser_host[SIZ];
719         char user_agent[SIZ];
720
721         /* We stuff these with the values coming from the client cookies,
722          * so we can use them to reconnect a timed out session if we have to.
723          */
724         char c_host[SIZ];
725         char c_port[SIZ];
726         char c_username[SIZ];
727         char c_password[SIZ];
728         char c_roomname[SIZ];
729         char cookie[SIZ];
730
731         strcpy(c_host, defaulthost);
732         strcpy(c_port, defaultport);
733         strcpy(c_username, "");
734         strcpy(c_password, "");
735         strcpy(c_roomname, "");
736
737         WC->upload_length = 0;
738         WC->upload = NULL;
739
740         WC->is_wap = 0;
741
742         hptr = req;
743         if (hptr == NULL) return;
744
745         strcpy(cmd, hptr->line);
746         hptr = hptr->next;
747         extract_action(action, cmd);
748
749         while (hptr != NULL) {
750                 strcpy(buf, hptr->line);
751                 hptr = hptr->next;
752
753                 if (!strncasecmp(buf, "Cookie: webcit=", 15)) {
754                         strcpy(cookie, &buf[15]);
755                         cookie_to_stuff(cookie, NULL,
756                                       c_username, c_password, c_roomname);
757                 }
758                 else if (!strncasecmp(buf, "Content-length: ", 16)) {
759                         ContentLength = atoi(&buf[16]);
760                 }
761                 else if (!strncasecmp(buf, "Content-type: ", 14)) {
762                         safestrncpy(ContentType, &buf[14], sizeof ContentType);
763                 }
764                 else if (!strncasecmp(buf, "User-agent: ", 12)) {
765                         safestrncpy(user_agent, &buf[12], sizeof user_agent);
766                 }
767                 else if (!strncasecmp(buf, "Host: ", 6)) {
768                         safestrncpy(WC->http_host, &buf[6], sizeof WC->http_host);
769                 }
770                 /* Only WAP gateways explicitly name this content-type */
771                 else if (strstr(buf, "text/vnd.wap.wml")) {
772                         WC->is_wap = 1;
773                 }
774         }
775
776         if (ContentLength > 0) {
777                 lprintf(5, "Content length: %d\n", ContentLength);
778                 content = malloc(ContentLength + 1);
779                 memset(content, 0, ContentLength+1);
780                 BytesRead = 0;
781
782                 while (BytesRead < ContentLength) {
783                         a=read(WC->http_sock, &content[BytesRead],
784                                 ContentLength - BytesRead);
785                         if (a <= 0) BytesRead = ContentLength;
786                         else BytesRead += a;
787                 }
788
789                 if (!strncasecmp(ContentType,
790                               "application/x-www-form-urlencoded", 33)) {
791                         addurls(content);
792                 } else if (!strncasecmp(ContentType, "multipart", 9)) {
793                         content_end = content + ContentLength;
794                         mime_parser(content, content_end, *upload_handler,
795                                         NULL, NULL, NULL, 0);
796                 }
797         } else {
798                 content = NULL;
799         }
800
801         /* make a note of where we are in case the user wants to save it */
802         safestrncpy(WC->this_page, cmd, sizeof(WC->this_page));
803         remove_token(WC->this_page, 2, ' ');
804         remove_token(WC->this_page, 0, ' ');
805
806         /* If there are variables in the URL, we must grab them now */
807         for (a = 0; a < strlen(cmd); ++a) {
808                 if ((cmd[a] == '?') || (cmd[a] == '&')) {
809                         for (b = a; b < strlen(cmd); ++b)
810                                 if (isspace(cmd[b]))
811                                         cmd[b] = 0;
812                         addurls(&cmd[a + 1]);
813                         cmd[a] = 0;
814                 }
815         }
816
817         /*
818          * If we're not connected to a Citadel server, try to hook up the
819          * connection now.  Preference is given to the host and port specified
820          * by browser cookies, if cookies have been supplied.
821          */
822         if (!WC->connected) {
823                 if (strlen(bstr("host")) > 0)
824                         strcpy(c_host, bstr("host"));
825                 if (strlen(bstr("port")) > 0)
826                         strcpy(c_port, bstr("port"));
827
828                 if (!strcasecmp(c_host, "uds")) {
829                         /* unix domain socket */
830                         sprintf(buf, "%s/citadel.socket", c_port);
831                         WC->serv_sock = uds_connectsock(buf);
832                 }
833                 else {
834                         /* tcp socket */
835                         WC->serv_sock = tcp_connectsock(c_host, c_port);
836                 }
837
838                 if (WC->serv_sock < 0) {
839                         do_logout();
840                         goto SKIP_ALL_THIS_CRAP;
841                 }
842                 else {
843                         WC->connected = 1;
844                         serv_gets(buf); /* get the server welcome message */
845                         locate_host(browser_host, WC->http_sock);
846                         get_serv_info(browser_host, user_agent);
847                         if (serv_info.serv_rev_level < MINIMUM_CIT_VERSION) {
848                                 wprintf("You are connected to a Citadel "
849                                         "server running Citadel %d.%02d;\nin "
850                                         "order to run this version of WebCit "
851                                         "you must also have Citadel %d.%02d or"
852                                         " newer.\n\n\n",
853                                                 serv_info.serv_rev_level / 100,
854                                                 serv_info.serv_rev_level % 100,
855                                                 MINIMUM_CIT_VERSION / 100,
856                                                 MINIMUM_CIT_VERSION % 100
857                                         );
858                                 end_webcit_session();
859                                 goto SKIP_ALL_THIS_CRAP;
860                         }
861                 }
862         }
863
864         /*
865          * Functions which can be performed without logging in
866          */
867         if (!strcasecmp(action, "listsub")) {
868                 do_listsub();
869                 goto SKIP_ALL_THIS_CRAP;
870         }
871
872         check_for_express_messages();
873
874         /*
875          * If we're not logged in, but we have username and password cookies
876          * supplied by the browser, try using them to log in.
877          */
878         if ((!WC->logged_in) && (strlen(c_username) > 0) && (strlen(c_password) > 0)) {
879                 serv_printf("USER %s", c_username);
880                 serv_gets(buf);
881                 if (buf[0] == '3') {
882                         serv_printf("PASS %s", c_password);
883                         serv_gets(buf);
884                         if (buf[0] == '2') {
885                                 become_logged_in(c_username, c_password, buf);
886                         }
887                 }
888         }
889         /*
890          * If we don't have a current room, but a cookie specifying the
891          * current room is supplied, make an effort to go there.
892          */
893         if ((strlen(WC->wc_roomname) == 0) && (strlen(c_roomname) > 0)) {
894                 serv_printf("GOTO %s", c_roomname);
895                 serv_gets(buf);
896                 if (buf[0] == '2') {
897                         strcpy(WC->wc_roomname, c_roomname);
898                 }
899         }
900         if (!strcasecmp(action, "static")) {
901                 strcpy(buf, &cmd[12]);
902                 for (a = 0; a < strlen(buf); ++a)
903                         if (isspace(buf[a]))
904                                 buf[a] = 0;
905                 output_static(buf);
906         } else if (!strcasecmp(action, "image")) {
907                 output_image();
908
909         /*
910          * All functions handled below this point ... make sure we log in
911          * before doing anything else!
912          */
913         } else if ((!WC->logged_in) && (!strcasecmp(action, "login"))) {
914                 do_login();
915         } else if (!WC->logged_in) {
916                 display_login(NULL);
917         }
918
919         /*
920          * Various commands...
921          */
922
923         else if (!strcasecmp(action, "do_welcome")) {
924                 do_welcome();
925         } else if (!strcasecmp(action, "blank")) {
926                 blank_page();
927         } else if (!strcasecmp(action, "display_main_menu")) {
928                 display_main_menu();
929         } else if (!strcasecmp(action, "whobbs")) {
930                 whobbs();
931         } else if (!strcasecmp(action, "knrooms")) {
932                 knrooms();
933         } else if (!strcasecmp(action, "gotonext")) {
934                 slrp_highest();
935                 gotonext();
936         } else if (!strcasecmp(action, "skip")) {
937                 gotonext();
938         } else if (!strcasecmp(action, "ungoto")) {
939                 ungoto();
940         } else if (!strcasecmp(action, "dotgoto")) {
941                 slrp_highest();
942                 smart_goto(bstr("room"));
943         } else if (!strcasecmp(action, "dotskip")) {
944                 smart_goto(bstr("room"));
945         } else if (!strcasecmp(action, "termquit")) {
946                 do_logout();
947         } else if (!strcasecmp(action, "readnew")) {
948                 readloop("readnew");
949         } else if (!strcasecmp(action, "readold")) {
950                 readloop("readold");
951         } else if (!strcasecmp(action, "readfwd")) {
952                 readloop("readfwd");
953         } else if (!strcasecmp(action, "headers")) {
954                 readloop("headers");
955         } else if (!strcasecmp(action, "display_enter")) {
956                 display_enter();
957         } else if (!strcasecmp(action, "post")) {
958                 post_message();
959         } else if (!strcasecmp(action, "delete_msg")) {
960                 delete_msg();
961         } else if (!strcasecmp(action, "confirm_move_msg")) {
962                 confirm_move_msg();
963         } else if (!strcasecmp(action, "move_msg")) {
964                 move_msg();
965         } else if (!strcasecmp(action, "userlist")) {
966                 userlist();
967         } else if (!strcasecmp(action, "showuser")) {
968                 showuser();
969         } else if (!strcasecmp(action, "display_page")) {
970                 display_page();
971         } else if (!strcasecmp(action, "page_user")) {
972                 page_user();
973         } else if (!strcasecmp(action, "chat")) {
974                 do_chat();
975         } else if (!strcasecmp(action, "display_private")) {
976                 display_private("", 0);
977         } else if (!strcasecmp(action, "goto_private")) {
978                 goto_private();
979         } else if (!strcasecmp(action, "zapped_list")) {
980                 zapped_list();
981         } else if (!strcasecmp(action, "display_zap")) {
982                 display_zap();
983         } else if (!strcasecmp(action, "zap")) {
984                 zap();
985         } else if (!strcasecmp(action, "display_entroom")) {
986                 display_entroom();
987         } else if (!strcasecmp(action, "entroom")) {
988                 entroom();
989         } else if (!strcasecmp(action, "display_editroom")) {
990                 display_editroom();
991         } else if (!strcasecmp(action, "netedit")) {
992                 netedit();
993         } else if (!strcasecmp(action, "editroom")) {
994                 editroom();
995         } else if (!strcasecmp(action, "display_whok")) {
996                 display_whok();
997         } else if (!strcasecmp(action, "display_editinfo")) {
998                 display_edit("Room info", "EINF 0", "RINF", "/editinfo");
999         } else if (!strcasecmp(action, "editinfo")) {
1000                 save_edit("Room info", "EINF 1", 1);
1001         } else if (!strcasecmp(action, "display_editbio")) {
1002                 sprintf(buf, "RBIO %s", WC->wc_username);
1003                 display_edit("Your bio", "NOOP", buf, "editbio");
1004         } else if (!strcasecmp(action, "editbio")) {
1005                 save_edit("Your bio", "EBIO", 0);
1006         } else if (!strcasecmp(action, "confirm_delete_room")) {
1007                 confirm_delete_room();
1008         } else if (!strcasecmp(action, "delete_room")) {
1009                 delete_room();
1010         } else if (!strcasecmp(action, "validate")) {
1011                 validate();
1012         } else if (!strcasecmp(action, "display_editpic")) {
1013                 display_graphics_upload("your photo",
1014                                         "UIMG 0|_userpic_",
1015                                         "/editpic");
1016         } else if (!strcasecmp(action, "editpic")) {
1017                 do_graphics_upload("UIMG 1|_userpic_");
1018         } else if (!strcasecmp(action, "display_editroompic")) {
1019                 display_graphics_upload("the graphic for this room",
1020                                         "UIMG 0|_roompic_",
1021                                         "/editroompic");
1022         } else if (!strcasecmp(action, "editroompic")) {
1023                 do_graphics_upload("UIMG 1|_roompic_");
1024         } else if (!strcasecmp(action, "delete_floor")) {
1025                 delete_floor();
1026         } else if (!strcasecmp(action, "rename_floor")) {
1027                 rename_floor();
1028         } else if (!strcasecmp(action, "create_floor")) {
1029                 create_floor();
1030         } else if (!strcasecmp(action, "display_editfloorpic")) {
1031                 sprintf(buf, "UIMG 0|_floorpic_|%s",
1032                         bstr("which_floor"));
1033                 display_graphics_upload("the graphic for this floor",
1034                                         buf,
1035                                         "/editfloorpic");
1036         } else if (!strcasecmp(action, "editfloorpic")) {
1037                 sprintf(buf, "UIMG 1|_floorpic_|%s",
1038                         bstr("which_floor"));
1039                 do_graphics_upload(buf);
1040         } else if (!strcasecmp(action, "display_reg")) {
1041                 display_reg(0);
1042         } else if (!strcasecmp(action, "display_changepw")) {
1043                 display_changepw();
1044         } else if (!strcasecmp(action, "changepw")) {
1045                 changepw();
1046         } else if (!strcasecmp(action, "display_edit_node")) {
1047                 display_edit_node();
1048         } else if (!strcasecmp(action, "edit_node")) {
1049                 edit_node();
1050         } else if (!strcasecmp(action, "display_netconf")) {
1051                 display_netconf();
1052         } else if (!strcasecmp(action, "display_confirm_delete_node")) {
1053                 display_confirm_delete_node();
1054         } else if (!strcasecmp(action, "delete_node")) {
1055                 delete_node();
1056         } else if (!strcasecmp(action, "display_add_node")) {
1057                 display_add_node();
1058         } else if (!strcasecmp(action, "add_node")) {
1059                 add_node();
1060         } else if (!strcasecmp(action, "terminate_session")) {
1061                 slrp_highest();
1062                 terminate_session();
1063         } else if (!strcasecmp(action, "edit_me")) {
1064                 edit_me();
1065         } else if (!strcasecmp(action, "display_siteconfig")) {
1066                 display_siteconfig();
1067         } else if (!strcasecmp(action, "page_popup")) {
1068                 page_popup();
1069         } else if (!strcasecmp(action, "siteconfig")) {
1070                 siteconfig();
1071         } else if (!strcasecmp(action, "display_generic")) {
1072                 display_generic();
1073         } else if (!strcasecmp(action, "do_generic")) {
1074                 do_generic();
1075         } else if (!strcasecmp(action, "display_menubar")) {
1076                 display_menubar(1);
1077         } else if (!strcasecmp(action, "output_mimepart")) {
1078                 output_mimepart();
1079         } else if (!strcasecmp(action, "edit_vcard")) {
1080                 edit_vcard();
1081         } else if (!strcasecmp(action, "submit_vcard")) {
1082                 submit_vcard();
1083         } else if (!strcasecmp(action, "select_user_to_edit")) {
1084                 select_user_to_edit(NULL, NULL);
1085         } else if (!strcasecmp(action, "display_edituser")) {
1086                 display_edituser(NULL);
1087         } else if (!strcasecmp(action, "edituser")) {
1088                 edituser();
1089         } else if (!strcasecmp(action, "create_user")) {
1090                 create_user();
1091         } else if (!strcasecmp(action, "changeview")) {
1092                 change_view();
1093         } else if (!strcasecmp(action, "folders")) {
1094                 folders();
1095         } else if (!strcasecmp(action, "do_stuff_to_msgs")) {
1096                 do_stuff_to_msgs();
1097         } else if (!strcasecmp(action, "change_start_page")) {
1098                 change_start_page();
1099         } else if (!strcasecmp(action, "display_floorconfig")) {
1100                 display_floorconfig(NULL);
1101         } else if (!strcasecmp(action, "toggle_self_service")) {
1102                 toggle_self_service();
1103 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
1104         } else if (!strcasecmp(action, "display_edit_task")) {
1105                 display_edit_task();
1106         } else if (!strcasecmp(action, "save_task")) {
1107                 save_task();
1108         } else if (!strcasecmp(action, "display_edit_event")) {
1109                 display_edit_event();
1110         } else if (!strcasecmp(action, "save_event")) {
1111                 save_event();
1112         } else if (!strcasecmp(action, "respond_to_request")) {
1113                 respond_to_request();
1114         } else if (!strcasecmp(action, "handle_rsvp")) {
1115                 handle_rsvp();
1116 #endif
1117         } else if (!strcasecmp(action, "summary")) {
1118                 summary();
1119         } else if (!strcasecmp(action, "diagnostics")) {
1120                 output_headers(1);
1121
1122                 wprintf("You're in session %d<HR>\n", WC->wc_session);
1123                 wprintf("Command: <BR><PRE>\n");
1124                 escputs(cmd);
1125                 wprintf("</PRE><HR>\n");
1126                 wprintf("Variables: <BR><PRE>\n");
1127                 dump_vars();
1128                 wprintf("</PRE><HR>\n");
1129                 wDumpContent(1);
1130         }
1131         /* When all else fais, display the main menu. */
1132         else {
1133                 display_main_menu();
1134         }
1135
1136 SKIP_ALL_THIS_CRAP:
1137         fflush(stdout);
1138         if (content != NULL) {
1139                 free(content);
1140                 content = NULL;
1141         }
1142         free_urls();
1143         if (WC->upload_length > 0) {
1144                 free(WC->upload);
1145                 WC->upload_length = 0;
1146         }
1147
1148 }