ctdlload: wrote the code to ingest dump lines
authorArt Cancro <ajc@citadel.org>
Wed, 12 Jul 2023 20:25:05 +0000 (11:25 -0900)
committerArt Cancro <ajc@citadel.org>
Wed, 12 Jul 2023 20:25:05 +0000 (11:25 -0900)
citadel/Makefile
citadel/utils/ctdldump.c
citadel/utils/ctdlload.c

index 5c5277a947173df323d11feff04de46b2eecf950..fca990be441065060e95faa40f1d8bec64c05d00 100644 (file)
@@ -10,7 +10,7 @@
 # config.mk is generated by ./configure
 include config.mk
 
-all := citserver setup ctdlmigrate sendcommand citmail chkpw chkpwd ctdldump
+all := citserver setup ctdlmigrate sendcommand citmail chkpw chkpwd ctdldump ctdlload
 all: $(all)
 
 SRCDIRS := $(wildcard server server/modules/*)
index 37064d3f86896b648aeec68f405ca8871f883fad..aeb90c10f568bf326fefb1555ceb933dfa00c128 100644 (file)
@@ -37,7 +37,6 @@ void *reallok(void *ptr, size_t size) {
        }
        return p;
 }
-#define realloc reallok
 
 
 // convert a binary blob to base64 (non-reentrant!)
@@ -430,7 +429,7 @@ void export_table(int which_cdb, DB_ENV *src_dbenv) {
                                struct CtdlCompressHeader comp;
                                memcpy(&comp, in_data.data, sizeof(struct CtdlCompressHeader));
                                uncomp_data.size = comp.uncompressed_len;
-                               uncomp_data.data = realloc(uncomp_data.data, uncomp_data.size);
+                               uncomp_data.data = reallok(uncomp_data.data, uncomp_data.size);
                                destLen = (uLongf)comp.uncompressed_len;
        
                                ret = uncompress((Bytef *)uncomp_data.data, (uLongf *)&destLen,
@@ -489,17 +488,6 @@ int main(int argc, char **argv) {
                }
        }
 
-       // Warn the user
-       fprintf(stderr, "------------------------------------------------------------------------\n");
-       fprintf(stderr, "This utility must be run while the server is NOT RUNNING.               \n");
-       fprintf(stderr, "We \033[1mguarantee\033[0m data corruption if you do not                              \n");
-       fprintf(stderr, "observe this warning!  The source [-s] directory should contain a copy  \n");
-       fprintf(stderr, "of the database from your source system.  The dump [-d] directory       \n");
-       fprintf(stderr, "should be empty and will receive your dump file.                        \n");
-       fprintf(stderr, "------------------------------------------------------------------------\n");
-       fprintf(stderr, " Source (database) directory: %s\n", src_dir);
-       fprintf(stderr, "------------------------------------------------------------------------\n");
-
        if (confirmed == 1) {
                fprintf(stderr, "You have specified the [-y] flag, so processing will continue.\n");
        }
index d3a2ae51f50eaa9c3c85a8c531f59df55160ed7d..c7082c6809bcf455ad6c091d1714dd44f1cc2761 100644 (file)
@@ -26,7 +26,6 @@
 #include "../server/citadel_defs.h"
 #include "../server/server.h"
 #include "../server/citadel_dirs.h"
-#include "ctdl3264_structs.h"
 
 
 // Wrapper for realloc() that crashes and burns if the call fails.
@@ -38,7 +37,6 @@ void *reallok(void *ptr, size_t size) {
        }
        return p;
 }
-#define realloc reallok
 
 
 // Open a database environment
@@ -51,7 +49,7 @@ DB_ENV *open_dbenv(char *dirname) {
        u_int32_t flags = 0;
        int dbversion_major, dbversion_minor, dbversion_patch;
 
-       printf( "db: open_dbenv() starting\n"
+       fprintf(stderr, "db: open_dbenv() starting\n"
                "db:    Linked zlib: %s\n"
                "db: Compiled libdb: %s\n"
                "db:   Linked libdb: %s\n",
@@ -65,42 +63,42 @@ DB_ENV *open_dbenv(char *dirname) {
        int compiled_db_version = ( (DB_VERSION_MAJOR * 1000000) + (DB_VERSION_MINOR * 1000) + (DB_VERSION_PATCH) );
        int linked_db_version = ( (dbversion_major * 1000000) + (dbversion_minor * 1000) + (dbversion_patch) );
        if (compiled_db_version > linked_db_version) {
-               printf( "db: ctdl3264 is running with a version of libdb older than the one with which it was compiled.\n"
-                       "db: This is an invalid configuration.  ctdl3264 will now exit to prevent data loss.");
+               fprintf(stderr, "db: ctdlload is running with a version of libdb older than the one with which it was compiled.\n"
+                       "db: This is an invalid configuration.  ctdlload will now exit to prevent data loss.");
                exit(CTDLEXIT_DB);
        }
 
-       printf("db: Setting up DB environment\n");
+       fprintf(stderr,"db: Setting up DB environment\n");
        ret = db_env_create(&dbenv, 0);
        if (ret) {
-               printf("db: db_env_create: %s\n", db_strerror(ret));
-               printf("db: exit code %d\n", ret);
+               fprintf(stderr,"db: db_env_create: %s\n", db_strerror(ret));
+               fprintf(stderr,"db: exit code %d\n", ret);
                exit(CTDLEXIT_DB);
        }
 
        // We want to specify the shared memory buffer pool cachesize, but everything else is the default.
        ret = dbenv->set_cachesize(dbenv, 0, 64 * 1024, 0);
        if (ret) {
-               printf("db: set_cachesize: %s\n", db_strerror(ret));
+               fprintf(stderr,"db: set_cachesize: %s\n", db_strerror(ret));
                dbenv->close(dbenv, 0);
-               printf("db: exit code %d\n", ret);
+               fprintf(stderr,"db: exit code %d\n", ret);
                exit(CTDLEXIT_DB);
        }
 
        if ((ret = dbenv->set_lk_detect(dbenv, DB_LOCK_DEFAULT))) {
-               printf("db: set_lk_detect: %s\n", db_strerror(ret));
+               fprintf(stderr,"db: set_lk_detect: %s\n", db_strerror(ret));
                dbenv->close(dbenv, 0);
-               printf("db: exit code %d\n", ret);
+               fprintf(stderr,"db: exit code %d\n", ret);
                exit(CTDLEXIT_DB);
        }
 
        flags = DB_CREATE | DB_INIT_MPOOL | DB_PRIVATE | DB_INIT_LOG;
-       printf("db: dbenv open(dir=%s, flags=%d)\n", dirname, flags);
+       fprintf(stderr,"db: dbenv open(dir=%s, flags=%d)\n", dirname, flags);
        ret = dbenv->open(dbenv, dirname, flags, 0);
        if (ret) {
-               printf("db: dbenv->open: %s\n", db_strerror(ret));
+               fprintf(stderr,"db: dbenv->open: %s\n", db_strerror(ret));
                dbenv->close(dbenv, 0);
-               printf("db: exit code %d\n", ret);
+               fprintf(stderr,"db: exit code %d\n", ret);
                exit(CTDLEXIT_DB);
        }
 
@@ -109,635 +107,78 @@ DB_ENV *open_dbenv(char *dirname) {
 
 
 void close_dbenv(DB_ENV *dbenv) {
-       printf("db: closing dbenv\n");
+       fprintf(stderr,"db: closing dbenv\n");
        int ret = dbenv->close(dbenv, 0);
        if (ret) {
-               printf("db: dbenv->close: %s\n", db_strerror(ret));
+               fprintf(stderr,"db: dbenv->close: %s\n", db_strerror(ret));
        }
 }
 
 
-// convert function for a message in msgmain
-void convert_msgmain(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-       int32_t in_msgnum;
-       long out_msgnum;
-       memcpy(&in_msgnum, in_key->data, sizeof(in_msgnum));
-       out_msgnum = (long)in_msgnum;
+// Ingest one line of dump data.  NOT REENTRANT
+void ingest_one(char *line) {
+       static char last_cdb[16] = "";
+       char this_cdb[16];
 
-       if (in_key->size != 4) {
-               fprintf(stderr, "\033[31m\033[1m *** SOURCE DATABASE IS NOT 32-BIT *** ABORTING *** \033[0m\n");
-               abort();
-       }
-
-       // If the msgnum is negative, we are looking at METADATA
-       if (in_msgnum < 0) {
-               struct MetaData_32 *meta32 = (struct MetaData_32 *)in_data->data;
-
-               // printf("\033[32m\033[1mMetadata: msgnum=%d , refcount=%d , content_type=\"%s\" , rfc822len=%d\033[0m\n", meta32->meta_msgnum, meta32->meta_refcount, meta32->meta_content_type, meta32->meta_rfc822_length);
-
-               out_key->size = sizeof(long);
-               out_key->data = realloc(out_key->data, out_key->size);
-               memcpy(out_key->data, &out_msgnum, sizeof(long));
-
-               out_data->size = sizeof(struct MetaData);
-               out_data->data = realloc(out_data->data, out_data->size);
-               struct MetaData *meta64 = (struct MetaData *)out_data->data;
-               memset(meta64, 0, sizeof(struct MetaData));
-               meta64->meta_msgnum             = (long)        meta32->meta_msgnum;
-               meta64->meta_refcount           = (int)         meta32->meta_refcount;
-               strcpy(meta64->meta_content_type,               meta32->meta_content_type);
-               meta64->meta_rfc822_length      = (long)        meta32->meta_rfc822_length;
-       }
-
-       // If the msgnum is positive, we are looking at a MESSAGE
-       else if (in_msgnum > 0) {
-               out_key->size = sizeof(long);
-               out_key->data = realloc(out_key->data, out_key->size);
-               memcpy(out_key->data, &out_msgnum, sizeof(long));
-
-               // copy the message verbatim
-               out_data->size = in_data->size;
-               out_data->data = realloc(out_data->data, out_data->size);
-               memcpy(out_data->data, in_data->data, out_data->size);
-               // printf("\033[32m\033[1mMessage: %ld\033[0m\n", out_msgnum);
-       }
-
-       // If the msgnum is 0 it's probably not a valid record.
-       else {
-               // printf("\033[31mmsgmain: message number 0 is impossible, skipping this record\033[0m\n");
-       }
-}
-
-
-// convert function for a user record
-void convert_users(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // The key is a string so we can just copy it over
-       out_key->size = in_key->size;
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, in_key->data, in_key->size);
-
-       struct ctdluser_32 *user32 = (struct ctdluser_32 *)in_data->data;
-
-       out_data->size = sizeof(struct ctdluser);
-       out_data->data = realloc(out_data->data, out_data->size);
-       struct ctdluser *user64 = (struct ctdluser *)out_data->data;
-
-       user64->version                 = (int)         user32->version;
-       user64->uid                     = (uid_t)       user32->uid;
-       strcpy(user64->password,                        user32->password);
-       user64->flags                   = (unsigned)    user32->flags;
-       user64->axlevel                 = (cit_uint8_t) user32->axlevel;
-       user64->usernum                 = (long)        user32->usernum;
-       user64->lastcall                = (time_t)      user32->lastcall;
-       user64->USuserpurge             = (int)         user32->USuserpurge;
-       strcpy(user64->fullname,                        user32->fullname);
-       user64->msgnum_bio              = (long)        user32->msgnum_bio;
-       user64->msgnum_pic              = (long)        user32->msgnum_pic;
-       strcpy(user64->emailaddrs,                      user32->emailaddrs);
-       user64->msgnum_inboxrules       = (long)        user32->msgnum_inboxrules;
-       user64->lastproc_inboxrules     = (long)        user32->lastproc_inboxrules;
-
-       // printf("\033[32m\033[1mUser: %s\033[0m\n", user64->fullname);
-}
-
-
-// convert function for a room record
-void convert_rooms(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // The key is a string so we can just copy it over
-       out_key->size = in_key->size;
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, in_key->data, in_key->size);
-
-       // data
-       struct ctdlroom_32 *room32 = (struct ctdlroom_32 *)in_data->data;
-       out_data->size = sizeof(struct ctdlroom);
-       out_data->data = realloc(out_data->data, out_data->size);
-       struct ctdlroom *room64 = (struct ctdlroom *)out_data->data;
-
-       strcpy(room64->QRname,                          room32->QRname);
-       strcpy(room64->QRpasswd,                        room32->QRpasswd);
-       room64->QRroomaide              = (long)        room32->QRroomaide;
-       room64->QRhighest               = (long)        room32->QRhighest;
-       room64->QRgen                   = (time_t)      room32->QRgen;
-       room64->QRflags                 = (unsigned)    room32->QRflags;
-       strcpy(room64->QRdirname,                       room32->QRdirname);
-       room64->msgnum_info             = (long)        room32->msgnum_info;
-       room64->QRfloor                 = (char)        room32->QRfloor;
-       room64->QRmtime                 = (time_t)      room32->QRmtime;
-       room64->QRep.expire_mode        = (int)         room32->QRep.expire_mode;
-       room64->QRep.expire_value       = (int)         room32->QRep.expire_value;
-       room64->QRnumber                = (long)        room32->QRnumber;
-       room64->QRorder                 = (char)        room32->QRorder;
-       room64->QRflags2                = (unsigned)    room32->QRflags2;
-       room64->QRdefaultview           = (int)         room32->QRdefaultview;
-       room64->msgnum_pic              = (long)        room32->msgnum_pic;
-
-       // printf("\033[32m\033[1mRoom: %s\033[0m\n", room64->QRname);
-}
-
-
-// convert function for a floor record
-void convert_floors(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // the key is an "int", and "int" is 32-bits on both 32 and 64 bit platforms.
-       out_key->size = in_key->size;
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, in_key->data, in_key->size);
-
-       // data
-       struct floor_32 *floor32 = (struct floor_32 *)in_data->data;
-       out_data->size = sizeof(struct floor);
-       out_data->data = realloc(out_data->data, out_data->size);
-       struct floor *floor64 = (struct floor *)out_data->data;
-
-       // these are probably bit-for-bit identical, actually ... but we do it the "right" way anyway
-       floor64->f_flags                = (unsigned short)      floor32->f_flags;
-       strcpy(floor64->f_name,                                 floor32->f_name);
-       floor64->f_ref_count            = (int)                 floor32->f_ref_count;
-       floor64->f_ep.expire_mode       = (int)                 floor32->f_ep.expire_mode;
-       floor64->f_ep.expire_value      = (int)                 floor32->f_ep.expire_value;
-
-       // printf("\033[32m\033[1mFloor: %s\033[0m\n", floor64->f_name);
-}
-
-
-// convert function for a msglist or a fulltext index record
-// (both are indexed by a long and the data is arrays of longs)
-void convert_msglists(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-       int i;
-
-       char *table = (which_cdb == CDB_FULLTEXT) ? "FullText" : "Msglist";
-
-       // records are indexed by a single "long" and contains an array of zero or more "long"s
-       // and remember ... "long" is int32_t on the source system
-       int32_t in_roomnum;
-       long out_roomnum;
-       memcpy(&in_roomnum, in_key->data, sizeof(in_roomnum));
-       out_roomnum = (long) in_roomnum;
-
-       if (in_key->size != 4) {
-               fprintf(stderr, "\033[31m\033[1m *** SOURCE DATABASE IS NOT 32-BIT *** ABORTING *** \033[0m\n");
-               abort();
-       }
-
-       int num_msgs = in_data->size / sizeof(int32_t);
-       // printf("\033[32m\033[1m%s: key %ld (%d messages)\033[0m\n", table, out_roomnum, num_msgs);
-
-       // the key is a "long"
-       out_key->size = sizeof(out_roomnum);
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, &out_roomnum, sizeof(out_roomnum));
-
-       // the data is another array, but a wider type
-       out_data->size = sizeof(long) * num_msgs;
-       out_data->data = realloc(out_data->data, out_data->size);
-
-       int32_t in_msg = 0;
-       long out_msg = 0;
-       for (i=0; i<num_msgs; ++i) {
-               memcpy(&in_msg, (in_data->data + (i * sizeof(int32_t))), sizeof(int32_t));
-               out_msg = (long) in_msg;
-               memcpy((out_data->data + (i * sizeof(long))), &out_msg, sizeof(long));
-               // printf("msg#%ld\n", out_msg);
-       }
-}
-
-
-// convert function for a visit record
-void convert_visits(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // data
-       struct visit_32 *visit32 = (struct visit_32 *)in_data->data;
-       out_data->size = sizeof(struct visit);
-       out_data->data = realloc(out_data->data, out_data->size);
-       struct visit *visit64 = (struct visit *)out_data->data;
-
-       //  the data (zero it out so it will compress well)
-       memset(visit64, 0, sizeof(struct visit));
-       visit64->v_roomnum              = (long)        visit32->v_roomnum;
-       visit64->v_roomgen              = (long)        visit32->v_roomgen;
-       visit64->v_usernum              = (long)        visit32->v_usernum;
-       visit64->v_lastseen             = (long)        visit32->v_lastseen;
-       visit64->v_flags                = (unsigned)    visit32->v_flags;
-       strcpy(visit64->v_seen,                         visit32->v_seen);
-       strcpy(visit64->v_answered,                     visit32->v_answered);
-       visit64->v_view                 = (int)         visit32->v_view;
-
-       // printf("\033[32m\033[1mVisit: room %10ld, gen %10ld, user %10ld\033[0m\n", visit64->v_roomnum, visit64->v_roomgen, visit64->v_usernum);
-
-       // create the key (which is based on the data, so there is no need to convert the old key)
-       out_key->size = sizeof(struct visit_index);
-       out_key->data = realloc(out_key->data, out_key->size);
-       struct visit_index *newvisitindex = (struct visit_index *) out_key->data;
-       newvisitindex->iRoomID          =               visit64->v_roomnum;
-       newvisitindex->iRoomGen         =               visit64->v_roomgen;
-       newvisitindex->iUserID          =               visit64->v_usernum;
-}
-
-
-// convert function for a directory record
-void convert_dir(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // the key is a string
-       out_key->size = in_key->size;
-       out_key->data = realloc(out_key->data, out_key->size + 1);
-       memcpy(out_key->data, in_key->data, in_key->size);
-       char *k = (char *)out_key->data;
-       k[out_key->size] = 0;
-
-       // the data is also a string
-       out_data->size = in_data->size;
-       out_data->data = realloc(out_data->data, out_data->size + 1);
-       memcpy(out_data->data, in_data->data, in_data->size);
-       char *d = (char *)out_data->data;
-       d[out_data->size] = 0;
-
-       // please excuse my friend, he isn't null terminated
-       // printf("\033[32m\033[1mDirectory entry: %s -> %s\033[0m\n", (char *)out_key->data, (char *)out_data->data);
-}
-
-
-// convert function for a use table record
-void convert_usetable(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // the key is an int, which is the same size (32 bits) on both 32 and 64 bit systems
-       out_key->size = in_key->size;
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, in_key->data, in_key->size);
-
-       // the data is a "struct UseTable"
-       struct UseTable_32 *use32 = (struct UseTable_32 *)in_data->data;
-       out_data->size = sizeof(struct UseTable);
-       out_data->data = realloc(out_data->data, out_data->size);
-       memset(out_data->data, 0, out_data->size);
-       struct UseTable *use64 = (struct UseTable *)out_data->data;
-
-       //  the data
-       use64->hash                     =               use32->hash;
-       use64->timestamp                = (time_t)      use32->timestamp;
-
-       // printf("\033[32m\033[1muse table: %d , %s\033[0m\n", use64->hash, asctime(localtime(&use64->timestamp)));
-}
-
-
-// convert function for large message texts
-void convert_bigmsgs(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // The key is a packed long
-       int32_t in_msgnum;
-       long out_msgnum;
-       memcpy(&in_msgnum, in_key->data, sizeof(in_msgnum));
-       out_msgnum = (long)in_msgnum;
-
-       if (in_key->size != 4) {
-               fprintf(stderr, "\033[31m\033[1m *** SOURCE DATABASE IS NOT 32-BIT *** ABORTING *** \033[0m\n");
-               abort();
-       }
-
-       out_key->size = sizeof(long);
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, &out_msgnum, sizeof(long));
-
-       // the data is binary-ish but has no packed integers
-       out_data->size = in_data->size;
-       out_data->data = realloc(out_data->data, out_data->size);
-       memcpy(out_data->data, in_data->data, in_data->size);
-
-       // printf("\033[32m\033[1mBigmsg %ld , length %d\033[0m\n", out_msgnum, out_data->size);
-}
-
-
-// convert function for EUID Index records
-void convert_euidindex(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // The structure of an euidindex record *key* is:
-       // |----room_number----|----------EUID-------------|
-       //    (sizeof long)       (actual length of euid)
-
-       // The structure of an euidindex record *value* is:
-       // |-----msg_number----|----room_number----|----------EUID-------------|
-       //    (sizeof long)       (sizeof long)       (actual length of euid)
-
-       int32_t in_msgnum = 0;
-       int32_t in_roomnum = 0;
-       char euid[SIZ];
-       long out_msgnum = 0;
-       long out_roomnum = 0;
-
-       memcpy(&in_msgnum, in_data->data, sizeof(in_msgnum));
-       memcpy(&in_roomnum, in_data->data+sizeof(int32_t), sizeof(in_msgnum));
-       strcpy(euid, in_data->data+(sizeof(int32_t)*2));
-
-       out_msgnum = (long) in_msgnum;
-       out_roomnum = (long) in_roomnum;
-       // printf("euidindex: msgnum=%ld, roomnum=%ld, euid=\"%s\"\n", out_msgnum, out_roomnum, euid);
-
-       out_key->size = sizeof(long) + strlen(euid) + 1;
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, &out_roomnum, sizeof(out_roomnum));
-       strcpy(out_key->data+sizeof(out_roomnum), euid);
-
-       out_data->size = sizeof(long) + sizeof(long) + strlen(euid) + 1;
-       out_data->data = realloc(out_data->data, out_data->size);
-       memcpy(out_data->data, &out_msgnum, sizeof(out_msgnum));
-       memcpy(out_data->data+sizeof(out_msgnum), &out_roomnum, sizeof(out_roomnum));
-       strcpy(out_data->data+sizeof(out_msgnum)+sizeof(out_roomnum), euid);
-
-
-       //int i;
-       //char ch;
-//
-       //printf("  in_key:             ");
-       //for (i=0; i<in_key->size; ++i) {
-               //ch = 0;
-               //memcpy(&ch, in_key->data+i, 1);
-               //printf("%02X ", (int) ch);
-       //}
-       //printf("\n");
-//
-       //printf(" out_key: ");
-       //for (i=0; i<out_key->size; ++i) {
-               //ch = 0;
-               //memcpy(&ch, out_key->data+i, 1);
-               //printf("%02X ", (int) ch);
-       //}
-       //printf("\n");
-//
-       //printf(" in_data:                         ");
-       //for (i=0; i<in_data->size; ++i) {
-               //ch = 0;
-               //memcpy(&ch, in_data->data+i, 1);
-       //      printf("%02X ", (int) ch);
-       //}
-       //printf("\n");
-//
-       //printf("out_data: ");
-       //for (i=0; i<out_data->size; ++i) {
-               //ch = 0;
-               //memcpy(&ch, out_data->data+i, 1);
-               //printf("%02X ", (int) ch);
-       //}
-       //printf("\n");
+       // We are assuming that the lines of the dump file will generally be sorted by table.
+       // By remembering the last table we worked with, we can do close/open if the table changes.
 
+       extract_token(this_cdb, line, 0, '|', sizeof this_cdb);
+       if (strcmp(this_cdb, last_cdb)) {
 
-}
-
+               printf("Close %s\n", last_cdb);
+               printf(" Open %s\n", this_cdb);
 
-// convert users-by-number records
-void convert_usersbynumber(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // key is a long
-       // and remember ... "long" is int32_t on the source system
-       int32_t in_usernum;
-       long out_usernum;
-       memcpy(&in_usernum, in_key->data, sizeof(in_usernum));
-       out_usernum = (long) in_usernum;
-
-       if (in_key->size != 4) {
-               fprintf(stderr, "\033[31m\033[1m *** SOURCE DATABASE IS NOT 32-BIT *** ABORTING *** \033[0m\n");
-               abort();
+               strcpy(last_cdb, this_cdb);
        }
 
-       out_key->size = sizeof(out_usernum);
-       out_key->data = realloc(out_key->data, out_key->size);
-       memcpy(out_key->data, &out_usernum, sizeof(out_usernum));
-
-       // value is a string
-       out_data->size = in_data->size;
-       out_data->data = realloc(out_data->data, out_data->size);
-       memcpy(out_data->data, in_data->data, in_data->size);
-
-       // printf("usersbynumber: %ld --> %s\n", out_usernum, (char *)out_data->data);
-}
-
-
-// convert function for a config record
-void convert_config(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-
-       // the key is a string
-       out_key->size = in_key->size;
-       out_key->data = realloc(out_key->data, out_key->size + 1);
-       memcpy(out_key->data, in_key->data, in_key->size);
-       char *k = (char *)out_key->data;
-       k[out_key->size] = 0;
-
-       // the data is a pair of strings
-       out_data->size = in_data->size;
-       out_data->data = realloc(out_data->data, out_data->size + 1);
-       memcpy(out_data->data, in_data->data, in_data->size);
-       char *d = (char *)out_data->data;
-       d[out_data->size] = 0;
-
-       // please excuse my friend, he isn't null terminated
-       // printf("\033[32m\033[1mConfig entry: %s -> %s\033[0m\n", (char *)out_key->data, (char *)out_data->data+strlen(out_data->data)+1);
-}
-
-
-// For obsolete databases, zero all the output
-void zero_function(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
-       out_key->size = 0;
-       out_data->size = 0;
 }
 
 
-void (*convert_functions[])(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) = {
-       convert_msgmain,        // CDB_MSGMAIN
-       convert_users,          // CDB_USERS
-       convert_rooms,          // CDB_ROOMS
-       convert_floors,         // CDB_FLOORTAB
-       convert_msglists,       // CDB_MSGLISTS
-       convert_visits,         // CDB_VISIT
-       convert_dir,            // CDB_DIRECTORY
-       convert_usetable,       // CDB_USETABLE
-       convert_bigmsgs,        // CDB_BIGMSGS
-       convert_msglists,       // CDB_FULLTEXT
-       convert_euidindex,      // CDB_EUIDINDEX
-       convert_usersbynumber,  // CDB_USERSBYNUMBER
-       zero_function,          // CDB_UNUSED1 (obsolete)
-       convert_config          // CDB_CONFIG
-};
-
-
-void convert_table(int which_cdb, DB_ENV *src_dbenv, DB_ENV *dst_dbenv) {
-       int ret;
-       int compressed;
-       char dbfilename[32];
-       uLongf destLen = 0;
-
-       // shamelessly swiped from https://docs.oracle.com/database/bdb181/html/programmer_reference/am_cursor.html
-       DB *src_dbp, *dst_dbp;
-       DBC *src_dbcp;
-       DBT in_key, in_data, out_key, out_data, uncomp_data;
-       int num_good_rows = 0;
-       int num_bad_rows = 0;
-
-       snprintf(dbfilename, sizeof dbfilename, "cdb.%02x", which_cdb);
-
-       // create a database handle for the source table
-       ret = db_create(&src_dbp, src_dbenv, 0);
-       if (ret) {
-               printf("db: db_create: %s\n", db_strerror(ret));
-               printf("db: exit code %d\n", ret);
-               exit(CTDLEXIT_DB);
-       }
-
-       // open the file containing the source table
-       // printf("\033[33m\033[1mdb: opening source %s\033[0m\n", dbfilename);
-       ret = src_dbp->open(src_dbp, NULL, dbfilename, NULL, DB_BTREE, 0, 0600);
-       if (ret) {
-               printf("db: db_open: %s\n", db_strerror(ret));
-               printf("db: exit code %d\n", ret);
-               exit(CTDLEXIT_DB);
-       }
-
-       // create a database handle for the destination table
-       ret = db_create(&dst_dbp, dst_dbenv, 0);
-       if (ret) {
-               printf("db: db_create: %s\n", db_strerror(ret));
-               printf("db: exit code %d\n", ret);
-               exit(CTDLEXIT_DB);
-       }
-
-       // open the file containing the destination table
-       // printf("\033[33m\033[1mdb: opening destination %s\033[0m\n", dbfilename);
-       ret = dst_dbp->open(dst_dbp, NULL, dbfilename, NULL, DB_BTREE, (DB_CREATE | DB_TRUNCATE), 0600);
-       if (ret) {
-               printf("db: db_open: %s\n", db_strerror(ret));
-               printf("db: exit code %d\n", ret);
-               exit(CTDLEXIT_DB);
-       }
-
-       // Acquire a cursor to read the source table
-       // printf("\033[33m\033[1mdb: acquiring cursor\033[0m\n");
-       if ((ret = src_dbp->cursor(src_dbp, NULL, &src_dbcp, 0)) != 0) {
-               printf("db: db_cursor: %s\n", db_strerror(ret));
-               printf("db: exit code %d\n", ret);
-               exit(CTDLEXIT_DB);
-       }
-
-       // Zero out these database keys
-       memset(&in_key,         0, sizeof(DBT));        // input
-       memset(&in_data,        0, sizeof(DBT));
-       memset(&out_key,        0, sizeof(DBT));        // output
-       memset(&out_data,       0, sizeof(DBT));
-       memset(&uncomp_data,    0, sizeof(DBT));        // decompressed input (the key doesn't change)
+// This is the loop that loads the dump data.  NOT REENTRANT
+void ingest(void) {
+       static size_t line_alloc = 1;
+       static char *line;
+       static size_t line_len = 0;
+       char ch;
 
-       // Walk through the database, calling convert functions as we go and clearing buffers before each call.
-       while (out_key.size = 0, out_data.size = 0, (ret = src_dbcp->get(src_dbcp, &in_key, &in_data, DB_NEXT)) == 0) {
-       
-               // If either the key or data are zero length, skip this record
-               if ((in_key.size == 0) || (in_data.size == 0)) {
-                       ++num_bad_rows;
-                       // printf("\033[31minput keylen=%d , datalen=%d , skipping record\033[0m\n", in_key.size, in_data.size);
-               }
+       line = reallok(NULL, line_alloc);
 
-               else {  // Both key and data are >0 length so we're good to go
+       do {
+               line_len = 0;
 
-                       // Do we need to decompress?
-                       static int32_t magic = COMPRESS_MAGIC;
-                       compressed = 0;
-                       if ( (in_data.size >= sizeof(struct CtdlCompressHeader_32)) && (!memcmp(in_data.data, &magic, sizeof(magic))) ) {
-       
-                               // yes, we need to decompress
-                               compressed = 1;
-                               struct CtdlCompressHeader_32 comp32;
-                               memcpy(&comp32, in_data.data, sizeof(struct CtdlCompressHeader_32));
-                               uncomp_data.size = comp32.uncompressed_len;
-                               uncomp_data.data = realloc(uncomp_data.data, uncomp_data.size);
-                               destLen = (uLongf)comp32.uncompressed_len;
-       
-                               ret = uncompress((Bytef *)uncomp_data.data, (uLongf *)&destLen, (const Bytef *)in_data.data+sizeof(struct CtdlCompressHeader_32), (uLong)comp32.compressed_len);
-                               if (ret != Z_OK) {
-                                       printf("db: uncompress() error %d\n", ret);
-                                       exit(CTDLEXIT_DB);
-                               }
-                               // printf("DB: %02x ,  in_keylen: %-3d ,  in_datalen: %-10d , dataptr: %012lx \033[31m(decompressed)\033[0m\n", which_cdb, (int)in_key.size, comp32.uncompressed_len, (long unsigned int)uncomp_data.data);
+               while (ch = getc(stdin), ((ch != '\n') && (ch > 0))) {
+                       if ((line_len+2) > line_alloc) {
+                               line_alloc *= 2;
+                               line = reallok(line, line_alloc);
                        }
-                       else {
-                               // printf("DB: %02x ,  in_keylen: %-3d ,  in_datalen: %-10d , dataptr: %012lx\n", which_cdb, (int)in_key.size, (int)in_data.size, (long unsigned int)in_data.data);
-                       }
-       
-                       // Call the convert function registered to this table
-                       convert_functions[which_cdb](which_cdb, &in_key, (compressed ? &uncomp_data : &in_data), &out_key, &out_data);
-
-                       // write the converted record to the target database
-                       if (out_key.size > 0) {
-       
-                               // printf("DB: %02x , out_keylen: %-3d , out_datalen: %-10d , dataptr: %012lx\n", which_cdb, (int)out_key.size, (int)out_data.size, (long unsigned int)out_data.data);
-                               ret = dst_dbp->put(dst_dbp, NULL, &out_key, &out_data, 0);
+                       line[line_len++] = ch;
+                       line[line_len] = 0;
+               }
        
-                               if (ret) {
-                                       printf("db: cdb_put(%d): %s", which_cdb, db_strerror(ret));
-                                       exit(CTDLEXIT_DB);
-                               }
-                               ++num_good_rows;
-                       }
-                       else {
-                               ++num_bad_rows;
-                               // printf("\033[31moutput keylen=%d , skipping record\033[0m\n", out_key.size);
-                       }
-
-               // Knowing the total number of rows isn't critical to the program.  It's just for the user to know.
-               printf("\033[33m%5d\033[37m  \033[32m%9d\033[37m  \033[31m%8d\033[0m\r", which_cdb, num_good_rows, num_bad_rows);
-               fflush(stdout);
+               if (ch <= 0) {
+                       return;
                }
-       }
 
-       if (ret != DB_NOTFOUND) {
-               printf("db: db_get: %s\n", db_strerror(ret));
-               printf("db: exit code %d\n", ret);
-               exit(CTDLEXIT_DB);
-       }
-
-       printf("\n");
-
-       // free any leftover out_data pointers
-       free(out_key.data);
-       free(out_data.data);
-       free(uncomp_data.data);
-
-       // ...and close the database (table)
-       // printf("\033[33m\033[1mdb: closing source %02x\033[0m\n", which_cdb);
-       ret = src_dbp->close(src_dbp, 0);
-       if (ret) {
-               printf("db: db_close: %s\n", db_strerror(ret));
-       }
-
-       // printf("\033[33m\033[1mdb: closing destination %02x\033[0m\n", which_cdb);
-       ret = dst_dbp->close(dst_dbp, 0);
-       if (ret) {
-               printf("db: db_close: %s\n", db_strerror(ret));
-       }
-
-       // printf("\n");
+               if (line_len > 0) {
+                       ingest_one(line);
+               }
 
+       } while (ch >= 0);
 }
 
 
+// Main entry point
 int main(int argc, char **argv) {
-       char *src_dir = NULL;
        char *dst_dir = NULL;
        int confirmed = 0;
-       static DB_ENV *src_dbenv;               // Source DB environment (global)
        static DB_ENV *dst_dbenv;               // Source DB environment (global)
 
-       // Check to make sure we're running on the target 64-bit system
-       if (sizeof(void *) != 8) {
-               fprintf(stderr, "%s: this is a %ld-bit system.\n", argv[0], sizeof(void *)*8);
-               fprintf(stderr, "%s: you must run this on a 64-bit system, onto which a 32-bit database has been copied.\n", argv[0]);
-               exit(1);
-       }
-
        // Parse command line
        int a;
        while ((a = getopt(argc, argv, "h:d:y")) != EOF) {
                switch (a) {
                case 'h':
-                       src_dir = optarg;
-                       break;
-               case 'd':
                        dst_dir = optarg;
                        break;
                case 'y':
@@ -749,37 +190,20 @@ int main(int argc, char **argv) {
                }
        }
 
-       // Warn the user
-       printf("------------------------------------------------------------------------\n");
-       printf("ctdl3264 converts a Citadel database written on a 32-bit system to one  \n");
-       printf("that can be run on a 64-bit system.  It is intended to be run OFFLINE.  \n");
-       printf("Neither the source nor the target data directories should be mounted by \n");
-       printf("a running Citadel server.  We \033[1mguarantee\033[0m data corruption if you do not   \n");
-       printf("observe this warning!  The source [-s] directory should contain a copy  \n");
-       printf("of the database from your 32-bit system.  The destination [-d] directory\n");
-       printf("should be empty and will receive your 64-bit database.                  \n");
-       printf("------------------------------------------------------------------------\n");
-       printf("     Source 32-bit directory: %s\n", src_dir);
-       printf("Destination 64-bit directory: %s\n", dst_dir);
-       printf("------------------------------------------------------------------------\n");
-
        if (confirmed == 1) {
-               printf("You have specified the [-y] flag, so processing will continue.\n");
+               fprintf(stderr,"You have specified the [-y] flag, so processing will continue.\n");
        }
        else {
-               printf("Please read [ https://www.citadel.org/ctdl3264.html ] to learn how to proceed.\n");
+               fprintf(stderr,"Please read [ https://www.citadel.org/ctdlload.html ] to learn how to proceed.\n");
                exit(0);
        }
 
+       char cmd[1024];
+       snprintf(cmd, sizeof cmd, "rm -fv %s/cdb.* %s/log.*", dst_dir, dst_dir);
+       system(cmd);
 
-       src_dbenv = open_dbenv(src_dir);
        dst_dbenv = open_dbenv(dst_dir);
-       printf("table  good rows  bad rows\n");
-       printf("-----  ---------  --------\n");
-       for (int i = 0; i < MAXCDB; ++i) {
-               convert_table(i, src_dbenv, dst_dbenv);
-       }
-       close_dbenv(src_dbenv);
+       ingest();
        close_dbenv(dst_dbenv);
 
        exit(0);