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