Did away with lprintf all together now its called CtdlLogPrintf()
[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                 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
191                         CtdlLogPrintf(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         CtdlLogPrintf(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                 CtdlLogPrintf(CTDL_DEBUG, "asking host about <%s>\n", username);
450 #ifdef HAVE_GETPWNAM_R
451 #ifdef SOLARIS_GETPWUID
452                 CtdlLogPrintf(CTDL_DEBUG, "Calling getpwnam_r()\n");
453                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer);
454 #else // SOLARIS_GETPWUID
455                 CtdlLogPrintf(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                 CtdlLogPrintf(CTDL_DEBUG, "SHOULD NEVER GET HERE!!!\n");
460                 tempPwdPtr = NULL;
461 #endif // HAVE_GETPWNAM_R
462                 if (tempPwdPtr == NULL) {
463                         CtdlLogPrintf(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                 CtdlLogPrintf(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         CtdlLogPrintf(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(void)
623 {
624         struct CitContext *CCC = CC;    /* CachedCitContext - performance boost */
625         /*
626          * If there is a download in progress, abort it.
627          */
628         if (CCC->download_fp != NULL) {
629                 fclose(CCC->download_fp);
630                 CCC->download_fp = NULL;
631         }
632
633         /*
634          * If there is an upload in progress, abort it.
635          */
636         if (CCC->upload_fp != NULL) {
637                 abort_upl(CCC);
638         }
639
640         /*
641          * If we were talking to a network node, we're not anymore...
642          */
643         if (!IsEmptyStr(CCC->net_node)) {
644                 network_talking_to(CCC->net_node, NTT_REMOVE);
645         }
646
647         /* Run any hooks registered by modules... */
648         PerformSessionHooks(EVT_LOGOUT);
649         
650         /*
651          * Clear out some session data.  Most likely, the CitContext for this
652          * session is about to get nuked when the session disconnects, but
653          * since it's possible to log in again without reconnecting, we cannot
654          * make that assumption.
655          */
656         strcpy(CCC->fake_username, "");
657         strcpy(CCC->fake_hostname, "");
658         strcpy(CCC->fake_roomname, "");
659         CCC->logged_in = 0;
660
661         /* Check to see if the user was deleted whilst logged in and purge them if necessary */
662         if (CCC->user.axlevel == 0)
663                 purge_user(CCC->user.fullname);
664
665         /* Free any output buffers */
666         if (CCC->output_buffer != NULL) {
667                 unbuffer_output();
668         }
669 }
670
671 /*
672  * Validate a password on the host unix system by talking to the chkpwd daemon
673  */
674 static int validpw(uid_t uid, const char *pass)
675 {
676         char buf[256];
677
678         if (IsEmptyStr(pass)) {
679                 CtdlLogPrintf(CTDL_DEBUG, "refusing to check empty password for uid=%d using chkpwd...\n", uid);
680                 return 0;
681         }
682
683         CtdlLogPrintf(CTDL_DEBUG, "Validating password for uid=%d using chkpwd...\n", uid);
684
685         begin_critical_section(S_CHKPWD);
686         write(chkpwd_write_pipe[1], &uid, sizeof(uid_t));
687         write(chkpwd_write_pipe[1], pass, 256);
688         read(chkpwd_read_pipe[0], buf, 4);
689         end_critical_section(S_CHKPWD);
690
691         if (!strncmp(buf, "PASS", 4)) {
692                 CtdlLogPrintf(CTDL_DEBUG, "...pass\n");
693                 return(1);
694         }
695
696         CtdlLogPrintf(CTDL_DEBUG, "...fail\n");
697         return 0;
698 }
699
700 /* 
701  * Start up the chkpwd daemon so validpw() has something to talk to
702  */
703 void start_chkpwd_daemon(void) {
704         pid_t chkpwd_pid;
705         struct stat filestats;
706         int i;
707
708         CtdlLogPrintf(CTDL_DEBUG, "Starting chkpwd daemon for host authentication mode\n");
709
710         if ((stat(file_chkpwd, &filestats)==-1) ||
711             (filestats.st_size==0)){
712                 printf("didn't find chkpwd daemon in %s: %s\n", file_chkpwd, strerror(errno));
713                 abort();
714         }
715         if (pipe(chkpwd_write_pipe) != 0) {
716                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
717                 abort();
718         }
719         if (pipe(chkpwd_read_pipe) != 0) {
720                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
721                 abort();
722         }
723
724         chkpwd_pid = fork();
725         if (chkpwd_pid < 0) {
726                 CtdlLogPrintf(CTDL_EMERG, "Unable to fork chkpwd daemon: %s\n", strerror(errno));
727                 abort();
728         }
729         if (chkpwd_pid == 0) {
730                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
731                 dup2(chkpwd_write_pipe[0], 0);
732                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
733                 dup2(chkpwd_read_pipe[1], 1);
734                 CtdlLogPrintf(CTDL_DEBUG, "Now closing stuff\n");
735                 for (i=2; i<256; ++i) close(i);
736                 CtdlLogPrintf(CTDL_DEBUG, "Now calling execl(%s)\n", file_chkpwd);
737                 execl(file_chkpwd, file_chkpwd, NULL);
738                 CtdlLogPrintf(CTDL_EMERG, "Unable to exec chkpwd daemon: %s\n", strerror(errno));
739                 abort();
740                 exit(errno);
741         }
742 }
743
744
745 void do_login()
746 {
747         (CC->logged_in) = 1;
748         session_startup();
749 }
750
751
752 int CtdlTryPassword(char *password)
753 {
754         int code;
755
756         if ((CC->logged_in)) {
757                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: already logged in\n");
758                 return pass_already_logged_in;
759         }
760         if (!strcmp(CC->curr_user, NLI)) {
761                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: no user selected\n");
762                 return pass_no_user;
763         }
764         if (getuser(&CC->user, CC->curr_user)) {
765                 CtdlLogPrintf(CTDL_ERR, "CtdlTryPassword: internal error\n");
766                 return pass_internal_error;
767         }
768         if (password == NULL) {
769                 CtdlLogPrintf(CTDL_INFO, "CtdlTryPassword: NULL password string supplied\n");
770                 return pass_wrong_password;
771         }
772         code = (-1);
773
774         if (CC->is_master) {
775                 code = strcmp(password, config.c_master_pass);
776         }
777
778         else if (config.c_auth_mode == AUTHMODE_HOST) {
779
780                 /* host auth mode */
781
782                 if (validpw(CC->user.uid, password)) {
783                         code = 0;
784
785                         /*
786                          * sooper-seekrit hack: populate the password field in the
787                          * citadel database with the password that the user typed,
788                          * if it's correct.  This allows most sites to convert from
789                          * host auth to native auth if they want to.  If you think
790                          * this is a security hazard, comment it out.
791                          */
792
793                         lgetuser(&CC->user, CC->curr_user);
794                         safestrncpy(CC->user.password, password, sizeof CC->user.password);
795                         lputuser(&CC->user);
796
797                         /*
798                          * (sooper-seekrit hack ends here)
799                          */
800
801                 }
802                 else {
803                         code = (-1);
804                 }
805         }
806
807         else {
808
809                 /* native auth mode */
810
811                 strproc(password);
812                 strproc(CC->user.password);
813                 code = strcasecmp(CC->user.password, password);
814                 strproc(password);
815                 strproc(CC->user.password);
816                 code = strcasecmp(CC->user.password, password);
817         }
818
819         if (!code) {
820                 do_login();
821                 return pass_ok;
822         } else {
823                 CtdlLogPrintf(CTDL_WARNING, "Bad password specified for <%s>\n", CC->curr_user);
824                 return pass_wrong_password;
825         }
826 }
827
828
829 void cmd_pass(char *buf)
830 {
831         char password[256];
832         int a;
833
834         extract_token(password, buf, 0, '|', sizeof password);
835         a = CtdlTryPassword(password);
836
837         switch (a) {
838         case pass_already_logged_in:
839                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
840                 return;
841         case pass_no_user:
842                 cprintf("%d You must send a name with USER first.\n",
843                         ERROR + USERNAME_REQUIRED);
844                 return;
845         case pass_wrong_password:
846                 cprintf("%d Wrong password.\n", ERROR + PASSWORD_REQUIRED);
847                 return;
848         case pass_ok:
849                 logged_in_response();
850                 return;
851         }
852 }
853
854
855
856 /*
857  * Delete a user record *and* all of its related resources.
858  */
859 int purge_user(char pname[])
860 {
861         char filename[64];
862         struct ctdluser usbuf;
863         char usernamekey[USERNAME_SIZE];
864         struct CitContext *ccptr;
865         int user_is_logged_in = 0;
866
867         makeuserkey(usernamekey, pname);
868
869         /* If the name is empty we can't find them in the DB any way so just return */
870         if (IsEmptyStr(pname))
871                 return (ERROR + NO_SUCH_USER);
872
873         if (getuser(&usbuf, pname) != 0) {
874                 CtdlLogPrintf(CTDL_ERR, "Cannot purge user <%s> - not found\n", pname);
875                 return (ERROR + NO_SUCH_USER);
876         }
877         /* Don't delete a user who is currently logged in.  Instead, just
878          * set the access level to 0, and let the account get swept up
879          * during the next purge.
880          */
881         user_is_logged_in = 0;
882         begin_critical_section(S_SESSION_TABLE);
883         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
884                 if (ccptr->user.usernum == usbuf.usernum) {
885                         user_is_logged_in = 1;
886                 }
887         }
888         end_critical_section(S_SESSION_TABLE);
889         if (user_is_logged_in == 1) {
890                 CtdlLogPrintf(CTDL_WARNING, "User <%s> is logged in; not deleting.\n", pname);
891                 usbuf.axlevel = 0;
892                 putuser(&usbuf);
893                 return (1);
894         }
895         CtdlLogPrintf(CTDL_NOTICE, "Deleting user <%s>\n", pname);
896
897         /* Perform any purge functions registered by server extensions */
898         PerformUserHooks(&usbuf, EVT_PURGEUSER);
899
900         /* delete any existing user/room relationships */
901         cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
902
903         /* delete the userlog entry */
904         cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
905
906         /* remove the user's bio file */
907         snprintf(filename, 
908                          sizeof filename, 
909                          "%s/%ld",
910                          ctdl_bio_dir,
911                          usbuf.usernum);
912         unlink(filename);
913
914         /* remove the user's picture */
915         snprintf(filename, 
916                          sizeof filename, 
917                          "%s/%ld.gif",
918                          ctdl_image_dir,
919                          usbuf.usernum);
920         unlink(filename);
921
922         return (0);
923 }
924
925
926 /*
927  * create_user()  -  back end processing to create a new user
928  *
929  * Set 'newusername' to the desired account name.
930  * Set 'become_user' to nonzero if this is self-service account creation and we want
931  * to actually log in as the user we just created, otherwise set it to 0.
932  */
933 int create_user(char *newusername, int become_user)
934 {
935         struct ctdluser usbuf;
936         struct ctdlroom qrbuf;
937         char username[256];
938         char mailboxname[ROOMNAMELEN];
939         char buf[SIZ];
940         uid_t uid = (-1);
941
942         safestrncpy(username, newusername, sizeof username);
943         strproc(username);
944
945         if (config.c_auth_mode == AUTHMODE_HOST) {
946
947                 /* host auth mode */
948
949                 struct passwd pd;
950                 struct passwd *tempPwdPtr;
951                 char pwdbuffer[256];
952         
953 #ifdef HAVE_GETPWNAM_R
954 #ifdef SOLARIS_GETPWUID
955                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof(pwdbuffer));
956 #else // SOLARIS_GETPWUID
957                 getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer, &tempPwdPtr);
958 #endif // SOLARIS_GETPWUID
959 #else // HAVE_GETPWNAM_R
960                 tempPwdPtr = NULL;
961 #endif // HAVE_GETPWNAM_R
962                 if (tempPwdPtr != NULL) {
963                         extract_token(username, pd.pw_gecos, 0, ',', sizeof username);
964                         uid = pd.pw_uid;
965                         if (IsEmptyStr (username))
966                         {
967                                 CtdlLogPrintf (CTDL_EMERG, 
968                                          "Can't find Realname for user %s [%d] in the Host Auth Database; giving up.\n", 
969                                          newusername, pd.pw_uid);
970                                 snprintf(buf, SIZ, 
971                                          "Can't find Realname for user %s [%d] in the Host Auth Database; giving up.\n",
972                                          newusername, pd.pw_uid);
973                                 aide_message(buf, "User Creation Failure Notice");
974
975                         }
976                 }
977                 else {
978                         return (ERROR + NO_SUCH_USER);
979                 }
980         }
981
982         if (!getuser(&usbuf, username)) {
983                 return (ERROR + ALREADY_EXISTS);
984         }
985
986         /* Go ahead and initialize a new user record */
987         memset(&usbuf, 0, sizeof(struct ctdluser));
988         safestrncpy(usbuf.fullname, username, sizeof usbuf.fullname);
989         strcpy(usbuf.password, "");
990         usbuf.uid = uid;
991
992         /* These are the default flags on new accounts */
993         usbuf.flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
994
995         usbuf.timescalled = 0;
996         usbuf.posted = 0;
997         usbuf.axlevel = config.c_initax;
998         usbuf.USscreenwidth = 80;
999         usbuf.USscreenheight = 24;
1000         usbuf.lastcall = time(NULL);
1001
1002         /* fetch a new user number */
1003         usbuf.usernum = get_new_user_number();
1004
1005         /* The very first user created on the system will always be an Aide */
1006         if (usbuf.usernum == 1L) {
1007                 usbuf.axlevel = 6;
1008         }
1009
1010         /* add user to userlog */
1011         putuser(&usbuf);
1012
1013         /*
1014          * Give the user a private mailbox and a configuration room.
1015          * Make the latter an invisible system room.
1016          */
1017         MailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
1018         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_MAILBOX);
1019
1020         MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
1021         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_BBS);
1022         if (lgetroom(&qrbuf, mailboxname) == 0) {
1023                 qrbuf.QRflags2 |= QR2_SYSTEM;
1024                 lputroom(&qrbuf);
1025         }
1026
1027         /* Perform any create functions registered by server extensions */
1028         PerformUserHooks(&usbuf, EVT_NEWUSER);
1029
1030         /* Everything below this line can be bypassed if administratively
1031          * creating a user, instead of doing self-service account creation
1032          */
1033
1034         if (become_user) {
1035                 /* Now become the user we just created */
1036                 memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
1037                 safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
1038                 CC->logged_in = 1;
1039         
1040                 /* Check to make sure we're still who we think we are */
1041                 if (getuser(&CC->user, CC->curr_user)) {
1042                         return (ERROR + INTERNAL_ERROR);
1043                 }
1044         }
1045         
1046         snprintf(buf, SIZ, 
1047                 "New user account <%s> has been created, from host %s [%s].\n",
1048                 username,
1049                 CC->cs_host,
1050                 CC->cs_addr
1051         );
1052         aide_message(buf, "User Creation Notice");
1053         CtdlLogPrintf(CTDL_NOTICE, "New user <%s> created\n", username);
1054         return (0);
1055 }
1056
1057
1058
1059
1060 /*
1061  * cmd_newu()  -  create a new user account and log in as that user
1062  */
1063 void cmd_newu(char *cmdbuf)
1064 {
1065         int a;
1066         char username[26];
1067
1068         if (config.c_auth_mode != AUTHMODE_NATIVE) {
1069                 cprintf("%d This system does not use native mode authentication.\n",
1070                         ERROR + NOT_HERE);
1071                 return;
1072         }
1073
1074         if (config.c_disable_newu) {
1075                 cprintf("%d Self-service user account creation "
1076                         "is disabled on this system.\n", ERROR + NOT_HERE);
1077                 return;
1078         }
1079
1080         if (CC->logged_in) {
1081                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
1082                 return;
1083         }
1084         if (CC->nologin) {
1085                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
1086                         ERROR + MAX_SESSIONS_EXCEEDED,
1087                         config.c_nodename, config.c_maxsessions);
1088         }
1089         extract_token(username, cmdbuf, 0, '|', sizeof username);
1090         username[25] = 0;
1091         strproc(username);
1092
1093         if (IsEmptyStr(username)) {
1094                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1095                 return;
1096         }
1097
1098         if ((!strcasecmp(username, "bbs")) ||
1099             (!strcasecmp(username, "new")) ||
1100             (!strcasecmp(username, "."))) {
1101                 cprintf("%d '%s' is an invalid login name.\n", ERROR + ILLEGAL_VALUE, username);
1102                 return;
1103         }
1104
1105         a = create_user(username, 1);
1106
1107         if (a == 0) {
1108                 session_startup();
1109                 logged_in_response();
1110         } else if (a == ERROR + ALREADY_EXISTS) {
1111                 cprintf("%d '%s' already exists.\n",
1112                         ERROR + ALREADY_EXISTS, username);
1113                 return;
1114         } else if (a == ERROR + INTERNAL_ERROR) {
1115                 cprintf("%d Internal error - user record disappeared?\n",
1116                         ERROR + INTERNAL_ERROR);
1117                 return;
1118         } else {
1119                 cprintf("%d unknown error\n", ERROR + INTERNAL_ERROR);
1120         }
1121 }
1122
1123
1124
1125 /*
1126  * set password
1127  */
1128 void cmd_setp(char *new_pw)
1129 {
1130         if (CtdlAccessCheck(ac_logged_in)) {
1131                 return;
1132         }
1133         if ( (CC->user.uid != CTDLUID) && (CC->user.uid != (-1)) ) {
1134                 cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR + NOT_HERE);
1135                 return;
1136         }
1137         if (CC->is_master) {
1138                 cprintf("%d The master prefix password cannot be changed with this command.\n",
1139                         ERROR + NOT_HERE);
1140                 return;
1141         }
1142         strproc(new_pw);
1143         if (IsEmptyStr(new_pw)) {
1144                 cprintf("%d Password unchanged.\n", CIT_OK);
1145                 return;
1146         }
1147         lgetuser(&CC->user, CC->curr_user);
1148         safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
1149         lputuser(&CC->user);
1150         cprintf("%d Password changed.\n", CIT_OK);
1151         CtdlLogPrintf(CTDL_INFO, "Password changed for user <%s>\n", CC->curr_user);
1152         PerformSessionHooks(EVT_SETPASS);
1153 }
1154
1155
1156 /*
1157  * cmd_creu() - administratively create a new user account (do not log in to it)
1158  */
1159 void cmd_creu(char *cmdbuf)
1160 {
1161         int a;
1162         char username[26];
1163         char password[32];
1164         struct ctdluser tmp;
1165
1166         if (CtdlAccessCheck(ac_aide)) {
1167                 return;
1168         }
1169
1170         extract_token(username, cmdbuf, 0, '|', sizeof username);
1171         extract_token(password, cmdbuf, 1, '|', sizeof password);
1172         username[25] = 0;
1173         password[31] = 0;
1174         strproc(username);
1175         strproc(password);
1176
1177         if (IsEmptyStr(username)) {
1178                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1179                 return;
1180         }
1181
1182         a = create_user(username, 0);
1183
1184         if (a == 0) {
1185                 if (!IsEmptyStr(password)) {
1186                         lgetuser(&tmp, username);
1187                         safestrncpy(tmp.password, password, sizeof(tmp.password));
1188                         lputuser(&tmp);
1189                 }
1190                 cprintf("%d User '%s' created %s.\n", CIT_OK, username,
1191                                 (!IsEmptyStr(password)) ? "and password set" :
1192                                 "with no password");
1193                 return;
1194         } else if (a == ERROR + ALREADY_EXISTS) {
1195                 cprintf("%d '%s' already exists.\n", ERROR + ALREADY_EXISTS, username);
1196                 return;
1197         } else if ( (config.c_auth_mode != AUTHMODE_NATIVE) && (a == ERROR + NO_SUCH_USER) ) {
1198                 cprintf("%d User accounts are not created within Citadel in host authentication mode.\n",
1199                         ERROR + NO_SUCH_USER);
1200                 return;
1201         } else {
1202                 cprintf("%d An error occurred creating the user account.\n", ERROR + INTERNAL_ERROR);
1203         }
1204 }
1205
1206
1207
1208 /*
1209  * get user parameters
1210  */
1211 void cmd_getu(void)
1212 {
1213
1214         if (CtdlAccessCheck(ac_logged_in))
1215                 return;
1216
1217         getuser(&CC->user, CC->curr_user);
1218         cprintf("%d %d|%d|%d|\n",
1219                 CIT_OK,
1220                 CC->user.USscreenwidth,
1221                 CC->user.USscreenheight,
1222                 (CC->user.flags & US_USER_SET)
1223             );
1224 }
1225
1226 /*
1227  * set user parameters
1228  */
1229 void cmd_setu(char *new_parms)
1230 {
1231         if (CtdlAccessCheck(ac_logged_in))
1232                 return;
1233
1234         if (num_parms(new_parms) < 3) {
1235                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
1236                 return;
1237         }
1238         lgetuser(&CC->user, CC->curr_user);
1239         CC->user.USscreenwidth = extract_int(new_parms, 0);
1240         CC->user.USscreenheight = extract_int(new_parms, 1);
1241         CC->user.flags = CC->user.flags & (~US_USER_SET);
1242         CC->user.flags = CC->user.flags |
1243             (extract_int(new_parms, 2) & US_USER_SET);
1244
1245         lputuser(&CC->user);
1246         cprintf("%d Ok\n", CIT_OK);
1247 }
1248
1249 /*
1250  * set last read pointer
1251  */
1252 void cmd_slrp(char *new_ptr)
1253 {
1254         long newlr;
1255         struct visit vbuf;
1256         struct visit original_vbuf;
1257
1258         if (CtdlAccessCheck(ac_logged_in)) {
1259                 return;
1260         }
1261
1262         if (!strncasecmp(new_ptr, "highest", 7)) {
1263                 newlr = CC->room.QRhighest;
1264         } else {
1265                 newlr = atol(new_ptr);
1266         }
1267
1268         lgetuser(&CC->user, CC->curr_user);
1269
1270         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1271         memcpy(&original_vbuf, &vbuf, sizeof(struct visit));
1272         vbuf.v_lastseen = newlr;
1273         snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
1274
1275         /* Only rewrite the record if it changed */
1276         if ( (vbuf.v_lastseen != original_vbuf.v_lastseen)
1277            || (strcmp(vbuf.v_seen, original_vbuf.v_seen)) ) {
1278                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1279         }
1280
1281         lputuser(&CC->user);
1282         cprintf("%d %ld\n", CIT_OK, newlr);
1283 }
1284
1285
1286 void cmd_seen(char *argbuf) {
1287         long target_msgnum = 0L;
1288         int target_setting = 0;
1289
1290         if (CtdlAccessCheck(ac_logged_in)) {
1291                 return;
1292         }
1293
1294         if (num_parms(argbuf) != 2) {
1295                 cprintf("%d Invalid parameters\n", ERROR + ILLEGAL_VALUE);
1296                 return;
1297         }
1298
1299         target_msgnum = extract_long(argbuf, 0);
1300         target_setting = extract_int(argbuf, 1);
1301
1302         CtdlSetSeen(&target_msgnum, 1, target_setting,
1303                         ctdlsetseen_seen, NULL, NULL);
1304         cprintf("%d OK\n", CIT_OK);
1305 }
1306
1307
1308 void cmd_gtsn(char *argbuf) {
1309         char buf[SIZ];
1310
1311         if (CtdlAccessCheck(ac_logged_in)) {
1312                 return;
1313         }
1314
1315         CtdlGetSeen(buf, ctdlsetseen_seen);
1316         cprintf("%d %s\n", CIT_OK, buf);
1317 }
1318
1319
1320 /*
1321  * API function for cmd_invt_kick() and anything else that needs to
1322  * invite or kick out a user to/from a room.
1323  * 
1324  * Set iuser to the name of the user, and op to 1=invite or 0=kick
1325  */
1326 int CtdlInvtKick(char *iuser, int op) {
1327         struct ctdluser USscratch;
1328         struct visit vbuf;
1329         char bbb[SIZ];
1330
1331         if (getuser(&USscratch, iuser) != 0) {
1332                 return(1);
1333         }
1334
1335         CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
1336         if (op == 1) {
1337                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1338                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1339         }
1340         if (op == 0) {
1341                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1342                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1343         }
1344         CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
1345
1346         /* post a message in Aide> saying what we just did */
1347         snprintf(bbb, sizeof bbb, "%s has been %s \"%s\" by %s.\n",
1348                 iuser,
1349                 ((op == 1) ? "invited to" : "kicked out of"),
1350                 CC->room.QRname,
1351                 CC->user.fullname);
1352         aide_message(bbb,"User Admin Message");
1353
1354         return(0);
1355 }
1356
1357
1358 /*
1359  * INVT and KICK commands
1360  */
1361 void cmd_invt_kick(char *iuser, int op) {
1362
1363         /*
1364          * These commands are only allowed by aides, room aides,
1365          * and room namespace owners
1366          */
1367         if (is_room_aide()
1368            || (atol(CC->room.QRname) == CC->user.usernum) ) {
1369                 /* access granted */
1370         } else {
1371                 /* access denied */
1372                 cprintf("%d Higher access or room ownership required.\n",
1373                         ERROR + HIGHER_ACCESS_REQUIRED);
1374                 return;
1375         }
1376
1377         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1378                          ROOMNAMELEN)) {
1379                 cprintf("%d Can't add/remove users from this room.\n",
1380                         ERROR + NOT_HERE);
1381                 return;
1382         }
1383
1384         if (CtdlInvtKick(iuser, op) != 0) {
1385                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1386                 return;
1387         }
1388
1389         cprintf("%d %s %s %s.\n",
1390                 CIT_OK, iuser,
1391                 ((op == 1) ? "invited to" : "kicked out of"),
1392                 CC->room.QRname);
1393         return;
1394 }
1395
1396
1397 /*
1398  * Forget (Zap) the current room (API call)
1399  * Returns 0 on success
1400  */
1401 int CtdlForgetThisRoom(void) {
1402         struct visit vbuf;
1403
1404         /* On some systems, Aides are not allowed to forget rooms */
1405         if (is_aide() && (config.c_aide_zap == 0)
1406            && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
1407                 return(1);
1408         }
1409
1410         lgetuser(&CC->user, CC->curr_user);
1411         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1412
1413         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1414         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1415
1416         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1417         lputuser(&CC->user);
1418
1419         /* Return to the Lobby, so we don't end up in an undefined room */
1420         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1421         return(0);
1422
1423 }
1424
1425
1426 /*
1427  * forget (Zap) the current room
1428  */
1429 void cmd_forg(void)
1430 {
1431
1432         if (CtdlAccessCheck(ac_logged_in)) {
1433                 return;
1434         }
1435
1436         if (CtdlForgetThisRoom() == 0) {
1437                 cprintf("%d Ok\n", CIT_OK);
1438         }
1439         else {
1440                 cprintf("%d You may not forget this room.\n", ERROR + NOT_HERE);
1441         }
1442 }
1443
1444 /*
1445  * Get Next Unregistered User
1446  */
1447 void cmd_gnur(void)
1448 {
1449         struct cdbdata *cdbus;
1450         struct ctdluser usbuf;
1451
1452         if (CtdlAccessCheck(ac_aide)) {
1453                 return;
1454         }
1455
1456         if ((CitControl.MMflags & MM_VALID) == 0) {
1457                 cprintf("%d There are no unvalidated users.\n", CIT_OK);
1458                 return;
1459         }
1460
1461         /* There are unvalidated users.  Traverse the user database,
1462          * and return the first user we find that needs validation.
1463          */
1464         cdb_rewind(CDB_USERS);
1465         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1466                 memset(&usbuf, 0, sizeof(struct ctdluser));
1467                 memcpy(&usbuf, cdbus->ptr,
1468                        ((cdbus->len > sizeof(struct ctdluser)) ?
1469                         sizeof(struct ctdluser) : cdbus->len));
1470                 cdb_free(cdbus);
1471                 if ((usbuf.flags & US_NEEDVALID)
1472                     && (usbuf.axlevel > 0)) {
1473                         cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
1474                         cdb_close_cursor(CDB_USERS);
1475                         return;
1476                 }
1477         }
1478
1479         /* If we get to this point, there are no more unvalidated users.
1480          * Therefore we clear the "users need validation" flag.
1481          */
1482
1483         begin_critical_section(S_CONTROL);
1484         get_control();
1485         CitControl.MMflags = CitControl.MMflags & (~MM_VALID);
1486         put_control();
1487         end_critical_section(S_CONTROL);
1488         cprintf("%d *** End of registration.\n", CIT_OK);
1489
1490
1491 }
1492
1493
1494 /*
1495  * validate a user
1496  */
1497 void cmd_vali(char *v_args)
1498 {
1499         char user[128];
1500         int newax;
1501         struct ctdluser userbuf;
1502
1503         extract_token(user, v_args, 0, '|', sizeof user);
1504         newax = extract_int(v_args, 1);
1505
1506         if (CtdlAccessCheck(ac_aide)) {
1507                 return;
1508         }
1509
1510         if (lgetuser(&userbuf, user) != 0) {
1511                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, user);
1512                 return;
1513         }
1514
1515         userbuf.axlevel = newax;
1516         userbuf.flags = (userbuf.flags & ~US_NEEDVALID);
1517
1518         lputuser(&userbuf);
1519
1520         /* If the access level was set to zero, delete the user */
1521         if (newax == 0) {
1522                 if (purge_user(user) == 0) {
1523                         cprintf("%d %s Deleted.\n", CIT_OK, userbuf.fullname);
1524                         return;
1525                 }
1526         }
1527         cprintf("%d User '%s' validated.\n", CIT_OK, userbuf.fullname);
1528 }
1529
1530
1531
1532 /* 
1533  *  Traverse the user file...
1534  */
1535 void ForEachUser(void (*CallBack) (struct ctdluser * EachUser, void *out_data),
1536                  void *in_data)
1537 {
1538         struct ctdluser usbuf;
1539         struct cdbdata *cdbus;
1540
1541         cdb_rewind(CDB_USERS);
1542
1543         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1544                 memset(&usbuf, 0, sizeof(struct ctdluser));
1545                 memcpy(&usbuf, cdbus->ptr,
1546                        ((cdbus->len > sizeof(struct ctdluser)) ?
1547                         sizeof(struct ctdluser) : cdbus->len));
1548                 cdb_free(cdbus);
1549                 (*CallBack) (&usbuf, in_data);
1550         }
1551 }
1552
1553
1554 /*
1555  * List one user (this works with cmd_list)
1556  */
1557 void ListThisUser(struct ctdluser *usbuf, void *data)
1558 {
1559         char *searchstring;
1560
1561         searchstring = (char *)data;
1562         if (bmstrcasestr(usbuf->fullname, searchstring) == NULL) {
1563                 return;
1564         }
1565
1566         if (usbuf->axlevel > 0) {
1567                 if ((CC->user.axlevel >= 6)
1568                     || ((usbuf->flags & US_UNLISTED) == 0)
1569                     || ((CC->internal_pgm))) {
1570                         cprintf("%s|%d|%ld|%ld|%ld|%ld|",
1571                                 usbuf->fullname,
1572                                 usbuf->axlevel,
1573                                 usbuf->usernum,
1574                                 (long)usbuf->lastcall,
1575                                 usbuf->timescalled,
1576                                 usbuf->posted);
1577                         if (CC->user.axlevel >= 6)
1578                                 cprintf("%s", usbuf->password);
1579                         cprintf("\n");
1580                 }
1581         }
1582 }
1583
1584 /* 
1585  *  List users (searchstring may be empty to list all users)
1586  */
1587 void cmd_list(char *cmdbuf)
1588 {
1589         char searchstring[256];
1590         extract_token(searchstring, cmdbuf, 0, '|', sizeof searchstring);
1591         striplt(searchstring);
1592         cprintf("%d \n", LISTING_FOLLOWS);
1593         ForEachUser(ListThisUser, (void *)searchstring );
1594         cprintf("000\n");
1595 }
1596
1597
1598
1599
1600 /*
1601  * assorted info we need to check at login
1602  */
1603 void cmd_chek(void)
1604 {
1605         int mail = 0;
1606         int regis = 0;
1607         int vali = 0;
1608
1609         if (CtdlAccessCheck(ac_logged_in)) {
1610                 return;
1611         }
1612
1613         getuser(&CC->user, CC->curr_user);      /* no lock is needed here */
1614         if ((REGISCALL != 0) && ((CC->user.flags & US_REGIS) == 0))
1615                 regis = 1;
1616
1617         if (CC->user.axlevel >= 6) {
1618                 get_control();
1619                 if (CitControl.MMflags & MM_VALID)
1620                         vali = 1;
1621         }
1622
1623         /* check for mail */
1624         mail = InitialMailCheck();
1625
1626         cprintf("%d %d|%d|%d|%s|\n", CIT_OK, mail, regis, vali, CC->cs_inet_email);
1627 }
1628
1629
1630 /*
1631  * check to see if a user exists
1632  */
1633 void cmd_qusr(char *who)
1634 {
1635         struct ctdluser usbuf;
1636
1637         if (getuser(&usbuf, who) == 0) {
1638                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1639         } else {
1640                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1641         }
1642 }
1643
1644
1645 /*
1646  * Administrative Get User Parameters
1647  */
1648 void cmd_agup(char *cmdbuf)
1649 {
1650         struct ctdluser usbuf;
1651         char requested_user[128];
1652
1653         if (CtdlAccessCheck(ac_aide)) {
1654                 return;
1655         }
1656
1657         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1658         if (getuser(&usbuf, requested_user) != 0) {
1659                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1660                 return;
1661         }
1662         cprintf("%d %s|%s|%u|%ld|%ld|%d|%ld|%ld|%d\n",
1663                 CIT_OK,
1664                 usbuf.fullname,
1665                 usbuf.password,
1666                 usbuf.flags,
1667                 usbuf.timescalled,
1668                 usbuf.posted,
1669                 (int) usbuf.axlevel,
1670                 usbuf.usernum,
1671                 (long)usbuf.lastcall,
1672                 usbuf.USuserpurge);
1673 }
1674
1675
1676
1677 /*
1678  * Administrative Set User Parameters
1679  */
1680 void cmd_asup(char *cmdbuf)
1681 {
1682         struct ctdluser usbuf;
1683         char requested_user[128];
1684         char notify[SIZ];
1685         int np;
1686         int newax;
1687         int deleted = 0;
1688
1689         if (CtdlAccessCheck(ac_aide))
1690                 return;
1691
1692         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1693         if (lgetuser(&usbuf, requested_user) != 0) {
1694                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1695                 return;
1696         }
1697         np = num_parms(cmdbuf);
1698         if (np > 1)
1699                 extract_token(usbuf.password, cmdbuf, 1, '|', sizeof usbuf.password);
1700         if (np > 2)
1701                 usbuf.flags = extract_int(cmdbuf, 2);
1702         if (np > 3)
1703                 usbuf.timescalled = extract_int(cmdbuf, 3);
1704         if (np > 4)
1705                 usbuf.posted = extract_int(cmdbuf, 4);
1706         if (np > 5) {
1707                 newax = extract_int(cmdbuf, 5);
1708                 if ((newax >= 0) && (newax <= 6)) {
1709                         usbuf.axlevel = extract_int(cmdbuf, 5);
1710                 }
1711         }
1712         if (np > 7) {
1713                 usbuf.lastcall = extract_long(cmdbuf, 7);
1714         }
1715         if (np > 8) {
1716                 usbuf.USuserpurge = extract_int(cmdbuf, 8);
1717         }
1718         lputuser(&usbuf);
1719         if (usbuf.axlevel == 0) {
1720                 if (purge_user(requested_user) == 0) {
1721                         deleted = 1;
1722                 }
1723         }
1724
1725         if (deleted) {
1726                 snprintf(notify, SIZ, 
1727                          "User \"%s\" has been deleted by %s.\n",
1728                          usbuf.fullname, CC->user.fullname);
1729                 aide_message(notify, "User Deletion Message");
1730         }
1731
1732         cprintf("%d Ok", CIT_OK);
1733         if (deleted)
1734                 cprintf(" (%s deleted)", requested_user);
1735         cprintf("\n");
1736 }
1737
1738
1739
1740 /*
1741  * Check to see if the user who we just sent mail to is logged in.  If yes,
1742  * bump the 'new mail' counter for their session.  That enables them to
1743  * receive a new mail notification without having to hit the database.
1744  */
1745 void BumpNewMailCounter(long which_user) {
1746         struct CitContext *ptr;
1747
1748         begin_critical_section(S_SESSION_TABLE);
1749
1750         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1751                 if (ptr->user.usernum == which_user) {
1752                         ptr->newmail += 1;
1753                 }
1754         }
1755
1756         end_critical_section(S_SESSION_TABLE);
1757 }
1758
1759
1760 /*
1761  * Count the number of new mail messages the user has
1762  */
1763 int NewMailCount()
1764 {
1765         int num_newmsgs = 0;
1766
1767         num_newmsgs = CC->newmail;
1768         CC->newmail = 0;
1769
1770         return (num_newmsgs);
1771 }
1772
1773
1774 /*
1775  * Count the number of new mail messages the user has
1776  */
1777 int InitialMailCheck()
1778 {
1779         int num_newmsgs = 0;
1780         int a;
1781         char mailboxname[ROOMNAMELEN];
1782         struct ctdlroom mailbox;
1783         struct visit vbuf;
1784         struct cdbdata *cdbfr;
1785         long *msglist = NULL;
1786         int num_msgs = 0;
1787
1788         MailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
1789         if (getroom(&mailbox, mailboxname) != 0)
1790                 return (0);
1791         CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
1792
1793         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1794
1795         if (cdbfr != NULL) {
1796                 msglist = malloc(cdbfr->len);
1797                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1798                 num_msgs = cdbfr->len / sizeof(long);
1799                 cdb_free(cdbfr);
1800         }
1801         if (num_msgs > 0)
1802                 for (a = 0; a < num_msgs; ++a) {
1803                         if (msglist[a] > 0L) {
1804                                 if (msglist[a] > vbuf.v_lastseen) {
1805                                         ++num_newmsgs;
1806                                 }
1807                         }
1808                 }
1809         if (msglist != NULL)
1810                 free(msglist);
1811
1812         return (num_newmsgs);
1813 }
1814
1815
1816
1817 /*
1818  * Set the preferred view for the current user/room combination
1819  */
1820 void cmd_view(char *cmdbuf) {
1821         int requested_view;
1822         struct visit vbuf;
1823
1824         if (CtdlAccessCheck(ac_logged_in)) {
1825                 return;
1826         }
1827
1828         requested_view = extract_int(cmdbuf, 0);
1829
1830         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1831         vbuf.v_view = requested_view;
1832         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1833         
1834         cprintf("%d ok\n", CIT_OK);
1835 }
1836
1837
1838 /*
1839  * Rename a user
1840  */
1841 void cmd_renu(char *cmdbuf)
1842 {
1843         int retcode;
1844         char oldname[USERNAME_SIZE];
1845         char newname[USERNAME_SIZE];
1846
1847         if (CtdlAccessCheck(ac_aide)) {
1848                 return;
1849         }
1850
1851         extract_token(oldname, cmdbuf, 0, '|', sizeof oldname);
1852         extract_token(newname, cmdbuf, 1, '|', sizeof newname);
1853
1854         retcode = rename_user(oldname, newname);
1855         switch(retcode) {
1856                 case RENAMEUSER_OK:
1857                         cprintf("%d '%s' has been renamed to '%s'.\n", CIT_OK, oldname, newname);
1858                         return;
1859                 case RENAMEUSER_LOGGED_IN:
1860                         cprintf("%d '%s' is currently logged in and cannot be renamed.\n",
1861                                 ERROR + ALREADY_LOGGED_IN , oldname);
1862                         return;
1863                 case RENAMEUSER_NOT_FOUND:
1864                         cprintf("%d '%s' does not exist.\n", ERROR + NO_SUCH_USER, oldname);
1865                         return;
1866                 case RENAMEUSER_ALREADY_EXISTS:
1867                         cprintf("%d A user named '%s' already exists.\n", ERROR + ALREADY_EXISTS, newname);
1868                         return;
1869         }
1870
1871         cprintf("%d An unknown error occurred.\n", ERROR);
1872 }