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