From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 0736E78294 for ; Thu, 29 Apr 2021 15:14:00 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id F1EDC1CDC9 for ; Thu, 29 Apr 2021 15:13:29 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 055761CD91 for ; Thu, 29 Apr 2021 15:13:28 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id D294B464DE for ; Thu, 29 Apr 2021 15:13:27 +0200 (CEST) From: Wolfgang Bumiller To: pbs-devel@lists.proxmox.com Date: Thu, 29 Apr 2021 15:13:18 +0200 Message-Id: <20210429131322.24319-11-w.bumiller@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210429131322.24319-1-w.bumiller@proxmox.com> References: <20210429131322.24319-1-w.bumiller@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.026 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [proxmox-daily-update.rs] Subject: [pbs-devel] [REBASED backup 10/14] daily-update: check acme certificates X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Apr 2021 13:14:00 -0000 Signed-off-by: Wolfgang Bumiller --- src/bin/proxmox-daily-update.rs | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/src/bin/proxmox-daily-update.rs b/src/bin/proxmox-daily-update.rs index 83c6b80c..be3bfe44 100644 --- a/src/bin/proxmox-daily-update.rs +++ b/src/bin/proxmox-daily-update.rs @@ -50,13 +50,41 @@ async fn do_update( }; wait_for_local_worker(upid.as_str().unwrap()).await?; - // TODO: certificate checks/renewal/... ? + match check_acme_certificates(rpcenv).await { + Ok(()) => (), + Err(err) => { + eprintln!("error checking certificates: {}", err); + } + } // TODO: cleanup tasks like in PVE? Ok(Value::Null) } +async fn check_acme_certificates(rpcenv: &mut dyn RpcEnvironment) -> Result<(), Error> { + let (config, _) = proxmox_backup::config::node::config()?; + + // do we even have any acme domains configures? + if config.acme_domains().next().is_none() { + return Ok(()); + } + + if !api2::node::certificates::cert_expires_soon()? { + println!("Certificate does not expire within the next 30 days, not renewing."); + return Ok(()); + } + + let info = &api2::node::certificates::API_METHOD_RENEW_ACME_CERT; + let result = match info.handler { + ApiHandler::Sync(handler) => (handler)(json!({}), info, rpcenv)?, + _ => unreachable!(), + }; + wait_for_local_worker(result.as_str().unwrap()).await?; + + Ok(()) +} + fn main() { proxmox_backup::tools::setup_safe_path_env(); -- 2.20.1