convert bigmsgs
[citadel.git] / citadel / utils / ctdl3264.c
1 // Attempt to convert your database from 32-bit to 64-bit.
2 // Don't run this.  It doesn't work and if you try to run it you will immediately die.
3 //
4 // Copyright (c) 2023 by Art Cancro citadel.org
5 //
6 // This program is open source software.  Use, duplication, or disclosure
7 // is subject to the terms of the GNU General Public License, version 3.
8
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <ctype.h>
12 #include <stdio.h>
13 #include <signal.h>
14 #include <sys/types.h>
15 #include <sys/socket.h>
16 #include <sys/un.h>
17 #include <netdb.h>
18 #include <string.h>
19 #include <pwd.h>
20 #include <errno.h>
21 #include <stdarg.h>
22 #include <limits.h>
23 #include <libcitadel.h>
24 #include <zlib.h>
25 #include <db.h>
26 #include "../server/sysdep.h"
27 #include "../server/citadel_defs.h"
28 #include "../server/server.h"
29 #include "../server/citadel_dirs.h"
30 #include "ctdl3264_structs.h"
31
32 static DB_ENV *dbenv;           // The DB environment (global)
33
34 // Open the database environment
35 void open_dbenv(char *src_dir) {
36         int ret;
37         int i;
38         u_int32_t flags = 0;
39         int dbversion_major, dbversion_minor, dbversion_patch;
40
41         printf( "db: open_dbenv() starting\n"
42                 "db:    Linked zlib: %s\n"
43                 "db: Compiled libdb: %s\n"
44                 "db:   Linked libdb: %s\n",
45                 zlibVersion(),
46                 DB_VERSION_STRING,
47                 db_version(&dbversion_major, &dbversion_minor, &dbversion_patch)
48         );
49
50         // Create synthetic integer version numbers and compare them.
51         // Never allow citserver to run with a libdb older then the one with which it was compiled.
52         int compiled_db_version = ( (DB_VERSION_MAJOR * 1000000) + (DB_VERSION_MINOR * 1000) + (DB_VERSION_PATCH) );
53         int linked_db_version = ( (dbversion_major * 1000000) + (dbversion_minor * 1000) + (dbversion_patch) );
54         if (compiled_db_version > linked_db_version) {
55                 printf( "db: ctdl3264 is running with a version of libdb older than the one with which it was compiled.\n"
56                         "db: This is an invalid configuration.  ctdl3264 will now exit to prevent data loss.");
57                 exit(CTDLEXIT_DB);
58         }
59
60         printf("db: Setting up DB environment\n");
61         ret = db_env_create(&dbenv, 0);
62         if (ret) {
63                 printf("db: db_env_create: %s\n", db_strerror(ret));
64                 printf("db: exit code %d\n", ret);
65                 exit(CTDLEXIT_DB);
66         }
67
68         // We want to specify the shared memory buffer pool cachesize, but everything else is the default.
69         ret = dbenv->set_cachesize(dbenv, 0, 64 * 1024, 0);
70         if (ret) {
71                 printf("db: set_cachesize: %s\n", db_strerror(ret));
72                 dbenv->close(dbenv, 0);
73                 printf("db: exit code %d\n", ret);
74                 exit(CTDLEXIT_DB);
75         }
76
77         if ((ret = dbenv->set_lk_detect(dbenv, DB_LOCK_DEFAULT))) {
78                 printf("db: set_lk_detect: %s\n", db_strerror(ret));
79                 dbenv->close(dbenv, 0);
80                 printf("db: exit code %d\n", ret);
81                 exit(CTDLEXIT_DB);
82         }
83
84         flags = DB_CREATE | DB_INIT_MPOOL | DB_PRIVATE | DB_INIT_LOG;
85         printf("db: dbenv open(dir=%s, flags=%d)\n", src_dir, flags);
86         ret = dbenv->open(dbenv, src_dir, flags, 0);
87         if (ret) {
88                 printf("db: dbenv->open: %s\n", db_strerror(ret));
89                 dbenv->close(dbenv, 0);
90                 printf("db: exit code %d\n", ret);
91                 exit(CTDLEXIT_DB);
92         }
93 }
94
95
96 void close_dbenv(void) {
97         printf("db: closing dbenv\n");
98         int ret = dbenv->close(dbenv, 0);
99         if (ret) {
100                 printf("db: DBENV->close: %s\n", db_strerror(ret));
101         }
102 }
103
104
105 // placeholder convert function for the data types not yet implemented
106 void null_function(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
107 }
108
109
110 // convert function for a message in msgmain
111 void convert_msgmain(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
112         int32_t in_msgnum;
113         long out_msgnum;
114         memcpy(&in_msgnum, in_key->data, sizeof(in_msgnum));
115         out_msgnum = (long)in_msgnum;
116
117         if (in_key->size != 4) {
118                 printf("\033[31m\033[1m *** SOURCE DATABASE IS NOT 32-BIT *** ABORTING *** \033[0m\n");
119                 abort();
120         }
121
122         // If the msgnum is negative, we are looking at METADATA
123         if (in_msgnum < 0) {
124                 struct MetaData_32 *meta32 = (struct MetaData_32 *)in_data->data;
125
126                 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);
127
128                 out_key->size = sizeof(long);
129                 out_key->data = realloc(out_key->data, out_key->size);
130                 memcpy(out_key->data, &out_msgnum, sizeof(long));
131
132                 out_data->size = sizeof(struct MetaData);
133                 out_data->data = realloc(out_data->data, out_data->size);
134                 struct MetaData *meta64 = (struct MetaData *)out_data->data;
135                 memset(meta64, 0, sizeof(struct MetaData));
136                 meta64->meta_msgnum             = (long)        meta32->meta_msgnum;
137                 meta64->meta_refcount           = (int)         meta32->meta_refcount;
138                 strcpy(meta64->meta_content_type,               meta32->meta_content_type);
139                 meta64->meta_rfc822_length      = (long)        meta32->meta_rfc822_length;
140         }
141
142         // If the msgnum is positive, we are looking at a MESSAGE
143         else if (in_msgnum > 0) {
144                 out_key->size = sizeof(long);
145                 out_key->data = realloc(out_key->data, out_key->size);
146                 memcpy(out_key->data, &out_msgnum, sizeof(long));
147
148                 // copy the message verbatim
149                 out_data->size = in_data->size;
150                 out_data->data = realloc(out_data->data, out_data->size);
151                 memcpy(out_data->data, in_data->data, out_data->size);
152                 printf("\033[32m\033[1mMessage: %ld\033[0m\n", out_msgnum);
153         }
154
155         // If the msgnum is 0 it's probably not a valid record.
156         else {
157                 printf("msgmain: record 0 is impossible\n");
158         }
159 }
160
161
162 // convert function for a user record
163 void convert_users(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
164
165         // The key is a string so we can just copy it over
166         out_key->size = in_key->size;
167         out_key->data = realloc(out_key->data, out_key->size);
168         memcpy(out_key->data, in_key->data, in_key->size);
169
170         struct ctdluser_32 *user32 = (struct ctdluser_32 *)in_data->data;
171
172         out_data->size = sizeof(struct ctdluser);
173         out_data->data = realloc(out_data->data, out_data->size);
174         struct ctdluser *user64 = (struct ctdluser *)out_data->data;
175
176         user64->version                 = (int)         user32->version;
177         user64->uid                     = (uid_t)       user32->uid;
178         strcpy(user64->password,                        user32->password);
179         user64->flags                   = (unsigned)    user32->flags;
180         user64->timescalled             = (long)        user32->timescalled;
181         user64->posted                  = (long)        user32->posted;
182         user64->axlevel                 = (cit_uint8_t) user32->axlevel;
183         user64->usernum                 = (long)        user32->usernum;
184         user64->lastcall                = (time_t)      user32->lastcall;
185         user64->USuserpurge             = (int)         user32->USuserpurge;
186         strcpy(user64->fullname,                        user32->fullname);
187         user64->msgnum_bio              = (long)        user32->msgnum_bio;
188         user64->msgnum_pic              = (long)        user32->msgnum_pic;
189         strcpy(user64->emailaddrs,                      user32->emailaddrs);
190         user64->msgnum_inboxrules       = (long)        user32->msgnum_inboxrules;
191         user64->lastproc_inboxrules     = (long)        user32->lastproc_inboxrules;
192
193         printf("\033[32m\033[1mUser: %s\033[0m\n", user64->fullname);
194 }
195
196
197 // convert function for a room record
198 void convert_rooms(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
199
200         // The key is a string so we can just copy it over
201         out_key->size = in_key->size;
202         out_key->data = realloc(out_key->data, out_key->size);
203         memcpy(out_key->data, in_key->data, in_key->size);
204
205         // data
206         struct ctdlroom_32 *room32 = (struct ctdlroom_32 *)in_data->data;
207         out_data->size = sizeof(struct ctdlroom);
208         out_data->data = realloc(out_data->data, out_data->size);
209         struct ctdlroom *room64 = (struct ctdlroom *)out_data->data;
210
211         strcpy(room64->QRname,                          room32->QRname);
212         strcpy(room64->QRpasswd,                        room32->QRpasswd);
213         room64->QRroomaide              = (long)        room32->QRroomaide;
214         room64->QRhighest               = (long)        room32->QRhighest;
215         room64->QRgen                   = (time_t)      room32->QRgen;
216         room64->QRflags                 = (unsigned)    room32->QRflags;
217         strcpy(room64->QRdirname,                       room32->QRdirname);
218         room64->msgnum_info             = (long)        room32->msgnum_info;
219         room64->QRfloor                 = (char)        room32->QRfloor;
220         room64->QRmtime                 = (time_t)      room32->QRmtime;
221         room64->QRep.expire_mode        = (int)         room32->QRep.expire_mode;
222         room64->QRep.expire_value       = (int)         room32->QRep.expire_value;
223         room64->QRnumber                = (long)        room32->QRnumber;
224         room64->QRorder                 = (char)        room32->QRorder;
225         room64->QRflags2                = (unsigned)    room32->QRflags2;
226         room64->QRdefaultview           = (int)         room32->QRdefaultview;
227         room64->msgnum_pic              = (long)        room32->msgnum_pic;
228
229         printf("\033[32m\033[1mRoom: %s\033[0m\n", room64->QRname);
230 }
231
232
233 // convert function for a floor record
234 void convert_floors(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
235
236         // the key is an "int", and "int" is 32-bits on both 32 and 64 bit platforms.
237         out_key->size = in_key->size;
238         out_key->data = realloc(out_key->data, out_key->size);
239         memcpy(out_key->data, in_key->data, in_key->size);
240
241         // data
242         struct floor_32 *floor32 = (struct floor_32 *)in_data->data;
243         out_data->size = sizeof(struct floor);
244         out_data->data = realloc(out_data->data, out_data->size);
245         struct floor *floor64 = (struct floor *)out_data->data;
246
247         // these are probably bit-for-bit identical, actually ... but we do it the "right" way anyway
248         floor64->f_flags                = (unsigned short)      floor32->f_flags;
249         strcpy(floor64->f_name,                                 floor32->f_name);
250         floor64->f_ref_count            = (int)                 floor32->f_ref_count;
251         floor64->f_ep.expire_mode       = (int)                 floor32->f_ep.expire_mode;
252         floor64->f_ep.expire_value      = (int)                 floor32->f_ep.expire_value;
253
254         printf("\033[32m\033[1mFloor: %s\033[0m\n", floor64->f_name);
255 }
256
257
258 // convert function for a msglist
259 void convert_msglists(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
260         int i;
261
262         // msglist records are indexed by a single "long" and contains an array of zero or more "long"s
263         // and remember ... "long" is int32_t on the source system
264         int32_t in_roomnum;
265         long out_roomnum;
266         memcpy(&in_roomnum, in_key->data, sizeof(in_roomnum));
267         out_roomnum = (long) in_roomnum;
268
269         if (in_key->size != 4) {
270                 printf("\033[31m\033[1m *** SOURCE DATABASE IS NOT 32-BIT *** ABORTING *** \033[0m\n");
271                 abort();
272         }
273
274         int num_msgs = in_data->size / sizeof(int32_t);
275         printf("\033[32m\033[1mMsglist: for room %ld (%d messages)\033[0m\n", out_roomnum, num_msgs);
276
277         // the key is a "long"
278         out_key->size = sizeof(out_roomnum);
279         out_key->data = realloc(out_key->data, out_key->size);
280         memcpy(out_key->data, &out_roomnum, sizeof(out_roomnum));
281
282         // the data is another array, but a wider type
283         out_data->size = sizeof(long) * num_msgs;
284         out_data->data = realloc(out_data->data, out_data->size);
285
286         int32_t in_msg = 0;
287         long out_msg = 0;
288         for (i=0; i<num_msgs; ++i) {
289                 memcpy(&in_msg, (in_data->data + (i * sizeof(int32_t))), sizeof(int32_t));
290                 out_msg = (long) in_msg;
291                 memcpy((out_data->data + (i * sizeof(long))), &out_msg, sizeof(long));
292                 printf("#%ld\n", out_msg);
293         }
294 }
295
296
297 // convert function for a visit record
298 void convert_visits(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
299
300         // data
301         struct visit_32 *visit32 = (struct visit_32 *)in_data->data;
302         out_data->size = sizeof(struct visit);
303         out_data->data = realloc(out_data->data, out_data->size);
304         struct visit *visit64 = (struct visit *)out_data->data;
305
306         // convert the data (zero it out so it will compress well)
307         memset(visit64, 0, sizeof(struct visit));
308         visit64->v_roomnum              = (long)        visit32->v_roomnum;
309         visit64->v_roomgen              = (long)        visit32->v_roomgen;
310         visit64->v_usernum              = (long)        visit32->v_usernum;
311         visit64->v_lastseen             = (long)        visit32->v_lastseen;
312         visit64->v_flags                = (unsigned)    visit32->v_flags;
313         strcpy(visit64->v_seen,                         visit32->v_seen);
314         strcpy(visit64->v_answered,                     visit32->v_answered);
315         visit64->v_view                 = (int)         visit32->v_view;
316
317         printf("\033[32m\033[1mVisit: room %ld, gen %ld, user %ld\033[0m\n", visit64->v_roomnum, visit64->v_roomgen, visit64->v_usernum);
318
319         // create the key (which is based on the data, so there is no need to convert the old key)
320         out_key->size = sizeof(struct visit_index);
321         out_key->data = realloc(out_key->data, out_key->size);
322         struct visit_index *newvisitindex = (struct visit_index *) out_key->data;
323         newvisitindex->iRoomID          =               visit64->v_roomnum;
324         newvisitindex->iRoomGen         =               visit64->v_roomgen;
325         newvisitindex->iUserID          =               visit64->v_usernum;
326
327         // FIXME compress this record before sending it to the new database.  we are getting 100x space savings in some places!
328 }
329
330
331 // convert function for a directory record
332 void convert_dir(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
333
334         // the key is a string
335         out_key->size = in_key->size;
336         out_key->data = realloc(out_key->data, out_key->size);
337         memcpy(out_key->data, in_key->data, in_key->size);
338
339         // the data is also a string
340         out_data->size = in_data->size;
341         out_data->data = realloc(out_data->data, out_data->size);
342         memcpy(out_data->data, in_data->data, in_data->size);
343
344         // please excuse my friend, he isn't null terminated
345         printf("\033[32m\033[1mDirectory entry: %s -> %s\033[0m\n", (char *)out_key->data, (char *)out_data->data);
346 }
347
348
349 // convert function for a use table record
350 void convert_usetable(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
351
352         // the key is a string
353         out_key->size = in_key->size;
354         out_key->data = realloc(out_key->data, out_key->size);
355         memcpy(out_key->data, in_key->data, in_key->size);
356
357         // the data is a "struct UseTable"
358         struct UseTable_32 *use32 = (struct UseTable_32 *)in_data->data;
359         out_data->size = sizeof(struct UseTable);
360         out_data->data = realloc(out_data->data, out_data->size);
361         struct UseTable *use64 = (struct UseTable *)out_data->data;
362
363         // convert the data
364         strcpy(use64->ut_msgid,                         use32->ut_msgid);
365         use64->ut_timestamp             = (time_t)      use32->ut_timestamp;
366
367         // FIXME compress this record before sending it to the new database.  we are getting 100x space savings in some places!
368 }
369
370
371 // convert function for large message texts
372 void convert_bigmsgs(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) {
373
374         // The key is a packed long
375         int32_t in_msgnum;
376         long out_msgnum;
377         memcpy(&in_msgnum, in_key->data, sizeof(in_msgnum));
378         out_msgnum = (long)in_msgnum;
379
380         if (in_key->size != 4) {
381                 printf("\033[31m\033[1m *** SOURCE DATABASE IS NOT 32-BIT *** ABORTING *** \033[0m\n");
382                 abort();
383         }
384
385         // the data is binary-ish but has no packed integers
386         out_data->size = in_data->size;
387         out_data->data = realloc(out_data->data, out_data->size);
388         memcpy(out_data->data, in_data->data, in_data->size);
389
390         printf("\033[32m\033[1mBigmsg %ld , length %d\033[0m\n", out_msgnum, out_data->size);
391 }
392
393
394 void (*convert_functions[])(int which_cdb, DBT *in_key, DBT *in_data, DBT *out_key, DBT *out_data) = {
395         convert_msgmain,        // CDB_MSGMAIN
396         convert_users,          // CDB_USERS
397         convert_rooms,          // CDB_ROOMS
398         convert_floors,         // CDB_FLOORTAB
399         convert_msglists,       // CDB_MSGLISTS
400         convert_visits,         // CDB_VISIT
401         convert_dir,            // CDB_DIRECTORY
402         convert_usetable,       // CDB_USETABLE
403         convert_bigmsgs,        // CDB_BIGMSGS
404         null_function,          // CDB_FULLTEXT
405         null_function,          // CDB_EUIDINDEX
406         null_function,          // CDB_USERSBYNUMBER
407         null_function,          // CDB_EXTAUTH
408         null_function           // CDB_CONFIG
409 };
410
411
412 void convert_table(int which_cdb) {
413         int ret;
414         int compressed;
415         char dbfilename[32];
416
417         printf("\033[32m\033[1mConverting table %d\033[0m\n", which_cdb);
418
419         // shamelessly swiped from https://docs.oracle.com/database/bdb181/html/programmer_reference/am_cursor.html
420         DB *dbp;
421         DBC *dbcp;
422         DBT in_key, in_data, out_key, out_data, uncomp_data;
423         int num_rows = 0;
424
425         // create a database handle
426         ret = db_create(&dbp, dbenv, 0);
427         if (ret) {
428                 printf("db: db_create: %s\n", db_strerror(ret));
429                 printf("db: exit code %d\n", ret);
430                 exit(CTDLEXIT_DB);
431         }
432
433         // open the file
434         snprintf(dbfilename, sizeof dbfilename, "cdb.%02x", which_cdb);
435         printf("\033[33m\033[1mdb: opening %s\033[0m\n", dbfilename);
436         ret = dbp->open(dbp, NULL, dbfilename, NULL, DB_BTREE, 0, 0600);
437         if (ret) {
438                 printf("db: db_open: %s\n", db_strerror(ret));
439                 printf("db: exit code %d\n", ret);
440                 exit(CTDLEXIT_DB);
441         }
442
443         // Acquire a cursor
444         if ((ret = dbp->cursor(dbp, NULL, &dbcp, 0)) != 0) {
445                 printf("db: db_cursor: %s\n", db_strerror(ret));
446                 printf("db: exit code %d\n", ret);
447                 exit(CTDLEXIT_DB);
448         }
449
450         // Zero out these database keys
451         memset(&in_key, 0, sizeof(in_key));             // input
452         memset(&in_data, 0, sizeof(in_data));
453         memset(&out_key, 0, sizeof(out_key));           // output
454         memset(&out_data, 0, sizeof(out_data));
455         memset(&uncomp_data, 0, sizeof(uncomp_data));   // decompressed input (the key doesn't change)
456
457         // Walk through the database, calling convert functions as we go and clearing buffers before each call.
458         while (out_key.size = 0, out_data.size = 0, (ret = dbcp->get(dbcp, &in_key, &in_data, DB_NEXT)) == 0) {
459
460                 printf("DB: %02x ,  in_keylen: %3d ,  in_datalen: %d , dataptr: %lx\n", which_cdb, (int)in_key.size, (int)in_data.size, (long unsigned int)in_data.data);
461                 compressed = 0;
462
463                 // Do we need to decompress?
464                 static int32_t magic = COMPRESS_MAGIC;
465                 if ( (in_data.size >= sizeof(struct CtdlCompressHeader_32)) && (!memcmp(in_data.data, &magic, sizeof(magic))) ) {
466
467                         // yes, we need to decompress
468                         compressed = 1;
469                         struct CtdlCompressHeader_32 comp;
470                         memcpy(&comp, in_data.data, sizeof(struct CtdlCompressHeader_32));
471                         printf("\033[31m\033[1mDECOMPRESS: , decompressed_datalen=%d\033[0m\n", comp.uncompressed_len);
472
473                         uncomp_data.size = comp.uncompressed_len - sizeof(struct CtdlCompressHeader_32);
474                         uncomp_data.data = realloc(uncomp_data.data, uncomp_data.size);
475
476                         uLongf destLen;
477                         if (uncompress((Bytef *)uncomp_data.data, (uLongf *)&destLen, (const Bytef *)in_data.data+sizeof(struct CtdlCompressHeader_32), (uLong)in_data.size) != Z_OK) {
478                                 printf("db: uncompress() error\n");
479                                 exit(CTDLEXIT_DB);
480                         }
481                 }
482
483                 // Call the convert function registered to this table
484                 convert_functions[which_cdb](which_cdb, &in_key, (compressed ? &uncomp_data : &in_data), &out_key, &out_data);
485
486                 // write the converted record to the new database
487                 if (out_key.size > 0) {
488                         printf("DB: %02x , out_keylen: %3d , out_datalen: %d , dataptr: %lx\n", which_cdb, (int)out_key.size, (int)out_data.size, (long unsigned int)out_data.data);
489
490                         // Knowing the total number of rows isn't critical to the program.  It's just for the user to know.
491                         ++num_rows;
492                 }
493         }
494
495         if (ret != DB_NOTFOUND) {
496                 printf("db: db_get: %s\n", db_strerror(ret));
497                 printf("db: exit code %d\n", ret);
498                 exit(CTDLEXIT_DB);
499         }
500
501         printf("%d rows\n", num_rows);
502
503         // free any leftover out_data pointers
504         free(out_key.data);
505         free(out_data.data);
506         free(uncomp_data.data);
507
508         // Flush the logs...
509         //printf("\033[33m\033[1mdb: flushing the database logs\033[0m\n");
510         //if ((ret = dbenv->log_flush(dbenv, NULL))) {
511                 //printf("db: log_flush: %s\n", db_strerror(ret));
512         //}
513
514         // ...and close the database (table)
515         printf("\033[33m\033[1mdb: closing database %02x\033[0m\n", which_cdb);
516         ret = dbp->close(dbp, 0);
517         if (ret) {
518                 printf("db: db_close: %s\n", db_strerror(ret));
519         }
520
521 }
522
523
524 int main(int argc, char **argv) {
525         char *src_dir = NULL;
526         int confirmed = 0;
527
528         // Check to make sure we're running on the target 64-bit system
529         if (sizeof(void *) != 8) {
530                 fprintf(stderr, "%s: this is a %ld-bit system.\n", argv[0], sizeof(void *)*8);
531                 fprintf(stderr, "%s: you must run this on a 64-bit system, onto which a 32-bit database has been copied.\n", argv[0]);
532                 exit(1);
533         }
534
535         // Parse command line
536         int a;
537         while ((a = getopt(argc, argv, "s:d:y")) != EOF) {
538                 switch (a) {
539                 case 's':
540                         src_dir = optarg;
541                         break;
542                 case 'y':
543                         confirmed = 1;
544                         break;
545                 default:
546                         fprintf(stderr, "%s: usage: %s -s source_dir -d dest_dir\n", argv[0], argv[0]);
547                         exit(2);
548                 }
549         }
550
551         // Warn the user
552         printf("------------------------------------------------------------------------\n");
553         printf("ctdl3264 converts a Citadel database written on a 32-bit system to one  \n");
554         printf("that can be run on a 64-bit system.  It is intended to be run OFFLINE.  \n");
555         printf("Neither the source nor the target data directories should be mounted by \n");
556         printf("a running Citadel server.  We guarantee data corruption if you do not   \n");
557         printf("observe this warning!  The source [-s] directory should contain a copy  \n");
558         printf("of the database from your 32-bit system.  The destination [-d] directory\n");
559         printf("should be empty and will receive your 64-bit database.                  \n");
560         printf("------------------------------------------------------------------------\n");
561         printf("     Source 32-bit directory: %s\n", src_dir);
562         printf("Destination 64-bit directory: %s\n", "FIXME");
563         printf("------------------------------------------------------------------------\n");
564
565         if (confirmed == 1) {
566                 printf("You have specified the [-y] flag, so processing will continue.\n");
567         }
568         else {
569                 printf("Please consult the documentation to learn how to proceed.\n");
570                 exit(0);
571         }
572
573         open_dbenv(src_dir);
574         for (int i = 0; i < MAXCDB; ++i) {
575                 convert_table(i);
576         }
577         close_dbenv();
578
579         exit(0);
580 }