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