]> code.citadel.org Git - citadel.git/blob - citadel/utils/ctdlload.c
ctdlload: wrote the code to ingest dump lines
[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 // Ingest one line of dump data.  NOT REENTRANT
119 void ingest_one(char *line) {
120         static char last_cdb[16] = "";
121         char this_cdb[16];
122
123         // We are assuming that the lines of the dump file will generally be sorted by table.
124         // By remembering the last table we worked with, we can do close/open if the table changes.
125
126         extract_token(this_cdb, line, 0, '|', sizeof this_cdb);
127         if (strcmp(this_cdb, last_cdb)) {
128
129                 printf("Close %s\n", last_cdb);
130                 printf(" Open %s\n", this_cdb);
131
132                 strcpy(last_cdb, this_cdb);
133         }
134
135 }
136
137
138 // This is the loop that loads the dump data.  NOT REENTRANT
139 void ingest(void) {
140         static size_t line_alloc = 1;
141         static char *line;
142         static size_t line_len = 0;
143         char ch;
144
145         line = reallok(NULL, line_alloc);
146
147         do {
148                 line_len = 0;
149
150                 while (ch = getc(stdin), ((ch != '\n') && (ch > 0))) {
151                         if ((line_len+2) > line_alloc) {
152                                 line_alloc *= 2;
153                                 line = reallok(line, line_alloc);
154                         }
155                         line[line_len++] = ch;
156                         line[line_len] = 0;
157                 }
158         
159                 if (ch <= 0) {
160                         return;
161                 }
162
163                 if (line_len > 0) {
164                         ingest_one(line);
165                 }
166
167         } while (ch >= 0);
168 }
169
170
171 // Main entry point
172 int main(int argc, char **argv) {
173         char *dst_dir = NULL;
174         int confirmed = 0;
175         static DB_ENV *dst_dbenv;               // Source DB environment (global)
176
177         // Parse command line
178         int a;
179         while ((a = getopt(argc, argv, "h:d:y")) != EOF) {
180                 switch (a) {
181                 case 'h':
182                         dst_dir = optarg;
183                         break;
184                 case 'y':
185                         confirmed = 1;
186                         break;
187                 default:
188                         fprintf(stderr, "%s: usage: %s -s source_dir -d dest_dir\n", argv[0], argv[0]);
189                         exit(2);
190                 }
191         }
192
193         if (confirmed == 1) {
194                 fprintf(stderr,"You have specified the [-y] flag, so processing will continue.\n");
195         }
196         else {
197                 fprintf(stderr,"Please read [ https://www.citadel.org/ctdlload.html ] to learn how to proceed.\n");
198                 exit(0);
199         }
200
201         char cmd[1024];
202         snprintf(cmd, sizeof cmd, "rm -fv %s/cdb.* %s/log.*", dst_dir, dst_dir);
203         system(cmd);
204
205         dst_dbenv = open_dbenv(dst_dir);
206         ingest();
207         close_dbenv(dst_dbenv);
208
209         exit(0);
210 }