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