summaryrefslogtreecommitdiffstats
path: root/src/libutil/sqlite_utils.c
blob: 8aeb5982b7c0758716a733190a5e1da8eb8b96cc (plain)
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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
/*-
 * Copyright 2016 Vsevolod Stakhov
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#include "config.h"
#include "libserver/logger.h"
#include "libutil/sqlite_utils.h"
#include "unix-std.h"


static GQuark
rspamd_sqlite3_quark(void)
{
	return g_quark_from_static_string("rspamd-sqlite3");
}

GArray *
rspamd_sqlite3_init_prstmt(sqlite3 *db,
						   struct rspamd_sqlite3_prstmt *init_stmt,
						   gint max_idx,
						   GError **err)
{
	gint i;
	GArray *res;
	struct rspamd_sqlite3_prstmt *nst;

	res = g_array_sized_new(FALSE, TRUE, sizeof(struct rspamd_sqlite3_prstmt),
							max_idx);
	g_array_set_size(res, max_idx);

	for (i = 0; i < max_idx; i++) {
		nst = &g_array_index(res, struct rspamd_sqlite3_prstmt, i);
		memcpy(nst, &init_stmt[i], sizeof(*nst));

		if (sqlite3_prepare_v2(db, init_stmt[i].sql, -1,
							   &nst->stmt, NULL) != SQLITE_OK) {
			g_set_error(err, rspamd_sqlite3_quark(),
						-1, "Cannot initialize prepared sql `%s`: %s",
						nst->sql, sqlite3_errmsg(db));
			rspamd_sqlite3_close_prstmt(db, res);

			return NULL;
		}
	}

	return res;
}

int rspamd_sqlite3_run_prstmt(rspamd_mempool_t *pool, sqlite3 *db, GArray *stmts,
							  gint idx, ...)
{
	gint retcode;
	va_list ap;
	sqlite3_stmt *stmt;
	gint i, rowid, nargs, j;
	gint64 len;
	gpointer p;
	struct rspamd_sqlite3_prstmt *nst;
	const char *argtypes;

	if (idx < 0 || idx >= (gint) stmts->len) {

		return -1;
	}

	nst = &g_array_index(stmts, struct rspamd_sqlite3_prstmt, idx);
	stmt = nst->stmt;

	g_assert(nst != NULL);

	msg_debug_pool("executing `%s`", nst->sql);
	argtypes = nst->args;
	sqlite3_clear_bindings(stmt);
	sqlite3_reset(stmt);
	va_start(ap, idx);
	nargs = 1;

	for (i = 0, rowid = 1; argtypes[i] != '\0'; i++) {
		switch (argtypes[i]) {
		case 'T':

			for (j = 0; j < nargs; j++, rowid++) {
				sqlite3_bind_text(stmt, rowid, va_arg(ap, const char *), -1,
								  SQLITE_STATIC);
			}

			nargs = 1;
			break;
		case 'V':
		case 'B':

			for (j = 0; j < nargs; j++, rowid++) {
				len = va_arg(ap, gint64);
				sqlite3_bind_text(stmt, rowid, va_arg(ap, const char *), len,
								  SQLITE_STATIC);
			}

			nargs = 1;
			break;
		case 'I':

			for (j = 0; j < nargs; j++, rowid++) {
				sqlite3_bind_int64(stmt, rowid, va_arg(ap, gint64));
			}

			nargs = 1;
			break;
		case 'S':

			for (j = 0; j < nargs; j++, rowid++) {
				sqlite3_bind_int(stmt, rowid, va_arg(ap, gint));
			}

			nargs = 1;
			break;
		case '*':
			nargs = va_arg(ap, gint);
			break;
		}
	}

	retcode = sqlite3_step(stmt);

	if (retcode == nst->result) {
		argtypes = nst->ret;

		for (i = 0; argtypes != NULL && argtypes[i] != '\0'; i++) {
			switch (argtypes[i]) {
			case 'T':
				*va_arg(ap, char **) = g_strdup(sqlite3_column_text(stmt, i));
				break;
			case 'I':
				*va_arg(ap, gint64 *) = sqlite3_column_int64(stmt, i);
				break;
			case 'S':
				*va_arg(ap, int *) = sqlite3_column_int(stmt, i);
				break;
			case 'L':
				*va_arg(ap, gint64 *) = sqlite3_last_insert_rowid(db);
				break;
			case 'B':
				len = sqlite3_column_bytes(stmt, i);
				g_assert(len >= 0);
				p = g_malloc(len);
				memcpy(p, sqlite3_column_blob(stmt, i), len);
				*va_arg(ap, gint64 *) = len;
				*va_arg(ap, gpointer *) = p;
				break;
			}
		}

		if (!(nst->flags & RSPAMD_SQLITE3_STMT_MULTIPLE)) {
			sqlite3_clear_bindings(stmt);
			sqlite3_reset(stmt);
		}

		va_end(ap);

		return SQLITE_OK;
	}
	else if (retcode != SQLITE_DONE && retcode != SQLITE_OK && retcode != SQLITE_ROW) {
		msg_warn_pool("failed to execute query %s: %d, %s", nst->sql,
					  retcode, sqlite3_errmsg(db));
	}

	if (!(nst->flags & RSPAMD_SQLITE3_STMT_MULTIPLE)) {
		sqlite3_clear_bindings(stmt);
		sqlite3_reset(stmt);
	}

	va_end(ap);

	return retcode;
}

void rspamd_sqlite3_close_prstmt(sqlite3 *db, GArray *stmts)
{
	guint i;
	struct rspamd_sqlite3_prstmt *nst;

	for (i = 0; i < stmts->len; i++) {
		nst = &g_array_index(stmts, struct rspamd_sqlite3_prstmt, i);
		if (nst->stmt != NULL) {
			sqlite3_finalize(nst->stmt);
		}
	}

	g_array_free(stmts, TRUE);

	return;
}

static gboolean
rspamd_sqlite3_wait(rspamd_mempool_t *pool, const gchar *lock)
{
	gint fd;
	pid_t pid;
	gssize r;
	struct timespec sleep_ts = {
		.tv_sec = 0,
		.tv_nsec = 1000000};

	while ((fd = open(lock, O_WRONLY | O_CREAT | O_EXCL, 00600)) == -1) {
		if (errno != EBUSY && errno != EEXIST) {
			msg_err_pool_check("cannot open lock file %s: %s", lock,
							   strerror(errno));

			return FALSE;
		}

		fd = open(lock, O_RDONLY);

		if (fd == -1) {
			msg_err_pool_check("cannot open lock file %s: %s", lock,
							   strerror(errno));

			return FALSE;
		}

		r = read(fd, &pid, sizeof(pid));

		if (r != sizeof(pid)) {
			msg_warn_pool_check("stale lock file %s, removing", lock);
			unlink(lock);
			close(fd);

			return TRUE;
		}

		/* Now check for process existence */
		if (pid == getpid()) {
			msg_warn_pool_check("lock file %s, belongs to me, removing", lock);
			unlink(lock);
			close(fd);

			return TRUE;
		}
		else if (kill(pid, 0) == -1) {
			if (errno == ESRCH) {
				/* Process is already dead */
				msg_warn_pool_check("stale lock file %s from pid: %P, removing",
									lock, pid);
				unlink(lock);
				close(fd);

				return TRUE;
			}
		}

		close(fd);

		if (nanosleep(&sleep_ts, NULL) == -1 && errno != EINTR) {
			msg_err_pool_check("cannot sleep open lock file %s: %s", lock,
							   strerror(errno));

			return FALSE;
		}
	}

	unlink(lock);
	close(fd);

	return TRUE;
}

#define RSPAMD_SQLITE_MMAP_LIMIT 268435456
#define RSPAMD_SQLITE_CACHE_SIZE 262144

sqlite3 *
rspamd_sqlite3_open_or_create(rspamd_mempool_t *pool, const gchar *path, const gchar *create_sql, guint version, GError **err)
{
	sqlite3 *sqlite;
	gint rc, flags, lock_fd;
	gchar lock_path[PATH_MAX], dbdir[PATH_MAX], *pdir;
	static const char sqlite_wal[] =
		"PRAGMA journal_mode=\"wal\";"
		"PRAGMA wal_autocheckpoint = 16;"
		"PRAGMA journal_size_limit = 1536;",
					  exclusive_lock_sql[] = "PRAGMA locking_mode=\"exclusive\";",

					  fsync_sql[] = "PRAGMA synchronous=\"NORMAL\";",

					  foreign_keys[] = "PRAGMA foreign_keys=\"ON\";",

#if defined(__LP64__) || defined(_LP64)
					  enable_mmap[] = "PRAGMA mmap_size=" G_STRINGIFY(RSPAMD_SQLITE_MMAP_LIMIT) ";",
#endif

					  other_pragmas[] = "PRAGMA read_uncommitted=\"ON\";"
										"PRAGMA cache_size=" G_STRINGIFY(RSPAMD_SQLITE_CACHE_SIZE) ";",
					  db_version[] = "PRAGMA user_version;";
	gboolean create = FALSE, has_lock = FALSE;

	flags = SQLITE_OPEN_READWRITE;
#ifdef SQLITE_OPEN_SHAREDCACHE
	flags |= SQLITE_OPEN_SHAREDCACHE;
#endif
#ifdef SQLITE_OPEN_WAL
	flags |= SQLITE_OPEN_WAL;
#endif

	rspamd_strlcpy(dbdir, path, sizeof(dbdir));
	pdir = dirname(dbdir);

	if (access(pdir, W_OK) == -1) {
		g_set_error(err, rspamd_sqlite3_quark(),
					errno, "cannot open sqlite directory %s: %s",
					pdir, strerror(errno));

		return NULL;
	}

	rspamd_snprintf(lock_path, sizeof(lock_path), "%s.lock", path);

	if (access(path, R_OK) == -1) {
		flags |= SQLITE_OPEN_CREATE;
		create = TRUE;
	}


	rspamd_snprintf(lock_path, sizeof(lock_path), "%s.lock", path);
	lock_fd = open(lock_path, O_WRONLY | O_CREAT | O_EXCL, 00600);

	if (lock_fd == -1) {
		if (errno == EEXIST || errno == EBUSY) {
			msg_debug_pool_check("checking %s to wait for db being initialized", lock_path);

			if (!rspamd_sqlite3_wait(pool, lock_path)) {
				g_set_error(err, rspamd_sqlite3_quark(),
							errno, "cannot create sqlite file %s: %s",
							path, strerror(errno));

				return NULL;
			}


			/* At this point we have database created */
			create = FALSE;
			has_lock = FALSE;
		}
		else {
			g_set_error(err, rspamd_sqlite3_quark(),
						errno, "cannot lock sqlite file %s: %s",
						path, strerror(errno));
		}
	}
	else {
		pid_t myself = getpid();
		msg_debug_pool_check("locking %s to block other processes", lock_path);
		(void) write(lock_fd, &myself, sizeof(myself));

		g_assert(rspamd_file_lock(lock_fd, FALSE));
		has_lock = TRUE;
	}

	if ((rc = sqlite3_open_v2(path, &sqlite,
							  flags, NULL)) != SQLITE_OK) {
#if SQLITE_VERSION_NUMBER >= 3008000
		g_set_error(err, rspamd_sqlite3_quark(),
					rc, "cannot open sqlite db %s: %s",
					path, sqlite3_errstr(rc));
#else
		g_set_error(err, rspamd_sqlite3_quark(),
					rc, "cannot open sqlite db %s: %d",
					path, rc);
#endif

		if (has_lock && lock_fd != -1) {
			msg_debug_pool_check("removing lock from %s", lock_path);
			rspamd_file_unlock(lock_fd, FALSE);
			unlink(lock_path);
			close(lock_fd);
		}

		return NULL;
	}

	if (create && has_lock) {
		while ((rc = sqlite3_exec(sqlite, sqlite_wal, NULL, NULL, NULL)) != SQLITE_OK) {
			if (rc == SQLITE_BUSY) {
				struct timespec sleep_ts = {
					.tv_sec = 0,
					.tv_nsec = 1000000};

				nanosleep(&sleep_ts, NULL);

				continue;
			}

			msg_warn_pool_check("WAL mode is not supported (%s), locking issues might occur",
								sqlite3_errmsg(sqlite));
			break;
		}

		if (sqlite3_exec(sqlite, exclusive_lock_sql, NULL, NULL, NULL) != SQLITE_OK) {
			msg_warn_pool_check("cannot exclusively lock database to create schema: %s",
								sqlite3_errmsg(sqlite));
		}

		if (create_sql) {
			while ((rc = sqlite3_exec(sqlite, create_sql, NULL, NULL, NULL)) != SQLITE_OK) {
				if (rc == SQLITE_BUSY) {
					struct timespec sleep_ts = {
						.tv_sec = 0,
						.tv_nsec = 1000000};

					nanosleep(&sleep_ts, NULL);

					continue;
				}

				g_set_error(err, rspamd_sqlite3_quark(),
							-1, "cannot execute create sql `%s`: %s",
							create_sql, sqlite3_errmsg(sqlite));
				sqlite3_close(sqlite);
				rspamd_file_unlock(lock_fd, FALSE);
				unlink(lock_path);
				if (lock_fd != -1) {
					close(lock_fd);
				}

				return NULL;
			}
		}

		sqlite3_close(sqlite);

		/* Reopen in normal mode */
		msg_debug_pool_check("reopening %s in normal mode", path);
		flags &= ~SQLITE_OPEN_CREATE;

		if ((rc = sqlite3_open_v2(path, &sqlite,
								  flags, NULL)) != SQLITE_OK) {
#if SQLITE_VERSION_NUMBER >= 3008000
			g_set_error(err, rspamd_sqlite3_quark(),
						rc, "cannot open sqlite db after creation %s: %s",
						path, sqlite3_errstr(rc));
#else
			g_set_error(err, rspamd_sqlite3_quark(),
						rc, "cannot open sqlite db after creation %s: %d",
						path, rc);
#endif
			rspamd_file_unlock(lock_fd, FALSE);
			unlink(lock_path);

			if (lock_fd != -1) {
				close(lock_fd);
			}

			return NULL;
		}
	}
	else if (has_lock && version > 0) {
		/* Check user version */
		sqlite3_stmt *stmt = NULL;
		guint32 db_ver;
		GString *new_ver_sql;

		if (sqlite3_prepare(sqlite, db_version, -1, &stmt, NULL) != SQLITE_OK) {
			msg_warn_pool_check("Cannot get user version pragma: %s",
								sqlite3_errmsg(sqlite));
		}
		else {
			if (sqlite3_step(stmt) != SQLITE_ROW) {
				msg_warn_pool_check("Cannot get user version pragma, step failed: %s",
									sqlite3_errmsg(sqlite));
				sqlite3_finalize(stmt);
			}
			else {
				db_ver = sqlite3_column_int(stmt, 0);
				sqlite3_reset(stmt);
				sqlite3_finalize(stmt);

				if (version > db_ver) {
					msg_warn_pool_check("Database version %ud is less than "
										"desired version %ud, run create script",
										db_ver,
										version);

					if (create_sql) {
						if (sqlite3_exec(sqlite, create_sql, NULL, NULL, NULL) != SQLITE_OK) {
							g_set_error(err, rspamd_sqlite3_quark(),
										-1, "cannot execute create sql `%s`: %s",
										create_sql, sqlite3_errmsg(sqlite));
							sqlite3_close(sqlite);
							rspamd_file_unlock(lock_fd, FALSE);
							unlink(lock_path);
							if (lock_fd != -1) {
								close(lock_fd);
							}

							return NULL;
						}
					}

					new_ver_sql = g_string_new("PRAGMA user_version=");
					rspamd_printf_gstring(new_ver_sql, "%ud", version);

					if (sqlite3_exec(sqlite, new_ver_sql->str, NULL, NULL, NULL) != SQLITE_OK) {
						g_set_error(err, rspamd_sqlite3_quark(),
									-1, "cannot execute update version sql `%s`: %s",
									new_ver_sql->str, sqlite3_errmsg(sqlite));
						sqlite3_close(sqlite);
						rspamd_file_unlock(lock_fd, FALSE);
						unlink(lock_path);
						if (lock_fd != -1) {
							close(lock_fd);
						}

						g_string_free(new_ver_sql, TRUE);

						return NULL;
					}

					g_string_free(new_ver_sql, TRUE);
				}
				else if (db_ver > version) {
					msg_warn_pool_check("Database version %ud is more than "
										"desired version %ud, this could cause"
										" unexpected behaviour",
										db_ver,
										version);
				}
			}
		}
	}

	while ((rc = sqlite3_exec(sqlite, sqlite_wal, NULL, NULL, NULL)) != SQLITE_OK) {
		if (rc == SQLITE_BUSY) {
			struct timespec sleep_ts = {
				.tv_sec = 0,
				.tv_nsec = 1000000};

			nanosleep(&sleep_ts, NULL);

			continue;
		}

		msg_warn_pool_check("WAL mode is not supported (%s), locking issues might occur",
							sqlite3_errmsg(sqlite));
		break;
	}

	if (sqlite3_exec(sqlite, fsync_sql, NULL, NULL, NULL) != SQLITE_OK) {
		msg_warn_pool_check("cannot set synchronous: %s",
							sqlite3_errmsg(sqlite));
	}

	if ((rc = sqlite3_exec(sqlite, foreign_keys, NULL, NULL, NULL)) !=
		SQLITE_OK) {
		msg_warn_pool_check("cannot enable foreign keys: %s",
							sqlite3_errmsg(sqlite));
	}

#if defined(__LP64__) || defined(_LP64)
	if ((rc = sqlite3_exec(sqlite, enable_mmap, NULL, NULL, NULL)) != SQLITE_OK) {
		msg_warn_pool_check("cannot enable mmap: %s",
							sqlite3_errmsg(sqlite));
	}
#endif

	if ((rc = sqlite3_exec(sqlite, other_pragmas, NULL, NULL, NULL)) !=
		SQLITE_OK) {
		msg_warn_pool_check("cannot execute tuning pragmas: %s",
							sqlite3_errmsg(sqlite));
	}

	if (has_lock && lock_fd != -1) {
		msg_debug_pool_check("removing lock from %s", lock_path);
		rspamd_file_unlock(lock_fd, FALSE);
		unlink(lock_path);
		close(lock_fd);
	}

	return sqlite;
}

gboolean
rspamd_sqlite3_sync(sqlite3 *db, gint *wal_frames, gint *wal_checkpoints)
{
	gint wf = 0, wc = 0, mode;

#ifdef SQLITE_OPEN_WAL
#ifdef SQLITE_CHECKPOINT_TRUNCATE
	mode = SQLITE_CHECKPOINT_TRUNCATE;
#elif defined(SQLITE_CHECKPOINT_RESTART)
	mode = SQLITE_CHECKPOINT_RESTART;
#elif defined(SQLITE_CHECKPOINT_FULL)
	mode = SQLITE_CHECKPOINT_FULL;
#endif
	/* Perform wal checkpoint (might be long) */
	if (sqlite3_wal_checkpoint_v2(db,
								  NULL,
								  mode,
								  &wf,
								  &wc) != SQLITE_OK) {
		return FALSE;
	}
#endif

	if (wal_frames) {
		*wal_frames = wf;
	}
	if (wal_checkpoints) {
		*wal_checkpoints = wc;
	}

	return TRUE;
}