login popout is working, along with non edge case openID login
[citadel.git] / webcit / auth.c
1 /*
2  * These functions handle authentication of users to a Citadel server.
3  *
4  * Copyright (c) 1996-2011 by the citadel.org team
5  *
6  * This program is open source software.  You can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 3 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  */
20
21 #include "webcit.h"
22 #include "webserver.h"
23 #include <ctype.h>
24
25 extern uint32_t hashlittle( const void *key, size_t length, uint32_t initval);
26
27 void display_reg(int during_login);
28
29 /*
30  * Access level definitions.  This is initialized from a function rather than a
31  * static array so that the strings may be localized.
32  */
33 char *axdefs[7]; 
34
35 void initialize_axdefs(void) {
36
37         /* an erased user */
38         axdefs[0] = _("Deleted");       
39
40         /* a new user */
41         axdefs[1] = _("New User");      
42
43         /* a trouble maker */
44         axdefs[2] = _("Problem User");  
45
46         /* user with normal privileges */
47         axdefs[3] = _("Local User");    
48
49         /* a user that may access network resources */
50         axdefs[4] = _("Network User");  
51
52         /* a moderator */
53         axdefs[5] = _("Preferred User");
54
55         /* chief */
56         axdefs[6] = _("Aide");          
57 }
58
59
60
61 /* 
62  * Display the login screen
63  * mesg = the error message if last attempt failed.
64  */
65 void display_login(void)
66 {
67         begin_burst();
68         output_headers(1, 0, 0, 0, 1, 0);
69         do_template("login", NULL);
70         end_burst();
71 }
72
73
74
75
76
77 /* Initialize the session
78  *
79  * This function needs to get called whenever the session changes from
80  * not-logged-in to logged-in, either by an explicit login by the user or
81  * by a timed-out session automatically re-establishing with a little help
82  * from the browser cookie.  Either way, we need to load access controls and
83  * preferences from the server.
84  *
85  * user                 the username
86  * pass                 his password
87  * serv_response        The parameters returned from a Citadel USER or NEWU command
88  */
89 void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_response)
90 {
91         wcsession *WCC = WC;
92         StrBuf *Buf;
93         StrBuf *FloorDiv;
94
95         WCC->logged_in = 1;
96
97         if (WCC->wc_fullname == NULL)
98                 WCC->wc_fullname = NewStrBufPlain(NULL, StrLength(serv_response));
99         StrBufExtract_token(WCC->wc_fullname, serv_response, 0, '|');
100         StrBufCutLeft(WCC->wc_fullname, 4 );
101         
102         if (WCC->wc_username == NULL)
103                 WCC->wc_username = NewStrBufDup(user);
104         else {
105                 FlushStrBuf(WCC->wc_username);
106                 StrBufAppendBuf(WCC->wc_username, user, 0);
107         }
108
109         if (WCC->wc_password == NULL)
110                 WCC->wc_password = NewStrBufDup(pass);
111         else {
112                 FlushStrBuf(WCC->wc_password);
113                 StrBufAppendBuf(WCC->wc_password, pass, 0);
114         }
115
116         WCC->axlevel = StrBufExtract_int(serv_response, 1, '|');
117         if (WCC->axlevel >= 6) { /* TODO: make this a define, else it might trick us later */
118                 WCC->is_aide = 1;
119         }
120
121         load_preferences();
122
123         Buf = NewStrBuf();
124         serv_puts("CHEK");
125         StrBuf_ServGetln(Buf);
126         if (GetServerStatus(Buf, NULL) == 2) {
127                 const char *pch;
128
129                 pch = ChrPtr(Buf) + 4;
130                 /*WCC->new_mail  =*/ StrBufExtractNext_long(Buf, &pch, '|');
131                 WCC->need_regi = StrBufExtractNext_long(Buf, &pch, '|');
132                 WCC->need_vali = StrBufExtractNext_long(Buf, &pch, '|');
133                 if (WCC->cs_inet_email == NULL)
134                         WCC->cs_inet_email  = NewStrBuf();
135                 StrBufExtract_NextToken(WCC->cs_inet_email, Buf, &pch, '|');
136         }
137         get_preference("floordiv_expanded", &FloorDiv);
138         WCC->floordiv_expanded = FloorDiv;
139         FreeStrBuf(&Buf);
140 }
141
142
143 /* 
144  * Perform authentication using a user name and password
145  */
146 void do_login(void)
147 {
148         wcsession *WCC = WC;
149         StrBuf *Buf;
150         long ret, rc;
151
152         if (havebstr("language")) {
153                 set_selected_language(bstr("language"));
154                 go_selected_language();
155         }
156
157         if (havebstr("exit_action")) {
158                 do_logout();
159                 return;
160         }
161         Buf = NewStrBuf();
162         if (havebstr("login_action")) {
163                 serv_printf("USER %s", bstr("name"));
164                 StrBuf_ServGetln(Buf);
165                 rc = GetServerStatus(Buf, &ret);
166                 StrBufCutLeft(Buf, 4);
167                 switch (rc) {
168                 case 3:
169                         serv_printf("PASS %s", bstr("pass"));
170                         StrBuf_ServGetln(Buf);
171                         if (GetServerStatus(Buf, NULL) == 2) {
172                                 become_logged_in(sbstr("name"), sbstr("pass"), Buf);
173                         } else {
174                                 StrBufCutLeft(Buf, 4);
175                                 AppendImportantMessage(SKEY(Buf));
176                                 display_login();
177                                 FreeStrBuf(&Buf);
178                                 return;
179                         }
180                         break;
181                 case 5:
182                         if (ret == 541)
183                         {
184                                 AppendImportantMessage(SKEY(Buf));
185                                 display_main_menu();
186                                 return;
187                         }
188                 default:
189                         AppendImportantMessage(SKEY(Buf));
190                         display_login();
191                         FreeStrBuf(&Buf);
192                         return;
193                 }
194         }
195         if (havebstr("newuser_action")) {
196                 if (!havebstr("pass")) {
197                         AppendImportantMessage(_("Blank passwords are not allowed."), -1);
198                         display_login();
199                         FreeStrBuf(&Buf);
200                         return;
201                 }
202                 serv_printf("NEWU %s", bstr("name"));
203                 StrBuf_ServGetln(Buf);
204                 if (GetServerStatus(Buf, NULL) == 2) {
205                         become_logged_in(sbstr("name"), sbstr("pass"), Buf);
206                         serv_printf("SETP %s", bstr("pass"));
207                         StrBuf_ServGetln(Buf); /* Don't care? */
208                 } else {
209                         StrBufCutLeft(Buf, 4);
210                         AppendImportantMessage(SKEY(Buf));
211                         display_login();
212                         FreeStrBuf(&Buf);
213                         return;
214                 }
215         }
216         if (WCC->logged_in) {
217                 if (WCC->need_regi) {
218                         display_reg(1);
219                 } else if (WCC->need_vali) {
220                         validate();
221                 } else {
222                         do_welcome();
223                 }
224         } else {
225                 AppendImportantMessage(_("Your password was not accepted."), -1);
226                 display_login();
227         }
228         FreeStrBuf(&Buf);
229 }
230
231
232
233 /* 
234  * modal/ajax version of 'login' (username and password)
235  */
236 void ajax_login_username_password(void) {
237         StrBuf *Buf = NewStrBuf();
238
239         serv_printf("USER %s", bstr("name"));
240         StrBuf_ServGetln(Buf);
241         if (GetServerStatus(Buf, NULL) == 3) {
242                 serv_printf("PASS %s", bstr("pass"));
243                 StrBuf_ServGetln(Buf);
244                 if (GetServerStatus(Buf, NULL) == 2) {
245                         become_logged_in(sbstr("name"), sbstr("pass"), Buf);
246                 }
247         }
248
249         /* The client is expecting to read back a citadel protocol response */
250         wc_printf("%s", ChrPtr(Buf));
251         FreeStrBuf(&Buf);
252 }
253
254
255
256 /* 
257  * Try to create an account manually after an OpenID was verified
258  */
259 void openid_manual_create(void)
260 {
261         StrBuf *Buf;
262
263         if (havebstr("exit_action")) {
264                 do_logout();
265                 return;
266         }
267
268         if (havebstr("newuser_action")) {
269                 Buf = NewStrBuf();
270                 serv_printf("OIDC %s", bstr("name"));
271                 StrBuf_ServGetln(Buf);
272                 if (GetServerStatus(Buf, NULL) == 2) {
273                         StrBuf *gpass;
274
275                         gpass = NewStrBuf();
276                         serv_puts("SETP GENERATE_RANDOM_PASSWORD");
277                         StrBuf_ServGetln(gpass);
278                         StrBufCutLeft(gpass, 4);
279                         become_logged_in(sbstr("name"), gpass, Buf);
280                         FreeStrBuf(&gpass);
281                 }
282                 FreeStrBuf(&Buf);
283         }
284
285         if (WC->logged_in) {
286                 if (WC->need_regi) {
287                         display_reg(1);
288                 } else if (WC->need_vali) {
289                         validate();
290                 } else {
291                         do_welcome();
292                 }
293         } else {
294                 const StrBuf *Buf;
295
296                 putbstr("__claimed_id", NewStrBufDup(sbstr("openid_url")));
297                 Buf = sbstr("name");
298                 if (StrLength(Buf) > 0)
299                         putbstr("__username", NewStrBufDup(Buf));
300                 begin_burst();
301                 do_template("openid_manual_create", NULL);
302                 end_burst();
303         }
304
305 }
306
307
308 /* 
309  * Perform authentication using OpenID
310  * assemble the checkid_setup request and then redirect to the user's identity provider
311  */
312 void do_openid_login(void)
313 {
314         char buf[4096];
315
316         snprintf(buf, sizeof buf,
317                 "OIDS %s|%s/finalize_openid_login|%s",
318                 bstr("openid_url"),
319                 ChrPtr(site_prefix),
320                 ChrPtr(site_prefix)
321         );
322
323         serv_puts(buf);
324         serv_getln(buf, sizeof buf);
325         if (buf[0] == '2') {
326                 syslog(LOG_DEBUG, "OpenID server contacted; redirecting to %s\n", &buf[4]);
327                 http_redirect(&buf[4]);
328                 return;
329         }
330
331         convenience_page("770000", _("Error"), &buf[4]);
332 }
333
334
335 /* 
336  * Complete the authentication using OpenID
337  * This function handles the positive or negative assertion from the user's Identity Provider
338  */
339 void finalize_openid_login(void)
340 {
341         StrBuf *Buf;
342         wcsession *WCC = WC;
343         int already_logged_in = (WCC->logged_in) ;
344         int linecount = 0;
345         StrBuf *result = NULL;
346         StrBuf *username = NULL;
347         StrBuf *password = NULL;
348         StrBuf *logged_in_response = NULL;
349         StrBuf *claimed_id = NULL;
350
351         if (havebstr("openid.mode")) {
352                 if (!strcasecmp(bstr("openid.mode"), "id_res")) {
353                         Buf = NewStrBuf();
354                         serv_puts("OIDF");
355                         StrBuf_ServGetln(Buf);
356                         if (GetServerStatus(Buf, NULL) == 8) {
357                                 urlcontent *u;
358                                 void *U;
359                                 long HKLen;
360                                 const char *HKey;
361                                 HashPos *Cursor;
362                                 
363                                 Cursor = GetNewHashPos (WCC->Hdr->urlstrings, 0);
364                                 while (GetNextHashPos(WCC->Hdr->urlstrings, Cursor, &HKLen, &HKey, &U)) {
365                                         u = (urlcontent*) U;
366                                         if (!strncasecmp(u->url_key, "openid.", 7)) {
367                                                 serv_printf("%s|%s", &u->url_key[7], ChrPtr(u->url_data));
368                                         }
369                                 }
370
371                                 serv_puts("000");
372
373                                 linecount = 0;
374                                 while (StrBuf_ServGetln(Buf), strcmp(ChrPtr(Buf), "000")) 
375                                 {
376                                         if (linecount == 0) result = NewStrBufDup(Buf);
377                                         if (!strcasecmp(ChrPtr(result), "authenticate")) {
378                                                 if (linecount == 1) {
379                                                         username = NewStrBufDup(Buf);
380                                                 }
381                                                 else if (linecount == 2) {
382                                                         password = NewStrBufDup(Buf);
383                                                 }
384                                                 else if (linecount == 3) {
385                                                         logged_in_response = NewStrBufDup(Buf);
386                                                 }
387                                         }
388                                         else if (!strcasecmp(ChrPtr(result), "verify_only")) {
389                                                 if (linecount == 1) {
390                                                         claimed_id = NewStrBufDup(Buf);
391                                                 }
392                                                 if (linecount == 2) {
393                                                         username = NewStrBufDup(Buf);
394                                                 }
395                                         }
396                                         ++linecount;
397                                 }
398                         }
399                         FreeStrBuf(&Buf);
400                 }
401         }
402
403         /* If we were already logged in, this was an attempt to associate an OpenID account 
404         FIXME put this back in
405         if (already_logged_in) {
406                 display_openids();
407                 FreeStrBuf(&result);
408                 FreeStrBuf(&username);
409                 FreeStrBuf(&password);
410                 FreeStrBuf(&claimed_id);
411                 FreeStrBuf(&logged_in_response);
412                 return;
413         }
414         */
415
416         /* If this operation logged us in, either by connecting with an existing account or by
417          * auto-creating one using Simple Registration Extension, we're already on our way.
418          */
419         if (!strcasecmp(ChrPtr(result), "authenticate")) {
420                 become_logged_in(username, password, logged_in_response);
421         }
422
423         /* The specified OpenID was verified but the desired user name was either not specified via SRI
424          * or conflicts with an existing user.  Either way the user will need to specify a new name.
425          */
426
427 /*
428         else if (!strcasecmp(ChrPtr(result), "verify_only")) {
429                 putbstr("__claimed_id", claimed_id);
430                 claimed_id = NULL;
431                 if (StrLength(username) > 0) {
432                         putbstr("__username", username);
433                         username = NULL;
434                 }
435                 begin_burst();
436                 do_template("openid_manual_create", NULL);
437                 end_burst();
438         }
439 */
440
441
442
443         /* Did we manage to log in?  If so, continue with the normal flow... */
444         if (WC->logged_in) {
445
446                 begin_burst();
447                 output_headers(1, 0, 0, 0, 1, 0);
448                 do_template("authpopup_finished", NULL);
449                 end_burst();
450
451                 /* FIXME make all this crap work again
452                 if (WC->need_regi) {
453                         display_reg(1);
454                 } else {
455                         do_welcome();
456                 }
457                 */
458
459         } else {
460                 /* maybe do something prettier here? */
461                 convenience_page("770000", _("Error"), _("Error") );
462         }
463
464         FreeStrBuf(&result);
465         FreeStrBuf(&username);
466         FreeStrBuf(&password);
467         FreeStrBuf(&claimed_id);
468         FreeStrBuf(&logged_in_response);
469 }
470
471
472 /*
473  * Display a welcome screen to the user.
474  *
475  * If this is the first time login, and the web based setup is enabled, 
476  * lead the user through the setup routines
477  */
478 void do_welcome(void)
479 {
480         StrBuf *Buf;
481 #ifdef XXX_NOT_FINISHED_YET_XXX
482         FILE *fp;
483         int i;
484
485         /**
486          * See if we have to run the first-time setup wizard
487          */
488         if (WC->is_aide) {
489                 if (!setup_wizard) {
490                         int len;
491                         sprintf(wizard_filename, "setupwiz.%s.%s",
492                                 ctdlhost, ctdlport);
493                         len = strlen(wizard_filename);
494                         for (i=0; i<len; ++i) {
495                                 if (    (wizard_filename[i]==' ')
496                                         || (wizard_filename[i] == '/')
497                                 ) {
498                                         wizard_filename[i] = '_';
499                                 }
500                         }
501         
502                         fp = fopen(wizard_filename, "r");
503                         if (fp != NULL) {
504                                 fgets(buf, sizeof buf, fp);
505                                 buf[strlen(buf)-1] = 0;
506                                 fclose(fp);
507                                 if (atoi(buf) == serv_info.serv_rev_level) {
508                                         setup_wizard = 1; /**< already run */
509                                 }
510                         }
511                 }
512
513                 if (!setup_wizard) {
514                         http_redirect("setup_wizard");
515                 }
516         }
517 #endif
518
519         /*
520          * Go to the user's preferred start page
521          */
522         if (!get_preference("startpage", &Buf)) {
523                 Buf = NewStrBuf ();
524                 StrBufPrintf(Buf, "dotskip?room=_BASEROOM_");
525                 set_preference("startpage", Buf, 1);
526         }
527         if (ChrPtr(Buf)[0] == '/') {
528                 StrBufCutLeft(Buf, 1);
529         }
530         if (StrLength(Buf) == 0) {
531                 StrBufAppendBufPlain(Buf, "dotgoto?room=_BASEROOM_", -1, 0);
532         }
533         syslog(9, "Redirecting to user's start page: %s\n", ChrPtr(Buf));
534         http_redirect(ChrPtr(Buf));
535 }
536
537
538 /*
539  * Disconnect from the Citadel server, and end this WebCit session
540  */
541 void end_webcit_session(void) {
542         
543         serv_puts("QUIT");
544         WC->killthis = 1;
545         /* close() of citadel socket will be done by do_housekeeping() */
546 }
547
548 /* 
549  * execute the logout
550  */
551 void do_logout(void)
552 {
553         wcsession *WCC = WC;
554         char buf[SIZ];
555
556         FlushStrBuf(WCC->wc_username);
557         FlushStrBuf(WCC->wc_password);
558         FlushStrBuf(WCC->wc_fullname);
559
560         serv_puts("LOUT");
561         serv_getln(buf, sizeof buf);
562         WCC->logged_in = 0;
563
564         if (WC->serv_info->serv_supports_guest) {
565                 display_default_landing_page();
566                 return;
567         }
568
569         FlushStrBuf(WCC->CurRoom.name);
570
571         /* Calling output_headers() this way causes the cookies to be un-set */
572         output_headers(1, 1, 0, 1, 0, 0);
573
574         wc_printf("<div id=\"logout_screen\">");
575         wc_printf("<div class=\"box\">");
576         wc_printf("<div class=\"boxlabel\">");
577         wc_printf(_("Log off"));
578         wc_printf("</div><div class=\"boxcontent\">");
579         serv_puts("MESG goodbye");
580         serv_getln(buf, sizeof buf);
581
582         if (WCC->serv_sock >= 0) {
583                 if (buf[0] == '1') {
584                         fmout("'CENTER'");
585                 } else {
586                         wc_printf("Goodbye\n");
587                 }
588         }
589         else {
590                 wc_printf(_("This program was unable to connect or stay "
591                         "connected to the Citadel server.  Please report "
592                         "this problem to your system administrator.")
593                 );
594                 wc_printf("<a href=\"http://www.citadel.org/doku.php/"
595                         "faq:mastering_your_os:net#netstat\">%s</a>",
596                         _("Read More..."));
597         }
598
599         wc_printf("<hr /><div class=\"buttons\"> "
600                 "<span class=\"button_link\"><a href=\".\">");
601         wc_printf(_("Log in again"));
602         wc_printf("</a></span>");
603         wc_printf("</div></div></div>\n");
604         wDumpContent(2);
605         end_webcit_session();
606 }
607
608
609 /*
610  * validate new users
611  */
612 void validate(void)
613 {
614         char cmd[SIZ];
615         char user[SIZ];
616         char buf[SIZ];
617         int a;
618
619         output_headers(1, 1, 2, 0, 0, 0);
620         wc_printf("<div id=\"banner\">\n");
621         wc_printf("<h1>");
622         wc_printf(_("Validate new users"));
623         wc_printf("</h1>");
624         wc_printf("</div>\n");
625
626         wc_printf("<div id=\"content\" class=\"service\">\n");
627
628         /* If the user just submitted a validation, process it... */
629         safestrncpy(buf, bstr("user"), sizeof buf);
630         if (!IsEmptyStr(buf)) {
631                 if (havebstr("axlevel")) {
632                         serv_printf("VALI %s|%s", buf, bstr("axlevel"));
633                         serv_getln(buf, sizeof buf);
634                         if (buf[0] != '2') {
635                                 wc_printf("<b>%s</b><br>\n", &buf[4]);
636                         }
637                 }
638         }
639
640         /* Now see if any more users require validation. */
641         serv_puts("GNUR");
642         serv_getln(buf, sizeof buf);
643         if (buf[0] == '2') {
644                 wc_printf("<b>");
645                 wc_printf(_("No users require validation at this time."));
646                 wc_printf("</b><br>\n");
647                 wDumpContent(1);
648                 return;
649         }
650         if (buf[0] != '3') {
651                 wc_printf("<b>%s</b><br>\n", &buf[4]);
652                 wDumpContent(1);
653                 return;
654         }
655
656         wc_printf("<table class=\"auth_validate\"><tr><td>\n");
657         wc_printf("<div id=\"validate\">");
658
659         safestrncpy(user, &buf[4], sizeof user);
660         serv_printf("GREG %s", user);
661         serv_getln(cmd, sizeof cmd);
662         if (cmd[0] == '1') {
663                 a = 0;
664                 do {
665                         serv_getln(buf, sizeof buf);
666                         ++a;
667                         if (a == 1)
668                                 wc_printf("#%s<br><H1>%s</H1>",
669                                         buf, &cmd[4]);
670                         if (a == 2) {
671                                 char *pch;
672                                 int haveChar = 0;
673                                 int haveNum = 0;
674                                 int haveOther = 0;
675                                 int count = 0;
676                                 pch = buf;
677                                 while (!IsEmptyStr(pch))
678                                 {
679                                         if (isdigit(*pch))
680                                                 haveNum = 1;
681                                         else if (isalpha(*pch))
682                                                 haveChar = 1;
683                                         else
684                                                 haveOther = 1;
685                                         pch ++;
686                                 }
687                                 count = pch - buf;
688                                 if (count > 7)
689                                         count = 0;
690                                 switch (count){
691                                 case 0:
692                                         pch = _("very weak");
693                                         break;
694                                 case 1:
695                                         pch = _("weak");
696                                         break;
697                                 case 2:
698                                         pch = _("ok");
699                                         break;
700                                 case 3:
701                                 default:
702                                         pch = _("strong");
703                                 }
704
705                                 wc_printf("PW: %s<br>\n", pch);
706                         }
707                         if (a == 3)
708                                 wc_printf("%s<br>\n", buf);
709                         if (a == 4)
710                                 wc_printf("%s<br>\n", buf);
711                         if (a == 5)
712                                 wc_printf("%s, ", buf);
713                         if (a == 6)
714                                 wc_printf("%s ", buf);
715                         if (a == 7)
716                                 wc_printf("%s<br>\n", buf);
717                         if (a == 8)
718                                 wc_printf("%s<br>\n", buf);
719                         if (a == 9)
720                                 wc_printf(_("Current access level: %d (%s)\n"),
721                                         atoi(buf), axdefs[atoi(buf)]);
722                 } while (strcmp(buf, "000"));
723         } else {
724                 wc_printf("<H1>%s</H1>%s<br>\n", user, &cmd[4]);
725         }
726
727         wc_printf("<hr />");
728         wc_printf(_("Select access level for this user:"));
729         wc_printf("<br>\n");
730         for (a = 0; a <= 6; ++a) {
731                 wc_printf("<a href=\"validate?nonce=%d?user=", WC->nonce);
732                 urlescputs(user);
733                 wc_printf("&axlevel=%d\">%s</A>&nbsp;&nbsp;&nbsp;\n",
734                         a, axdefs[a]);
735         }
736         wc_printf("<br>\n");
737
738         wc_printf("</div>\n");
739         wc_printf("</td></tr></table>\n");
740         wDumpContent(1);
741 }
742
743
744
745 /*
746  * Display form for registration.
747  *
748  * (Set during_login to 1 if this registration is being performed during
749  * new user login and will require chaining to the proper screen.)
750  */
751 void display_reg(int during_login)
752 {
753         folder Room;
754         StrBuf *Buf;
755         message_summary *VCMsg = NULL;
756         wc_mime_attachment *VCAtt = NULL;
757         long vcard_msgnum;
758
759         Buf = NewStrBuf();
760         memset(&Room, 0, sizeof(folder));
761         if (goto_config_room(Buf, &Room) != 0) {
762                 syslog(9, "display_reg() exiting because goto_config_room() failed\n");
763                 if (during_login) {
764                         do_welcome();
765                 }
766                 else {
767                         display_main_menu();
768                 }
769                 FreeStrBuf(&Buf);
770                 FlushFolder(&Room);             
771                 return;
772         }
773         FlushFolder(&Room);
774
775         FreeStrBuf(&Buf);
776         vcard_msgnum = locate_user_vcard_in_this_room(&VCMsg, &VCAtt);
777         if (vcard_msgnum < 0L) {
778                 syslog(9, "display_reg() exiting because locate_user_vcard_in_this_room() failed\n");
779                 if (during_login) {
780                         do_welcome();
781                 }
782                 else {
783                         display_main_menu();
784                 }
785                 return;
786         }
787
788         if (during_login) {
789                 do_edit_vcard(vcard_msgnum, "1", VCMsg, VCAtt, "do_welcome", USERCONFIGROOM);
790         }
791         else {
792                 StrBuf *ReturnTo;
793                 ReturnTo = NewStrBufPlain(HKEY("display_main_menu?go="));
794                 StrBufAppendBuf(ReturnTo, WC->CurRoom.name, 0);
795                 do_edit_vcard(vcard_msgnum, "1", VCMsg, VCAtt, ChrPtr(ReturnTo), USERCONFIGROOM);
796                 FreeStrBuf(&ReturnTo);
797         }
798
799         /* FIXME - don't we have to free VCMsg and VCAtt ?? */
800 }
801
802
803
804
805 /*
806  * display form for changing your password
807  */
808 void display_changepw(void)
809 {
810         WCTemplputParams SubTP;
811         char buf[SIZ];
812         StrBuf *Buf;
813         output_headers(1, 1, 1, 0, 0, 0);
814
815         Buf = NewStrBufPlain(_("Change your password"), -1);
816         memset(&SubTP, 0, sizeof(WCTemplputParams));
817         SubTP.Filter.ContextType = CTX_STRBUF;
818         SubTP.Context = Buf;
819         DoTemplate(HKEY("beginbox"), NULL, &SubTP);
820
821         FreeStrBuf(&Buf);
822
823         if (!IsEmptyStr(WC->ImportantMessage)) {
824                 wc_printf("<span class=\"errormsg\">"
825                         "%s</span><br>\n", WC->ImportantMessage);
826                 safestrncpy(WC->ImportantMessage, "", sizeof WC->ImportantMessage);
827         }
828
829         serv_puts("MESG changepw");
830         serv_getln(buf, sizeof buf);
831         if (buf[0] == '1') {
832                 fmout("CENTER");
833         }
834
835         wc_printf("<form name=\"changepwform\" action=\"changepw\" method=\"post\">\n");
836         wc_printf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
837         wc_printf("<table class=\"altern\" ");
838         wc_printf("<tr class=\"even\"><td>");
839         wc_printf(_("Enter new password:"));
840         wc_printf("</td><td>");
841         wc_printf("<input type=\"password\" name=\"newpass1\" value=\"\" maxlength=\"20\"></td></tr>\n");
842         wc_printf("<tr class=\"odd\"><td>");
843         wc_printf(_("Enter it again to confirm:"));
844         wc_printf("</td><td>");
845         wc_printf("<input type=\"password\" name=\"newpass2\" value=\"\" maxlength=\"20\"></td></tr>\n");
846         wc_printf("</table>\n");
847
848         wc_printf("<div class=\"buttons\">\n");
849         wc_printf("<input type=\"submit\" name=\"change_action\" value=\"%s\">", _("Change password"));
850         wc_printf("&nbsp;");
851         wc_printf("<input type=\"submit\" name=\"cancel_action\" value=\"%s\">\n", _("Cancel"));
852         wc_printf("</div>\n");
853         wc_printf("</form>\n");
854
855         do_template("endbox", NULL);
856         wDumpContent(1);
857 }
858
859 /*
860  * change password
861  * if passwords match, propagate it to citserver.
862  */
863 void changepw(void)
864 {
865         char buf[SIZ];
866         char newpass1[32], newpass2[32];
867
868         if (!havebstr("change_action")) {
869                 safestrncpy(WC->ImportantMessage, 
870                         _("Cancelled.  Password was not changed."),
871                         sizeof WC->ImportantMessage);
872                 display_main_menu();
873                 return;
874         }
875
876         safestrncpy(newpass1, bstr("newpass1"), sizeof newpass1);
877         safestrncpy(newpass2, bstr("newpass2"), sizeof newpass2);
878
879         if (strcasecmp(newpass1, newpass2)) {
880                 safestrncpy(WC->ImportantMessage, 
881                         _("They don't match.  Password was not changed."),
882                         sizeof WC->ImportantMessage);
883                 display_changepw();
884                 return;
885         }
886
887         if (IsEmptyStr(newpass1)) {
888                 safestrncpy(WC->ImportantMessage, 
889                         _("Blank passwords are not allowed."),
890                         sizeof WC->ImportantMessage);
891                 display_changepw();
892                 return;
893         }
894
895         serv_printf("SETP %s", newpass1);
896         serv_getln(buf, sizeof buf);
897         sprintf(WC->ImportantMessage, "%s", &buf[4]);
898         if (buf[0] == '2') {
899                 if (WC->wc_password == NULL)
900                         WC->wc_password = NewStrBufPlain(buf, -1);
901                 else {
902                         FlushStrBuf(WC->wc_password);
903                         StrBufAppendBufPlain(WC->wc_password,  buf, -1, 0);
904                 }
905                 display_main_menu();
906         }
907         else {
908                 display_changepw();
909         }
910 }
911
912 int ConditionalHaveAccessCreateRoom(StrBuf *Target, WCTemplputParams *TP)
913 {
914         StrBuf *Buf;    
915
916         Buf = NewStrBuf();
917         serv_puts("CRE8 0");
918         StrBuf_ServGetln(Buf);
919
920         if (GetServerStatus(Buf, NULL) == 2) {
921                 StrBufCutLeft(Buf, 4);
922                 AppendImportantMessage(SKEY(Buf));
923                 FreeStrBuf(&Buf);
924                 return 0;
925         }
926         FreeStrBuf(&Buf);
927         return 1;
928 }
929
930 int ConditionalAide(StrBuf *Target, WCTemplputParams *TP)
931 {
932         wcsession *WCC = WC;
933         return (WCC != NULL)? (WC->is_aide == 0) : 0;
934 }
935
936 int ConditionalIsLoggedIn(StrBuf *Target, WCTemplputParams *TP) 
937 {
938         wcsession *WCC = WC;
939         return (WCC != NULL)? (WCC->logged_in == 0) : 0;
940
941 }
942
943
944
945 void _display_reg(void) {
946         display_reg(0);
947 }
948
949
950 void Header_HandleAuth(StrBuf *Line, ParsedHttpHdrs *hdr)
951 {
952         if (hdr->HR.got_auth == NO_AUTH) /* don't override cookie auth... */
953         {
954                 if (strncasecmp(ChrPtr(Line), "Basic", 5) == 0) {
955                         StrBufCutLeft(Line, 6);
956                         StrBufDecodeBase64(Line);
957                         hdr->HR.plainauth = Line;
958                         hdr->HR.got_auth = AUTH_BASIC;
959                 }
960                 else 
961                         syslog(1, "Authentication scheme not supported! [%s]\n", ChrPtr(Line));
962         }
963 }
964
965 void CheckAuthBasic(ParsedHttpHdrs *hdr)
966 {
967 /*
968   todo: enable this if we can have other sessions than authenticated ones.
969         if (hdr->DontNeedAuth)
970                 return;
971 */
972         StrBufAppendBufPlain(hdr->HR.plainauth, HKEY(":"), 0);
973         StrBufAppendBuf(hdr->HR.plainauth, hdr->HR.user_agent, 0);
974         hdr->HR.SessionKey = hashlittle(SKEY(hdr->HR.plainauth), 89479832);
975 /*
976         syslog(1, "CheckAuthBasic: calculated sessionkey %ld\n", 
977                 hdr->HR.SessionKey);
978 */
979 }
980
981 void GetAuthBasic(ParsedHttpHdrs *hdr)
982 {
983         const char *Pos = NULL;
984         if (hdr->c_username == NULL)
985                 hdr->c_username = NewStrBufPlain(HKEY(DEFAULT_HTTPAUTH_USER));
986         if (hdr->c_password == NULL)
987                 hdr->c_password = NewStrBufPlain(HKEY(DEFAULT_HTTPAUTH_PASS));
988         StrBufExtract_NextToken(hdr->c_username, hdr->HR.plainauth, &Pos, ':');
989         StrBufExtract_NextToken(hdr->c_password, hdr->HR.plainauth, &Pos, ':');
990 }
991
992 void Header_HandleCookie(StrBuf *Line, ParsedHttpHdrs *hdr)
993 {
994         const char *pch;
995 /*
996   todo: enable this if we can have other sessions than authenticated ones.
997         if (hdr->DontNeedAuth)
998                 return;
999 */
1000         pch = strstr(ChrPtr(Line), "webcit=");
1001         if (pch == NULL) {
1002                 return;
1003         }
1004
1005         hdr->HR.RawCookie = Line;
1006         StrBufCutLeft(hdr->HR.RawCookie, (pch - ChrPtr(hdr->HR.RawCookie)) + 7);
1007         StrBufDecodeHex(hdr->HR.RawCookie);
1008
1009         cookie_to_stuff(Line, &hdr->HR.desired_session,
1010                         hdr->c_username,
1011                         hdr->c_password,
1012                         hdr->c_roomname,
1013                         hdr->c_language
1014         );
1015         hdr->HR.got_auth = AUTH_COOKIE;
1016 }
1017
1018 void 
1019 HttpNewModule_AUTH
1020 (ParsedHttpHdrs *httpreq)
1021 {
1022         httpreq->c_username = NewStrBufPlain(HKEY(DEFAULT_HTTPAUTH_USER));
1023         httpreq->c_password = NewStrBufPlain(HKEY(DEFAULT_HTTPAUTH_PASS));
1024         httpreq->c_roomname = NewStrBuf();
1025         httpreq->c_language = NewStrBuf();
1026 }
1027 void 
1028 HttpDetachModule_AUTH
1029 (ParsedHttpHdrs *httpreq)
1030 {
1031         FLUSHStrBuf(httpreq->c_username);
1032         FLUSHStrBuf(httpreq->c_password);
1033         FLUSHStrBuf(httpreq->c_roomname);
1034         FLUSHStrBuf(httpreq->c_language);
1035 }
1036
1037 void 
1038 HttpDestroyModule_AUTH
1039 (ParsedHttpHdrs *httpreq)
1040 {
1041         FreeStrBuf(&httpreq->c_username);
1042         FreeStrBuf(&httpreq->c_password);
1043         FreeStrBuf(&httpreq->c_roomname);
1044         FreeStrBuf(&httpreq->c_language);
1045 }
1046
1047 void 
1048 InitModule_AUTH
1049 (void)
1050 {
1051         initialize_axdefs();
1052         RegisterHeaderHandler(HKEY("COOKIE"), Header_HandleCookie);
1053         RegisterHeaderHandler(HKEY("AUTHORIZATION"), Header_HandleAuth);
1054
1055         /* no url pattern at all? Show login. */
1056         WebcitAddUrlHandler(HKEY(""), "", 0, do_welcome, ANONYMOUS|COOKIEUNNEEDED);
1057
1058         /* some of these will be removed soon */
1059         WebcitAddUrlHandler(HKEY("do_welcome"), "", 0, do_welcome, ANONYMOUS|COOKIEUNNEEDED);
1060         WebcitAddUrlHandler(HKEY("login"), "", 0, do_login, ANONYMOUS|COOKIEUNNEEDED);
1061         WebcitAddUrlHandler(HKEY("openid_login"), "", 0, do_openid_login, ANONYMOUS);
1062         WebcitAddUrlHandler(HKEY("finalize_openid_login"), "", 0, finalize_openid_login, ANONYMOUS);
1063         WebcitAddUrlHandler(HKEY("openid_manual_create"), "", 0, openid_manual_create, ANONYMOUS);
1064         WebcitAddUrlHandler(HKEY("validate"), "", 0, validate, 0);
1065         WebcitAddUrlHandler(HKEY("do_welcome"), "", 0, do_welcome, 0);
1066         WebcitAddUrlHandler(HKEY("display_reg"), "", 0, _display_reg, 0);
1067         WebcitAddUrlHandler(HKEY("display_changepw"), "", 0, display_changepw, 0);
1068         WebcitAddUrlHandler(HKEY("changepw"), "", 0, changepw, 0);
1069         WebcitAddUrlHandler(HKEY("termquit"), "", 0, do_logout, 0);
1070         WebcitAddUrlHandler(HKEY("do_logout"), "", 0, do_logout, ANONYMOUS|COOKIEUNNEEDED|FORCE_SESSIONCLOSE);
1071         WebcitAddUrlHandler(HKEY("ajax_login_username_password"), "", 0,
1072                 ajax_login_username_password, AJAX|ANONYMOUS);
1073
1074         RegisterConditional(HKEY("COND:AIDE"), 2, ConditionalAide, CTX_NONE);
1075         RegisterConditional(HKEY("COND:LOGGEDIN"), 2, ConditionalIsLoggedIn, CTX_NONE);
1076         RegisterConditional(HKEY("COND:MAY_CREATE_ROOM"), 2,  ConditionalHaveAccessCreateRoom, CTX_NONE);
1077         return;
1078 }
1079
1080
1081 void 
1082 SessionDestroyModule_AUTH
1083 (wcsession *sess)
1084 {
1085         FreeStrBuf(&sess->wc_username);
1086         FreeStrBuf(&sess->wc_fullname);
1087         FreeStrBuf(&sess->wc_password);
1088         FreeStrBuf(&sess->httpauth_pass);
1089         FreeStrBuf(&sess->cs_inet_email);
1090 }