]> code.citadel.org Git - citadel.git/blob - webcit/webcit.c
* Minor bug fix in registration screen
[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 <stdlib.h>
12 #ifdef HAVE_UNISTD_H
13 #include <unistd.h>
14 #endif
15 #include <stdio.h>
16 #include <ctype.h>
17 #include <string.h>
18 #include <errno.h>
19 #include <sys/stat.h>
20 #include <stdarg.h>
21 #include "webcit.h"
22 #include "child.h"
23 #include "mime_parser.h"
24
25 int wc_session;
26 char wc_username[256];
27 char wc_password[256];
28 char wc_roomname[256];
29 int TransactionCount = 0;
30 int connected = 0;
31 int logged_in = 0;
32 int axlevel;
33 char *ExpressMessages = NULL;
34 int new_mail = 0;
35 int need_vali = 0;
36
37 /* This variable is set to 1 if the room banner and menubar have been
38  * displayed, and we need to close the <TABLE> tags.
39  */
40 int fake_frames = 0;
41
42 struct webcontent *wlist = NULL;
43 struct webcontent *wlast = NULL;
44
45 struct urlcontent *urlstrings = NULL;
46
47 static const char *defaulthost = DEFAULT_HOST;
48 static const char *defaultport = DEFAULT_PORT;
49
50 int upload_length = 0;
51 char *upload;
52
53
54 void unescape_input(char *buf)
55 {
56         int a, b;
57         char hex[3];
58
59         while ((isspace(buf[strlen(buf) - 1])) && (strlen(buf) > 0))
60                 buf[strlen(buf) - 1] = 0;
61
62         for (a = 0; a < strlen(buf); ++a) {
63                 if (buf[a] == '+')
64                         buf[a] = ' ';
65                 if (buf[a] == '%') {
66                         hex[0] = buf[a + 1];
67                         hex[1] = buf[a + 2];
68                         hex[2] = 0;
69                         sscanf(hex, "%02x", &b);
70                         buf[a] = (char) b;
71                         strcpy(&buf[a + 1], &buf[a + 3]);
72                 }
73         }
74
75 }
76
77
78 void addurls(char *url)
79 {
80         char *up, *ptr;
81         char buf[256];
82         int a, b;
83         struct urlcontent *u;
84
85         up = url;
86         while (strlen(up) > 0) {
87
88                 /* locate the = sign */
89                 strncpy(buf, up, 255);
90                 b = (-1);
91                 for (a = 255; a >= 0; --a)
92                         if (buf[a] == '=')
93                                 b = a;
94                 if (b < 0)
95                         return;
96                 buf[b] = 0;
97
98                 u = (struct urlcontent *) malloc(sizeof(struct urlcontent));
99                 u->next = urlstrings;
100                 urlstrings = u;
101                 strcpy(u->url_key, buf);
102
103                 /* now chop that part off */
104                 for (a = 0; a <= b; ++a)
105                         ++up;
106
107                 /* locate the & sign */
108                 ptr = up;
109                 b = strlen(up);
110                 for (a = 0; a < strlen(up); ++a) {
111                         if (!strncmp(ptr, "&", 1)) {
112                                 b = a;
113                                 break;
114                         }
115                         ++ptr;
116                 }
117                 ptr = up;
118                 for (a = 0; a < b; ++a)
119                         ++ptr;
120                 strcpy(ptr, "");
121
122                 u->url_data = malloc(strlen(up) + 1);
123                 strcpy(u->url_data, up);
124                 u->url_data[b] = 0;
125                 unescape_input(u->url_data);
126                 up = ptr;
127                 ++up;
128         }
129 }
130
131 void free_urls(void)
132 {
133         struct urlcontent *u;
134
135         while (urlstrings != NULL) {
136                 free(urlstrings->url_data);
137                 u = urlstrings->next;
138                 free(urlstrings);
139                 urlstrings = u;
140         }
141 }
142
143 /*
144  * Diagnostic function to display the contents of all variables
145  */
146 void dump_vars(void)
147 {
148         struct urlcontent *u;
149
150         for (u = urlstrings; u != NULL; u = u->next) {
151                 wprintf("%38s = %s\n", u->url_key, u->url_data);
152         }
153 }
154
155 char *bstr(char *key)
156 {
157         struct urlcontent *u;
158
159         for (u = urlstrings; u != NULL; u = u->next) {
160                 if (!strcasecmp(u->url_key, key))
161                         return (u->url_data);
162         }
163         return ("");
164 }
165
166
167 void wprintf(const char *format,...)
168 {
169         va_list arg_ptr;
170         struct webcontent *wptr;
171
172         wptr = (struct webcontent *) malloc(sizeof(struct webcontent));
173         wptr->next = NULL;
174         if (wlist == NULL) {
175                 wlist = wptr;
176                 wlast = wptr;
177         } else {
178                 wlast->next = wptr;
179                 wlast = wptr;
180         }
181
182         va_start(arg_ptr, format);
183         vsprintf(wptr->w_data, format, arg_ptr);
184         va_end(arg_ptr);
185 }
186
187 int wContentLength(void)
188 {
189         struct webcontent *wptr;
190         int len = 0;
191
192         for (wptr = wlist; wptr != NULL; wptr = wptr->next) {
193                 len = len + strlen(wptr->w_data);
194         }
195
196         return (len);
197 }
198
199 /*
200  * wDumpContent() takes all the stuff that's been queued up using
201  * the wprintf() and escputs() functions, and sends it out to the browser.
202  * By queuing instead of transmitting as it's generated, we're able to
203  * calculate a Content-length: header.
204  *
205  * print_standard_html_footer should be set to 0 to transmit only, 1 to
206  * append the main menu and closing tags, or 2 to
207  * append the closing tags only.
208  */
209 void wDumpContent(int print_standard_html_footer)
210 {
211         struct webcontent *wptr;
212
213         if (fake_frames) {
214                 wprintf("<CENTER><FONT SIZE=-1>"
215                         "<A HREF=\"/ungoto\">"
216                         "<IMG SRC=\"/static/bleft.gif\" BORDER=0>"
217                         "Ungoto</A>&nbsp;&nbsp;&nbsp;");
218                 wprintf("<A HREF=\"#TheTop\">"
219                         "<IMG SRC=\"/static/bup.gif\" BORDER=0>"
220                         "Top of page</A>&nbsp;&nbsp;&nbsp;");
221                 wprintf("<A HREF=\"/display_enter\">"
222                         "<IMG SRC=\"/static/enter.gif\" BORDER=0>"
223                         "Enter a message</A>&nbsp;&nbsp;&nbsp;");
224                 wprintf("<A HREF=\"/gotonext\">"
225                         "Goto next room"
226                         "<IMG SRC=\"/static/bright.gif\" BORDER=0></A>"
227                         "</FONT>\n"
228                         "</TD></TR></TABLE></TABLE>\n");
229                 fake_frames = 0;
230         }
231
232         if (print_standard_html_footer) {
233                 if (print_standard_html_footer != 2) {
234                         wprintf("<BR>");
235                 }
236                 wprintf("</BODY></HTML>\n");
237         }
238         printf("Content-type: text/html\n");
239         printf("Content-length: %d\n", wContentLength());
240         printf("\n");
241
242         while (wlist != NULL) {
243                 fwrite(wlist->w_data, strlen(wlist->w_data), 1, stdout);
244                 wptr = wlist->next;
245                 free(wlist);
246                 wlist = wptr;
247         }
248         wlast = NULL;
249 }
250
251
252 void escputs1(char *strbuf, int nbsp)
253 {
254         int a;
255
256         for (a = 0; a < strlen(strbuf); ++a) {
257                 if (strbuf[a] == '<')
258                         wprintf("&lt;");
259                 else if (strbuf[a] == '>')
260                         wprintf("&gt;");
261                 else if (strbuf[a] == '&')
262                         wprintf("&amp;");
263                 else if (strbuf[a] == '\"')
264                         wprintf("&quot;");
265                 else if (strbuf[a] == '\'') 
266                         wprintf("&#39;");
267                 else if (strbuf[a] == LB)
268                         wprintf("<");
269                 else if (strbuf[a] == RB)
270                         wprintf(">");
271                 else if (strbuf[a] == QU)
272                         wprintf("\"");
273                 else if ((strbuf[a] == 32) && (nbsp == 1)) {
274                         wprintf("&nbsp;");
275                 } else {
276                         wprintf("%c", strbuf[a]);
277                 }
278         }
279 }
280
281 void escputs(char *strbuf)
282 {
283         escputs1(strbuf, 0);
284 }
285
286
287
288 char *urlesc(char *strbuf)
289 {
290         int a, b, c;
291         char *ec = " #&;`'|*?-~<>^()[]{}$\\";
292         static char outbuf[512];
293
294         strcpy(outbuf, "");
295
296         for (a = 0; a < strlen(strbuf); ++a) {
297                 c = 0;
298                 for (b = 0; b < strlen(ec); ++b) {
299                         if (strbuf[a] == ec[b])
300                                 c = 1;
301                 }
302                 b = strlen(outbuf);
303                 if (c == 1)
304                         sprintf(&outbuf[b], "%%%02x", strbuf[a]);
305                 else
306                         sprintf(&outbuf[b], "%c", strbuf[a]);
307         }
308         return (outbuf);
309 }
310
311 void urlescputs(char *strbuf)
312 {
313         wprintf("%s", urlesc(strbuf));
314 }
315
316
317
318
319 /*
320  * Get a line of text from the webserver (which originally came from the
321  * user's browser), checking for sanity etc.
322  */
323 char *getz(char *buf)
324 {
325         int e = 0;
326
327         bzero(buf, 256);
328
329         /* If fgets() fails, it's because the webserver crashed, so kill off
330          * the session too.
331          */
332         if (fgets(buf, 256, stdin) == NULL) {
333                 e = errno;
334                 fprintf(stderr, "webcit: exit code %d (%s)\n",
335                         e, strerror(e));
336                 fflush(stderr);
337                 exit(e);
338                 
339         /* Otherwise, strip out nonprintables and resume our happy day.
340          */
341         } else {
342                 while ((strlen(buf) > 0) && (!isprint(buf[strlen(buf) - 1])))
343                         buf[strlen(buf) - 1] = 0;
344                 return buf;
345         }
346 }
347
348
349
350 /*
351  * Output all that important stuff that the browser will want to see
352  *
353  * print_standard_html_head values:
354  * 0 = Nothing.  Do not display any leading HTTP or HTML.
355  * 1 = HTTP headers plus the "fake frames" found in most windows.
356  * 2 = HTTP headers required to terminate the session (unset cookies)
357  * 3 = HTTP headers only.
358  */
359 void output_headers(int print_standard_html_head)
360 {
361
362         static char *unset = "; expires=28-May-1971 18:10:00 GMT";
363         char cookie[256];
364
365         printf("Server: %s\n", SERVER);
366         printf("Connection: close\n");
367
368         if (print_standard_html_head > 0) {
369                 printf("Pragma: no-cache\n");
370                 printf("Cache-Control: no-store\n");
371         }
372         stuff_to_cookie(cookie, wc_session, wc_username,
373                         wc_password, wc_roomname);
374         if (print_standard_html_head == 2) {
375                 printf("X-WebCit-Session: close\n");
376                 printf("Set-cookie: webcit=%s\n", unset);
377         } else {
378                 printf("Set-cookie: webcit=%s\n", cookie);
379         }
380
381         if (print_standard_html_head > 0) {
382                 wprintf("<HTML><HEAD><TITLE>");
383                 escputs(serv_info.serv_humannode);
384                 wprintf("</TITLE>\n"
385                         "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n"
386                         "</HEAD>\n");
387                 if (ExpressMessages != NULL) {
388                         wprintf("<SCRIPT language=\"javascript\">\n");
389                         wprintf("function ExpressMessage() {\n");
390                         wprintf(" alert(\"");
391                         escputs(ExpressMessages);
392                         wprintf("\")\n");
393                         wprintf(" }\n </SCRIPT>\n");
394                 }
395
396
397
398                 /* JavaScript key-based navigation would go here if it
399                  * were finished
400                  */
401
402                 wprintf("<BODY ");
403                 if (ExpressMessages != NULL) {
404                         wprintf("onload=\"ExpressMessage()\" ");
405                         free(ExpressMessages);
406                         ExpressMessages = NULL;
407                 }
408                 wprintf("BACKGROUND=\"/image&name=background\" TEXT=\"#000000\" LINK=\"#004400\">\n");
409         
410         
411         if (print_standard_html_head == 1) {
412                 wprintf("<A NAME=\"TheTop\"></A>"
413                         "<TABLE border=0 width=100%>"
414                         "<TR VALIGN=TOP><TD>");
415
416                 display_menubar(0);
417
418                 wprintf("</TD><TD VALIGN=TOP>"
419                         "<TABLE border=0 width=100%><TR VALIGN=TOP>"
420                         "<TD>\n");
421
422                 embed_room_banner(NULL);
423
424                 wprintf("</TD></TR><TR VALIGN=TOP><TD>\n");
425                 
426                 fake_frames = 1;
427                 }
428         }
429 }
430
431
432
433 void ExpressMessageCat(char *buf) {
434         if (ExpressMessages == NULL) {
435                 ExpressMessages = malloc(strlen(buf) + 4);
436                 strcpy(ExpressMessages, "");
437         } else {
438                 ExpressMessages = realloc(ExpressMessages,
439                         (strlen(ExpressMessages) + strlen(buf) + 4));
440         }
441         strcat(ExpressMessages, buf);
442         strcat(ExpressMessages, "\\n");
443 }
444
445
446 void check_for_express_messages()
447 {
448         char buf[256];
449
450         serv_puts("PEXP");
451         serv_gets(buf);
452         if (buf[0] == '1') {
453                 while (serv_gets(buf), strcmp(buf, "000")) {
454                         ExpressMessageCat(buf);
455                 }
456         }
457 }
458
459
460
461
462 void output_static(char *what)
463 {
464         char buf[256];
465         FILE *fp;
466         struct stat statbuf;
467         off_t bytes;
468
469         sprintf(buf, "static/%s", what);
470         fp = fopen(buf, "rb");
471         if (fp == NULL) {
472                 printf("HTTP/1.0 404 %s\n", strerror(errno));
473                 output_headers(0);
474                 printf("Content-Type: text/plain\n");
475                 sprintf(buf, "%s: %s\n", what, strerror(errno));
476                 printf("Content-length: %d\n", strlen(buf));
477                 printf("\n");
478                 fwrite(buf, strlen(buf), 1, stdout);
479         } else {
480                 printf("HTTP/1.0 200 OK\n");
481                 output_headers(0);
482
483                 if (!strncasecmp(&what[strlen(what) - 4], ".gif", 4))
484                         printf("Content-type: image/gif\n");
485                 else if (!strncasecmp(&what[strlen(what) - 4], ".txt", 4))
486                         printf("Content-type: text/plain\n");
487                 else if (!strncasecmp(&what[strlen(what) - 4], ".jpg", 4))
488                         printf("Content-type: image/jpeg\n");
489                 else if (!strncasecmp(&what[strlen(what) - 5], ".html", 5))
490                         printf("Content-type: text/html\n");
491                 else
492                         printf("Content-type: application/octet-stream\n");
493
494                 fstat(fileno(fp), &statbuf);
495                 bytes = statbuf.st_size;
496                 printf("Content-length: %ld\n", (long) bytes);
497                 printf("\n");
498                 while (bytes--) {
499                         putc(getc(fp), stdout);
500                 }
501                 fflush(stdout);
502                 fclose(fp);
503         }
504 }
505
506 void output_image()
507 {
508         char buf[256];
509         char xferbuf[4096];
510         off_t bytes;
511         off_t thisblock;
512         off_t accomplished = 0L;
513
514
515         serv_printf("OIMG %s|%s", bstr("name"), bstr("parm"));
516         serv_gets(buf);
517         if (buf[0] == '2') {
518                 bytes = extract_long(&buf[4], 0);
519                 printf("HTTP/1.0 200 OK\n");
520                 output_headers(0);
521                 printf("Content-type: image/gif\n");
522                 printf("Content-length: %ld\n", (long) bytes);
523                 printf("\n");
524
525                 while (bytes > (off_t) 0) {
526                         thisblock = (off_t) sizeof(xferbuf);
527                         if (thisblock > bytes)
528                                 thisblock = bytes;
529                         serv_printf("READ %ld|%ld", accomplished, thisblock);
530                         serv_gets(buf);
531                         if (buf[0] == '6')
532                                 thisblock = extract_long(&buf[4], 0);
533                         serv_read(xferbuf, (int) thisblock);
534                         fwrite(xferbuf, thisblock, 1, stdout);
535                         bytes = bytes - thisblock;
536                         accomplished = accomplished + thisblock;
537                 }
538                 fflush(stdout);
539                 serv_puts("CLOS");
540                 serv_gets(buf);
541         } else {
542                 printf("HTTP/1.0 404 %s\n", strerror(errno));
543                 output_headers(0);
544                 printf("Content-Type: text/plain\n");
545                 sprintf(buf, "Error retrieving image\n");
546                 printf("Content-length: %d\n", strlen(buf));
547                 printf("\n");
548                 fwrite(buf, strlen(buf), 1, stdout);
549         }
550
551 }
552
553
554 /*
555  * Convenience functions to display a page containing only a string
556  */
557 void convenience_page(char *titlebarcolor, char *titlebarmsg, char *messagetext)
558 {
559         printf("HTTP/1.0 200 OK\n");
560         output_headers(1);
561         wprintf("<TABLE WIDTH=100% BORDER=0 BGCOLOR=%s><TR><TD>", titlebarcolor);
562         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
563         wprintf("<B>%s</B>\n", titlebarmsg);
564         wprintf("</FONT></TD></TR></TABLE><BR>\n");
565         escputs(messagetext);
566
567         wprintf("<HR>\n");
568         embed_main_menu();
569         wDumpContent(1);
570 }
571
572 void display_error(char *errormessage)
573 {
574         convenience_page("770000", "Error", errormessage);
575 }
576
577 void display_success(char *successmessage)
578 {
579         convenience_page("007700", "OK", successmessage);
580 }
581
582
583
584 void extract_action(char *actbuf, char *cmdbuf)
585 {
586         int i;
587
588         strcpy(actbuf, cmdbuf);
589         if (!strncasecmp(actbuf, "GET /", 5))
590                 strcpy(actbuf, &actbuf[5]);
591         if (!strncasecmp(actbuf, "PUT /", 5))
592                 strcpy(actbuf, &actbuf[5]);
593         if (!strncasecmp(actbuf, "POST /", 6))
594                 strcpy(actbuf, &actbuf[6]);
595
596         for (i = 0; i < strlen(actbuf); ++i) {
597                 if (actbuf[i] == ' ') {
598                         actbuf[i] = 0;
599                         i = 0;
600                 }
601                 if (actbuf[i] == '/') {
602                         actbuf[i] = 0;
603                         i = 0;
604                 }
605                 if (actbuf[i] == '?') {
606                         actbuf[i] = 0;
607                         i = 0;
608                 }
609                 if (actbuf[i] == '&') {
610                         actbuf[i] = 0;
611                         i = 0;
612                 }
613         }
614 }
615
616
617 void upload_handler(char *name, char *filename, char *encoding,
618                     void *content, char *cbtype, size_t length)
619 {
620
621         fprintf(stderr, "UPLOAD HANDLER CALLED\n");
622         fprintf(stderr, "    name = %s\n", name);
623         fprintf(stderr, "filename = %s\n", filename);
624         fprintf(stderr, "encoding = %s\n", encoding);
625         fprintf(stderr, "    type = %s\n", cbtype);
626         fprintf(stderr, "  length = %d\n", length);
627
628         if (strlen(name) > 0) {
629                 upload = malloc(length);
630                 if (upload != NULL) {
631                         upload_length = length;
632                         memcpy(upload, content, length);
633                 }
634         }
635 }
636
637
638 void session_loop(char *browser_host, char *user_agent)
639 {
640         char cmd[256];
641         char action[256];
642         char buf[256];
643         int a, b;
644         int ContentLength = 0;
645         char ContentType[512];
646         char *content;
647
648         /* We stuff these with the values coming from the client cookies,
649          * so we can use them to reconnect a timed out session if we have to.
650          */
651         char c_host[256];
652         char c_port[256];
653         char c_username[256];
654         char c_password[256];
655         char c_roomname[256];
656         char cookie[256];
657
658         strcpy(c_host, defaulthost);
659         strcpy(c_port, defaultport);
660         strcpy(c_username, "");
661         strcpy(c_password, "");
662         strcpy(c_roomname, "");
663
664         upload_length = 0;
665         upload = NULL;
666
667         if (getz(cmd) == NULL)
668                 return;
669         extract_action(action, cmd);
670
671         do {
672                 if (getz(buf) == NULL)
673                         return;
674
675                 if (!strncasecmp(buf, "Cookie: webcit=", 15)) {
676                         strcpy(cookie, &buf[15]);
677                         cookie_to_stuff(cookie, NULL,
678                                       c_username, c_password, c_roomname);
679                 }
680                 if (!strncasecmp(buf, "Content-length: ", 16)) {
681                         ContentLength = atoi(&buf[16]);
682                 }
683                 if (!strncasecmp(buf, "Content-type: ", 14)) {
684                         strcpy(ContentType, &buf[14]);
685                 }
686         } while (strlen(buf) > 0);
687
688         ++TransactionCount;
689
690         if (ContentLength > 0) {
691                 content = malloc(ContentLength + 1);
692                 fread(content, ContentLength, 1, stdin);
693
694                 content[ContentLength] = 0;
695
696                 if (!strncasecmp(ContentType,
697                               "application/x-www-form-urlencoded", 33)) {
698                         addurls(content);
699                 } else if (!strncasecmp(ContentType, "multipart", 9)) {
700                         mime_parser(content, ContentLength, ContentType,
701                                     *upload_handler);
702                 }
703         } else {
704                 content = NULL;
705         }
706
707         /* If there are variables in the URL, we must grab them now */
708         for (a = 0; a < strlen(cmd); ++a)
709                 if ((cmd[a] == '?') || (cmd[a] == '&')) {
710                         for (b = a; b < strlen(cmd); ++b)
711                                 if (isspace(cmd[b]))
712                                         cmd[b] = 0;
713                         addurls(&cmd[a + 1]);
714                         cmd[a] = 0;
715                 }
716         /*
717          * If we're not connected to a Citadel server, try to hook up the
718          * connection now.  Preference is given to the host and port specified
719          * by browser cookies, if cookies have been supplied.
720          */
721         if (!connected) {
722                 if (strlen(bstr("host")) > 0)
723                         strcpy(c_host, bstr("host"));
724                 if (strlen(bstr("port")) > 0)
725                         strcpy(c_port, bstr("port"));
726                 serv_sock = connectsock(c_host, c_port, "tcp");
727                 if (serv_sock < 0) {
728                         do_logout();
729                 }
730
731                 connected = 1;
732                 serv_gets(buf); /* get the server welcome message */
733                 get_serv_info(browser_host, user_agent);
734         }
735         check_for_express_messages();
736
737         /*
738          * If we're not logged in, but we have username and password cookies
739          * supplied by the browser, try using them to log in.
740          */
741         if ((!logged_in) && (strlen(c_username) > 0) && (strlen(c_password) > 0)) {
742                 serv_printf("USER %s", c_username);
743                 serv_gets(buf);
744                 if (buf[0] == '3') {
745                         serv_printf("PASS %s", c_password);
746                         serv_gets(buf);
747                         if (buf[0] == '2') {
748                                 become_logged_in(c_username, c_password, buf);
749                         }
750                 }
751         }
752         /*
753          * If we don't have a current room, but a cookie specifying the
754          * current room is supplied, make an effort to go there.
755          */
756         if ((strlen(wc_roomname) == 0) && (strlen(c_roomname) > 0)) {
757                 serv_printf("GOTO %s", c_roomname);
758                 serv_gets(buf);
759                 if (buf[0] == '2') {
760                         strcpy(wc_roomname, c_roomname);
761                 }
762         }
763         if (!strcasecmp(action, "static")) {
764                 strcpy(buf, &cmd[12]);
765                 for (a = 0; a < strlen(buf); ++a)
766                         if (isspace(buf[a]))
767                                 buf[a] = 0;
768                 output_static(buf);
769         } else if (!strcasecmp(action, "image")) {
770                 output_image();
771         } else if ((!logged_in) && (!strcasecmp(action, "login"))) {
772                 do_login();
773         } else if (!logged_in) {
774                 display_login(NULL);
775         }
776         /* Various commands... */
777
778         else if (!strcasecmp(action, "do_welcome")) {
779                 do_welcome();
780         } else if (!strcasecmp(action, "display_main_menu")) {
781                 display_main_menu();
782         } else if (!strcasecmp(action, "advanced")) {
783                 display_advanced_menu();
784         } else if (!strcasecmp(action, "whobbs")) {
785                 whobbs();
786         } else if (!strcasecmp(action, "knrooms")) {
787                 list_all_rooms_by_floor();
788         } else if (!strcasecmp(action, "gotonext")) {
789                 slrp_highest();
790                 gotonext();
791         } else if (!strcasecmp(action, "skip")) {
792                 gotonext();
793         } else if (!strcasecmp(action, "ungoto")) {
794                 ungoto();
795         } else if (!strcasecmp(action, "dotgoto")) {
796                 slrp_highest();
797                 smart_goto(bstr("room"));
798         } else if (!strcasecmp(action, "termquit")) {
799                 do_logout();
800         } else if (!strcasecmp(action, "readnew")) {
801                 readloop("readnew");
802         } else if (!strcasecmp(action, "readold")) {
803                 readloop("readold");
804         } else if (!strcasecmp(action, "readfwd")) {
805                 readloop("readfwd");
806         } else if (!strcasecmp(action, "display_enter")) {
807                 display_enter();
808         } else if (!strcasecmp(action, "post")) {
809                 post_message();
810         } else if (!strcasecmp(action, "confirm_delete_msg")) {
811                 confirm_delete_msg();
812         } else if (!strcasecmp(action, "delete_msg")) {
813                 delete_msg();
814         } else if (!strcasecmp(action, "confirm_move_msg")) {
815                 confirm_move_msg();
816         } else if (!strcasecmp(action, "move_msg")) {
817                 move_msg();
818         } else if (!strcasecmp(action, "userlist")) {
819                 userlist();
820         } else if (!strcasecmp(action, "showuser")) {
821                 showuser();
822         } else if (!strcasecmp(action, "display_page")) {
823                 display_page();
824         } else if (!strcasecmp(action, "page_user")) {
825                 page_user();
826         } else if (!strcasecmp(action, "chat")) {
827                 do_chat();
828         } else if (!strcasecmp(action, "display_private")) {
829                 display_private("", 0);
830         } else if (!strcasecmp(action, "goto_private")) {
831                 goto_private();
832         } else if (!strcasecmp(action, "zapped_list")) {
833                 zapped_list();
834         } else if (!strcasecmp(action, "display_zap")) {
835                 display_zap();
836         } else if (!strcasecmp(action, "zap")) {
837                 zap();
838         } else if (!strcasecmp(action, "display_entroom")) {
839                 display_entroom();
840         } else if (!strcasecmp(action, "entroom")) {
841                 entroom();
842         } else if (!strcasecmp(action, "display_editroom")) {
843                 display_editroom();
844         } else if (!strcasecmp(action, "editroom")) {
845                 editroom();
846         } else if (!strcasecmp(action, "display_editinfo")) {
847                 display_edit("Room info", "EINF 0", "RINF", "/editinfo");
848         } else if (!strcasecmp(action, "editinfo")) {
849                 save_edit("Room info", "EINF 1", 1);
850         } else if (!strcasecmp(action, "display_editbio")) {
851                 sprintf(buf, "RBIO %s", wc_username);
852                 display_edit("Your bio", "NOOP", buf, "editbio");
853         } else if (!strcasecmp(action, "editbio")) {
854                 save_edit("Your bio", "EBIO", 0);
855         } else if (!strcasecmp(action, "confirm_delete_room")) {
856                 confirm_delete_room();
857         } else if (!strcasecmp(action, "delete_room")) {
858                 delete_room();
859         } else if (!strcasecmp(action, "validate")) {
860                 validate();
861         } else if (!strcasecmp(action, "display_editpic")) {
862                 display_graphics_upload("your photo",
863                                         "UIMG 0|_userpic_",
864                                         "/editpic");
865         } else if (!strcasecmp(action, "editpic")) {
866                 do_graphics_upload("UIMG 1|_userpic_");
867         } else if (!strcasecmp(action, "display_editroompic")) {
868                 display_graphics_upload("the graphic for this room",
869                                         "UIMG 0|_roompic_",
870                                         "/editroompic");
871         } else if (!strcasecmp(action, "editroompic")) {
872                 do_graphics_upload("UIMG 1|_roompic_");
873         } else if (!strcasecmp(action, "select_floor_to_edit_pic")) {
874                 select_floor_to_edit_pic();
875         } else if (!strcasecmp(action, "display_editfloorpic")) {
876                 sprintf(buf, "UIMG 0|_floorpic_|%s",
877                         bstr("which_floor"));
878                 display_graphics_upload("the graphic for this floor",
879                                         buf,
880                                         "/editfloorpic");
881         } else if (!strcasecmp(action, "editfloorpic")) {
882                 sprintf(buf, "UIMG 1|_floorpic_|%s",
883                         bstr("which_floor"));
884                 do_graphics_upload(buf);
885         } else if (!strcasecmp(action, "display_reg")) {
886                 display_reg(0);
887         } else if (!strcasecmp(action, "register")) {
888                 register_user();
889         } else if (!strcasecmp(action, "display_changepw")) {
890                 display_changepw();
891         } else if (!strcasecmp(action, "changepw")) {
892                 changepw();
893         } else if (!strcasecmp(action, "display_edit_node")) {
894                 display_edit_node();
895         } else if (!strcasecmp(action, "display_netconf")) {
896                 display_netconf();
897         } else if (!strcasecmp(action, "display_confirm_unshare")) {
898                 display_confirm_unshare();
899         } else if (!strcasecmp(action, "display_confirm_delete_node")) {
900                 display_confirm_delete_node();
901         } else if (!strcasecmp(action, "delete_node")) {
902                 delete_node();
903         } else if (!strcasecmp(action, "unshare")) {
904                 unshare();
905         } else if (!strcasecmp(action, "display_add_node")) {
906                 display_add_node();
907         } else if (!strcasecmp(action, "add_node")) {
908                 add_node();
909         } else if (!strcasecmp(action, "display_share")) {
910                 display_share();
911         } else if (!strcasecmp(action, "share")) {
912                 share();
913         } else if (!strcasecmp(action, "terminate_session")) {
914                 slrp_highest();
915                 terminate_session();
916         } else if (!strcasecmp(action, "edit_me")) {
917                 edit_me();
918         } else if (!strcasecmp(action, "display_siteconfig")) {
919                 display_siteconfig();
920         } else if (!strcasecmp(action, "siteconfig")) {
921                 siteconfig();
922         } else if (!strcasecmp(action, "display_generic")) {
923                 display_generic();
924         } else if (!strcasecmp(action, "do_generic")) {
925                 do_generic();
926         } else if (!strcasecmp(action, "display_menubar")) {
927                 display_menubar(1);
928         } else if (!strcasecmp(action, "diagnostics")) {
929                 printf("HTTP/1.0 200 OK\n");
930                 output_headers(1);
931
932                 wprintf("TransactionCount is %d<BR>\n", TransactionCount);
933                 wprintf("You're in session %d<HR>\n", wc_session);
934                 wprintf("Command: <BR><PRE>\n");
935                 escputs(cmd);
936                 wprintf("</PRE><HR>\n");
937                 wprintf("Variables: <BR><PRE>\n");
938                 dump_vars();
939                 wprintf("</PRE><HR>\n");
940                 wDumpContent(1);
941         }
942         /* When all else fais, display the main menu. */
943         else {
944                 display_main_menu();
945         }
946
947         fflush(stdout);
948         if (content != NULL) {
949                 free(content);
950                 content = NULL;
951         }
952         free_urls();
953         if (upload_length > 0) {
954                 free(upload);
955                 upload_length = 0;
956         }
957 }
958
959 int main(int argc, char *argv[])
960 {
961
962         char browser[256];
963         int bd;
964
965         if (argc != 6) {
966                 fprintf(stderr,
967                         "webcit: usage error (argc must be 6, not %d)\n",
968                         argc);
969                 return 1;
970         }
971
972         wc_session = atoi(argv[1]);
973         defaulthost = argv[2];
974         defaultport = argv[3];
975
976         strcpy(wc_username, "");
977         strcpy(wc_password, "");
978         strcpy(wc_roomname, "");
979
980         /* Clear out serv_info and temporarily set the value of serv_humannode
981          * to a default value, because it'll be used in HTML page titles
982          */
983         memset(&serv_info, 0, sizeof(serv_info));
984         strcpy(serv_info.serv_humannode, "WebCit");
985
986         strcpy(browser, argv[5]);
987         bd = browser_braindamage_check(browser);
988
989         while (1) {
990                 session_loop(argv[4], browser);
991         }
992 }