3 import sys, os, getopt, binascii, json, pprint, signal, time, threading
5 import Crypto.PublicKey.RSA, Crypto.Random, Crypto.Hash.SHA256, Crypto.Signature.PKCS1_v1_5
7 class msgerror(Exception):
9 out.write("acmecert: undefined error\n")
11 service = "https://acme-v02.api.letsencrypt.org/directory"
15 if _directory is None:
16 with req(service) as resp:
17 _directory = json.loads(resp.read().decode("utf-8"))
21 return binascii.b2a_base64(dat).decode("us-ascii").translate({43: 45, 47: 95, 61: None}).strip()
25 if len(h) % 2 == 1: h = "0" + h
26 return base64url(binascii.a2b_hex(h))
29 with urllib.request.urlopen(directory()["newNonce"]) as resp:
31 return resp.headers["Replay-Nonce"]
33 def req(url, data=None, ctype=None, headers={}, method=None, **kws):
34 if data is not None and not isinstance(data, bytes):
35 data = json.dumps(data).encode("utf-8")
36 ctype = "application/jose+json"
37 req = urllib.request.Request(url, data=data, method=method)
38 for hnam, hval in headers.items():
39 req.add_header(hnam, hval)
41 req.add_header("Content-Type", ctype)
42 return urllib.request.urlopen(req)
44 def jreq(url, data, auth):
45 authdata = {"alg": "RS256", "url": url, "nonce": getnonce()}
46 authdata.update(auth.authdata())
47 authdata = base64url(json.dumps(authdata).encode("us-ascii"))
51 data = base64url(json.dumps(data).encode("us-ascii"))
52 seal = base64url(auth.sign(("%s.%s" % (authdata, data)).encode("us-ascii")))
53 enc = {"protected": authdata, "payload": data, "signature": seal}
54 with req(url, data=enc) as resp:
55 return json.loads(resp.read().decode("utf-8")), resp.headers
57 class certificate(object):
60 # No X509 parser for Python?
61 import subprocess, re, calendar
62 with subprocess.Popen(["openssl", "x509", "-noout", "-enddate"], stdin=subprocess.PIPE, stdout=subprocess.PIPE) as openssl:
63 openssl.stdin.write(self.data.encode("us-ascii"))
65 resp = openssl.stdout.read().decode("utf-8")
66 if openssl.wait() != 0:
67 raise Exception("openssl error")
68 m = re.search(r"notAfter=(.*)$", resp)
69 if m is None: raise Exception("unexpected openssl reply: %r" % (resp,))
70 return calendar.timegm(time.strptime(m.group(1), "%b %d %H:%M:%S %Y GMT"))
72 def expiring(self, timespec):
73 if timespec.endswith("y"):
74 timespec = int(timespec[:-1]) * 365 * 86400
75 elif timespec.endswith("m"):
76 timespec = int(timespec[:-1]) * 30 * 86400
77 elif timespec.endswith("w"):
78 timespec = int(timespec[:-1]) * 7 * 86400
79 elif timespec.endswith("d"):
80 timespec = int(timespec[:-1]) * 86400
81 elif timespec.endswith("h"):
82 timespec = int(timespec[:-1]) * 3600
84 timespec = int(timespec)
85 return (self.enddate - time.time()) < timespec
93 class signreq(object):
95 # No PCKS10 parser for Python?
97 with subprocess.Popen(["openssl", "req", "-noout", "-text"], stdin=subprocess.PIPE, stdout=subprocess.PIPE) as openssl:
98 openssl.stdin.write(self.data.encode("us-ascii"))
100 resp = openssl.stdout.read().decode("utf-8")
101 if openssl.wait() != 0:
102 raise Exception("openssl error")
103 m = re.search(r"X509v3 Subject Alternative Name:[^\n]*\n\s*((\w+:\S+,\s*)*\w+:\S+)\s*\n", resp)
107 for nm in m.group(1).split(","):
109 typ, nm = nm.split(":", 1)
116 with subprocess.Popen(["openssl", "req", "-outform", "der"], stdin=subprocess.PIPE, stdout=subprocess.PIPE) as openssl:
117 openssl.stdin.write(self.data.encode("us-ascii"))
118 openssl.stdin.close()
119 resp = openssl.stdout.read()
120 if openssl.wait() != 0:
121 raise Exception("openssl error")
127 self.data = fp.read()
130 class jwkauth(object):
131 def __init__(self, key):
135 return {"jwk": {"kty": "RSA", "e": ebignum(self.key.e), "n": ebignum(self.key.n)}}
137 def sign(self, data):
138 dig = Crypto.Hash.SHA256.new()
140 return Crypto.Signature.PKCS1_v1_5.new(self.key).sign(dig)
142 class account(object):
143 def __init__(self, uri, key):
148 return {"kid": self.uri}
150 def sign(self, data):
151 dig = Crypto.Hash.SHA256.new()
153 return Crypto.Signature.PKCS1_v1_5.new(self.key).sign(dig)
156 data, headers = jreq(self.uri, None, self)
160 data = self.getinfo()
161 if data.get("status", "") != "valid":
162 raise Exception("account is not valid: %s" % (data.get("status", "\"\"")))
164 def write(self, out):
165 out.write("%s\n" % (self.uri,))
166 out.write("%s\n" % (self.key.exportKey().decode("us-ascii"),))
172 raise Exception("missing account URI")
174 key = Crypto.PublicKey.RSA.importKey(fp.read())
177 class htconfig(object):
186 if len(words) < 1 or ln[0] == '#':
188 if words[0] == "root":
189 self.roots[words[1]] = words[2]
191 sys.stderr.write("acmecert: warning: unknown htconfig directive: %s\n" % (words[0]))
194 def register(keysize=4096):
195 key = Crypto.PublicKey.RSA.generate(keysize, Crypto.Random.new().read)
196 # jwk = {"kty": "RSA", "e": ebignum(key.e), "n": ebignum(key.n)}
197 # cjwk = json.dumps(jwk, separators=(',', ':'), sort_keys=True)
198 data, headers = jreq(directory()["newAccount"], {"termsOfServiceAgreed": True}, jwkauth(key))
199 return account(headers["Location"], key)
201 def mkorder(acct, csr):
202 data, headers = jreq(directory()["newOrder"], {"identifiers": [{"type": "dns", "value": dn} for dn in csr.domains()]}, acct)
203 data["acmecert.location"] = headers["Location"]
206 def httptoken(acct, ch):
207 jwk = {"kty": "RSA", "e": ebignum(acct.key.e), "n": ebignum(acct.key.n)}
208 dig = Crypto.Hash.SHA256.new()
209 dig.update(json.dumps(jwk, separators=(',', ':'), sort_keys=True).encode("us-ascii"))
210 khash = base64url(dig.digest())
211 return ch["token"], ("%s.%s" % (ch["token"], khash))
213 def authorder(acct, htconf, orderid):
214 order, headers = jreq(orderid, None, acct)
221 raise Exception("challenges refuse to become valid even after 5 retries")
222 for authuri in order["authorizations"]:
223 auth, headers = jreq(authuri, None, acct)
224 if auth["status"] == "valid":
226 elif auth["status"] == "pending":
229 raise Exception("unknown authorization status: %s" % (auth["status"],))
231 if auth["identifier"]["type"] != "dns":
232 raise Exception("unknown authorization type: %s" % (auth["identifier"]["type"],))
233 dn = auth["identifier"]["value"]
234 if dn not in htconf.roots:
235 raise Exception("no configured ht-root for domain name %s" % (dn,))
236 for ch in auth["challenges"]:
237 if ch["type"] == "http-01":
240 raise Exception("no http-01 challenge for %s" % (dn,))
241 root = htconf.roots[dn]
242 tokid, tokval = httptoken(acct, ch)
243 tokpath = os.path.join(root, tokid);
244 fp = open(tokpath, "w")
248 with req("http://%s/.well-known/acme-challenge/%s" % (dn, tokid)) as resp:
249 if resp.read().decode("utf-8") != tokval:
250 raise Exception("challenge from %s does not match written value" % (dn,))
252 resp, headers = jreq(ch["url"], {}, acct)
253 if resp["status"] == "processing":
255 elif resp["status"] == "pending":
256 # I don't think this should happen, but it
257 # does. LE bug? Anyway, just retry.
262 elif resp["status"] == "valid":
265 raise Exception("unexpected challenge status for %s when validating: %s" % (dn, resp["status"]))
267 raise Exception("challenge processing timed out for %s" % (dn,))
271 def finalize(acct, csr, orderid):
272 order, headers = jreq(orderid, None, acct)
273 if order["status"] == "valid":
275 elif order["status"] == "ready":
276 jreq(order["finalize"], {"csr": base64url(csr.der())}, acct)
278 resp, headers = jreq(orderid, None, acct)
279 if resp["status"] == "processing":
281 elif resp["status"] == "valid":
285 raise Exception("unexpected order status when finalizing: %s" % resp["status"])
287 raise Exception("order finalization timed out")
289 raise Exception("unexpected order state when finalizing: %s" % (order["status"],))
290 with req(order["certificate"]) as resp:
291 return resp.read().decode("us-ascii")
293 class maybeopen(object):
294 def __init__(self, name, mode):
302 raise ValueError(mode)
305 self.fp = open(name, mode)
310 def __exit__(self, *excinfo):
315 invdata = threading.local()
318 class usageerr(msgerror):
320 self.cmd = invdata.cmd
322 def report(self, out):
323 out.write("%s\n" % (self.cmd.__doc__,))
326 "usage: acmecert reg [OUTPUT-FILE]"
329 with maybeopen(args[1] if len(args) > 1 else "-", "w") as fp:
331 commands["reg"] = cmd_reg
333 def cmd_validate_acct(args):
334 "usage: acmecert validate-acct ACCOUNT-FILE"
335 if len(args) < 2: raise usageerr()
336 with maybeopen(args[1], "r") as fp:
337 account.read(fp).validate()
338 commands["validate-acct"] = cmd_validate_acct
340 def cmd_acct_info(args):
341 "usage: acmecert acct-info ACCOUNT-FILE"
342 if len(args) < 2: raise usageerr()
343 with maybeopen(args[1], "r") as fp:
344 pprint.pprint(account.read(fp).getinfo())
345 commands["acct-info"] = cmd_acct_info
348 "usage: acmecert order ACCOUNT-FILE CSR [OUTPUT-FILE]"
349 if len(args) < 3: raise usageerr()
350 with maybeopen(args[1], "r") as fp:
351 acct = account.read(fp)
352 with maybeopen(args[2], "r") as fp:
353 csr = signreq.read(fp)
354 order = mkorder(acct, csr)
355 with maybeopen(args[3] if len(args) > 3 else "-", "w") as fp:
356 fp.write("%s\n" % (order["acmecert.location"]))
357 commands["order"] = cmd_order
359 def cmd_http_auth(args):
360 "usage: acmecert http-auth ACCOUNT-FILE HTTP-CONFIG {ORDER-ID|ORDER-FILE}"
361 if len(args) < 4: raise usageerr()
362 with maybeopen(args[1], "r") as fp:
363 acct = account.read(fp)
364 with maybeopen(args[2], "r") as fp:
365 htconf = htconfig.read(fp)
369 with maybeopen(args[3], "r") as fp:
370 orderid = fp.readline().strip()
371 authorder(acct, htconf, orderid)
372 commands["http-auth"] = cmd_http_auth
375 "usage: acmecert get ACCOUNT-FILE CSR {ORDER-ID|ORDER-FILE}"
376 if len(args) < 4: raise usageerr()
377 with maybeopen(args[1], "r") as fp:
378 acct = account.read(fp)
379 with maybeopen(args[2], "r") as fp:
380 csr = signreq.read(fp)
384 with maybeopen(args[3], "r") as fp:
385 orderid = fp.readline().strip()
386 sys.stdout.write(finalize(acct, csr, orderid))
387 commands["get"] = cmd_get
389 def cmd_http_order(args):
390 "usage: acmecert http-order ACCOUNT-FILE CSR HTTP-CONFIG [OUTPUT-FILE]"
391 if len(args) < 4: raise usageerr()
392 with maybeopen(args[1], "r") as fp:
393 acct = account.read(fp)
394 with maybeopen(args[2], "r") as fp:
395 csr = signreq.read(fp)
396 with maybeopen(args[3], "r") as fp:
397 htconf = htconfig.read(fp)
398 orderid = mkorder(acct, csr)["acmecert.location"]
399 authorder(acct, htconf, orderid)
400 with maybeopen(args[4] if len(args) > 4 else "-", "w") as fp:
401 fp.write(finalize(acct, csr, orderid))
402 commands["http-order"] = cmd_http_order
404 def cmd_check_cert(args):
405 "usage: acmecert check-cert CERT-FILE TIME-SPEC"
406 if len(args) < 3: raise usageerr()
407 with maybeopen(args[1], "r") as fp:
408 crt = certificate.read(fp)
409 sys.exit(1 if crt.expiring(args[2]) else 0)
410 commands["check-cert"] = cmd_check_cert
412 def cmd_directory(args):
413 "usage: acmecert directory"
414 pprint.pprint(directory())
415 commands["directory"] = cmd_directory
418 out.write("usage: acmecert [-D SERVICE] COMMAND [ARGS...]\n")
419 out.write(" acmecert -h [COMMAND]\n")
420 buf = " COMMAND is any of: "
423 if len(buf) + len(cmd) > 70:
424 out.write("%s\n" % (buf,))
432 out.write("%s\n" % (buf,))
436 opts, args = getopt.getopt(argv[1:], "hD:")
440 cmd = commands.get(args[0])
442 sys.stderr.write("acmecert: unknown command: %s\n" % (args[0],))
444 sys.stdout.write("%s\n" % (cmd.__doc__,))
453 cmd = commands.get(args[0])
455 sys.stderr.write("acmecert: unknown command: %s\n" % (args[0],))
464 except msgerror as exc:
465 exc.report(sys.stderr)
468 if __name__ == "__main__":
471 except KeyboardInterrupt:
472 signal.signal(signal.SIGINT, signal.SIG_DFL)
473 os.kill(os.getpid(), signal.SIGINT)