]> code.citadel.org Git - citadel.git/blob - citadel/user_ops.c
* Hide the SMTP queue and the sysconfig rooms.
[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, 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 quickroom qrbuf;
686         struct passwd *p = NULL;
687         char username[SIZ];
688         char mailboxname[ROOMNAMELEN];
689         uid_t uid;
690
691         strcpy(username, newusername);
692         strproc(username);
693
694 #ifdef ENABLE_AUTOLOGIN
695         p = (struct passwd *) getpwnam(username);
696 #endif
697         if (p != NULL) {
698                 extract_token(username, p->pw_gecos, 0, ',');
699                 uid = p->pw_uid;
700         } else {
701                 uid = BBSUID;
702         }
703
704         if (!getuser(&usbuf, username)) {
705                 return (ERROR + ALREADY_EXISTS);
706         }
707
708         /* Go ahead and initialize a new user record */
709         memset(&usbuf, 0, sizeof(struct usersupp));
710         strcpy(usbuf.fullname, username);
711         strcpy(usbuf.password, "");
712         usbuf.uid = uid;
713
714         /* These are the default flags on new accounts */
715         usbuf.flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
716
717         usbuf.timescalled = 0;
718         usbuf.posted = 0;
719         usbuf.axlevel = config.c_initax;
720         usbuf.USscreenwidth = 80;
721         usbuf.USscreenheight = 24;
722         usbuf.lastcall = time(NULL);
723
724         /* fetch a new user number */
725         usbuf.usernum = get_new_user_number();
726
727         /* The very first user created on the system will always be an Aide */
728         if (usbuf.usernum == 1L) {
729                 usbuf.axlevel = 6;
730         }
731
732         /* add user to userlog */
733         putuser(&usbuf);
734
735         /*
736          * Give the user a private mailbox and a configuration room.
737          * Make the latter an invisible system room.
738          */
739         MailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
740         create_room(mailboxname, 5, "", 0, 1, 1);
741
742         MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
743         create_room(mailboxname, 5, "", 0, 1, 1);
744         if (lgetroom(&qrbuf, USERCONFIGROOM) == 0) {
745                 qrbuf.QRflags2 |= QR2_SYSTEM;
746                 lputroom(&qrbuf);
747         }
748
749         /* Everything below this line can be bypassed if administratively
750            creating a user, instead of doing self-service account creation
751          */
752
753         if (become_user) {
754                 /* Now become the user we just created */
755                 memcpy(&CC->usersupp, &usbuf, sizeof(struct usersupp));
756                 strcpy(CC->curr_user, username);
757                 CC->logged_in = 1;
758         
759                 /* Check to make sure we're still who we think we are */
760                 if (getuser(&CC->usersupp, CC->curr_user)) {
761                         return (ERROR + INTERNAL_ERROR);
762                 }
763         
764                 rec_log(CL_NEWUSER, CC->curr_user);
765         }
766
767         return (0);
768 }
769
770
771
772
773 /*
774  * cmd_newu()  -  create a new user account and log in as that user
775  */
776 void cmd_newu(char *cmdbuf)
777 {
778         int a;
779         char username[SIZ];
780
781         if (config.c_disable_newu) {
782                 cprintf("%d Self-service user account creation "
783                         "is disabled on this system.\n", ERROR);
784                 return;
785         }
786
787         if (CC->logged_in) {
788                 cprintf("%d Already logged in.\n", ERROR);
789                 return;
790         }
791         if (CC->nologin) {
792                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
793                         ERROR + MAX_SESSIONS_EXCEEDED,
794                         config.c_nodename, config.c_maxsessions);
795         }
796         extract(username, cmdbuf, 0);
797         username[25] = 0;
798         strproc(username);
799
800         if (strlen(username) == 0) {
801                 cprintf("%d You must supply a user name.\n", ERROR);
802                 return;
803         }
804
805         if ((!strcasecmp(username, "bbs")) ||
806             (!strcasecmp(username, "new")) ||
807             (!strcasecmp(username, "."))) {
808                 cprintf("%d '%s' is an invalid login name.\n", ERROR, username);
809                 return;
810         }
811
812         a = create_user(username, 1);
813
814         if (a == 0) {
815                 session_startup();
816                 logged_in_response();
817         } else if (a == ERROR + ALREADY_EXISTS) {
818                 cprintf("%d '%s' already exists.\n",
819                         ERROR + ALREADY_EXISTS, username);
820                 return;
821         } else if (a == ERROR + INTERNAL_ERROR) {
822                 cprintf("%d Internal error - user record disappeared?\n",
823                         ERROR + INTERNAL_ERROR);
824                 return;
825         } else {
826                 cprintf("%d unknown error\n", ERROR);
827         }
828         rec_log(CL_NEWUSER, CC->curr_user);
829 }
830
831
832
833 /*
834  * set password
835  */
836 void cmd_setp(char *new_pw)
837 {
838         if (CtdlAccessCheck(ac_logged_in)) {
839                 return;
840         }
841
842         if (CC->usersupp.uid != BBSUID) {
843                 cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR);
844                 return;
845         }
846         strproc(new_pw);
847         if (strlen(new_pw) == 0) {
848                 cprintf("%d Password unchanged.\n", CIT_OK);
849                 return;
850         }
851         lgetuser(&CC->usersupp, CC->curr_user);
852         strcpy(CC->usersupp.password, new_pw);
853         lputuser(&CC->usersupp);
854         cprintf("%d Password changed.\n", CIT_OK);
855         rec_log(CL_PWCHANGE, CC->curr_user);
856         PerformSessionHooks(EVT_SETPASS);
857 }
858
859
860 /*
861  * cmd_creu()  -  administratively create a new user account (do not log in to it)
862  */
863 void cmd_creu(char *cmdbuf)
864 {
865         int a;
866         char username[SIZ];
867
868         if (CtdlAccessCheck(ac_aide)) {
869                 return;
870         }
871
872         extract(username, cmdbuf, 0);
873         username[25] = 0;
874         strproc(username);
875
876         if (strlen(username) == 0) {
877                 cprintf("%d You must supply a user name.\n", ERROR);
878                 return;
879         }
880
881         a = create_user(username, 0);
882
883         if (a == 0) {
884                 cprintf("%d ok\n", CIT_OK);
885                 return;
886         } else if (a == ERROR + ALREADY_EXISTS) {
887                 cprintf("%d '%s' already exists.\n",
888                         ERROR + ALREADY_EXISTS, username);
889                 return;
890         } else {
891                 cprintf("%d An error occured creating the user account.\n", ERROR);
892         }
893         rec_log(CL_NEWUSER, username);
894 }
895
896
897
898 /*
899  * get user parameters
900  */
901 void cmd_getu(void)
902 {
903
904         if (CtdlAccessCheck(ac_logged_in))
905                 return;
906
907         getuser(&CC->usersupp, CC->curr_user);
908         cprintf("%d %d|%d|%d|\n",
909                 CIT_OK,
910                 CC->usersupp.USscreenwidth,
911                 CC->usersupp.USscreenheight,
912                 (CC->usersupp.flags & US_USER_SET)
913             );
914 }
915
916 /*
917  * set user parameters
918  */
919 void cmd_setu(char *new_parms)
920 {
921         if (CtdlAccessCheck(ac_logged_in))
922                 return;
923
924         if (num_parms(new_parms) < 3) {
925                 cprintf("%d Usage error.\n", ERROR);
926                 return;
927         }
928         lgetuser(&CC->usersupp, CC->curr_user);
929         CC->usersupp.USscreenwidth = extract_int(new_parms, 0);
930         CC->usersupp.USscreenheight = extract_int(new_parms, 1);
931         CC->usersupp.flags = CC->usersupp.flags & (~US_USER_SET);
932         CC->usersupp.flags = CC->usersupp.flags |
933             (extract_int(new_parms, 2) & US_USER_SET);
934
935         lputuser(&CC->usersupp);
936         cprintf("%d Ok\n", CIT_OK);
937 }
938
939 /*
940  * set last read pointer
941  */
942 void cmd_slrp(char *new_ptr)
943 {
944         long newlr;
945         struct visit vbuf;
946
947         if (CtdlAccessCheck(ac_logged_in)) {
948                 return;
949         }
950
951         if (!strncasecmp(new_ptr, "highest", 7)) {
952                 newlr = CC->quickroom.QRhighest;
953         } else {
954                 newlr = atol(new_ptr);
955         }
956
957         lgetuser(&CC->usersupp, CC->curr_user);
958
959         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
960         vbuf.v_lastseen = newlr;
961         snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
962         CtdlSetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
963
964         lputuser(&CC->usersupp);
965         cprintf("%d %ld\n", CIT_OK, newlr);
966 }
967
968
969 void cmd_seen(char *argbuf) {
970         long target_msgnum = 0L;
971         int target_setting = 0;
972
973         if (CtdlAccessCheck(ac_logged_in)) {
974                 return;
975         }
976
977         if (num_parms(argbuf) != 2) {
978                 cprintf("%d Invalid parameters\n", ERROR);
979                 return;
980         }
981
982         target_msgnum = extract_long(argbuf, 0);
983         target_setting = extract_int(argbuf, 1);
984
985         CtdlSetSeen(target_msgnum, target_setting);
986         cprintf("%d OK\n", CIT_OK);
987 }
988
989
990 void cmd_gtsn(char *argbuf) {
991         char buf[SIZ];
992
993         if (CtdlAccessCheck(ac_logged_in)) {
994                 return;
995         }
996
997         CtdlGetSeen(buf);
998         cprintf("%d %s\n", CIT_OK, buf);
999 }
1000
1001
1002
1003 /*
1004  * INVT and KICK commands
1005  */
1006 void cmd_invt_kick(char *iuser, int op)
1007                         /* user name */
1008 {                               /* 1 = invite, 0 = kick out */
1009         struct usersupp USscratch;
1010         char bbb[SIZ];
1011         struct visit vbuf;
1012
1013         /*
1014          * These commands are only allowed by aides, room aides,
1015          * and room namespace owners
1016          */
1017         if (is_room_aide()
1018            || (atol(CC->quickroom.QRname) == CC->usersupp.usernum) ) {
1019                 /* access granted */
1020         } else {
1021                 /* access denied */
1022                 cprintf("%d Higher access or room ownership required.\n",
1023                         ERROR + HIGHER_ACCESS_REQUIRED);
1024                 return;
1025         }
1026
1027         if (!strncasecmp(CC->quickroom.QRname, config.c_baseroom,
1028                          ROOMNAMELEN)) {
1029                 cprintf("%d Can't add/remove users from this room.\n",
1030                         ERROR + NOT_HERE);
1031                 return;
1032         }
1033
1034         if (lgetuser(&USscratch, iuser) != 0) {
1035                 cprintf("%d No such user.\n", ERROR);
1036                 return;
1037         }
1038         CtdlGetRelationship(&vbuf, &USscratch, &CC->quickroom);
1039
1040         if (op == 1) {
1041                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1042                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1043         }
1044         if (op == 0) {
1045                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1046                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1047         }
1048         CtdlSetRelationship(&vbuf, &USscratch, &CC->quickroom);
1049
1050         lputuser(&USscratch);
1051
1052         /* post a message in Aide> saying what we just did */
1053         snprintf(bbb, sizeof bbb, "%s %s %s> by %s\n",
1054                 iuser,
1055                 ((op == 1) ? "invited to" : "kicked out of"),
1056                 CC->quickroom.QRname,
1057                 CC->usersupp.fullname);
1058         aide_message(bbb);
1059
1060         cprintf("%d %s %s %s.\n",
1061                 CIT_OK, iuser,
1062                 ((op == 1) ? "invited to" : "kicked out of"),
1063                 CC->quickroom.QRname);
1064         return;
1065 }
1066
1067
1068 /*
1069  * Forget (Zap) the current room (API call)
1070  * Returns 0 on success
1071  */
1072 int CtdlForgetThisRoom(void) {
1073         struct visit vbuf;
1074
1075         /* On some systems, Aides are not allowed to forget rooms */
1076         if (is_aide() && (config.c_aide_zap == 0)
1077            && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)  ) {
1078                 return(1);
1079         }
1080
1081         lgetuser(&CC->usersupp, CC->curr_user);
1082         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
1083
1084         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1085         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1086
1087         CtdlSetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
1088         lputuser(&CC->usersupp);
1089
1090         /* Return to the Lobby, so we don't end up in an undefined room */
1091         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1092         return(0);
1093
1094 }
1095
1096
1097 /*
1098  * forget (Zap) the current room
1099  */
1100 void cmd_forg(void)
1101 {
1102
1103         if (CtdlAccessCheck(ac_logged_in)) {
1104                 return;
1105         }
1106
1107         if (CtdlForgetThisRoom() == 0) {
1108                 cprintf("%d Ok\n", CIT_OK);
1109         }
1110         else {
1111                 cprintf("%d You may not forget this room.\n", ERROR);
1112         }
1113 }
1114
1115 /*
1116  * Get Next Unregistered User
1117  */
1118 void cmd_gnur(void)
1119 {
1120         struct cdbdata *cdbus;
1121         struct usersupp usbuf;
1122
1123         if (CtdlAccessCheck(ac_aide)) {
1124                 return;
1125         }
1126
1127         if ((CitControl.MMflags & MM_VALID) == 0) {
1128                 cprintf("%d There are no unvalidated users.\n", CIT_OK);
1129                 return;
1130         }
1131
1132         /* There are unvalidated users.  Traverse the usersupp database,
1133          * and return the first user we find that needs validation.
1134          */
1135         cdb_rewind(CDB_USERSUPP);
1136         while (cdbus = cdb_next_item(CDB_USERSUPP), cdbus != NULL) {
1137                 memset(&usbuf, 0, sizeof(struct usersupp));
1138                 memcpy(&usbuf, cdbus->ptr,
1139                        ((cdbus->len > sizeof(struct usersupp)) ?
1140                         sizeof(struct usersupp) : cdbus->len));
1141                 cdb_free(cdbus);
1142                 if ((usbuf.flags & US_NEEDVALID)
1143                     && (usbuf.axlevel > 0)) {
1144                         cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
1145                         cdb_close_cursor(CDB_USERSUPP);
1146                         return;
1147                 }
1148         }
1149
1150         /* If we get to this point, there are no more unvalidated users.
1151          * Therefore we clear the "users need validation" flag.
1152          */
1153
1154         begin_critical_section(S_CONTROL);
1155         get_control();
1156         CitControl.MMflags = CitControl.MMflags & (~MM_VALID);
1157         put_control();
1158         end_critical_section(S_CONTROL);
1159         cprintf("%d *** End of registration.\n", CIT_OK);
1160
1161
1162 }
1163
1164
1165 /*
1166  * validate a user
1167  */
1168 void cmd_vali(char *v_args)
1169 {
1170         char user[SIZ];
1171         int newax;
1172         struct usersupp userbuf;
1173
1174         extract(user, v_args, 0);
1175         newax = extract_int(v_args, 1);
1176
1177         if (CtdlAccessCheck(ac_aide)) {
1178                 return;
1179         }
1180
1181         if (lgetuser(&userbuf, user) != 0) {
1182                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, user);
1183                 return;
1184         }
1185
1186         userbuf.axlevel = newax;
1187         userbuf.flags = (userbuf.flags & ~US_NEEDVALID);
1188
1189         lputuser(&userbuf);
1190
1191         /* If the access level was set to zero, delete the user */
1192         if (newax == 0) {
1193                 if (purge_user(user) == 0) {
1194                         cprintf("%d %s Deleted.\n", CIT_OK, userbuf.fullname);
1195                         return;
1196                 }
1197         }
1198         cprintf("%d User '%s' validated.\n", CIT_OK, userbuf.fullname);
1199 }
1200
1201
1202
1203 /* 
1204  *  Traverse the user file...
1205  */
1206 void ForEachUser(void (*CallBack) (struct usersupp * EachUser, void *out_data),
1207                  void *in_data)
1208 {
1209         struct usersupp usbuf;
1210         struct cdbdata *cdbus;
1211
1212         cdb_rewind(CDB_USERSUPP);
1213
1214         while (cdbus = cdb_next_item(CDB_USERSUPP), cdbus != NULL) {
1215                 memset(&usbuf, 0, sizeof(struct usersupp));
1216                 memcpy(&usbuf, cdbus->ptr,
1217                        ((cdbus->len > sizeof(struct usersupp)) ?
1218                         sizeof(struct usersupp) : cdbus->len));
1219                 cdb_free(cdbus);
1220                 (*CallBack) (&usbuf, in_data);
1221         }
1222 }
1223
1224
1225 /*
1226  * List one user (this works with cmd_list)
1227  */
1228 void ListThisUser(struct usersupp *usbuf, void *data)
1229 {
1230         if (usbuf->axlevel > 0) {
1231                 if ((CC->usersupp.axlevel >= 6)
1232                     || ((usbuf->flags & US_UNLISTED) == 0)
1233                     || ((CC->internal_pgm))) {
1234                         cprintf("%s|%d|%ld|%ld|%ld|%ld|",
1235                                 usbuf->fullname,
1236                                 usbuf->axlevel,
1237                                 usbuf->usernum,
1238                                 (long)usbuf->lastcall,
1239                                 usbuf->timescalled,
1240                                 usbuf->posted);
1241                         if (CC->usersupp.axlevel >= 6)
1242                                 cprintf("%s", usbuf->password);
1243                         cprintf("\n");
1244                 }
1245         }
1246 }
1247
1248 /* 
1249  *  List users
1250  */
1251 void cmd_list(void)
1252 {
1253         cprintf("%d \n", LISTING_FOLLOWS);
1254         ForEachUser(ListThisUser, NULL);
1255         cprintf("000\n");
1256 }
1257
1258
1259
1260
1261 /*
1262  * assorted info we need to check at login
1263  */
1264 void cmd_chek(void)
1265 {
1266         int mail = 0;
1267         int regis = 0;
1268         int vali = 0;
1269
1270         if (CtdlAccessCheck(ac_logged_in)) {
1271                 return;
1272         }
1273
1274         getuser(&CC->usersupp, CC->curr_user);  /* no lock is needed here */
1275         if ((REGISCALL != 0) && ((CC->usersupp.flags & US_REGIS) == 0))
1276                 regis = 1;
1277
1278         if (CC->usersupp.axlevel >= 6) {
1279                 get_control();
1280                 if (CitControl.MMflags & MM_VALID)
1281                         vali = 1;
1282         }
1283
1284         /* check for mail */
1285         mail = InitialMailCheck();
1286
1287         cprintf("%d %d|%d|%d\n", CIT_OK, mail, regis, vali);
1288 }
1289
1290
1291 /*
1292  * check to see if a user exists
1293  */
1294 void cmd_qusr(char *who)
1295 {
1296         struct usersupp usbuf;
1297
1298         if (getuser(&usbuf, who) == 0) {
1299                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1300         } else {
1301                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1302         }
1303 }
1304
1305
1306 /*
1307  * Administrative Get User Parameters
1308  */
1309 void cmd_agup(char *cmdbuf)
1310 {
1311         struct usersupp usbuf;
1312         char requested_user[SIZ];
1313
1314         if (CtdlAccessCheck(ac_aide)) {
1315                 return;
1316         }
1317
1318         extract(requested_user, cmdbuf, 0);
1319         if (getuser(&usbuf, requested_user) != 0) {
1320                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1321                 return;
1322         }
1323         cprintf("%d %s|%s|%u|%ld|%ld|%d|%ld|%ld|%d\n",
1324                 CIT_OK,
1325                 usbuf.fullname,
1326                 usbuf.password,
1327                 usbuf.flags,
1328                 usbuf.timescalled,
1329                 usbuf.posted,
1330                 (int) usbuf.axlevel,
1331                 usbuf.usernum,
1332                 (long)usbuf.lastcall,
1333                 usbuf.USuserpurge);
1334 }
1335
1336
1337
1338 /*
1339  * Administrative Set User Parameters
1340  */
1341 void cmd_asup(char *cmdbuf)
1342 {
1343         struct usersupp usbuf;
1344         char requested_user[SIZ];
1345         int np;
1346         int newax;
1347         int deleted = 0;
1348
1349         if (CtdlAccessCheck(ac_aide))
1350                 return;
1351
1352         extract(requested_user, cmdbuf, 0);
1353         if (lgetuser(&usbuf, requested_user) != 0) {
1354                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1355                 return;
1356         }
1357         np = num_parms(cmdbuf);
1358         if (np > 1)
1359                 extract(usbuf.password, cmdbuf, 1);
1360         if (np > 2)
1361                 usbuf.flags = extract_int(cmdbuf, 2);
1362         if (np > 3)
1363                 usbuf.timescalled = extract_int(cmdbuf, 3);
1364         if (np > 4)
1365                 usbuf.posted = extract_int(cmdbuf, 4);
1366         if (np > 5) {
1367                 newax = extract_int(cmdbuf, 5);
1368                 if ((newax >= 0) && (newax <= 6)) {
1369                         usbuf.axlevel = extract_int(cmdbuf, 5);
1370                 }
1371         }
1372         if (np > 7) {
1373                 usbuf.lastcall = extract_long(cmdbuf, 7);
1374         }
1375         if (np > 8) {
1376                 usbuf.USuserpurge = extract_int(cmdbuf, 8);
1377         }
1378         lputuser(&usbuf);
1379         if (usbuf.axlevel == 0) {
1380                 if (purge_user(requested_user) == 0) {
1381                         deleted = 1;
1382                 }
1383         }
1384         cprintf("%d Ok", CIT_OK);
1385         if (deleted)
1386                 cprintf(" (%s deleted)", requested_user);
1387         cprintf("\n");
1388 }
1389
1390
1391
1392 /*
1393  * Check to see if the user who we just sent mail to is logged in.  If yes,
1394  * bump the 'new mail' counter for their session.  That enables them to
1395  * receive a new mail notification without having to hit the database.
1396  */
1397 void BumpNewMailCounter(long which_user) {
1398         struct CitContext *ptr;
1399
1400         begin_critical_section(S_SESSION_TABLE);
1401
1402         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1403                 if (ptr->usersupp.usernum == which_user) {
1404                         ptr->newmail += 1;
1405                 }
1406         }
1407
1408         end_critical_section(S_SESSION_TABLE);
1409 }
1410
1411
1412 /*
1413  * Count the number of new mail messages the user has
1414  */
1415 int NewMailCount()
1416 {
1417         int num_newmsgs = 0;
1418
1419         num_newmsgs = CC->newmail;
1420         CC->newmail = 0;
1421
1422         return (num_newmsgs);
1423 }
1424
1425
1426 /*
1427  * Count the number of new mail messages the user has
1428  */
1429 int InitialMailCheck()
1430 {
1431         int num_newmsgs = 0;
1432         int a;
1433         char mailboxname[ROOMNAMELEN];
1434         struct quickroom mailbox;
1435         struct visit vbuf;
1436         struct cdbdata *cdbfr;
1437         long *msglist = NULL;
1438         int num_msgs = 0;
1439
1440         MailboxName(mailboxname, sizeof mailboxname, &CC->usersupp, MAILROOM);
1441         if (getroom(&mailbox, mailboxname) != 0)
1442                 return (0);
1443         CtdlGetRelationship(&vbuf, &CC->usersupp, &mailbox);
1444
1445         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1446
1447         if (cdbfr != NULL) {
1448                 msglist = mallok(cdbfr->len);
1449                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1450                 num_msgs = cdbfr->len / sizeof(long);
1451                 cdb_free(cdbfr);
1452         }
1453         if (num_msgs > 0)
1454                 for (a = 0; a < num_msgs; ++a) {
1455                         if (msglist[a] > 0L) {
1456                                 if (msglist[a] > vbuf.v_lastseen) {
1457                                         ++num_newmsgs;
1458                                 }
1459                         }
1460                 }
1461         if (msglist != NULL)
1462                 phree(msglist);
1463
1464         return (num_newmsgs);
1465 }
1466
1467
1468
1469 /*
1470  * Set the preferred view for the current user/room combination
1471  */
1472 void cmd_view(char *cmdbuf) {
1473         int requested_view;
1474         struct visit vbuf;
1475
1476         if (CtdlAccessCheck(ac_logged_in)) {
1477                 return;
1478         }
1479
1480         requested_view = extract_int(cmdbuf, 0);
1481
1482         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
1483         vbuf.v_view = requested_view;
1484         CtdlSetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
1485         
1486         cprintf("%d ok\n", CIT_OK);
1487 }