mirror of
https://github.com/certd/certd.git
synced 2026-04-16 14:00:51 +08:00
182 lines
6.1 KiB
JavaScript
182 lines
6.1 KiB
JavaScript
/**
|
||
* ACME challenge verification
|
||
*/
|
||
|
||
import dnsSdk from "dns"
|
||
import https from 'https'
|
||
import {log} from './logger.js'
|
||
import axios from './axios.js'
|
||
import * as util from './util.js'
|
||
import {isAlpnCertificateAuthorizationValid} from './crypto/index.js'
|
||
|
||
|
||
const dns = dnsSdk.promises
|
||
/**
|
||
* Verify ACME HTTP challenge
|
||
*
|
||
* https://datatracker.ietf.org/doc/html/rfc8555#section-8.3
|
||
*
|
||
* @param {object} authz Identifier authorization
|
||
* @param {object} challenge Authorization challenge
|
||
* @param {string} keyAuthorization Challenge key authorization
|
||
* @param {string} [suffix] URL suffix
|
||
* @returns {Promise<boolean>}
|
||
*/
|
||
|
||
async function verifyHttpChallenge(authz, challenge, keyAuthorization, suffix = `/.well-known/acme-challenge/${challenge.token}`) {
|
||
const httpPort = axios.defaults.acmeSettings.httpChallengePort || 80;
|
||
const challengeUrl = `http://${authz.identifier.value}:${httpPort}${suffix}`;
|
||
|
||
/* May redirect to HTTPS with invalid/self-signed cert - https://letsencrypt.org/docs/challenge-types/#http-01-challenge */
|
||
const httpsAgent = new https.Agent({ rejectUnauthorized: false });
|
||
|
||
log(`Sending HTTP query to ${authz.identifier.value}, suffix: ${suffix}, port: ${httpPort}`);
|
||
const resp = await axios.get(challengeUrl, { httpsAgent });
|
||
const data = (resp.data || '').replace(/\s+$/, '');
|
||
|
||
log(`Query successful, HTTP status code: ${resp.status}`);
|
||
|
||
if (!data || (data !== keyAuthorization)) {
|
||
throw new Error(`Authorization not found in HTTP response from ${authz.identifier.value}`);
|
||
}
|
||
|
||
log(`Key authorization match for ${challenge.type}/${authz.identifier.value}, ACME challenge verified`);
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* Walk DNS until TXT records are found
|
||
*/
|
||
|
||
async function walkDnsChallengeRecord(recordName, resolver = dns) {
|
||
/* Resolve CNAME record first */
|
||
// try {
|
||
// log(`Checking name for CNAME records: ${recordName}`);
|
||
// const cnameRecords = await resolver.resolveCname(recordName);
|
||
//
|
||
// if (cnameRecords.length) {
|
||
// log(`CNAME record found at ${recordName}, new challenge record name: ${cnameRecords[0]}`);
|
||
// return walkDnsChallengeRecord(cnameRecords[0]);
|
||
// }
|
||
// }
|
||
// catch (e) {
|
||
// log(`No CNAME records found for name: ${recordName}`);
|
||
// }
|
||
|
||
/* Resolve TXT records */
|
||
try {
|
||
log(`Checking name for TXT records: ${recordName}`);
|
||
const txtRecords = await resolver.resolveTxt(recordName);
|
||
|
||
if (txtRecords && txtRecords.length) {
|
||
log(`Found ${txtRecords.length} TXT records at ${recordName}`);
|
||
log(`TXT records: ${JSON.stringify(txtRecords)}`);
|
||
return [].concat(...txtRecords);
|
||
}
|
||
return [];
|
||
}
|
||
catch (e) {
|
||
log(`Resolve TXT records error, ${recordName} :${e.message}`);
|
||
throw e;
|
||
}
|
||
}
|
||
|
||
export async function walkTxtRecord(recordName) {
|
||
|
||
const txtRecords = []
|
||
try {
|
||
/* Default DNS resolver first */
|
||
log('从本地DNS服务器获取TXT解析记录');
|
||
const res = await walkDnsChallengeRecord(recordName);
|
||
if (res && res.length > 0) {
|
||
for (const item of res) {
|
||
txtRecords.push(item)
|
||
}
|
||
}
|
||
|
||
} catch (e) {
|
||
log(`本地获取TXT解析记录失败:${e.message}`)
|
||
}
|
||
|
||
try{
|
||
/* Authoritative DNS resolver */
|
||
log(`从域名权威服务器获取TXT解析记录`);
|
||
const authoritativeResolver = await util.getAuthoritativeDnsResolver(recordName);
|
||
const res = await walkDnsChallengeRecord(recordName, authoritativeResolver);
|
||
if (res && res.length > 0) {
|
||
for (const item of res) {
|
||
txtRecords.push(item)
|
||
}
|
||
}
|
||
}catch (e) {
|
||
log(`权威服务器获取TXT解析记录失败:${e.message}`)
|
||
}
|
||
|
||
if (txtRecords.length === 0) {
|
||
throw new Error(`没有找到TXT解析记录(${recordName})`);
|
||
}
|
||
return txtRecords;
|
||
}
|
||
|
||
/**
|
||
* Verify ACME DNS challenge
|
||
*
|
||
* https://datatracker.ietf.org/doc/html/rfc8555#section-8.4
|
||
*
|
||
* @param {object} authz Identifier authorization
|
||
* @param {object} challenge Authorization challenge
|
||
* @param {string} keyAuthorization Challenge key authorization
|
||
* @param {string} [prefix] DNS prefix
|
||
* @returns {Promise<boolean>}
|
||
*/
|
||
|
||
async function verifyDnsChallenge(authz, challenge, keyAuthorization, prefix = '_acme-challenge.') {
|
||
const recordName = `${prefix}${authz.identifier.value}`;
|
||
log(`本地校验TXT记录): ${recordName}`);
|
||
const recordValues = await walkTxtRecord(recordName);
|
||
log(`DNS查询成功, 找到 ${recordValues.length} 条TXT记录`);
|
||
if (!recordValues.length || !recordValues.includes(keyAuthorization)) {
|
||
throw new Error(`没有找到需要的DNS TXT记录: ${recordName},期望:${keyAuthorization},结果:${recordValues}`);
|
||
}
|
||
|
||
log(`关键授权匹配成功(${challenge.type}/${recordName}),校验成功, ACME challenge verified`);
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* Verify ACME TLS ALPN challenge
|
||
*
|
||
* https://datatracker.ietf.org/doc/html/rfc8737
|
||
*
|
||
* @param {object} authz Identifier authorization
|
||
* @param {object} challenge Authorization challenge
|
||
* @param {string} keyAuthorization Challenge key authorization
|
||
* @returns {Promise<boolean>}
|
||
*/
|
||
|
||
async function verifyTlsAlpnChallenge(authz, challenge, keyAuthorization) {
|
||
const tlsAlpnPort = axios.defaults.acmeSettings.tlsAlpnChallengePort || 443;
|
||
const host = authz.identifier.value;
|
||
log(`Establishing TLS connection with host: ${host}:${tlsAlpnPort}`);
|
||
|
||
const certificate = await util.retrieveTlsAlpnCertificate(host, tlsAlpnPort);
|
||
log('Certificate received from server successfully, matching key authorization in ALPN');
|
||
|
||
if (!isAlpnCertificateAuthorizationValid(certificate, keyAuthorization)) {
|
||
throw new Error(`Authorization not found in certificate from ${authz.identifier.value}`);
|
||
}
|
||
|
||
log(`Key authorization match for ${challenge.type}/${authz.identifier.value}, ACME challenge verified`);
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* Export API
|
||
*/
|
||
|
||
export default {
|
||
'http-01': verifyHttpChallenge,
|
||
'dns-01': verifyDnsChallenge,
|
||
'tls-alpn-01': verifyTlsAlpnChallenge,
|
||
};
|