* Removed the built-in memory leak checker. It wasn't threadsafe and
[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                         free(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         default:
442                 cprintf("%d Internal error\n", ERROR + INTERNAL_ERROR);
443         }
444 }
445
446
447
448 /*
449  * session startup code which is common to both cmd_pass() and cmd_newu()
450  */
451 void session_startup(void)
452 {
453         int i;
454
455         lprintf(CTDL_NOTICE, "<%s> logged in\n", CC->curr_user);
456
457         lgetuser(&CC->user, CC->curr_user);
458         ++(CC->user.timescalled);
459         CC->previous_login = CC->user.lastcall;
460         time(&CC->user.lastcall);
461
462         /* If this user's name is the name of the system administrator
463          * (as specified in setup), automatically assign access level 6.
464          */
465         if (!strcasecmp(CC->user.fullname, config.c_sysadm)) {
466                 CC->user.axlevel = 6;
467         }
468         lputuser(&CC->user);
469
470         /*
471          * Populate CC->cs_inet_email with a default address.  This will be
472          * overwritten with the user's directory address, if one exists, when
473          * the vCard module's login hook runs.
474          */
475         snprintf(CC->cs_inet_email, sizeof CC->cs_inet_email, "%s@%s",
476                 CC->user.fullname, config.c_fqdn);
477         for (i=0; i<strlen(CC->cs_inet_email); ++i) {
478                 if (isspace(CC->cs_inet_email[i])) {
479                         CC->cs_inet_email[i] = '_';
480                 }
481         }
482
483         /* Create any personal rooms required by the system.
484          * (Technically, MAILROOM should be there already, but just in case...)
485          */
486         create_room(MAILROOM, 4, "", 0, 1, 0);
487         create_room(SENTITEMS, 4, "", 0, 1, 0);
488
489         /* Run any startup routines registered by loadable modules */
490         PerformSessionHooks(EVT_LOGIN);
491
492         /* Enter the lobby */
493         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
494 }
495
496
497 void logged_in_response(void)
498 {
499         cprintf("%d %s|%d|%ld|%ld|%u|%ld|%ld\n",
500                 CIT_OK, CC->user.fullname, CC->user.axlevel,
501                 CC->user.timescalled, CC->user.posted,
502                 CC->user.flags, CC->user.usernum,
503                 CC->previous_login);
504 }
505
506
507
508 /* 
509  * misc things to be taken care of when a user is logged out
510  */
511 void logout(struct CitContext *who)
512 {
513         /*
514          * Clear out some session data.  Most likely, the CitContext for this
515          * session is about to get nuked when the session disconnects, but
516          * since it's possible to log in again without reconnecting, we cannot
517          * make that assumption.
518          */
519         strcpy(who->fake_username, "");
520         strcpy(who->fake_postname, "");
521         strcpy(who->fake_hostname, "");
522         strcpy(who->fake_roomname, "");
523         who->logged_in = 0;
524
525         /*
526          * If there is a download in progress, abort it.
527          */
528         if (who->download_fp != NULL) {
529                 fclose(who->download_fp);
530                 who->download_fp = NULL;
531         }
532
533         /*
534          * If there is an upload in progress, abort it.
535          */
536         if (who->upload_fp != NULL) {
537                 abort_upl(who);
538         }
539
540         /*
541          * If we were talking to a network node, we're not anymore...
542          */
543         if (strlen(who->net_node) > 0) {
544                 network_talking_to(who->net_node, NTT_REMOVE);
545         }
546
547         /* Do modular stuff... */
548         PerformSessionHooks(EVT_LOGOUT);
549
550         /* Free any output buffers */
551         if (who->output_buffer != NULL) {
552                 unbuffer_output();
553         }
554 }
555
556 #ifdef ENABLE_CHKPWD
557 /*
558  * an alternate version of validpw() which executes `chkpwd' instead of
559  * verifying the password directly
560  */
561 static int validpw(uid_t uid, const char *pass)
562 {
563         pid_t pid;
564         int status, pipev[2];
565         char buf[24];
566
567         if (pipe(pipev)) {
568                 lprintf(CTDL_ERR, "pipe failed (%s): denying autologin access for "
569                         "uid %ld\n", strerror(errno), (long)uid);
570                 return 0;
571         }
572         switch (pid = fork()) {
573         case -1:
574                 lprintf(CTDL_ERR, "fork failed (%s): denying autologin access for "
575                         "uid %ld\n", strerror(errno), (long)uid);
576                 close(pipev[0]);
577                 close(pipev[1]);
578                 return 0;
579
580         case 0:
581                 close(pipev[1]);
582                 if (dup2(pipev[0], 0) == -1) {
583                         perror("dup2");
584                         exit(1);
585                 }
586                 close(pipev[0]);
587
588                 execl(BBSDIR "/chkpwd", BBSDIR "/chkpwd", NULL);
589                 perror(BBSDIR "/chkpwd");
590                 exit(1);
591         }
592
593         close(pipev[0]);
594         write(pipev[1], buf,
595               snprintf(buf, sizeof buf, "%lu\n", (unsigned long) uid));
596         write(pipev[1], pass, strlen(pass));
597         write(pipev[1], "\n", 1);
598         close(pipev[1]);
599
600         while (waitpid(pid, &status, 0) == -1)
601                 if (errno != EINTR) {
602                         lprintf(CTDL_ERR, "waitpid failed (%s): denying autologin "
603                                 "access for uid %ld\n",
604                                 strerror(errno), (long)uid);
605                         return 0;
606                 }
607         if (WIFEXITED(status) && !WEXITSTATUS(status))
608                 return 1;
609
610         return 0;
611 }
612 #endif
613
614 void do_login()
615 {
616         (CC->logged_in) = 1;
617         session_startup();
618 }
619
620
621 int CtdlTryPassword(char *password)
622 {
623         int code;
624
625         if ((CC->logged_in)) {
626                 lprintf(CTDL_WARNING, "CtdlTryPassword: already logged in\n");
627                 return pass_already_logged_in;
628         }
629         if (!strcmp(CC->curr_user, NLI)) {
630                 lprintf(CTDL_WARNING, "CtdlTryPassword: no user selected\n");
631                 return pass_no_user;
632         }
633         if (getuser(&CC->user, CC->curr_user)) {
634                 lprintf(CTDL_ERR, "CtdlTryPassword: internal error\n");
635                 return pass_internal_error;
636         }
637         if (password == NULL) {
638                 lprintf(CTDL_INFO, "CtdlTryPassword: NULL password string supplied\n");
639                 return pass_wrong_password;
640         }
641         code = (-1);
642
643
644 #ifdef ENABLE_AUTOLOGIN
645         /* A uid of BBSUID or -1 indicates that this user exists only in
646          * Citadel, not in the underlying operating system.
647          */
648         if ( (CC->user.uid == BBSUID) || (CC->user.uid == (-1)) ) {
649                 strproc(password);
650                 strproc(CC->user.password);
651                 code = strcasecmp(CC->user.password, password);
652         }
653         /* Any other uid means we have to check the system password database */
654         else {
655                 if (validpw(CC->user.uid, password)) {
656                         code = 0;
657                         lgetuser(&CC->user, CC->curr_user);
658                         safestrncpy(CC->user.password, password,
659                                     sizeof CC->user.password);
660                         lputuser(&CC->user);
661                 }
662         }
663
664 #else /* ENABLE_AUTOLOGIN */
665         strproc(password);
666         strproc(CC->user.password);
667         code = strcasecmp(CC->user.password, password);
668
669 #endif /* ENABLE_AUTOLOGIN */
670
671         if (!code) {
672                 do_login();
673                 return pass_ok;
674         } else {
675                 lprintf(CTDL_WARNING, "Bad password specified for <%s>\n", CC->curr_user);
676                 return pass_wrong_password;
677         }
678 }
679
680
681 void cmd_pass(char *buf)
682 {
683         char password[SIZ];
684         int a;
685
686         extract(password, buf, 0);
687         a = CtdlTryPassword(password);
688
689         switch (a) {
690         case pass_already_logged_in:
691                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
692                 return;
693         case pass_no_user:
694                 cprintf("%d You must send a name with USER first.\n",
695                         ERROR + USERNAME_REQUIRED);
696                 return;
697         case pass_wrong_password:
698                 cprintf("%d Wrong password.\n", ERROR + PASSWORD_REQUIRED);
699                 return;
700         case pass_ok:
701                 logged_in_response();
702                 return;
703                 cprintf("%d Can't find user record!\n",
704                         ERROR + INTERNAL_ERROR);
705         }
706 }
707
708
709
710 /*
711  * Delete a user record *and* all of its related resources.
712  */
713 int purge_user(char pname[])
714 {
715         char filename[64];
716         struct ctdluser usbuf;
717         char usernamekey[USERNAME_SIZE];
718         struct CitContext *ccptr;
719         int user_is_logged_in = 0;
720
721         makeuserkey(usernamekey, pname);
722
723         if (getuser(&usbuf, pname) != 0) {
724                 lprintf(CTDL_ERR, "Cannot purge user <%s> - not found\n", pname);
725                 return (ERROR + NO_SUCH_USER);
726         }
727         /* Don't delete a user who is currently logged in.  Instead, just
728          * set the access level to 0, and let the account get swept up
729          * during the next purge.
730          */
731         user_is_logged_in = 0;
732         begin_critical_section(S_SESSION_TABLE);
733         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
734                 if (ccptr->user.usernum == usbuf.usernum) {
735                         user_is_logged_in = 1;
736                 }
737         }
738         end_critical_section(S_SESSION_TABLE);
739         if (user_is_logged_in == 1) {
740                 lprintf(CTDL_WARNING, "User <%s> is logged in; not deleting.\n", pname);
741                 usbuf.axlevel = 0;
742                 putuser(&usbuf);
743                 return (1);
744         }
745         lprintf(CTDL_NOTICE, "Deleting user <%s>\n", pname);
746
747         /* Perform any purge functions registered by server extensions */
748         PerformUserHooks(&usbuf, EVT_PURGEUSER);
749
750         /* delete any existing user/room relationships */
751         cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
752
753         /* delete the userlog entry */
754         cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
755
756         /* remove the user's bio file */
757         snprintf(filename, sizeof filename, "./bio/%ld", usbuf.usernum);
758         unlink(filename);
759
760         /* remove the user's picture */
761         snprintf(filename, sizeof filename, "./userpics/%ld.gif", usbuf.usernum);
762         unlink(filename);
763
764         return (0);
765 }
766
767
768 /*
769  * create_user()  -  back end processing to create a new user
770  *
771  * Set 'newusername' to the desired account name.
772  * Set 'become_user' to nonzero if this is self-service account creation and we want
773  * to actually log in as the user we just created, otherwise set it to 0.
774  */
775 int create_user(char *newusername, int become_user)
776 {
777         struct ctdluser usbuf;
778         struct ctdlroom qrbuf;
779         struct passwd *p = NULL;
780         char username[SIZ];
781         char mailboxname[ROOMNAMELEN];
782         uid_t uid;
783
784         safestrncpy(username, newusername, sizeof username);
785         strproc(username);
786
787 #ifdef ENABLE_AUTOLOGIN
788         p = (struct passwd *) getpwnam(username);
789         if (p != NULL) {
790                 extract_token(username, p->pw_gecos, 0, ',');
791                 uid = p->pw_uid;
792         } else {
793                 uid = (-1);
794         }
795 #else
796         uid = (-1);
797 #endif
798
799         if (!getuser(&usbuf, username)) {
800                 return (ERROR + ALREADY_EXISTS);
801         }
802
803         /* Go ahead and initialize a new user record */
804         memset(&usbuf, 0, sizeof(struct ctdluser));
805         safestrncpy(usbuf.fullname, username, sizeof usbuf.fullname);
806         strcpy(usbuf.password, "");
807         usbuf.uid = uid;
808
809         /* These are the default flags on new accounts */
810         usbuf.flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
811
812         usbuf.timescalled = 0;
813         usbuf.posted = 0;
814         usbuf.axlevel = config.c_initax;
815         usbuf.USscreenwidth = 80;
816         usbuf.USscreenheight = 24;
817         usbuf.lastcall = time(NULL);
818
819         /* fetch a new user number */
820         usbuf.usernum = get_new_user_number();
821
822         /* The very first user created on the system will always be an Aide */
823         if (usbuf.usernum == 1L) {
824                 usbuf.axlevel = 6;
825         }
826
827         /* add user to userlog */
828         putuser(&usbuf);
829
830         /*
831          * Give the user a private mailbox and a configuration room.
832          * Make the latter an invisible system room.
833          */
834         MailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
835         create_room(mailboxname, 5, "", 0, 1, 1);
836
837         MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
838         create_room(mailboxname, 5, "", 0, 1, 1);
839         if (lgetroom(&qrbuf, mailboxname) == 0) {
840                 qrbuf.QRflags2 |= QR2_SYSTEM;
841                 lputroom(&qrbuf);
842         }
843
844         /* Perform any create functions registered by server extensions */
845         PerformUserHooks(&usbuf, EVT_NEWUSER);
846
847         /* Everything below this line can be bypassed if administratively
848          * creating a user, instead of doing self-service account creation
849          */
850
851         if (become_user) {
852                 /* Now become the user we just created */
853                 memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
854                 safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
855                 CC->logged_in = 1;
856         
857                 /* Check to make sure we're still who we think we are */
858                 if (getuser(&CC->user, CC->curr_user)) {
859                         return (ERROR + INTERNAL_ERROR);
860                 }
861         }
862
863         lprintf(CTDL_NOTICE, "New user <%s> created\n", username);
864         return (0);
865 }
866
867
868
869
870 /*
871  * cmd_newu()  -  create a new user account and log in as that user
872  */
873 void cmd_newu(char *cmdbuf)
874 {
875         int a;
876         char username[SIZ];
877
878         if (config.c_disable_newu) {
879                 cprintf("%d Self-service user account creation "
880                         "is disabled on this system.\n", ERROR + NOT_HERE);
881                 return;
882         }
883
884         if (CC->logged_in) {
885                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
886                 return;
887         }
888         if (CC->nologin) {
889                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
890                         ERROR + MAX_SESSIONS_EXCEEDED,
891                         config.c_nodename, config.c_maxsessions);
892         }
893         extract(username, cmdbuf, 0);
894         username[25] = 0;
895         strproc(username);
896
897         if (strlen(username) == 0) {
898                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
899                 return;
900         }
901
902         if ((!strcasecmp(username, "bbs")) ||
903             (!strcasecmp(username, "new")) ||
904             (!strcasecmp(username, "."))) {
905                 cprintf("%d '%s' is an invalid login name.\n", ERROR + ILLEGAL_VALUE, username);
906                 return;
907         }
908
909         a = create_user(username, 1);
910
911         if (a == 0) {
912                 session_startup();
913                 logged_in_response();
914         } else if (a == ERROR + ALREADY_EXISTS) {
915                 cprintf("%d '%s' already exists.\n",
916                         ERROR + ALREADY_EXISTS, username);
917                 return;
918         } else if (a == ERROR + INTERNAL_ERROR) {
919                 cprintf("%d Internal error - user record disappeared?\n",
920                         ERROR + INTERNAL_ERROR);
921                 return;
922         } else {
923                 cprintf("%d unknown error\n", ERROR + INTERNAL_ERROR);
924         }
925 }
926
927
928
929 /*
930  * set password
931  */
932 void cmd_setp(char *new_pw)
933 {
934         if (CtdlAccessCheck(ac_logged_in)) {
935                 return;
936         }
937         if ( (CC->user.uid != BBSUID) && (CC->user.uid != (-1)) ) {
938                 cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR + NOT_HERE);
939                 return;
940         }
941         strproc(new_pw);
942         if (strlen(new_pw) == 0) {
943                 cprintf("%d Password unchanged.\n", CIT_OK);
944                 return;
945         }
946         lgetuser(&CC->user, CC->curr_user);
947         safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
948         lputuser(&CC->user);
949         cprintf("%d Password changed.\n", CIT_OK);
950         lprintf(CTDL_INFO, "Password changed for user <%s>\n", CC->curr_user);
951         PerformSessionHooks(EVT_SETPASS);
952 }
953
954
955 /*
956  * cmd_creu() - administratively create a new user account (do not log in to it)
957  */
958 void cmd_creu(char *cmdbuf)
959 {
960         int a;
961         char username[SIZ];
962         char password[SIZ];
963         struct ctdluser tmp;
964
965         if (CtdlAccessCheck(ac_aide)) {
966                 return;
967         }
968
969         extract(username, cmdbuf, 0);
970         extract(password, cmdbuf, 1);
971         username[25] = 0;
972         password[31] = 0;
973         strproc(username);
974         strproc(password);
975
976         if (strlen(username) == 0) {
977                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
978                 return;
979         }
980
981         a = create_user(username, 0);
982
983         if (a == 0) {
984                 if (strlen(password) > 0) {
985                         lgetuser(&tmp, username);
986                         safestrncpy(tmp.password, password, sizeof(tmp.password));
987                         lputuser(&tmp);
988                 }
989                 cprintf("%d User '%s' created %s.\n", CIT_OK, username,
990                                 (strlen(password) > 0) ? "and password set" :
991                                 "with no password");
992                 return;
993         } else if (a == ERROR + ALREADY_EXISTS) {
994                 cprintf("%d '%s' already exists.\n",
995                         ERROR + ALREADY_EXISTS, username);
996                 return;
997         } else {
998                 cprintf("%d An error occured creating the user account.\n", ERROR + INTERNAL_ERROR);
999         }
1000 }
1001
1002
1003
1004 /*
1005  * get user parameters
1006  */
1007 void cmd_getu(void)
1008 {
1009
1010         if (CtdlAccessCheck(ac_logged_in))
1011                 return;
1012
1013         getuser(&CC->user, CC->curr_user);
1014         cprintf("%d %d|%d|%d|\n",
1015                 CIT_OK,
1016                 CC->user.USscreenwidth,
1017                 CC->user.USscreenheight,
1018                 (CC->user.flags & US_USER_SET)
1019             );
1020 }
1021
1022 /*
1023  * set user parameters
1024  */
1025 void cmd_setu(char *new_parms)
1026 {
1027         if (CtdlAccessCheck(ac_logged_in))
1028                 return;
1029
1030         if (num_parms(new_parms) < 3) {
1031                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
1032                 return;
1033         }
1034         lgetuser(&CC->user, CC->curr_user);
1035         CC->user.USscreenwidth = extract_int(new_parms, 0);
1036         CC->user.USscreenheight = extract_int(new_parms, 1);
1037         CC->user.flags = CC->user.flags & (~US_USER_SET);
1038         CC->user.flags = CC->user.flags |
1039             (extract_int(new_parms, 2) & US_USER_SET);
1040
1041         lputuser(&CC->user);
1042         cprintf("%d Ok\n", CIT_OK);
1043 }
1044
1045 /*
1046  * set last read pointer
1047  */
1048 void cmd_slrp(char *new_ptr)
1049 {
1050         long newlr;
1051         struct visit vbuf;
1052         struct visit original_vbuf;
1053
1054         if (CtdlAccessCheck(ac_logged_in)) {
1055                 return;
1056         }
1057
1058         if (!strncasecmp(new_ptr, "highest", 7)) {
1059                 newlr = CC->room.QRhighest;
1060         } else {
1061                 newlr = atol(new_ptr);
1062         }
1063
1064         lgetuser(&CC->user, CC->curr_user);
1065
1066         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1067         memcpy(&original_vbuf, &vbuf, sizeof(struct visit));
1068         vbuf.v_lastseen = newlr;
1069         snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
1070
1071         /* Only rewrite the record if it changed */
1072         if ( (vbuf.v_lastseen != original_vbuf.v_lastseen)
1073            || (strcmp(vbuf.v_seen, original_vbuf.v_seen)) ) {
1074                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1075         }
1076
1077         lputuser(&CC->user);
1078         cprintf("%d %ld\n", CIT_OK, newlr);
1079 }
1080
1081
1082 void cmd_seen(char *argbuf) {
1083         long target_msgnum = 0L;
1084         int target_setting = 0;
1085
1086         if (CtdlAccessCheck(ac_logged_in)) {
1087                 return;
1088         }
1089
1090         if (num_parms(argbuf) != 2) {
1091                 cprintf("%d Invalid parameters\n", ERROR + ILLEGAL_VALUE);
1092                 return;
1093         }
1094
1095         target_msgnum = extract_long(argbuf, 0);
1096         target_setting = extract_int(argbuf, 1);
1097
1098         CtdlSetSeen(target_msgnum, target_setting, ctdlsetseen_seen);
1099         cprintf("%d OK\n", CIT_OK);
1100 }
1101
1102
1103 void cmd_gtsn(char *argbuf) {
1104         char buf[SIZ];
1105
1106         if (CtdlAccessCheck(ac_logged_in)) {
1107                 return;
1108         }
1109
1110         CtdlGetSeen(buf, ctdlsetseen_seen);
1111         cprintf("%d %s\n", CIT_OK, buf);
1112 }
1113
1114
1115 /*
1116  * API function for cmd_invt_kick() and anything else that needs to
1117  * invite or kick out a user to/from a room.
1118  * 
1119  * Set iuser to the name of the user, and op to 1=invite or 0=kick
1120  */
1121 int CtdlInvtKick(char *iuser, int op) {
1122         struct ctdluser USscratch;
1123         struct visit vbuf;
1124         char bbb[SIZ];
1125
1126         if (getuser(&USscratch, iuser) != 0) {
1127                 return(1);
1128         }
1129
1130         CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
1131         if (op == 1) {
1132                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1133                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1134         }
1135         if (op == 0) {
1136                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1137                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1138         }
1139         CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
1140
1141         /* post a message in Aide> saying what we just did */
1142         snprintf(bbb, sizeof bbb, "%s %s %s> by %s\n",
1143                 iuser,
1144                 ((op == 1) ? "invited to" : "kicked out of"),
1145                 CC->room.QRname,
1146                 CC->user.fullname);
1147         aide_message(bbb);
1148
1149         return(0);
1150 }
1151
1152
1153 /*
1154  * INVT and KICK commands
1155  */
1156 void cmd_invt_kick(char *iuser, int op) {
1157
1158         /*
1159          * These commands are only allowed by aides, room aides,
1160          * and room namespace owners
1161          */
1162         if (is_room_aide()
1163            || (atol(CC->room.QRname) == CC->user.usernum) ) {
1164                 /* access granted */
1165         } else {
1166                 /* access denied */
1167                 cprintf("%d Higher access or room ownership required.\n",
1168                         ERROR + HIGHER_ACCESS_REQUIRED);
1169                 return;
1170         }
1171
1172         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1173                          ROOMNAMELEN)) {
1174                 cprintf("%d Can't add/remove users from this room.\n",
1175                         ERROR + NOT_HERE);
1176                 return;
1177         }
1178
1179         if (CtdlInvtKick(iuser, op) != 0) {
1180                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1181                 return;
1182         }
1183
1184         cprintf("%d %s %s %s.\n",
1185                 CIT_OK, iuser,
1186                 ((op == 1) ? "invited to" : "kicked out of"),
1187                 CC->room.QRname);
1188         return;
1189 }
1190
1191
1192 /*
1193  * Forget (Zap) the current room (API call)
1194  * Returns 0 on success
1195  */
1196 int CtdlForgetThisRoom(void) {
1197         struct visit vbuf;
1198
1199         /* On some systems, Aides are not allowed to forget rooms */
1200         if (is_aide() && (config.c_aide_zap == 0)
1201            && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
1202                 return(1);
1203         }
1204
1205         lgetuser(&CC->user, CC->curr_user);
1206         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1207
1208         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1209         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1210
1211         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1212         lputuser(&CC->user);
1213
1214         /* Return to the Lobby, so we don't end up in an undefined room */
1215         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1216         return(0);
1217
1218 }
1219
1220
1221 /*
1222  * forget (Zap) the current room
1223  */
1224 void cmd_forg(void)
1225 {
1226
1227         if (CtdlAccessCheck(ac_logged_in)) {
1228                 return;
1229         }
1230
1231         if (CtdlForgetThisRoom() == 0) {
1232                 cprintf("%d Ok\n", CIT_OK);
1233         }
1234         else {
1235                 cprintf("%d You may not forget this room.\n", ERROR + NOT_HERE);
1236         }
1237 }
1238
1239 /*
1240  * Get Next Unregistered User
1241  */
1242 void cmd_gnur(void)
1243 {
1244         struct cdbdata *cdbus;
1245         struct ctdluser usbuf;
1246
1247         if (CtdlAccessCheck(ac_aide)) {
1248                 return;
1249         }
1250
1251         if ((CitControl.MMflags & MM_VALID) == 0) {
1252                 cprintf("%d There are no unvalidated users.\n", CIT_OK);
1253                 return;
1254         }
1255
1256         /* There are unvalidated users.  Traverse the user database,
1257          * and return the first user we find that needs validation.
1258          */
1259         cdb_rewind(CDB_USERS);
1260         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1261                 memset(&usbuf, 0, sizeof(struct ctdluser));
1262                 memcpy(&usbuf, cdbus->ptr,
1263                        ((cdbus->len > sizeof(struct ctdluser)) ?
1264                         sizeof(struct ctdluser) : cdbus->len));
1265                 cdb_free(cdbus);
1266                 if ((usbuf.flags & US_NEEDVALID)
1267                     && (usbuf.axlevel > 0)) {
1268                         cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
1269                         cdb_close_cursor(CDB_USERS);
1270                         return;
1271                 }
1272         }
1273
1274         /* If we get to this point, there are no more unvalidated users.
1275          * Therefore we clear the "users need validation" flag.
1276          */
1277
1278         begin_critical_section(S_CONTROL);
1279         get_control();
1280         CitControl.MMflags = CitControl.MMflags & (~MM_VALID);
1281         put_control();
1282         end_critical_section(S_CONTROL);
1283         cprintf("%d *** End of registration.\n", CIT_OK);
1284
1285
1286 }
1287
1288
1289 /*
1290  * validate a user
1291  */
1292 void cmd_vali(char *v_args)
1293 {
1294         char user[SIZ];
1295         int newax;
1296         struct ctdluser userbuf;
1297
1298         extract(user, v_args, 0);
1299         newax = extract_int(v_args, 1);
1300
1301         if (CtdlAccessCheck(ac_aide)) {
1302                 return;
1303         }
1304
1305         if (lgetuser(&userbuf, user) != 0) {
1306                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, user);
1307                 return;
1308         }
1309
1310         userbuf.axlevel = newax;
1311         userbuf.flags = (userbuf.flags & ~US_NEEDVALID);
1312
1313         lputuser(&userbuf);
1314
1315         /* If the access level was set to zero, delete the user */
1316         if (newax == 0) {
1317                 if (purge_user(user) == 0) {
1318                         cprintf("%d %s Deleted.\n", CIT_OK, userbuf.fullname);
1319                         return;
1320                 }
1321         }
1322         cprintf("%d User '%s' validated.\n", CIT_OK, userbuf.fullname);
1323 }
1324
1325
1326
1327 /* 
1328  *  Traverse the user file...
1329  */
1330 void ForEachUser(void (*CallBack) (struct ctdluser * EachUser, void *out_data),
1331                  void *in_data)
1332 {
1333         struct ctdluser usbuf;
1334         struct cdbdata *cdbus;
1335
1336         cdb_rewind(CDB_USERS);
1337
1338         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1339                 memset(&usbuf, 0, sizeof(struct ctdluser));
1340                 memcpy(&usbuf, cdbus->ptr,
1341                        ((cdbus->len > sizeof(struct ctdluser)) ?
1342                         sizeof(struct ctdluser) : cdbus->len));
1343                 cdb_free(cdbus);
1344                 (*CallBack) (&usbuf, in_data);
1345         }
1346 }
1347
1348
1349 /*
1350  * List one user (this works with cmd_list)
1351  */
1352 void ListThisUser(struct ctdluser *usbuf, void *data)
1353 {
1354         if (usbuf->axlevel > 0) {
1355                 if ((CC->user.axlevel >= 6)
1356                     || ((usbuf->flags & US_UNLISTED) == 0)
1357                     || ((CC->internal_pgm))) {
1358                         cprintf("%s|%d|%ld|%ld|%ld|%ld|",
1359                                 usbuf->fullname,
1360                                 usbuf->axlevel,
1361                                 usbuf->usernum,
1362                                 (long)usbuf->lastcall,
1363                                 usbuf->timescalled,
1364                                 usbuf->posted);
1365                         if (CC->user.axlevel >= 6)
1366                                 cprintf("%s", usbuf->password);
1367                         cprintf("\n");
1368                 }
1369         }
1370 }
1371
1372 /* 
1373  *  List users
1374  */
1375 void cmd_list(void)
1376 {
1377         cprintf("%d \n", LISTING_FOLLOWS);
1378         ForEachUser(ListThisUser, NULL);
1379         cprintf("000\n");
1380 }
1381
1382
1383
1384
1385 /*
1386  * assorted info we need to check at login
1387  */
1388 void cmd_chek(void)
1389 {
1390         int mail = 0;
1391         int regis = 0;
1392         int vali = 0;
1393
1394         if (CtdlAccessCheck(ac_logged_in)) {
1395                 return;
1396         }
1397
1398         getuser(&CC->user, CC->curr_user);      /* no lock is needed here */
1399         if ((REGISCALL != 0) && ((CC->user.flags & US_REGIS) == 0))
1400                 regis = 1;
1401
1402         if (CC->user.axlevel >= 6) {
1403                 get_control();
1404                 if (CitControl.MMflags & MM_VALID)
1405                         vali = 1;
1406         }
1407
1408         /* check for mail */
1409         mail = InitialMailCheck();
1410
1411         cprintf("%d %d|%d|%d|%s|\n", CIT_OK, mail, regis, vali, CC->cs_inet_email);
1412 }
1413
1414
1415 /*
1416  * check to see if a user exists
1417  */
1418 void cmd_qusr(char *who)
1419 {
1420         struct ctdluser usbuf;
1421
1422         if (getuser(&usbuf, who) == 0) {
1423                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1424         } else {
1425                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1426         }
1427 }
1428
1429
1430 /*
1431  * Administrative Get User Parameters
1432  */
1433 void cmd_agup(char *cmdbuf)
1434 {
1435         struct ctdluser usbuf;
1436         char requested_user[SIZ];
1437
1438         if (CtdlAccessCheck(ac_aide)) {
1439                 return;
1440         }
1441
1442         extract(requested_user, cmdbuf, 0);
1443         if (getuser(&usbuf, requested_user) != 0) {
1444                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1445                 return;
1446         }
1447         cprintf("%d %s|%s|%u|%ld|%ld|%d|%ld|%ld|%d\n",
1448                 CIT_OK,
1449                 usbuf.fullname,
1450                 usbuf.password,
1451                 usbuf.flags,
1452                 usbuf.timescalled,
1453                 usbuf.posted,
1454                 (int) usbuf.axlevel,
1455                 usbuf.usernum,
1456                 (long)usbuf.lastcall,
1457                 usbuf.USuserpurge);
1458 }
1459
1460
1461
1462 /*
1463  * Administrative Set User Parameters
1464  */
1465 void cmd_asup(char *cmdbuf)
1466 {
1467         struct ctdluser usbuf;
1468         char requested_user[SIZ];
1469         char notify[SIZ];
1470         int np;
1471         int newax;
1472         int deleted = 0;
1473
1474         if (CtdlAccessCheck(ac_aide))
1475                 return;
1476
1477         extract(requested_user, cmdbuf, 0);
1478         if (lgetuser(&usbuf, requested_user) != 0) {
1479                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1480                 return;
1481         }
1482         np = num_parms(cmdbuf);
1483         if (np > 1)
1484                 extract(usbuf.password, cmdbuf, 1);
1485         if (np > 2)
1486                 usbuf.flags = extract_int(cmdbuf, 2);
1487         if (np > 3)
1488                 usbuf.timescalled = extract_int(cmdbuf, 3);
1489         if (np > 4)
1490                 usbuf.posted = extract_int(cmdbuf, 4);
1491         if (np > 5) {
1492                 newax = extract_int(cmdbuf, 5);
1493                 if ((newax >= 0) && (newax <= 6)) {
1494                         usbuf.axlevel = extract_int(cmdbuf, 5);
1495                 }
1496         }
1497         if (np > 7) {
1498                 usbuf.lastcall = extract_long(cmdbuf, 7);
1499         }
1500         if (np > 8) {
1501                 usbuf.USuserpurge = extract_int(cmdbuf, 8);
1502         }
1503         lputuser(&usbuf);
1504         if (usbuf.axlevel == 0) {
1505                 if (purge_user(requested_user) == 0) {
1506                         deleted = 1;
1507                 }
1508         }
1509
1510         if (deleted) {
1511                 sprintf(notify, "User <%s> deleted by %s\n",
1512                         usbuf.fullname, CC->user.fullname);
1513                 aide_message(notify);
1514         }
1515
1516         cprintf("%d Ok", CIT_OK);
1517         if (deleted)
1518                 cprintf(" (%s deleted)", requested_user);
1519         cprintf("\n");
1520 }
1521
1522
1523
1524 /*
1525  * Check to see if the user who we just sent mail to is logged in.  If yes,
1526  * bump the 'new mail' counter for their session.  That enables them to
1527  * receive a new mail notification without having to hit the database.
1528  */
1529 void BumpNewMailCounter(long which_user) {
1530         struct CitContext *ptr;
1531
1532         begin_critical_section(S_SESSION_TABLE);
1533
1534         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1535                 if (ptr->user.usernum == which_user) {
1536                         ptr->newmail += 1;
1537                 }
1538         }
1539
1540         end_critical_section(S_SESSION_TABLE);
1541 }
1542
1543
1544 /*
1545  * Count the number of new mail messages the user has
1546  */
1547 int NewMailCount()
1548 {
1549         int num_newmsgs = 0;
1550
1551         num_newmsgs = CC->newmail;
1552         CC->newmail = 0;
1553
1554         return (num_newmsgs);
1555 }
1556
1557
1558 /*
1559  * Count the number of new mail messages the user has
1560  */
1561 int InitialMailCheck()
1562 {
1563         int num_newmsgs = 0;
1564         int a;
1565         char mailboxname[ROOMNAMELEN];
1566         struct ctdlroom mailbox;
1567         struct visit vbuf;
1568         struct cdbdata *cdbfr;
1569         long *msglist = NULL;
1570         int num_msgs = 0;
1571
1572         MailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
1573         if (getroom(&mailbox, mailboxname) != 0)
1574                 return (0);
1575         CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
1576
1577         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1578
1579         if (cdbfr != NULL) {
1580                 msglist = malloc(cdbfr->len);
1581                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1582                 num_msgs = cdbfr->len / sizeof(long);
1583                 cdb_free(cdbfr);
1584         }
1585         if (num_msgs > 0)
1586                 for (a = 0; a < num_msgs; ++a) {
1587                         if (msglist[a] > 0L) {
1588                                 if (msglist[a] > vbuf.v_lastseen) {
1589                                         ++num_newmsgs;
1590                                 }
1591                         }
1592                 }
1593         if (msglist != NULL)
1594                 free(msglist);
1595
1596         return (num_newmsgs);
1597 }
1598
1599
1600
1601 /*
1602  * Set the preferred view for the current user/room combination
1603  */
1604 void cmd_view(char *cmdbuf) {
1605         int requested_view;
1606         struct visit vbuf;
1607
1608         if (CtdlAccessCheck(ac_logged_in)) {
1609                 return;
1610         }
1611
1612         requested_view = extract_int(cmdbuf, 0);
1613
1614         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1615         vbuf.v_view = requested_view;
1616         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1617         
1618         cprintf("%d ok\n", CIT_OK);
1619 }