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