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