summaryrefslogtreecommitdiffstats
path: root/test/functional/timelog_custom_fields_visibility_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Merged r22746 from trunk to 5.0-stable (#40043).Marius Balteanu2024-02-271-1/+1
* Update copyright year to 2023 (#38141).Go MAEDA2023-01-011-1/+1
* Update copyright year in source files to 2022 (#36379).Go MAEDA2022-01-021-1/+1
* Update copyright year in source files to 2021 (#33069).Go MAEDA2021-03-251-1/+1
* Update copyright year in source files to 2020 (#33069).Go MAEDA2020-03-031-1/+1
* Code cleanup: RuboCop: Fix Performance/InefficientHashSearchGo MAEDA2019-09-031-1/+1
* Add missing fixtures to TimelogCustomFieldsVisibilityTest (#31999).Go MAEDA2019-09-031-2/+2
* Per role visibility settings for spent time custom fields (#31859).Go MAEDA2019-08-091-30/+55
* Update copyright year.Go MAEDA2019-05-251-1/+1
* Enable frozen_string_literal for some files under test directory (#26561).Go MAEDA2019-03-161-1/+1
* Add "frozen_string_literal: false" for all files (#26561).Go MAEDA2019-03-151-0/+2
* Test failure.Jean-Philippe Lang2018-12-131-2/+4
* Update copyright.Jean-Philippe Lang2017-06-251-1/+1
* Removes calls to #assert_template and #assigns in functional tests.Jean-Philippe Lang2016-07-211-2/+4
* Pass parameters with :params in controller tests.Jean-Philippe Lang2016-07-161-4/+14
* Adds our own class for controller tests.Jean-Philippe Lang2016-07-141-1/+1
* Updates copyright for 2016.Jean-Philippe Lang2016-03-131-1/+1
* Copyright update.Jean-Philippe Lang2015-01-111-1/+1
* Merged rails-4.1 branch (#14534).Jean-Philippe Lang2014-10-221-4/+4
* update copyright year (#15977)Toshi MARUYAMA2014-01-291-1/+1
* Rails4: replace deprecated find_all_by_* at TimelogCustomFieldsVisibilityTestToshi MARUYAMA2014-01-111-2/+2
* fix find_all_by_id(n1, n2) parameter at TimelogCustomFieldsVisibilityTestToshi MARUYAMA2014-01-111-1/+1
* code format cleanup TimelogCustomFieldsVisibilityTestToshi MARUYAMA2014-01-111-4/+9
* Role-based issue custom field visibility (#5037).Jean-Philippe Lang2013-07-131-0/+113
d='n256' href='#n256'>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 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
/*
 * Copyright 2024 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 "rspamd.h"
#include "sqlite3.h"
#include "libutil/sqlite_utils.h"
#include "libstat/stat_internal.h"
#include "libmime/message.h"
#include "lua/lua_common.h"
#include "unix-std.h"

#define SQLITE3_BACKEND_TYPE "sqlite3"
#define SQLITE3_SCHEMA_VERSION "1"
#define SQLITE3_DEFAULT "default"

struct rspamd_stat_sqlite3_db {
	sqlite3 *sqlite;
	char *fname;
	GArray *prstmt;
	lua_State *L;
	rspamd_mempool_t *pool;
	gboolean in_transaction;
	gboolean enable_users;
	gboolean enable_languages;
	int cbref_user;
	int cbref_language;
};

struct rspamd_stat_sqlite3_rt {
	struct rspamd_task *task;
	struct rspamd_stat_sqlite3_db *db;
	struct rspamd_statfile_config *cf;
	int64_t user_id;
	int64_t lang_id;
};

static const char *create_tables_sql =
	"BEGIN IMMEDIATE;"
	"CREATE TABLE tokenizer(data BLOB);"
	"CREATE TABLE users("
	"id INTEGER PRIMARY KEY,"
	"name TEXT,"
	"learns INTEGER"
	");"
	"CREATE TABLE languages("
	"id INTEGER PRIMARY KEY,"
	"name TEXT,"
	"learns INTEGER"
	");"
	"CREATE TABLE tokens("
	"token INTEGER NOT NULL,"
	"user INTEGER NOT NULL REFERENCES users(id) ON DELETE CASCADE,"
	"language INTEGER NOT NULL REFERENCES languages(id) ON DELETE CASCADE,"
	"value INTEGER,"
	"modified INTEGER,"
	"CONSTRAINT tid UNIQUE (token, user, language) ON CONFLICT REPLACE"
	");"
	"CREATE UNIQUE INDEX IF NOT EXISTS un ON users(name);"
	"CREATE INDEX IF NOT EXISTS tok ON tokens(token);"
	"CREATE UNIQUE INDEX IF NOT EXISTS ln ON languages(name);"
	"PRAGMA user_version=" SQLITE3_SCHEMA_VERSION ";"
	"INSERT INTO users(id, name, learns) VALUES(0, '" SQLITE3_DEFAULT "',0);"
	"INSERT INTO languages(id, name, learns) VALUES(0, '" SQLITE3_DEFAULT "',0);"
	"COMMIT;";

enum rspamd_stat_sqlite3_stmt_idx {
	RSPAMD_STAT_BACKEND_TRANSACTION_START_IM = 0,
	RSPAMD_STAT_BACKEND_TRANSACTION_START_DEF,
	RSPAMD_STAT_BACKEND_TRANSACTION_START_EXCL,
	RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT,
	RSPAMD_STAT_BACKEND_TRANSACTION_ROLLBACK,
	RSPAMD_STAT_BACKEND_GET_TOKEN_FULL,
	RSPAMD_STAT_BACKEND_GET_TOKEN_SIMPLE,
	RSPAMD_STAT_BACKEND_SET_TOKEN,
	RSPAMD_STAT_BACKEND_INC_LEARNS_LANG,
	RSPAMD_STAT_BACKEND_INC_LEARNS_USER,
	RSPAMD_STAT_BACKEND_DEC_LEARNS_LANG,
	RSPAMD_STAT_BACKEND_DEC_LEARNS_USER,
	RSPAMD_STAT_BACKEND_GET_LEARNS,
	RSPAMD_STAT_BACKEND_GET_LANGUAGE,
	RSPAMD_STAT_BACKEND_GET_USER,
	RSPAMD_STAT_BACKEND_INSERT_USER,
	RSPAMD_STAT_BACKEND_INSERT_LANGUAGE,
	RSPAMD_STAT_BACKEND_SAVE_TOKENIZER,
	RSPAMD_STAT_BACKEND_LOAD_TOKENIZER,
	RSPAMD_STAT_BACKEND_NTOKENS,
	RSPAMD_STAT_BACKEND_NLANGUAGES,
	RSPAMD_STAT_BACKEND_NUSERS,
	RSPAMD_STAT_BACKEND_MAX
};

static struct rspamd_sqlite3_prstmt prepared_stmts[RSPAMD_STAT_BACKEND_MAX] =
	{
		[RSPAMD_STAT_BACKEND_TRANSACTION_START_IM] = {
			.idx = RSPAMD_STAT_BACKEND_TRANSACTION_START_IM,
			.sql = "BEGIN IMMEDIATE TRANSACTION;",
			.args = "",
			.stmt = NULL,
			.result = SQLITE_DONE,
			.flags = 0,
			.ret = "",
		},
		[RSPAMD_STAT_BACKEND_TRANSACTION_START_DEF] = {.idx = RSPAMD_STAT_BACKEND_TRANSACTION_START_DEF, .sql = "BEGIN DEFERRED TRANSACTION;", .args = "", .stmt = NULL, .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_TRANSACTION_START_EXCL] = {.idx = RSPAMD_STAT_BACKEND_TRANSACTION_START_EXCL, .sql = "BEGIN EXCLUSIVE TRANSACTION;", .args = "", .stmt = NULL, .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT] = {.idx = RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT, .sql = "COMMIT;", .args = "", .stmt = NULL, .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_TRANSACTION_ROLLBACK] = {.idx = RSPAMD_STAT_BACKEND_TRANSACTION_ROLLBACK, .sql = "ROLLBACK;", .args = "", .stmt = NULL, .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_GET_TOKEN_FULL] = {.idx = RSPAMD_STAT_BACKEND_GET_TOKEN_FULL, .sql = "SELECT value FROM tokens "
																								  "LEFT JOIN languages ON tokens.language=languages.id "
																								  "LEFT JOIN users ON tokens.user=users.id "
																								  "WHERE token=?1 AND (users.id=?2) "
																								  "AND (languages.id=?3 OR languages.id=0);",
												.stmt = NULL,
												.args = "III",
												.result = SQLITE_ROW,
												.flags = 0,
												.ret = "I"},
		[RSPAMD_STAT_BACKEND_GET_TOKEN_SIMPLE] = {.idx = RSPAMD_STAT_BACKEND_GET_TOKEN_SIMPLE, .sql = "SELECT value FROM tokens WHERE token=?1", .stmt = NULL, .args = "I", .result = SQLITE_ROW, .flags = 0, .ret = "I"},
		[RSPAMD_STAT_BACKEND_SET_TOKEN] = {.idx = RSPAMD_STAT_BACKEND_SET_TOKEN, .sql = "INSERT OR REPLACE INTO tokens (token, user, language, value, modified) "
																						"VALUES (?1, ?2, ?3, ?4, strftime('%s','now'))",
										   .stmt = NULL,
										   .args = "IIII",
										   .result = SQLITE_DONE,
										   .flags = 0,
										   .ret = ""},
		[RSPAMD_STAT_BACKEND_INC_LEARNS_LANG] = {.idx = RSPAMD_STAT_BACKEND_INC_LEARNS_LANG, .sql = "UPDATE languages SET learns=learns + 1 WHERE id=?1", .stmt = NULL, .args = "I", .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_INC_LEARNS_USER] = {.idx = RSPAMD_STAT_BACKEND_INC_LEARNS_USER, .sql = "UPDATE users SET learns=learns + 1 WHERE id=?1", .stmt = NULL, .args = "I", .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_DEC_LEARNS_LANG] = {.idx = RSPAMD_STAT_BACKEND_DEC_LEARNS_LANG, .sql = "UPDATE languages SET learns=MAX(0, learns - 1) WHERE id=?1", .stmt = NULL, .args = "I", .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_DEC_LEARNS_USER] = {.idx = RSPAMD_STAT_BACKEND_DEC_LEARNS_USER, .sql = "UPDATE users SET learns=MAX(0, learns - 1) WHERE id=?1", .stmt = NULL, .args = "I", .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_GET_LEARNS] = {.idx = RSPAMD_STAT_BACKEND_GET_LEARNS, .sql = "SELECT SUM(MAX(0, learns)) FROM languages", .stmt = NULL, .args = "", .result = SQLITE_ROW, .flags = 0, .ret = "I"},
		[RSPAMD_STAT_BACKEND_GET_LANGUAGE] = {.idx = RSPAMD_STAT_BACKEND_GET_LANGUAGE, .sql = "SELECT id FROM languages WHERE name=?1", .stmt = NULL, .args = "T", .result = SQLITE_ROW, .flags = 0, .ret = "I"},
		[RSPAMD_STAT_BACKEND_GET_USER] = {.idx = RSPAMD_STAT_BACKEND_GET_USER, .sql = "SELECT id FROM users WHERE name=?1", .stmt = NULL, .args = "T", .result = SQLITE_ROW, .flags = 0, .ret = "I"},
		[RSPAMD_STAT_BACKEND_INSERT_USER] = {.idx = RSPAMD_STAT_BACKEND_INSERT_USER, .sql = "INSERT INTO users (name, learns) VALUES (?1, 0)", .stmt = NULL, .args = "T", .result = SQLITE_DONE, .flags = 0, .ret = "L"},
		[RSPAMD_STAT_BACKEND_INSERT_LANGUAGE] = {.idx = RSPAMD_STAT_BACKEND_INSERT_LANGUAGE, .sql = "INSERT INTO languages (name, learns) VALUES (?1, 0)", .stmt = NULL, .args = "T", .result = SQLITE_DONE, .flags = 0, .ret = "L"},
		[RSPAMD_STAT_BACKEND_SAVE_TOKENIZER] = {.idx = RSPAMD_STAT_BACKEND_SAVE_TOKENIZER, .sql = "INSERT INTO tokenizer(data) VALUES (?1)", .stmt = NULL, .args = "B", .result = SQLITE_DONE, .flags = 0, .ret = ""},
		[RSPAMD_STAT_BACKEND_LOAD_TOKENIZER] = {.idx = RSPAMD_STAT_BACKEND_LOAD_TOKENIZER, .sql = "SELECT data FROM tokenizer", .stmt = NULL, .args = "", .result = SQLITE_ROW, .flags = 0, .ret = "B"},
		[RSPAMD_STAT_BACKEND_NTOKENS] = {.idx = RSPAMD_STAT_BACKEND_NTOKENS, .sql = "SELECT COUNT(*) FROM tokens", .stmt = NULL, .args = "", .result = SQLITE_ROW, .flags = 0, .ret = "I"},
		[RSPAMD_STAT_BACKEND_NLANGUAGES] = {.idx = RSPAMD_STAT_BACKEND_NLANGUAGES, .sql = "SELECT COUNT(*) FROM languages", .stmt = NULL, .args = "", .result = SQLITE_ROW, .flags = 0, .ret = "I"},
		[RSPAMD_STAT_BACKEND_NUSERS] = {.idx = RSPAMD_STAT_BACKEND_NUSERS, .sql = "SELECT COUNT(*) FROM users", .stmt = NULL, .args = "", .result = SQLITE_ROW, .flags = 0, .ret = "I"}};

static GQuark
rspamd_sqlite3_backend_quark(void)
{
	return g_quark_from_static_string("sqlite3-stat-backend");
}

static int64_t
rspamd_sqlite3_get_user(struct rspamd_stat_sqlite3_db *db,
						struct rspamd_task *task, gboolean learn)
{
	int64_t id = 0; /* Default user is 0 */
	int rc, err_idx;
	const char *user = NULL;
	struct rspamd_task **ptask;
	lua_State *L = db->L;

	if (db->cbref_user == -1) {
		user = rspamd_task_get_principal_recipient(task);
	}
	else {
		/* Execute lua function to get userdata */
		lua_pushcfunction(L, &rspamd_lua_traceback);
		err_idx = lua_gettop(L);

		lua_rawgeti(L, LUA_REGISTRYINDEX, db->cbref_user);
		ptask = lua_newuserdata(L, sizeof(struct rspamd_task *));
		*ptask = task;
		rspamd_lua_setclass(L, rspamd_task_classname, -1);

		if (lua_pcall(L, 1, 1, err_idx) != 0) {
			msg_err_task("call to user extraction script failed: %s",
						 lua_tostring(L, -1));
		}
		else {
			user = rspamd_mempool_strdup(task->task_pool, lua_tostring(L, -1));
		}

		/* Result + error function */
		lua_settop(L, err_idx - 1);
	}


	if (user != NULL) {
		rspamd_mempool_set_variable(task->task_pool, "stat_user",
									(gpointer) user, NULL);

		rc = rspamd_sqlite3_run_prstmt(task->task_pool, db->sqlite, db->prstmt,
									   RSPAMD_STAT_BACKEND_GET_USER, user, &id);

		if (rc != SQLITE_OK && learn) {
			/* We need to insert a new user */
			if (!db->in_transaction) {
				rspamd_sqlite3_run_prstmt(task->task_pool, db->sqlite, db->prstmt,
										  RSPAMD_STAT_BACKEND_TRANSACTION_START_IM);
				db->in_transaction = TRUE;
			}

			rc = rspamd_sqlite3_run_prstmt(task->task_pool, db->sqlite, db->prstmt,
										   RSPAMD_STAT_BACKEND_INSERT_USER, user, &id);
		}
	}

	return id;
}

static int64_t
rspamd_sqlite3_get_language(struct rspamd_stat_sqlite3_db *db,
							struct rspamd_task *task, gboolean learn)
{
	int64_t id = 0; /* Default language is 0 */
	int rc, err_idx;
	unsigned int i;
	const char *language = NULL;
	struct rspamd_mime_text_part *tp;
	struct rspamd_task **ptask;
	lua_State *L = db->L;

	if (db->cbref_language == -1) {
		PTR_ARRAY_FOREACH(MESSAGE_FIELD(task, text_parts), i, tp)
		{

			if (tp->language != NULL && tp->language[0] != '\0' &&
				strcmp(tp->language, "en") != 0) {
				language = tp->language;
				break;
			}
		}
	}
	else {
		/* Execute lua function to get userdata */
		lua_pushcfunction(L, &rspamd_lua_traceback);
		err_idx = lua_gettop(L);

		lua_rawgeti(L, LUA_REGISTRYINDEX, db->cbref_language);
		ptask = lua_newuserdata(L, sizeof(struct rspamd_task *));
		*ptask = task;
		rspamd_lua_setclass(L, rspamd_task_classname, -1);

		if (lua_pcall(L, 1, 1, err_idx) != 0) {
			msg_err_task("call to language extraction script failed: %s",
						 lua_tostring(L, -1));
		}
		else {
			language = rspamd_mempool_strdup(task->task_pool,
											 lua_tostring(L, -1));
		}

		/* Result + error function */
		lua_settop(L, err_idx - 1);
	}


	/* XXX: We ignore multiple languages but default + extra */
	if (language != NULL) {
		rc = rspamd_sqlite3_run_prstmt(task->task_pool, db->sqlite, db->prstmt,
									   RSPAMD_STAT_BACKEND_GET_LANGUAGE, language, &id);

		if (rc != SQLITE_OK && learn) {
			/* We need to insert a new language */
			if (!db->in_transaction) {
				rspamd_sqlite3_run_prstmt(task->task_pool, db->sqlite, db->prstmt,
										  RSPAMD_STAT_BACKEND_TRANSACTION_START_IM);
				db->in_transaction = TRUE;
			}

			rc = rspamd_sqlite3_run_prstmt(task->task_pool, db->sqlite, db->prstmt,
										   RSPAMD_STAT_BACKEND_INSERT_LANGUAGE, language, &id);
		}
	}

	return id;
}

static struct rspamd_stat_sqlite3_db *
rspamd_sqlite3_opendb(rspamd_mempool_t *pool,
					  struct rspamd_statfile_config *stcf,
					  const char *path, const ucl_object_t *opts,
					  gboolean create, GError **err)
{
	struct rspamd_stat_sqlite3_db *bk;
	struct rspamd_stat_tokenizer *tokenizer;
	gpointer tk_conf;
	gsize sz = 0;
	int64_t sz64 = 0;
	char *tok_conf_encoded;
	int ret, ntries = 0;
	const int max_tries = 100;
	struct timespec sleep_ts = {
		.tv_sec = 0,
		.tv_nsec = 1000000};

	bk = g_malloc0(sizeof(*bk));
	bk->sqlite = rspamd_sqlite3_open_or_create(pool, path, create_tables_sql,
											   0, err);
	bk->pool = pool;

	if (bk->sqlite == NULL) {
		g_free(bk);

		return NULL;
	}

	bk->fname = g_strdup(path);

	bk->prstmt = rspamd_sqlite3_init_prstmt(bk->sqlite, prepared_stmts,
											RSPAMD_STAT_BACKEND_MAX, err);

	if (bk->prstmt == NULL) {
		sqlite3_close(bk->sqlite);
		g_free(bk);

		return NULL;
	}

	/* Check tokenizer configuration */
	if (rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
								  RSPAMD_STAT_BACKEND_LOAD_TOKENIZER, &sz64, &tk_conf) != SQLITE_OK ||
		sz64 == 0) {

		while ((ret = rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
												RSPAMD_STAT_BACKEND_TRANSACTION_START_EXCL)) == SQLITE_BUSY &&
			   ++ntries <= max_tries) {
			nanosleep(&sleep_ts, NULL);
		}

		msg_info_pool("absent tokenizer conf in %s, creating a new one",
					  bk->fname);
		g_assert(stcf->clcf->tokenizer != NULL);
		tokenizer = rspamd_stat_get_tokenizer(stcf->clcf->tokenizer->name);
		g_assert(tokenizer != NULL);
		tk_conf = tokenizer->get_config(pool, stcf->clcf->tokenizer, &sz);

		/* Encode to base32 */
		tok_conf_encoded = rspamd_encode_base32(tk_conf, sz, RSPAMD_BASE32_DEFAULT);

		if (rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
									  RSPAMD_STAT_BACKEND_SAVE_TOKENIZER,
									  (int64_t) strlen(tok_conf_encoded),
									  tok_conf_encoded) != SQLITE_OK) {
			sqlite3_close(bk->sqlite);
			g_free(bk);
			g_free(tok_conf_encoded);

			return NULL;
		}

		rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
								  RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT);
		g_free(tok_conf_encoded);
	}
	else {
		g_free(tk_conf);
	}

	return bk;
}

gpointer
rspamd_sqlite3_init(struct rspamd_stat_ctx *ctx,
					struct rspamd_config *cfg,
					struct rspamd_statfile *st)
{
	struct rspamd_classifier_config *clf = st->classifier->cfg;
	struct rspamd_statfile_config *stf = st->stcf;
	const ucl_object_t *filenameo, *lang_enabled, *users_enabled;
	const char *filename, *lua_script;
	struct rspamd_stat_sqlite3_db *bk;
	GError *err = NULL;

	filenameo = ucl_object_lookup(stf->opts, "filename");
	if (filenameo == NULL || ucl_object_type(filenameo) != UCL_STRING) {
		filenameo = ucl_object_lookup(stf->opts, "path");
		if (filenameo == NULL || ucl_object_type(filenameo) != UCL_STRING) {
			msg_err_config("statfile %s has no filename defined", stf->symbol);
			return NULL;
		}
	}

	filename = ucl_object_tostring(filenameo);

	if ((bk = rspamd_sqlite3_opendb(cfg->cfg_pool, stf, filename,
									stf->opts, TRUE, &err)) == NULL) {
		msg_err_config("cannot open sqlite3 db %s: %e", filename, err);
		g_error_free(err);
		return NULL;
	}

	bk->L = cfg->lua_state;

	users_enabled = ucl_object_lookup_any(clf->opts, "per_user",
										  "users_enabled", NULL);
	if (users_enabled != NULL) {
		if (ucl_object_type(users_enabled) == UCL_BOOLEAN) {
			bk->enable_users = ucl_object_toboolean(users_enabled);
			bk->cbref_user = -1;
		}
		else if (ucl_object_type(users_enabled) == UCL_STRING) {
			lua_script = ucl_object_tostring(users_enabled);

			if (luaL_dostring(cfg->lua_state, lua_script) != 0) {
				msg_err_config("cannot execute lua script for users "
							   "extraction: %s",
							   lua_tostring(cfg->lua_state, -1));
			}
			else {
				if (lua_type(cfg->lua_state, -1) == LUA_TFUNCTION) {
					bk->enable_users = TRUE;
					bk->cbref_user = luaL_ref(cfg->lua_state,
											  LUA_REGISTRYINDEX);
				}
				else {
					msg_err_config("lua script must return "
								   "function(task) and not %s",
								   lua_typename(cfg->lua_state, lua_type(
																	cfg->lua_state, -1)));
				}
			}
		}
	}
	else {
		bk->enable_users = FALSE;
	}

	lang_enabled = ucl_object_lookup_any(clf->opts,
										 "per_language", "languages_enabled", NULL);

	if (lang_enabled != NULL) {
		if (ucl_object_type(lang_enabled) == UCL_BOOLEAN) {
			bk->enable_languages = ucl_object_toboolean(lang_enabled);
			bk->cbref_language = -1;
		}
		else if (ucl_object_type(lang_enabled) == UCL_STRING) {
			lua_script = ucl_object_tostring(lang_enabled);

			if (luaL_dostring(cfg->lua_state, lua_script) != 0) {
				msg_err_config(
					"cannot execute lua script for languages "
					"extraction: %s",
					lua_tostring(cfg->lua_state, -1));
			}
			else {
				if (lua_type(cfg->lua_state, -1) == LUA_TFUNCTION) {
					bk->enable_languages = TRUE;
					bk->cbref_language = luaL_ref(cfg->lua_state,
												  LUA_REGISTRYINDEX);
				}
				else {
					msg_err_config("lua script must return "
								   "function(task) and not %s",
								   lua_typename(cfg->lua_state,
												lua_type(cfg->lua_state, -1)));
				}
			}
		}
	}
	else {
		bk->enable_languages = FALSE;
	}

	if (bk->enable_languages) {
		msg_info_config("enable per language statistics for %s",
						stf->symbol);
	}

	if (bk->enable_users) {
		msg_info_config("enable per users statistics for %s",
						stf->symbol);
	}


	return (gpointer) bk;
}

void rspamd_sqlite3_close(gpointer p)
{
	struct rspamd_stat_sqlite3_db *bk = p;

	if (bk->sqlite) {
		if (bk->in_transaction) {
			rspamd_sqlite3_run_prstmt(bk->pool, bk->sqlite, bk->prstmt,
									  RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT);
		}

		rspamd_sqlite3_close_prstmt(bk->sqlite, bk->prstmt);
		sqlite3_close(bk->sqlite);
		g_free(bk->fname);
		g_free(bk);
	}
}

gpointer
rspamd_sqlite3_runtime(struct rspamd_task *task,
					   struct rspamd_statfile_config *stcf, gboolean learn, gpointer p, int _id)
{
	struct rspamd_stat_sqlite3_rt *rt = NULL;
	struct rspamd_stat_sqlite3_db *bk = p;

	if (bk) {
		rt = rspamd_mempool_alloc(task->task_pool, sizeof(*rt));
		rt->db = bk;
		rt->task = task;
		rt->user_id = -1;
		rt->lang_id = -1;
		rt->cf = stcf;
	}

	return rt;
}

gboolean
rspamd_sqlite3_process_tokens(struct rspamd_task *task,
							  GPtrArray *tokens,
							  int id, gpointer p)
{
	struct rspamd_stat_sqlite3_db *bk;
	struct rspamd_stat_sqlite3_rt *rt = p;
	int64_t iv = 0;
	unsigned int i;
	rspamd_token_t *tok;

	g_assert(p != NULL);
	g_assert(tokens != NULL);

	bk = rt->db;

	for (i = 0; i < tokens->len; i++) {
		tok = g_ptr_array_index(tokens, i);

		if (bk == NULL) {
			/* Statfile is does not exist, so all values are zero */
			tok->values[id] = 0.0f;
			continue;
		}

		if (!bk->in_transaction) {
			rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
									  RSPAMD_STAT_BACKEND_TRANSACTION_START_DEF);
			bk->in_transaction = TRUE;
		}

		if (rt->user_id == -1) {
			if (bk->enable_users) {
				rt->user_id = rspamd_sqlite3_get_user(bk, task, FALSE);
			}
			else {
				rt->user_id = 0;
			}
		}

		if (rt->lang_id == -1) {
			if (bk->enable_languages) {
				rt->lang_id = rspamd_sqlite3_get_language(bk, task, FALSE);
			}
			else {
				rt->lang_id = 0;
			}
		}

		if (bk->enable_languages || bk->enable_users) {
			if (rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
										  RSPAMD_STAT_BACKEND_GET_TOKEN_FULL,
										  tok->data, rt->user_id, rt->lang_id, &iv) == SQLITE_OK) {
				tok->values[id] = iv;
			}
			else {
				tok->values[id] = 0.0f;
			}
		}
		else {
			if (rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
										  RSPAMD_STAT_BACKEND_GET_TOKEN_SIMPLE,
										  tok->data, &iv) == SQLITE_OK) {
				tok->values[id] = iv;
			}
			else {
				tok->values[id] = 0.0f;
			}
		}

		if (rt->cf->is_spam) {
			task->flags |= RSPAMD_TASK_FLAG_HAS_SPAM_TOKENS;
		}
		else {
			task->flags |= RSPAMD_TASK_FLAG_HAS_HAM_TOKENS;
		}
	}


	return TRUE;
}

gboolean
rspamd_sqlite3_finalize_process(struct rspamd_task *task, gpointer runtime,
								gpointer ctx)
{
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;

	g_assert(rt != NULL);
	bk = rt->db;

	if (bk->in_transaction) {
		rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
								  RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT);
		bk->in_transaction = FALSE;
	}

	rt->lang_id = -1;
	rt->user_id = -1;

	return TRUE;
}

gboolean
rspamd_sqlite3_learn_tokens(struct rspamd_task *task, GPtrArray *tokens,
							int id, gpointer p)
{
	struct rspamd_stat_sqlite3_db *bk;
	struct rspamd_stat_sqlite3_rt *rt = p;
	int64_t iv = 0;
	unsigned int i;
	rspamd_token_t *tok;

	g_assert(tokens != NULL);
	g_assert(p != NULL);

	bk = rt->db;

	for (i = 0; i < tokens->len; i++) {
		tok = g_ptr_array_index(tokens, i);
		if (bk == NULL) {
			/* Statfile is does not exist, so all values are zero */
			return FALSE;
		}

		if (!bk->in_transaction) {
			rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
									  RSPAMD_STAT_BACKEND_TRANSACTION_START_IM);
			bk->in_transaction = TRUE;
		}

		if (rt->user_id == -1) {
			if (bk->enable_users) {
				rt->user_id = rspamd_sqlite3_get_user(bk, task, TRUE);
			}
			else {
				rt->user_id = 0;
			}
		}

		if (rt->lang_id == -1) {
			if (bk->enable_languages) {
				rt->lang_id = rspamd_sqlite3_get_language(bk, task, TRUE);
			}
			else {
				rt->lang_id = 0;
			}
		}

		iv = tok->values[id];

		if (rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
									  RSPAMD_STAT_BACKEND_SET_TOKEN,
									  tok->data, rt->user_id, rt->lang_id, iv) != SQLITE_OK) {
			rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
									  RSPAMD_STAT_BACKEND_TRANSACTION_ROLLBACK);
			bk->in_transaction = FALSE;

			return FALSE;
		}
	}

	return TRUE;
}

gboolean
rspamd_sqlite3_finalize_learn(struct rspamd_task *task, gpointer runtime,
							  gpointer ctx, GError **err)
{
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;
	int wal_frames, wal_checkpointed, mode;

	g_assert(rt != NULL);
	bk = rt->db;

	if (bk->in_transaction) {
		rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
								  RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT);
		bk->in_transaction = FALSE;
	}

#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(bk->sqlite,
								  NULL,
								  mode,
								  &wal_frames,
								  &wal_checkpointed) != SQLITE_OK) {
		msg_warn_task("cannot commit checkpoint: %s",
					  sqlite3_errmsg(bk->sqlite));

		g_set_error(err, rspamd_sqlite3_backend_quark(), 500,
					"cannot commit checkpoint: %s",
					sqlite3_errmsg(bk->sqlite));
		return FALSE;
	}
#endif

	return TRUE;
}

gulong
rspamd_sqlite3_total_learns(struct rspamd_task *task, gpointer runtime,
							gpointer ctx)
{
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;
	uint64_t res;

	g_assert(rt != NULL);
	bk = rt->db;
	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_GET_LEARNS, &res);

	return res;
}

gulong
rspamd_sqlite3_inc_learns(struct rspamd_task *task, gpointer runtime,
						  gpointer ctx)
{
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;
	uint64_t res;

	g_assert(rt != NULL);
	bk = rt->db;
	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_INC_LEARNS_LANG,
							  rt->lang_id);
	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_INC_LEARNS_USER,
							  rt->user_id);

	if (bk->in_transaction) {
		rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
								  RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT);
		bk->in_transaction = FALSE;
	}

	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_GET_LEARNS, &res);

	return res;
}

gulong
rspamd_sqlite3_dec_learns(struct rspamd_task *task, gpointer runtime,
						  gpointer ctx)
{
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;
	uint64_t res;

	g_assert(rt != NULL);
	bk = rt->db;
	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_DEC_LEARNS_LANG,
							  rt->lang_id);
	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_DEC_LEARNS_USER,
							  rt->user_id);

	if (bk->in_transaction) {
		rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
								  RSPAMD_STAT_BACKEND_TRANSACTION_COMMIT);
		bk->in_transaction = FALSE;
	}

	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_GET_LEARNS, &res);

	return res;
}

gulong
rspamd_sqlite3_learns(struct rspamd_task *task, gpointer runtime,
					  gpointer ctx)
{
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;
	uint64_t res;

	g_assert(rt != NULL);
	bk = rt->db;
	rspamd_sqlite3_run_prstmt(task->task_pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_GET_LEARNS, &res);

	return res;
}

ucl_object_t *
rspamd_sqlite3_get_stat(gpointer runtime,
						gpointer ctx)
{
	ucl_object_t *res = NULL;
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;
	rspamd_mempool_t *pool;
	struct stat st;
	int64_t rev;

	g_assert(rt != NULL);
	bk = rt->db;
	pool = bk->pool;

	(void) stat(bk->fname, &st);
	rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_GET_LEARNS, &rev);

	res = ucl_object_typed_new(UCL_OBJECT);
	ucl_object_insert_key(res, ucl_object_fromint(rev), "revision",
						  0, false);
	ucl_object_insert_key(res, ucl_object_fromint(st.st_size), "size",
						  0, false);
	rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_NTOKENS, &rev);
	ucl_object_insert_key(res, ucl_object_fromint(rev), "total", 0, false);
	ucl_object_insert_key(res, ucl_object_fromint(rev), "used", 0, false);
	ucl_object_insert_key(res, ucl_object_fromstring(rt->cf->symbol),
						  "symbol", 0, false);
	ucl_object_insert_key(res, ucl_object_fromstring("sqlite3"),
						  "type", 0, false);
	rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_NLANGUAGES, &rev);
	ucl_object_insert_key(res, ucl_object_fromint(rev),
						  "languages", 0, false);
	rspamd_sqlite3_run_prstmt(pool, bk->sqlite, bk->prstmt,
							  RSPAMD_STAT_BACKEND_NUSERS, &rev);
	ucl_object_insert_key(res, ucl_object_fromint(rev),
						  "users", 0, false);

	if (rt->cf->label) {
		ucl_object_insert_key(res, ucl_object_fromstring(rt->cf->label),
							  "label", 0, false);
	}

	return res;
}

gpointer
rspamd_sqlite3_load_tokenizer_config(gpointer runtime,
									 gsize *len)
{
	gpointer tk_conf, copied_conf;
	uint64_t sz;
	struct rspamd_stat_sqlite3_rt *rt = runtime;
	struct rspamd_stat_sqlite3_db *bk;

	g_assert(rt != NULL);
	bk = rt->db;

	g_assert(rspamd_sqlite3_run_prstmt(rt->db->pool, bk->sqlite, bk->prstmt,
									   RSPAMD_STAT_BACKEND_LOAD_TOKENIZER, &sz, &tk_conf) == SQLITE_OK);
	g_assert(sz > 0);
	/*
	 * Here we can have either decoded or undecoded version of tokenizer config
	 * XXX: dirty hack to check if we have osb magic here
	 */
	if (sz > 7 && memcmp(tk_conf, "osbtokv", 7) == 0) {
		copied_conf = rspamd_mempool_alloc(rt->task->task_pool, sz);
		memcpy(copied_conf, tk_conf, sz);
		g_free(tk_conf);
	}
	else {
		/* Need to decode */
		copied_conf = rspamd_decode_base32(tk_conf, sz, len, RSPAMD_BASE32_DEFAULT);
		g_free(tk_conf);
		rspamd_mempool_add_destructor(rt->task->task_pool, g_free, copied_conf);
	}

	if (len) {
		*len = sz;
	}

	return copied_conf;
}