]> code.citadel.org Git - citadel.git/blob - citadel/utils/ctdlload.c
ctdlload: load msgtext
[citadel.git] / citadel / utils / ctdlload.c
1 // Don't run this.  It doesn't work and if you try to run it you will immediately die.
2 //
3 // Copyright (c) 2023 by Art Cancro citadel.org
4 //
5 // This program is open source software.  Use, duplication, or disclosure
6 // is subject to the terms of the GNU General Public License, version 3.
7
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <ctype.h>
11 #include <stdio.h>
12 #include <signal.h>
13 #include <sys/types.h>
14 #include <sys/socket.h>
15 #include <sys/un.h>
16 #include <netdb.h>
17 #include <string.h>
18 #include <pwd.h>
19 #include <errno.h>
20 #include <stdarg.h>
21 #include <limits.h>
22 #include <libcitadel.h>
23 #include <zlib.h>
24 #include <db.h>
25 #include "../server/sysdep.h"
26 #include "../server/citadel_defs.h"
27 #include "../server/server.h"
28 #include "../server/citadel_dirs.h"
29
30
31 // Wrapper for realloc() that crashes and burns if the call fails.
32 void *reallok(void *ptr, size_t size) {
33         void *p = realloc(ptr, size);
34         if (!p) {
35                 fprintf(stderr, "realloc() failed to resize %p to %ld bytes, error: %m\n", ptr, size);
36                 exit(1);
37         }
38         return p;
39 }
40
41
42 // Open a database environment
43 DB_ENV *open_dbenv(char *dirname) {
44
45         DB_ENV *dbenv = NULL;
46
47         int ret;
48         int i;
49         u_int32_t flags = 0;
50         int dbversion_major, dbversion_minor, dbversion_patch;
51
52         fprintf(stderr, "db: open_dbenv() starting\n"
53                 "db:    Linked zlib: %s\n"
54                 "db: Compiled libdb: %s\n"
55                 "db:   Linked libdb: %s\n",
56                 zlibVersion(),
57                 DB_VERSION_STRING,
58                 db_version(&dbversion_major, &dbversion_minor, &dbversion_patch)
59         );
60
61         // Create synthetic integer version numbers and compare them.
62         // Never run with a libdb older than the one with which it was compiled.
63         int compiled_db_version = ( (DB_VERSION_MAJOR * 1000000) + (DB_VERSION_MINOR * 1000) + (DB_VERSION_PATCH) );
64         int linked_db_version = ( (dbversion_major * 1000000) + (dbversion_minor * 1000) + (dbversion_patch) );
65         if (compiled_db_version > linked_db_version) {
66                 fprintf(stderr, "db: ctdlload is running with a version of libdb older than the one with which it was compiled.\n"
67                         "db: This is an invalid configuration.  ctdlload will now exit to prevent data loss.");
68                 exit(CTDLEXIT_DB);
69         }
70
71         fprintf(stderr,"db: Setting up DB environment\n");
72         ret = db_env_create(&dbenv, 0);
73         if (ret) {
74                 fprintf(stderr,"db: db_env_create: %s\n", db_strerror(ret));
75                 fprintf(stderr,"db: exit code %d\n", ret);
76                 exit(CTDLEXIT_DB);
77         }
78
79         // We want to specify the shared memory buffer pool cachesize, but everything else is the default.
80         ret = dbenv->set_cachesize(dbenv, 0, 64 * 1024, 0);
81         if (ret) {
82                 fprintf(stderr,"db: set_cachesize: %s\n", db_strerror(ret));
83                 dbenv->close(dbenv, 0);
84                 fprintf(stderr,"db: exit code %d\n", ret);
85                 exit(CTDLEXIT_DB);
86         }
87
88         if ((ret = dbenv->set_lk_detect(dbenv, DB_LOCK_DEFAULT))) {
89                 fprintf(stderr,"db: set_lk_detect: %s\n", db_strerror(ret));
90                 dbenv->close(dbenv, 0);
91                 fprintf(stderr,"db: exit code %d\n", ret);
92                 exit(CTDLEXIT_DB);
93         }
94
95         flags = DB_CREATE | DB_INIT_MPOOL | DB_PRIVATE | DB_INIT_LOG;
96         fprintf(stderr,"db: dbenv open(dir=%s, flags=%d)\n", dirname, flags);
97         ret = dbenv->open(dbenv, dirname, flags, 0);
98         if (ret) {
99                 fprintf(stderr,"db: dbenv->open: %s\n", db_strerror(ret));
100                 dbenv->close(dbenv, 0);
101                 fprintf(stderr,"db: exit code %d\n", ret);
102                 exit(CTDLEXIT_DB);
103         }
104
105         return(dbenv);
106 }
107
108
109 void close_dbenv(DB_ENV *dbenv) {
110         fprintf(stderr,"db: closing dbenv\n");
111         int ret = dbenv->close(dbenv, 0);
112         if (ret) {
113                 fprintf(stderr,"db: dbenv->close: %s\n", db_strerror(ret));
114         }
115 }
116
117
118 // Skeleton convert function
119 int convert_foo(char *line, DBT *out_key, DBT *out_data) {
120         return(0);
121 }
122
123
124 // Convert a "msgtext" record to a message on disk.   NOT THREADSAFE
125 int convert_msgtext(char *line, DBT *out_key, DBT *out_data) {
126
127         static char *b64_decoded_msg = NULL;
128         static size_t b64_decoded_alloc = 0;
129         long msgnum;
130         char *token;
131
132         token = strtok(line, "|");
133         msgnum = atol(strtok(NULL, "|"));
134         token = strtok(NULL, "|");
135
136         // The record key will be the message number
137         out_key->size = sizeof(long);
138         out_key->data = reallok(out_key->data, out_key->size);
139         memcpy(out_key->data, &msgnum, out_key->size);
140
141         // The record data will be the decoded message text.
142         // We are allocating more memory than we need, but BDB will only write the number of bytes we tell it to.
143         out_data->data = reallok(out_data->data, strlen(token));
144         out_data->size = CtdlDecodeBase64(out_data->data, token, strlen(token));
145         return(1);
146 }
147
148
149 // Ingest one line of dump data.  NOT REENTRANT
150 void ingest_one(char *line, DB_ENV *dst_dbenv) {
151
152         static int previous_cdb = -1 ;
153         static int current_cdb = -1 ;
154         static DB *dst_dbp;
155         char record_type[32];
156         int ret;
157         char dbfilename[32];
158         int row_was_good;
159         DBT out_key, out_data;
160
161         // We are assuming that the lines of the dump file will generally be sorted by table.
162         // By remembering the last table we worked with, we can do close/open if the table changes.
163
164         // Identify the record type we are currently working with
165         extract_token(record_type, line, 0, '|', sizeof record_type);
166         if (!strcasecmp(record_type, "msgtext"))                current_cdb = CDB_MSGMAIN;
167         else if (!strcasecmp(record_type, "msgmeta"))           current_cdb = CDB_MSGMAIN;
168         else if (!strcasecmp(record_type, "user"))              current_cdb = CDB_USERS;
169         else if (!strcasecmp(record_type, "room"))              current_cdb = CDB_ROOMS;
170         else if (!strcasecmp(record_type, "floor"))             current_cdb = CDB_FLOORTAB;
171         else if (!strcasecmp(record_type, "msglist"))           current_cdb = CDB_MSGLISTS;
172         else if (!strcasecmp(record_type, "visit"))             current_cdb = CDB_VISIT;
173         else if (!strcasecmp(record_type, "dir"))               current_cdb = CDB_DIRECTORY;
174         else if (!strcasecmp(record_type, "use"))               current_cdb = CDB_USETABLE;
175         else if (!strcasecmp(record_type, "bigmsg"))            current_cdb = CDB_BIGMSGS;
176         else if (!strcasecmp(record_type, "euidindex"))         current_cdb = CDB_EUIDINDEX;
177         else if (!strcasecmp(record_type, "usersbynumber"))     current_cdb = CDB_USERSBYNUMBER;
178         else if (!strcasecmp(record_type, "config"))            current_cdb = CDB_CONFIG;
179         else                                                    current_cdb = -1 ;
180
181         if (current_cdb != previous_cdb) {
182                 if (previous_cdb >= 0) {
183                         fprintf(stderr, "Close %d\n", previous_cdb);
184                         ret = dst_dbp->close(dst_dbp, 0);
185                         if (ret) {
186                                 fprintf(stderr, "db: db_close: %s\n", db_strerror(ret));
187                         }
188                 }
189
190                 if (current_cdb >= 0) {
191                         fprintf(stderr, " Open %d\n", current_cdb);
192                         snprintf(dbfilename, sizeof dbfilename, "cdb.%02x", current_cdb);
193
194                         // create a database handle for the destination table
195                         ret = db_create(&dst_dbp, dst_dbenv, 0);
196                         if (ret) {
197                                 fprintf(stderr, "db: db_create: %s\n", db_strerror(ret));
198                                 fprintf(stderr, "db: exit code %d\n", ret);
199                                 exit(CTDLEXIT_DB);
200                         }
201                 
202                         // open the file containing the destination table
203                         ret = dst_dbp->open(dst_dbp, NULL, dbfilename, NULL, DB_BTREE, (DB_CREATE | DB_TRUNCATE), 0600);
204                         if (ret) {
205                                 fprintf(stderr, "db: db_open: %s\n", db_strerror(ret));
206                                 fprintf(stderr, "db: exit code %d\n", ret);
207                                 exit(CTDLEXIT_DB);
208                         }
209                 }
210
211                 previous_cdb = current_cdb;
212         }
213
214         // If we have a valid record type and a target database open, dispatch the correct record type handler.
215         memset(&out_key, 0, sizeof(DBT));
216         memset(&out_data, 0, sizeof(DBT));
217         row_was_good = 0;
218         if      (!strcasecmp(record_type, "msgtext"))           row_was_good = convert_msgtext(line, &out_key, &out_data);
219         else if (!strcasecmp(record_type, "msgmeta"))           row_was_good = convert_foo(line, &out_key, &out_data);
220         else if (!strcasecmp(record_type, "user"))              row_was_good = convert_foo(line, &out_key, &out_data);
221         else if (!strcasecmp(record_type, "room"))              row_was_good = convert_foo(line, &out_key, &out_data);
222         else if (!strcasecmp(record_type, "floor"))             row_was_good = convert_foo(line, &out_key, &out_data);
223         else if (!strcasecmp(record_type, "msglist"))           row_was_good = convert_foo(line, &out_key, &out_data);
224         else if (!strcasecmp(record_type, "visit"))             row_was_good = convert_foo(line, &out_key, &out_data);
225         else if (!strcasecmp(record_type, "dir"))               row_was_good = convert_foo(line, &out_key, &out_data);
226         else if (!strcasecmp(record_type, "use"))               row_was_good = convert_foo(line, &out_key, &out_data);
227         else if (!strcasecmp(record_type, "bigmsg"))            row_was_good = convert_foo(line, &out_key, &out_data);
228         else if (!strcasecmp(record_type, "euidindex"))         row_was_good = convert_foo(line, &out_key, &out_data);
229         else if (!strcasecmp(record_type, "usersbynumber"))     row_was_good = convert_foo(line, &out_key, &out_data);
230         else if (!strcasecmp(record_type, "config"))            row_was_good = convert_foo(line, &out_key, &out_data);
231         else                                                    row_was_good = 0;
232
233         if (row_was_good) {
234                 ret = dst_dbp->put(dst_dbp, NULL, &out_key, &out_data, 0);
235                 if (ret) {
236                         fprintf(stderr, "db: cdb_put(%d): %s", current_cdb, db_strerror(ret));
237                         exit(CTDLEXIT_DB);
238                 }
239         }
240
241         free(out_key.data);
242         free(out_data.data);
243 }
244
245
246 // This is the loop that loads the dump data.  NOT REENTRANT
247 void ingest(DB_ENV *dst_dbenv) {
248         static size_t line_alloc = 1;
249         static char *line;
250         static size_t line_len = 0;
251         char ch;
252
253         line = reallok(NULL, line_alloc);
254
255         do {
256                 line_len = 0;
257
258                 while (ch = getc(stdin), ((ch != '\n') && (ch > 0))) {
259                         if ((line_len+2) > line_alloc) {
260                                 line_alloc *= 2;
261                                 line = reallok(line, line_alloc);
262                         }
263                         line[line_len++] = ch;
264                         line[line_len] = 0;
265                 }
266         
267                 if (ch <= 0) {
268                         return;
269                 }
270
271                 if (line_len > 0) {
272                         ingest_one(line, dst_dbenv);
273                 }
274
275         } while (ch >= 0);
276 }
277
278
279 // Main entry point
280 int main(int argc, char **argv) {
281         char *dst_dir = NULL;
282         int confirmed = 0;
283         static DB_ENV *dst_dbenv;               // Source DB environment (global)
284
285         // Parse command line
286         int a;
287         while ((a = getopt(argc, argv, "h:y")) != EOF) {
288                 switch (a) {
289                 case 'h':
290                         dst_dir = optarg;
291                         break;
292                 case 'y':
293                         confirmed = 1;
294                         break;
295                 default:
296                         fprintf(stderr, "%s: usage: %s -h dest_dir [<dumpfile]\n", argv[0], argv[0]);
297                         exit(2);
298                 }
299         }
300
301         if (confirmed == 1) {
302                 fprintf(stderr,"You have specified the [-y] flag, so processing will continue.\n");
303         }
304         else {
305                 fprintf(stderr,"Please read [ https://www.citadel.org/ctdlload.html ] to learn how to proceed.\n");
306                 exit(0);
307         }
308
309         char cmd[1024];
310         snprintf(cmd, sizeof cmd, "rm -fv %s/cdb.* %s/log.*", dst_dir, dst_dir);
311         system(cmd);
312
313         dst_dbenv = open_dbenv(dst_dir);
314         ingest(dst_dbenv);
315         close_dbenv(dst_dbenv);
316
317         exit(0);
318 }