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