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