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