* add _DRAFTS_ to the userdata creator, and translate it apropriate into imap (mail...
[citadel.git] / citadel / user_ops.c
1 /* 
2  * $Id$
3  *
4  * Server functions which perform operations on user objects.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <errno.h>
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <stdio.h>
13 #include <fcntl.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <ctype.h>
17 #include <sys/types.h>
18 #include <sys/wait.h>
19 #ifdef HAVE_SYS_STAT_H
20 #include <sys/stat.h>
21 #endif
22
23 #if TIME_WITH_SYS_TIME
24 # include <sys/time.h>
25 # include <time.h>
26 #else
27 # if HAVE_SYS_TIME_H
28 #  include <sys/time.h>
29 # else
30 #  include <time.h>
31 # endif
32 #endif
33
34 #include <string.h>
35 #include <limits.h>
36 #include <libcitadel.h>
37 #include "auth.h"
38 #include "citadel.h"
39 #include "server.h"
40 #include "database.h"
41 #include "user_ops.h"
42 #include "sysdep_decls.h"
43 #include "support.h"
44 #include "room_ops.h"
45 #include "file_ops.h"
46 #include "control.h"
47 #include "msgbase.h"
48 #include "config.h"
49 #include "citserver.h"
50 #include "citadel_dirs.h"
51 #include "genstamp.h"
52 #include "threads.h"
53 #include "citadel_ldap.h"
54
55 #include "ctdl_module.h"
56
57 /* These pipes are used to talk to the chkpwd daemon, which is forked during startup */
58 int chkpwd_write_pipe[2];
59 int chkpwd_read_pipe[2];
60
61 /*
62  * makeuserkey() - convert a username into the format used as a database key
63  *               (it's just the username converted into lower case)
64  */
65 INLINE void makeuserkey(char *key, char *username) {
66         int i, len;
67
68         len = strlen(username);
69         if (len >= USERNAME_SIZE)
70         {
71                 CtdlLogPrintf (CTDL_EMERG, "Username to long: %s", username);
72                 cit_backtrace ();
73                 len = USERNAME_SIZE - 1; 
74                 username[USERNAME_SIZE - 1]='\0';
75         }
76         for (i=0; i<=len; ++i) {
77                 key[i] = tolower(username[i]);
78         }
79 }
80
81
82 /*
83  * getuser()  -  retrieve named user into supplied buffer.
84  *             returns 0 on success
85  */
86 int getuser(struct ctdluser *usbuf, char name[])
87 {
88
89         char usernamekey[USERNAME_SIZE];
90         struct cdbdata *cdbus;
91
92         if (usbuf != NULL) {
93                 memset(usbuf, 0, sizeof(struct ctdluser));
94         }
95
96         makeuserkey(usernamekey, name);
97         cdbus = cdb_fetch(CDB_USERS, usernamekey, strlen(usernamekey));
98
99         if (cdbus == NULL) {    /* user not found */
100                 return(1);
101         }
102         if (usbuf != NULL) {
103                 memcpy(usbuf, cdbus->ptr,
104                         ((cdbus->len > sizeof(struct ctdluser)) ?
105                          sizeof(struct ctdluser) : cdbus->len));
106         }
107         cdb_free(cdbus);
108
109         return (0);
110 }
111
112
113 /*
114  * lgetuser()  -  same as getuser() but locks the record
115  */
116 int lgetuser(struct ctdluser *usbuf, char *name)
117 {
118         int retcode;
119
120         retcode = getuser(usbuf, name);
121         if (retcode == 0) {
122                 begin_critical_section(S_USERS);
123         }
124         return (retcode);
125 }
126
127
128 /*
129  * putuser()  -  write user buffer into the correct place on disk
130  */
131 void putuser(struct ctdluser *usbuf)
132 {
133         char usernamekey[USERNAME_SIZE];
134
135         makeuserkey(usernamekey, usbuf->fullname);
136
137         usbuf->version = REV_LEVEL;
138         cdb_store(CDB_USERS,
139                   usernamekey, strlen(usernamekey),
140                   usbuf, sizeof(struct ctdluser));
141
142 }
143
144
145 /*
146  * lputuser()  -  same as putuser() but locks the record
147  */
148 void lputuser(struct ctdluser *usbuf)
149 {
150         putuser(usbuf);
151         end_critical_section(S_USERS);
152 }
153
154
155 /*
156  * rename_user()  -  this is tricky because the user's display name is the database key
157  *
158  * Returns 0 on success or nonzero if there was an error...
159  *
160  */
161 int rename_user(char *oldname, char *newname) {
162         struct CitContext *cptr;
163         int retcode = RENAMEUSER_OK;
164         struct ctdluser usbuf;
165
166         char oldnamekey[USERNAME_SIZE];
167         char newnamekey[USERNAME_SIZE];
168
169         /* We cannot rename a user who is currently logged in */
170         for (cptr = ContextList; cptr != NULL; cptr = cptr->next) {
171                 if (!strcasecmp(cptr->user.fullname, oldname)) {
172                         return(RENAMEUSER_LOGGED_IN);
173                 }
174         }
175
176         /* Create the database keys... */
177         makeuserkey(oldnamekey, oldname);
178         makeuserkey(newnamekey, newname);
179
180         /* Lock up and get going */
181         begin_critical_section(S_USERS);
182
183         if (getuser(&usbuf, newname) == 0) {
184                 retcode = RENAMEUSER_ALREADY_EXISTS;
185         }
186         else {
187
188                 if (getuser(&usbuf, oldname) != 0) {
189                         retcode = RENAMEUSER_NOT_FOUND;
190                 }
191
192                 else {          /* Sanity checks succeeded.  Now rename the user. */
193                         if (usbuf.usernum == 0)
194                         {
195                                 CtdlLogPrintf (CTDL_DEBUG, "Can not rename user \"Citadel\".\n");
196                                 retcode = RENAMEUSER_NOT_FOUND;
197                         } else {
198                                 CtdlLogPrintf(CTDL_DEBUG, "Renaming <%s> to <%s>\n", oldname, newname);
199                                 cdb_delete(CDB_USERS, oldnamekey, strlen(oldnamekey));
200                                 safestrncpy(usbuf.fullname, newname, sizeof usbuf.fullname);
201                                 putuser(&usbuf);
202                                 cdb_store(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long),
203                                         usbuf.fullname, strlen(usbuf.fullname)+1 );
204
205                                 retcode = RENAMEUSER_OK;
206                         }
207                 }
208         
209         }
210
211         end_critical_section(S_USERS);
212         return(retcode);
213 }
214
215
216
217 /*
218  * Index-generating function used by Ctdl[Get|Set]Relationship
219  */
220 int GenerateRelationshipIndex(char *IndexBuf,
221                               long RoomID,
222                               long RoomGen,
223                               long UserID)
224 {
225
226         struct {
227                 long iRoomID;
228                 long iRoomGen;
229                 long iUserID;
230         } TheIndex;
231
232         TheIndex.iRoomID = RoomID;
233         TheIndex.iRoomGen = RoomGen;
234         TheIndex.iUserID = UserID;
235
236         memcpy(IndexBuf, &TheIndex, sizeof(TheIndex));
237         return (sizeof(TheIndex));
238 }
239
240
241
242 /*
243  * Back end for CtdlSetRelationship()
244  */
245 void put_visit(struct visit *newvisit)
246 {
247         char IndexBuf[32];
248         int IndexLen = 0;
249
250         memset (IndexBuf, 0, sizeof (IndexBuf));
251         /* Generate an index */
252         IndexLen = GenerateRelationshipIndex(IndexBuf,
253                                              newvisit->v_roomnum,
254                                              newvisit->v_roomgen,
255                                              newvisit->v_usernum);
256
257         /* Store the record */
258         cdb_store(CDB_VISIT, IndexBuf, IndexLen,
259                   newvisit, sizeof(struct visit)
260         );
261 }
262
263
264
265
266 /*
267  * Define a relationship between a user and a room
268  */
269 void CtdlSetRelationship(struct visit *newvisit,
270                          struct ctdluser *rel_user,
271                          struct ctdlroom *rel_room)
272 {
273
274
275         /* We don't use these in Citadel because they're implicit by the
276          * index, but they must be present if the database is exported.
277          */
278         newvisit->v_roomnum = rel_room->QRnumber;
279         newvisit->v_roomgen = rel_room->QRgen;
280         newvisit->v_usernum = rel_user->usernum;
281
282         put_visit(newvisit);
283 }
284
285 /*
286  * Locate a relationship between a user and a room
287  */
288 void CtdlGetRelationship(struct visit *vbuf,
289                          struct ctdluser *rel_user,
290                          struct ctdlroom *rel_room)
291 {
292
293         char IndexBuf[32];
294         int IndexLen;
295         struct cdbdata *cdbvisit;
296
297         /* Generate an index */
298         IndexLen = GenerateRelationshipIndex(IndexBuf,
299                                              rel_room->QRnumber,
300                                              rel_room->QRgen,
301                                              rel_user->usernum);
302
303         /* Clear out the buffer */
304         memset(vbuf, 0, sizeof(struct visit));
305
306         cdbvisit = cdb_fetch(CDB_VISIT, IndexBuf, IndexLen);
307         if (cdbvisit != NULL) {
308                 memcpy(vbuf, cdbvisit->ptr,
309                        ((cdbvisit->len > sizeof(struct visit)) ?
310                         sizeof(struct visit) : cdbvisit->len));
311                 cdb_free(cdbvisit);
312         }
313         else {
314                 /* If this is the first time the user has seen this room,
315                  * set the view to be the default for the room.
316                  */
317                 vbuf->v_view = rel_room->QRdefaultview;
318         }
319
320         /* Set v_seen if necessary */
321         if (vbuf->v_seen[0] == 0) {
322                 snprintf(vbuf->v_seen, sizeof vbuf->v_seen, "*:%ld", vbuf->v_lastseen);
323         }
324 }
325
326
327 void MailboxName(char *buf, size_t n, const struct ctdluser *who, const char *prefix)
328 {
329         snprintf(buf, n, "%010ld.%s", who->usernum, prefix);
330 }
331
332
333 /*
334  * Is the user currently logged in an Aide?
335  */
336 int is_aide(void)
337 {
338         if (CC->user.axlevel >= 6)
339                 return (1);
340         else
341                 return (0);
342 }
343
344
345 /*
346  * Is the user currently logged in an Aide *or* the room aide for this room?
347  */
348 int is_room_aide(void)
349 {
350
351         if (!CC->logged_in) {
352                 return (0);
353         }
354
355         if ((CC->user.axlevel >= 6)
356             || (CC->room.QRroomaide == CC->user.usernum)) {
357                 return (1);
358         } else {
359                 return (0);
360         }
361 }
362
363 /*
364  * getuserbynumber() -  get user by number
365  *                      returns 0 if user was found
366  *
367  * Note: fetching a user this way requires one additional database operation.
368  */
369 int getuserbynumber(struct ctdluser *usbuf, long number)
370 {
371         struct cdbdata *cdbun;
372         int r;
373
374         cdbun = cdb_fetch(CDB_USERSBYNUMBER, &number, sizeof(long));
375         if (cdbun == NULL) {
376                 CtdlLogPrintf(CTDL_INFO, "User %ld not found\n", number);
377                 return(-1);
378         }
379
380         CtdlLogPrintf(CTDL_INFO, "User %ld maps to %s\n", number, cdbun->ptr);
381         r = getuser(usbuf, cdbun->ptr);
382         cdb_free(cdbun);
383         return(r);
384 }
385
386
387
388 /*
389  * Helper function for rebuild_usersbynumber()
390  */
391 void rebuild_ubn_for_user(struct ctdluser *usbuf, void *data) {
392
393         struct ubnlist {
394                 struct ubnlist *next;
395                 char username[USERNAME_SIZE];
396                 long usernum;
397         };
398
399         static struct ubnlist *u = NULL;
400         struct ubnlist *ptr = NULL;
401
402         /* Lazy programming here.  Call this function as a ForEachUser backend
403          * in order to queue up the room names, or call it with a null user
404          * to make it do the processing.
405          */
406         if (usbuf != NULL) {
407                 ptr = (struct ubnlist *) malloc(sizeof (struct ubnlist));
408                 if (ptr == NULL) return;
409
410                 ptr->usernum = usbuf->usernum;
411                 safestrncpy(ptr->username, usbuf->fullname, sizeof ptr->username);
412                 ptr->next = u;
413                 u = ptr;
414                 return;
415         }
416
417         while (u != NULL) {
418                 CtdlLogPrintf(CTDL_DEBUG, "Rebuilding usersbynumber index %10ld : %s\n",
419                         u->usernum, u->username);
420                 cdb_store(CDB_USERSBYNUMBER, &u->usernum, sizeof(long), u->username, strlen(u->username)+1);
421
422                 ptr = u;
423                 u = u->next;
424                 free(ptr);
425         }
426 }
427
428
429
430 /*
431  * Rebuild the users-by-number index
432  */
433 void rebuild_usersbynumber(void) {
434         cdb_trunc(CDB_USERSBYNUMBER);                   /* delete the old indices */
435         ForEachUser(rebuild_ubn_for_user, NULL);        /* enumerate the users */
436         rebuild_ubn_for_user(NULL, NULL);               /* and index them */
437 }
438
439
440
441 /*
442  * getuserbyuid()  -     get user by system uid (for PAM mode authentication)
443  *                     returns 0 if user was found
444  *
445  * WARNING: don't use this function unless you absolutely have to.  It does
446  *        a sequential search and therefore is computationally expensive.
447  */
448 int getuserbyuid(struct ctdluser *usbuf, uid_t number)
449 {
450         struct cdbdata *cdbus;
451
452         cdb_rewind(CDB_USERS);
453
454         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
455                 memset(usbuf, 0, sizeof(struct ctdluser));
456                 memcpy(usbuf, cdbus->ptr,
457                        ((cdbus->len > sizeof(struct ctdluser)) ?
458                         sizeof(struct ctdluser) : cdbus->len));
459                 cdb_free(cdbus);
460                 if (usbuf->uid == number) {
461                         cdb_close_cursor(CDB_USERS);
462                         return (0);
463                 }
464         }
465         return (-1);
466 }
467
468 /*
469  * Back end for cmd_user() and its ilk
470  *
471  * NOTE: "authname" should only be used if we are attempting to use the "master user" feature
472  */
473 int CtdlLoginExistingUser(char *authname, char *trythisname)
474 {
475         char username[SIZ];
476         int found_user;
477
478         CtdlLogPrintf(9, "CtdlLoginExistingUser(%s, %s)\n", authname, trythisname);
479
480         if ((CC->logged_in)) {
481                 return login_already_logged_in;
482         }
483
484         if (trythisname == NULL) return login_not_found;
485         
486         if (!strncasecmp(trythisname, "SYS_", 4))
487         {
488                 CtdlLogPrintf(CTDL_DEBUG, "System user \"%s\" is not allowed to log in.\n", trythisname);
489                 return login_not_found;
490         }
491
492         /* If a "master user" is defined, handle its authentication if specified */
493         CC->is_master = 0;
494         if (strlen(config.c_master_user) > 0) if (strlen(config.c_master_pass) > 0) if (authname) {
495                 if (!strcasecmp(authname, config.c_master_user)) {
496                         CC->is_master = 1;
497                 }
498         }
499
500         /* Continue attempting user validation... */
501         safestrncpy(username, trythisname, USERNAME_SIZE);
502         striplt(username);
503
504         if (IsEmptyStr(username)) {
505                 return login_not_found;
506         }
507
508         if (config.c_auth_mode == AUTHMODE_HOST) {
509
510                 /* host auth mode */
511
512                 struct passwd pd;
513                 struct passwd *tempPwdPtr;
514                 char pwdbuffer[256];
515         
516                 CtdlLogPrintf(CTDL_DEBUG, "asking host about <%s>\n", username);
517 #ifdef HAVE_GETPWNAM_R
518 #ifdef SOLARIS_GETPWUID
519                 CtdlLogPrintf(CTDL_DEBUG, "Calling getpwnam_r()\n");
520                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer);
521 #else // SOLARIS_GETPWUID
522                 CtdlLogPrintf(CTDL_DEBUG, "Calling getpwnam_r()\n");
523                 getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer, &tempPwdPtr);
524 #endif // SOLARIS_GETPWUID
525 #else // HAVE_GETPWNAM_R
526                 CtdlLogPrintf(CTDL_DEBUG, "SHOULD NEVER GET HERE!!!\n");
527                 tempPwdPtr = NULL;
528 #endif // HAVE_GETPWNAM_R
529                 if (tempPwdPtr == NULL) {
530                         CtdlLogPrintf(CTDL_DEBUG, "no such user <%s>\n", username);
531                         return login_not_found;
532                 }
533         
534                 /* Locate the associated Citadel account.
535                  * If not found, make one attempt to create it.
536                  */
537                 found_user = getuserbyuid(&CC->user, pd.pw_uid);
538                 CtdlLogPrintf(CTDL_DEBUG, "found it: uid=%ld, gecos=%s here: %d\n",
539                         (long)pd.pw_uid, pd.pw_gecos, found_user);
540                 if (found_user != 0) {
541                         create_user(username, 0);
542                         found_user = getuserbyuid(&CC->user, pd.pw_uid);
543                 }
544
545         }
546
547 #ifdef HAVE_LDAP
548         else if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) {
549         
550                 /* LDAP auth mode */
551
552                 uid_t ldap_uid;
553                 char ldap_cn[256];
554                 char ldap_dn[256];
555
556                 found_user = CtdlTryUserLDAP(username, ldap_dn, sizeof ldap_dn, ldap_cn, sizeof ldap_cn, &ldap_uid);
557                 if (found_user != 0) {
558                         return login_not_found;
559                 }
560
561                 found_user = getuserbyuid(&CC->user, ldap_uid);
562                 if (found_user != 0) {
563                         create_user(trythisname, 0);
564                         found_user = getuserbyuid(&CC->user, ldap_uid);
565                 }
566
567                 if (found_user == 0) {
568                         if (CC->ldap_dn != NULL) free(CC->ldap_dn);
569                         CC->ldap_dn = strdup(ldap_dn);
570                 }
571
572         }
573 #endif
574
575         else {
576                 /* native auth mode */
577
578                 struct recptypes *valid = NULL;
579         
580                 /* First, try to log in as if the supplied name is a display name */
581                 found_user = getuser(&CC->user, username);
582         
583                 /* If that didn't work, try to log in as if the supplied name
584                 * is an e-mail address
585                 */
586                 if (found_user != 0) {
587                         valid = validate_recipients(username, NULL, 0);
588                         if (valid != NULL) {
589                                 if (valid->num_local == 1) {
590                                         found_user = getuser(&CC->user, valid->recp_local);
591                                 }
592                                 free_recipients(valid);
593                         }
594                 }
595         }
596
597         /* Did we find something? */
598         if (found_user == 0) {
599                 if (((CC->nologin)) && (CC->user.axlevel < 6)) {
600                         return login_too_many_users;
601                 } else {
602                         safestrncpy(CC->curr_user, CC->user.fullname,
603                                         sizeof CC->curr_user);
604                         return login_ok;
605                 }
606         }
607         return login_not_found;
608 }
609
610
611
612 /*
613  * USER cmd
614  */
615 void cmd_user(char *cmdbuf)
616 {
617         char username[256];
618         int a;
619
620         CtdlLogPrintf(CTDL_DEBUG, "cmd_user(%s)\n", cmdbuf);
621         extract_token(username, cmdbuf, 0, '|', sizeof username);
622         CtdlLogPrintf(CTDL_DEBUG, "username: %s\n", username);
623         striplt(username);
624         CtdlLogPrintf(CTDL_DEBUG, "username: %s\n", username);
625
626         a = CtdlLoginExistingUser(NULL, username);
627         switch (a) {
628         case login_already_logged_in:
629                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
630                 return;
631         case login_too_many_users:
632                 cprintf("%d %s: "
633                         "Too many users are already online "
634                         "(maximum is %d)\n",
635                         ERROR + MAX_SESSIONS_EXCEEDED,
636                         config.c_nodename, config.c_maxsessions);
637                 return;
638         case login_ok:
639                 cprintf("%d Password required for %s\n",
640                         MORE_DATA, CC->curr_user);
641                 return;
642         case login_not_found:
643                 cprintf("%d %s not found.\n", ERROR + NO_SUCH_USER, username);
644                 return;
645         default:
646                 cprintf("%d Internal error\n", ERROR + INTERNAL_ERROR);
647         }
648 }
649
650
651
652 /*
653  * session startup code which is common to both cmd_pass() and cmd_newu()
654  */
655 void do_login(void)
656 {
657         CC->logged_in = 1;
658         CtdlLogPrintf(CTDL_NOTICE, "<%s> logged in\n", CC->curr_user);
659
660         lgetuser(&CC->user, CC->curr_user);
661         ++(CC->user.timescalled);
662         CC->previous_login = CC->user.lastcall;
663         time(&CC->user.lastcall);
664
665         /* If this user's name is the name of the system administrator
666          * (as specified in setup), automatically assign access level 6.
667          */
668         if (!strcasecmp(CC->user.fullname, config.c_sysadm)) {
669                 CC->user.axlevel = 6;
670         }
671
672         /* If we're authenticating off the host system, automatically give
673          * root the highest level of access.
674          */
675         if (config.c_auth_mode == AUTHMODE_HOST) {
676                 if (CC->user.uid == 0) {
677                         CC->user.axlevel = 6;
678                 }
679         }
680
681         lputuser(&CC->user);
682
683         /*
684          * Populate CC->cs_inet_email with a default address.  This will be
685          * overwritten with the user's directory address, if one exists, when
686          * the vCard module's login hook runs.
687          */
688         snprintf(CC->cs_inet_email, sizeof CC->cs_inet_email, "%s@%s",
689                 CC->user.fullname, config.c_fqdn);
690         convert_spaces_to_underscores(CC->cs_inet_email);
691
692         /* Create any personal rooms required by the system.
693          * (Technically, MAILROOM should be there already, but just in case...)
694          */
695         create_room(MAILROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
696         create_room(SENTITEMS, 4, "", 0, 1, 0, VIEW_MAILBOX);
697         create_room(USERTRASHROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
698         create_room(USERDRAFTROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
699
700         /* Run any startup routines registered by loadable modules */
701         PerformSessionHooks(EVT_LOGIN);
702
703         /* Enter the lobby */
704         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
705 }
706
707
708 void logged_in_response(void)
709 {
710         cprintf("%d %s|%d|%ld|%ld|%u|%ld|%ld\n",
711                 CIT_OK, CC->user.fullname, CC->user.axlevel,
712                 CC->user.timescalled, CC->user.posted,
713                 CC->user.flags, CC->user.usernum,
714                 CC->previous_login);
715 }
716
717
718
719 /* 
720  * misc things to be taken care of when a user is logged out
721  */
722 void logout(void)
723 {
724         struct CitContext *CCC = CC;    /* CachedCitContext - performance boost */
725         /*
726          * If there is a download in progress, abort it.
727          */
728         if (CCC->download_fp != NULL) {
729                 fclose(CCC->download_fp);
730                 CCC->download_fp = NULL;
731         }
732
733         /*
734          * If there is an upload in progress, abort it.
735          */
736         if (CCC->upload_fp != NULL) {
737                 abort_upl(CCC);
738         }
739
740         /*
741          * If we were talking to a network node, we're not anymore...
742          */
743         if (!IsEmptyStr(CCC->net_node)) {
744                 network_talking_to(CCC->net_node, NTT_REMOVE);
745         }
746
747         /* Run any hooks registered by modules... */
748         PerformSessionHooks(EVT_LOGOUT);
749         
750         /*
751          * Clear out some session data.  Most likely, the CitContext for this
752          * session is about to get nuked when the session disconnects, but
753          * since it's possible to log in again without reconnecting, we cannot
754          * make that assumption.
755          */
756         strcpy(CCC->fake_username, "");
757         strcpy(CCC->fake_hostname, "");
758         strcpy(CCC->fake_roomname, "");
759         CCC->logged_in = 0;
760
761         /* Check to see if the user was deleted whilst logged in and purge them if necessary */
762         if ((CCC->user.axlevel == 0) && (CCC->user.usernum))
763                 purge_user(CCC->user.fullname);
764
765         /* Free any output buffers */
766         unbuffer_output();
767 }
768
769 /*
770  * Validate a password on the host unix system by talking to the chkpwd daemon
771  */
772 static int validpw(uid_t uid, const char *pass)
773 {
774         char buf[256];
775
776         if (IsEmptyStr(pass)) {
777                 CtdlLogPrintf(CTDL_DEBUG, "refusing to check empty password for uid=%d using chkpwd...\n", uid);
778                 return 0;
779         }
780
781         CtdlLogPrintf(CTDL_DEBUG, "Validating password for uid=%d using chkpwd...\n", uid);
782
783         begin_critical_section(S_CHKPWD);
784         write(chkpwd_write_pipe[1], &uid, sizeof(uid_t));
785         write(chkpwd_write_pipe[1], pass, 256);
786         read(chkpwd_read_pipe[0], buf, 4);
787         end_critical_section(S_CHKPWD);
788
789         if (!strncmp(buf, "PASS", 4)) {
790                 CtdlLogPrintf(CTDL_DEBUG, "...pass\n");
791                 return(1);
792         }
793
794         CtdlLogPrintf(CTDL_DEBUG, "...fail\n");
795         return 0;
796 }
797
798 /* 
799  * Start up the chkpwd daemon so validpw() has something to talk to
800  */
801 void start_chkpwd_daemon(void) {
802         pid_t chkpwd_pid;
803         struct stat filestats;
804         int i;
805
806         CtdlLogPrintf(CTDL_DEBUG, "Starting chkpwd daemon for host authentication mode\n");
807
808         if ((stat(file_chkpwd, &filestats)==-1) ||
809             (filestats.st_size==0)){
810                 printf("didn't find chkpwd daemon in %s: %s\n", file_chkpwd, strerror(errno));
811                 abort();
812         }
813         if (pipe(chkpwd_write_pipe) != 0) {
814                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
815                 abort();
816         }
817         if (pipe(chkpwd_read_pipe) != 0) {
818                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
819                 abort();
820         }
821
822         chkpwd_pid = fork();
823         if (chkpwd_pid < 0) {
824                 CtdlLogPrintf(CTDL_EMERG, "Unable to fork chkpwd daemon: %s\n", strerror(errno));
825                 abort();
826         }
827         if (chkpwd_pid == 0) {
828                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
829                 dup2(chkpwd_write_pipe[0], 0);
830                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
831                 dup2(chkpwd_read_pipe[1], 1);
832                 CtdlLogPrintf(CTDL_DEBUG, "Now closing stuff\n");
833                 for (i=2; i<256; ++i) close(i);
834                 CtdlLogPrintf(CTDL_DEBUG, "Now calling execl(%s)\n", file_chkpwd);
835                 execl(file_chkpwd, file_chkpwd, NULL);
836                 CtdlLogPrintf(CTDL_EMERG, "Unable to exec chkpwd daemon: %s\n", strerror(errno));
837                 abort();
838                 exit(errno);
839         }
840 }
841
842
843 int CtdlTryPassword(char *password)
844 {
845         int code;
846
847         if ((CC->logged_in)) {
848                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: already logged in\n");
849                 return pass_already_logged_in;
850         }
851         if (!strcmp(CC->curr_user, NLI)) {
852                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: no user selected\n");
853                 return pass_no_user;
854         }
855         if (getuser(&CC->user, CC->curr_user)) {
856                 CtdlLogPrintf(CTDL_ERR, "CtdlTryPassword: internal error\n");
857                 return pass_internal_error;
858         }
859         if (password == NULL) {
860                 CtdlLogPrintf(CTDL_INFO, "CtdlTryPassword: NULL password string supplied\n");
861                 return pass_wrong_password;
862         }
863         code = (-1);
864
865         if (CC->is_master) {
866                 code = strcmp(password, config.c_master_pass);
867         }
868
869         else if (config.c_auth_mode == AUTHMODE_HOST) {
870
871                 /* host auth mode */
872
873                 if (validpw(CC->user.uid, password)) {
874                         code = 0;
875
876                         /*
877                          * sooper-seekrit hack: populate the password field in the
878                          * citadel database with the password that the user typed,
879                          * if it's correct.  This allows most sites to convert from
880                          * host auth to native auth if they want to.  If you think
881                          * this is a security hazard, comment it out.
882                          */
883
884                         lgetuser(&CC->user, CC->curr_user);
885                         safestrncpy(CC->user.password, password, sizeof CC->user.password);
886                         lputuser(&CC->user);
887
888                         /*
889                          * (sooper-seekrit hack ends here)
890                          */
891
892                 }
893                 else {
894                         code = (-1);
895                 }
896         }
897
898 #ifdef HAVE_LDAP
899         else if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) {
900
901                 /* LDAP auth mode */
902
903                 if ((CC->ldap_dn) && (!CtdlTryPasswordLDAP(CC->ldap_dn, password))) {
904                         code = 0;
905                 }
906                 else {
907                         code = (-1);
908                 }
909         }
910 #endif
911
912         else {
913
914                 /* native auth mode */
915
916                 strproc(password);
917                 strproc(CC->user.password);
918                 code = strcasecmp(CC->user.password, password);
919                 strproc(password);
920                 strproc(CC->user.password);
921                 code = strcasecmp(CC->user.password, password);
922         }
923
924         if (!code) {
925                 do_login();
926                 return pass_ok;
927         } else {
928                 CtdlLogPrintf(CTDL_WARNING, "Bad password specified for <%s>\n", CC->curr_user);
929                 return pass_wrong_password;
930         }
931 }
932
933
934 void cmd_pass(char *buf)
935 {
936         char password[256];
937         int a;
938
939         extract_token(password, buf, 0, '|', sizeof password);
940         a = CtdlTryPassword(password);
941
942         switch (a) {
943         case pass_already_logged_in:
944                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
945                 return;
946         case pass_no_user:
947                 cprintf("%d You must send a name with USER first.\n",
948                         ERROR + USERNAME_REQUIRED);
949                 return;
950         case pass_wrong_password:
951                 cprintf("%d Wrong password.\n", ERROR + PASSWORD_REQUIRED);
952                 return;
953         case pass_ok:
954                 logged_in_response();
955                 return;
956         }
957 }
958
959
960
961 /*
962  * Delete a user record *and* all of its related resources.
963  */
964 int purge_user(char pname[])
965 {
966         char filename[64];
967         struct ctdluser usbuf;
968         char usernamekey[USERNAME_SIZE];
969         struct CitContext *ccptr;
970         int user_is_logged_in = 0;
971
972         makeuserkey(usernamekey, pname);
973
974         /* If the name is empty we can't find them in the DB any way so just return */
975         if (IsEmptyStr(pname))
976                 return (ERROR + NO_SUCH_USER);
977
978         if (getuser(&usbuf, pname) != 0) {
979                 CtdlLogPrintf(CTDL_ERR, "Cannot purge user <%s> - not found\n", pname);
980                 return (ERROR + NO_SUCH_USER);
981         }
982         /* Don't delete a user who is currently logged in.  Instead, just
983          * set the access level to 0, and let the account get swept up
984          * during the next purge.
985          */
986         user_is_logged_in = 0;
987         begin_critical_section(S_SESSION_TABLE);
988         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
989                 if (ccptr->user.usernum == usbuf.usernum) {
990                         user_is_logged_in = 1;
991                 }
992         }
993         end_critical_section(S_SESSION_TABLE);
994         if (user_is_logged_in == 1) {
995                 CtdlLogPrintf(CTDL_WARNING, "User <%s> is logged in; not deleting.\n", pname);
996                 usbuf.axlevel = 0;
997                 putuser(&usbuf);
998                 return (1);
999         }
1000         CtdlLogPrintf(CTDL_NOTICE, "Deleting user <%s>\n", pname);
1001
1002         /* Perform any purge functions registered by server extensions */
1003         PerformUserHooks(&usbuf, EVT_PURGEUSER);
1004
1005         /* delete any existing user/room relationships */
1006         cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
1007
1008         /* delete the users-by-number index record */
1009         cdb_delete(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long));
1010
1011         /* delete the userlog entry */
1012         cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
1013
1014         /* remove the user's bio file */
1015         snprintf(filename, 
1016                          sizeof filename, 
1017                          "%s/%ld",
1018                          ctdl_bio_dir,
1019                          usbuf.usernum);
1020         unlink(filename);
1021
1022         /* remove the user's picture */
1023         snprintf(filename, 
1024                          sizeof filename, 
1025                          "%s/%ld.gif",
1026                          ctdl_image_dir,
1027                          usbuf.usernum);
1028         unlink(filename);
1029
1030         return (0);
1031 }
1032
1033
1034 int internal_create_user (char *username, struct ctdluser *usbuf, uid_t uid)
1035 {
1036         if (!getuser(usbuf, username)) {
1037                 return (ERROR + ALREADY_EXISTS);
1038         }
1039
1040         /* Go ahead and initialize a new user record */
1041         memset(usbuf, 0, sizeof(struct ctdluser));
1042         safestrncpy(usbuf->fullname, username, sizeof usbuf->fullname);
1043         strcpy(usbuf->password, "");
1044         usbuf->uid = uid;
1045
1046         /* These are the default flags on new accounts */
1047         usbuf->flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
1048
1049         usbuf->timescalled = 0;
1050         usbuf->posted = 0;
1051         usbuf->axlevel = config.c_initax;
1052         usbuf->USscreenwidth = 80;
1053         usbuf->USscreenheight = 24;
1054         usbuf->lastcall = time(NULL);
1055
1056         /* fetch a new user number */
1057         usbuf->usernum = get_new_user_number();
1058
1059         /* add user to the database */
1060         putuser(usbuf);
1061         cdb_store(CDB_USERSBYNUMBER, &usbuf->usernum, sizeof(long), usbuf->fullname, strlen(usbuf->fullname)+1);
1062
1063         return 0;
1064 }
1065
1066
1067
1068 /*
1069  * create_user()  -  back end processing to create a new user
1070  *
1071  * Set 'newusername' to the desired account name.
1072  * Set 'become_user' to nonzero if this is self-service account creation and we want
1073  * to actually log in as the user we just created, otherwise set it to 0.
1074  */
1075 int create_user(char *newusername, int become_user)
1076 {
1077         struct ctdluser usbuf;
1078         struct ctdlroom qrbuf;
1079         char username[256];
1080         char mailboxname[ROOMNAMELEN];
1081         char buf[SIZ];
1082         int retval;
1083         uid_t uid = (-1);
1084         
1085
1086         safestrncpy(username, newusername, sizeof username);
1087         strproc(username);
1088
1089         
1090         if (config.c_auth_mode == AUTHMODE_HOST) {
1091
1092                 /* host auth mode */
1093
1094                 struct passwd pd;
1095                 struct passwd *tempPwdPtr;
1096                 char pwdbuffer[256];
1097         
1098 #ifdef HAVE_GETPWNAM_R
1099 #ifdef SOLARIS_GETPWUID
1100                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof(pwdbuffer));
1101 #else // SOLARIS_GETPWUID
1102                 getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer, &tempPwdPtr);
1103 #endif // SOLARIS_GETPWUID
1104 #else // HAVE_GETPWNAM_R
1105                 tempPwdPtr = NULL;
1106 #endif // HAVE_GETPWNAM_R
1107                 if (tempPwdPtr != NULL) {
1108                         extract_token(username, pd.pw_gecos, 0, ',', sizeof username);
1109                         uid = pd.pw_uid;
1110                         if (IsEmptyStr (username))
1111                         {
1112                                 safestrncpy(username, pd.pw_name, sizeof username);
1113                         }
1114                 }
1115                 else {
1116                         return (ERROR + NO_SUCH_USER);
1117                 }
1118         }
1119
1120 #ifdef HAVE_LDAP
1121         if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) {
1122                 if (CtdlTryUserLDAP(username, NULL, 0, username, sizeof username, &uid) != 0) {
1123                         return(ERROR + NO_SUCH_USER);
1124                 }
1125         }
1126 #endif /* HAVE_LDAP */
1127         
1128         if ((retval = internal_create_user(username, &usbuf, uid)) != 0)
1129                 return retval;
1130         
1131         /*
1132          * Give the user a private mailbox and a configuration room.
1133          * Make the latter an invisible system room.
1134          */
1135         MailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
1136         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_MAILBOX);
1137
1138         MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
1139         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_BBS);
1140         if (lgetroom(&qrbuf, mailboxname) == 0) {
1141                 qrbuf.QRflags2 |= QR2_SYSTEM;
1142                 lputroom(&qrbuf);
1143         }
1144
1145         /* Perform any create functions registered by server extensions */
1146         PerformUserHooks(&usbuf, EVT_NEWUSER);
1147
1148         /* Everything below this line can be bypassed if administratively
1149          * creating a user, instead of doing self-service account creation
1150          */
1151
1152         if (become_user) {
1153                 /* Now become the user we just created */
1154                 memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
1155                 safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
1156                 do_login();
1157         
1158                 /* Check to make sure we're still who we think we are */
1159                 if (getuser(&CC->user, CC->curr_user)) {
1160                         return (ERROR + INTERNAL_ERROR);
1161                 }
1162         }
1163         
1164         snprintf(buf, SIZ, 
1165                 "New user account <%s> has been created, from host %s [%s].\n",
1166                 username,
1167                 CC->cs_host,
1168                 CC->cs_addr
1169         );
1170         aide_message(buf, "User Creation Notice");
1171         CtdlLogPrintf(CTDL_NOTICE, "New user <%s> created\n", username);
1172         return (0);
1173 }
1174
1175
1176
1177 /*
1178  * cmd_newu()  -  create a new user account and log in as that user
1179  */
1180 void cmd_newu(char *cmdbuf)
1181 {
1182         int a;
1183         char username[26];
1184
1185         if (config.c_auth_mode != AUTHMODE_NATIVE) {
1186                 cprintf("%d This system does not use native mode authentication.\n",
1187                         ERROR + NOT_HERE);
1188                 return;
1189         }
1190
1191         if (config.c_disable_newu) {
1192                 cprintf("%d Self-service user account creation "
1193                         "is disabled on this system.\n", ERROR + NOT_HERE);
1194                 return;
1195         }
1196
1197         if (CC->logged_in) {
1198                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
1199                 return;
1200         }
1201         if (CC->nologin) {
1202                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
1203                         ERROR + MAX_SESSIONS_EXCEEDED,
1204                         config.c_nodename, config.c_maxsessions);
1205         }
1206         extract_token(username, cmdbuf, 0, '|', sizeof username);
1207         username[25] = 0;
1208         strproc(username);
1209
1210         if (IsEmptyStr(username)) {
1211                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1212                 return;
1213         }
1214
1215         if ((!strcasecmp(username, "bbs")) ||
1216             (!strcasecmp(username, "new")) ||
1217             (!strcasecmp(username, "."))) {
1218                 cprintf("%d '%s' is an invalid login name.\n", ERROR + ILLEGAL_VALUE, username);
1219                 return;
1220         }
1221
1222         a = create_user(username, 1);
1223
1224         if (a == 0) {
1225                 logged_in_response();
1226         } else if (a == ERROR + ALREADY_EXISTS) {
1227                 cprintf("%d '%s' already exists.\n",
1228                         ERROR + ALREADY_EXISTS, username);
1229                 return;
1230         } else if (a == ERROR + INTERNAL_ERROR) {
1231                 cprintf("%d Internal error - user record disappeared?\n",
1232                         ERROR + INTERNAL_ERROR);
1233                 return;
1234         } else {
1235                 cprintf("%d unknown error\n", ERROR + INTERNAL_ERROR);
1236         }
1237 }
1238
1239
1240 /*
1241  * set password - back end api code
1242  */
1243 void CtdlSetPassword(char *new_pw)
1244 {
1245         lgetuser(&CC->user, CC->curr_user);
1246         safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
1247         lputuser(&CC->user);
1248         CtdlLogPrintf(CTDL_INFO, "Password changed for user <%s>\n", CC->curr_user);
1249         PerformSessionHooks(EVT_SETPASS);
1250 }
1251
1252
1253 /*
1254  * set password - citadel protocol implementation
1255  */
1256 void cmd_setp(char *new_pw)
1257 {
1258         int generate_random_password = 0;
1259
1260         if (CtdlAccessCheck(ac_logged_in)) {
1261                 return;
1262         }
1263         if ( (CC->user.uid != CTDLUID) && (CC->user.uid != (-1)) ) {
1264                 cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR + NOT_HERE);
1265                 return;
1266         }
1267         if (CC->is_master) {
1268                 cprintf("%d The master prefix password cannot be changed with this command.\n",
1269                         ERROR + NOT_HERE);
1270                 return;
1271         }
1272
1273         if (!strcasecmp(new_pw, "GENERATE_RANDOM_PASSWORD")) {
1274                 char random_password[17];
1275                 generate_random_password = 1;
1276                 snprintf(random_password, sizeof random_password, "%08lx%08lx", random(), random());
1277                 CtdlSetPassword(random_password);
1278                 cprintf("%d %s\n", CIT_OK, random_password);
1279         }
1280         else {
1281                 strproc(new_pw);
1282                 if (IsEmptyStr(new_pw)) {
1283                         cprintf("%d Password unchanged.\n", CIT_OK);
1284                         return;
1285                 }
1286                 CtdlSetPassword(new_pw);
1287                 cprintf("%d Password changed.\n", CIT_OK);
1288         }
1289 }
1290
1291
1292 /*
1293  * cmd_creu() - administratively create a new user account (do not log in to it)
1294  */
1295 void cmd_creu(char *cmdbuf)
1296 {
1297         int a;
1298         char username[26];
1299         char password[32];
1300         struct ctdluser tmp;
1301
1302         if (CtdlAccessCheck(ac_aide)) {
1303                 return;
1304         }
1305
1306         extract_token(username, cmdbuf, 0, '|', sizeof username);
1307         extract_token(password, cmdbuf, 1, '|', sizeof password);
1308         username[25] = 0;
1309         password[31] = 0;
1310         strproc(username);
1311         strproc(password);
1312
1313         if (IsEmptyStr(username)) {
1314                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1315                 return;
1316         }
1317
1318         a = create_user(username, 0);
1319
1320         if (a == 0) {
1321                 if (!IsEmptyStr(password)) {
1322                         lgetuser(&tmp, username);
1323                         safestrncpy(tmp.password, password, sizeof(tmp.password));
1324                         lputuser(&tmp);
1325                 }
1326                 cprintf("%d User '%s' created %s.\n", CIT_OK, username,
1327                                 (!IsEmptyStr(password)) ? "and password set" :
1328                                 "with no password");
1329                 return;
1330         } else if (a == ERROR + ALREADY_EXISTS) {
1331                 cprintf("%d '%s' already exists.\n", ERROR + ALREADY_EXISTS, username);
1332                 return;
1333         } else if ( (config.c_auth_mode != AUTHMODE_NATIVE) && (a == ERROR + NO_SUCH_USER) ) {
1334                 cprintf("%d User accounts are not created within Citadel in host authentication mode.\n",
1335                         ERROR + NO_SUCH_USER);
1336                 return;
1337         } else {
1338                 cprintf("%d An error occurred creating the user account.\n", ERROR + INTERNAL_ERROR);
1339         }
1340 }
1341
1342
1343
1344 /*
1345  * get user parameters
1346  */
1347 void cmd_getu(char *cmdbuf)
1348 {
1349
1350         if (CtdlAccessCheck(ac_logged_in))
1351                 return;
1352
1353         getuser(&CC->user, CC->curr_user);
1354         cprintf("%d %d|%d|%d|\n",
1355                 CIT_OK,
1356                 CC->user.USscreenwidth,
1357                 CC->user.USscreenheight,
1358                 (CC->user.flags & US_USER_SET)
1359             );
1360 }
1361
1362 /*
1363  * set user parameters
1364  */
1365 void cmd_setu(char *new_parms)
1366 {
1367         if (CtdlAccessCheck(ac_logged_in))
1368                 return;
1369
1370         if (num_parms(new_parms) < 3) {
1371                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
1372                 return;
1373         }
1374         lgetuser(&CC->user, CC->curr_user);
1375         CC->user.USscreenwidth = extract_int(new_parms, 0);
1376         CC->user.USscreenheight = extract_int(new_parms, 1);
1377         CC->user.flags = CC->user.flags & (~US_USER_SET);
1378         CC->user.flags = CC->user.flags |
1379             (extract_int(new_parms, 2) & US_USER_SET);
1380
1381         lputuser(&CC->user);
1382         cprintf("%d Ok\n", CIT_OK);
1383 }
1384
1385 /*
1386  * set last read pointer
1387  */
1388 void cmd_slrp(char *new_ptr)
1389 {
1390         long newlr;
1391         struct visit vbuf;
1392         struct visit original_vbuf;
1393
1394         if (CtdlAccessCheck(ac_logged_in)) {
1395                 return;
1396         }
1397
1398         if (!strncasecmp(new_ptr, "highest", 7)) {
1399                 newlr = CC->room.QRhighest;
1400         } else {
1401                 newlr = atol(new_ptr);
1402         }
1403
1404         lgetuser(&CC->user, CC->curr_user);
1405
1406         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1407         memcpy(&original_vbuf, &vbuf, sizeof(struct visit));
1408         vbuf.v_lastseen = newlr;
1409         snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
1410
1411         /* Only rewrite the record if it changed */
1412         if ( (vbuf.v_lastseen != original_vbuf.v_lastseen)
1413            || (strcmp(vbuf.v_seen, original_vbuf.v_seen)) ) {
1414                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1415         }
1416
1417         lputuser(&CC->user);
1418         cprintf("%d %ld\n", CIT_OK, newlr);
1419 }
1420
1421
1422 void cmd_seen(char *argbuf) {
1423         long target_msgnum = 0L;
1424         int target_setting = 0;
1425
1426         if (CtdlAccessCheck(ac_logged_in)) {
1427                 return;
1428         }
1429
1430         if (num_parms(argbuf) != 2) {
1431                 cprintf("%d Invalid parameters\n", ERROR + ILLEGAL_VALUE);
1432                 return;
1433         }
1434
1435         target_msgnum = extract_long(argbuf, 0);
1436         target_setting = extract_int(argbuf, 1);
1437
1438         CtdlSetSeen(&target_msgnum, 1, target_setting,
1439                         ctdlsetseen_seen, NULL, NULL);
1440         cprintf("%d OK\n", CIT_OK);
1441 }
1442
1443
1444 void cmd_gtsn(char *argbuf) {
1445         char buf[SIZ];
1446
1447         if (CtdlAccessCheck(ac_logged_in)) {
1448                 return;
1449         }
1450
1451         CtdlGetSeen(buf, ctdlsetseen_seen);
1452         cprintf("%d %s\n", CIT_OK, buf);
1453 }
1454
1455
1456 /*
1457  * API function for cmd_invt_kick() and anything else that needs to
1458  * invite or kick out a user to/from a room.
1459  * 
1460  * Set iuser to the name of the user, and op to 1=invite or 0=kick
1461  */
1462 int CtdlInvtKick(char *iuser, int op) {
1463         struct ctdluser USscratch;
1464         struct visit vbuf;
1465         char bbb[SIZ];
1466
1467         if (getuser(&USscratch, iuser) != 0) {
1468                 return(1);
1469         }
1470
1471         CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
1472         if (op == 1) {
1473                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1474                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1475         }
1476         if (op == 0) {
1477                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1478                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1479         }
1480         CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
1481
1482         /* post a message in Aide> saying what we just did */
1483         snprintf(bbb, sizeof bbb, "%s has been %s \"%s\" by %s.\n",
1484                 iuser,
1485                 ((op == 1) ? "invited to" : "kicked out of"),
1486                 CC->room.QRname,
1487                 CC->user.fullname);
1488         aide_message(bbb,"User Admin Message");
1489
1490         return(0);
1491 }
1492
1493
1494 /*
1495  * INVT and KICK commands
1496  */
1497 void cmd_invt_kick(char *iuser, int op) {
1498
1499         /*
1500          * These commands are only allowed by aides, room aides,
1501          * and room namespace owners
1502          */
1503         if (is_room_aide()
1504            || (atol(CC->room.QRname) == CC->user.usernum) ) {
1505                 /* access granted */
1506         } else {
1507                 /* access denied */
1508                 cprintf("%d Higher access or room ownership required.\n",
1509                         ERROR + HIGHER_ACCESS_REQUIRED);
1510                 return;
1511         }
1512
1513         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1514                          ROOMNAMELEN)) {
1515                 cprintf("%d Can't add/remove users from this room.\n",
1516                         ERROR + NOT_HERE);
1517                 return;
1518         }
1519
1520         if (CtdlInvtKick(iuser, op) != 0) {
1521                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1522                 return;
1523         }
1524
1525         cprintf("%d %s %s %s.\n",
1526                 CIT_OK, iuser,
1527                 ((op == 1) ? "invited to" : "kicked out of"),
1528                 CC->room.QRname);
1529         return;
1530 }
1531
1532 void cmd_invt(char *iuser) {cmd_invt_kick(iuser, 1);}
1533 void cmd_kick(char *iuser) {cmd_invt_kick(iuser, 0);}
1534
1535 /*
1536  * Forget (Zap) the current room (API call)
1537  * Returns 0 on success
1538  */
1539 int CtdlForgetThisRoom(void) {
1540         struct visit vbuf;
1541
1542         /* On some systems, Aides are not allowed to forget rooms */
1543         if (is_aide() && (config.c_aide_zap == 0)
1544            && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
1545                 return(1);
1546         }
1547
1548         lgetuser(&CC->user, CC->curr_user);
1549         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1550
1551         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1552         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1553
1554         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1555         lputuser(&CC->user);
1556
1557         /* Return to the Lobby, so we don't end up in an undefined room */
1558         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1559         return(0);
1560
1561 }
1562
1563
1564 /*
1565  * forget (Zap) the current room
1566  */
1567 void cmd_forg(char *argbuf)
1568 {
1569
1570         if (CtdlAccessCheck(ac_logged_in)) {
1571                 return;
1572         }
1573
1574         if (CtdlForgetThisRoom() == 0) {
1575                 cprintf("%d Ok\n", CIT_OK);
1576         }
1577         else {
1578                 cprintf("%d You may not forget this room.\n", ERROR + NOT_HERE);
1579         }
1580 }
1581
1582 /*
1583  * Get Next Unregistered User
1584  */
1585 void cmd_gnur(char *argbuf)
1586 {
1587         struct cdbdata *cdbus;
1588         struct ctdluser usbuf;
1589
1590         if (CtdlAccessCheck(ac_aide)) {
1591                 return;
1592         }
1593
1594         if ((CitControl.MMflags & MM_VALID) == 0) {
1595                 cprintf("%d There are no unvalidated users.\n", CIT_OK);
1596                 return;
1597         }
1598
1599         /* There are unvalidated users.  Traverse the user database,
1600          * and return the first user we find that needs validation.
1601          */
1602         cdb_rewind(CDB_USERS);
1603         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1604                 memset(&usbuf, 0, sizeof(struct ctdluser));
1605                 memcpy(&usbuf, cdbus->ptr,
1606                        ((cdbus->len > sizeof(struct ctdluser)) ?
1607                         sizeof(struct ctdluser) : cdbus->len));
1608                 cdb_free(cdbus);
1609                 if ((usbuf.flags & US_NEEDVALID)
1610                     && (usbuf.axlevel > 0)) {
1611                         cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
1612                         cdb_close_cursor(CDB_USERS);
1613                         return;
1614                 }
1615         }
1616
1617         /* If we get to this point, there are no more unvalidated users.
1618          * Therefore we clear the "users need validation" flag.
1619          */
1620
1621         begin_critical_section(S_CONTROL);
1622         get_control();
1623         CitControl.MMflags = CitControl.MMflags & (~MM_VALID);
1624         put_control();
1625         end_critical_section(S_CONTROL);
1626         cprintf("%d *** End of registration.\n", CIT_OK);
1627
1628
1629 }
1630
1631
1632 /*
1633  * validate a user
1634  */
1635 void cmd_vali(char *v_args)
1636 {
1637         char user[128];
1638         int newax;
1639         struct ctdluser userbuf;
1640
1641         extract_token(user, v_args, 0, '|', sizeof user);
1642         newax = extract_int(v_args, 1);
1643
1644         if (CtdlAccessCheck(ac_aide)) {
1645                 return;
1646         }
1647
1648         if (lgetuser(&userbuf, user) != 0) {
1649                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, user);
1650                 return;
1651         }
1652
1653         userbuf.axlevel = newax;
1654         userbuf.flags = (userbuf.flags & ~US_NEEDVALID);
1655
1656         lputuser(&userbuf);
1657
1658         /* If the access level was set to zero, delete the user */
1659         if (newax == 0) {
1660                 if (purge_user(user) == 0) {
1661                         cprintf("%d %s Deleted.\n", CIT_OK, userbuf.fullname);
1662                         return;
1663                 }
1664         }
1665         cprintf("%d User '%s' validated.\n", CIT_OK, userbuf.fullname);
1666 }
1667
1668
1669
1670 /* 
1671  *  Traverse the user file...
1672  */
1673 void ForEachUser(void (*CallBack) (struct ctdluser * EachUser, void *out_data),
1674                  void *in_data)
1675 {
1676         struct ctdluser usbuf;
1677         struct cdbdata *cdbus;
1678
1679         cdb_rewind(CDB_USERS);
1680
1681         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1682                 memset(&usbuf, 0, sizeof(struct ctdluser));
1683                 memcpy(&usbuf, cdbus->ptr,
1684                        ((cdbus->len > sizeof(struct ctdluser)) ?
1685                         sizeof(struct ctdluser) : cdbus->len));
1686                 cdb_free(cdbus);
1687                 (*CallBack) (&usbuf, in_data);
1688         }
1689 }
1690
1691
1692 /*
1693  * List one user (this works with cmd_list)
1694  */
1695 void ListThisUser(struct ctdluser *usbuf, void *data)
1696 {
1697         char *searchstring;
1698
1699         searchstring = (char *)data;
1700         if (bmstrcasestr(usbuf->fullname, searchstring) == NULL) {
1701                 return;
1702         }
1703
1704         if (usbuf->axlevel > 0) {
1705                 if ((CC->user.axlevel >= 6)
1706                     || ((usbuf->flags & US_UNLISTED) == 0)
1707                     || ((CC->internal_pgm))) {
1708                         cprintf("%s|%d|%ld|%ld|%ld|%ld||\n",
1709                                 usbuf->fullname,
1710                                 usbuf->axlevel,
1711                                 usbuf->usernum,
1712                                 (long)usbuf->lastcall,
1713                                 usbuf->timescalled,
1714                                 usbuf->posted);
1715                 }
1716         }
1717 }
1718
1719 /* 
1720  *  List users (searchstring may be empty to list all users)
1721  */
1722 void cmd_list(char *cmdbuf)
1723 {
1724         char searchstring[256];
1725         extract_token(searchstring, cmdbuf, 0, '|', sizeof searchstring);
1726         striplt(searchstring);
1727         cprintf("%d \n", LISTING_FOLLOWS);
1728         ForEachUser(ListThisUser, (void *)searchstring );
1729         cprintf("000\n");
1730 }
1731
1732
1733
1734
1735 /*
1736  * assorted info we need to check at login
1737  */
1738 void cmd_chek(char *argbuf)
1739 {
1740         int mail = 0;
1741         int regis = 0;
1742         int vali = 0;
1743
1744         if (CtdlAccessCheck(ac_logged_in)) {
1745                 return;
1746         }
1747
1748         getuser(&CC->user, CC->curr_user);      /* no lock is needed here */
1749         if ((REGISCALL != 0) && ((CC->user.flags & US_REGIS) == 0))
1750                 regis = 1;
1751
1752         if (CC->user.axlevel >= 6) {
1753                 get_control();
1754                 if (CitControl.MMflags & MM_VALID)
1755                         vali = 1;
1756         }
1757
1758         /* check for mail */
1759         mail = InitialMailCheck();
1760
1761         cprintf("%d %d|%d|%d|%s|\n", CIT_OK, mail, regis, vali, CC->cs_inet_email);
1762 }
1763
1764
1765 /*
1766  * check to see if a user exists
1767  */
1768 void cmd_qusr(char *who)
1769 {
1770         struct ctdluser usbuf;
1771
1772         if (getuser(&usbuf, who) == 0) {
1773                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1774         } else {
1775                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1776         }
1777 }
1778
1779
1780 /*
1781  * Administrative Get User Parameters
1782  */
1783 void cmd_agup(char *cmdbuf)
1784 {
1785         struct ctdluser usbuf;
1786         char requested_user[128];
1787
1788         if (CtdlAccessCheck(ac_aide)) {
1789                 return;
1790         }
1791
1792         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1793         if (getuser(&usbuf, requested_user) != 0) {
1794                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1795                 return;
1796         }
1797         cprintf("%d %s|%s|%u|%ld|%ld|%d|%ld|%ld|%d\n",
1798                 CIT_OK,
1799                 usbuf.fullname,
1800                 usbuf.password,
1801                 usbuf.flags,
1802                 usbuf.timescalled,
1803                 usbuf.posted,
1804                 (int) usbuf.axlevel,
1805                 usbuf.usernum,
1806                 (long)usbuf.lastcall,
1807                 usbuf.USuserpurge);
1808 }
1809
1810
1811
1812 /*
1813  * Administrative Set User Parameters
1814  */
1815 void cmd_asup(char *cmdbuf)
1816 {
1817         struct ctdluser usbuf;
1818         char requested_user[128];
1819         char notify[SIZ];
1820         int np;
1821         int newax;
1822         int deleted = 0;
1823
1824         if (CtdlAccessCheck(ac_aide))
1825                 return;
1826
1827         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1828         if (lgetuser(&usbuf, requested_user) != 0) {
1829                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1830                 return;
1831         }
1832         np = num_parms(cmdbuf);
1833         if (np > 1)
1834                 extract_token(usbuf.password, cmdbuf, 1, '|', sizeof usbuf.password);
1835         if (np > 2)
1836                 usbuf.flags = extract_int(cmdbuf, 2);
1837         if (np > 3)
1838                 usbuf.timescalled = extract_int(cmdbuf, 3);
1839         if (np > 4)
1840                 usbuf.posted = extract_int(cmdbuf, 4);
1841         if (np > 5) {
1842                 newax = extract_int(cmdbuf, 5);
1843                 if ((newax >= 0) && (newax <= 6)) {
1844                         usbuf.axlevel = extract_int(cmdbuf, 5);
1845                 }
1846         }
1847         if (np > 7) {
1848                 usbuf.lastcall = extract_long(cmdbuf, 7);
1849         }
1850         if (np > 8) {
1851                 usbuf.USuserpurge = extract_int(cmdbuf, 8);
1852         }
1853         lputuser(&usbuf);
1854         if (usbuf.axlevel == 0) {
1855                 if (purge_user(requested_user) == 0) {
1856                         deleted = 1;
1857                 }
1858         }
1859
1860         if (deleted) {
1861                 snprintf(notify, SIZ, 
1862                          "User \"%s\" has been deleted by %s.\n",
1863                          usbuf.fullname, CC->user.fullname);
1864                 aide_message(notify, "User Deletion Message");
1865         }
1866
1867         cprintf("%d Ok", CIT_OK);
1868         if (deleted)
1869                 cprintf(" (%s deleted)", requested_user);
1870         cprintf("\n");
1871 }
1872
1873
1874
1875 /*
1876  * Check to see if the user who we just sent mail to is logged in.  If yes,
1877  * bump the 'new mail' counter for their session.  That enables them to
1878  * receive a new mail notification without having to hit the database.
1879  */
1880 void BumpNewMailCounter(long which_user) {
1881         struct CitContext *ptr;
1882
1883         begin_critical_section(S_SESSION_TABLE);
1884
1885         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1886                 if (ptr->user.usernum == which_user) {
1887                         ptr->newmail += 1;
1888                 }
1889         }
1890
1891         end_critical_section(S_SESSION_TABLE);
1892 }
1893
1894
1895 /*
1896  * Count the number of new mail messages the user has
1897  */
1898 int NewMailCount()
1899 {
1900         int num_newmsgs = 0;
1901
1902         num_newmsgs = CC->newmail;
1903         CC->newmail = 0;
1904
1905         return (num_newmsgs);
1906 }
1907
1908
1909 /*
1910  * Count the number of new mail messages the user has
1911  */
1912 int InitialMailCheck()
1913 {
1914         int num_newmsgs = 0;
1915         int a;
1916         char mailboxname[ROOMNAMELEN];
1917         struct ctdlroom mailbox;
1918         struct visit vbuf;
1919         struct cdbdata *cdbfr;
1920         long *msglist = NULL;
1921         int num_msgs = 0;
1922
1923         MailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
1924         if (getroom(&mailbox, mailboxname) != 0)
1925                 return (0);
1926         CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
1927
1928         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1929
1930         if (cdbfr != NULL) {
1931                 msglist = malloc(cdbfr->len);
1932                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1933                 num_msgs = cdbfr->len / sizeof(long);
1934                 cdb_free(cdbfr);
1935         }
1936         if (num_msgs > 0)
1937                 for (a = 0; a < num_msgs; ++a) {
1938                         if (msglist[a] > 0L) {
1939                                 if (msglist[a] > vbuf.v_lastseen) {
1940                                         ++num_newmsgs;
1941                                 }
1942                         }
1943                 }
1944         if (msglist != NULL)
1945                 free(msglist);
1946
1947         return (num_newmsgs);
1948 }
1949
1950
1951
1952 /*
1953  * Set the preferred view for the current user/room combination
1954  */
1955 void cmd_view(char *cmdbuf) {
1956         int requested_view;
1957         struct visit vbuf;
1958
1959         if (CtdlAccessCheck(ac_logged_in)) {
1960                 return;
1961         }
1962
1963         requested_view = extract_int(cmdbuf, 0);
1964
1965         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1966         vbuf.v_view = requested_view;
1967         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1968         
1969         cprintf("%d ok\n", CIT_OK);
1970 }
1971
1972
1973 /*
1974  * Rename a user
1975  */
1976 void cmd_renu(char *cmdbuf)
1977 {
1978         int retcode;
1979         char oldname[USERNAME_SIZE];
1980         char newname[USERNAME_SIZE];
1981
1982         if (CtdlAccessCheck(ac_aide)) {
1983                 return;
1984         }
1985
1986         extract_token(oldname, cmdbuf, 0, '|', sizeof oldname);
1987         extract_token(newname, cmdbuf, 1, '|', sizeof newname);
1988
1989         retcode = rename_user(oldname, newname);
1990         switch(retcode) {
1991                 case RENAMEUSER_OK:
1992                         cprintf("%d '%s' has been renamed to '%s'.\n", CIT_OK, oldname, newname);
1993                         return;
1994                 case RENAMEUSER_LOGGED_IN:
1995                         cprintf("%d '%s' is currently logged in and cannot be renamed.\n",
1996                                 ERROR + ALREADY_LOGGED_IN , oldname);
1997                         return;
1998                 case RENAMEUSER_NOT_FOUND:
1999                         cprintf("%d '%s' does not exist.\n", ERROR + NO_SUCH_USER, oldname);
2000                         return;
2001                 case RENAMEUSER_ALREADY_EXISTS:
2002                         cprintf("%d A user named '%s' already exists.\n", ERROR + ALREADY_EXISTS, newname);
2003                         return;
2004         }
2005
2006         cprintf("%d An unknown error occurred.\n", ERROR);
2007 }
2008
2009
2010
2011 /*****************************************************************************/
2012 /*                      MODULE INITIALIZATION STUFF                          */
2013 /*****************************************************************************/
2014
2015
2016 CTDL_MODULE_INIT(user_ops)
2017 {
2018         CtdlRegisterProtoHook(cmd_user, "USER", "Autoconverted. TODO: document me.");
2019         CtdlRegisterProtoHook(cmd_pass, "PASS", "Autoconverted. TODO: document me.");
2020         CtdlRegisterProtoHook(cmd_creu, "CREU", "Autoconverted. TODO: document me.");
2021         CtdlRegisterProtoHook(cmd_setp, "SETP", "Autoconverted. TODO: document me.");
2022         CtdlRegisterProtoHook(cmd_getu, "GETU", "Autoconverted. TODO: document me.");
2023         CtdlRegisterProtoHook(cmd_setu, "SETU", "Autoconverted. TODO: document me.");
2024         CtdlRegisterProtoHook(cmd_slrp, "SLRP", "Autoconverted. TODO: document me.");
2025         CtdlRegisterProtoHook(cmd_invt, "INVT", "Autoconverted. TODO: document me.");
2026         CtdlRegisterProtoHook(cmd_kick, "KICK", "Autoconverted. TODO: document me.");
2027         CtdlRegisterProtoHook(cmd_forg, "FORG", "Autoconverted. TODO: document me.");
2028         CtdlRegisterProtoHook(cmd_gnur, "GNUR", "Autoconverted. TODO: document me.");
2029         CtdlRegisterProtoHook(cmd_vali, "VALI", "Autoconverted. TODO: document me.");
2030         CtdlRegisterProtoHook(cmd_list, "LIST", "Autoconverted. TODO: document me.");
2031         CtdlRegisterProtoHook(cmd_chek, "CHEK", "Autoconverted. TODO: document me.");
2032         CtdlRegisterProtoHook(cmd_qusr, "QUSR", "Autoconverted. TODO: document me.");
2033         CtdlRegisterProtoHook(cmd_agup, "AGUP", "Autoconverted. TODO: document me.");
2034         CtdlRegisterProtoHook(cmd_asup, "ASUP", "Autoconverted. TODO: document me.");
2035         CtdlRegisterProtoHook(cmd_seen, "SEEN", "Autoconverted. TODO: document me.");
2036         CtdlRegisterProtoHook(cmd_gtsn, "GTSN", "Autoconverted. TODO: document me.");
2037         CtdlRegisterProtoHook(cmd_view, "VIEW", "Autoconverted. TODO: document me.");
2038         CtdlRegisterProtoHook(cmd_renu, "RENU", "Autoconverted. TODO: document me.");
2039         CtdlRegisterProtoHook(cmd_newu, "NEWU", "Autoconverted. TODO: document me.");
2040         /* return our Subversion id for the Log */
2041         return "$Id$";
2042 }