removed some debugs
[citadel.git] / citadel / 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         // Did we find something?
570         if (found_user == 0) {
571                 if (((CC->nologin)) && (CC->user.axlevel < AxAideU)) {
572                         return login_too_many_users;
573                 }
574                 else {
575                         safestrncpy(CC->curr_user, CC->user.fullname, sizeof CC->curr_user);
576                         return login_ok;
577                 }
578         }
579         return login_not_found;
580 }
581
582
583 // session startup code which is common to both cmd_pass() and cmd_newu()
584 void do_login(void) {
585         CC->logged_in = 1;
586         syslog(LOG_NOTICE, "user_ops: <%s> logged in", CC->curr_user);
587
588         CtdlGetUserLock(&CC->user, CC->curr_user);
589         ++(CC->user.timescalled);
590         CC->previous_login = CC->user.lastcall;
591         time(&CC->user.lastcall);
592
593         // If this user's name is the name of the system administrator
594         // (as specified in setup), automatically assign access level 6.
595         if ( (!IsEmptyStr(CtdlGetConfigStr("c_sysadm"))) && (!strcasecmp(CC->user.fullname, CtdlGetConfigStr("c_sysadm"))) ) {
596                 CC->user.axlevel = AxAideU;
597         }
598
599         // If we're authenticating off the host system, automatically give root the highest level of access.
600         if (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_HOST) {
601                 if (CC->user.uid == 0) {
602                         CC->user.axlevel = AxAideU;
603                 }
604         }
605         CtdlPutUserLock(&CC->user);
606
607         // If we are using LDAP authentication, extract the user's email addresses from the directory.
608         if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) {
609                 char new_emailaddrs[512];
610                 if (CtdlGetConfigInt("c_ldap_sync_email_addrs") > 0) {
611                         if (extract_email_addresses_from_ldap(CC->ldap_dn, new_emailaddrs) == 0) {
612                                 CtdlSetEmailAddressesForUser(CC->user.fullname, new_emailaddrs);
613                         }
614                 }
615         }
616
617         // If the user does not have any email addresses assigned, generate one.
618         if (IsEmptyStr(CC->user.emailaddrs)) {
619                 AutoGenerateEmailAddressForUser(&CC->user);
620         }
621
622         // Populate the user principal identity, which is consistent and never aliased
623         strcpy(CC->cs_principal_id, "");
624         makeuserkey(CC->cs_principal_id, CC->user.fullname);
625         strcat(CC->cs_principal_id, "@");
626         strcat(CC->cs_principal_id, CtdlGetConfigStr("c_fqdn"));
627
628         // Populate cs_inet_email and cs_inet_other_emails with valid email addresses from the user record
629         strcpy(CC->cs_inet_email, CC->user.emailaddrs);
630         char *firstsep = strstr(CC->cs_inet_email, "|");
631         if (firstsep) {
632                 strcpy(CC->cs_inet_other_emails, firstsep+1);
633                 *firstsep = 0;
634         }
635         else {
636                 CC->cs_inet_other_emails[0] = 0;
637         }
638
639         // Create any personal rooms required by the system.
640         // (Technically, MAILROOM should be there already, but just in case...)
641         CtdlCreateRoom(MAILROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
642         CtdlCreateRoom(SENTITEMS, 4, "", 0, 1, 0, VIEW_MAILBOX);
643         CtdlCreateRoom(USERTRASHROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
644         CtdlCreateRoom(USERDRAFTROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
645
646         // Run any startup routines registered by loadable modules
647         PerformSessionHooks(EVT_LOGIN);
648
649         // Enter the lobby
650         CtdlUserGoto(CtdlGetConfigStr("c_baseroom"), 0, 0, NULL, NULL, NULL, NULL);
651 }
652
653
654 void logged_in_response(void) {
655         cprintf("%d %s|%d|%ld|%ld|%u|%ld|%ld\n",
656                 CIT_OK, CC->user.fullname, CC->user.axlevel,
657                 CC->user.timescalled, CC->user.posted,
658                 CC->user.flags, CC->user.usernum,
659                 CC->previous_login
660         );
661 }
662
663
664 void CtdlUserLogout(void) {
665
666         syslog(LOG_DEBUG, "user_ops: CtdlUserLogout() logging out <%s> from session %d", CC->curr_user, CC->cs_pid);
667
668         // Run any hooks registered by modules...
669         PerformSessionHooks(EVT_LOGOUT);
670         
671         // Clear out some session data.  Most likely, the CitContext for this
672         // session is about to get nuked when the session disconnects, but
673         // since it's possible to log in again without reconnecting, we cannot
674         // make that assumption.
675         CC->logged_in = 0;
676
677         // Check to see if the user was deleted while logged in and purge them if necessary
678         if ((CC->user.axlevel == AxDeleted) && (CC->user.usernum)) {
679                 purge_user(CC->user.fullname);
680         }
681
682         // Clear out the user record in memory so we don't behave like a ghost
683         memset(&CC->user, 0, sizeof(struct ctdluser));
684         CC->curr_user[0] = 0;
685         CC->cs_inet_email[0] = 0;
686         CC->cs_inet_other_emails[0] = 0;
687         CC->cs_inet_fn[0] = 0;
688
689         // Free any output buffers
690         unbuffer_output();
691 }
692
693
694 // Validate a password on the host unix system by talking to the chkpwd daemon
695 static int validpw(uid_t uid, const char *pass) {
696         char buf[256];
697         int rv = 0;
698
699         if (IsEmptyStr(pass)) {
700                 syslog(LOG_DEBUG, "user_ops: refusing to chkpwd for uid=%d with empty password", uid);
701                 return 0;
702         }
703
704         syslog(LOG_DEBUG, "user_ops: validating password for uid=%d using chkpwd...", uid);
705
706         begin_critical_section(S_CHKPWD);
707         rv = write(chkpwd_write_pipe[1], &uid, sizeof(uid_t));
708         if (rv == -1) {
709                 syslog(LOG_ERR, "user_ops: communication with chkpwd broken: %m");
710                 end_critical_section(S_CHKPWD);
711                 return 0;
712         }
713         rv = write(chkpwd_write_pipe[1], pass, 256);
714         if (rv == -1) {
715                 syslog(LOG_ERR, "user_ops: communication with chkpwd broken: %m");
716                 end_critical_section(S_CHKPWD);
717                 return 0;
718         }
719         rv = read(chkpwd_read_pipe[0], buf, 4);
720         if (rv == -1) {
721                 syslog(LOG_ERR, "user_ops: ommunication with chkpwd broken: %m");
722                 end_critical_section(S_CHKPWD);
723                 return 0;
724         }
725         end_critical_section(S_CHKPWD);
726
727         if (!strncmp(buf, "PASS", 4)) {
728                 syslog(LOG_DEBUG, "user_ops: chkpwd pass");
729                 return(1);
730         }
731
732         syslog(LOG_DEBUG, "user_ops: chkpwd fail");
733         return 0;
734 }
735
736
737 // Start up the chkpwd daemon so validpw() has something to talk to
738 void start_chkpwd_daemon(void) {
739         pid_t chkpwd_pid;
740         struct stat filestats;
741         int i;
742
743         syslog(LOG_DEBUG, "user_ops: starting chkpwd daemon for host authentication mode");
744
745         if ((stat(file_chkpwd, &filestats)==-1) || (filestats.st_size==0)) {
746                 syslog(LOG_ERR, "user_ops: %s: %m", file_chkpwd);
747                 abort();
748         }
749         if (pipe(chkpwd_write_pipe) != 0) {
750                 syslog(LOG_ERR, "user_ops: unable to create pipe for chkpwd daemon: %m");
751                 abort();
752         }
753         if (pipe(chkpwd_read_pipe) != 0) {
754                 syslog(LOG_ERR, "user_ops: unable to create pipe for chkpwd daemon: %m");
755                 abort();
756         }
757
758         chkpwd_pid = fork();
759         if (chkpwd_pid < 0) {
760                 syslog(LOG_ERR, "user_ops: unable to fork chkpwd daemon: %m");
761                 abort();
762         }
763         if (chkpwd_pid == 0) {
764                 dup2(chkpwd_write_pipe[0], 0);
765                 dup2(chkpwd_read_pipe[1], 1);
766                 for (i=2; i<256; ++i) close(i);
767                 execl(file_chkpwd, file_chkpwd, NULL);
768                 syslog(LOG_ERR, "user_ops: unable to exec chkpwd daemon: %m");
769                 abort();
770                 exit(errno);
771         }
772 }
773
774
775 int CtdlTryPassword(const char *password, long len) {
776         int code;
777
778         if ((CC->logged_in)) {
779                 syslog(LOG_WARNING, "user_ops: CtdlTryPassword: already logged in");
780                 return pass_already_logged_in;
781         }
782         if (!strcmp(CC->curr_user, NLI)) {
783                 syslog(LOG_WARNING, "user_ops: CtdlTryPassword: no user selected");
784                 return pass_no_user;
785         }
786         if (CtdlGetUser(&CC->user, CC->curr_user)) {
787                 syslog(LOG_ERR, "user_ops: CtdlTryPassword: internal error");
788                 return pass_internal_error;
789         }
790         if (password == NULL) {
791                 syslog(LOG_INFO, "user_ops: CtdlTryPassword: NULL password string supplied");
792                 return pass_wrong_password;
793         }
794
795         // host auth mode...
796         else if (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_HOST) {
797                 if (validpw(CC->user.uid, password)) {
798                         code = 0;
799
800                         // sooper-seekrit hack: populate the password field in the
801                         // citadel database with the password that the user typed,
802                         // if it's correct.  This allows most sites to convert from
803                         // host auth to native auth if they want to.  If you think
804                         // this is a security hazard, comment it out.
805
806                         CtdlGetUserLock(&CC->user, CC->curr_user);
807                         safestrncpy(CC->user.password, password, sizeof CC->user.password);
808                         CtdlPutUserLock(&CC->user);
809
810                         // (sooper-seekrit hack ends here)
811                 }
812                 else {
813                         code = (-1);
814                 }
815         }
816
817         // LDAP auth mode...
818         else if ((CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP) || (CtdlGetConfigInt("c_auth_mode") == AUTHMODE_LDAP_AD)) {
819
820                 if ((CC->ldap_dn) && (!CtdlTryPasswordLDAP(CC->ldap_dn, password))) {
821                         code = 0;
822                 }
823                 else {
824                         code = (-1);
825                 }
826         }
827
828         // native auth mode...
829         else {
830                 char *pw;
831
832                 pw = (char*) malloc(len + 1);
833                 memcpy(pw, password, len + 1);
834                 strproc(pw);
835                 strproc(CC->user.password);
836                 code = strcasecmp(CC->user.password, pw);
837                 if (code != 0) {
838                         strproc(pw);
839                         strproc(CC->user.password);
840                         code = strcasecmp(CC->user.password, pw);
841                 }
842                 free (pw);
843         }
844
845         if (!code) {
846                 do_login();
847                 return pass_ok;
848         }
849         else {
850                 syslog(LOG_WARNING, "user_ops: bad password specified for <%s> Service <%s> Port <%ld> Remote <%s / %s>",
851                         CC->curr_user,
852                         CC->ServiceName,
853                         CC->tcp_port,
854                         CC->cs_host,
855                         CC->cs_addr
856                 );
857                 return pass_wrong_password;
858         }
859 }
860
861
862 // Delete a user record *and* all of its related resources.
863 int purge_user(char pname[]) {
864         struct ctdluser usbuf;
865         char usernamekey[USERNAME_SIZE];
866
867         makeuserkey(usernamekey, pname);
868
869         // If the name is empty we can't find them in the DB any way so just return
870         if (IsEmptyStr(pname)) {
871                 return(ERROR + NO_SUCH_USER);
872         }
873
874         if (CtdlGetUser(&usbuf, pname) != 0) {
875                 syslog(LOG_ERR, "user_ops: cannot purge user <%s> - not found", pname);
876                 return(ERROR + NO_SUCH_USER);
877         }
878
879         // Don't delete a user who is currently logged in.  Instead, just
880         // set the access level to 0, and let the account get swept up
881         // during the next purge.
882         if (CtdlIsUserLoggedInByNum(usbuf.usernum)) {
883                 syslog(LOG_WARNING, "user_ops: <%s> is logged in; not deleting", pname);
884                 usbuf.axlevel = AxDeleted;
885                 CtdlPutUser(&usbuf);
886                 return(1);
887         }
888
889         syslog(LOG_NOTICE, "user_ops: deleting <%s>", pname);
890
891         // Perform any purge functions registered by server extensions
892         PerformUserHooks(&usbuf, EVT_PURGEUSER);
893
894         // delete any existing user/room relationships
895         cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
896
897         // delete the users-by-number index record
898         cdb_delete(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long));
899
900         // delete the user entry
901         cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
902
903         return(0);
904 }
905
906
907 // This is the back end processing that happens when we create a new user account.
908 int internal_create_user(char *username, struct ctdluser *usbuf, uid_t uid) {
909         if (!CtdlGetUser(usbuf, username)) {
910                 return(ERROR + ALREADY_EXISTS);
911         }
912
913         // Go ahead and initialize a new user record
914         memset(usbuf, 0, sizeof(struct ctdluser));
915         safestrncpy(usbuf->fullname, username, sizeof usbuf->fullname);
916         strcpy(usbuf->password, "");
917         usbuf->uid = uid;
918
919         // These are the default flags on new accounts
920         usbuf->flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
921
922         usbuf->timescalled = 0;
923         usbuf->posted = 0;
924         usbuf->axlevel = CtdlGetConfigInt("c_initax");
925         usbuf->lastcall = time(NULL);
926
927         // fetch a new user number
928         usbuf->usernum = get_new_user_number();
929
930         // add user to the database
931         CtdlPutUser(usbuf);
932         cdb_store(CDB_USERSBYNUMBER, &usbuf->usernum, sizeof(long), usbuf->fullname, strlen(usbuf->fullname)+1);
933
934         // If non-native auth, index by uid
935         if ((usbuf->uid > 0) && (usbuf->uid != NATIVE_AUTH_UID)) {
936                 StrBuf *claimed_id = NewStrBuf();
937                 StrBufPrintf(claimed_id, "uid:%d", usbuf->uid);
938                 attach_extauth(usbuf, claimed_id);
939                 FreeStrBuf(&claimed_id);
940         }
941
942         return(0);
943 }
944
945
946 // create_user()  -  back end processing to create a new user
947 //
948 // Set 'newusername' to the desired account name.
949 // Set 'become_user' to CREATE_USER_BECOME_USER if this is self-service account creation and we want to
950 //                   actually log in as the user we just created, otherwise set it to CREATE_USER_DO_NOT_BECOME_USER
951 // Set 'uid' to some uid_t value to associate the account with an external auth user, or (-1) for native auth
952 int create_user(char *username, int become_user, uid_t uid) {
953         struct ctdluser usbuf;
954         struct ctdlroom qrbuf;
955         char mailboxname[ROOMNAMELEN];
956         char buf[SIZ];
957         int retval;
958
959         strproc(username);
960         if ((retval = internal_create_user(username, &usbuf, uid)) != 0) {
961                 return retval;
962         }
963
964         // Give the user a private mailbox and a configuration room.
965         // Make the latter an invisible system room.
966         CtdlMailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
967         CtdlCreateRoom(mailboxname, 5, "", 0, 1, 1, VIEW_MAILBOX);
968
969         CtdlMailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
970         CtdlCreateRoom(mailboxname, 5, "", 0, 1, 1, VIEW_BBS);
971         if (CtdlGetRoomLock(&qrbuf, mailboxname) == 0) {
972                 qrbuf.QRflags2 |= QR2_SYSTEM;
973                 CtdlPutRoomLock(&qrbuf);
974         }
975
976         // Perform any create functions registered by server extensions
977         PerformUserHooks(&usbuf, EVT_NEWUSER);
978
979         // Everything below this line can be bypassed if administratively
980         // creating a user, instead of doing self-service account creation
981
982         if (become_user == CREATE_USER_BECOME_USER) {
983                 // Now become the user we just created
984                 memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
985                 safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
986                 do_login();
987         
988                 // Check to make sure we're still who we think we are
989                 if (CtdlGetUser(&CC->user, CC->curr_user)) {
990                         return(ERROR + INTERNAL_ERROR);
991                 }
992         }
993         
994         snprintf(buf, SIZ, 
995                 "New user account <%s> has been created, from host %s [%s].\n",
996                 username,
997                 CC->cs_host,
998                 CC->cs_addr
999         );
1000         CtdlAideMessage(buf, "User Creation Notice");
1001         syslog(LOG_NOTICE, "user_ops: <%s> created", username);
1002         return(0);
1003 }
1004
1005
1006 // set password - back end api code
1007 void CtdlSetPassword(char *new_pw) {
1008         CtdlGetUserLock(&CC->user, CC->curr_user);
1009         safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
1010         CtdlPutUserLock(&CC->user);
1011         syslog(LOG_INFO, "user_ops: password changed for <%s>", CC->curr_user);
1012         PerformSessionHooks(EVT_SETPASS);
1013 }
1014
1015
1016 // API function for cmd_invt_kick() and anything else that needs to
1017 // invite or kick out a user to/from a room.
1018 // 
1019 // Set iuser to the name of the user, and op to 1=invite or 0=kick
1020 int CtdlInvtKick(char *iuser, int op) {
1021         struct ctdluser USscratch;
1022         visit vbuf;
1023         char bbb[SIZ];
1024
1025         if (CtdlGetUser(&USscratch, iuser) != 0) {
1026                 return(1);
1027         }
1028
1029         CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
1030         if (op == 1) {
1031                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1032                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1033         }
1034         if (op == 0) {
1035                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1036                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1037         }
1038         CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
1039
1040         // post a message in Aide> saying what we just did
1041         snprintf(bbb, sizeof bbb, "%s has been %s \"%s\" by %s.\n",
1042                 iuser,
1043                 ((op == 1) ? "invited to" : "kicked out of"),
1044                 CC->room.QRname,
1045                 (CC->logged_in ? CC->user.fullname : "an administrator")
1046         );
1047         CtdlAideMessage(bbb,"User Admin Message");
1048         return(0);
1049 }
1050
1051
1052 // Forget (Zap) the current room (API call)
1053 // Returns 0 on success
1054 int CtdlForgetThisRoom(void) {
1055         visit vbuf;
1056
1057         // On some systems, Admins are not allowed to forget rooms
1058         if (is_aide() && (CtdlGetConfigInt("c_aide_zap") == 0)
1059            && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
1060                 return(1);
1061         }
1062
1063         CtdlGetUserLock(&CC->user, CC->curr_user);
1064         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1065
1066         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1067         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1068
1069         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1070         CtdlPutUserLock(&CC->user);
1071
1072         // Return to the Lobby, so we don't end up in an undefined room
1073         CtdlUserGoto(CtdlGetConfigStr("c_baseroom"), 0, 0, NULL, NULL, NULL, NULL);
1074         return(0);
1075 }
1076
1077
1078 // Traverse the user file and perform a callback for each user record.
1079 // (New improved version that runs in two phases so that callbacks can perform writes without having a r/o cursor open)
1080 void ForEachUser(void (*CallBack) (char *, void *out_data), void *in_data) {
1081         struct cdbdata *cdbus;
1082         struct ctdluser *usptr;
1083
1084         struct feu {
1085                 struct feu *next;
1086                 char username[USERNAME_SIZE];
1087         };
1088         struct feu *ufirst = NULL;
1089         struct feu *ulast = NULL;
1090         struct feu *f = NULL;
1091
1092         cdb_rewind(CDB_USERS);
1093
1094         // Phase 1 : build a linked list of all our user account names
1095         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1096                 usptr = (struct ctdluser *) cdbus->ptr;
1097
1098                 if (strlen(usptr->fullname) > 0) {
1099                         f = malloc(sizeof(struct feu));
1100                         f->next = NULL;
1101                         strncpy(f->username, usptr->fullname, USERNAME_SIZE);
1102
1103                         if (ufirst == NULL) {
1104                                 ufirst = f;
1105                                 ulast = f;
1106                         }
1107                         else {
1108                                 ulast->next = f;
1109                                 ulast = f;
1110                         }
1111                 }
1112         }
1113
1114         // Phase 2 : perform the callback for each user while de-allocating the list
1115         while (ufirst != NULL) {
1116                 (*CallBack) (ufirst->username, in_data);
1117                 f = ufirst;
1118                 ufirst = ufirst->next;
1119                 free(f);
1120         }
1121 }
1122
1123
1124 // Count the number of new mail messages the user has
1125 int NewMailCount() {
1126         int num_newmsgs = 0;
1127         num_newmsgs = CC->newmail;
1128         CC->newmail = 0;
1129         return(num_newmsgs);
1130 }
1131
1132
1133 // Count the number of new mail messages the user has
1134 int InitialMailCheck() {
1135         int num_newmsgs = 0;
1136         int a;
1137         char mailboxname[ROOMNAMELEN];
1138         struct ctdlroom mailbox;
1139         visit vbuf;
1140         struct cdbdata *cdbfr;
1141         long *msglist = NULL;
1142         int num_msgs = 0;
1143
1144         CtdlMailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
1145         if (CtdlGetRoom(&mailbox, mailboxname) != 0)
1146                 return(0);
1147         CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
1148
1149         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1150
1151         if (cdbfr != NULL) {
1152                 msglist = malloc(cdbfr->len);
1153                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1154                 num_msgs = cdbfr->len / sizeof(long);
1155                 cdb_free(cdbfr);
1156         }
1157         if (num_msgs > 0)
1158                 for (a = 0; a < num_msgs; ++a) {
1159                         if (msglist[a] > 0L) {
1160                                 if (msglist[a] > vbuf.v_lastseen) {
1161                                         ++num_newmsgs;
1162                                 }
1163                         }
1164                 }
1165         if (msglist != NULL)
1166                 free(msglist);
1167
1168         return(num_newmsgs);
1169 }