Auto-generate email address at login if user does not have one , also save it to...
[citadel.git] / citadel / user_ops.c
1 /* 
2  * Server functions which perform operations on user objects.
3  *
4  * Copyright (c) 1987-2018 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, 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 <stdlib.h>
16 #include <unistd.h>
17 #include "sysdep.h"
18 #include <stdio.h>
19 #include <sys/stat.h>
20 #include <libcitadel.h>
21 #include "control.h"
22 #include "support.h"
23 #include "citserver.h"
24 #include "config.h"
25 #include "citadel_ldap.h"
26 #include "ctdl_module.h"
27 #include "user_ops.h"
28 #include "internet_addressing.h"
29
30 /* These pipes are used to talk to the chkpwd daemon, which is forked during startup */
31 int chkpwd_write_pipe[2];
32 int chkpwd_read_pipe[2];
33
34
35 /*
36  * CtdlGetUser()        retrieve named user into supplied buffer.
37  *                      returns 0 on success
38  */
39 int CtdlGetUser(struct ctdluser *usbuf, char *name)
40 {
41         char usernamekey[USERNAME_SIZE];
42         struct cdbdata *cdbus;
43         long len = cutuserkey(name);
44
45         if (usbuf != NULL) {
46                 memset(usbuf, 0, sizeof(struct ctdluser));
47         }
48
49         makeuserkey(usernamekey, name, len);
50         cdbus = cdb_fetch(CDB_USERS, usernamekey, strlen(usernamekey));
51
52         if (cdbus == NULL) {    /* user not found */
53                 return(1);
54         }
55         if (usbuf != NULL) {
56                 memcpy(usbuf, cdbus->ptr, ((cdbus->len > sizeof(struct ctdluser)) ?  sizeof(struct ctdluser) : cdbus->len));
57         }
58         cdb_free(cdbus);
59         return(0);
60 }
61
62
63 int CtdlLockGetCurrentUser(void)
64 {
65         CitContext *CCC = CC;
66         return CtdlGetUser(&CCC->user, CCC->curr_user);
67 }
68
69
70 /*
71  * CtdlGetUserLock()  -  same as getuser() but locks the record
72  */
73 int CtdlGetUserLock(struct ctdluser *usbuf, char *name)
74 {
75         int retcode;
76
77         retcode = CtdlGetUser(usbuf, name);
78         if (retcode == 0) {
79                 begin_critical_section(S_USERS);
80         }
81         return(retcode);
82 }
83
84
85 /*
86  * CtdlPutUser()  -  write user buffer into the correct place on disk
87  */
88 void CtdlPutUser(struct ctdluser *usbuf)
89 {
90         char usernamekey[USERNAME_SIZE];
91
92         makeuserkey(usernamekey, usbuf->fullname, cutuserkey(usbuf->fullname));
93         usbuf->version = REV_LEVEL;
94         cdb_store(CDB_USERS, usernamekey, strlen(usernamekey), usbuf, sizeof(struct ctdluser));
95 }
96
97
98 void CtdlPutCurrentUserLock()
99 {
100         CtdlPutUser(&CC->user);
101 }
102
103
104 /*
105  * CtdlPutUserLock()  -  same as putuser() but locks the record
106  */
107 void CtdlPutUserLock(struct ctdluser *usbuf)
108 {
109         CtdlPutUser(usbuf);
110         end_critical_section(S_USERS);
111 }
112
113
114 /*
115  * rename_user()  -  this is tricky because the user's display name is the database key
116  *
117  * Returns 0 on success or nonzero if there was an error...
118  *
119  */
120 int rename_user(char *oldname, char *newname) {
121         int retcode = RENAMEUSER_OK;
122         struct ctdluser usbuf;
123
124         char oldnamekey[USERNAME_SIZE];
125         char newnamekey[USERNAME_SIZE];
126
127         /* Create the database keys... */
128         makeuserkey(oldnamekey, oldname, cutuserkey(oldname));
129         makeuserkey(newnamekey, newname, cutuserkey(newname));
130
131         /* Lock up and get going */
132         begin_critical_section(S_USERS);
133
134         /* We cannot rename a user who is currently logged in */
135         if (CtdlIsUserLoggedIn(oldname)) {
136                 end_critical_section(S_USERS);
137                 return RENAMEUSER_LOGGED_IN;
138         }
139
140         if (CtdlGetUser(&usbuf, newname) == 0) {
141                 retcode = RENAMEUSER_ALREADY_EXISTS;
142         }
143         else {
144
145                 if (CtdlGetUser(&usbuf, oldname) != 0) {
146                         retcode = RENAMEUSER_NOT_FOUND;
147                 }
148
149                 else {          /* Sanity checks succeeded.  Now rename the user. */
150                         if (usbuf.usernum == 0)
151                         {
152                                 syslog(LOG_DEBUG, "user_ops: can not rename user \"Citadel\".");
153                                 retcode = RENAMEUSER_NOT_FOUND;
154                         } else {
155                                 syslog(LOG_DEBUG, "user_ops: renaming <%s> to <%s>", oldname, newname);
156                                 cdb_delete(CDB_USERS, oldnamekey, strlen(oldnamekey));
157                                 safestrncpy(usbuf.fullname, newname, sizeof usbuf.fullname);
158                                 CtdlPutUser(&usbuf);
159                                 cdb_store(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long), usbuf.fullname, strlen(usbuf.fullname)+1 );
160                                 retcode = RENAMEUSER_OK;
161                         }
162                 }
163         
164         }
165
166         end_critical_section(S_USERS);
167         return(retcode);
168 }
169
170
171 /*
172  * Index-generating function used by Ctdl[Get|Set]Relationship
173  */
174 int GenerateRelationshipIndex(char *IndexBuf,
175                               long RoomID,
176                               long RoomGen,
177                               long UserID)
178 {
179
180         struct {
181                 long iRoomID;
182                 long iRoomGen;
183                 long iUserID;
184         } TheIndex;
185
186         TheIndex.iRoomID = RoomID;
187         TheIndex.iRoomGen = RoomGen;
188         TheIndex.iUserID = UserID;
189
190         memcpy(IndexBuf, &TheIndex, sizeof(TheIndex));
191         return(sizeof(TheIndex));
192 }
193
194
195 /*
196  * Back end for CtdlSetRelationship()
197  */
198 void put_visit(visit *newvisit)
199 {
200         char IndexBuf[32];
201         int IndexLen = 0;
202
203         memset (IndexBuf, 0, sizeof (IndexBuf));
204         /* Generate an index */
205         IndexLen = GenerateRelationshipIndex(IndexBuf, newvisit->v_roomnum, newvisit->v_roomgen, newvisit->v_usernum);
206
207         /* Store the record */
208         cdb_store(CDB_VISIT, IndexBuf, IndexLen,
209                   newvisit, sizeof(visit)
210         );
211 }
212
213
214 /*
215  * Define a relationship between a user and a room
216  */
217 void CtdlSetRelationship(visit *newvisit,
218                          struct ctdluser *rel_user,
219                          struct ctdlroom *rel_room)
220 {
221         /* We don't use these in Citadel because they're implicit by the
222          * index, but they must be present if the database is exported.
223          */
224         newvisit->v_roomnum = rel_room->QRnumber;
225         newvisit->v_roomgen = rel_room->QRgen;
226         newvisit->v_usernum = rel_user->usernum;
227
228         put_visit(newvisit);
229 }
230
231
232 /*
233  * Locate a relationship between a user and a room
234  */
235 void CtdlGetRelationship(visit *vbuf,
236                          struct ctdluser *rel_user,
237                          struct ctdlroom *rel_room)
238 {
239         char IndexBuf[32];
240         int IndexLen;
241         struct cdbdata *cdbvisit;
242
243         /* Generate an index */
244         IndexLen = GenerateRelationshipIndex(IndexBuf, rel_room->QRnumber, rel_room->QRgen, rel_user->usernum);
245
246         /* Clear out the buffer */
247         memset(vbuf, 0, sizeof(visit));
248
249         cdbvisit = cdb_fetch(CDB_VISIT, IndexBuf, IndexLen);
250         if (cdbvisit != NULL) {
251                 memcpy(vbuf, cdbvisit->ptr, ((cdbvisit->len > sizeof(visit)) ?  sizeof(visit) : cdbvisit->len));
252                 cdb_free(cdbvisit);
253         }
254         else {
255                 /* If this is the first time the user has seen this room,
256                  * set the view to be the default for the room.
257                  */
258                 vbuf->v_view = rel_room->QRdefaultview;
259         }
260
261         /* Set v_seen if necessary */
262         if (vbuf->v_seen[0] == 0) {
263                 snprintf(vbuf->v_seen, sizeof vbuf->v_seen, "*:%ld", vbuf->v_lastseen);
264         }
265 }
266
267
268 void CtdlMailboxName(char *buf, size_t n, const struct ctdluser *who, const char *prefix)
269 {
270         snprintf(buf, n, "%010ld.%s", who->usernum, prefix);
271 }
272
273
274 void MailboxName(char *buf, size_t n, const struct ctdluser *who, const char *prefix)
275 {
276         snprintf(buf, n, "%010ld.%s", who->usernum, prefix);
277 }
278
279
280 /*
281  * Check to see if the specified user has Internet mail permission
282  * (returns nonzero if permission is granted)
283  */
284 int CtdlCheckInternetMailPermission(struct ctdluser *who) {
285
286         /* Do not allow twits to send Internet mail */
287         if (who->axlevel <= AxProbU) return(0);
288
289         /* Globally enabled? */
290         if (CtdlGetConfigInt("c_restrict") == 0) return(1);
291
292         /* User flagged ok? */
293         if (who->flags & US_INTERNET) return(2);
294
295         /* Admin level access? */
296         if (who->axlevel >= AxAideU) return(3);
297
298         /* No mail for you! */
299         return(0);
300 }
301
302
303 /*
304  * Convenience function.
305  */
306 int CtdlAccessCheck(int required_level)
307 {
308         if (CC->internal_pgm) return(0);
309         if (required_level >= ac_internal) {
310                 cprintf("%d This is not a user-level command.\n", ERROR + HIGHER_ACCESS_REQUIRED);
311                 return(-1);
312         }
313
314         if ((required_level >= ac_logged_in_or_guest) && (CC->logged_in == 0) && (CtdlGetConfigInt("c_guest_logins") == 0)) {
315                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
316                 return(-1);
317         }
318
319         if ((required_level >= ac_logged_in) && (CC->logged_in == 0)) {
320                 cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
321                 return(-1);
322         }
323
324         if (CC->user.axlevel >= AxAideU) return(0);
325         if (required_level >= ac_aide) {
326                 cprintf("%d This command requires Admin access.\n",
327                         ERROR + HIGHER_ACCESS_REQUIRED);
328                 return(-1);
329         }
330
331         if (is_room_aide()) return(0);
332         if (required_level >= ac_room_aide) {
333                 cprintf("%d This command requires Admin or Room Admin access.\n",
334                         ERROR + HIGHER_ACCESS_REQUIRED);
335                 return(-1);
336         }
337
338         /* shhh ... succeed quietly */
339         return(0);
340 }
341
342
343 /*
344  * Is the user currently logged in an Admin?
345  */
346 int is_aide(void)
347 {
348         if (CC->user.axlevel >= AxAideU)
349                 return(1);
350         else
351                 return(0);
352 }
353
354
355 /*
356  * Is the user currently logged in an Admin *or* the room Admin for this room?
357  */
358 int is_room_aide(void)
359 {
360
361         if (!CC->logged_in) {
362                 return(0);
363         }
364
365         if ((CC->user.axlevel >= AxAideU) || (CC->room.QRroomaide == CC->user.usernum)) {
366                 return(1);
367         } else {
368                 return(0);
369         }
370 }
371
372
373 /*
374  * CtdlGetUserByNumber() -      get user by number
375  *                      returns 0 if user was found
376  *
377  * Note: fetching a user this way requires one additional database operation.
378  */
379 int CtdlGetUserByNumber(struct ctdluser *usbuf, long number)
380 {
381         struct cdbdata *cdbun;
382         int r;
383
384         cdbun = cdb_fetch(CDB_USERSBYNUMBER, &number, sizeof(long));
385         if (cdbun == NULL) {
386                 syslog(LOG_INFO, "user_ops: %ld not found", number);
387                 return(-1);
388         }
389
390         syslog(LOG_INFO, "user_ops: %ld maps to %s", number, cdbun->ptr);
391         r = CtdlGetUser(usbuf, cdbun->ptr);
392         cdb_free(cdbun);
393         return(r);
394 }
395
396
397 /*
398  * Helper function for rebuild_usersbynumber()
399  */
400 void rebuild_ubn_for_user(struct ctdluser *usbuf, void *data) {
401
402         struct ubnlist {
403                 struct ubnlist *next;
404                 char username[USERNAME_SIZE];
405                 long usernum;
406         };
407
408         static struct ubnlist *u = NULL;
409         struct ubnlist *ptr = NULL;
410
411         /* Lazy programming here.  Call this function as a ForEachUser backend
412          * in order to queue up the room names, or call it with a null user
413          * to make it do the processing.
414          */
415         if (usbuf != NULL) {
416                 ptr = (struct ubnlist *) malloc(sizeof (struct ubnlist));
417                 if (ptr == NULL) return;
418
419                 ptr->usernum = usbuf->usernum;
420                 safestrncpy(ptr->username, usbuf->fullname, sizeof ptr->username);
421                 ptr->next = u;
422                 u = ptr;
423                 return;
424         }
425
426         while (u != NULL) {
427                 syslog(LOG_DEBUG, "user_ops: rebuilding usersbynumber index %10ld : %s", u->usernum, u->username);
428                 cdb_store(CDB_USERSBYNUMBER, &u->usernum, sizeof(long), u->username, strlen(u->username)+1);
429                 ptr = u;
430                 u = u->next;
431                 free(ptr);
432         }
433 }
434
435
436 /*
437  * Rebuild the users-by-number index
438  */
439 void rebuild_usersbynumber(void) {
440         cdb_trunc(CDB_USERSBYNUMBER);                   /* delete the old indices */
441         ForEachUser(rebuild_ubn_for_user, NULL);        /* enumerate the users */
442         rebuild_ubn_for_user(NULL, NULL);               /* and index them */
443 }
444
445
446 /*
447  * getuserbyuid()       Get user by system uid (for PAM mode authentication)
448  *                      Returns 0 if user was found
449  *                      This now uses an extauth index.
450  */
451 int getuserbyuid(struct ctdluser *usbuf, uid_t number)
452 {
453         struct cdbdata *cdbextauth;
454         long usernum = 0;
455         StrBuf *claimed_id;
456
457         claimed_id = NewStrBuf();
458         StrBufPrintf(claimed_id, "uid:%d", number);
459         cdbextauth = cdb_fetch(CDB_EXTAUTH, ChrPtr(claimed_id), StrLength(claimed_id));
460         FreeStrBuf(&claimed_id);
461         if (cdbextauth == NULL) {
462                 return(-1);
463         }
464
465         memcpy(&usernum, cdbextauth->ptr, sizeof(long));
466         cdb_free(cdbextauth);
467
468         if (!CtdlGetUserByNumber(usbuf, usernum)) {
469                 return(0);
470         }
471
472         return(-1);
473 }
474
475
476 /*
477  * Back end for cmd_user() and its ilk
478  *
479  * NOTE: "authname" should only be used if we are attempting to use the "master user" feature
480  */
481 int CtdlLoginExistingUser(char *authname, const char *trythisname)
482 {
483         char username[SIZ];
484         int found_user;
485
486         syslog(LOG_DEBUG, "user_ops: CtdlLoginExistingUser(%s, %s)", authname, trythisname);
487
488         if ((CC->logged_in)) {
489                 return login_already_logged_in;
490         }
491
492         if (trythisname == NULL) return login_not_found;
493         
494         if (!strncasecmp(trythisname, "SYS_", 4))
495         {
496                 syslog(LOG_DEBUG, "user_ops: system user \"%s\" is not allowed to log in.", trythisname);
497                 return login_not_found;
498         }
499
500         /* If a "master user" is defined, handle its authentication if specified */
501         CC->is_master = 0;
502         if (    (!IsEmptyStr(CtdlGetConfigStr("c_master_user"))) && 
503                 (!IsEmptyStr(CtdlGetConfigStr("c_master_pass"))) &&
504                 (authname != NULL) &&
505                 (!strcasecmp(authname, CtdlGetConfigStr("c_master_user"))) )
506         {
507                 CC->is_master = 1;
508         }
509
510         /* Continue attempting user validation... */
511         safestrncpy(username, trythisname, sizeof (username));
512         striplt(username);
513
514         if (IsEmptyStr(username)) {
515                 return login_not_found;
516         }
517
518         if (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_HOST) {
519
520                 /* host auth mode */
521
522                 struct passwd pd;
523                 struct passwd *tempPwdPtr;
524                 char pwdbuffer[256];
525         
526                 syslog(LOG_DEBUG, "user_ops: asking host about <%s>", username);
527 #ifdef HAVE_GETPWNAM_R
528 #ifdef SOLARIS_GETPWUID
529                 syslog(LOG_DEBUG, "user_ops: calling getpwnam_r()");
530                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer);
531 #else // SOLARIS_GETPWUID
532                 syslog(LOG_DEBUG, "user_ops: calling getpwnam_r()");
533                 getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer, &tempPwdPtr);
534 #endif // SOLARIS_GETPWUID
535 #else // HAVE_GETPWNAM_R
536                 syslog(LOG_DEBUG, "user_ops: SHOULD NEVER GET HERE!!!");
537                 tempPwdPtr = NULL;
538 #endif // HAVE_GETPWNAM_R
539                 if (tempPwdPtr == NULL) {
540                         syslog(LOG_DEBUG, "user_ops: no such user <%s>", username);
541                         return login_not_found;
542                 }
543         
544                 /* Locate the associated Citadel account.  If not found, make one attempt to create it. */
545                 found_user = getuserbyuid(&CC->user, pd.pw_uid);
546                 if (found_user != 0) {
547                         create_user(username, CREATE_USER_DO_NOT_BECOME_USER, pd.pw_uid);
548                         found_user = getuserbyuid(&CC->user, pd.pw_uid);
549                 }
550                 syslog(LOG_DEBUG, "user_ops: found it: uid=%ld, gecos=%s here: %d", (long)pd.pw_uid, pd.pw_gecos, found_user);
551
552         }
553
554 #ifdef HAVE_LDAP
555         else if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) {
556         
557                 /* LDAP auth mode */
558
559                 uid_t ldap_uid;
560                 char ldap_cn[256];
561                 char ldap_dn[256];
562
563                 found_user = CtdlTryUserLDAP(username, ldap_dn, sizeof ldap_dn, ldap_cn, sizeof ldap_cn, &ldap_uid);
564                 if (found_user != 0) {
565                         return login_not_found;
566                 }
567
568                 found_user = getuserbyuid(&CC->user, ldap_uid);
569                 if (found_user != 0) {
570                         create_user(ldap_cn, CREATE_USER_DO_NOT_BECOME_USER, ldap_uid);
571                         found_user = getuserbyuid(&CC->user, ldap_uid);
572                 }
573
574                 if (found_user == 0) {
575                         if (CC->ldap_dn != NULL) free(CC->ldap_dn);
576                         CC->ldap_dn = strdup(ldap_dn);
577                 }
578
579         }
580 #endif
581
582         else {
583                 /* native auth mode */
584
585                 recptypes *valid = NULL;
586         
587                 /* First, try to log in as if the supplied name is a display name */
588                 found_user = CtdlGetUser(&CC->user, username);
589         
590                 /* If that didn't work, try to log in as if the supplied name * is an e-mail address */
591                 if (found_user != 0) {
592                         valid = validate_recipients(username, NULL, 0);
593                         if (valid != NULL) {
594                                 if (valid->num_local == 1) {
595                                         found_user = CtdlGetUser(&CC->user, valid->recp_local);
596                                 }
597                                 free_recipients(valid);
598                         }
599                 }
600         }
601
602         /* Did we find something? */
603         if (found_user == 0) {
604                 if (((CC->nologin)) && (CC->user.axlevel < AxAideU)) {
605                         return login_too_many_users;
606                 } else {
607                         safestrncpy(CC->curr_user, CC->user.fullname, sizeof CC->curr_user);
608                         return login_ok;
609                 }
610         }
611         return login_not_found;
612 }
613
614
615 /*
616  * session startup code which is common to both cmd_pass() and cmd_newu()
617  */
618 void do_login(void)
619 {
620         CC->logged_in = 1;
621         syslog(LOG_NOTICE, "user_ops: <%s> logged in", CC->curr_user);
622
623         CtdlGetUserLock(&CC->user, CC->curr_user);
624         ++(CC->user.timescalled);
625         CC->previous_login = CC->user.lastcall;
626         time(&CC->user.lastcall);
627
628         /* If this user's name is the name of the system administrator
629          * (as specified in setup), automatically assign access level 6.
630          */
631         if ( (!IsEmptyStr(CtdlGetConfigStr("c_sysadm"))) && (!strcasecmp(CC->user.fullname, CtdlGetConfigStr("c_sysadm"))) ) {
632                 CC->user.axlevel = AxAideU;
633         }
634
635         /* If we're authenticating off the host system, automatically give root the highest level of access. */
636         if (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_HOST) {
637                 if (CC->user.uid == 0) {
638                         CC->user.axlevel = AxAideU;
639                 }
640         }
641         CtdlPutUserLock(&CC->user);
642
643         /* If we are using LDAP authentication, extract the user's email addresses from the directory. */
644 #ifdef HAVE_LDAP
645         if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) {
646                 char new_emailaddrs[512];
647                 if (CtdlGetConfigInt("c_ldap_sync_email_addrs") > 0) {
648                         if (extract_email_addresses_from_ldap(CC->ldap_dn, new_emailaddrs) == 0) {
649                                 CtdlSetEmailAddressesForUser(CC->user.fullname, new_emailaddrs);
650                         }
651                 }
652         }
653 #endif
654
655         /* If the user does not have any email addresses assigned, generate one. */
656         if (IsEmptyStr(CC->user.emailaddrs)) {
657                 char synthetic_email_addr[1024];
658                 snprintf(synthetic_email_addr, sizeof synthetic_email_addr, "ctdl%08lx@%s", CC->user.usernum, CtdlGetConfigStr("c_fqdn"));
659                 CtdlSetEmailAddressesForUser(CC->user.fullname, synthetic_email_addr);
660                 strncpy(CC->user.emailaddrs, synthetic_email_addr, sizeof(CC->user.emailaddrs));
661                 syslog(LOG_DEBUG, "user_ops: auto-generated email address <%s> for <%s>", synthetic_email_addr, CC->user.fullname);
662         }
663
664         /*
665          * Populate cs_inet_email and cs_inet_other_emails with valid email addresses from the user record
666          */
667         strcpy(CC->cs_inet_email, CC->user.emailaddrs);
668         char *firstsep = strstr(CC->cs_inet_email, "|");
669         if (firstsep) {
670                 strcpy(CC->cs_inet_other_emails, firstsep+1);
671                 *firstsep = 0;
672         }
673         else {
674                 CC->cs_inet_other_emails[0] = 0;
675         }
676
677         /* Create any personal rooms required by the system.
678          * (Technically, MAILROOM should be there already, but just in case...)
679          */
680         CtdlCreateRoom(MAILROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
681         CtdlCreateRoom(SENTITEMS, 4, "", 0, 1, 0, VIEW_MAILBOX);
682         CtdlCreateRoom(USERTRASHROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
683         CtdlCreateRoom(USERDRAFTROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
684
685         /* Run any startup routines registered by loadable modules */
686         PerformSessionHooks(EVT_LOGIN);
687
688         /* Enter the lobby */
689         CtdlUserGoto(CtdlGetConfigStr("c_baseroom"), 0, 0, NULL, NULL, NULL, NULL);
690 }
691
692
693 void logged_in_response(void)
694 {
695         cprintf("%d %s|%d|%ld|%ld|%u|%ld|%ld\n",
696                 CIT_OK, CC->user.fullname, CC->user.axlevel,
697                 CC->user.timescalled, CC->user.posted,
698                 CC->user.flags, CC->user.usernum,
699                 CC->previous_login
700         );
701 }
702
703
704 void CtdlUserLogout(void)
705 {
706         CitContext *CCC = MyContext();
707
708         syslog(LOG_DEBUG, "user_ops: CtdlUserLogout() logging out <%s> from session %d", CCC->curr_user, CCC->cs_pid);
709
710         /* Run any hooks registered by modules... */
711         PerformSessionHooks(EVT_LOGOUT);
712         
713         /*
714          * Clear out some session data.  Most likely, the CitContext for this
715          * session is about to get nuked when the session disconnects, but
716          * since it's possible to log in again without reconnecting, we cannot
717          * make that assumption.
718          */
719         strcpy(CCC->fake_username, "");
720         strcpy(CCC->fake_hostname, "");
721         strcpy(CCC->fake_roomname, "");
722         CCC->logged_in = 0;
723
724         /* Check to see if the user was deleted whilst logged in and purge them if necessary */
725         if ((CCC->user.axlevel == AxDeleted) && (CCC->user.usernum)) {
726                 purge_user(CCC->user.fullname);
727         }
728
729         /* Clear out the user record in memory so we don't behave like a ghost */
730         memset(&CCC->user, 0, sizeof(struct ctdluser));
731         CCC->curr_user[0] = 0;
732         CCC->is_master = 0;
733         CCC->cs_inet_email[0] = 0;
734         CCC->cs_inet_other_emails[0] = 0;
735         CCC->cs_inet_fn[0] = 0;
736         CCC->fake_username[0] = 0;
737         CCC->fake_hostname[0] = 0;
738         CCC->fake_roomname[0] = 0;
739
740         /* Free any output buffers */
741         unbuffer_output();
742 }
743
744
745 /*
746  * Validate a password on the host unix system by talking to the chkpwd daemon
747  */
748 static int validpw(uid_t uid, const char *pass)
749 {
750         char buf[256];
751         int rv = 0;
752
753         if (IsEmptyStr(pass)) {
754                 syslog(LOG_DEBUG, "user_ops: refusing to chkpwd for uid=%d with empty password", uid);
755                 return 0;
756         }
757
758         syslog(LOG_DEBUG, "user_ops: validating password for uid=%d using chkpwd...", uid);
759
760         begin_critical_section(S_CHKPWD);
761         rv = write(chkpwd_write_pipe[1], &uid, sizeof(uid_t));
762         if (rv == -1) {
763                 syslog(LOG_ERR, "user_ops: communication with chkpwd broken: %m");
764                 end_critical_section(S_CHKPWD);
765                 return 0;
766         }
767         rv = write(chkpwd_write_pipe[1], pass, 256);
768         if (rv == -1) {
769                 syslog(LOG_ERR, "user_ops: communication with chkpwd broken: %m");
770                 end_critical_section(S_CHKPWD);
771                 return 0;
772         }
773         rv = read(chkpwd_read_pipe[0], buf, 4);
774         if (rv == -1) {
775                 syslog(LOG_ERR, "user_ops: ommunication with chkpwd broken: %m");
776                 end_critical_section(S_CHKPWD);
777                 return 0;
778         }
779         end_critical_section(S_CHKPWD);
780
781         if (!strncmp(buf, "PASS", 4)) {
782                 syslog(LOG_DEBUG, "user_ops: chkpwd pass");
783                 return(1);
784         }
785
786         syslog(LOG_DEBUG, "user_ops: chkpwd fail");
787         return 0;
788 }
789
790
791 /* 
792  * Start up the chkpwd daemon so validpw() has something to talk to
793  */
794 void start_chkpwd_daemon(void) {
795         pid_t chkpwd_pid;
796         struct stat filestats;
797         int i;
798
799         syslog(LOG_DEBUG, "user_ops: starting chkpwd daemon for host authentication mode");
800
801         if ((stat(file_chkpwd, &filestats)==-1) || (filestats.st_size==0)) {
802                 syslog(LOG_ERR, "user_ops: %s: %m", file_chkpwd);
803                 abort();
804         }
805         if (pipe(chkpwd_write_pipe) != 0) {
806                 syslog(LOG_ERR, "user_ops: unable to create pipe for chkpwd daemon: %m");
807                 abort();
808         }
809         if (pipe(chkpwd_read_pipe) != 0) {
810                 syslog(LOG_ERR, "user_ops: unable to create pipe for chkpwd daemon: %m");
811                 abort();
812         }
813
814         chkpwd_pid = fork();
815         if (chkpwd_pid < 0) {
816                 syslog(LOG_ERR, "user_ops: unable to fork chkpwd daemon: %m");
817                 abort();
818         }
819         if (chkpwd_pid == 0) {
820                 dup2(chkpwd_write_pipe[0], 0);
821                 dup2(chkpwd_read_pipe[1], 1);
822                 for (i=2; i<256; ++i) close(i);
823                 execl(file_chkpwd, file_chkpwd, NULL);
824                 syslog(LOG_ERR, "user_ops: unable to exec chkpwd daemon: %m");
825                 abort();
826                 exit(errno);
827         }
828 }
829
830
831 int CtdlTryPassword(const char *password, long len)
832 {
833         int code;
834         CitContext *CCC = CC;
835
836         if ((CCC->logged_in)) {
837                 syslog(LOG_WARNING, "user_ops: CtdlTryPassword: already logged in");
838                 return pass_already_logged_in;
839         }
840         if (!strcmp(CCC->curr_user, NLI)) {
841                 syslog(LOG_WARNING, "user_ops: CtdlTryPassword: no user selected");
842                 return pass_no_user;
843         }
844         if (CtdlGetUser(&CCC->user, CCC->curr_user)) {
845                 syslog(LOG_ERR, "user_ops: CtdlTryPassword: internal error");
846                 return pass_internal_error;
847         }
848         if (password == NULL) {
849                 syslog(LOG_INFO, "user_ops: CtdlTryPassword: NULL password string supplied");
850                 return pass_wrong_password;
851         }
852
853         if (CCC->is_master) {
854                 code = strcmp(password, CtdlGetConfigStr("c_master_pass"));
855         }
856
857         else if (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_HOST) {
858
859                 /* host auth mode */
860
861                 if (validpw(CCC->user.uid, password)) {
862                         code = 0;
863
864                         /*
865                          * sooper-seekrit hack: populate the password field in the
866                          * citadel database with the password that the user typed,
867                          * if it's correct.  This allows most sites to convert from
868                          * host auth to native auth if they want to.  If you think
869                          * this is a security hazard, comment it out.
870                          */
871
872                         CtdlGetUserLock(&CCC->user, CCC->curr_user);
873                         safestrncpy(CCC->user.password, password, sizeof CCC->user.password);
874                         CtdlPutUserLock(&CCC->user);
875
876                         /*
877                          * (sooper-seekrit hack ends here)
878                          */
879                 }
880                 else {
881                         code = (-1);
882                 }
883         }
884
885 #ifdef HAVE_LDAP
886         else if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) {
887
888                 /* LDAP auth mode */
889
890                 if ((CCC->ldap_dn) && (!CtdlTryPasswordLDAP(CCC->ldap_dn, password))) {
891                         code = 0;
892                 }
893                 else {
894                         code = (-1);
895                 }
896         }
897 #endif
898
899         else {
900
901                 /* native auth mode */
902                 char *pw;
903
904                 pw = (char*) malloc(len + 1);
905                 memcpy(pw, password, len + 1);
906                 strproc(pw);
907                 strproc(CCC->user.password);
908                 code = strcasecmp(CCC->user.password, pw);
909                 if (code != 0) {
910                         strproc(pw);
911                         strproc(CCC->user.password);
912                         code = strcasecmp(CCC->user.password, pw);
913                 }
914                 free (pw);
915         }
916
917         if (!code) {
918                 do_login();
919                 return pass_ok;
920         }
921         else {
922                 syslog(LOG_WARNING, "user_ops: bad password specified for <%s> Service <%s> Port <%ld> Remote <%s / %s>",
923                         CCC->curr_user,
924                         CCC->ServiceName,
925                         CCC->tcp_port,
926                         CCC->cs_host,
927                         CCC->cs_addr
928                 );
929                 return pass_wrong_password;
930         }
931 }
932
933
934 /*
935  * Delete a user record *and* all of its related resources.
936  */
937 int purge_user(char pname[])
938 {
939         struct ctdluser usbuf;
940         char usernamekey[USERNAME_SIZE];
941
942         makeuserkey(usernamekey, pname, cutuserkey(pname));
943
944         /* If the name is empty we can't find them in the DB any way so just return */
945         if (IsEmptyStr(pname))
946                 return(ERROR + NO_SUCH_USER);
947
948         if (CtdlGetUser(&usbuf, pname) != 0) {
949                 syslog(LOG_ERR, "user_ops: cannot purge user <%s> - not found", pname);
950                 return(ERROR + NO_SUCH_USER);
951         }
952
953         /* Don't delete a user who is currently logged in.  Instead, just
954          * set the access level to 0, and let the account get swept up
955          * during the next purge.
956          */
957         if (CtdlIsUserLoggedInByNum(usbuf.usernum)) {
958                 syslog(LOG_WARNING, "user_ops: <%s> is logged in; not deleting", pname);
959                 usbuf.axlevel = AxDeleted;
960                 CtdlPutUser(&usbuf);
961                 return(1);
962         }
963
964         syslog(LOG_NOTICE, "user_ops: deleting <%s>", pname);
965
966         /* Perform any purge functions registered by server extensions */
967         PerformUserHooks(&usbuf, EVT_PURGEUSER);
968
969         /* delete any existing user/room relationships */
970         cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
971
972         /* delete the users-by-number index record */
973         cdb_delete(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long));
974
975         /* delete the userlog entry */
976         cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
977
978         return(0);
979 }
980
981
982 int internal_create_user(char *username, struct ctdluser *usbuf, uid_t uid)
983 {
984         if (!CtdlGetUser(usbuf, username)) {
985                 return(ERROR + ALREADY_EXISTS);
986         }
987
988         /* Go ahead and initialize a new user record */
989         memset(usbuf, 0, sizeof(struct ctdluser));
990         safestrncpy(usbuf->fullname, username, sizeof usbuf->fullname);
991         strcpy(usbuf->password, "");
992         usbuf->uid = uid;
993
994         /* These are the default flags on new accounts */
995         usbuf->flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
996
997         usbuf->timescalled = 0;
998         usbuf->posted = 0;
999         usbuf->axlevel = CtdlGetConfigInt("c_initax");
1000         usbuf->lastcall = time(NULL);
1001
1002         /* fetch a new user number */
1003         usbuf->usernum = get_new_user_number();
1004
1005         /* add user to the database */
1006         CtdlPutUser(usbuf);
1007         cdb_store(CDB_USERSBYNUMBER, &usbuf->usernum, sizeof(long), usbuf->fullname, strlen(usbuf->fullname)+1);
1008
1009         /* If non-native auth, index by uid */
1010         if ((usbuf->uid > 0) && (usbuf->uid != NATIVE_AUTH_UID)) {
1011                 StrBuf *claimed_id = NewStrBuf();
1012                 StrBufPrintf(claimed_id, "uid:%d", usbuf->uid);
1013                 attach_extauth(usbuf, claimed_id);
1014                 FreeStrBuf(&claimed_id);
1015         }
1016
1017         return(0);
1018 }
1019
1020
1021 /*
1022  * create_user()  -  back end processing to create a new user
1023  *
1024  * Set 'newusername' to the desired account name.
1025  * Set 'become_user' to CREATE_USER_BECOME_USER if this is self-service account creation and we want to
1026  *                   actually log in as the user we just created, otherwise set it to CREATE_USER_DO_NOT_BECOME_USER
1027  * Set 'uid' to some uid_t value to associate the account with an external auth user, or (-1) for native auth
1028  */
1029 int create_user(char *username, int become_user, uid_t uid)
1030 {
1031         struct ctdluser usbuf;
1032         struct ctdlroom qrbuf;
1033         char mailboxname[ROOMNAMELEN];
1034         char buf[SIZ];
1035         int retval;
1036
1037         strproc(username);
1038         if ((retval = internal_create_user(username, &usbuf, uid)) != 0) {
1039                 return retval;
1040         }
1041
1042         /*
1043          * Give the user a private mailbox and a configuration room.
1044          * Make the latter an invisible system room.
1045          */
1046         CtdlMailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
1047         CtdlCreateRoom(mailboxname, 5, "", 0, 1, 1, VIEW_MAILBOX);
1048
1049         CtdlMailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
1050         CtdlCreateRoom(mailboxname, 5, "", 0, 1, 1, VIEW_BBS);
1051         if (CtdlGetRoomLock(&qrbuf, mailboxname) == 0) {
1052                 qrbuf.QRflags2 |= QR2_SYSTEM;
1053                 CtdlPutRoomLock(&qrbuf);
1054         }
1055
1056         /* Perform any create functions registered by server extensions */
1057         PerformUserHooks(&usbuf, EVT_NEWUSER);
1058
1059         /* Everything below this line can be bypassed if administratively
1060          * creating a user, instead of doing self-service account creation
1061          */
1062
1063         if (become_user == CREATE_USER_BECOME_USER) {
1064                 /* Now become the user we just created */
1065                 memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
1066                 safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
1067                 do_login();
1068         
1069                 /* Check to make sure we're still who we think we are */
1070                 if (CtdlGetUser(&CC->user, CC->curr_user)) {
1071                         return(ERROR + INTERNAL_ERROR);
1072                 }
1073         }
1074         
1075         snprintf(buf, SIZ, 
1076                 "New user account <%s> has been created, from host %s [%s].\n",
1077                 username,
1078                 CC->cs_host,
1079                 CC->cs_addr
1080         );
1081         CtdlAideMessage(buf, "User Creation Notice");
1082         syslog(LOG_NOTICE, "user_ops: <%s> created", username);
1083         return(0);
1084 }
1085
1086
1087 /*
1088  * set password - back end api code
1089  */
1090 void CtdlSetPassword(char *new_pw)
1091 {
1092         CtdlGetUserLock(&CC->user, CC->curr_user);
1093         safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
1094         CtdlPutUserLock(&CC->user);
1095         syslog(LOG_INFO, "user_ops: password changed for <%s>", CC->curr_user);
1096         PerformSessionHooks(EVT_SETPASS);
1097 }
1098
1099
1100 /*
1101  * API function for cmd_invt_kick() and anything else that needs to
1102  * invite or kick out a user to/from a room.
1103  * 
1104  * Set iuser to the name of the user, and op to 1=invite or 0=kick
1105  */
1106 int CtdlInvtKick(char *iuser, int op) {
1107         struct ctdluser USscratch;
1108         visit vbuf;
1109         char bbb[SIZ];
1110
1111         if (CtdlGetUser(&USscratch, iuser) != 0) {
1112                 return(1);
1113         }
1114
1115         CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
1116         if (op == 1) {
1117                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1118                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1119         }
1120         if (op == 0) {
1121                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1122                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1123         }
1124         CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
1125
1126         /* post a message in Aide> saying what we just did */
1127         snprintf(bbb, sizeof bbb, "%s has been %s \"%s\" by %s.\n",
1128                 iuser,
1129                 ((op == 1) ? "invited to" : "kicked out of"),
1130                 CC->room.QRname,
1131                 (CC->logged_in ? CC->user.fullname : "an administrator")
1132         );
1133         CtdlAideMessage(bbb,"User Admin Message");
1134         return(0);
1135 }
1136
1137
1138 /*
1139  * Forget (Zap) the current room (API call)
1140  * Returns 0 on success
1141  */
1142 int CtdlForgetThisRoom(void) {
1143         visit vbuf;
1144
1145         /* On some systems, Admins are not allowed to forget rooms */
1146         if (is_aide() && (CtdlGetConfigInt("c_aide_zap") == 0)
1147            && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
1148                 return(1);
1149         }
1150
1151         CtdlGetUserLock(&CC->user, CC->curr_user);
1152         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1153
1154         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1155         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1156
1157         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1158         CtdlPutUserLock(&CC->user);
1159
1160         /* Return to the Lobby, so we don't end up in an undefined room */
1161         CtdlUserGoto(CtdlGetConfigStr("c_baseroom"), 0, 0, NULL, NULL, NULL, NULL);
1162         return(0);
1163 }
1164
1165
1166 /* 
1167  *  Traverse the user file...
1168  */
1169 void ForEachUser(void (*CallBack) (struct ctdluser * EachUser, void *out_data),
1170                  void *in_data)
1171 {
1172         struct ctdluser usbuf;
1173         struct cdbdata *cdbus;
1174
1175         cdb_rewind(CDB_USERS);
1176
1177         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1178                 memset(&usbuf, 0, sizeof(struct ctdluser));
1179                 memcpy(&usbuf, cdbus->ptr,
1180                        ((cdbus->len > sizeof(struct ctdluser)) ?
1181                         sizeof(struct ctdluser) : cdbus->len));
1182                 cdb_free(cdbus);
1183                 (*CallBack) (&usbuf, in_data);
1184         }
1185 }
1186
1187
1188 /*
1189  * List one user (this works with cmd_list)
1190  */
1191 void ListThisUser(struct ctdluser *usbuf, void *data)
1192 {
1193         char *searchstring;
1194
1195         searchstring = (char *)data;
1196         if (bmstrcasestr(usbuf->fullname, searchstring) == NULL) {
1197                 return;
1198         }
1199
1200         if (usbuf->axlevel > AxDeleted) {
1201                 if ((CC->user.axlevel >= AxAideU)
1202                     || ((usbuf->flags & US_UNLISTED) == 0)
1203                     || ((CC->internal_pgm))) {
1204                         cprintf("%s|%d|%ld|%ld|%ld|%ld||\n",
1205                                 usbuf->fullname,
1206                                 usbuf->axlevel,
1207                                 usbuf->usernum,
1208                                 (long)usbuf->lastcall,
1209                                 usbuf->timescalled,
1210                                 usbuf->posted);
1211                 }
1212         }
1213 }
1214
1215
1216 /*
1217  * Count the number of new mail messages the user has
1218  */
1219 int NewMailCount()
1220 {
1221         int num_newmsgs = 0;
1222         num_newmsgs = CC->newmail;
1223         CC->newmail = 0;
1224         return(num_newmsgs);
1225 }
1226
1227
1228 /*
1229  * Count the number of new mail messages the user has
1230  */
1231 int InitialMailCheck()
1232 {
1233         int num_newmsgs = 0;
1234         int a;
1235         char mailboxname[ROOMNAMELEN];
1236         struct ctdlroom mailbox;
1237         visit vbuf;
1238         struct cdbdata *cdbfr;
1239         long *msglist = NULL;
1240         int num_msgs = 0;
1241
1242         CtdlMailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
1243         if (CtdlGetRoom(&mailbox, mailboxname) != 0)
1244                 return(0);
1245         CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
1246
1247         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1248
1249         if (cdbfr != NULL) {
1250                 msglist = malloc(cdbfr->len);
1251                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1252                 num_msgs = cdbfr->len / sizeof(long);
1253                 cdb_free(cdbfr);
1254         }
1255         if (num_msgs > 0)
1256                 for (a = 0; a < num_msgs; ++a) {
1257                         if (msglist[a] > 0L) {
1258                                 if (msglist[a] > vbuf.v_lastseen) {
1259                                         ++num_newmsgs;
1260                                 }
1261                         }
1262                 }
1263         if (msglist != NULL)
1264                 free(msglist);
1265
1266         return(num_newmsgs);
1267 }