System users (SYS_*) now have proper user numbers.
[citadel.git] / citadel / user_ops.c
1 /* 
2  * $Id$
3  *
4  * Server functions which perform operations on user objects.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <errno.h>
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <stdio.h>
13 #include <fcntl.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <ctype.h>
17 #include <sys/types.h>
18 #include <sys/wait.h>
19 #ifdef HAVE_SYS_STAT_H
20 #include <sys/stat.h>
21 #endif
22
23 #if TIME_WITH_SYS_TIME
24 # include <sys/time.h>
25 # include <time.h>
26 #else
27 # if HAVE_SYS_TIME_H
28 #  include <sys/time.h>
29 # else
30 #  include <time.h>
31 # endif
32 #endif
33
34 #include <string.h>
35 #include <limits.h>
36 #include <libcitadel.h>
37 #include "auth.h"
38 #include "citadel.h"
39 #include "server.h"
40 #include "database.h"
41 #include "user_ops.h"
42 #include "sysdep_decls.h"
43 #include "support.h"
44 #include "room_ops.h"
45 #include "file_ops.h"
46 #include "control.h"
47 #include "msgbase.h"
48 #include "config.h"
49 #include "citserver.h"
50 #include "citadel_dirs.h"
51 #include "genstamp.h"
52 #include "threads.h"
53
54 /* These pipes are used to talk to the chkpwd daemon, which is forked during startup */
55 int chkpwd_write_pipe[2];
56 int chkpwd_read_pipe[2];
57
58 /*
59  * makeuserkey() - convert a username into the format used as a database key
60  *               (it's just the username converted into lower case)
61  */
62 INLINE void makeuserkey(char *key, char *username) {
63         int i, len;
64
65         len = strlen(username);
66         if (len >= USERNAME_SIZE)
67         {
68                 CtdlLogPrintf (CTDL_EMERG, "Username to long: %s", username);
69                 cit_backtrace ();
70                 len = USERNAME_SIZE - 1; 
71                 username[USERNAME_SIZE - 1]='\0';
72         }
73         for (i=0; i<=len; ++i) {
74                 key[i] = tolower(username[i]);
75         }
76 }
77
78
79 /*
80  * getuser()  -  retrieve named user into supplied buffer.
81  *             returns 0 on success
82  */
83 int getuser(struct ctdluser *usbuf, char name[])
84 {
85
86         char usernamekey[USERNAME_SIZE];
87         struct cdbdata *cdbus;
88
89         if (usbuf != NULL) {
90                 memset(usbuf, 0, sizeof(struct ctdluser));
91         }
92
93         makeuserkey(usernamekey, name);
94         cdbus = cdb_fetch(CDB_USERS, usernamekey, strlen(usernamekey));
95
96         if (cdbus == NULL) {    /* user not found */
97                 return(1);
98         }
99         if (usbuf != NULL) {
100                 memcpy(usbuf, cdbus->ptr,
101                         ((cdbus->len > sizeof(struct ctdluser)) ?
102                          sizeof(struct ctdluser) : cdbus->len));
103         }
104         cdb_free(cdbus);
105
106         return (0);
107 }
108
109
110 /*
111  * lgetuser()  -  same as getuser() but locks the record
112  */
113 int lgetuser(struct ctdluser *usbuf, char *name)
114 {
115         int retcode;
116
117         retcode = getuser(usbuf, name);
118         if (retcode == 0) {
119                 begin_critical_section(S_USERS);
120         }
121         return (retcode);
122 }
123
124
125 /*
126  * putuser()  -  write user buffer into the correct place on disk
127  */
128 void putuser(struct ctdluser *usbuf)
129 {
130         char usernamekey[USERNAME_SIZE];
131
132         makeuserkey(usernamekey, usbuf->fullname);
133
134         usbuf->version = REV_LEVEL;
135         cdb_store(CDB_USERS,
136                   usernamekey, strlen(usernamekey),
137                   usbuf, sizeof(struct ctdluser));
138
139 }
140
141
142 /*
143  * lputuser()  -  same as putuser() but locks the record
144  */
145 void lputuser(struct ctdluser *usbuf)
146 {
147         putuser(usbuf);
148         end_critical_section(S_USERS);
149 }
150
151
152 /*
153  * rename_user()  -  this is tricky because the user's display name is the database key
154  *
155  * Returns 0 on success or nonzero if there was an error...
156  *
157  */
158 int rename_user(char *oldname, char *newname) {
159         struct CitContext *cptr;
160         int retcode = RENAMEUSER_OK;
161         struct ctdluser usbuf;
162
163         char oldnamekey[USERNAME_SIZE];
164         char newnamekey[USERNAME_SIZE];
165
166         /* We cannot rename a user who is currently logged in */
167         for (cptr = ContextList; cptr != NULL; cptr = cptr->next) {
168                 if (!strcasecmp(cptr->user.fullname, oldname)) {
169                         return(RENAMEUSER_LOGGED_IN);
170                 }
171         }
172
173         /* Create the database keys... */
174         makeuserkey(oldnamekey, oldname);
175         makeuserkey(newnamekey, newname);
176
177         /* Lock up and get going */
178         begin_critical_section(S_USERS);
179
180         if (getuser(&usbuf, newname) == 0) {
181                 retcode = RENAMEUSER_ALREADY_EXISTS;
182         }
183         else {
184
185                 if (getuser(&usbuf, oldname) != 0) {
186                         retcode = RENAMEUSER_NOT_FOUND;
187                 }
188
189                 else {          /* Sanity checks succeeded.  Now rename the user. */
190                         if (usbuf.usernum == 0)
191                         {
192                                 CtdlLogPrintf (CTDL_DEBUG, "Can not rename user \"Citadel\".\n");
193                                 retcode = RENAMEUSER_NOT_FOUND;
194                         } else {
195                                 CtdlLogPrintf(CTDL_DEBUG, "Renaming <%s> to <%s>\n", oldname, newname);
196                                 cdb_delete(CDB_USERS, oldnamekey, strlen(oldnamekey));
197                                 safestrncpy(usbuf.fullname, newname, sizeof usbuf.fullname);
198                                 putuser(&usbuf);
199                                 cdb_store(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long),
200                                         usbuf.fullname, strlen(usbuf.fullname)+1 );
201
202                                 retcode = RENAMEUSER_OK;
203                         }
204                 }
205         
206         }
207
208         end_critical_section(S_USERS);
209         return(retcode);
210 }
211
212
213
214 /*
215  * Index-generating function used by Ctdl[Get|Set]Relationship
216  */
217 int GenerateRelationshipIndex(char *IndexBuf,
218                               long RoomID,
219                               long RoomGen,
220                               long UserID)
221 {
222
223         struct {
224                 long iRoomID;
225                 long iRoomGen;
226                 long iUserID;
227         } TheIndex;
228
229         TheIndex.iRoomID = RoomID;
230         TheIndex.iRoomGen = RoomGen;
231         TheIndex.iUserID = UserID;
232
233         memcpy(IndexBuf, &TheIndex, sizeof(TheIndex));
234         return (sizeof(TheIndex));
235 }
236
237
238
239 /*
240  * Back end for CtdlSetRelationship()
241  */
242 void put_visit(struct visit *newvisit)
243 {
244         char IndexBuf[32];
245         int IndexLen = 0;
246
247         memset (IndexBuf, 0, sizeof (IndexBuf));
248         /* Generate an index */
249         IndexLen = GenerateRelationshipIndex(IndexBuf,
250                                              newvisit->v_roomnum,
251                                              newvisit->v_roomgen,
252                                              newvisit->v_usernum);
253
254         /* Store the record */
255         cdb_store(CDB_VISIT, IndexBuf, IndexLen,
256                   newvisit, sizeof(struct visit)
257         );
258 }
259
260
261
262
263 /*
264  * Define a relationship between a user and a room
265  */
266 void CtdlSetRelationship(struct visit *newvisit,
267                          struct ctdluser *rel_user,
268                          struct ctdlroom *rel_room)
269 {
270
271
272         /* We don't use these in Citadel because they're implicit by the
273          * index, but they must be present if the database is exported.
274          */
275         newvisit->v_roomnum = rel_room->QRnumber;
276         newvisit->v_roomgen = rel_room->QRgen;
277         newvisit->v_usernum = rel_user->usernum;
278
279         put_visit(newvisit);
280 }
281
282 /*
283  * Locate a relationship between a user and a room
284  */
285 void CtdlGetRelationship(struct visit *vbuf,
286                          struct ctdluser *rel_user,
287                          struct ctdlroom *rel_room)
288 {
289
290         char IndexBuf[32];
291         int IndexLen;
292         struct cdbdata *cdbvisit;
293
294         /* Generate an index */
295         IndexLen = GenerateRelationshipIndex(IndexBuf,
296                                              rel_room->QRnumber,
297                                              rel_room->QRgen,
298                                              rel_user->usernum);
299
300         /* Clear out the buffer */
301         memset(vbuf, 0, sizeof(struct visit));
302
303         cdbvisit = cdb_fetch(CDB_VISIT, IndexBuf, IndexLen);
304         if (cdbvisit != NULL) {
305                 memcpy(vbuf, cdbvisit->ptr,
306                        ((cdbvisit->len > sizeof(struct visit)) ?
307                         sizeof(struct visit) : cdbvisit->len));
308                 cdb_free(cdbvisit);
309         }
310         else {
311                 /* If this is the first time the user has seen this room,
312                  * set the view to be the default for the room.
313                  */
314                 vbuf->v_view = rel_room->QRdefaultview;
315         }
316
317         /* Set v_seen if necessary */
318         if (vbuf->v_seen[0] == 0) {
319                 snprintf(vbuf->v_seen, sizeof vbuf->v_seen, "*:%ld", vbuf->v_lastseen);
320         }
321 }
322
323
324 void MailboxName(char *buf, size_t n, const struct ctdluser *who, const char *prefix)
325 {
326         snprintf(buf, n, "%010ld.%s", who->usernum, prefix);
327 }
328
329
330 /*
331  * Is the user currently logged in an Aide?
332  */
333 int is_aide(void)
334 {
335         if (CC->user.axlevel >= 6)
336                 return (1);
337         else
338                 return (0);
339 }
340
341
342 /*
343  * Is the user currently logged in an Aide *or* the room aide for this room?
344  */
345 int is_room_aide(void)
346 {
347
348         if (!CC->logged_in) {
349                 return (0);
350         }
351
352         if ((CC->user.axlevel >= 6)
353             || (CC->room.QRroomaide == CC->user.usernum)) {
354                 return (1);
355         } else {
356                 return (0);
357         }
358 }
359
360 /*
361  * getuserbynumber() -  get user by number
362  *                      returns 0 if user was found
363  *
364  * Note: fetching a user this way requires one additional database operation.
365  */
366 int getuserbynumber(struct ctdluser *usbuf, long number)
367 {
368         struct cdbdata *cdbun;
369         int r;
370
371         cdbun = cdb_fetch(CDB_USERSBYNUMBER, &number, sizeof(long));
372         if (cdbun == NULL) {
373                 CtdlLogPrintf(CTDL_INFO, "User %ld not found\n", number);
374                 return(-1);
375         }
376
377         CtdlLogPrintf(CTDL_INFO, "User %ld maps to %s\n", number, cdbun->ptr);
378         r = getuser(usbuf, cdbun->ptr);
379         cdb_free(cdbun);
380         return(r);
381 }
382
383
384
385 /*
386  * Helper function for rebuild_usersbynumber()
387  */
388 void rebuild_ubn_for_user(struct ctdluser *usbuf, void *data) {
389
390         struct ubnlist {
391                 struct ubnlist *next;
392                 char username[USERNAME_SIZE];
393                 long usernum;
394         };
395
396         static struct ubnlist *u = NULL;
397         struct ubnlist *ptr = NULL;
398
399         /* Lazy programming here.  Call this function as a ForEachUser backend
400          * in order to queue up the room names, or call it with a null user
401          * to make it do the processing.
402          */
403         if (usbuf != NULL) {
404                 ptr = (struct ubnlist *) malloc(sizeof (struct ubnlist));
405                 if (ptr == NULL) return;
406
407                 ptr->usernum = usbuf->usernum;
408                 safestrncpy(ptr->username, usbuf->fullname, sizeof ptr->username);
409                 ptr->next = u;
410                 u = ptr;
411                 return;
412         }
413
414         while (u != NULL) {
415                 CtdlLogPrintf(CTDL_DEBUG, "Rebuilding usersbynumber index %10ld : %s\n",
416                         u->usernum, u->username);
417                 cdb_store(CDB_USERSBYNUMBER, &u->usernum, sizeof(long), u->username, strlen(u->username)+1);
418
419                 ptr = u;
420                 u = u->next;
421                 free(ptr);
422         }
423 }
424
425
426
427 /*
428  * Rebuild the users-by-number index
429  */
430 void rebuild_usersbynumber(void) {
431         cdb_trunc(CDB_USERSBYNUMBER);                   /* delete the old indices */
432         ForEachUser(rebuild_ubn_for_user, NULL);        /* enumerate the users */
433         rebuild_ubn_for_user(NULL, NULL);               /* and index them */
434 }
435
436
437
438 /*
439  * getuserbyuid()  -     get user by system uid (for PAM mode authentication)
440  *                     returns 0 if user was found
441  *
442  * WARNING: don't use this function unless you absolutely have to.  It does
443  *        a sequential search and therefore is computationally expensive.
444  */
445 int getuserbyuid(struct ctdluser *usbuf, uid_t number)
446 {
447         struct cdbdata *cdbus;
448
449         cdb_rewind(CDB_USERS);
450
451         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
452                 memset(usbuf, 0, sizeof(struct ctdluser));
453                 memcpy(usbuf, cdbus->ptr,
454                        ((cdbus->len > sizeof(struct ctdluser)) ?
455                         sizeof(struct ctdluser) : cdbus->len));
456                 cdb_free(cdbus);
457                 if (usbuf->uid == number) {
458                         cdb_close_cursor(CDB_USERS);
459                         return (0);
460                 }
461         }
462         return (-1);
463 }
464
465 /*
466  * Back end for cmd_user() and its ilk
467  *
468  * NOTE: "authname" should only be used if we are attempting to use the "master user" feature
469  */
470 int CtdlLoginExistingUser(char *authname, char *trythisname)
471 {
472         char username[SIZ];
473         int found_user;
474
475         CtdlLogPrintf(9, "CtdlLoginExistingUser(%s, %s)\n", authname, trythisname);
476
477         if ((CC->logged_in)) {
478                 return login_already_logged_in;
479         }
480
481         if (trythisname == NULL) return login_not_found;
482         
483         if (!strncasecmp(trythisname, "SYS_", 4))
484         {
485                 CtdlLogPrintf(CTDL_DEBUG, "System user \"%s\" is not allowed to log in.\n", trythisname);
486                 return login_not_found;
487         }
488
489         /* If a "master user" is defined, handle its authentication if specified */
490         CC->is_master = 0;
491         if (strlen(config.c_master_user) > 0) if (strlen(config.c_master_pass) > 0) if (authname) {
492                 if (!strcasecmp(authname, config.c_master_user)) {
493                         CC->is_master = 1;
494                 }
495         }
496
497         /* Continue attempting user validation... */
498         safestrncpy(username, trythisname, USERNAME_SIZE);
499         striplt(username);
500
501         if (IsEmptyStr(username)) {
502                 return login_not_found;
503         }
504
505         if (config.c_auth_mode == AUTHMODE_HOST) {
506
507                 /* host auth mode */
508
509                 struct passwd pd;
510                 struct passwd *tempPwdPtr;
511                 char pwdbuffer[256];
512         
513                 CtdlLogPrintf(CTDL_DEBUG, "asking host about <%s>\n", username);
514 #ifdef HAVE_GETPWNAM_R
515 #ifdef SOLARIS_GETPWUID
516                 CtdlLogPrintf(CTDL_DEBUG, "Calling getpwnam_r()\n");
517                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer);
518 #else // SOLARIS_GETPWUID
519                 CtdlLogPrintf(CTDL_DEBUG, "Calling getpwnam_r()\n");
520                 getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer, &tempPwdPtr);
521 #endif // SOLARIS_GETPWUID
522 #else // HAVE_GETPWNAM_R
523                 CtdlLogPrintf(CTDL_DEBUG, "SHOULD NEVER GET HERE!!!\n");
524                 tempPwdPtr = NULL;
525 #endif // HAVE_GETPWNAM_R
526                 if (tempPwdPtr == NULL) {
527                         CtdlLogPrintf(CTDL_DEBUG, "no such user <%s>\n", username);
528                         return login_not_found;
529                 }
530         
531                 /* Locate the associated Citadel account.
532                  * If not found, make one attempt to create it.
533                  */
534                 found_user = getuserbyuid(&CC->user, pd.pw_uid);
535                 CtdlLogPrintf(CTDL_DEBUG, "found it: uid=%ld, gecos=%s here: %d\n",
536                         (long)pd.pw_uid, pd.pw_gecos, found_user);
537                 if (found_user != 0) {
538                         create_user(username, 0);
539                         found_user = getuserbyuid(&CC->user, pd.pw_uid);
540                 }
541
542         }
543
544         else {
545                 /* native auth mode */
546
547                 struct recptypes *valid = NULL;
548         
549                 /* First, try to log in as if the supplied name is a display name */
550                 found_user = getuser(&CC->user, username);
551         
552                 /* If that didn't work, try to log in as if the supplied name
553                 * is an e-mail address
554                 */
555                 if (found_user != 0) {
556                         valid = validate_recipients(username, NULL, 0);
557                         if (valid != NULL) {
558                                 if (valid->num_local == 1) {
559                                         found_user = getuser(&CC->user, valid->recp_local);
560                                 }
561                                 free_recipients(valid);
562                         }
563                 }
564         }
565
566         /* Did we find something? */
567         if (found_user == 0) {
568                 if (((CC->nologin)) && (CC->user.axlevel < 6)) {
569                         return login_too_many_users;
570                 } else {
571                         safestrncpy(CC->curr_user, CC->user.fullname,
572                                         sizeof CC->curr_user);
573                         return login_ok;
574                 }
575         }
576         return login_not_found;
577 }
578
579
580
581 /*
582  * USER cmd
583  */
584 void cmd_user(char *cmdbuf)
585 {
586         char username[256];
587         int a;
588
589         extract_token(username, cmdbuf, 0, '|', sizeof username);
590         striplt(username);
591
592         a = CtdlLoginExistingUser(NULL, username);
593         switch (a) {
594         case login_already_logged_in:
595                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
596                 return;
597         case login_too_many_users:
598                 cprintf("%d %s: "
599                         "Too many users are already online "
600                         "(maximum is %d)\n",
601                         ERROR + MAX_SESSIONS_EXCEEDED,
602                         config.c_nodename, config.c_maxsessions);
603                 return;
604         case login_ok:
605                 cprintf("%d Password required for %s\n",
606                         MORE_DATA, CC->curr_user);
607                 return;
608         case login_not_found:
609                 cprintf("%d %s not found.\n", ERROR + NO_SUCH_USER, username);
610                 return;
611         default:
612                 cprintf("%d Internal error\n", ERROR + INTERNAL_ERROR);
613         }
614 }
615
616
617
618 /*
619  * session startup code which is common to both cmd_pass() and cmd_newu()
620  */
621 void do_login(void)
622 {
623         CC->logged_in = 1;
624         CtdlLogPrintf(CTDL_NOTICE, "<%s> logged in\n", CC->curr_user);
625
626         lgetuser(&CC->user, CC->curr_user);
627         ++(CC->user.timescalled);
628         CC->previous_login = CC->user.lastcall;
629         time(&CC->user.lastcall);
630
631         /* If this user's name is the name of the system administrator
632          * (as specified in setup), automatically assign access level 6.
633          */
634         if (!strcasecmp(CC->user.fullname, config.c_sysadm)) {
635                 CC->user.axlevel = 6;
636         }
637
638         /* If we're authenticating off the host system, automatically give
639          * root the highest level of access.
640          */
641         if (config.c_auth_mode == AUTHMODE_HOST) {
642                 if (CC->user.uid == 0) {
643                         CC->user.axlevel = 6;
644                 }
645         }
646
647         lputuser(&CC->user);
648
649         /*
650          * Populate CC->cs_inet_email with a default address.  This will be
651          * overwritten with the user's directory address, if one exists, when
652          * the vCard module's login hook runs.
653          */
654         snprintf(CC->cs_inet_email, sizeof CC->cs_inet_email, "%s@%s",
655                 CC->user.fullname, config.c_fqdn);
656         convert_spaces_to_underscores(CC->cs_inet_email);
657
658         /* Create any personal rooms required by the system.
659          * (Technically, MAILROOM should be there already, but just in case...)
660          */
661         create_room(MAILROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
662         create_room(SENTITEMS, 4, "", 0, 1, 0, VIEW_MAILBOX);
663         create_room(USERTRASHROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
664
665         /* Run any startup routines registered by loadable modules */
666         PerformSessionHooks(EVT_LOGIN);
667
668         /* Enter the lobby */
669         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
670 }
671
672
673 void logged_in_response(void)
674 {
675         cprintf("%d %s|%d|%ld|%ld|%u|%ld|%ld\n",
676                 CIT_OK, CC->user.fullname, CC->user.axlevel,
677                 CC->user.timescalled, CC->user.posted,
678                 CC->user.flags, CC->user.usernum,
679                 CC->previous_login);
680 }
681
682
683
684 /* 
685  * misc things to be taken care of when a user is logged out
686  */
687 void logout(void)
688 {
689         struct CitContext *CCC = CC;    /* CachedCitContext - performance boost */
690         /*
691          * If there is a download in progress, abort it.
692          */
693         if (CCC->download_fp != NULL) {
694                 fclose(CCC->download_fp);
695                 CCC->download_fp = NULL;
696         }
697
698         /*
699          * If there is an upload in progress, abort it.
700          */
701         if (CCC->upload_fp != NULL) {
702                 abort_upl(CCC);
703         }
704
705         /*
706          * If we were talking to a network node, we're not anymore...
707          */
708         if (!IsEmptyStr(CCC->net_node)) {
709                 network_talking_to(CCC->net_node, NTT_REMOVE);
710         }
711
712         /* Run any hooks registered by modules... */
713         PerformSessionHooks(EVT_LOGOUT);
714         
715         /*
716          * Clear out some session data.  Most likely, the CitContext for this
717          * session is about to get nuked when the session disconnects, but
718          * since it's possible to log in again without reconnecting, we cannot
719          * make that assumption.
720          */
721         strcpy(CCC->fake_username, "");
722         strcpy(CCC->fake_hostname, "");
723         strcpy(CCC->fake_roomname, "");
724         CCC->logged_in = 0;
725
726         /* Check to see if the user was deleted whilst logged in and purge them if necessary */
727         if ((CCC->user.axlevel == 0) && (CCC->user.usernum))
728                 purge_user(CCC->user.fullname);
729
730         /* Free any output buffers */
731         if (CCC->output_buffer != NULL) {
732                 unbuffer_output();
733         }
734 }
735
736 /*
737  * Validate a password on the host unix system by talking to the chkpwd daemon
738  */
739 static int validpw(uid_t uid, const char *pass)
740 {
741         char buf[256];
742
743         if (IsEmptyStr(pass)) {
744                 CtdlLogPrintf(CTDL_DEBUG, "refusing to check empty password for uid=%d using chkpwd...\n", uid);
745                 return 0;
746         }
747
748         CtdlLogPrintf(CTDL_DEBUG, "Validating password for uid=%d using chkpwd...\n", uid);
749
750         begin_critical_section(S_CHKPWD);
751         write(chkpwd_write_pipe[1], &uid, sizeof(uid_t));
752         write(chkpwd_write_pipe[1], pass, 256);
753         read(chkpwd_read_pipe[0], buf, 4);
754         end_critical_section(S_CHKPWD);
755
756         if (!strncmp(buf, "PASS", 4)) {
757                 CtdlLogPrintf(CTDL_DEBUG, "...pass\n");
758                 return(1);
759         }
760
761         CtdlLogPrintf(CTDL_DEBUG, "...fail\n");
762         return 0;
763 }
764
765 /* 
766  * Start up the chkpwd daemon so validpw() has something to talk to
767  */
768 void start_chkpwd_daemon(void) {
769         pid_t chkpwd_pid;
770         struct stat filestats;
771         int i;
772
773         CtdlLogPrintf(CTDL_DEBUG, "Starting chkpwd daemon for host authentication mode\n");
774
775         if ((stat(file_chkpwd, &filestats)==-1) ||
776             (filestats.st_size==0)){
777                 printf("didn't find chkpwd daemon in %s: %s\n", file_chkpwd, strerror(errno));
778                 abort();
779         }
780         if (pipe(chkpwd_write_pipe) != 0) {
781                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
782                 abort();
783         }
784         if (pipe(chkpwd_read_pipe) != 0) {
785                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
786                 abort();
787         }
788
789         chkpwd_pid = fork();
790         if (chkpwd_pid < 0) {
791                 CtdlLogPrintf(CTDL_EMERG, "Unable to fork chkpwd daemon: %s\n", strerror(errno));
792                 abort();
793         }
794         if (chkpwd_pid == 0) {
795                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
796                 dup2(chkpwd_write_pipe[0], 0);
797                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
798                 dup2(chkpwd_read_pipe[1], 1);
799                 CtdlLogPrintf(CTDL_DEBUG, "Now closing stuff\n");
800                 for (i=2; i<256; ++i) close(i);
801                 CtdlLogPrintf(CTDL_DEBUG, "Now calling execl(%s)\n", file_chkpwd);
802                 execl(file_chkpwd, file_chkpwd, NULL);
803                 CtdlLogPrintf(CTDL_EMERG, "Unable to exec chkpwd daemon: %s\n", strerror(errno));
804                 abort();
805                 exit(errno);
806         }
807 }
808
809
810 int CtdlTryPassword(char *password)
811 {
812         int code;
813
814         if ((CC->logged_in)) {
815                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: already logged in\n");
816                 return pass_already_logged_in;
817         }
818         if (!strcmp(CC->curr_user, NLI)) {
819                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: no user selected\n");
820                 return pass_no_user;
821         }
822         if (getuser(&CC->user, CC->curr_user)) {
823                 CtdlLogPrintf(CTDL_ERR, "CtdlTryPassword: internal error\n");
824                 return pass_internal_error;
825         }
826         if (password == NULL) {
827                 CtdlLogPrintf(CTDL_INFO, "CtdlTryPassword: NULL password string supplied\n");
828                 return pass_wrong_password;
829         }
830         code = (-1);
831
832         if (CC->is_master) {
833                 code = strcmp(password, config.c_master_pass);
834         }
835
836         else if (config.c_auth_mode == AUTHMODE_HOST) {
837
838                 /* host auth mode */
839
840                 if (validpw(CC->user.uid, password)) {
841                         code = 0;
842
843                         /*
844                          * sooper-seekrit hack: populate the password field in the
845                          * citadel database with the password that the user typed,
846                          * if it's correct.  This allows most sites to convert from
847                          * host auth to native auth if they want to.  If you think
848                          * this is a security hazard, comment it out.
849                          */
850
851                         lgetuser(&CC->user, CC->curr_user);
852                         safestrncpy(CC->user.password, password, sizeof CC->user.password);
853                         lputuser(&CC->user);
854
855                         /*
856                          * (sooper-seekrit hack ends here)
857                          */
858
859                 }
860                 else {
861                         code = (-1);
862                 }
863         }
864
865         else {
866
867                 /* native auth mode */
868
869                 strproc(password);
870                 strproc(CC->user.password);
871                 code = strcasecmp(CC->user.password, password);
872                 strproc(password);
873                 strproc(CC->user.password);
874                 code = strcasecmp(CC->user.password, password);
875         }
876
877         if (!code) {
878                 do_login();
879                 return pass_ok;
880         } else {
881                 CtdlLogPrintf(CTDL_WARNING, "Bad password specified for <%s>\n", CC->curr_user);
882                 return pass_wrong_password;
883         }
884 }
885
886
887 void cmd_pass(char *buf)
888 {
889         char password[256];
890         int a;
891
892         extract_token(password, buf, 0, '|', sizeof password);
893         a = CtdlTryPassword(password);
894
895         switch (a) {
896         case pass_already_logged_in:
897                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
898                 return;
899         case pass_no_user:
900                 cprintf("%d You must send a name with USER first.\n",
901                         ERROR + USERNAME_REQUIRED);
902                 return;
903         case pass_wrong_password:
904                 cprintf("%d Wrong password.\n", ERROR + PASSWORD_REQUIRED);
905                 return;
906         case pass_ok:
907                 logged_in_response();
908                 return;
909         }
910 }
911
912
913
914 /*
915  * Delete a user record *and* all of its related resources.
916  */
917 int purge_user(char pname[])
918 {
919         char filename[64];
920         struct ctdluser usbuf;
921         char usernamekey[USERNAME_SIZE];
922         struct CitContext *ccptr;
923         int user_is_logged_in = 0;
924
925         makeuserkey(usernamekey, pname);
926
927         /* If the name is empty we can't find them in the DB any way so just return */
928         if (IsEmptyStr(pname))
929                 return (ERROR + NO_SUCH_USER);
930
931         if (getuser(&usbuf, pname) != 0) {
932                 CtdlLogPrintf(CTDL_ERR, "Cannot purge user <%s> - not found\n", pname);
933                 return (ERROR + NO_SUCH_USER);
934         }
935         /* Don't delete a user who is currently logged in.  Instead, just
936          * set the access level to 0, and let the account get swept up
937          * during the next purge.
938          */
939         user_is_logged_in = 0;
940         begin_critical_section(S_SESSION_TABLE);
941         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
942                 if (ccptr->user.usernum == usbuf.usernum) {
943                         user_is_logged_in = 1;
944                 }
945         }
946         end_critical_section(S_SESSION_TABLE);
947         if (user_is_logged_in == 1) {
948                 CtdlLogPrintf(CTDL_WARNING, "User <%s> is logged in; not deleting.\n", pname);
949                 usbuf.axlevel = 0;
950                 putuser(&usbuf);
951                 return (1);
952         }
953         CtdlLogPrintf(CTDL_NOTICE, "Deleting user <%s>\n", pname);
954
955         /* Perform any purge functions registered by server extensions */
956         PerformUserHooks(&usbuf, EVT_PURGEUSER);
957
958         /* delete any existing user/room relationships */
959         cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
960
961         /* delete the users-by-number index record */
962         cdb_delete(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long));
963
964         /* delete the userlog entry */
965         cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
966
967         /* remove the user's bio file */
968         snprintf(filename, 
969                          sizeof filename, 
970                          "%s/%ld",
971                          ctdl_bio_dir,
972                          usbuf.usernum);
973         unlink(filename);
974
975         /* remove the user's picture */
976         snprintf(filename, 
977                          sizeof filename, 
978                          "%s/%ld.gif",
979                          ctdl_image_dir,
980                          usbuf.usernum);
981         unlink(filename);
982
983         return (0);
984 }
985
986
987 int internal_create_user (char *username, struct ctdluser *usbuf, uid_t uid)
988 {
989         if (!getuser(usbuf, username)) {
990                 return (ERROR + ALREADY_EXISTS);
991         }
992
993         /* Go ahead and initialize a new user record */
994         memset(usbuf, 0, sizeof(struct ctdluser));
995         safestrncpy(usbuf->fullname, username, sizeof usbuf->fullname);
996         strcpy(usbuf->password, "");
997         usbuf->uid = uid;
998
999         /* These are the default flags on new accounts */
1000         usbuf->flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
1001
1002         usbuf->timescalled = 0;
1003         usbuf->posted = 0;
1004         usbuf->axlevel = config.c_initax;
1005         usbuf->USscreenwidth = 80;
1006         usbuf->USscreenheight = 24;
1007         usbuf->lastcall = time(NULL);
1008
1009         /* fetch a new user number */
1010         usbuf->usernum = get_new_user_number();
1011
1012         /* add user to the database */
1013         putuser(usbuf);
1014         cdb_store(CDB_USERSBYNUMBER, &usbuf->usernum, sizeof(long), usbuf->fullname, strlen(usbuf->fullname)+1);
1015
1016         return 0;
1017 }
1018
1019
1020
1021 /*
1022  * create_user()  -  back end processing to create a new user
1023  *
1024  * Set 'newusername' to the desired account name.
1025  * Set 'become_user' to nonzero if this is self-service account creation and we want
1026  * to actually log in as the user we just created, otherwise set it to 0.
1027  */
1028 int create_user(char *newusername, int become_user)
1029 {
1030         struct ctdluser usbuf;
1031         struct ctdlroom qrbuf;
1032         char username[256];
1033         char mailboxname[ROOMNAMELEN];
1034         char buf[SIZ];
1035         int retval;
1036         uid_t uid = (-1);
1037         
1038
1039         safestrncpy(username, newusername, sizeof username);
1040         strproc(username);
1041
1042         
1043         if (config.c_auth_mode == AUTHMODE_HOST) {
1044
1045                 /* host auth mode */
1046
1047                 struct passwd pd;
1048                 struct passwd *tempPwdPtr;
1049                 char pwdbuffer[256];
1050         
1051 #ifdef HAVE_GETPWNAM_R
1052 #ifdef SOLARIS_GETPWUID
1053                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof(pwdbuffer));
1054 #else // SOLARIS_GETPWUID
1055                 getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer, &tempPwdPtr);
1056 #endif // SOLARIS_GETPWUID
1057 #else // HAVE_GETPWNAM_R
1058                 tempPwdPtr = NULL;
1059 #endif // HAVE_GETPWNAM_R
1060                 if (tempPwdPtr != NULL) {
1061                         extract_token(username, pd.pw_gecos, 0, ',', sizeof username);
1062                         uid = pd.pw_uid;
1063                         if (IsEmptyStr (username))
1064                         {
1065                                 CtdlLogPrintf (CTDL_EMERG, 
1066                                          "Can't find Realname for user %s [%d] in the Host Auth Database; giving up.\n", 
1067                                          newusername, pd.pw_uid);
1068                                 snprintf(buf, SIZ, 
1069                                          "Can't find Realname for user %s [%d] in the Host Auth Database; giving up.\n",
1070                                          newusername, pd.pw_uid);
1071                                 aide_message(buf, "User Creation Failure Notice");
1072
1073                         }
1074                 }
1075                 else {
1076                         return (ERROR + NO_SUCH_USER);
1077                 }
1078         }
1079         
1080         if ((retval = internal_create_user(username, &usbuf, uid)) != 0)
1081                 return retval;
1082         
1083         /*
1084          * Give the user a private mailbox and a configuration room.
1085          * Make the latter an invisible system room.
1086          */
1087         MailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
1088         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_MAILBOX);
1089
1090         MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
1091         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_BBS);
1092         if (lgetroom(&qrbuf, mailboxname) == 0) {
1093                 qrbuf.QRflags2 |= QR2_SYSTEM;
1094                 lputroom(&qrbuf);
1095         }
1096
1097         /* Perform any create functions registered by server extensions */
1098         PerformUserHooks(&usbuf, EVT_NEWUSER);
1099
1100         /* Everything below this line can be bypassed if administratively
1101          * creating a user, instead of doing self-service account creation
1102          */
1103
1104         if (become_user) {
1105                 /* Now become the user we just created */
1106                 memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
1107                 safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
1108                 do_login();
1109         
1110                 /* Check to make sure we're still who we think we are */
1111                 if (getuser(&CC->user, CC->curr_user)) {
1112                         return (ERROR + INTERNAL_ERROR);
1113                 }
1114         }
1115         
1116         snprintf(buf, SIZ, 
1117                 "New user account <%s> has been created, from host %s [%s].\n",
1118                 username,
1119                 CC->cs_host,
1120                 CC->cs_addr
1121         );
1122         aide_message(buf, "User Creation Notice");
1123         CtdlLogPrintf(CTDL_NOTICE, "New user <%s> created\n", username);
1124         return (0);
1125 }
1126
1127
1128
1129 /*
1130  * cmd_newu()  -  create a new user account and log in as that user
1131  */
1132 void cmd_newu(char *cmdbuf)
1133 {
1134         int a;
1135         char username[26];
1136
1137         if (config.c_auth_mode != AUTHMODE_NATIVE) {
1138                 cprintf("%d This system does not use native mode authentication.\n",
1139                         ERROR + NOT_HERE);
1140                 return;
1141         }
1142
1143         if (config.c_disable_newu) {
1144                 cprintf("%d Self-service user account creation "
1145                         "is disabled on this system.\n", ERROR + NOT_HERE);
1146                 return;
1147         }
1148
1149         if (CC->logged_in) {
1150                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
1151                 return;
1152         }
1153         if (CC->nologin) {
1154                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
1155                         ERROR + MAX_SESSIONS_EXCEEDED,
1156                         config.c_nodename, config.c_maxsessions);
1157         }
1158         extract_token(username, cmdbuf, 0, '|', sizeof username);
1159         username[25] = 0;
1160         strproc(username);
1161
1162         if (IsEmptyStr(username)) {
1163                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1164                 return;
1165         }
1166
1167         if ((!strcasecmp(username, "bbs")) ||
1168             (!strcasecmp(username, "new")) ||
1169             (!strcasecmp(username, "."))) {
1170                 cprintf("%d '%s' is an invalid login name.\n", ERROR + ILLEGAL_VALUE, username);
1171                 return;
1172         }
1173
1174         a = create_user(username, 1);
1175
1176         if (a == 0) {
1177                 logged_in_response();
1178         } else if (a == ERROR + ALREADY_EXISTS) {
1179                 cprintf("%d '%s' already exists.\n",
1180                         ERROR + ALREADY_EXISTS, username);
1181                 return;
1182         } else if (a == ERROR + INTERNAL_ERROR) {
1183                 cprintf("%d Internal error - user record disappeared?\n",
1184                         ERROR + INTERNAL_ERROR);
1185                 return;
1186         } else {
1187                 cprintf("%d unknown error\n", ERROR + INTERNAL_ERROR);
1188         }
1189 }
1190
1191
1192 /*
1193  * set password - back end api code
1194  */
1195 void CtdlSetPassword(char *new_pw)
1196 {
1197         lgetuser(&CC->user, CC->curr_user);
1198         safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
1199         lputuser(&CC->user);
1200         CtdlLogPrintf(CTDL_INFO, "Password changed for user <%s>\n", CC->curr_user);
1201         PerformSessionHooks(EVT_SETPASS);
1202 }
1203
1204
1205 /*
1206  * set password - citadel protocol implementation
1207  */
1208 void cmd_setp(char *new_pw)
1209 {
1210         int generate_random_password = 0;
1211
1212         if (CtdlAccessCheck(ac_logged_in)) {
1213                 return;
1214         }
1215         if ( (CC->user.uid != CTDLUID) && (CC->user.uid != (-1)) ) {
1216                 cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR + NOT_HERE);
1217                 return;
1218         }
1219         if (CC->is_master) {
1220                 cprintf("%d The master prefix password cannot be changed with this command.\n",
1221                         ERROR + NOT_HERE);
1222                 return;
1223         }
1224
1225         if (!strcasecmp(new_pw, "GENERATE_RANDOM_PASSWORD")) {
1226                 char random_password[17];
1227                 generate_random_password = 1;
1228                 snprintf(random_password, sizeof random_password, "%08lx%08lx", random(), random());
1229                 CtdlSetPassword(random_password);
1230                 cprintf("%d %s\n", CIT_OK, random_password);
1231         }
1232         else {
1233                 strproc(new_pw);
1234                 if (IsEmptyStr(new_pw)) {
1235                         cprintf("%d Password unchanged.\n", CIT_OK);
1236                         return;
1237                 }
1238                 CtdlSetPassword(new_pw);
1239                 cprintf("%d Password changed.\n", CIT_OK);
1240         }
1241 }
1242
1243
1244 /*
1245  * cmd_creu() - administratively create a new user account (do not log in to it)
1246  */
1247 void cmd_creu(char *cmdbuf)
1248 {
1249         int a;
1250         char username[26];
1251         char password[32];
1252         struct ctdluser tmp;
1253
1254         if (CtdlAccessCheck(ac_aide)) {
1255                 return;
1256         }
1257
1258         extract_token(username, cmdbuf, 0, '|', sizeof username);
1259         extract_token(password, cmdbuf, 1, '|', sizeof password);
1260         username[25] = 0;
1261         password[31] = 0;
1262         strproc(username);
1263         strproc(password);
1264
1265         if (IsEmptyStr(username)) {
1266                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1267                 return;
1268         }
1269
1270         a = create_user(username, 0);
1271
1272         if (a == 0) {
1273                 if (!IsEmptyStr(password)) {
1274                         lgetuser(&tmp, username);
1275                         safestrncpy(tmp.password, password, sizeof(tmp.password));
1276                         lputuser(&tmp);
1277                 }
1278                 cprintf("%d User '%s' created %s.\n", CIT_OK, username,
1279                                 (!IsEmptyStr(password)) ? "and password set" :
1280                                 "with no password");
1281                 return;
1282         } else if (a == ERROR + ALREADY_EXISTS) {
1283                 cprintf("%d '%s' already exists.\n", ERROR + ALREADY_EXISTS, username);
1284                 return;
1285         } else if ( (config.c_auth_mode != AUTHMODE_NATIVE) && (a == ERROR + NO_SUCH_USER) ) {
1286                 cprintf("%d User accounts are not created within Citadel in host authentication mode.\n",
1287                         ERROR + NO_SUCH_USER);
1288                 return;
1289         } else {
1290                 cprintf("%d An error occurred creating the user account.\n", ERROR + INTERNAL_ERROR);
1291         }
1292 }
1293
1294
1295
1296 /*
1297  * get user parameters
1298  */
1299 void cmd_getu(void)
1300 {
1301
1302         if (CtdlAccessCheck(ac_logged_in))
1303                 return;
1304
1305         getuser(&CC->user, CC->curr_user);
1306         cprintf("%d %d|%d|%d|\n",
1307                 CIT_OK,
1308                 CC->user.USscreenwidth,
1309                 CC->user.USscreenheight,
1310                 (CC->user.flags & US_USER_SET)
1311             );
1312 }
1313
1314 /*
1315  * set user parameters
1316  */
1317 void cmd_setu(char *new_parms)
1318 {
1319         if (CtdlAccessCheck(ac_logged_in))
1320                 return;
1321
1322         if (num_parms(new_parms) < 3) {
1323                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
1324                 return;
1325         }
1326         lgetuser(&CC->user, CC->curr_user);
1327         CC->user.USscreenwidth = extract_int(new_parms, 0);
1328         CC->user.USscreenheight = extract_int(new_parms, 1);
1329         CC->user.flags = CC->user.flags & (~US_USER_SET);
1330         CC->user.flags = CC->user.flags |
1331             (extract_int(new_parms, 2) & US_USER_SET);
1332
1333         lputuser(&CC->user);
1334         cprintf("%d Ok\n", CIT_OK);
1335 }
1336
1337 /*
1338  * set last read pointer
1339  */
1340 void cmd_slrp(char *new_ptr)
1341 {
1342         long newlr;
1343         struct visit vbuf;
1344         struct visit original_vbuf;
1345
1346         if (CtdlAccessCheck(ac_logged_in)) {
1347                 return;
1348         }
1349
1350         if (!strncasecmp(new_ptr, "highest", 7)) {
1351                 newlr = CC->room.QRhighest;
1352         } else {
1353                 newlr = atol(new_ptr);
1354         }
1355
1356         lgetuser(&CC->user, CC->curr_user);
1357
1358         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1359         memcpy(&original_vbuf, &vbuf, sizeof(struct visit));
1360         vbuf.v_lastseen = newlr;
1361         snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
1362
1363         /* Only rewrite the record if it changed */
1364         if ( (vbuf.v_lastseen != original_vbuf.v_lastseen)
1365            || (strcmp(vbuf.v_seen, original_vbuf.v_seen)) ) {
1366                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1367         }
1368
1369         lputuser(&CC->user);
1370         cprintf("%d %ld\n", CIT_OK, newlr);
1371 }
1372
1373
1374 void cmd_seen(char *argbuf) {
1375         long target_msgnum = 0L;
1376         int target_setting = 0;
1377
1378         if (CtdlAccessCheck(ac_logged_in)) {
1379                 return;
1380         }
1381
1382         if (num_parms(argbuf) != 2) {
1383                 cprintf("%d Invalid parameters\n", ERROR + ILLEGAL_VALUE);
1384                 return;
1385         }
1386
1387         target_msgnum = extract_long(argbuf, 0);
1388         target_setting = extract_int(argbuf, 1);
1389
1390         CtdlSetSeen(&target_msgnum, 1, target_setting,
1391                         ctdlsetseen_seen, NULL, NULL);
1392         cprintf("%d OK\n", CIT_OK);
1393 }
1394
1395
1396 void cmd_gtsn(char *argbuf) {
1397         char buf[SIZ];
1398
1399         if (CtdlAccessCheck(ac_logged_in)) {
1400                 return;
1401         }
1402
1403         CtdlGetSeen(buf, ctdlsetseen_seen);
1404         cprintf("%d %s\n", CIT_OK, buf);
1405 }
1406
1407
1408 /*
1409  * API function for cmd_invt_kick() and anything else that needs to
1410  * invite or kick out a user to/from a room.
1411  * 
1412  * Set iuser to the name of the user, and op to 1=invite or 0=kick
1413  */
1414 int CtdlInvtKick(char *iuser, int op) {
1415         struct ctdluser USscratch;
1416         struct visit vbuf;
1417         char bbb[SIZ];
1418
1419         if (getuser(&USscratch, iuser) != 0) {
1420                 return(1);
1421         }
1422
1423         CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
1424         if (op == 1) {
1425                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1426                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1427         }
1428         if (op == 0) {
1429                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1430                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1431         }
1432         CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
1433
1434         /* post a message in Aide> saying what we just did */
1435         snprintf(bbb, sizeof bbb, "%s has been %s \"%s\" by %s.\n",
1436                 iuser,
1437                 ((op == 1) ? "invited to" : "kicked out of"),
1438                 CC->room.QRname,
1439                 CC->user.fullname);
1440         aide_message(bbb,"User Admin Message");
1441
1442         return(0);
1443 }
1444
1445
1446 /*
1447  * INVT and KICK commands
1448  */
1449 void cmd_invt_kick(char *iuser, int op) {
1450
1451         /*
1452          * These commands are only allowed by aides, room aides,
1453          * and room namespace owners
1454          */
1455         if (is_room_aide()
1456            || (atol(CC->room.QRname) == CC->user.usernum) ) {
1457                 /* access granted */
1458         } else {
1459                 /* access denied */
1460                 cprintf("%d Higher access or room ownership required.\n",
1461                         ERROR + HIGHER_ACCESS_REQUIRED);
1462                 return;
1463         }
1464
1465         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1466                          ROOMNAMELEN)) {
1467                 cprintf("%d Can't add/remove users from this room.\n",
1468                         ERROR + NOT_HERE);
1469                 return;
1470         }
1471
1472         if (CtdlInvtKick(iuser, op) != 0) {
1473                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1474                 return;
1475         }
1476
1477         cprintf("%d %s %s %s.\n",
1478                 CIT_OK, iuser,
1479                 ((op == 1) ? "invited to" : "kicked out of"),
1480                 CC->room.QRname);
1481         return;
1482 }
1483
1484
1485 /*
1486  * Forget (Zap) the current room (API call)
1487  * Returns 0 on success
1488  */
1489 int CtdlForgetThisRoom(void) {
1490         struct visit vbuf;
1491
1492         /* On some systems, Aides are not allowed to forget rooms */
1493         if (is_aide() && (config.c_aide_zap == 0)
1494            && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
1495                 return(1);
1496         }
1497
1498         lgetuser(&CC->user, CC->curr_user);
1499         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1500
1501         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1502         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1503
1504         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1505         lputuser(&CC->user);
1506
1507         /* Return to the Lobby, so we don't end up in an undefined room */
1508         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1509         return(0);
1510
1511 }
1512
1513
1514 /*
1515  * forget (Zap) the current room
1516  */
1517 void cmd_forg(void)
1518 {
1519
1520         if (CtdlAccessCheck(ac_logged_in)) {
1521                 return;
1522         }
1523
1524         if (CtdlForgetThisRoom() == 0) {
1525                 cprintf("%d Ok\n", CIT_OK);
1526         }
1527         else {
1528                 cprintf("%d You may not forget this room.\n", ERROR + NOT_HERE);
1529         }
1530 }
1531
1532 /*
1533  * Get Next Unregistered User
1534  */
1535 void cmd_gnur(void)
1536 {
1537         struct cdbdata *cdbus;
1538         struct ctdluser usbuf;
1539
1540         if (CtdlAccessCheck(ac_aide)) {
1541                 return;
1542         }
1543
1544         if ((CitControl.MMflags & MM_VALID) == 0) {
1545                 cprintf("%d There are no unvalidated users.\n", CIT_OK);
1546                 return;
1547         }
1548
1549         /* There are unvalidated users.  Traverse the user database,
1550          * and return the first user we find that needs validation.
1551          */
1552         cdb_rewind(CDB_USERS);
1553         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1554                 memset(&usbuf, 0, sizeof(struct ctdluser));
1555                 memcpy(&usbuf, cdbus->ptr,
1556                        ((cdbus->len > sizeof(struct ctdluser)) ?
1557                         sizeof(struct ctdluser) : cdbus->len));
1558                 cdb_free(cdbus);
1559                 if ((usbuf.flags & US_NEEDVALID)
1560                     && (usbuf.axlevel > 0)) {
1561                         cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
1562                         cdb_close_cursor(CDB_USERS);
1563                         return;
1564                 }
1565         }
1566
1567         /* If we get to this point, there are no more unvalidated users.
1568          * Therefore we clear the "users need validation" flag.
1569          */
1570
1571         begin_critical_section(S_CONTROL);
1572         get_control();
1573         CitControl.MMflags = CitControl.MMflags & (~MM_VALID);
1574         put_control();
1575         end_critical_section(S_CONTROL);
1576         cprintf("%d *** End of registration.\n", CIT_OK);
1577
1578
1579 }
1580
1581
1582 /*
1583  * validate a user
1584  */
1585 void cmd_vali(char *v_args)
1586 {
1587         char user[128];
1588         int newax;
1589         struct ctdluser userbuf;
1590
1591         extract_token(user, v_args, 0, '|', sizeof user);
1592         newax = extract_int(v_args, 1);
1593
1594         if (CtdlAccessCheck(ac_aide)) {
1595                 return;
1596         }
1597
1598         if (lgetuser(&userbuf, user) != 0) {
1599                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, user);
1600                 return;
1601         }
1602
1603         userbuf.axlevel = newax;
1604         userbuf.flags = (userbuf.flags & ~US_NEEDVALID);
1605
1606         lputuser(&userbuf);
1607
1608         /* If the access level was set to zero, delete the user */
1609         if (newax == 0) {
1610                 if (purge_user(user) == 0) {
1611                         cprintf("%d %s Deleted.\n", CIT_OK, userbuf.fullname);
1612                         return;
1613                 }
1614         }
1615         cprintf("%d User '%s' validated.\n", CIT_OK, userbuf.fullname);
1616 }
1617
1618
1619
1620 /* 
1621  *  Traverse the user file...
1622  */
1623 void ForEachUser(void (*CallBack) (struct ctdluser * EachUser, void *out_data),
1624                  void *in_data)
1625 {
1626         struct ctdluser usbuf;
1627         struct cdbdata *cdbus;
1628
1629         cdb_rewind(CDB_USERS);
1630
1631         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1632                 memset(&usbuf, 0, sizeof(struct ctdluser));
1633                 memcpy(&usbuf, cdbus->ptr,
1634                        ((cdbus->len > sizeof(struct ctdluser)) ?
1635                         sizeof(struct ctdluser) : cdbus->len));
1636                 cdb_free(cdbus);
1637                 (*CallBack) (&usbuf, in_data);
1638         }
1639 }
1640
1641
1642 /*
1643  * List one user (this works with cmd_list)
1644  */
1645 void ListThisUser(struct ctdluser *usbuf, void *data)
1646 {
1647         char *searchstring;
1648
1649         searchstring = (char *)data;
1650         if (bmstrcasestr(usbuf->fullname, searchstring) == NULL) {
1651                 return;
1652         }
1653
1654         if (usbuf->axlevel > 0) {
1655                 if ((CC->user.axlevel >= 6)
1656                     || ((usbuf->flags & US_UNLISTED) == 0)
1657                     || ((CC->internal_pgm))) {
1658                         cprintf("%s|%d|%ld|%ld|%ld|%ld||\n",
1659                                 usbuf->fullname,
1660                                 usbuf->axlevel,
1661                                 usbuf->usernum,
1662                                 (long)usbuf->lastcall,
1663                                 usbuf->timescalled,
1664                                 usbuf->posted);
1665                 }
1666         }
1667 }
1668
1669 /* 
1670  *  List users (searchstring may be empty to list all users)
1671  */
1672 void cmd_list(char *cmdbuf)
1673 {
1674         char searchstring[256];
1675         extract_token(searchstring, cmdbuf, 0, '|', sizeof searchstring);
1676         striplt(searchstring);
1677         cprintf("%d \n", LISTING_FOLLOWS);
1678         ForEachUser(ListThisUser, (void *)searchstring );
1679         cprintf("000\n");
1680 }
1681
1682
1683
1684
1685 /*
1686  * assorted info we need to check at login
1687  */
1688 void cmd_chek(void)
1689 {
1690         int mail = 0;
1691         int regis = 0;
1692         int vali = 0;
1693
1694         if (CtdlAccessCheck(ac_logged_in)) {
1695                 return;
1696         }
1697
1698         getuser(&CC->user, CC->curr_user);      /* no lock is needed here */
1699         if ((REGISCALL != 0) && ((CC->user.flags & US_REGIS) == 0))
1700                 regis = 1;
1701
1702         if (CC->user.axlevel >= 6) {
1703                 get_control();
1704                 if (CitControl.MMflags & MM_VALID)
1705                         vali = 1;
1706         }
1707
1708         /* check for mail */
1709         mail = InitialMailCheck();
1710
1711         cprintf("%d %d|%d|%d|%s|\n", CIT_OK, mail, regis, vali, CC->cs_inet_email);
1712 }
1713
1714
1715 /*
1716  * check to see if a user exists
1717  */
1718 void cmd_qusr(char *who)
1719 {
1720         struct ctdluser usbuf;
1721
1722         if (getuser(&usbuf, who) == 0) {
1723                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1724         } else {
1725                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1726         }
1727 }
1728
1729
1730 /*
1731  * Administrative Get User Parameters
1732  */
1733 void cmd_agup(char *cmdbuf)
1734 {
1735         struct ctdluser usbuf;
1736         char requested_user[128];
1737
1738         if (CtdlAccessCheck(ac_aide)) {
1739                 return;
1740         }
1741
1742         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1743         if (getuser(&usbuf, requested_user) != 0) {
1744                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1745                 return;
1746         }
1747         cprintf("%d %s|%s|%u|%ld|%ld|%d|%ld|%ld|%d\n",
1748                 CIT_OK,
1749                 usbuf.fullname,
1750                 usbuf.password,
1751                 usbuf.flags,
1752                 usbuf.timescalled,
1753                 usbuf.posted,
1754                 (int) usbuf.axlevel,
1755                 usbuf.usernum,
1756                 (long)usbuf.lastcall,
1757                 usbuf.USuserpurge);
1758 }
1759
1760
1761
1762 /*
1763  * Administrative Set User Parameters
1764  */
1765 void cmd_asup(char *cmdbuf)
1766 {
1767         struct ctdluser usbuf;
1768         char requested_user[128];
1769         char notify[SIZ];
1770         int np;
1771         int newax;
1772         int deleted = 0;
1773
1774         if (CtdlAccessCheck(ac_aide))
1775                 return;
1776
1777         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1778         if (lgetuser(&usbuf, requested_user) != 0) {
1779                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1780                 return;
1781         }
1782         np = num_parms(cmdbuf);
1783         if (np > 1)
1784                 extract_token(usbuf.password, cmdbuf, 1, '|', sizeof usbuf.password);
1785         if (np > 2)
1786                 usbuf.flags = extract_int(cmdbuf, 2);
1787         if (np > 3)
1788                 usbuf.timescalled = extract_int(cmdbuf, 3);
1789         if (np > 4)
1790                 usbuf.posted = extract_int(cmdbuf, 4);
1791         if (np > 5) {
1792                 newax = extract_int(cmdbuf, 5);
1793                 if ((newax >= 0) && (newax <= 6)) {
1794                         usbuf.axlevel = extract_int(cmdbuf, 5);
1795                 }
1796         }
1797         if (np > 7) {
1798                 usbuf.lastcall = extract_long(cmdbuf, 7);
1799         }
1800         if (np > 8) {
1801                 usbuf.USuserpurge = extract_int(cmdbuf, 8);
1802         }
1803         lputuser(&usbuf);
1804         if (usbuf.axlevel == 0) {
1805                 if (purge_user(requested_user) == 0) {
1806                         deleted = 1;
1807                 }
1808         }
1809
1810         if (deleted) {
1811                 snprintf(notify, SIZ, 
1812                          "User \"%s\" has been deleted by %s.\n",
1813                          usbuf.fullname, CC->user.fullname);
1814                 aide_message(notify, "User Deletion Message");
1815         }
1816
1817         cprintf("%d Ok", CIT_OK);
1818         if (deleted)
1819                 cprintf(" (%s deleted)", requested_user);
1820         cprintf("\n");
1821 }
1822
1823
1824
1825 /*
1826  * Check to see if the user who we just sent mail to is logged in.  If yes,
1827  * bump the 'new mail' counter for their session.  That enables them to
1828  * receive a new mail notification without having to hit the database.
1829  */
1830 void BumpNewMailCounter(long which_user) {
1831         struct CitContext *ptr;
1832
1833         begin_critical_section(S_SESSION_TABLE);
1834
1835         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1836                 if (ptr->user.usernum == which_user) {
1837                         ptr->newmail += 1;
1838                 }
1839         }
1840
1841         end_critical_section(S_SESSION_TABLE);
1842 }
1843
1844
1845 /*
1846  * Count the number of new mail messages the user has
1847  */
1848 int NewMailCount()
1849 {
1850         int num_newmsgs = 0;
1851
1852         num_newmsgs = CC->newmail;
1853         CC->newmail = 0;
1854
1855         return (num_newmsgs);
1856 }
1857
1858
1859 /*
1860  * Count the number of new mail messages the user has
1861  */
1862 int InitialMailCheck()
1863 {
1864         int num_newmsgs = 0;
1865         int a;
1866         char mailboxname[ROOMNAMELEN];
1867         struct ctdlroom mailbox;
1868         struct visit vbuf;
1869         struct cdbdata *cdbfr;
1870         long *msglist = NULL;
1871         int num_msgs = 0;
1872
1873         MailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
1874         if (getroom(&mailbox, mailboxname) != 0)
1875                 return (0);
1876         CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
1877
1878         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1879
1880         if (cdbfr != NULL) {
1881                 msglist = malloc(cdbfr->len);
1882                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1883                 num_msgs = cdbfr->len / sizeof(long);
1884                 cdb_free(cdbfr);
1885         }
1886         if (num_msgs > 0)
1887                 for (a = 0; a < num_msgs; ++a) {
1888                         if (msglist[a] > 0L) {
1889                                 if (msglist[a] > vbuf.v_lastseen) {
1890                                         ++num_newmsgs;
1891                                 }
1892                         }
1893                 }
1894         if (msglist != NULL)
1895                 free(msglist);
1896
1897         return (num_newmsgs);
1898 }
1899
1900
1901
1902 /*
1903  * Set the preferred view for the current user/room combination
1904  */
1905 void cmd_view(char *cmdbuf) {
1906         int requested_view;
1907         struct visit vbuf;
1908
1909         if (CtdlAccessCheck(ac_logged_in)) {
1910                 return;
1911         }
1912
1913         requested_view = extract_int(cmdbuf, 0);
1914
1915         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1916         vbuf.v_view = requested_view;
1917         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1918         
1919         cprintf("%d ok\n", CIT_OK);
1920 }
1921
1922
1923 /*
1924  * Rename a user
1925  */
1926 void cmd_renu(char *cmdbuf)
1927 {
1928         int retcode;
1929         char oldname[USERNAME_SIZE];
1930         char newname[USERNAME_SIZE];
1931
1932         if (CtdlAccessCheck(ac_aide)) {
1933                 return;
1934         }
1935
1936         extract_token(oldname, cmdbuf, 0, '|', sizeof oldname);
1937         extract_token(newname, cmdbuf, 1, '|', sizeof newname);
1938
1939         retcode = rename_user(oldname, newname);
1940         switch(retcode) {
1941                 case RENAMEUSER_OK:
1942                         cprintf("%d '%s' has been renamed to '%s'.\n", CIT_OK, oldname, newname);
1943                         return;
1944                 case RENAMEUSER_LOGGED_IN:
1945                         cprintf("%d '%s' is currently logged in and cannot be renamed.\n",
1946                                 ERROR + ALREADY_LOGGED_IN , oldname);
1947                         return;
1948                 case RENAMEUSER_NOT_FOUND:
1949                         cprintf("%d '%s' does not exist.\n", ERROR + NO_SUCH_USER, oldname);
1950                         return;
1951                 case RENAMEUSER_ALREADY_EXISTS:
1952                         cprintf("%d A user named '%s' already exists.\n", ERROR + ALREADY_EXISTS, newname);
1953                         return;
1954         }
1955
1956         cprintf("%d An unknown error occurred.\n", ERROR);
1957 }