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