acmec/src/main.rs

466 lines
14 KiB
Rust
Raw Normal View History

2022-04-09 20:56:42 +00:00
// acmec
// a small (and incomplete) acme client written in rust
// implements some of https://www.rfc-editor.org/rfc/rfc8555.html
/*
ISC License
2022-12-27 10:27:25 +00:00
Copyright (c) 2022, aiden (aiden@cmp.bz)
2022-04-09 20:56:42 +00:00
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
// jws uses account key
2022-04-18 01:22:28 +00:00
// csrs embed public keys of keypairs generated per certificate; csr representations are placed in a jws payload
2022-04-09 20:56:42 +00:00
use std::env;
use std::fs::File;
use std::os::unix::ffi::OsStrExt;
use std::error::Error;
#[derive(std::fmt::Debug)]
2022-04-13 21:46:50 +00:00
struct ThrowError<T> {
msg: T,
2022-04-09 20:56:42 +00:00
}
2022-04-13 21:46:50 +00:00
impl <T: std::fmt::Debug + std::fmt::Display>std::fmt::Display for ThrowError<T> {
2022-04-09 20:56:42 +00:00
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
return write!(f, "{}", self.msg);
}
}
2022-04-13 21:46:50 +00:00
impl <T: std::fmt::Debug + std::fmt::Display>Error for ThrowError<T> {}
fn throw<T>(msg: T) -> ThrowError<T> {
return ThrowError{
2022-04-09 20:56:42 +00:00
msg: msg,
2022-04-13 21:46:50 +00:00
};
2022-04-09 20:56:42 +00:00
}
use openssl::rsa::Rsa;
use openssl::sign::Signer;
use openssl::hash::MessageDigest;
use openssl::pkey;
use openssl::x509::X509Req;
use openssl::x509::extension::SubjectAlternativeName;
use openssl::stack::Stack;
use std::io::Write;
use std::io::Seek;
use openssl::base64::{encode_block as b64e};
fn b64ue(u8s: &[u8]) -> String {
return b64e(u8s).replace("+", "-").replace("/", "_").replace("=", "");
}
use reqwest;
use serde;
use serde_json;
2022-04-16 21:53:08 +00:00
#[derive(Debug)]
#[derive(serde::Serialize, serde::Deserialize)]
struct AcmecOrder {
url: String,
challenges: Vec<String>,
finalize: String,
dns_names: Vec<String>,
}
#[derive(Debug)]
2022-04-09 20:56:42 +00:00
#[derive(serde::Serialize, serde::Deserialize)]
struct AcmecConfig {
// account key
pem_kp: Vec<u8>,
kid: String,
// current pending order
2022-04-16 21:53:08 +00:00
order: Option<AcmecOrder>,
2022-04-09 20:56:42 +00:00
}
2022-04-16 21:53:08 +00:00
#[derive(Debug)]
2022-04-13 21:46:50 +00:00
#[derive(serde::Serialize, serde::Deserialize)]
struct AcmeIdentifier {
value: String,
}
2022-04-16 21:53:08 +00:00
#[derive(Debug)]
2022-04-13 21:46:50 +00:00
#[derive(serde::Serialize, serde::Deserialize)]
struct AcmeChallenge {
url: String,
r#type: String,
status: String,
token: String,
}
2022-04-16 21:53:08 +00:00
#[derive(Debug)]
2022-04-13 21:46:50 +00:00
#[derive(serde::Serialize, serde::Deserialize)]
struct AcmeAuthorization {
status: String,
identifier: AcmeIdentifier,
challenges: Vec<AcmeChallenge>,
}
2022-04-16 21:53:08 +00:00
#[derive(Debug)]
2022-04-13 21:46:50 +00:00
#[derive(serde::Serialize, serde::Deserialize)]
struct AcmeOrder {
status: String,
authorizations: Vec<String>,
finalize: String,
2022-04-16 21:53:08 +00:00
certificate: Option<String>,
2022-04-13 21:46:50 +00:00
}
2022-04-09 20:56:42 +00:00
struct RelevantAcmeDirectory<'a> {
new_nonce: &'a str,
new_account: &'a str,
new_order: &'a str,
terms_of_service: &'a str,
}
const ACME_DIRECTORY: RelevantAcmeDirectory = RelevantAcmeDirectory {
2022-04-16 21:53:08 +00:00
new_nonce: "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
new_account: "https://acme-v02.api.letsencrypt.org/acme/new-acct",
new_order: "https://acme-v02.api.letsencrypt.org/acme/new-order",
2022-04-09 20:56:42 +00:00
terms_of_service: "https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf",
};
2022-04-13 21:46:50 +00:00
fn ektyn(kp: &pkey::PKey<pkey::Private>) -> Result<String, Box<dyn Error>> {
2022-04-09 20:56:42 +00:00
let rsa = kp.rsa()?;
2022-04-13 21:46:50 +00:00
return Ok(format!(
r#"{{"e":{},"kty":"RSA","n":{}}}"#,
serde_json::to_string(&(b64ue(&(rsa.e().to_vec()))))?,
2022-04-16 21:53:08 +00:00
serde_json::to_string(&(b64ue(&(rsa.n().to_vec()))))?,
2022-04-13 21:46:50 +00:00
));
}
fn token_shit(kp: &pkey::PKey<pkey::Private>, token: String) -> Result<String, Box<dyn Error>> {
/*
* aight, so, the rfcs (namely 8555 and 7638) say pretty much the following (paraphrased):
* <shit>
* Thumbprint(...) {
* 1. Construct a JSON object containing only the required
* members of a JWK representing the key and with no whitespace or
* line breaks before or after any syntactic elements and with the
* required members ordered lexicographically by the Unicode code
* points of the member names.
*
* 2. Hash the octets of the UTF-8 representation of this JSON object
* with a cryptographic hash function H.
* }
*
* keyAuthorization = token || '.' || base64url(Thumbprint(accountKey))
* The "Thumbprint" step uses the SHA-256 digest
*
* The client then computes the SHA-256 digest of the key authorization.
* The record provisioned to the DNS contains the base64url encoding of this digest.
* </shit>
*
* the json shit there is such a fuck; why use json for this?
* anyway, the shit pretty much boils down to:
* b64ue(sha256(format!("{}.{}", token, b64ue(sha256(ektyn(kp))))))
*/
let mut hasher = openssl::sha::Sha256::new();
hasher.update(ektyn(kp)?.as_bytes());
let hash = hasher.finish();
let b64u_hash = b64ue(&(hash));
let mut hasher = openssl::sha::Sha256::new();
hasher.update(format!("{}.{}", token, b64u_hash).as_bytes());
let hash = hasher.finish();
return Ok(b64ue(&(hash)));
}
2022-04-16 21:53:08 +00:00
fn jws(kp: &pkey::PKey<pkey::Private>, acct: Option<&str>, nonce: &str, url: &str, payload: &str) -> Result<String, Box<dyn Error>> {
2022-04-09 20:56:42 +00:00
let key = match acct {
Some(url) => {
format!(
2022-04-13 21:46:50 +00:00
r#""kid": {}"#,
2022-04-16 21:53:08 +00:00
serde_json::to_string(url)?,
2022-04-09 20:56:42 +00:00
)
},
None => {
2022-04-13 21:46:50 +00:00
format!(r#""jwk": {}"#, ektyn(kp)?)
2022-04-09 20:56:42 +00:00
}
};
let header = b64ue(format!(
r#"{{
"alg": "RS256",
{},
"nonce": {},
"url": {}
}}"#,
key,
2022-04-16 21:53:08 +00:00
serde_json::to_string(nonce)?,
serde_json::to_string(url)?,
2022-04-09 20:56:42 +00:00
).as_bytes());
let body = b64ue(payload.as_bytes());
let data_to_sign = format!("{}.{}", header, body);
let mut signer = Signer::new(MessageDigest::sha256(), &(kp))?;
signer.update(data_to_sign.as_bytes())?;
let signature = b64ue(&(signer.sign_to_vec()?));
return Ok(format!(
r#"{{
"protected": {},
"payload": {},
"signature": {}
}}"#,
serde_json::to_string(&(header))?,
serde_json::to_string(&(body))?,
2022-04-16 21:53:08 +00:00
serde_json::to_string(&(signature))?,
2022-04-09 20:56:42 +00:00
));
}
2022-04-16 21:53:08 +00:00
fn get_nonce(cl: &mut reqwest::blocking::Client) -> Result<String, Box<dyn Error>> {
let resp = cl.head(ACME_DIRECTORY.new_nonce).send()?;
let headers = resp.headers();
let replay_nonce = headers.get("replay-nonce").ok_or("failed to get Replay-Nonce")?;
return Ok(replay_nonce.to_str()?.to_string());
}
fn acme_post(
creds: &mut(
&mut reqwest::blocking::Client,
&pkey::PKey<pkey::Private>,
Option<&str>
),
url: &str,
payload: &str
) -> Result<reqwest::blocking::Response, Box<dyn Error>> {
let (ref mut cl, ref kp, ref kid) = creds;
return Ok(cl.post(url).body(jws(
kp,
*kid,
&(get_nonce(cl)?),
url,
payload,
)?).header("content-type", "application/jose+json").send()?);
}
2022-04-09 20:56:42 +00:00
/*
* csr (required, string): A CSR encoding the parameters for the
* certificate being requested [RFC2986]. The CSR is sent in the
* base64url-encoded version of the DER format.
*/
fn b64ue_csr(csr: X509Req) -> Result<String, Box<dyn Error>> {
return Ok(b64ue(&(csr.to_der()?)));
}
2022-04-16 21:53:08 +00:00
fn gen_csr(kp: &pkey::PKey<pkey::Private>, dns_names: &Vec<String>) -> Result<X509Req, Box<dyn Error>> {
2022-04-09 20:56:42 +00:00
let mut builder = X509Req::builder()?;
let mut alt_names = SubjectAlternativeName::new();
for dns_name in dns_names {
alt_names.dns(&(dns_name));
}
let built_alt_names = alt_names.build(&(builder.x509v3_context(None)))?;
let mut stack = Stack::new()?;
stack.push(built_alt_names)?;
builder.add_extensions(&(stack))?;
builder.set_pubkey(&(kp))?; // yes, this really will set the public key
builder.sign(&(kp), MessageDigest::sha256())?;
return Ok(builder.build());
}
2022-04-16 21:53:08 +00:00
fn create_account(cl: &mut reqwest::blocking::Client, kp: &pkey::PKey<pkey::Private>) -> Result<String, Box<dyn Error>> {
let resp = acme_post(
&mut(cl, kp, None),
ACME_DIRECTORY.new_account, "{ \"termsOfServiceAgreed\": true }",
)?;
2022-04-09 20:56:42 +00:00
if !resp.status().is_success() {
2022-04-13 21:46:50 +00:00
let text = resp.text()?;
return Err(Box::new(throw(text)));
2022-04-09 20:56:42 +00:00
}
let headers = resp.headers();
2022-04-13 21:46:50 +00:00
let location = headers.get("location").ok_or("failed to get Location")?;
2022-04-16 21:53:08 +00:00
return Ok(location.to_str()?.to_string());
2022-04-09 20:56:42 +00:00
}
fn write_cfg(file: &mut File, cfg: &AcmecConfig) -> Result<(), Box<dyn Error>> {
file.set_len(0)?;
file.seek(std::io::SeekFrom::Start(0))?;
file.write_all(serde_json::to_string(&(cfg))?.as_bytes())?;
return Ok(());
}
2022-04-16 21:53:08 +00:00
fn deactivate(path_to_config: &str, creds: &mut(
&mut reqwest::blocking::Client,
&pkey::PKey<pkey::Private>,
Option<&str>
)) -> Result<(), Box<dyn Error>> {
std::fs::remove_file(&(path_to_config))?;
acme_post(
creds,
creds.2.unwrap(), r#"{ "status": "deactivated" }"#,
)?;
2022-04-13 21:46:50 +00:00
return Ok(());
}
2022-04-09 20:56:42 +00:00
fn main() -> Result<(), Box<dyn Error>> {
2022-04-16 22:25:39 +00:00
let pem_passphrase = env::var_os("ACMEC_PASSPHRASE").expect("expected environment variable ACMEC_PASSPHRASE to be valid");
2022-04-09 20:56:42 +00:00
let mut args_iter = env::args();
args_iter.next().expect("expected program path");
let path_to_config = args_iter.next().expect("expected a config path");
let action = args_iter.next().expect("expected an action");
let mut file_options = File::options();
file_options.read(true).write(true);
if action == "create" {
let arg = args_iter.next();
if arg.is_none() || arg.unwrap() != "accept" {
panic!("use `create accept` to accept the terms of service at {}", ACME_DIRECTORY.terms_of_service);
}
file_options.create_new(true);
let mut file = file_options.open(&(path_to_config))?;
2022-04-16 21:53:08 +00:00
let mut cl = reqwest::blocking::Client::new();
let kp = pkey::PKey::from_rsa(Rsa::generate(2048)?)?;
let cfg = AcmecConfig {
pem_kp: kp.private_key_to_pem_pkcs8_passphrase(openssl::symm::Cipher::aes_256_cbc(), pem_passphrase.as_os_str().as_bytes())?,
kid: match create_account(&mut(cl), &(kp)) {
Ok(kid) => kid,
Err(err) => {
std::fs::remove_file(&(path_to_config))?;
return Err(err);
}
2022-04-09 20:56:42 +00:00
},
2022-04-16 21:53:08 +00:00
order: None,
2022-04-09 20:56:42 +00:00
};
2022-04-13 21:46:50 +00:00
if let Err(err) = write_cfg(&mut(file), &(cfg)) {
let kp = pkey::PKey::private_key_from_pem_passphrase(&(cfg.pem_kp), pem_passphrase.as_os_str().as_bytes())?;
2022-04-16 21:53:08 +00:00
deactivate(&(path_to_config), &mut(&mut(cl), &(kp), Some(&(cfg.kid))))?;
2022-04-13 21:46:50 +00:00
return Err(err);
2022-04-09 20:56:42 +00:00
};
return Ok(());
}
let mut file = file_options.open(&(path_to_config))?;
2022-04-13 21:46:50 +00:00
let mut cfg: AcmecConfig = serde_json::from_reader(&(file))?;
2022-04-16 21:53:08 +00:00
let mut cl = reqwest::blocking::Client::new();
2022-04-13 21:46:50 +00:00
let kp = pkey::PKey::private_key_from_pem_passphrase(&(cfg.pem_kp), pem_passphrase.as_os_str().as_bytes())?;
2022-04-16 21:53:08 +00:00
let kid = cfg.kid.to_string();
let mut tuple = (&mut(cl), &(kp), Some(kid.as_str()));
2022-04-13 21:46:50 +00:00
if action == "delete" {
2022-04-16 21:53:08 +00:00
return deactivate(&(path_to_config), &mut(tuple));
2022-04-13 21:46:50 +00:00
}
if action != "order" {
panic!("invalid action");
}
let action = args_iter.next().expect("expected an action");
if action == "place" {
if !cfg.order.is_none() {
panic!("there is already a pending order");
}
let mut payload = String::from(r#"{"identifiers":["#);
2022-04-16 21:53:08 +00:00
let dns_names: Vec<String> = args_iter.collect();
let mut iter = dns_names.iter();
let mut dns_name = iter.next().expect("no dns names were passed");
2022-04-13 21:46:50 +00:00
loop {
payload += &(format!(r#"{{"type":"dns","value":{}}}"#, serde_json::to_string(&(dns_name))?));
2022-04-16 21:53:08 +00:00
if let Some(next) = iter.next() {
dns_name = &(next);
2022-04-13 21:46:50 +00:00
payload.push(',');
} else {
break;
}
}
payload.push_str("]}");
2022-04-16 21:53:08 +00:00
let resp = acme_post(
&mut(tuple),
ACME_DIRECTORY.new_order, &(payload),
)?;
2022-04-13 21:46:50 +00:00
if !resp.status().is_success() {
let text = resp.text()?;
panic!("{}", text);
}
let headers = resp.headers();
2022-04-16 21:53:08 +00:00
let location = headers.get("location").ok_or("failed to get Location")?.to_str()?.to_string();
let order: AcmeOrder = resp.json()?;
let mut challenge_urls = Vec::new();
let mut output_string = String::new();
for auth_url in &(order.authorizations) {
let resp = acme_post(
&mut(tuple),
auth_url, "",
)?;
let auth: AcmeAuthorization = resp.json()?;
let challenge: AcmeChallenge = auth.challenges.into_iter().find(|challenge| &(challenge.r#type) == "dns-01").expect("no dns-01 challenge");
challenge_urls.push(challenge.url);
output_string += &(format!("_acme-challenge.{} {}", auth.identifier.value, token_shit(&(kp), challenge.token)?));
}
cfg.order = Some(AcmecOrder {
url: location,
challenges: challenge_urls,
finalize: order.finalize.to_string(),
dns_names: dns_names,
});
write_cfg(&mut(file), &(cfg))?;
println!("{}", output_string);
return Ok(());
} else if action == "finalize" {
let mut cert_file = File::options().write(true).create(true).open(args_iter.next().expect("expected path to cert file"))?;
let mut pkey_file = File::options().write(true).create(true).open(args_iter.next().expect("expected path to pkey file"))?;
2022-04-13 21:46:50 +00:00
let order = match cfg.order {
2022-04-16 21:53:08 +00:00
Some(order) => order,
2022-04-13 21:46:50 +00:00
None => panic!("there is no pending order"),
};
2022-04-16 21:53:08 +00:00
cfg.order = None;
write_cfg(&mut(file), &(cfg))?;
let pkey_passphrase = env::var_os("ACMEC_PKEY_PASSPHRASE").expect("expected environment variable ACMEC_PKEY_PASSPHRASE to be valid");
for url in &(order.challenges) {
acme_post(
&mut(tuple),
&(url), r#"{}"#,
)?;
}
loop {
2022-04-21 17:52:06 +00:00
std::thread::sleep(std::time::Duration::from_secs(3));
2022-04-16 21:53:08 +00:00
let resp = acme_post(
&mut(tuple),
&(order.url), "",
)?;
let acme_order: AcmeOrder = resp.json()?;
match acme_order.status.as_str() {
"ready" => break,
"pending" => continue,
_ => panic!("error"),
}
}
let kp = pkey::PKey::from_rsa(Rsa::generate(2048)?)?;
acme_post(
&mut(tuple),
&(order.finalize), &(format!(r#"{{ "csr": {} }}"#, serde_json::to_string(&(b64ue_csr(gen_csr(&(kp), &(order.dns_names))?)?))?)),
)?;
let mut acme_order: AcmeOrder;
loop {
2022-04-21 17:52:06 +00:00
std::thread::sleep(std::time::Duration::from_secs(3));
2022-04-16 21:53:08 +00:00
let resp = acme_post(
&mut(tuple),
&(order.url), "",
)?;
acme_order = resp.json()?;
match acme_order.status.as_str() {
"valid" => break,
"processing" => continue,
_ => panic!("error"),
}
}
cert_file.write_all(acme_post(
&mut(tuple),
&(acme_order.certificate.expect("expected acme certificate")), "",
)?.text()?.as_bytes())?;
pkey_file.write_all(&(kp.private_key_to_pem_pkcs8_passphrase(openssl::symm::Cipher::aes_256_cbc(), pkey_passphrase.as_os_str().as_bytes())?))?;
return Ok(());
2022-04-13 21:46:50 +00:00
} else {
panic!("invalid action");
}
2022-04-09 20:56:42 +00:00
}