-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacme-process.py
executable file
·294 lines (240 loc) · 8 KB
/
acme-process.py
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
#!/usr/bin/env python3
# Copyright 2016-2017,2020,2025 Simon Arlott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import datetime
import configparser
import fcntl
import hashlib
import os
import random
import re
import subprocess
import sys
import syslog
import traceback
LINK_RE = re.compile(r'^Link: <(?P<url>[^>]+)>;rel="up"$')
CN_RE = re.compile(r"Subject:.*? CN=([^\s,;/]+)")
SAN_RE = re.compile(r"X509v3 Subject Alternative Name: \n +([^\n]+)\n")
home = os.environ["HOME"]
etcdir = os.path.join(home, "etc")
def cert_process(name, cfg):
ari = ""
if os.path.exists(cfg["req"]):
request = False
configured = cert_get_configured_names(name, cfg)
if os.path.exists(cfg["cert"]):
(ari, start, end) = cert_renewalinfo(name, cfg)
if ari is not None and start is not None and end is not None:
now = datetime.datetime.now(tz=datetime.timezone.utc)
renew_at = start + datetime.timedelta(seconds=random.randrange((end - start).total_seconds()))
next_run = now + datetime.timedelta(hours=cfg.getint("hours"))
if now >= renew_at or end < next_run:
syslog.syslog("{0}: will expire soon".format(name))
request = True
else:
ari = ""
with subprocess.Popen(["openssl", "x509", "-noout", "-checkend", str(86400 * cfg.getint("days")), "-in", cfg["cert"]],
stdin=subprocess.DEVNULL,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL) as proc:
retcode = proc.wait(timeout=30)
if retcode != 0:
syslog.syslog("{0}: will expire soon".format(name))
request = True
existing = cert_get_existing_names(name, cfg)
if configured - existing:
syslog.syslog("{0}: has new names: {1}".format(name, configured - existing))
if not configured & existing:
ari = ""
request = True
elif not os.path.exists(os.path.dirname(cfg["cert"])):
syslog.syslog("{0}: cert directory does not exist".format(name))
return
else:
syslog.syslog("{0}: cert file does not exist".format(name))
request = True
csr_names = cert_get_request_names(name, cfg)
if configured - csr_names:
syslog.syslog("{0}: request is missing names: {1}".format(name, configured - csr_names))
request = False
elif csr_names - configured:
syslog.syslog("{0}: request has extra names: {1}".format(name, csr_names - configured))
request = False
if request:
syslog.syslog("{0}: requesting certificate".format(name))
if cert_request(name, cfg, ari):
syslog.syslog("{0}: certificate updated".format(name))
def cert_get_existing_names(name, cfg):
names = set()
with subprocess.Popen(["openssl", "x509", "-in", cfg["cert"], "-noout", "-text"],
stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True) as proc:
(stdout, stderr) = proc.communicate()
retcode = proc.wait(timeout=30)
if retcode != 0:
print("Error processing {0}, openssl x509 returned {1}".format(name, retcode))
cn = CN_RE.search(stdout)
if cn:
names.add(cn.group(1))
sans = SAN_RE.search(stdout, re.MULTILINE|re.DOTALL)
if sans:
for san in sans.group(1).split(", "):
if san.startswith("DNS:"):
names.add(san[4:])
return names
def cert_get_request_names(name, cfg):
names = set()
with subprocess.Popen(["openssl", "req", "-in", cfg["req"], "-noout", "-text"],
stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True) as proc:
(stdout, stderr) = proc.communicate()
retcode = proc.wait(timeout=30)
if retcode != 0:
print("Error processing {0}, openssl req returned {1}".format(name, retcode))
cn = CN_RE.search(stdout)
if cn:
names.add(cn.group(1))
sans = SAN_RE.search(stdout, re.MULTILINE|re.DOTALL)
if sans:
for san in sans.group(1).split(", "):
if san.startswith("DNS:"):
names.add(san[4:])
return names
def cert_get_configured_names(name, cfg):
with open(cfg["config"], "r") as f:
pass
config = configparser.ConfigParser()
config.read(cfg["config"])
return set(config.sections())
def cert_renewalinfo(name, cfg):
retcode = 0
with subprocess.Popen(["/usr/local/lib/acme-tiny/acme_tiny.py",
"--quiet",
"--directory", cfg["directory"],
"renewalinfo",
"--account-key", cfg["account_key"],
"--cert", cfg["cert"],
],
stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True) as proc:
(stdout, stderr) = proc.communicate(timeout=600)
retcode = proc.wait(timeout=30)
if retcode == 0:
ari = None
start = None
end = None
for line in stdout.splitlines():
if line.startswith("OK: "):
(ari, start, end) = line.split(" ")[1:4]
if start.endswith("Z"):
start = datetime.datetime.fromisoformat(start[:-1]).replace(tzinfo=datetime.timezone.utc)
else:
start = None
if end.endswith("Z"):
end = datetime.datetime.fromisoformat(end[:-1]).replace(tzinfo=datetime.timezone.utc)
else:
end = None
syslog.syslog("{0}: renewal info: ari=\"{1}\" start=\"{2}\" end=\"{3}\"".format(name, ari, str(start), str(end)))
return (ari, start, end)
else:
print("Error processing {0!r}, acme-tiny returned {1}\n{2}\n{3}".format(name, retcode, stdout, stderr))
return (None, None, None)
def cert_request(name, cfg, ari=""):
syslog.syslog("{0}...".format(name))
try:
os.unlink(cfg["cert"] + "-new")
except FileNotFoundError:
pass
try:
os.unlink(cfg["chain"] + "-new")
except FileNotFoundError:
pass
try:
os.unlink(cfg["fullchain"] + "-new")
except FileNotFoundError:
pass
retcode = 0
with subprocess.Popen(["/usr/local/lib/acme-tiny/acme_tiny.py",
"--verbose",
"--syslog", name,
"--directory", cfg["directory"],
"cert",
"--account-key", cfg["account_key"],
"--config", cfg["config"],
"--req", cfg["req"],
"--path", "C = US, O = Internet Security Research Group, CN = ISRG Root X1",
"--ari", ari,
],
stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True) as proc:
(stdout, stderr) = proc.communicate(timeout=600)
retcode = proc.wait(timeout=30)
syslog.syslog("{0}: retcode={1}".format(name, retcode))
if retcode == 0:
ee_cert = ""
issuer_cert = ""
ee = True
for line in stdout.splitlines():
if line == "":
continue
if ee:
ee_cert += line + "\n"
else:
issuer_cert += line + "\n"
if line == "-----END CERTIFICATE-----":
ee = False
if not ee_cert or not issuer_cert:
raise ValueError("Invalid certificate chain: " + repr(stdout))
with open(cfg["cert"] + "-new", "w") as f:
f.write(ee_cert)
with open(cfg["chain"] + "-new", "w") as f:
f.write(issuer_cert)
with open(cfg["fullchain"] + "-new", "w") as f:
f.write(ee_cert + issuer_cert)
os.rename(cfg["chain"] + "-new", cfg["chain"])
os.rename(cfg["fullchain"] + "-new", cfg["fullchain"])
os.rename(cfg["cert"] + "-new", cfg["cert"])
return True
else:
print("Error processing {0!r}, acme-tiny returned {1}\n{2}\n{3}".format(name, retcode, stdout, stderr))
return False
def main():
if len(sys.argv) != 2:
print("Usage: acme-process <config>")
return 0
with open(os.path.join(etcdir, "process.lock"), "r+b") as f:
fcntl.lockf(f, fcntl.LOCK_EX)
cfg = configparser.ConfigParser()
cfg.read(sys.argv[1])
for cert_cfg in set(cfg.sections()):
try:
cert_process(cert_cfg, cfg[cert_cfg])
except KeyboardInterrupt:
raise
except:
print("Error processing {0!r}:".format(cert_cfg))
traceback.print_exc()
print()
return 0
if __name__ == "__main__":
sys.exit(main())