-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_sqlite.c
491 lines (418 loc) · 10.1 KB
/
table_sqlite.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
/*
* Copyright (c) 2013 Eric Faurot <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "compat.h"
#include <sys/tree.h>
#include <sys/types.h>
#include <ctype.h>
#include <fcntl.h>
#include <sqlite3.h>
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "dict.h"
#include "log.h"
#include "table_stdio.h"
#include "util.h"
enum {
SQL_ALIAS = 0,
SQL_DOMAIN,
SQL_CREDENTIALS,
SQL_NETADDR,
SQL_USERINFO,
SQL_SOURCE,
SQL_MAILADDR,
SQL_ADDRNAME,
SQL_MAILADDRMAP,
SQL_MAX
};
#define DEFAULT_EXPIRE 60
#define DEFAULT_REFRESH 1000
static char *config;
static sqlite3 *db;
static sqlite3_stmt *statements[SQL_MAX];
static sqlite3_stmt *stmt_fetch_source;
static struct dict sources;
static void *source_iter;
static size_t source_refresh = 1000, source_ncall;
static int source_expire = 60;
static time_t source_update;
static int
table_sqlite_getconfstr(const char *key, const char *value, char **var)
{
if (*var) {
log_warnx("warn: duplicate %s %s", key, value);
free(*var);
}
if ((*var = strdup(value)) == NULL) {
log_warn("warn: strdup");
return -1;
}
return 0;
}
static sqlite3_stmt *
table_sqlite_prepare_stmt(sqlite3 *_db, const char *query, int ncols)
{
sqlite3_stmt *stmt;
if (sqlite3_prepare_v2(_db, query, -1, &stmt, 0) != SQLITE_OK) {
log_warnx("warn: sqlite3_prepare_v2: %s", sqlite3_errmsg(_db));
goto end;
}
if (sqlite3_column_count(stmt) != ncols) {
log_warnx("warn: columns: invalid columns count for query: %s", query);
goto end;
}
return stmt;
end:
sqlite3_finalize(stmt);
return NULL;
}
static int
table_sqlite_update(void)
{
static const struct {
const char *name;
int cols;
} qspec[SQL_MAX] = {
{ "query_alias", 1 },
{ "query_domain", 1 },
{ "query_credentials", 2 },
{ "query_netaddr", 1 },
{ "query_userinfo", 3 },
{ "query_source", 1 },
{ "query_mailaddr", 1 },
{ "query_addrname", 1 },
{ "query_mailaddrmap", 1 },
};
sqlite3 *_db;
sqlite3_stmt *_statements[SQL_MAX];
sqlite3_stmt *_stmt_fetch_source;
char *_query_fetch_source;
char *queries[SQL_MAX];
ssize_t flen;
size_t sz = 0, _source_refresh;
int _source_expire;
FILE *fp;
char *key, *value, *buf = NULL, *dbpath;
const char *e;
int i, ret;
long long ll;
dbpath = NULL;
_db = NULL;
memset(queries, 0, sizeof(queries));
memset(_statements, 0, sizeof(_statements));
_query_fetch_source = NULL;
_stmt_fetch_source = NULL;
_source_refresh = DEFAULT_REFRESH;
_source_expire = DEFAULT_EXPIRE;
ret = 0;
/* parse configuration */
if ((fp = fopen(config, "r")) == NULL) {
log_warn("warn: \"%s\"", config);
return 0;
}
while ((flen = getline(&buf, &sz, fp)) != -1) {
if (buf[flen - 1] == '\n')
buf[flen - 1] = '\0';
key = strip(buf);
if (*key == '\0' || *key == '#')
continue;
value = key;
strsep(&value, " \t:");
if (value) {
while (*value) {
if (!isspace((unsigned char)*value) &&
!(*value == ':' && isspace((unsigned char)*(value + 1))))
break;
++value;
}
if (*value == '\0')
value = NULL;
}
if (value == NULL) {
log_warnx("warn: missing value for key %s", key);
continue;
}
if (!strcmp("dbpath", key)) {
if (table_sqlite_getconfstr(key, value, &dbpath) == -1)
goto end;
continue;
}
if (!strcmp("fetch_source", key)) {
if (table_sqlite_getconfstr(key, value, &_query_fetch_source) == -1)
goto end;
continue;
}
if (!strcmp("fetch_source_expire", key)) {
e = NULL;
ll = strtonum(value, 0, INT_MAX, &e);
if (e) {
log_warnx("warn: bad value for %s: %s", key, e);
goto end;
}
_source_expire = ll;
continue;
}
if (!strcmp("fetch_source_refresh", key)) {
e = NULL;
ll = strtonum(value, 0, INT_MAX, &e);
if (e) {
log_warnx("warn: bad value for %s: %s", key, e);
goto end;
}
_source_refresh = ll;
continue;
}
for (i = 0; i < SQL_MAX; i++)
if (!strcmp(qspec[i].name, key))
break;
if (i == SQL_MAX) {
log_warnx("warn: bogus key %s", key);
continue;
}
if (queries[i]) {
log_warnx("warn: duplicate key %s", key);
continue;
}
if ((queries[i] = strdup(value)) == NULL) {
log_warnx("warn: strdup");
goto end;
}
}
/* set up db */
log_debug("debug: opening %s", dbpath);
if (sqlite3_open(dbpath, &_db) != SQLITE_OK) {
log_warnx("warn: open: %s", sqlite3_errmsg(_db));
goto end;
}
for (i = 0; i < SQL_MAX; i++) {
if (queries[i] == NULL)
continue;
if ((_statements[i] = table_sqlite_prepare_stmt(_db, queries[i], qspec[i].cols)) == NULL)
goto end;
}
if (_query_fetch_source &&
(_stmt_fetch_source = table_sqlite_prepare_stmt(_db, _query_fetch_source, 1)) == NULL)
goto end;
/* replace previous setup */
for (i = 0; i < SQL_MAX; i++) {
if (statements[i])
sqlite3_finalize(statements[i]);
statements[i] = _statements[i];
_statements[i] = NULL;
}
if (stmt_fetch_source)
sqlite3_finalize(stmt_fetch_source);
stmt_fetch_source = _stmt_fetch_source;
_stmt_fetch_source = NULL;
if (db)
sqlite3_close(_db);
db = _db;
_db = NULL;
source_update = 0; /* force update */
source_expire = _source_expire;
source_refresh = _source_refresh;
log_debug("debug: config successfully updated");
ret = 1;
end:
/* Cleanup */
for (i = 0; i < SQL_MAX; i++) {
if (_statements[i])
sqlite3_finalize(_statements[i]);
free(queries[i]);
}
if (_db)
sqlite3_close(_db);
free(dbpath);
free(_query_fetch_source);
free(buf);
fclose(fp);
return ret;
}
static sqlite3_stmt *
table_sqlite_query(const char *key, int service)
{
int i;
sqlite3_stmt *stmt = NULL;
for (i = 0; i < SQL_MAX; i++) {
if (service == (1 << i)) {
stmt = statements[i];
break;
}
}
if (stmt == NULL)
return NULL;
if (sqlite3_bind_text(stmt, 1, key, strlen(key), NULL) != SQLITE_OK) {
log_warnx("warn: sqlite3_bind_text: %s",
sqlite3_errmsg(db));
return NULL;
}
return stmt;
}
static int
table_sqlite_check(int service, struct dict *params, const char *key)
{
sqlite3_stmt *stmt;
int r;
stmt = table_sqlite_query(key, service);
if (stmt == NULL)
return -1;
r = sqlite3_step(stmt);
sqlite3_reset(stmt);
if (r == SQLITE_ROW)
return 1;
if (r == SQLITE_DONE)
return 0;
return -1;
}
static int
table_sqlite_lookup(int service, struct dict *params, const char *key, char *dst, size_t sz)
{
sqlite3_stmt *stmt;
const char *value;
int r, s;
stmt = table_sqlite_query(key, service);
if (stmt == NULL)
return -1;
s = sqlite3_step(stmt);
if (s == SQLITE_DONE) {
sqlite3_reset(stmt);
return 0;
}
if (s != SQLITE_ROW) {
log_warnx("warn: sqlite3_step: %s", sqlite3_errmsg(db));
sqlite3_reset(stmt);
return -1;
}
r = 1;
switch(service) {
case K_ALIAS:
case K_MAILADDRMAP:
memset(dst, 0, sz);
do {
value = sqlite3_column_text(stmt, 0);
if (dst[0] && strlcat(dst, ", ", sz) >= sz) {
log_warnx("warn: result too large");
r = -1;
break;
}
if (strlcat(dst, value, sz) >= sz) {
log_warnx("warn: result too large");
r = -1;
break;
}
s = sqlite3_step(stmt);
} while (s == SQLITE_ROW);
if (s != SQLITE_ROW && s != SQLITE_DONE) {
log_warnx("warn: sqlite3_step: %s", sqlite3_errmsg(db));
r = -1;
}
break;
case K_CREDENTIALS:
if (snprintf(dst, sz, "%s:%s", sqlite3_column_text(stmt, 0),
sqlite3_column_text(stmt, 1)) >= (ssize_t)sz) {
log_warnx("warn: result too large");
r = -1;
}
break;
case K_USERINFO:
if (snprintf(dst, sz, "%d:%d:%s", sqlite3_column_int(stmt, 0),
sqlite3_column_int(stmt, 1),
sqlite3_column_text(stmt, 2)) >= (ssize_t)sz) {
log_warnx("warn: result too large");
r = -1;
}
break;
case K_DOMAIN:
case K_NETADDR:
case K_SOURCE:
case K_MAILADDR:
case K_ADDRNAME:
if (strlcpy(dst, sqlite3_column_text(stmt, 0), sz) >= sz) {
log_warnx("warn: result too large");
r = -1;
}
break;
default:
log_warnx("warn: unknown service %d", service);
r = -1;
}
sqlite3_reset(stmt);
return r;
}
static int
table_sqlite_fetch(int service, struct dict *params, char *dst, size_t sz)
{
const char *k;
int s;
if (service != K_SOURCE)
return -1;
if (stmt_fetch_source == NULL)
return -1;
if (source_ncall < source_refresh &&
time(NULL) - source_update < source_expire)
goto fetch;
source_iter = NULL;
while (dict_poproot(&sources, NULL))
;
while ((s = sqlite3_step(stmt_fetch_source)) == SQLITE_ROW)
dict_set(&sources, sqlite3_column_text(stmt_fetch_source, 0), NULL);
if (s != SQLITE_DONE)
log_warnx("warn: sqlite3_step: %s", sqlite3_errmsg(db));
sqlite3_reset(stmt_fetch_source);
source_update = time(NULL);
source_ncall = 0;
fetch:
source_ncall += 1;
if (!dict_iter(&sources, &source_iter, &k, (void **)NULL)) {
source_iter = NULL;
if (!dict_iter(&sources, &source_iter, &k, (void **)NULL))
return 0;
}
if (strlcpy(dst, k, sz) >= sz)
return -1;
return 1;
}
int
main(int argc, char **argv)
{
int ch;
log_init(1);
log_setverbose(~0);
while ((ch = getopt(argc, argv, "")) != -1) {
switch (ch) {
default:
fatalx("bad option");
/* NOTREACHED */
}
}
argc -= optind;
argv += optind;
if (argc != 1)
fatalx("bogus argument(s)");
config = argv[0];
dict_init(&sources);
if (table_sqlite_update() == 0)
fatalx("error parsing config file");
table_api_on_update(table_sqlite_update);
table_api_on_check(table_sqlite_check);
table_api_on_lookup(table_sqlite_lookup);
table_api_on_fetch(table_sqlite_fetch);
table_api_dispatch();
return 0;
}