2023-04-30 13:06:37 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import dkim
|
|
|
|
import glob
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import pathlib
|
2023-04-30 16:11:26 +02:00
|
|
|
import shutil
|
2023-04-30 13:06:37 +02:00
|
|
|
import smtplib
|
|
|
|
import sqlite3
|
|
|
|
import stat
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import tempfile
|
|
|
|
import time
|
|
|
|
|
|
|
|
ADDR_FROM = "test.from@example.org"
|
|
|
|
ADDR_TO = "test@example.com"
|
|
|
|
DB_NAME = "key-db.sqlite3"
|
|
|
|
DEFAULT_PORT = 2525
|
|
|
|
|
2023-04-30 19:02:07 +02:00
|
|
|
|
2023-04-30 18:54:27 +02:00
|
|
|
def fail(message):
|
|
|
|
print(message, file=sys.stderr)
|
|
|
|
sys.exit(1)
|
2023-04-30 13:06:37 +02:00
|
|
|
|
2023-04-30 19:02:07 +02:00
|
|
|
|
2023-04-30 13:06:37 +02:00
|
|
|
def cp_tmp_file(path, executable=False):
|
|
|
|
file = tempfile.NamedTemporaryFile(suffix=f"-{path.name}", delete=False)
|
|
|
|
with open(path, mode="rb") as f:
|
|
|
|
file.write(f.read())
|
|
|
|
file.flush()
|
|
|
|
flags = stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH
|
|
|
|
if executable:
|
|
|
|
flags = flags | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH
|
|
|
|
os.chmod(file.name, flags)
|
|
|
|
file.close()
|
|
|
|
return file
|
|
|
|
|
|
|
|
|
|
|
|
def get_cmd_filter_dkimout(test_dir, algorithm, canonicalization, target):
|
|
|
|
filter_path = test_dir.parent / "target" / target / "filter-dkimout"
|
|
|
|
filter_path = cp_tmp_file(filter_path, executable=True).name
|
|
|
|
db_path = test_dir / DB_NAME
|
|
|
|
db_path = cp_tmp_file(db_path).name
|
|
|
|
return (
|
|
|
|
filter_path,
|
|
|
|
db_path,
|
|
|
|
f"{filter_path} --algorithm '{algorithm}' --canonicalization '{canonicalization}' --key-data-base '{db_path}' --domain 'example.com' --domain 'example.org' --dns-update-cmd 'builtin:none'",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def get_opensmtpd_config(port, filter_cmd, maildir_path):
|
|
|
|
cfg_content = f"""# OpenSMTPD test configuration
|
|
|
|
|
|
|
|
# DKIM filter
|
|
|
|
filter "dkim" proc-exec "{filter_cmd}"
|
|
|
|
|
|
|
|
# Users
|
|
|
|
table vuser {{ "test" = "1000:100:{maildir_path}" }}
|
|
|
|
|
|
|
|
# Listening
|
2023-04-30 16:54:57 +02:00
|
|
|
listen on 127.0.0.1 port {port} hostname localhost filter "dkim"
|
|
|
|
listen on ::1 port {port} hostname localhost filter "dkim"
|
2023-04-30 13:06:37 +02:00
|
|
|
|
|
|
|
# Delivering
|
|
|
|
action "deliver" maildir userbase <vuser>
|
|
|
|
match from any for any action "deliver"
|
|
|
|
"""
|
|
|
|
cfg_file = tempfile.NamedTemporaryFile(prefix="smtpd-", suffix=".conf")
|
|
|
|
cfg_file.write(cfg_content.encode())
|
|
|
|
cfg_file.flush()
|
|
|
|
return cfg_file
|
|
|
|
|
|
|
|
|
|
|
|
def get_smtp_session(port):
|
|
|
|
return smtplib.SMTP(host="localhost", port=port)
|
|
|
|
|
|
|
|
|
|
|
|
def send_msg(smtp, msg_file):
|
|
|
|
with open(msg_file) as f:
|
|
|
|
msg = f.read()
|
|
|
|
smtp.sendmail(ADDR_FROM, ADDR_TO, msg)
|
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
def custom_get_txt(name, timeout=5):
|
|
|
|
db_path = pathlib.Path(__file__).parent.resolve() / DB_NAME
|
|
|
|
algs_assoc = {
|
|
|
|
"ed25519-sha256": "ed25519",
|
|
|
|
"rsa2048-sha256": "rsa",
|
|
|
|
"rsa3072-sha256": "rsa",
|
|
|
|
"rsa4096-sha256": "rsa",
|
|
|
|
}
|
|
|
|
name = name.decode("UTF-8")
|
|
|
|
selector, domain = name.split("._domainkey.")
|
|
|
|
if domain.endswith("."):
|
|
|
|
domain = domain[:-1]
|
|
|
|
con = sqlite3.connect(db_path)
|
|
|
|
cur = con.cursor()
|
|
|
|
res = cur.execute(
|
|
|
|
"SELECT algorithm, public_key FROM key_db WHERE selector = ? AND sdid = ? LIMIT 1",
|
|
|
|
(selector, domain),
|
|
|
|
)
|
|
|
|
key = res.fetchone()
|
|
|
|
if key:
|
|
|
|
algorithm = algs_assoc[key[0]]
|
|
|
|
key = key[1]
|
|
|
|
key = f"v=DKIM1; k={algorithm}; p={key}"
|
|
|
|
return key
|
|
|
|
|
|
|
|
|
|
|
|
def test_dkim(message_path):
|
|
|
|
with open(message_path, mode="rb") as f:
|
|
|
|
msg = f.read()
|
|
|
|
d = dkim.DKIM(msg, logger=logging)
|
|
|
|
if d.verify(dnsfunc=custom_get_txt):
|
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
2023-04-30 16:11:26 +02:00
|
|
|
def start_opensmtpd(cfg_path):
|
|
|
|
args = [
|
|
|
|
shutil.which("sudo"),
|
|
|
|
shutil.which("smtpd"),
|
|
|
|
"-d",
|
|
|
|
"-f",
|
|
|
|
cfg_path.name,
|
|
|
|
]
|
2023-04-30 16:30:41 +02:00
|
|
|
p = subprocess.Popen(args)
|
2023-04-30 16:11:26 +02:00
|
|
|
time.sleep(5)
|
|
|
|
return p.pid
|
|
|
|
|
|
|
|
|
|
|
|
def kill_opensmtpd(pid):
|
2023-04-30 18:54:27 +02:00
|
|
|
if pid is not None:
|
|
|
|
subprocess.Popen([shutil.which("sudo"), shutil.which("kill"), f"{pid}"])
|
2023-04-30 16:11:26 +02:00
|
|
|
|
|
|
|
|
2023-04-30 17:25:53 +02:00
|
|
|
def fix_perms(path):
|
|
|
|
subprocess.Popen([shutil.which("sudo"), shutil.which("chmod"), "-R", "777", path])
|
|
|
|
|
|
|
|
|
2023-04-30 18:04:13 +02:00
|
|
|
def get_maildir():
|
|
|
|
maildir = tempfile.TemporaryDirectory(prefix="Maildir_")
|
|
|
|
flags = (
|
|
|
|
stat.S_IRUSR
|
|
|
|
| stat.S_IWUSR
|
|
|
|
| stat.S_IXUSR
|
|
|
|
| stat.S_IRGRP
|
|
|
|
| stat.S_IWGRP
|
|
|
|
| stat.S_IXGRP
|
|
|
|
| stat.S_IROTH
|
|
|
|
| stat.S_IWOTH
|
|
|
|
| stat.S_IXOTH
|
|
|
|
)
|
|
|
|
os.chmod(maildir.name, flags)
|
|
|
|
return maildir
|
|
|
|
|
2023-04-30 19:02:07 +02:00
|
|
|
|
2023-04-30 18:06:24 +02:00
|
|
|
def start_tests(test_dir, smtp_port, canonicalization):
|
2023-04-30 13:06:37 +02:00
|
|
|
# Sending emails to OpenSMTPD
|
2023-04-30 18:04:13 +02:00
|
|
|
maildir = get_maildir()
|
2023-04-30 13:06:37 +02:00
|
|
|
f, d, filter_cmd = get_cmd_filter_dkimout(
|
2023-04-30 18:06:24 +02:00
|
|
|
test_dir, "ed25519-sha256", canonicalization, "debug"
|
2023-04-30 13:06:37 +02:00
|
|
|
)
|
|
|
|
nb = 0
|
|
|
|
nb_total = 0
|
2023-04-30 16:11:26 +02:00
|
|
|
pid_smtpd = None
|
2023-04-30 13:06:37 +02:00
|
|
|
try:
|
|
|
|
cfg_path = get_opensmtpd_config(smtp_port, filter_cmd, maildir.name)
|
2023-04-30 16:11:26 +02:00
|
|
|
pid_smtpd = start_opensmtpd(cfg_path)
|
2023-04-30 13:06:37 +02:00
|
|
|
with get_smtp_session(smtp_port) as smtp_session:
|
|
|
|
for test_msg in glob.iglob(f"{test_dir}/*.msg"):
|
|
|
|
nb_total += 1
|
|
|
|
nb += send_msg(smtp_session, test_msg)
|
2023-04-30 19:08:02 +02:00
|
|
|
except Exception:
|
2023-04-30 18:54:27 +02:00
|
|
|
kill_opensmtpd(pid_smtpd)
|
2023-04-30 19:08:02 +02:00
|
|
|
raise
|
2023-04-30 13:06:37 +02:00
|
|
|
finally:
|
|
|
|
os.remove(f)
|
|
|
|
os.remove(d)
|
|
|
|
msg = "messages" if nb > 1 else "message"
|
|
|
|
print(f"{nb} {msg} delivered")
|
|
|
|
nb_failed = nb_total - nb
|
|
|
|
if nb_failed > 0:
|
|
|
|
msg = "messages" if nb_failed > 1 else "message"
|
2023-04-30 18:54:27 +02:00
|
|
|
fail(f"{nb_failed} {msg} could not be delivered")
|
2023-04-30 13:06:37 +02:00
|
|
|
|
|
|
|
# Testing DKIM signatures
|
|
|
|
nb_dkim_ok = 0
|
|
|
|
nb_dkim_total = 0
|
|
|
|
maildir_glob = f"{maildir.name}/Maildir/new/*"
|
2023-04-30 17:08:22 +02:00
|
|
|
nb_sleep = 0
|
2023-04-30 18:54:27 +02:00
|
|
|
while True:
|
2023-04-30 17:08:22 +02:00
|
|
|
nb_sleep += 1
|
|
|
|
if nb_sleep > 6:
|
2023-04-30 18:54:27 +02:00
|
|
|
fail("Some messages have not been received.")
|
2023-04-30 17:08:22 +02:00
|
|
|
time.sleep(nb_sleep)
|
2023-04-30 19:31:41 +02:00
|
|
|
fix_perms(f"{maildir.name}/Maildir")
|
2023-04-30 18:54:27 +02:00
|
|
|
if len(glob.glob(maildir_glob)) == nb_total:
|
|
|
|
break
|
|
|
|
kill_opensmtpd(pid_smtpd)
|
2023-04-30 13:06:37 +02:00
|
|
|
for test_msg in glob.glob(maildir_glob):
|
|
|
|
nb_dkim_total += 1
|
|
|
|
nb_dkim_ok += test_dkim(test_msg)
|
|
|
|
msg = "messages" if nb_dkim_ok > 1 else "message"
|
|
|
|
print(f"{nb_dkim_ok} {msg} passed the DKIM signature test")
|
|
|
|
nb_failed = nb_dkim_total - nb_dkim_ok
|
|
|
|
if nb_failed > 0:
|
|
|
|
msg = "messages" if nb_failed > 1 else "message"
|
2023-04-30 18:54:27 +02:00
|
|
|
fail(f"{nb_failed} {msg} failed the DKIM signature test")
|
2023-04-30 13:06:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
test_dir = pathlib.Path(__file__).parent.resolve()
|
|
|
|
os.chdir(test_dir.parent)
|
2023-04-30 18:06:24 +02:00
|
|
|
start_tests(test_dir, DEFAULT_PORT, "simple/simple")
|
2023-04-30 19:02:51 +02:00
|
|
|
start_tests(test_dir, DEFAULT_PORT, "relaxed/relaxed")
|
2023-04-30 13:06:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|