* Fixed striplt() to only remove leading and trailing blanks, but no others. It...
[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
699         /* Run any startup routines registered by loadable modules */
700         PerformSessionHooks(EVT_LOGIN);
701
702         /* Enter the lobby */
703         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
704 }
705
706
707 void logged_in_response(void)
708 {
709         cprintf("%d %s|%d|%ld|%ld|%u|%ld|%ld\n",
710                 CIT_OK, CC->user.fullname, CC->user.axlevel,
711                 CC->user.timescalled, CC->user.posted,
712                 CC->user.flags, CC->user.usernum,
713                 CC->previous_login);
714 }
715
716
717
718 /* 
719  * misc things to be taken care of when a user is logged out
720  */
721 void logout(void)
722 {
723         struct CitContext *CCC = CC;    /* CachedCitContext - performance boost */
724         /*
725          * If there is a download in progress, abort it.
726          */
727         if (CCC->download_fp != NULL) {
728                 fclose(CCC->download_fp);
729                 CCC->download_fp = NULL;
730         }
731
732         /*
733          * If there is an upload in progress, abort it.
734          */
735         if (CCC->upload_fp != NULL) {
736                 abort_upl(CCC);
737         }
738
739         /*
740          * If we were talking to a network node, we're not anymore...
741          */
742         if (!IsEmptyStr(CCC->net_node)) {
743                 network_talking_to(CCC->net_node, NTT_REMOVE);
744         }
745
746         /* Run any hooks registered by modules... */
747         PerformSessionHooks(EVT_LOGOUT);
748         
749         /*
750          * Clear out some session data.  Most likely, the CitContext for this
751          * session is about to get nuked when the session disconnects, but
752          * since it's possible to log in again without reconnecting, we cannot
753          * make that assumption.
754          */
755         strcpy(CCC->fake_username, "");
756         strcpy(CCC->fake_hostname, "");
757         strcpy(CCC->fake_roomname, "");
758         CCC->logged_in = 0;
759
760         /* Check to see if the user was deleted whilst logged in and purge them if necessary */
761         if ((CCC->user.axlevel == 0) && (CCC->user.usernum))
762                 purge_user(CCC->user.fullname);
763
764         /* Free any output buffers */
765         unbuffer_output();
766 }
767
768 /*
769  * Validate a password on the host unix system by talking to the chkpwd daemon
770  */
771 static int validpw(uid_t uid, const char *pass)
772 {
773         char buf[256];
774
775         if (IsEmptyStr(pass)) {
776                 CtdlLogPrintf(CTDL_DEBUG, "refusing to check empty password for uid=%d using chkpwd...\n", uid);
777                 return 0;
778         }
779
780         CtdlLogPrintf(CTDL_DEBUG, "Validating password for uid=%d using chkpwd...\n", uid);
781
782         begin_critical_section(S_CHKPWD);
783         write(chkpwd_write_pipe[1], &uid, sizeof(uid_t));
784         write(chkpwd_write_pipe[1], pass, 256);
785         read(chkpwd_read_pipe[0], buf, 4);
786         end_critical_section(S_CHKPWD);
787
788         if (!strncmp(buf, "PASS", 4)) {
789                 CtdlLogPrintf(CTDL_DEBUG, "...pass\n");
790                 return(1);
791         }
792
793         CtdlLogPrintf(CTDL_DEBUG, "...fail\n");
794         return 0;
795 }
796
797 /* 
798  * Start up the chkpwd daemon so validpw() has something to talk to
799  */
800 void start_chkpwd_daemon(void) {
801         pid_t chkpwd_pid;
802         struct stat filestats;
803         int i;
804
805         CtdlLogPrintf(CTDL_DEBUG, "Starting chkpwd daemon for host authentication mode\n");
806
807         if ((stat(file_chkpwd, &filestats)==-1) ||
808             (filestats.st_size==0)){
809                 printf("didn't find chkpwd daemon in %s: %s\n", file_chkpwd, strerror(errno));
810                 abort();
811         }
812         if (pipe(chkpwd_write_pipe) != 0) {
813                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
814                 abort();
815         }
816         if (pipe(chkpwd_read_pipe) != 0) {
817                 CtdlLogPrintf(CTDL_EMERG, "Unable to create pipe for chkpwd daemon: %s\n", strerror(errno));
818                 abort();
819         }
820
821         chkpwd_pid = fork();
822         if (chkpwd_pid < 0) {
823                 CtdlLogPrintf(CTDL_EMERG, "Unable to fork chkpwd daemon: %s\n", strerror(errno));
824                 abort();
825         }
826         if (chkpwd_pid == 0) {
827                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
828                 dup2(chkpwd_write_pipe[0], 0);
829                 CtdlLogPrintf(CTDL_DEBUG, "Now calling dup2() write\n");
830                 dup2(chkpwd_read_pipe[1], 1);
831                 CtdlLogPrintf(CTDL_DEBUG, "Now closing stuff\n");
832                 for (i=2; i<256; ++i) close(i);
833                 CtdlLogPrintf(CTDL_DEBUG, "Now calling execl(%s)\n", file_chkpwd);
834                 execl(file_chkpwd, file_chkpwd, NULL);
835                 CtdlLogPrintf(CTDL_EMERG, "Unable to exec chkpwd daemon: %s\n", strerror(errno));
836                 abort();
837                 exit(errno);
838         }
839 }
840
841
842 int CtdlTryPassword(char *password)
843 {
844         int code;
845
846         if ((CC->logged_in)) {
847                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: already logged in\n");
848                 return pass_already_logged_in;
849         }
850         if (!strcmp(CC->curr_user, NLI)) {
851                 CtdlLogPrintf(CTDL_WARNING, "CtdlTryPassword: no user selected\n");
852                 return pass_no_user;
853         }
854         if (getuser(&CC->user, CC->curr_user)) {
855                 CtdlLogPrintf(CTDL_ERR, "CtdlTryPassword: internal error\n");
856                 return pass_internal_error;
857         }
858         if (password == NULL) {
859                 CtdlLogPrintf(CTDL_INFO, "CtdlTryPassword: NULL password string supplied\n");
860                 return pass_wrong_password;
861         }
862         code = (-1);
863
864         if (CC->is_master) {
865                 code = strcmp(password, config.c_master_pass);
866         }
867
868         else if (config.c_auth_mode == AUTHMODE_HOST) {
869
870                 /* host auth mode */
871
872                 if (validpw(CC->user.uid, password)) {
873                         code = 0;
874
875                         /*
876                          * sooper-seekrit hack: populate the password field in the
877                          * citadel database with the password that the user typed,
878                          * if it's correct.  This allows most sites to convert from
879                          * host auth to native auth if they want to.  If you think
880                          * this is a security hazard, comment it out.
881                          */
882
883                         lgetuser(&CC->user, CC->curr_user);
884                         safestrncpy(CC->user.password, password, sizeof CC->user.password);
885                         lputuser(&CC->user);
886
887                         /*
888                          * (sooper-seekrit hack ends here)
889                          */
890
891                 }
892                 else {
893                         code = (-1);
894                 }
895         }
896
897 #ifdef HAVE_LDAP
898         else if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) {
899
900                 /* LDAP auth mode */
901
902                 if ((CC->ldap_dn) && (!CtdlTryPasswordLDAP(CC->ldap_dn, password))) {
903                         code = 0;
904                 }
905                 else {
906                         code = (-1);
907                 }
908         }
909 #endif
910
911         else {
912
913                 /* native auth mode */
914
915                 strproc(password);
916                 strproc(CC->user.password);
917                 code = strcasecmp(CC->user.password, password);
918                 strproc(password);
919                 strproc(CC->user.password);
920                 code = strcasecmp(CC->user.password, password);
921         }
922
923         if (!code) {
924                 do_login();
925                 return pass_ok;
926         } else {
927                 CtdlLogPrintf(CTDL_WARNING, "Bad password specified for <%s>\n", CC->curr_user);
928                 return pass_wrong_password;
929         }
930 }
931
932
933 void cmd_pass(char *buf)
934 {
935         char password[256];
936         int a;
937
938         extract_token(password, buf, 0, '|', sizeof password);
939         a = CtdlTryPassword(password);
940
941         switch (a) {
942         case pass_already_logged_in:
943                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
944                 return;
945         case pass_no_user:
946                 cprintf("%d You must send a name with USER first.\n",
947                         ERROR + USERNAME_REQUIRED);
948                 return;
949         case pass_wrong_password:
950                 cprintf("%d Wrong password.\n", ERROR + PASSWORD_REQUIRED);
951                 return;
952         case pass_ok:
953                 logged_in_response();
954                 return;
955         }
956 }
957
958
959
960 /*
961  * Delete a user record *and* all of its related resources.
962  */
963 int purge_user(char pname[])
964 {
965         char filename[64];
966         struct ctdluser usbuf;
967         char usernamekey[USERNAME_SIZE];
968         struct CitContext *ccptr;
969         int user_is_logged_in = 0;
970
971         makeuserkey(usernamekey, pname);
972
973         /* If the name is empty we can't find them in the DB any way so just return */
974         if (IsEmptyStr(pname))
975                 return (ERROR + NO_SUCH_USER);
976
977         if (getuser(&usbuf, pname) != 0) {
978                 CtdlLogPrintf(CTDL_ERR, "Cannot purge user <%s> - not found\n", pname);
979                 return (ERROR + NO_SUCH_USER);
980         }
981         /* Don't delete a user who is currently logged in.  Instead, just
982          * set the access level to 0, and let the account get swept up
983          * during the next purge.
984          */
985         user_is_logged_in = 0;
986         begin_critical_section(S_SESSION_TABLE);
987         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
988                 if (ccptr->user.usernum == usbuf.usernum) {
989                         user_is_logged_in = 1;
990                 }
991         }
992         end_critical_section(S_SESSION_TABLE);
993         if (user_is_logged_in == 1) {
994                 CtdlLogPrintf(CTDL_WARNING, "User <%s> is logged in; not deleting.\n", pname);
995                 usbuf.axlevel = 0;
996                 putuser(&usbuf);
997                 return (1);
998         }
999         CtdlLogPrintf(CTDL_NOTICE, "Deleting user <%s>\n", pname);
1000
1001         /* Perform any purge functions registered by server extensions */
1002         PerformUserHooks(&usbuf, EVT_PURGEUSER);
1003
1004         /* delete any existing user/room relationships */
1005         cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
1006
1007         /* delete the users-by-number index record */
1008         cdb_delete(CDB_USERSBYNUMBER, &usbuf.usernum, sizeof(long));
1009
1010         /* delete the userlog entry */
1011         cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
1012
1013         /* remove the user's bio file */
1014         snprintf(filename, 
1015                          sizeof filename, 
1016                          "%s/%ld",
1017                          ctdl_bio_dir,
1018                          usbuf.usernum);
1019         unlink(filename);
1020
1021         /* remove the user's picture */
1022         snprintf(filename, 
1023                          sizeof filename, 
1024                          "%s/%ld.gif",
1025                          ctdl_image_dir,
1026                          usbuf.usernum);
1027         unlink(filename);
1028
1029         return (0);
1030 }
1031
1032
1033 int internal_create_user (char *username, struct ctdluser *usbuf, uid_t uid)
1034 {
1035         if (!getuser(usbuf, username)) {
1036                 return (ERROR + ALREADY_EXISTS);
1037         }
1038
1039         /* Go ahead and initialize a new user record */
1040         memset(usbuf, 0, sizeof(struct ctdluser));
1041         safestrncpy(usbuf->fullname, username, sizeof usbuf->fullname);
1042         strcpy(usbuf->password, "");
1043         usbuf->uid = uid;
1044
1045         /* These are the default flags on new accounts */
1046         usbuf->flags = US_LASTOLD | US_DISAPPEAR | US_PAGINATOR | US_FLOORS;
1047
1048         usbuf->timescalled = 0;
1049         usbuf->posted = 0;
1050         usbuf->axlevel = config.c_initax;
1051         usbuf->USscreenwidth = 80;
1052         usbuf->USscreenheight = 24;
1053         usbuf->lastcall = time(NULL);
1054
1055         /* fetch a new user number */
1056         usbuf->usernum = get_new_user_number();
1057
1058         /* add user to the database */
1059         putuser(usbuf);
1060         cdb_store(CDB_USERSBYNUMBER, &usbuf->usernum, sizeof(long), usbuf->fullname, strlen(usbuf->fullname)+1);
1061
1062         return 0;
1063 }
1064
1065
1066
1067 /*
1068  * create_user()  -  back end processing to create a new user
1069  *
1070  * Set 'newusername' to the desired account name.
1071  * Set 'become_user' to nonzero if this is self-service account creation and we want
1072  * to actually log in as the user we just created, otherwise set it to 0.
1073  */
1074 int create_user(char *newusername, int become_user)
1075 {
1076         struct ctdluser usbuf;
1077         struct ctdlroom qrbuf;
1078         char username[256];
1079         char mailboxname[ROOMNAMELEN];
1080         char buf[SIZ];
1081         int retval;
1082         uid_t uid = (-1);
1083         
1084
1085         safestrncpy(username, newusername, sizeof username);
1086         strproc(username);
1087
1088         
1089         if (config.c_auth_mode == AUTHMODE_HOST) {
1090
1091                 /* host auth mode */
1092
1093                 struct passwd pd;
1094                 struct passwd *tempPwdPtr;
1095                 char pwdbuffer[256];
1096         
1097 #ifdef HAVE_GETPWNAM_R
1098 #ifdef SOLARIS_GETPWUID
1099                 tempPwdPtr = getpwnam_r(username, &pd, pwdbuffer, sizeof(pwdbuffer));
1100 #else // SOLARIS_GETPWUID
1101                 getpwnam_r(username, &pd, pwdbuffer, sizeof pwdbuffer, &tempPwdPtr);
1102 #endif // SOLARIS_GETPWUID
1103 #else // HAVE_GETPWNAM_R
1104                 tempPwdPtr = NULL;
1105 #endif // HAVE_GETPWNAM_R
1106                 if (tempPwdPtr != NULL) {
1107                         extract_token(username, pd.pw_gecos, 0, ',', sizeof username);
1108                         uid = pd.pw_uid;
1109                         if (IsEmptyStr (username))
1110                         {
1111                                 safestrncpy(username, pd.pw_name, sizeof username);
1112                         }
1113                 }
1114                 else {
1115                         return (ERROR + NO_SUCH_USER);
1116                 }
1117         }
1118
1119 #ifdef HAVE_LDAP
1120         if ((config.c_auth_mode == AUTHMODE_LDAP) || (config.c_auth_mode == AUTHMODE_LDAP_AD)) {
1121                 if (CtdlTryUserLDAP(username, NULL, 0, username, sizeof username, &uid) != 0) {
1122                         return(ERROR + NO_SUCH_USER);
1123                 }
1124         }
1125 #endif /* HAVE_LDAP */
1126         
1127         if ((retval = internal_create_user(username, &usbuf, uid)) != 0)
1128                 return retval;
1129         
1130         /*
1131          * Give the user a private mailbox and a configuration room.
1132          * Make the latter an invisible system room.
1133          */
1134         MailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
1135         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_MAILBOX);
1136
1137         MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
1138         create_room(mailboxname, 5, "", 0, 1, 1, VIEW_BBS);
1139         if (lgetroom(&qrbuf, mailboxname) == 0) {
1140                 qrbuf.QRflags2 |= QR2_SYSTEM;
1141                 lputroom(&qrbuf);
1142         }
1143
1144         /* Perform any create functions registered by server extensions */
1145         PerformUserHooks(&usbuf, EVT_NEWUSER);
1146
1147         /* Everything below this line can be bypassed if administratively
1148          * creating a user, instead of doing self-service account creation
1149          */
1150
1151         if (become_user) {
1152                 /* Now become the user we just created */
1153                 memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
1154                 safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
1155                 do_login();
1156         
1157                 /* Check to make sure we're still who we think we are */
1158                 if (getuser(&CC->user, CC->curr_user)) {
1159                         return (ERROR + INTERNAL_ERROR);
1160                 }
1161         }
1162         
1163         snprintf(buf, SIZ, 
1164                 "New user account <%s> has been created, from host %s [%s].\n",
1165                 username,
1166                 CC->cs_host,
1167                 CC->cs_addr
1168         );
1169         aide_message(buf, "User Creation Notice");
1170         CtdlLogPrintf(CTDL_NOTICE, "New user <%s> created\n", username);
1171         return (0);
1172 }
1173
1174
1175
1176 /*
1177  * cmd_newu()  -  create a new user account and log in as that user
1178  */
1179 void cmd_newu(char *cmdbuf)
1180 {
1181         int a;
1182         char username[26];
1183
1184         if (config.c_auth_mode != AUTHMODE_NATIVE) {
1185                 cprintf("%d This system does not use native mode authentication.\n",
1186                         ERROR + NOT_HERE);
1187                 return;
1188         }
1189
1190         if (config.c_disable_newu) {
1191                 cprintf("%d Self-service user account creation "
1192                         "is disabled on this system.\n", ERROR + NOT_HERE);
1193                 return;
1194         }
1195
1196         if (CC->logged_in) {
1197                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
1198                 return;
1199         }
1200         if (CC->nologin) {
1201                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
1202                         ERROR + MAX_SESSIONS_EXCEEDED,
1203                         config.c_nodename, config.c_maxsessions);
1204         }
1205         extract_token(username, cmdbuf, 0, '|', sizeof username);
1206         username[25] = 0;
1207         strproc(username);
1208
1209         if (IsEmptyStr(username)) {
1210                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1211                 return;
1212         }
1213
1214         if ((!strcasecmp(username, "bbs")) ||
1215             (!strcasecmp(username, "new")) ||
1216             (!strcasecmp(username, "."))) {
1217                 cprintf("%d '%s' is an invalid login name.\n", ERROR + ILLEGAL_VALUE, username);
1218                 return;
1219         }
1220
1221         a = create_user(username, 1);
1222
1223         if (a == 0) {
1224                 logged_in_response();
1225         } else if (a == ERROR + ALREADY_EXISTS) {
1226                 cprintf("%d '%s' already exists.\n",
1227                         ERROR + ALREADY_EXISTS, username);
1228                 return;
1229         } else if (a == ERROR + INTERNAL_ERROR) {
1230                 cprintf("%d Internal error - user record disappeared?\n",
1231                         ERROR + INTERNAL_ERROR);
1232                 return;
1233         } else {
1234                 cprintf("%d unknown error\n", ERROR + INTERNAL_ERROR);
1235         }
1236 }
1237
1238
1239 /*
1240  * set password - back end api code
1241  */
1242 void CtdlSetPassword(char *new_pw)
1243 {
1244         lgetuser(&CC->user, CC->curr_user);
1245         safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
1246         lputuser(&CC->user);
1247         CtdlLogPrintf(CTDL_INFO, "Password changed for user <%s>\n", CC->curr_user);
1248         PerformSessionHooks(EVT_SETPASS);
1249 }
1250
1251
1252 /*
1253  * set password - citadel protocol implementation
1254  */
1255 void cmd_setp(char *new_pw)
1256 {
1257         int generate_random_password = 0;
1258
1259         if (CtdlAccessCheck(ac_logged_in)) {
1260                 return;
1261         }
1262         if ( (CC->user.uid != CTDLUID) && (CC->user.uid != (-1)) ) {
1263                 cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR + NOT_HERE);
1264                 return;
1265         }
1266         if (CC->is_master) {
1267                 cprintf("%d The master prefix password cannot be changed with this command.\n",
1268                         ERROR + NOT_HERE);
1269                 return;
1270         }
1271
1272         if (!strcasecmp(new_pw, "GENERATE_RANDOM_PASSWORD")) {
1273                 char random_password[17];
1274                 generate_random_password = 1;
1275                 snprintf(random_password, sizeof random_password, "%08lx%08lx", random(), random());
1276                 CtdlSetPassword(random_password);
1277                 cprintf("%d %s\n", CIT_OK, random_password);
1278         }
1279         else {
1280                 strproc(new_pw);
1281                 if (IsEmptyStr(new_pw)) {
1282                         cprintf("%d Password unchanged.\n", CIT_OK);
1283                         return;
1284                 }
1285                 CtdlSetPassword(new_pw);
1286                 cprintf("%d Password changed.\n", CIT_OK);
1287         }
1288 }
1289
1290
1291 /*
1292  * cmd_creu() - administratively create a new user account (do not log in to it)
1293  */
1294 void cmd_creu(char *cmdbuf)
1295 {
1296         int a;
1297         char username[26];
1298         char password[32];
1299         struct ctdluser tmp;
1300
1301         if (CtdlAccessCheck(ac_aide)) {
1302                 return;
1303         }
1304
1305         extract_token(username, cmdbuf, 0, '|', sizeof username);
1306         extract_token(password, cmdbuf, 1, '|', sizeof password);
1307         username[25] = 0;
1308         password[31] = 0;
1309         strproc(username);
1310         strproc(password);
1311
1312         if (IsEmptyStr(username)) {
1313                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
1314                 return;
1315         }
1316
1317         a = create_user(username, 0);
1318
1319         if (a == 0) {
1320                 if (!IsEmptyStr(password)) {
1321                         lgetuser(&tmp, username);
1322                         safestrncpy(tmp.password, password, sizeof(tmp.password));
1323                         lputuser(&tmp);
1324                 }
1325                 cprintf("%d User '%s' created %s.\n", CIT_OK, username,
1326                                 (!IsEmptyStr(password)) ? "and password set" :
1327                                 "with no password");
1328                 return;
1329         } else if (a == ERROR + ALREADY_EXISTS) {
1330                 cprintf("%d '%s' already exists.\n", ERROR + ALREADY_EXISTS, username);
1331                 return;
1332         } else if ( (config.c_auth_mode != AUTHMODE_NATIVE) && (a == ERROR + NO_SUCH_USER) ) {
1333                 cprintf("%d User accounts are not created within Citadel in host authentication mode.\n",
1334                         ERROR + NO_SUCH_USER);
1335                 return;
1336         } else {
1337                 cprintf("%d An error occurred creating the user account.\n", ERROR + INTERNAL_ERROR);
1338         }
1339 }
1340
1341
1342
1343 /*
1344  * get user parameters
1345  */
1346 void cmd_getu(char *cmdbuf)
1347 {
1348
1349         if (CtdlAccessCheck(ac_logged_in))
1350                 return;
1351
1352         getuser(&CC->user, CC->curr_user);
1353         cprintf("%d %d|%d|%d|\n",
1354                 CIT_OK,
1355                 CC->user.USscreenwidth,
1356                 CC->user.USscreenheight,
1357                 (CC->user.flags & US_USER_SET)
1358             );
1359 }
1360
1361 /*
1362  * set user parameters
1363  */
1364 void cmd_setu(char *new_parms)
1365 {
1366         if (CtdlAccessCheck(ac_logged_in))
1367                 return;
1368
1369         if (num_parms(new_parms) < 3) {
1370                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
1371                 return;
1372         }
1373         lgetuser(&CC->user, CC->curr_user);
1374         CC->user.USscreenwidth = extract_int(new_parms, 0);
1375         CC->user.USscreenheight = extract_int(new_parms, 1);
1376         CC->user.flags = CC->user.flags & (~US_USER_SET);
1377         CC->user.flags = CC->user.flags |
1378             (extract_int(new_parms, 2) & US_USER_SET);
1379
1380         lputuser(&CC->user);
1381         cprintf("%d Ok\n", CIT_OK);
1382 }
1383
1384 /*
1385  * set last read pointer
1386  */
1387 void cmd_slrp(char *new_ptr)
1388 {
1389         long newlr;
1390         struct visit vbuf;
1391         struct visit original_vbuf;
1392
1393         if (CtdlAccessCheck(ac_logged_in)) {
1394                 return;
1395         }
1396
1397         if (!strncasecmp(new_ptr, "highest", 7)) {
1398                 newlr = CC->room.QRhighest;
1399         } else {
1400                 newlr = atol(new_ptr);
1401         }
1402
1403         lgetuser(&CC->user, CC->curr_user);
1404
1405         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1406         memcpy(&original_vbuf, &vbuf, sizeof(struct visit));
1407         vbuf.v_lastseen = newlr;
1408         snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
1409
1410         /* Only rewrite the record if it changed */
1411         if ( (vbuf.v_lastseen != original_vbuf.v_lastseen)
1412            || (strcmp(vbuf.v_seen, original_vbuf.v_seen)) ) {
1413                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1414         }
1415
1416         lputuser(&CC->user);
1417         cprintf("%d %ld\n", CIT_OK, newlr);
1418 }
1419
1420
1421 void cmd_seen(char *argbuf) {
1422         long target_msgnum = 0L;
1423         int target_setting = 0;
1424
1425         if (CtdlAccessCheck(ac_logged_in)) {
1426                 return;
1427         }
1428
1429         if (num_parms(argbuf) != 2) {
1430                 cprintf("%d Invalid parameters\n", ERROR + ILLEGAL_VALUE);
1431                 return;
1432         }
1433
1434         target_msgnum = extract_long(argbuf, 0);
1435         target_setting = extract_int(argbuf, 1);
1436
1437         CtdlSetSeen(&target_msgnum, 1, target_setting,
1438                         ctdlsetseen_seen, NULL, NULL);
1439         cprintf("%d OK\n", CIT_OK);
1440 }
1441
1442
1443 void cmd_gtsn(char *argbuf) {
1444         char buf[SIZ];
1445
1446         if (CtdlAccessCheck(ac_logged_in)) {
1447                 return;
1448         }
1449
1450         CtdlGetSeen(buf, ctdlsetseen_seen);
1451         cprintf("%d %s\n", CIT_OK, buf);
1452 }
1453
1454
1455 /*
1456  * API function for cmd_invt_kick() and anything else that needs to
1457  * invite or kick out a user to/from a room.
1458  * 
1459  * Set iuser to the name of the user, and op to 1=invite or 0=kick
1460  */
1461 int CtdlInvtKick(char *iuser, int op) {
1462         struct ctdluser USscratch;
1463         struct visit vbuf;
1464         char bbb[SIZ];
1465
1466         if (getuser(&USscratch, iuser) != 0) {
1467                 return(1);
1468         }
1469
1470         CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
1471         if (op == 1) {
1472                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1473                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1474         }
1475         if (op == 0) {
1476                 vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1477                 vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
1478         }
1479         CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
1480
1481         /* post a message in Aide> saying what we just did */
1482         snprintf(bbb, sizeof bbb, "%s has been %s \"%s\" by %s.\n",
1483                 iuser,
1484                 ((op == 1) ? "invited to" : "kicked out of"),
1485                 CC->room.QRname,
1486                 CC->user.fullname);
1487         aide_message(bbb,"User Admin Message");
1488
1489         return(0);
1490 }
1491
1492
1493 /*
1494  * INVT and KICK commands
1495  */
1496 void cmd_invt_kick(char *iuser, int op) {
1497
1498         /*
1499          * These commands are only allowed by aides, room aides,
1500          * and room namespace owners
1501          */
1502         if (is_room_aide()
1503            || (atol(CC->room.QRname) == CC->user.usernum) ) {
1504                 /* access granted */
1505         } else {
1506                 /* access denied */
1507                 cprintf("%d Higher access or room ownership required.\n",
1508                         ERROR + HIGHER_ACCESS_REQUIRED);
1509                 return;
1510         }
1511
1512         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1513                          ROOMNAMELEN)) {
1514                 cprintf("%d Can't add/remove users from this room.\n",
1515                         ERROR + NOT_HERE);
1516                 return;
1517         }
1518
1519         if (CtdlInvtKick(iuser, op) != 0) {
1520                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1521                 return;
1522         }
1523
1524         cprintf("%d %s %s %s.\n",
1525                 CIT_OK, iuser,
1526                 ((op == 1) ? "invited to" : "kicked out of"),
1527                 CC->room.QRname);
1528         return;
1529 }
1530
1531 void cmd_invt(char *iuser) {cmd_invt_kick(iuser, 1);}
1532 void cmd_kick(char *iuser) {cmd_invt_kick(iuser, 0);}
1533
1534 /*
1535  * Forget (Zap) the current room (API call)
1536  * Returns 0 on success
1537  */
1538 int CtdlForgetThisRoom(void) {
1539         struct visit vbuf;
1540
1541         /* On some systems, Aides are not allowed to forget rooms */
1542         if (is_aide() && (config.c_aide_zap == 0)
1543            && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
1544                 return(1);
1545         }
1546
1547         lgetuser(&CC->user, CC->curr_user);
1548         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1549
1550         vbuf.v_flags = vbuf.v_flags | V_FORGET;
1551         vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
1552
1553         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1554         lputuser(&CC->user);
1555
1556         /* Return to the Lobby, so we don't end up in an undefined room */
1557         usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1558         return(0);
1559
1560 }
1561
1562
1563 /*
1564  * forget (Zap) the current room
1565  */
1566 void cmd_forg(char *argbuf)
1567 {
1568
1569         if (CtdlAccessCheck(ac_logged_in)) {
1570                 return;
1571         }
1572
1573         if (CtdlForgetThisRoom() == 0) {
1574                 cprintf("%d Ok\n", CIT_OK);
1575         }
1576         else {
1577                 cprintf("%d You may not forget this room.\n", ERROR + NOT_HERE);
1578         }
1579 }
1580
1581 /*
1582  * Get Next Unregistered User
1583  */
1584 void cmd_gnur(char *argbuf)
1585 {
1586         struct cdbdata *cdbus;
1587         struct ctdluser usbuf;
1588
1589         if (CtdlAccessCheck(ac_aide)) {
1590                 return;
1591         }
1592
1593         if ((CitControl.MMflags & MM_VALID) == 0) {
1594                 cprintf("%d There are no unvalidated users.\n", CIT_OK);
1595                 return;
1596         }
1597
1598         /* There are unvalidated users.  Traverse the user database,
1599          * and return the first user we find that needs validation.
1600          */
1601         cdb_rewind(CDB_USERS);
1602         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1603                 memset(&usbuf, 0, sizeof(struct ctdluser));
1604                 memcpy(&usbuf, cdbus->ptr,
1605                        ((cdbus->len > sizeof(struct ctdluser)) ?
1606                         sizeof(struct ctdluser) : cdbus->len));
1607                 cdb_free(cdbus);
1608                 if ((usbuf.flags & US_NEEDVALID)
1609                     && (usbuf.axlevel > 0)) {
1610                         cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
1611                         cdb_close_cursor(CDB_USERS);
1612                         return;
1613                 }
1614         }
1615
1616         /* If we get to this point, there are no more unvalidated users.
1617          * Therefore we clear the "users need validation" flag.
1618          */
1619
1620         begin_critical_section(S_CONTROL);
1621         get_control();
1622         CitControl.MMflags = CitControl.MMflags & (~MM_VALID);
1623         put_control();
1624         end_critical_section(S_CONTROL);
1625         cprintf("%d *** End of registration.\n", CIT_OK);
1626
1627
1628 }
1629
1630
1631 /*
1632  * validate a user
1633  */
1634 void cmd_vali(char *v_args)
1635 {
1636         char user[128];
1637         int newax;
1638         struct ctdluser userbuf;
1639
1640         extract_token(user, v_args, 0, '|', sizeof user);
1641         newax = extract_int(v_args, 1);
1642
1643         if (CtdlAccessCheck(ac_aide)) {
1644                 return;
1645         }
1646
1647         if (lgetuser(&userbuf, user) != 0) {
1648                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, user);
1649                 return;
1650         }
1651
1652         userbuf.axlevel = newax;
1653         userbuf.flags = (userbuf.flags & ~US_NEEDVALID);
1654
1655         lputuser(&userbuf);
1656
1657         /* If the access level was set to zero, delete the user */
1658         if (newax == 0) {
1659                 if (purge_user(user) == 0) {
1660                         cprintf("%d %s Deleted.\n", CIT_OK, userbuf.fullname);
1661                         return;
1662                 }
1663         }
1664         cprintf("%d User '%s' validated.\n", CIT_OK, userbuf.fullname);
1665 }
1666
1667
1668
1669 /* 
1670  *  Traverse the user file...
1671  */
1672 void ForEachUser(void (*CallBack) (struct ctdluser * EachUser, void *out_data),
1673                  void *in_data)
1674 {
1675         struct ctdluser usbuf;
1676         struct cdbdata *cdbus;
1677
1678         cdb_rewind(CDB_USERS);
1679
1680         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1681                 memset(&usbuf, 0, sizeof(struct ctdluser));
1682                 memcpy(&usbuf, cdbus->ptr,
1683                        ((cdbus->len > sizeof(struct ctdluser)) ?
1684                         sizeof(struct ctdluser) : cdbus->len));
1685                 cdb_free(cdbus);
1686                 (*CallBack) (&usbuf, in_data);
1687         }
1688 }
1689
1690
1691 /*
1692  * List one user (this works with cmd_list)
1693  */
1694 void ListThisUser(struct ctdluser *usbuf, void *data)
1695 {
1696         char *searchstring;
1697
1698         searchstring = (char *)data;
1699         if (bmstrcasestr(usbuf->fullname, searchstring) == NULL) {
1700                 return;
1701         }
1702
1703         if (usbuf->axlevel > 0) {
1704                 if ((CC->user.axlevel >= 6)
1705                     || ((usbuf->flags & US_UNLISTED) == 0)
1706                     || ((CC->internal_pgm))) {
1707                         cprintf("%s|%d|%ld|%ld|%ld|%ld||\n",
1708                                 usbuf->fullname,
1709                                 usbuf->axlevel,
1710                                 usbuf->usernum,
1711                                 (long)usbuf->lastcall,
1712                                 usbuf->timescalled,
1713                                 usbuf->posted);
1714                 }
1715         }
1716 }
1717
1718 /* 
1719  *  List users (searchstring may be empty to list all users)
1720  */
1721 void cmd_list(char *cmdbuf)
1722 {
1723         char searchstring[256];
1724         extract_token(searchstring, cmdbuf, 0, '|', sizeof searchstring);
1725         striplt(searchstring);
1726         cprintf("%d \n", LISTING_FOLLOWS);
1727         ForEachUser(ListThisUser, (void *)searchstring );
1728         cprintf("000\n");
1729 }
1730
1731
1732
1733
1734 /*
1735  * assorted info we need to check at login
1736  */
1737 void cmd_chek(char *argbuf)
1738 {
1739         int mail = 0;
1740         int regis = 0;
1741         int vali = 0;
1742
1743         if (CtdlAccessCheck(ac_logged_in)) {
1744                 return;
1745         }
1746
1747         getuser(&CC->user, CC->curr_user);      /* no lock is needed here */
1748         if ((REGISCALL != 0) && ((CC->user.flags & US_REGIS) == 0))
1749                 regis = 1;
1750
1751         if (CC->user.axlevel >= 6) {
1752                 get_control();
1753                 if (CitControl.MMflags & MM_VALID)
1754                         vali = 1;
1755         }
1756
1757         /* check for mail */
1758         mail = InitialMailCheck();
1759
1760         cprintf("%d %d|%d|%d|%s|\n", CIT_OK, mail, regis, vali, CC->cs_inet_email);
1761 }
1762
1763
1764 /*
1765  * check to see if a user exists
1766  */
1767 void cmd_qusr(char *who)
1768 {
1769         struct ctdluser usbuf;
1770
1771         if (getuser(&usbuf, who) == 0) {
1772                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1773         } else {
1774                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1775         }
1776 }
1777
1778
1779 /*
1780  * Administrative Get User Parameters
1781  */
1782 void cmd_agup(char *cmdbuf)
1783 {
1784         struct ctdluser usbuf;
1785         char requested_user[128];
1786
1787         if (CtdlAccessCheck(ac_aide)) {
1788                 return;
1789         }
1790
1791         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1792         if (getuser(&usbuf, requested_user) != 0) {
1793                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1794                 return;
1795         }
1796         cprintf("%d %s|%s|%u|%ld|%ld|%d|%ld|%ld|%d\n",
1797                 CIT_OK,
1798                 usbuf.fullname,
1799                 usbuf.password,
1800                 usbuf.flags,
1801                 usbuf.timescalled,
1802                 usbuf.posted,
1803                 (int) usbuf.axlevel,
1804                 usbuf.usernum,
1805                 (long)usbuf.lastcall,
1806                 usbuf.USuserpurge);
1807 }
1808
1809
1810
1811 /*
1812  * Administrative Set User Parameters
1813  */
1814 void cmd_asup(char *cmdbuf)
1815 {
1816         struct ctdluser usbuf;
1817         char requested_user[128];
1818         char notify[SIZ];
1819         int np;
1820         int newax;
1821         int deleted = 0;
1822
1823         if (CtdlAccessCheck(ac_aide))
1824                 return;
1825
1826         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
1827         if (lgetuser(&usbuf, requested_user) != 0) {
1828                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1829                 return;
1830         }
1831         np = num_parms(cmdbuf);
1832         if (np > 1)
1833                 extract_token(usbuf.password, cmdbuf, 1, '|', sizeof usbuf.password);
1834         if (np > 2)
1835                 usbuf.flags = extract_int(cmdbuf, 2);
1836         if (np > 3)
1837                 usbuf.timescalled = extract_int(cmdbuf, 3);
1838         if (np > 4)
1839                 usbuf.posted = extract_int(cmdbuf, 4);
1840         if (np > 5) {
1841                 newax = extract_int(cmdbuf, 5);
1842                 if ((newax >= 0) && (newax <= 6)) {
1843                         usbuf.axlevel = extract_int(cmdbuf, 5);
1844                 }
1845         }
1846         if (np > 7) {
1847                 usbuf.lastcall = extract_long(cmdbuf, 7);
1848         }
1849         if (np > 8) {
1850                 usbuf.USuserpurge = extract_int(cmdbuf, 8);
1851         }
1852         lputuser(&usbuf);
1853         if (usbuf.axlevel == 0) {
1854                 if (purge_user(requested_user) == 0) {
1855                         deleted = 1;
1856                 }
1857         }
1858
1859         if (deleted) {
1860                 snprintf(notify, SIZ, 
1861                          "User \"%s\" has been deleted by %s.\n",
1862                          usbuf.fullname, CC->user.fullname);
1863                 aide_message(notify, "User Deletion Message");
1864         }
1865
1866         cprintf("%d Ok", CIT_OK);
1867         if (deleted)
1868                 cprintf(" (%s deleted)", requested_user);
1869         cprintf("\n");
1870 }
1871
1872
1873
1874 /*
1875  * Check to see if the user who we just sent mail to is logged in.  If yes,
1876  * bump the 'new mail' counter for their session.  That enables them to
1877  * receive a new mail notification without having to hit the database.
1878  */
1879 void BumpNewMailCounter(long which_user) {
1880         struct CitContext *ptr;
1881
1882         begin_critical_section(S_SESSION_TABLE);
1883
1884         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
1885                 if (ptr->user.usernum == which_user) {
1886                         ptr->newmail += 1;
1887                 }
1888         }
1889
1890         end_critical_section(S_SESSION_TABLE);
1891 }
1892
1893
1894 /*
1895  * Count the number of new mail messages the user has
1896  */
1897 int NewMailCount()
1898 {
1899         int num_newmsgs = 0;
1900
1901         num_newmsgs = CC->newmail;
1902         CC->newmail = 0;
1903
1904         return (num_newmsgs);
1905 }
1906
1907
1908 /*
1909  * Count the number of new mail messages the user has
1910  */
1911 int InitialMailCheck()
1912 {
1913         int num_newmsgs = 0;
1914         int a;
1915         char mailboxname[ROOMNAMELEN];
1916         struct ctdlroom mailbox;
1917         struct visit vbuf;
1918         struct cdbdata *cdbfr;
1919         long *msglist = NULL;
1920         int num_msgs = 0;
1921
1922         MailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
1923         if (getroom(&mailbox, mailboxname) != 0)
1924                 return (0);
1925         CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
1926
1927         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
1928
1929         if (cdbfr != NULL) {
1930                 msglist = malloc(cdbfr->len);
1931                 memcpy(msglist, cdbfr->ptr, cdbfr->len);
1932                 num_msgs = cdbfr->len / sizeof(long);
1933                 cdb_free(cdbfr);
1934         }
1935         if (num_msgs > 0)
1936                 for (a = 0; a < num_msgs; ++a) {
1937                         if (msglist[a] > 0L) {
1938                                 if (msglist[a] > vbuf.v_lastseen) {
1939                                         ++num_newmsgs;
1940                                 }
1941                         }
1942                 }
1943         if (msglist != NULL)
1944                 free(msglist);
1945
1946         return (num_newmsgs);
1947 }
1948
1949
1950
1951 /*
1952  * Set the preferred view for the current user/room combination
1953  */
1954 void cmd_view(char *cmdbuf) {
1955         int requested_view;
1956         struct visit vbuf;
1957
1958         if (CtdlAccessCheck(ac_logged_in)) {
1959                 return;
1960         }
1961
1962         requested_view = extract_int(cmdbuf, 0);
1963
1964         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
1965         vbuf.v_view = requested_view;
1966         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
1967         
1968         cprintf("%d ok\n", CIT_OK);
1969 }
1970
1971
1972 /*
1973  * Rename a user
1974  */
1975 void cmd_renu(char *cmdbuf)
1976 {
1977         int retcode;
1978         char oldname[USERNAME_SIZE];
1979         char newname[USERNAME_SIZE];
1980
1981         if (CtdlAccessCheck(ac_aide)) {
1982                 return;
1983         }
1984
1985         extract_token(oldname, cmdbuf, 0, '|', sizeof oldname);
1986         extract_token(newname, cmdbuf, 1, '|', sizeof newname);
1987
1988         retcode = rename_user(oldname, newname);
1989         switch(retcode) {
1990                 case RENAMEUSER_OK:
1991                         cprintf("%d '%s' has been renamed to '%s'.\n", CIT_OK, oldname, newname);
1992                         return;
1993                 case RENAMEUSER_LOGGED_IN:
1994                         cprintf("%d '%s' is currently logged in and cannot be renamed.\n",
1995                                 ERROR + ALREADY_LOGGED_IN , oldname);
1996                         return;
1997                 case RENAMEUSER_NOT_FOUND:
1998                         cprintf("%d '%s' does not exist.\n", ERROR + NO_SUCH_USER, oldname);
1999                         return;
2000                 case RENAMEUSER_ALREADY_EXISTS:
2001                         cprintf("%d A user named '%s' already exists.\n", ERROR + ALREADY_EXISTS, newname);
2002                         return;
2003         }
2004
2005         cprintf("%d An unknown error occurred.\n", ERROR);
2006 }
2007
2008
2009
2010 /*****************************************************************************/
2011 /*                      MODULE INITIALIZATION STUFF                          */
2012 /*****************************************************************************/
2013
2014
2015 CTDL_MODULE_INIT(user_ops)
2016 {
2017         CtdlRegisterProtoHook(cmd_user, "USER", "Autoconverted. TODO: document me.");
2018         CtdlRegisterProtoHook(cmd_pass, "PASS", "Autoconverted. TODO: document me.");
2019         CtdlRegisterProtoHook(cmd_creu, "CREU", "Autoconverted. TODO: document me.");
2020         CtdlRegisterProtoHook(cmd_setp, "SETP", "Autoconverted. TODO: document me.");
2021         CtdlRegisterProtoHook(cmd_getu, "GETU", "Autoconverted. TODO: document me.");
2022         CtdlRegisterProtoHook(cmd_setu, "SETU", "Autoconverted. TODO: document me.");
2023         CtdlRegisterProtoHook(cmd_slrp, "SLRP", "Autoconverted. TODO: document me.");
2024         CtdlRegisterProtoHook(cmd_invt, "INVT", "Autoconverted. TODO: document me.");
2025         CtdlRegisterProtoHook(cmd_kick, "KICK", "Autoconverted. TODO: document me.");
2026         CtdlRegisterProtoHook(cmd_forg, "FORG", "Autoconverted. TODO: document me.");
2027         CtdlRegisterProtoHook(cmd_gnur, "GNUR", "Autoconverted. TODO: document me.");
2028         CtdlRegisterProtoHook(cmd_vali, "VALI", "Autoconverted. TODO: document me.");
2029         CtdlRegisterProtoHook(cmd_list, "LIST", "Autoconverted. TODO: document me.");
2030         CtdlRegisterProtoHook(cmd_chek, "CHEK", "Autoconverted. TODO: document me.");
2031         CtdlRegisterProtoHook(cmd_qusr, "QUSR", "Autoconverted. TODO: document me.");
2032         CtdlRegisterProtoHook(cmd_agup, "AGUP", "Autoconverted. TODO: document me.");
2033         CtdlRegisterProtoHook(cmd_asup, "ASUP", "Autoconverted. TODO: document me.");
2034         CtdlRegisterProtoHook(cmd_seen, "SEEN", "Autoconverted. TODO: document me.");
2035         CtdlRegisterProtoHook(cmd_gtsn, "GTSN", "Autoconverted. TODO: document me.");
2036         CtdlRegisterProtoHook(cmd_view, "VIEW", "Autoconverted. TODO: document me.");
2037         CtdlRegisterProtoHook(cmd_renu, "RENU", "Autoconverted. TODO: document me.");
2038         CtdlRegisterProtoHook(cmd_newu, "NEWU", "Autoconverted. TODO: document me.");
2039         /* return our Subversion id for the Log */
2040         return "$Id$";
2041 }