-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
548 lines (470 loc) · 14.5 KB
/
index.js
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
// access plugin
const tlds = require('haraka-tld')
const haddr = require('address-rfc2822')
const net_utils = require('haraka-net-utils')
const utils = require('haraka-utils')
exports.register = function () {
this.init_config() // init this.cfg
this.init_lists()
this.load_access_ini() // update with *.ini settings
for (const c of ['black', 'white']) {
for (const p in this.cfg[c]) {
this.load_file(c, p)
}
for (const p in this.cfg.re[c]) {
this.load_re_file(c, p)
}
}
if (this.cfg.check.conn) {
this.register_hook('connect', 'rdns_access')
}
if (this.cfg.check.helo) {
this.register_hook('helo', 'helo_access')
this.register_hook('ehlo', 'helo_access')
}
if (this.cfg.check.mail) {
this.register_hook('mail', 'mail_from_access')
}
if (this.cfg.check.rcpt) {
this.register_hook('rcpt', 'rcpt_to_access')
}
if (this.cfg.check.any) {
this.load_domain_file('domain', 'any')
for (const hook of ['connect', 'helo', 'ehlo', 'mail', 'rcpt']) {
this.register_hook(hook, 'any')
}
this.register_hook('data_post', 'data_any')
}
}
exports.init_config = function () {
this.cfg = {
deny_msg: {
conn: 'You are not allowed to connect',
helo: 'That HELO is not allowed to connect',
mail: 'That sender cannot send mail here',
rcpt: 'That recipient is not allowed',
},
domain: {
any: 'access.domains',
},
white: {
conn: 'connect.rdns_access.whitelist',
mail: 'mail_from.access.whitelist',
rcpt: 'rcpt_to.access.whitelist',
},
black: {
conn: 'connect.rdns_access.blacklist',
mail: 'mail_from.access.blacklist',
rcpt: 'rcpt_to.access.blacklist',
},
re: {
black: {
conn: 'connect.rdns_access.blacklist_regex',
mail: 'mail_from.access.blacklist_regex',
rcpt: 'rcpt_to.access.blacklist_regex',
helo: 'helo.checks.regexps',
},
white: {
conn: 'connect.rdns_access.whitelist_regex',
mail: 'mail_from.access.whitelist_regex',
rcpt: 'rcpt_to.access.whitelist_regex',
},
},
}
}
exports.load_access_ini = function () {
const cfg = this.config.get(
'access.ini',
{
booleans: [
'+check.any',
'+check.conn',
'-check.helo',
'+check.mail',
'+check.rcpt',
'-rcpt.accept',
],
},
() => {
this.load_access_ini()
},
)
this.cfg.check = cfg.check
if (cfg.deny_msg) {
let p
for (p in this.cfg.deny_msg) {
if (cfg.deny_msg[p]) {
this.cfg.deny_msg[p] = cfg.deny_msg[p]
}
}
}
this.cfg.rcpt = cfg.rcpt
// backwards compatibility
const mf_cfg = this.config.get('mail_from.access.ini')
if (mf_cfg && mf_cfg.general && mf_cfg.general.deny_msg) {
this.cfg.deny_msg.mail = mf_cfg.general.deny_msg
}
const rcpt_cfg = this.config.get('rcpt_to.access.ini')
if (rcpt_cfg && rcpt_cfg.general && rcpt_cfg.general.deny_msg) {
this.cfg.deny_msg.rcpt = rcpt_cfg.general.deny_msg
}
const rdns_cfg = this.config.get('connect.rdns_access.ini')
if (rdns_cfg && rdns_cfg.general && rdns_cfg.general.deny_msg) {
this.cfg.deny_msg.conn = rdns_cfg.general.deny_msg
}
}
exports.init_lists = function () {
this.list = {
black: { conn: {}, helo: {}, mail: {}, rcpt: {} },
white: { conn: {}, helo: {}, mail: {}, rcpt: {} },
domain: { any: {} },
}
this.list_re = {
black: {},
white: {},
}
}
exports.get_domain = function (hook, connection, params) {
switch (hook) {
case 'connect':
if (!connection.remote.host) return
if (connection.remote.host === 'DNSERROR') return
if (connection.remote.host === 'Unknown') return
return connection.remote.host
case 'helo':
case 'ehlo':
if (net_utils.is_ip_literal(params)) return
return params
case 'mail':
case 'rcpt':
if (params && params[0]) return params[0].host
}
return
}
exports.any_whitelist = function (
connection,
hook,
params,
domain,
org_domain,
) {
if (hook === 'mail' || hook === 'rcpt') {
const email = params[0].address()
if (email && this.in_list('domain', 'any', `!${email}`)) return true
}
if (this.in_list('domain', 'any', `!${org_domain}`)) return true
if (this.in_list('domain', 'any', `!${domain}`)) return true
return false
}
exports.any = function (next, connection, params) {
if (!this.cfg.check.any) return next()
const hook = connection.hook
if (!hook) {
connection.logerror(this, 'hook detection failed')
return next()
}
// step 1: get a domain name from whatever info is available
const domain = this.get_domain(hook, connection, params)
if (!domain) {
connection.logdebug(this, `domain detect failed on hook: ${hook}`)
return next()
}
if (!/\./.test(domain)) {
connection.results.add(this, {
fail: `invalid domain: ${domain}`,
emit: true,
})
return next()
}
const org_domain = tlds.get_organizational_domain(domain)
if (!org_domain) {
connection.loginfo(this, `no org domain from ${domain}`)
return next()
}
const file = this.cfg.domain.any
// step 2: check for whitelist
if (this.any_whitelist(connection, hook, params, domain, org_domain)) {
const whiteResults = {
pass: `${hook}:${file}`,
whitelist: true,
emit: true,
}
connection.results.add(this, whiteResults)
return next()
}
// step 3: check for blacklist
if (this.in_list('domain', 'any', org_domain)) {
connection.results.add(this, {
fail: `${file}(${org_domain})`,
blacklist: true,
emit: true,
})
return next(DENY, 'You are not welcome here.')
}
const umsg = hook ? `${hook}:any` : 'any'
connection.results.add(this, { msg: `unlisted(${umsg})` })
next()
}
exports.rdns_store_results = function (connection, color, file) {
switch (color) {
case 'white':
connection.results.add(this, { whitelist: true, pass: file, emit: true })
break
case 'black':
connection.results.add(this, { fail: file, emit: true })
break
}
}
exports.rdns_is_listed = function (connection, color) {
const addrs = [connection.remote.ip, connection.remote.host]
for (let addr of addrs) {
if (!addr) continue // empty rDNS host
if (/[\w]/.test(addr)) addr = addr.toLowerCase()
let file = this.cfg[color].conn
connection.logdebug(this, `checking ${addr} against ${file}`)
if (this.in_list(color, 'conn', addr)) {
this.rdns_store_results(connection, color, file)
return true
}
file = this.cfg.re[color].conn
connection.logdebug(this, `checking ${addr} against ${file}`)
if (this.in_re_list(color, 'conn', addr)) {
this.rdns_store_results(connection, color, file)
return true
}
}
return false
}
exports.rdns_access = function (next, connection) {
if (!this.cfg.check.conn) return next()
if (this.rdns_is_listed(connection, 'white')) return next()
const deny_msg = `${connection.remote.host} [${connection.remote.ip}] ${this.cfg.deny_msg.conn}`
if (this.rdns_is_listed(connection, 'black'))
return next(DENYDISCONNECT, deny_msg)
connection.results.add(this, { msg: 'unlisted(conn)' })
next()
}
exports.helo_access = function (next, connection, helo) {
if (!this.cfg.check.helo) return next()
const file = this.cfg.re.black.helo
if (this.in_re_list('black', 'helo', helo)) {
connection.results.add(this, { fail: file, emit: true })
return next(DENY, `${helo} ${this.cfg.deny_msg.helo}`)
}
connection.results.add(this, { msg: 'unlisted(helo)' })
next()
}
exports.mail_from_access = function (next, connection, params) {
if (!this.cfg.check.mail) return next()
const mail_from = params[0].address()
if (!mail_from) {
connection.transaction.results.add(this, {
skip: 'null sender',
emit: true,
})
return next()
}
// address whitelist checks
let file = this.cfg.white.mail
connection.logdebug(this, `checking ${mail_from} against ${file}`)
if (this.in_list('white', 'mail', mail_from)) {
connection.transaction.results.add(this, { pass: file, emit: true })
return next()
}
file = this.cfg.re.white.mail
connection.logdebug(this, `checking ${mail_from} against ${file}`)
if (this.in_re_list('white', 'mail', mail_from)) {
connection.transaction.results.add(this, { pass: file, emit: true })
return next()
}
// address blacklist checks
file = this.cfg.black.mail
if (this.in_list('black', 'mail', mail_from)) {
connection.transaction.results.add(this, { fail: file, emit: true })
return next(DENY, `${mail_from} ${this.cfg.deny_msg.mail}`)
}
file = this.cfg.re.black.mail
connection.logdebug(this, `checking ${mail_from} against ${file}`)
if (this.in_re_list('black', 'mail', mail_from)) {
connection.transaction.results.add(this, { fail: file, emit: true })
return next(DENY, `${mail_from} ${this.cfg.deny_msg.mail}`)
}
connection.transaction.results.add(this, { msg: 'unlisted(mail)' })
next()
}
exports.rcpt_to_access = function (next, connection, params) {
if (!this.cfg.check.rcpt) return next()
let pass_status = undefined
if (this.cfg.rcpt.accept) {
pass_status = OK
}
const rcpt_to = params[0].address()
// address whitelist checks
if (!rcpt_to) {
connection.transaction.results.add(this, {
skip: 'null rcpt',
emit: true,
})
return next()
}
let file = this.cfg.white.rcpt
if (this.in_list('white', 'rcpt', rcpt_to)) {
connection.transaction.results.add(this, { pass: file, emit: true })
return next(pass_status)
}
file = this.cfg.re.white.rcpt
if (this.in_re_list('white', 'rcpt', rcpt_to)) {
connection.transaction.results.add(this, { pass: file, emit: true })
return next(pass_status)
}
// address blacklist checks
file = this.cfg.black.rcpt
if (this.in_list('black', 'rcpt', rcpt_to)) {
connection.transaction.results.add(this, { fail: file, emit: true })
return next(DENY, `${rcpt_to} ${this.cfg.deny_msg.rcpt}`)
}
file = this.cfg.re.black.rcpt
if (this.in_re_list('black', 'rcpt', rcpt_to)) {
connection.transaction.results.add(this, { fail: file, emit: true })
return next(DENY, `${rcpt_to} ${this.cfg.deny_msg.rcpt}`)
}
connection.transaction.results.add(this, { msg: 'unlisted(rcpt)' })
next()
}
exports.data_any = function (next, connection) {
if (!this.cfg.check.data && !this.cfg.check.any) {
connection.transaction.results.add(this, { skip: 'data(disabled)' })
return next()
}
const hdr_from = connection.transaction.header.get_decoded('From')
if (!hdr_from) {
connection.transaction.results.add(this, { fail: 'data(missing_from)' })
return next()
}
let hdr_addr
try {
hdr_addr = haddr.parse(hdr_from)[0]
} catch (e) {
connection.transaction.results.add(this, {
fail: `data(unparsable_from:${hdr_from})`,
})
return next()
}
if (!hdr_addr) {
connection.transaction.results.add(this, {
fail: `data(unparsable_from:${hdr_from})`,
})
return next()
}
const hdr_dom = tlds.get_organizational_domain(hdr_addr.host())
if (!hdr_dom) {
connection.transaction.results.add(this, {
fail: `data(no_od_from:${hdr_addr})`,
})
return next()
}
const file = this.cfg.domain.any
if (this.in_list('domain', 'any', `!${hdr_dom}`)) {
connection.results.add(this, { pass: file, whitelist: true, emit: true })
return next()
}
if (this.in_list('domain', 'any', hdr_dom)) {
connection.results.add(this, {
fail: `${file}(${hdr_dom})`,
blacklist: true,
emit: true,
})
return next(DENY, 'Email from that domain is not accepted here.')
}
connection.results.add(this, { msg: 'unlisted(any)' })
next()
}
exports.in_list = function (type, phase, address) {
if (this.list[type][phase] === undefined) {
console.log(`phase not defined: ${phase}`)
return false
}
if (!address) return false
if (this.list[type][phase][address.toLowerCase()]) return true
return false
}
exports.in_re_list = function (type, phase, address) {
if (!this.list_re[type][phase]) {
return false
}
if (!this.cfg.re[type][phase].source) {
this.logdebug(`empty file: ${this.cfg.re[type][phase]}`)
} else {
this.logdebug(
`checking ${address} against ` + `${this.cfg.re[type][phase].source}`,
)
}
return this.list_re[type][phase].test(address)
}
exports.load_file = function (type, phase) {
if (!this.cfg.check[phase]) {
this.logdebug(`skipping ${this.cfg[type][phase]}`)
return
}
const file_name = this.cfg[type][phase]
// load config with a self-referential callback
const list = this.config.get(file_name, 'list', () => {
this.load_file(type, phase)
})
// init the list store, type is white or black
if (!this.list) this.list = { type: {} }
if (!this.list[type]) this.list[type] = {}
// toLower when loading spends a fraction of a second at load time
// to save millions of seconds during run time.
const listAsHash = {} // store as hash for speedy lookups
for (const entry of list) {
listAsHash[entry.toLowerCase()] = true
}
this.list[type][phase] = listAsHash
}
exports.load_re_file = function (type, phase) {
if (!this.cfg.check[phase]) {
this.logdebug(`skipping ${this.cfg.re[type][phase]}`)
return
}
const plugin = this
const regex_list = utils.valid_regexes(
plugin.config.get(plugin.cfg.re[type][phase], 'list', () => {
plugin.load_re_file(type, phase)
}),
)
// initialize the list store
if (!this.list_re) this.list_re = { type: {} }
if (!this.list_re[type]) this.list_re[type] = {}
// compile the regexes at the designated location
this.list_re[type][phase] = new RegExp(`^(${regex_list.join('|')})$`, 'i')
}
exports.load_domain_file = function (type, phase) {
if (!this.cfg.check[phase]) {
this.logdebug(`skipping ${this.cfg[type][phase]}`)
return
}
const file_name = this.cfg[type][phase]
const list = this.config.get(file_name, 'list', () => {
this.load_domain_file(type, phase)
})
// init the list store, if needed
if (!this.list) this.list = { type: {} }
if (!this.list[type]) this.list[type] = {}
// lowercase list items at load (much faster than at run time)
for (const entry of list) {
if (entry[0] === '!') {
// whitelist entry
this.list[type][phase][entry.toLowerCase()] = true
continue
}
if (/@/.test(entry[0])) {
// email address
this.list[type][phase][entry.toLowerCase()] = true
continue
}
const d = tlds.get_organizational_domain(entry)
if (!d) continue
this.list[type][phase][d.toLowerCase()] = true
}
}