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