]> code.citadel.org Git - citadel.git/blobdiff - citadel/user_ops.c
* Use syslog-compatible logging levels in lprintf(); the loglevel chosen
[citadel.git] / citadel / user_ops.c
index 793484236ac0e45ee910c43a10f9bf5f5f99e799..78e2c46cdce6be3e8767a350f5ef32fdae3a7ceb 100644 (file)
@@ -33,7 +33,6 @@
 #endif
 
 #include <string.h>
-#include <syslog.h>
 #include <limits.h>
 #ifndef ENABLE_CHKPWD
 #include "auth.h"
@@ -46,7 +45,6 @@
 #include "sysdep_decls.h"
 #include "support.h"
 #include "room_ops.h"
-#include "logging.h"
 #include "file_ops.h"
 #include "control.h"
 #include "msgbase.h"
 #include "citserver.h"
 
 
+/*
+ * makeuserkey() - convert a username into the format used as a database key
+ *                 (it's just the username converted into lower case)
+ */
+static INLINE void makeuserkey(char *key, char *username) {
+       int i, len;
+
+       len = strlen(username);
+       for (i=0; i<=len; ++i) {
+               key[i] = tolower(username[i]);
+       }
+}
+
+
 /*
  * getuser()  -  retrieve named user into supplied buffer.
  *               returns 0 on success
  */
-int getuser(struct usersupp *usbuf, char name[])
+int getuser(struct ctdluser *usbuf, char name[])
 {
 
-       char lowercase_name[USERNAME_SIZE];
+       char usernamekey[USERNAME_SIZE];
        char sysuser_name[USERNAME_SIZE];
-       int a;
        struct cdbdata *cdbus;
        int using_sysuser = 0;
 
-       memset(usbuf, 0, sizeof(struct usersupp));
+       memset(usbuf, 0, sizeof(struct ctdluser));
 
 #ifdef ENABLE_AUTOLOGIN
        if (CtdlAssociateSystemUser(sysuser_name, name) == 0) {
@@ -77,25 +88,19 @@ int getuser(struct usersupp *usbuf, char name[])
 #endif
 
        if (using_sysuser) {
-               for (a = 0; a <= strlen(sysuser_name); ++a) {
-                       lowercase_name[a] = tolower(sysuser_name[a]);
-               }
+               makeuserkey(usernamekey, sysuser_name);
        }
        else {
-               for (a = 0; a <= strlen(name); ++a) {
-                       if (a < sizeof(lowercase_name))
-                               lowercase_name[a] = tolower(name[a]);
-               }
+               makeuserkey(usernamekey, name);
        }
-       lowercase_name[sizeof(lowercase_name) - 1] = 0;
 
-       cdbus = cdb_fetch(CDB_USERSUPP, lowercase_name, strlen(lowercase_name));
+       cdbus = cdb_fetch(CDB_USERS, usernamekey, strlen(usernamekey));
        if (cdbus == NULL) {    /* user not found */
                return(1);
        }
        memcpy(usbuf, cdbus->ptr,
-              ((cdbus->len > sizeof(struct usersupp)) ?
-               sizeof(struct usersupp) : cdbus->len));
+              ((cdbus->len > sizeof(struct ctdluser)) ?
+               sizeof(struct ctdluser) : cdbus->len));
        cdb_free(cdbus);
 
        return (0);
@@ -105,13 +110,13 @@ int getuser(struct usersupp *usbuf, char name[])
 /*
  * lgetuser()  -  same as getuser() but locks the record
  */
-int lgetuser(struct usersupp *usbuf, char *name)
+int lgetuser(struct ctdluser *usbuf, char *name)
 {
        int retcode;
 
        retcode = getuser(usbuf, name);
        if (retcode == 0) {
-               begin_critical_section(S_USERSUPP);
+               begin_critical_section(S_USERS);
        }
        return (retcode);
 }
@@ -120,21 +125,16 @@ int lgetuser(struct usersupp *usbuf, char *name)
 /*
  * putuser()  -  write user buffer into the correct place on disk
  */
-void putuser(struct usersupp *usbuf)
+void putuser(struct ctdluser *usbuf)
 {
-       char lowercase_name[USERNAME_SIZE];
-       int a;
+       char usernamekey[USERNAME_SIZE];
 
-       for (a = 0; a <= strlen(usbuf->fullname); ++a) {
-               if (a < sizeof(lowercase_name))
-                       lowercase_name[a] = tolower(usbuf->fullname[a]);
-       }
-       lowercase_name[sizeof(lowercase_name) - 1] = 0;
+       makeuserkey(usernamekey, usbuf->fullname);
 
        usbuf->version = REV_LEVEL;
-       cdb_store(CDB_USERSUPP,
-                 lowercase_name, strlen(lowercase_name),
-                 usbuf, sizeof(struct usersupp));
+       cdb_store(CDB_USERS,
+                 usernamekey, strlen(usernamekey),
+                 usbuf, sizeof(struct ctdluser));
 
 }
 
@@ -142,10 +142,10 @@ void putuser(struct usersupp *usbuf)
 /*
  * lputuser()  -  same as putuser() but locks the record
  */
-void lputuser(struct usersupp *usbuf)
+void lputuser(struct ctdluser *usbuf)
 {
        putuser(usbuf);
-       end_critical_section(S_USERSUPP);
+       end_critical_section(S_USERS);
 }
 
 /*
@@ -200,8 +200,8 @@ void put_visit(struct visit *newvisit)
  * Define a relationship between a user and a room
  */
 void CtdlSetRelationship(struct visit *newvisit,
-                        struct usersupp *rel_user,
-                        struct quickroom *rel_room)
+                        struct ctdluser *rel_user,
+                        struct ctdlroom *rel_room)
 {
 
 
@@ -219,8 +219,8 @@ void CtdlSetRelationship(struct visit *newvisit,
  * Locate a relationship between a user and a room
  */
 void CtdlGetRelationship(struct visit *vbuf,
-                        struct usersupp *rel_user,
-                        struct quickroom *rel_room)
+                        struct ctdluser *rel_user,
+                        struct ctdlroom *rel_room)
 {
 
        char IndexBuf[32];
@@ -257,7 +257,7 @@ void CtdlGetRelationship(struct visit *vbuf,
 }
 
 
-void MailboxName(char *buf, size_t n, const struct usersupp *who, const char *prefix)
+void MailboxName(char *buf, size_t n, const struct ctdluser *who, const char *prefix)
 {
        snprintf(buf, n, "%010ld.%s", who->usernum, prefix);
 }
@@ -268,7 +268,7 @@ void MailboxName(char *buf, size_t n, const struct usersupp *who, const char *pr
  */
 int is_aide(void)
 {
-       if (CC->usersupp.axlevel >= 6)
+       if (CC->user.axlevel >= 6)
                return (1);
        else
                return (0);
@@ -285,8 +285,8 @@ int is_room_aide(void)
                return (0);
        }
 
-       if ((CC->usersupp.axlevel >= 6)
-           || (CC->quickroom.QRroomaide == CC->usersupp.usernum)) {
+       if ((CC->user.axlevel >= 6)
+           || (CC->room.QRroomaide == CC->user.usernum)) {
                return (1);
        } else {
                return (0);
@@ -300,20 +300,20 @@ int is_room_aide(void)
  * WARNING: don't use this function unless you absolutely have to.  It does
  *          a sequential search and therefore is computationally expensive.
  */
-int getuserbynumber(struct usersupp *usbuf, long int number)
+int getuserbynumber(struct ctdluser *usbuf, long int number)
 {
        struct cdbdata *cdbus;
 
-       cdb_rewind(CDB_USERSUPP);
+       cdb_rewind(CDB_USERS);
 
-       while (cdbus = cdb_next_item(CDB_USERSUPP), cdbus != NULL) {
-               memset(usbuf, 0, sizeof(struct usersupp));
+       while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
+               memset(usbuf, 0, sizeof(struct ctdluser));
                memcpy(usbuf, cdbus->ptr,
-                      ((cdbus->len > sizeof(struct usersupp)) ?
-                       sizeof(struct usersupp) : cdbus->len));
+                      ((cdbus->len > sizeof(struct ctdluser)) ?
+                       sizeof(struct ctdluser) : cdbus->len));
                cdb_free(cdbus);
                if (usbuf->usernum == number) {
-                       cdb_close_cursor(CDB_USERSUPP);
+                       cdb_close_cursor(CDB_USERS);
                        return (0);
                }
        }
@@ -351,6 +351,7 @@ int CtdlLoginExistingUser(char *trythisname)
 {
        char username[SIZ];
        int found_user;
+       struct recptypes *valid = NULL;
 
        if (trythisname == NULL) return login_not_found;
        safestrncpy(username, trythisname, sizeof username);
@@ -360,13 +361,30 @@ int CtdlLoginExistingUser(char *trythisname)
                return login_already_logged_in;
        }
 
-       found_user = getuser(&CC->usersupp, username);
+       /* First, try to log in as if the supplied name is a display name */
+       found_user = getuser(&CC->user, username);
 
+       /* If that didn't work, try to log in as if the supplied name
+        * is an e-mail address
+        */
+       if (found_user != 0) {
+               valid = validate_recipients(trythisname);
+               if (valid != NULL) {
+                       if (valid->num_local == 1) {
+                               found_user = getuser(&CC->user,
+                                               valid->recp_local);
+                       }
+                       phree(valid);
+               }
+       }
+
+       /* Did we find something? */
        if (found_user == 0) {
-               if (((CC->nologin)) && (CC->usersupp.axlevel < 6)) {
+               if (((CC->nologin)) && (CC->user.axlevel < 6)) {
                        return login_too_many_users;
                } else {
-                       strcpy(CC->curr_user, CC->usersupp.fullname);
+                       safestrncpy(CC->curr_user, CC->user.fullname,
+                                       sizeof CC->curr_user);
                        return login_ok;
                }
        }
@@ -384,13 +402,12 @@ void cmd_user(char *cmdbuf)
        int a;
 
        extract(username, cmdbuf, 0);
-       username[25] = 0;
-       strproc(username);
+       striplt(username);
 
        a = CtdlLoginExistingUser(username);
        switch (a) {
        case login_already_logged_in:
-               cprintf("%d Already logged in.\n", ERROR);
+               cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
                return;
        case login_too_many_users:
                cprintf("%d %s: "
@@ -404,9 +421,9 @@ void cmd_user(char *cmdbuf)
                        MORE_DATA, CC->curr_user);
                return;
        case login_not_found:
-               cprintf("%d %s not found.\n", ERROR, username);
+               cprintf("%d %s not found.\n", ERROR + NO_SUCH_USER, username);
                return;
-               cprintf("%d Internal error\n", ERROR);
+               cprintf("%d Internal error\n", ERROR + INTERNAL_ERROR);
        }
 }
 
@@ -419,20 +436,20 @@ void session_startup(void)
 {
        int i;
 
-       syslog(LOG_NOTICE, "session %d: user <%s> logged in",
-              CC->cs_pid, CC->curr_user);
+       lprintf(CTDL_NOTICE, "<%s> logged in\n", CC->curr_user);
 
-       lgetuser(&CC->usersupp, CC->curr_user);
-       ++(CC->usersupp.timescalled);
-       time(&CC->usersupp.lastcall);
+       lgetuser(&CC->user, CC->curr_user);
+       ++(CC->user.timescalled);
+       CC->previous_login = CC->user.lastcall;
+       time(&CC->user.lastcall);
 
        /* If this user's name is the name of the system administrator
         * (as specified in setup), automatically assign access level 6.
         */
-       if (!strcasecmp(CC->usersupp.fullname, config.c_sysadm)) {
-               CC->usersupp.axlevel = 6;
+       if (!strcasecmp(CC->user.fullname, config.c_sysadm)) {
+               CC->user.axlevel = 6;
        }
-       lputuser(&CC->usersupp);
+       lputuser(&CC->user);
 
        /*
         * Populate CC->cs_inet_email with a default address.  This will be
@@ -440,7 +457,7 @@ void session_startup(void)
         * the vCard module's login hook runs.
         */
        snprintf(CC->cs_inet_email, sizeof CC->cs_inet_email, "%s@%s",
-               CC->usersupp.fullname, config.c_fqdn);
+               CC->user.fullname, config.c_fqdn);
        for (i=0; i<strlen(CC->cs_inet_email); ++i) {
                if (isspace(CC->cs_inet_email[i])) {
                        CC->cs_inet_email[i] = '_';
@@ -458,19 +475,16 @@ void session_startup(void)
 
        /* Enter the lobby */
        usergoto(config.c_baseroom, 0, 0, NULL, NULL);
-
-       /* Record this login in the Citadel log */
-       rec_log(CL_LOGIN, CC->curr_user);
 }
 
 
 void logged_in_response(void)
 {
        cprintf("%d %s|%d|%ld|%ld|%u|%ld|%ld\n",
-               CIT_OK, CC->usersupp.fullname, CC->usersupp.axlevel,
-               CC->usersupp.timescalled, CC->usersupp.posted,
-               CC->usersupp.flags, CC->usersupp.usernum,
-               CC->usersupp.lastcall);
+               CIT_OK, CC->user.fullname, CC->user.axlevel,
+               CC->user.timescalled, CC->user.posted,
+               CC->user.flags, CC->user.usernum,
+               CC->previous_login);
 }
 
 
@@ -480,6 +494,16 @@ void logged_in_response(void)
  */
 void logout(struct CitContext *who)
 {
+       /*
+        * Clear out some session data.  Most likely, the CitContext for this
+        * session is about to get nuked when the session disconnects, but
+        * since it's possible to log in again without reconnecting, we cannot
+        * make that assumption.
+        */
+       strcpy(who->fake_username, "");
+       strcpy(who->fake_postname, "");
+       strcpy(who->fake_hostname, "");
+       strcpy(who->fake_roomname, "");
        who->logged_in = 0;
 
        /*
@@ -506,6 +530,11 @@ void logout(struct CitContext *who)
 
        /* Do modular stuff... */
        PerformSessionHooks(EVT_LOGOUT);
+
+       /* Free any output buffers */
+       if (who->output_buffer != NULL) {
+               unbuffer_output();
+       }
 }
 
 #ifdef ENABLE_CHKPWD
@@ -520,13 +549,13 @@ static int validpw(uid_t uid, const char *pass)
        char buf[24];
 
        if (pipe(pipev)) {
-               lprintf(1, "pipe failed (%s): denying autologin access for "
+               lprintf(CTDL_ERROR, "pipe failed (%s): denying autologin access for "
                        "uid %ld\n", strerror(errno), (long)uid);
                return 0;
        }
        switch (pid = fork()) {
        case -1:
-               lprintf(1, "fork failed (%s): denying autologin access for "
+               lprintf(CTDL_ERROR, "fork failed (%s): denying autologin access for "
                        "uid %ld\n", strerror(errno), (long)uid);
                close(pipev[0]);
                close(pipev[1]);
@@ -554,7 +583,7 @@ static int validpw(uid_t uid, const char *pass)
 
        while (waitpid(pid, &status, 0) == -1)
                if (errno != EINTR) {
-                       lprintf(1, "waitpid failed (%s): denying autologin "
+                       lprintf(CTDL_ERROR, "waitpid failed (%s): denying autologin "
                                "access for uid %ld\n",
                                strerror(errno), (long)uid);
                        return 0;
@@ -578,44 +607,48 @@ int CtdlTryPassword(char *password)
        int code;
 
        if ((CC->logged_in)) {
-               lprintf(5, "CtdlTryPassword: already logged in\n");
+               lprintf(CTDL_WARNING, "CtdlTryPassword: already logged in\n");
                return pass_already_logged_in;
        }
        if (!strcmp(CC->curr_user, NLI)) {
-               lprintf(5, "CtdlTryPassword: no user selected\n");
+               lprintf(CTDL_WARNING, "CtdlTryPassword: no user selected\n");
                return pass_no_user;
        }
-       if (getuser(&CC->usersupp, CC->curr_user)) {
-               lprintf(5, "CtdlTryPassword: internal error\n");
+       if (getuser(&CC->user, CC->curr_user)) {
+               lprintf(CTDL_ERR, "CtdlTryPassword: internal error\n");
                return pass_internal_error;
        }
        if (password == NULL) {
-               lprintf(5, "CtdlTryPassword: NULL password string supplied\n");
+               lprintf(CTDL_INFO, "CtdlTryPassword: NULL password string supplied\n");
                return pass_wrong_password;
        }
        code = (-1);
 
 
 #ifdef ENABLE_AUTOLOGIN
-       if (CC->usersupp.uid == BBSUID) {
+       /* A uid of BBSUID or -1 indicates that this user exists only in
+        * Citadel, not in the underlying operating system.
+        */
+       if ( (CC->user.uid == BBSUID) || (CC->user.uid == (-1)) ) {
                strproc(password);
-               strproc(CC->usersupp.password);
-               code = strcasecmp(CC->usersupp.password, password);
+               strproc(CC->user.password);
+               code = strcasecmp(CC->user.password, password);
        }
+       /* Any other uid means we have to check the system password database */
        else {
-               if (validpw(CC->usersupp.uid, password)) {
+               if (validpw(CC->user.uid, password)) {
                        code = 0;
-                       lgetuser(&CC->usersupp, CC->curr_user);
-                       safestrncpy(CC->usersupp.password, password,
-                                   sizeof CC->usersupp.password);
-                       lputuser(&CC->usersupp);
+                       lgetuser(&CC->user, CC->curr_user);
+                       safestrncpy(CC->user.password, password,
+                                   sizeof CC->user.password);
+                       lputuser(&CC->user);
                }
        }
 
 #else /* ENABLE_AUTOLOGIN */
        strproc(password);
-       strproc(CC->usersupp.password);
-       code = strcasecmp(CC->usersupp.password, password);
+       strproc(CC->user.password);
+       code = strcasecmp(CC->user.password, password);
 
 #endif /* ENABLE_AUTOLOGIN */
 
@@ -623,7 +656,7 @@ int CtdlTryPassword(char *password)
                do_login();
                return pass_ok;
        } else {
-               rec_log(CL_BADPW, CC->curr_user);
+               lprintf(CTDL_WARNING, "Bad password specified for <%s>\n", CC->curr_user);
                return pass_wrong_password;
        }
 }
@@ -639,14 +672,14 @@ void cmd_pass(char *buf)
 
        switch (a) {
        case pass_already_logged_in:
-               cprintf("%d Already logged in.\n", ERROR);
+               cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
                return;
        case pass_no_user:
                cprintf("%d You must send a name with USER first.\n",
-                       ERROR);
+                       ERROR + USERNAME_REQUIRED);
                return;
        case pass_wrong_password:
-               cprintf("%d Wrong password.\n", ERROR);
+               cprintf("%d Wrong password.\n", ERROR + PASSWORD_REQUIRED);
                return;
        case pass_ok:
                logged_in_response();
@@ -664,18 +697,15 @@ void cmd_pass(char *buf)
 int purge_user(char pname[])
 {
        char filename[64];
-       struct usersupp usbuf;
-       char lowercase_name[USERNAME_SIZE];
-       int a;
+       struct ctdluser usbuf;
+       char usernamekey[USERNAME_SIZE];
        struct CitContext *ccptr;
        int user_is_logged_in = 0;
 
-       for (a = 0; a <= strlen(pname); ++a) {
-               lowercase_name[a] = tolower(pname[a]);
-       }
+       makeuserkey(usernamekey, pname);
 
        if (getuser(&usbuf, pname) != 0) {
-               lprintf(5, "Cannot purge user <%s> - not found\n", pname);
+               lprintf(CTDL_ERR, "Cannot purge user <%s> - not found\n", pname);
                return (ERROR + NO_SUCH_USER);
        }
        /* Don't delete a user who is currently logged in.  Instead, just
@@ -685,18 +715,18 @@ int purge_user(char pname[])
        user_is_logged_in = 0;
        begin_critical_section(S_SESSION_TABLE);
        for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
-               if (ccptr->usersupp.usernum == usbuf.usernum) {
+               if (ccptr->user.usernum == usbuf.usernum) {
                        user_is_logged_in = 1;
                }
        }
        end_critical_section(S_SESSION_TABLE);
        if (user_is_logged_in == 1) {
-               lprintf(5, "User <%s> is logged in; not deleting.\n", pname);
+               lprintf(CTDL_WARNING, "User <%s> is logged in; not deleting.\n", pname);
                usbuf.axlevel = 0;
                putuser(&usbuf);
                return (1);
        }
-       lprintf(5, "Deleting user <%s>\n", pname);
+       lprintf(CTDL_NOTICE, "Deleting user <%s>\n", pname);
 
        /* Perform any purge functions registered by server extensions */
        PerformUserHooks(usbuf.fullname, usbuf.usernum, EVT_PURGEUSER);
@@ -705,7 +735,7 @@ int purge_user(char pname[])
        cdb_delete(CDB_VISIT, &usbuf.usernum, sizeof(long));
 
        /* delete the userlog entry */
-       cdb_delete(CDB_USERSUPP, lowercase_name, strlen(lowercase_name));
+       cdb_delete(CDB_USERS, usernamekey, strlen(usernamekey));
 
        /* remove the user's bio file */
        snprintf(filename, sizeof filename, "./bio/%ld", usbuf.usernum);
@@ -728,14 +758,14 @@ int purge_user(char pname[])
  */
 int create_user(char *newusername, int become_user)
 {
-       struct usersupp usbuf;
-       struct quickroom qrbuf;
+       struct ctdluser usbuf;
+       struct ctdlroom qrbuf;
        struct passwd *p = NULL;
        char username[SIZ];
        char mailboxname[ROOMNAMELEN];
        uid_t uid;
 
-       strcpy(username, newusername);
+       safestrncpy(username, newusername, sizeof username);
        strproc(username);
 
 #ifdef ENABLE_AUTOLOGIN
@@ -744,10 +774,10 @@ int create_user(char *newusername, int become_user)
                extract_token(username, p->pw_gecos, 0, ',');
                uid = p->pw_uid;
        } else {
-               uid = BBSUID;
+               uid = (-1);
        }
 #else
-       uid = BBSUID;
+       uid = (-1);
 #endif
 
        if (!getuser(&usbuf, username)) {
@@ -755,8 +785,8 @@ int create_user(char *newusername, int become_user)
        }
 
        /* Go ahead and initialize a new user record */
-       memset(&usbuf, 0, sizeof(struct usersupp));
-       strcpy(usbuf.fullname, username);
+       memset(&usbuf, 0, sizeof(struct ctdluser));
+       safestrncpy(usbuf.fullname, username, sizeof usbuf.fullname);
        strcpy(usbuf.password, "");
        usbuf.uid = uid;
 
@@ -790,7 +820,7 @@ int create_user(char *newusername, int become_user)
 
        MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
        create_room(mailboxname, 5, "", 0, 1, 1);
-        if (lgetroom(&qrbuf, USERCONFIGROOM) == 0) {
+        if (lgetroom(&qrbuf, mailboxname) == 0) {
                 qrbuf.QRflags2 |= QR2_SYSTEM;
                 lputroom(&qrbuf);
         }
@@ -801,18 +831,17 @@ int create_user(char *newusername, int become_user)
 
        if (become_user) {
                /* Now become the user we just created */
-               memcpy(&CC->usersupp, &usbuf, sizeof(struct usersupp));
-               strcpy(CC->curr_user, username);
+               memcpy(&CC->user, &usbuf, sizeof(struct ctdluser));
+               safestrncpy(CC->curr_user, username, sizeof CC->curr_user);
                CC->logged_in = 1;
        
                /* Check to make sure we're still who we think we are */
-               if (getuser(&CC->usersupp, CC->curr_user)) {
+               if (getuser(&CC->user, CC->curr_user)) {
                        return (ERROR + INTERNAL_ERROR);
                }
-       
-               rec_log(CL_NEWUSER, CC->curr_user);
        }
 
+       lprintf(CTDL_NOTICE, "New user <%s> created\n", username);
        return (0);
 }
 
@@ -829,12 +858,12 @@ void cmd_newu(char *cmdbuf)
 
        if (config.c_disable_newu) {
                cprintf("%d Self-service user account creation "
-                       "is disabled on this system.\n", ERROR);
+                       "is disabled on this system.\n", ERROR + NOT_HERE);
                return;
        }
 
        if (CC->logged_in) {
-               cprintf("%d Already logged in.\n", ERROR);
+               cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
                return;
        }
        if (CC->nologin) {
@@ -847,14 +876,14 @@ void cmd_newu(char *cmdbuf)
        strproc(username);
 
        if (strlen(username) == 0) {
-               cprintf("%d You must supply a user name.\n", ERROR);
+               cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
                return;
        }
 
        if ((!strcasecmp(username, "bbs")) ||
            (!strcasecmp(username, "new")) ||
            (!strcasecmp(username, "."))) {
-               cprintf("%d '%s' is an invalid login name.\n", ERROR, username);
+               cprintf("%d '%s' is an invalid login name.\n", ERROR + ILLEGAL_VALUE, username);
                return;
        }
 
@@ -872,9 +901,8 @@ void cmd_newu(char *cmdbuf)
                        ERROR + INTERNAL_ERROR);
                return;
        } else {
-               cprintf("%d unknown error\n", ERROR);
+               cprintf("%d unknown error\n", ERROR + INTERNAL_ERROR);
        }
-       rec_log(CL_NEWUSER, CC->curr_user);
 }
 
 
@@ -887,9 +915,8 @@ void cmd_setp(char *new_pw)
        if (CtdlAccessCheck(ac_logged_in)) {
                return;
        }
-
-       if (CC->usersupp.uid != BBSUID) {
-               cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR);
+       if ( (CC->user.uid != BBSUID) && (CC->user.uid != (-1)) ) {
+               cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR + NOT_HERE);
                return;
        }
        strproc(new_pw);
@@ -897,49 +924,60 @@ void cmd_setp(char *new_pw)
                cprintf("%d Password unchanged.\n", CIT_OK);
                return;
        }
-       lgetuser(&CC->usersupp, CC->curr_user);
-       strcpy(CC->usersupp.password, new_pw);
-       lputuser(&CC->usersupp);
+       lgetuser(&CC->user, CC->curr_user);
+       safestrncpy(CC->user.password, new_pw, sizeof(CC->user.password));
+       lputuser(&CC->user);
        cprintf("%d Password changed.\n", CIT_OK);
-       rec_log(CL_PWCHANGE, CC->curr_user);
+       lprintf(CTDL_INFO, "Password changed for user <%s>\n", CC->curr_user);
        PerformSessionHooks(EVT_SETPASS);
 }
 
 
 /*
- * cmd_creu()  -  administratively create a new user account (do not log in to it)
+ * cmd_creu() - administratively create a new user account (do not log in to it)
  */
 void cmd_creu(char *cmdbuf)
 {
        int a;
        char username[SIZ];
+       char password[SIZ];
+       struct ctdluser tmp;
 
        if (CtdlAccessCheck(ac_aide)) {
                return;
        }
 
        extract(username, cmdbuf, 0);
+       extract(password, cmdbuf, 1);
        username[25] = 0;
+       password[31] = 0;
        strproc(username);
+       strproc(password);
 
        if (strlen(username) == 0) {
-               cprintf("%d You must supply a user name.\n", ERROR);
+               cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
                return;
        }
 
        a = create_user(username, 0);
 
        if (a == 0) {
-               cprintf("%d ok\n", CIT_OK);
+               if (strlen(password) > 0) {
+                       lgetuser(&tmp, username);
+                       safestrncpy(tmp.password, password, sizeof(tmp.password));
+                       lputuser(&tmp);
+               }
+               cprintf("%d User '%s' created %s.\n", CIT_OK, username,
+                               (strlen(password) > 0) ? "and password set" :
+                               "with no password");
                return;
        } else if (a == ERROR + ALREADY_EXISTS) {
                cprintf("%d '%s' already exists.\n",
                        ERROR + ALREADY_EXISTS, username);
                return;
        } else {
-               cprintf("%d An error occured creating the user account.\n", ERROR);
+               cprintf("%d An error occured creating the user account.\n", ERROR + INTERNAL_ERROR);
        }
-       rec_log(CL_NEWUSER, username);
 }
 
 
@@ -953,12 +991,12 @@ void cmd_getu(void)
        if (CtdlAccessCheck(ac_logged_in))
                return;
 
-       getuser(&CC->usersupp, CC->curr_user);
+       getuser(&CC->user, CC->curr_user);
        cprintf("%d %d|%d|%d|\n",
                CIT_OK,
-               CC->usersupp.USscreenwidth,
-               CC->usersupp.USscreenheight,
-               (CC->usersupp.flags & US_USER_SET)
+               CC->user.USscreenwidth,
+               CC->user.USscreenheight,
+               (CC->user.flags & US_USER_SET)
            );
 }
 
@@ -971,17 +1009,17 @@ void cmd_setu(char *new_parms)
                return;
 
        if (num_parms(new_parms) < 3) {
-               cprintf("%d Usage error.\n", ERROR);
+               cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
                return;
        }
-       lgetuser(&CC->usersupp, CC->curr_user);
-       CC->usersupp.USscreenwidth = extract_int(new_parms, 0);
-       CC->usersupp.USscreenheight = extract_int(new_parms, 1);
-       CC->usersupp.flags = CC->usersupp.flags & (~US_USER_SET);
-       CC->usersupp.flags = CC->usersupp.flags |
+       lgetuser(&CC->user, CC->curr_user);
+       CC->user.USscreenwidth = extract_int(new_parms, 0);
+       CC->user.USscreenheight = extract_int(new_parms, 1);
+       CC->user.flags = CC->user.flags & (~US_USER_SET);
+       CC->user.flags = CC->user.flags |
            (extract_int(new_parms, 2) & US_USER_SET);
 
-       lputuser(&CC->usersupp);
+       lputuser(&CC->user);
        cprintf("%d Ok\n", CIT_OK);
 }
 
@@ -992,25 +1030,32 @@ void cmd_slrp(char *new_ptr)
 {
        long newlr;
        struct visit vbuf;
+       struct visit original_vbuf;
 
        if (CtdlAccessCheck(ac_logged_in)) {
                return;
        }
 
        if (!strncasecmp(new_ptr, "highest", 7)) {
-               newlr = CC->quickroom.QRhighest;
+               newlr = CC->room.QRhighest;
        } else {
                newlr = atol(new_ptr);
        }
 
-       lgetuser(&CC->usersupp, CC->curr_user);
+       lgetuser(&CC->user, CC->curr_user);
 
-       CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
+       CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
+       memcpy(&original_vbuf, &vbuf, sizeof(struct visit));
        vbuf.v_lastseen = newlr;
        snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
-       CtdlSetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
 
-       lputuser(&CC->usersupp);
+       /* Only rewrite the record if it changed */
+       if ( (vbuf.v_lastseen != original_vbuf.v_lastseen)
+          || (strcmp(vbuf.v_seen, original_vbuf.v_seen)) ) {
+               CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
+       }
+
+       lputuser(&CC->user);
        cprintf("%d %ld\n", CIT_OK, newlr);
 }
 
@@ -1024,14 +1069,14 @@ void cmd_seen(char *argbuf) {
        }
 
        if (num_parms(argbuf) != 2) {
-               cprintf("%d Invalid parameters\n", ERROR);
+               cprintf("%d Invalid parameters\n", ERROR + ILLEGAL_VALUE);
                return;
        }
 
        target_msgnum = extract_long(argbuf, 0);
        target_setting = extract_int(argbuf, 1);
 
-       CtdlSetSeen(target_msgnum, target_setting);
+       CtdlSetSeen(target_msgnum, target_setting, ctdlsetseen_seen);
        cprintf("%d OK\n", CIT_OK);
 }
 
@@ -1043,7 +1088,7 @@ void cmd_gtsn(char *argbuf) {
                return;
        }
 
-       CtdlGetSeen(buf);
+       CtdlGetSeen(buf, ctdlsetseen_seen);
        cprintf("%d %s\n", CIT_OK, buf);
 }
 
@@ -1055,7 +1100,7 @@ void cmd_gtsn(char *argbuf) {
 void cmd_invt_kick(char *iuser, int op)
                        /* user name */
 {                              /* 1 = invite, 0 = kick out */
-       struct usersupp USscratch;
+       struct ctdluser USscratch;
        char bbb[SIZ];
        struct visit vbuf;
 
@@ -1064,7 +1109,7 @@ void cmd_invt_kick(char *iuser, int op)
         * and room namespace owners
         */
        if (is_room_aide()
-          || (atol(CC->quickroom.QRname) == CC->usersupp.usernum) ) {
+          || (atol(CC->room.QRname) == CC->user.usernum) ) {
                /* access granted */
        } else {
                /* access denied */
@@ -1073,7 +1118,7 @@ void cmd_invt_kick(char *iuser, int op)
                 return;
         }
 
-       if (!strncasecmp(CC->quickroom.QRname, config.c_baseroom,
+       if (!strncasecmp(CC->room.QRname, config.c_baseroom,
                         ROOMNAMELEN)) {
                cprintf("%d Can't add/remove users from this room.\n",
                        ERROR + NOT_HERE);
@@ -1081,10 +1126,10 @@ void cmd_invt_kick(char *iuser, int op)
        }
 
        if (lgetuser(&USscratch, iuser) != 0) {
-               cprintf("%d No such user.\n", ERROR);
+               cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
                return;
        }
-       CtdlGetRelationship(&vbuf, &USscratch, &CC->quickroom);
+       CtdlGetRelationship(&vbuf, &USscratch, &CC->room);
 
        if (op == 1) {
                vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
@@ -1094,7 +1139,7 @@ void cmd_invt_kick(char *iuser, int op)
                vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
                vbuf.v_flags = vbuf.v_flags | V_FORGET | V_LOCKOUT;
        }
-       CtdlSetRelationship(&vbuf, &USscratch, &CC->quickroom);
+       CtdlSetRelationship(&vbuf, &USscratch, &CC->room);
 
        lputuser(&USscratch);
 
@@ -1102,14 +1147,14 @@ void cmd_invt_kick(char *iuser, int op)
        snprintf(bbb, sizeof bbb, "%s %s %s> by %s\n",
                iuser,
                ((op == 1) ? "invited to" : "kicked out of"),
-               CC->quickroom.QRname,
-               CC->usersupp.fullname);
+               CC->room.QRname,
+               CC->user.fullname);
        aide_message(bbb);
 
        cprintf("%d %s %s %s.\n",
                CIT_OK, iuser,
                ((op == 1) ? "invited to" : "kicked out of"),
-               CC->quickroom.QRname);
+               CC->room.QRname);
        return;
 }
 
@@ -1123,18 +1168,18 @@ int CtdlForgetThisRoom(void) {
 
        /* On some systems, Aides are not allowed to forget rooms */
        if (is_aide() && (config.c_aide_zap == 0)
-          && ((CC->quickroom.QRflags & QR_MAILBOX) == 0)  ) {
+          && ((CC->room.QRflags & QR_MAILBOX) == 0)  ) {
                return(1);
        }
 
-       lgetuser(&CC->usersupp, CC->curr_user);
-       CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
+       lgetuser(&CC->user, CC->curr_user);
+       CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
 
        vbuf.v_flags = vbuf.v_flags | V_FORGET;
        vbuf.v_flags = vbuf.v_flags & ~V_ACCESS;
 
-       CtdlSetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
-       lputuser(&CC->usersupp);
+       CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
+       lputuser(&CC->user);
 
        /* Return to the Lobby, so we don't end up in an undefined room */
        usergoto(config.c_baseroom, 0, 0, NULL, NULL);
@@ -1157,7 +1202,7 @@ void cmd_forg(void)
                cprintf("%d Ok\n", CIT_OK);
        }
        else {
-               cprintf("%d You may not forget this room.\n", ERROR);
+               cprintf("%d You may not forget this room.\n", ERROR + NOT_HERE);
        }
 }
 
@@ -1167,7 +1212,7 @@ void cmd_forg(void)
 void cmd_gnur(void)
 {
        struct cdbdata *cdbus;
-       struct usersupp usbuf;
+       struct ctdluser usbuf;
 
        if (CtdlAccessCheck(ac_aide)) {
                return;
@@ -1178,20 +1223,20 @@ void cmd_gnur(void)
                return;
        }
 
-       /* There are unvalidated users.  Traverse the usersupp database,
+       /* There are unvalidated users.  Traverse the user database,
         * and return the first user we find that needs validation.
         */
-       cdb_rewind(CDB_USERSUPP);
-       while (cdbus = cdb_next_item(CDB_USERSUPP), cdbus != NULL) {
-               memset(&usbuf, 0, sizeof(struct usersupp));
+       cdb_rewind(CDB_USERS);
+       while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
+               memset(&usbuf, 0, sizeof(struct ctdluser));
                memcpy(&usbuf, cdbus->ptr,
-                      ((cdbus->len > sizeof(struct usersupp)) ?
-                       sizeof(struct usersupp) : cdbus->len));
+                      ((cdbus->len > sizeof(struct ctdluser)) ?
+                       sizeof(struct ctdluser) : cdbus->len));
                cdb_free(cdbus);
                if ((usbuf.flags & US_NEEDVALID)
                    && (usbuf.axlevel > 0)) {
                        cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
-                       cdb_close_cursor(CDB_USERSUPP);
+                       cdb_close_cursor(CDB_USERS);
                        return;
                }
        }
@@ -1218,7 +1263,7 @@ void cmd_vali(char *v_args)
 {
        char user[SIZ];
        int newax;
-       struct usersupp userbuf;
+       struct ctdluser userbuf;
 
        extract(user, v_args, 0);
        newax = extract_int(v_args, 1);
@@ -1252,19 +1297,19 @@ void cmd_vali(char *v_args)
 /* 
  *  Traverse the user file...
  */
-void ForEachUser(void (*CallBack) (struct usersupp * EachUser, void *out_data),
+void ForEachUser(void (*CallBack) (struct ctdluser * EachUser, void *out_data),
                 void *in_data)
 {
-       struct usersupp usbuf;
+       struct ctdluser usbuf;
        struct cdbdata *cdbus;
 
-       cdb_rewind(CDB_USERSUPP);
+       cdb_rewind(CDB_USERS);
 
-       while (cdbus = cdb_next_item(CDB_USERSUPP), cdbus != NULL) {
-               memset(&usbuf, 0, sizeof(struct usersupp));
+       while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
+               memset(&usbuf, 0, sizeof(struct ctdluser));
                memcpy(&usbuf, cdbus->ptr,
-                      ((cdbus->len > sizeof(struct usersupp)) ?
-                       sizeof(struct usersupp) : cdbus->len));
+                      ((cdbus->len > sizeof(struct ctdluser)) ?
+                       sizeof(struct ctdluser) : cdbus->len));
                cdb_free(cdbus);
                (*CallBack) (&usbuf, in_data);
        }
@@ -1274,10 +1319,10 @@ void ForEachUser(void (*CallBack) (struct usersupp * EachUser, void *out_data),
 /*
  * List one user (this works with cmd_list)
  */
-void ListThisUser(struct usersupp *usbuf, void *data)
+void ListThisUser(struct ctdluser *usbuf, void *data)
 {
        if (usbuf->axlevel > 0) {
-               if ((CC->usersupp.axlevel >= 6)
+               if ((CC->user.axlevel >= 6)
                    || ((usbuf->flags & US_UNLISTED) == 0)
                    || ((CC->internal_pgm))) {
                        cprintf("%s|%d|%ld|%ld|%ld|%ld|",
@@ -1287,7 +1332,7 @@ void ListThisUser(struct usersupp *usbuf, void *data)
                                (long)usbuf->lastcall,
                                usbuf->timescalled,
                                usbuf->posted);
-                       if (CC->usersupp.axlevel >= 6)
+                       if (CC->user.axlevel >= 6)
                                cprintf("%s", usbuf->password);
                        cprintf("\n");
                }
@@ -1320,11 +1365,11 @@ void cmd_chek(void)
                return;
        }
 
-       getuser(&CC->usersupp, CC->curr_user);  /* no lock is needed here */
-       if ((REGISCALL != 0) && ((CC->usersupp.flags & US_REGIS) == 0))
+       getuser(&CC->user, CC->curr_user);      /* no lock is needed here */
+       if ((REGISCALL != 0) && ((CC->user.flags & US_REGIS) == 0))
                regis = 1;
 
-       if (CC->usersupp.axlevel >= 6) {
+       if (CC->user.axlevel >= 6) {
                get_control();
                if (CitControl.MMflags & MM_VALID)
                        vali = 1;
@@ -1342,7 +1387,7 @@ void cmd_chek(void)
  */
 void cmd_qusr(char *who)
 {
-       struct usersupp usbuf;
+       struct ctdluser usbuf;
 
        if (getuser(&usbuf, who) == 0) {
                cprintf("%d %s\n", CIT_OK, usbuf.fullname);
@@ -1357,7 +1402,7 @@ void cmd_qusr(char *who)
  */
 void cmd_agup(char *cmdbuf)
 {
-       struct usersupp usbuf;
+       struct ctdluser usbuf;
        char requested_user[SIZ];
 
        if (CtdlAccessCheck(ac_aide)) {
@@ -1389,7 +1434,7 @@ void cmd_agup(char *cmdbuf)
  */
 void cmd_asup(char *cmdbuf)
 {
-       struct usersupp usbuf;
+       struct ctdluser usbuf;
        char requested_user[SIZ];
        char notify[SIZ];
        int np;
@@ -1434,7 +1479,7 @@ void cmd_asup(char *cmdbuf)
 
        if (deleted) {
                sprintf(notify, "User <%s> deleted by %s\n",
-                       usbuf.fullname, CC->usersupp.fullname);
+                       usbuf.fullname, CC->user.fullname);
                aide_message(notify);
        }
 
@@ -1457,7 +1502,7 @@ void BumpNewMailCounter(long which_user) {
        begin_critical_section(S_SESSION_TABLE);
 
        for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
-               if (ptr->usersupp.usernum == which_user) {
+               if (ptr->user.usernum == which_user) {
                        ptr->newmail += 1;
                }
        }
@@ -1488,16 +1533,16 @@ int InitialMailCheck()
         int num_newmsgs = 0;
         int a;
         char mailboxname[ROOMNAMELEN];
-        struct quickroom mailbox;
+        struct ctdlroom mailbox;
         struct visit vbuf;
         struct cdbdata *cdbfr;
         long *msglist = NULL;
         int num_msgs = 0;
 
-        MailboxName(mailboxname, sizeof mailboxname, &CC->usersupp, MAILROOM);
+        MailboxName(mailboxname, sizeof mailboxname, &CC->user, MAILROOM);
         if (getroom(&mailbox, mailboxname) != 0)
                 return (0);
-        CtdlGetRelationship(&vbuf, &CC->usersupp, &mailbox);
+        CtdlGetRelationship(&vbuf, &CC->user, &mailbox);
 
         cdbfr = cdb_fetch(CDB_MSGLISTS, &mailbox.QRnumber, sizeof(long));
 
@@ -1536,9 +1581,9 @@ void cmd_view(char *cmdbuf) {
 
        requested_view = extract_int(cmdbuf, 0);
 
-       CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
+       CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
        vbuf.v_view = requested_view;
-       CtdlSetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
+       CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
        
        cprintf("%d ok\n", CIT_OK);
 }