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