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
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
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
|
--[[
Copyright (c) 2016, Vsevolod Stakhov <vsevolod@highsecure.ru>
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.
]]--
local rspamd_logger = require 'rspamd_logger'
local rspamd_http = require "rspamd_http"
local rspamd_lua_utils = require "lua_util"
local upstream_list = require "rspamd_upstream_list"
local lua_util = require "lua_util"
local lua_clickhouse = require "lua_clickhouse"
local fun = require "fun"
local N = "clickhouse"
if confighelp then
return
end
local main_rows = {}
local attachment_rows = {}
local urls_rows = {}
local emails_rows = {}
--local specific_rows = {}
local asn_rows = {}
local symbols_rows = {}
local custom_rows = {}
local nrows = 0
local connect_prefix = 'http://'
local settings = {
limit = 1000,
timeout = 5.0,
bayes_spam_symbols = {'BAYES_SPAM'},
bayes_ham_symbols = {'BAYES_HAM'},
fann_symbols = {'FANN_SCORE'},
fuzzy_symbols = {'FUZZY_DENIED'},
whitelist_symbols = {'WHITELIST_DKIM', 'WHITELIST_SPF_DKIM', 'WHITELIST_DMARC'},
dkim_allow_symbols = {'R_DKIM_ALLOW'},
dkim_reject_symbols = {'R_DKIM_REJECT'},
dmarc_allow_symbols = {'DMARC_POLICY_ALLOW'},
dmarc_reject_symbols = {'DMARC_POLICY_REJECT', 'DMARC_POLICY_QUARANTINE'},
stop_symbols = {},
table = 'rspamd',
attachments_table = 'rspamd_attachments',
urls_table = 'rspamd_urls',
emails_table = 'rspamd_emails',
symbols_table = 'rspamd_symbols',
asn_table = 'rspamd_asn',
ipmask = 19,
ipmask6 = 48,
full_urls = false,
from_tables = nil,
enable_symbols = false,
use_https = false,
use_gzip = true,
allow_local = false,
user = nil,
password = nil,
no_ssl_verify = false,
custom_rules = {},
retention = {
enable = false,
method = 'detach',
period_months = 3,
run_every = '7d',
}
}
local clickhouse_schema = {
table = [[
CREATE TABLE IF NOT EXISTS ${table}
(
Date Date,
TS DateTime,
From String,
MimeFrom String,
IP String,
Score Float64,
NRcpt UInt8,
Size UInt32,
IsWhitelist Enum8('blacklist' = 0, 'whitelist' = 1, 'unknown' = 2) DEFAULT CAST('unknown' AS Enum8('blacklist' = 0, 'whitelist' = 1, 'unknown' = 2)),
IsBayes Enum8('ham' = 0, 'spam' = 1, 'unknown' = 2) DEFAULT CAST('unknown' AS Enum8('ham' = 0, 'spam' = 1, 'unknown' = 2)),
IsFuzzy Enum8('whitelist' = 0, 'deny' = 1, 'unknown' = 2) DEFAULT CAST('unknown' AS Enum8('whitelist' = 0, 'deny' = 1, 'unknown' = 2)),
IsFann Enum8('ham' = 0, 'spam' = 1, 'unknown' = 2) DEFAULT CAST('unknown' AS Enum8('ham' = 0, 'spam' = 1, 'unknown' = 2)),
IsDkim Enum8('reject' = 0, 'allow' = 1, 'unknown' = 2) DEFAULT CAST('unknown' AS Enum8('reject' = 0, 'allow' = 1, 'unknown' = 2)),
IsDmarc Enum8('reject' = 0, 'allow' = 1, 'unknown' = 2) DEFAULT CAST('unknown' AS Enum8('reject' = 0, 'allow' = 1, 'unknown' = 2)),
NUrls Int32,
Action Enum8('reject' = 0, 'rewrite subject' = 1, 'add header' = 2, 'greylist' = 3, 'no action' = 4, 'soft reject' = 5) DEFAULT CAST('no action' AS Enum8('reject' = 0, 'rewrite subject' = 1, 'add header' = 2, 'greylist' = 3, 'no action' = 4, 'soft reject' = 5)),
FromUser String,
MimeUser String,
RcptUser String,
RcptDomain String,
ListId String,
Digest FixedString(32)
) ENGINE = MergeTree(Date, (TS, From), 8192)
]],
attachments_table = [[
CREATE TABLE IF NOT EXISTS ${attachments_table} (
Date Date,
Digest FixedString(32),
`Attachments.FileName` Array(String),
`Attachments.ContentType` Array(String),
`Attachments.Length` Array(UInt32),
`Attachments.Digest` Array(FixedString(16))
) ENGINE = MergeTree(Date, Digest, 8192)
]],
urls_table = [[
CREATE TABLE IF NOT EXISTS ${urls_table} (
Date Date,
Digest FixedString(32),
`Urls.Tld` Array(String),
`Urls.Url` Array(String)
) ENGINE = MergeTree(Date, Digest, 8192)
]],
emails_table = [[
CREATE TABLE IF NOT EXISTS ${emails_table} (
Date Date,
Digest FixedString(32),
Emails Array(String)
) ENGINE = MergeTree(Date, Digest, 8192)
]],
asn_table = [[
CREATE TABLE IF NOT EXISTS ${asn_table} (
Date Date,
Digest FixedString(32),
ASN String,
Country FixedString(2),
IPNet String
) ENGINE = MergeTree(Date, Digest, 8192)
]],
symbols_table = [[
CREATE TABLE IF NOT EXISTS ${symbols_table} (
Date Date,
Digest FixedString(32),
`Symbols.Names` Array(String),
`Symbols.Scores` Array(Float64),
`Symbols.Options` Array(String)
) ENGINE = MergeTree(Date, Digest, 8192)
]]
}
local function clickhouse_main_row(tname)
local fields = {
'Date',
'TS',
'From',
'MimeFrom',
'IP',
'Score',
'NRcpt',
'Size',
'IsWhitelist',
'IsBayes',
'IsFuzzy',
'IsFann',
'IsDkim',
'IsDmarc',
'NUrls',
'Action',
'FromUser',
'MimeUser',
'RcptUser',
'RcptDomain',
'ListId',
'Digest'
}
local elt = string.format('INSERT INTO %s (%s) VALUES ',
tname, table.concat(fields, ','))
return elt
end
local function clickhouse_attachments_row(tname)
local attachement_fields = {
'Date',
'Digest',
'Attachments.FileName',
'Attachments.ContentType',
'Attachments.Length',
'Attachments.Digest',
}
local elt = string.format('INSERT INTO %s (%s) VALUES ',
tname, table.concat(attachement_fields, ','))
return elt
end
local function clickhouse_urls_row(tname)
local urls_fields = {
'Date',
'Digest',
'Urls.Tld',
'Urls.Url',
}
local elt = string.format('INSERT INTO %s (%s) VALUES ',
tname, table.concat(urls_fields, ','))
return elt
end
local function clickhouse_emails_row(tname)
local emails_fields = {
'Date',
'Digest',
'Emails',
}
local elt = string.format('INSERT INTO %s (%s) VALUES ',
tname, table.concat(emails_fields, ','))
return elt
end
local function clickhouse_symbols_row(tname)
local symbols_fields = {
'Date',
'Digest',
'Symbols.Names',
'Symbols.Scores',
'Symbols.Options',
}
local elt = string.format('INSERT INTO %s (%s) VALUES ',
tname, table.concat(symbols_fields, ','))
return elt
end
local function clickhouse_asn_row(tname)
local asn_fields = {
'Date',
'Digest',
'ASN',
'Country',
'IPNet',
}
local elt = string.format('INSERT INTO %s (%s) VALUES ',
tname, table.concat(asn_fields, ','))
return elt
end
local function today(ts)
return os.date('%Y-%m-%d', ts)
end
local function clickhouse_check_symbol(task, symbols, need_score)
for _,s in ipairs(symbols) do
if task:has_symbol(s) then
if need_score then
local sym = task:get_symbol(s)[1]
return sym['score']
else
return true
end
end
end
return false
end
local function clickhouse_send_data(task)
local upstream = settings.upstream:get_upstream_round_robin()
local ip_addr = upstream:get_addr():to_string(true)
local function gen_success_cb(what, how_many)
return function (_, _)
rspamd_logger.infox(task, "sent %s rows of %s to clickhouse server %s",
how_many, what, ip_addr)
upstream:ok()
end
end
local function gen_fail_cb(what, how_many)
return function (_, err)
rspamd_logger.errx(task, "cannot send %s rows of %s data to clickhouse server %s: %s",
how_many, what, ip_addr, err)
upstream:fail()
end
end
local function send_data(what, tbl, query)
local ch_params = {
task = task,
}
local ret = lua_clickhouse.insert(upstream, settings, ch_params,
query, tbl,
gen_success_cb(what, #tbl),
gen_fail_cb(what, #tbl))
if not ret then
rspamd_logger.errx(task, "cannot send %s rows of %s data to clickhouse server %s: %s",
#tbl, what, ip_addr, 'cannot make HTTP request')
end
end
send_data('generic data', main_rows,
clickhouse_main_row(settings['table']))
if #attachment_rows > 1 then
send_data('attachments data', attachment_rows,
clickhouse_attachments_row(settings.attachments_table))
end
if #urls_rows > 1 then
send_data('urls data', urls_rows,
clickhouse_urls_row(settings.urls_table))
end
if #emails_rows > 1 then
send_data('emails data', emails_rows,
clickhouse_emails_row(settings.emails_table))
end
if #asn_rows > 1 then
send_data('asn data', asn_rows,
clickhouse_asn_row(settings.asn_table))
end
if #symbols_rows > 1 then
send_data('symbols data', symbols_rows,
clickhouse_symbols_row(settings.symbols_table))
end
for k,crows in pairs(custom_rows) do
if #crows > 1 then
send_data('custom data ('..k..')', settings.custom_rules[k].first_row(),
crows)
end
end
end
local function clickhouse_collect(task)
if not settings.allow_local and rspamd_lua_utils.is_rspamc_or_controller(task) then return end
for _,sym in ipairs(settings.stop_symbols) do
if task:has_symbol(sym) then
rspamd_logger.debugm(N, task, 'skip collection as symbol %s has fired', sym)
return
end
end
local from_domain = ''
local from_user = ''
if task:has_from('smtp') then
local from = task:get_from('smtp')[1]
if from then
from_domain = from['domain']
from_user = from['user']
end
if from_domain == '' then
if task:get_helo() then
from_domain = task:get_helo()
end
end
else
if task:get_helo() then
from_domain = task:get_helo()
end
end
local mime_domain = ''
local mime_user = ''
if task:has_from('mime') then
local from = task:get_from('mime')[1]
if from then
mime_domain = from['domain']
mime_user = from['user']
end
end
local ip_str = 'undefined'
local ip = task:get_from_ip()
if ip and ip:is_valid() then
local ipnet
if ip:get_version() == 4 then
ipnet = ip:apply_mask(settings['ipmask'])
else
ipnet = ip:apply_mask(settings['ipmask6'])
end
ip_str = ipnet:to_string()
end
local rcpt_user = ''
local rcpt_domain = ''
if task:has_recipients('smtp') then
local rcpt = task:get_recipients('smtp')[1]
rcpt_user = rcpt['user']
rcpt_domain = rcpt['domain']
end
local list_id = ''
local lh = task:get_header('List-Id')
if lh then
list_id = lh
end
local score = task:get_metric_score('default')[1];
local bayes = 'unknown';
local fuzzy = 'unknown';
local fann = 'unknown';
local whitelist = 'unknown';
local dkim = 'unknown';
local dmarc = 'unknown';
local ret
ret = clickhouse_check_symbol(task, settings['bayes_spam_symbols'], false)
if ret then
bayes = 'spam'
end
ret = clickhouse_check_symbol(task, settings['bayes_ham_symbols'], false)
if ret then
bayes = 'ham'
end
ret = clickhouse_check_symbol(task, settings['fann_symbols'], true)
if ret then
if ret > 0 then
fann = 'spam'
else
fann = 'ham'
end
end
ret = clickhouse_check_symbol(task, settings['whitelist_symbols'], true)
if ret then
if ret < 0 then
whitelist = 'whitelist'
else
whitelist = 'blacklist'
end
end
ret = clickhouse_check_symbol(task, settings['fuzzy_symbols'], false)
if ret then
fuzzy = 'deny'
end
ret = clickhouse_check_symbol(task, settings['dkim_allow_symbols'], false)
if ret then
dkim = 'allow'
end
ret = clickhouse_check_symbol(task, settings['dkim_reject_symbols'], false)
if ret then
dkim = 'reject'
end
ret = clickhouse_check_symbol(task, settings['dmarc_allow_symbols'], false)
if ret then
dmarc = 'allow'
end
ret = clickhouse_check_symbol(task, settings['dmarc_reject_symbols'], false)
if ret then
dmarc = 'reject'
end
local nrcpts = 0
if task:has_recipients('smtp') then
nrcpts = #task:get_recipients('smtp')
end
local nurls = 0
if task:has_urls(true) then
nurls = #task:get_urls(true)
end
local timestamp = task:get_date({
format = 'connect',
gmt = false
})
local action = task:get_metric_action('default')
table.insert(main_rows, {
today(timestamp),
timestamp,
from_domain,
mime_domain,
ip_str,
score,
nrcpts,
task:get_size(),
whitelist,
bayes,
fuzzy,
fann,
dkim,
dmarc,
nurls,
action,
from_user,
mime_user,
rcpt_user,
rcpt_domain,
list_id,
task:get_digest()
})
--[[ TODO: has been broken
if settings['from_map'] and dkim == 'allow' then
-- Use dkim
local das = task:get_symbol(settings['dkim_allow_symbols'][1])
if ((das or E)[1] or E).options then
for _,dkim_domain in ipairs(das[1]['options']) do
local specific = settings.from_map:get_key(dkim_domain)
if specific then
specific_rows[specific] = {}
table.insert(specific_rows[specific], elt)
end
end
end
end
--]]
-- Attachments step
local attachments_fnames = {}
local attachments_ctypes = {}
local attachments_lengths = {}
local attachments_digests = {}
for _,part in ipairs(task:get_parts()) do
local fname = part:get_filename()
if fname then
table.insert(attachments_fnames, fname)
local type, subtype = part:get_type()
table.insert(attachments_ctypes, string.format("%s/%s",
type, subtype))
table.insert(attachments_lengths, part:get_length())
table.insert(attachments_digests, string.sub(part:get_digest(), 1, 16))
end
end
if #attachments_fnames > 0 then
table.insert(attachment_rows, {
today(timestamp),
task:get_digest(),
attachments_fnames,
attachments_ctypes,
attachments_lengths,
attachments_digests,
})
end
-- Urls step
local urls_tlds = {}
local urls_urls = {}
if task:has_urls(false) then
for _,u in ipairs(task:get_urls(false)) do
table.insert(urls_tlds, u:get_tld())
if settings['full_urls'] then
table.insert(urls_urls, u:get_text())
else
table.insert(urls_urls, u:get_host())
end
end
end
if #urls_tlds > 0 then
table.insert(urls_rows, {
today(timestamp),
task:get_digest(),
urls_tlds,
urls_urls
})
end
-- Emails step
local emails = {}
if task:has_urls(true) then
for _,u in ipairs(task:get_emails()) do
table.insert(emails,
string.format('%s@%s', u:get_user(), u:get_host()))
end
end
if #emails > 0 then
table.insert(emails_rows, {
today(timestamp),
task:get_digest(),
emails,
})
end
-- ASN information
if settings['asn_table'] then
local asn, country, ipnet = '--', '--', '--'
local pool = task:get_mempool()
ret = pool:get_variable("asn")
if ret then
asn = ret
end
ret = pool:get_variable("country")
if ret then
country = ret:sub(1, 2)
end
ret = pool:get_variable("ipnet")
if ret then
ipnet = ret
end
table.insert(asn_rows, {
today(timestamp),
task:get_digest(),
asn,
country,
ipnet
})
end
-- Symbols info
if settings.enable_symbols and settings['symbols_table'] then
local symbols = task:get_symbols_all()
local syms_tab = {}
local scores_tab = {}
local options_tab = {}
for _,s in ipairs(symbols) do
table.insert(syms_tab, s.name or '')
table.insert(scores_tab, s.score)
if s.options then
table.insert(options_tab, table.concat(s.options, ','))
else
table.insert(options_tab, "''");
end
end
table.insert(symbols_rows, {
today(timestamp),
syms_tab,
scores_tab,
options_tab
})
end
-- Custom data
for k,rule in pairs(settings.custom_rules) do
if not custom_rows[k] then custom_rows[k] = {} end
table.insert(custom_rows[k], rule.get_row(task))
end
nrows = nrows + 1
if nrows > settings['limit'] then
clickhouse_send_data(task)
nrows = 0
main_rows = {}
attachment_rows = {}
urls_rows = {}
emails_rows = {}
asn_rows = {}
symbols_rows = {}
custom_rows = {}
end
end
local function do_remove_partition(ev_base, cfg, table_name, partition_id)
rspamd_logger.debugm(N, rspamd_config, "removing partition %s.%s", table_name, partition_id)
local upstream = settings.upstream:get_upstream_round_robin()
local remove_partition_sql = "ALTER TABLE ${table_name} ${remove_method} PARTITION ${partition_id}"
local remove_method = (settings.retention.method == 'drop') and 'DROP' or 'DETACH'
local sql_params = {
['table_name'] = table_name,
['remove_method'] = remove_method,
['partition_id'] = partition_id
}
local sql = rspamd_lua_utils.template(remove_partition_sql, sql_params)
local ch_params = {
body = sql,
ev_base = ev_base,
cfg = cfg,
}
local ret = lua_clickhouse.select(upstream, settings, ch_params, sql,
function(_, rows)
rspamd_logger.infox(rspamd_config,
'detached partition %s:%s on server %s', table_name, partition_id,
settings['server'])
end,
function(_, err)
rspamd_logger.errx(rspamd_config,
"cannot detach partition %s:%s from server %s: %s",
table_name, partition_id,
settings['server'], err)
end)
if not ret then
rspamd_logger.errx(rspamd_config,
"cannot detach partition %s:%s from server %s: cannot make request",
table_name, partition_id,
settings['server'])
end
end
--[[
nil - file is not writable, do not perform removal
0 - it's time to perform removal
<int> - how many seconds wait until next run
]]
local function get_last_removal_ago()
local ts_file = string.format('%s/%s', rspamd_paths['DBDIR'], 'clickhouse_retention_run')
local f, err = io.open(ts_file, 'r')
local write_file
local last_ts
if err then
rspamd_logger.debugm(N, rspamd_config, 'Failed to open %s: %s', ts_file, err)
else
last_ts = tonumber(f:read('*number'))
f:close()
end
local current_ts = os.time()
if last_ts == nil or (last_ts + settings.retention.period) <= current_ts then
write_file, err = io.open(ts_file, 'w')
if err then
rspamd_logger.errx(rspamd_config, 'Failed to open %s, will not perform retention: %s', ts_file, err)
return nil
end
local res
res, err = write_file:write(tostring(current_ts))
if err or res == nil then
rspamd_logger.errx(rspamd_config, 'Failed to write %s, will not perform retention: %s', ts_file, err)
return nil
end
write_file:close()
return 0
end
return (last_ts + settings.retention.period) - current_ts
end
local function clickhouse_remove_old_partitions(cfg, ev_base)
local last_time_ago = get_last_removal_ago()
if last_time_ago == nil then
rspamd_logger.errx(rspamd_config, "Failed to get last run time. Disabling retention")
return false
elseif last_time_ago ~= 0 then
return last_time_ago
end
local upstream = settings.upstream:get_upstream_round_robin()
local partition_to_remove_sql = "SELECT distinct partition, table FROM system.parts WHERE table in ('${tables}') and max_date <= toDate(now() - interval ${month} month);"
local table_names = {}
for table_name,_ in pairs(clickhouse_schema) do
table.insert(table_names, settings[table_name])
end
local tables = table.concat(table_names, "', '")
local sql_params = {
tables = tables,
month = settings.retention.period_months,
}
local sql = rspamd_lua_utils.template(partition_to_remove_sql, sql_params)
local ch_params = {
ev_base = ev_base,
config = cfg,
}
local ret = lua_clickhouse.select(upstream, settings, ch_params, sql,
function(_, rows)
fun.each(function(row)
do_remove_partition(ev_base, cfg, row.table, row.partition)
end, rows)
end,
function(_, err)
rspamd_logger.errx(rspamd_config,
"cannot send data to clickhouse server %s: %s",
settings['server'], err)
end)
if not ret then
rspamd_logger.errx(rspamd_config, "cannot send data to clickhouse server %s: cannot make request",
settings['server'])
end
-- settings.retention.period is added on initialisation, see below
return settings.retention.period
end
local opts = rspamd_config:get_all_opt('clickhouse')
if opts then
for k,v in pairs(opts) do
if k == 'custom_rules' then
if not v[1] then
v = {v}
end
for i,rule in ipairs(v) do
if rule.schema and rule.first_row and rule.get_row then
local first_row, get_row
local loadstring = loadstring or load
local ret, res_or_err = pcall(loadstring(rule.first_row))
if not ret or type(res_or_err) ~= 'function' then
rspamd_logger.errx(rspamd_config, 'invalid first_row (%s) - must be a function',
res_or_err)
else
first_row = res_or_err
end
ret, res_or_err = pcall(loadstring(rule.get_row))
if not ret or type(res_or_err) ~= 'function' then
rspamd_logger.errx(rspamd_config, 'invalid get_row (%s) - must be a function',
res_or_err)
else
get_row = res_or_err
end
if first_row and get_row then
local name = rule.name or tostring(i)
settings.custom_rules[name] = {
schema = rule.schema,
first_row = first_row,
get_row = get_row,
}
end
else
rspamd_logger.errx(rspamd_config, 'custom rule has no required attributes: schema, first_row and get_row')
end
end
else
settings[k] = v
end
end
if not settings['server'] and not settings['servers'] then
rspamd_logger.infox(rspamd_config, 'no servers are specified, disabling module')
rspamd_lua_utils.disable_module(N, "config")
else
settings['from_map'] = rspamd_map_add('clickhouse', 'from_tables',
'regexp', 'clickhouse specific domains')
if settings.use_https then
connect_prefix = 'https://'
end
settings.upstream = upstream_list.create(rspamd_config,
settings['server'] or settings['servers'], 8123)
if not settings.upstream then
rspamd_logger.errx(rspamd_config, 'cannot parse clickhouse address: %s',
settings['server'] or settings['servers'])
rspamd_lua_utils.disable_module(N, "config")
return
end
rspamd_config:register_symbol({
name = 'CLICKHOUSE_COLLECT',
type = 'idempotent',
callback = clickhouse_collect,
priority = 10,
flags = 'empty',
})
rspamd_config:register_finish_script(function(task)
if nrows > 0 then
clickhouse_send_data(task)
end
end)
-- Create tables on load
rspamd_config:add_on_load(function(cfg, ev_base, worker)
if worker:is_primary_controller() then
local upstreams = settings.upstream:all_upstreams()
for _,up in ipairs(upstreams) do
local ip_addr = up:get_addr():to_string(true)
local function send_req(elt, sql)
local function http_cb(err_message, code, data, _)
if code ~= 200 or err_message then
if not err_message then err_message = data end
rspamd_logger.errx(rspamd_config, "cannot create table %s in clickhouse server %s: %s",
elt, ip_addr, err_message)
up:fail()
else
up:ok()
end
end
if not rspamd_http.request({
ev_base = ev_base,
config = cfg,
url = connect_prefix .. ip_addr,
body = sql,
callback = http_cb,
mime_type = 'text/plain',
timeout = settings['timeout'],
no_ssl_verify = settings.no_ssl_verify,
user = settings.user,
password = settings.password,
}) then
rspamd_logger.errx(rspamd_config, "cannot create table %s in clickhouse server %s: cannot make request",
elt, ip_addr)
end
end
for tab,sql in pairs(clickhouse_schema) do
send_req(tab, rspamd_lua_utils.template(sql, settings))
end
for k,rule in pairs(settings.custom_rules) do
if rule.schema then
send_req(k, rspamd_lua_utils.template(rule.schema, settings))
end
end
end
if settings.retention.enable and settings.retention.method ~= 'drop' and settings.retention.method ~= 'detach' then
rspamd_logger.errx(rspamd_config, "retention.method should be either 'drop' or 'detach' (now: %s). Disabling retention",
settings.retention.method)
settings.retention.enable = false
end
if settings.retention.enable and settings.retention.period_months < 1 or settings.retention.period_months > 1000 then
rspamd_logger.errx(rspamd_config, "please, set retention.period_months between 1 and 1000 (now: %s). Disabling retention",
settings.retention.period_months)
settings.retention.enable = false
end
local period = lua_util.parse_time_interval(settings.retention.run_every)
if settings.retention.enable and period == nil then
rspamd_logger.errx(rspamd_config, "invalid value for retention.run_every (%s). Disabling retention",
settings.retention.run_every)
settings.retention.enable = false
end
if settings.retention.enable then
settings.retention.period = period
rspamd_logger.infox(rspamd_config, "retention will be performed each %s seconds for %s month with method %s",
period, settings.retention.period_months, settings.retention.method)
rspamd_config:add_periodic(ev_base, 0, clickhouse_remove_old_partitions, false)
end
end
end)
end
end
|