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