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