From 6d1d1375721e720755fe9e9b241cc469a73bde88 Mon Sep 17 00:00:00 2001 From: Michal Filka Date: Thu, 6 Jun 2024 08:33:01 +0200 Subject: [PATCH] Refactoring code for file write and setting restricted permissions. --- rust/agama-server/src/cert.rs | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/rust/agama-server/src/cert.rs b/rust/agama-server/src/cert.rs index 15b7d68669..d928382981 100644 --- a/rust/agama-server/src/cert.rs +++ b/rust/agama-server/src/cert.rs @@ -7,7 +7,12 @@ use openssl::pkey::{PKey, Private}; use openssl::rsa::Rsa; use openssl::x509::extension::{BasicConstraints, SubjectAlternativeName, SubjectKeyIdentifier}; use openssl::x509::{X509NameBuilder, X509}; -use std::{fs, io::Write, os::unix::fs::OpenOptionsExt, path::Path}; +use std::{ + fs, + io::{self, Write}, + os::unix::fs::OpenOptionsExt, + path::Path, +}; const DEFAULT_CERT_DIR: &str = "/etc/agama.d/ssl"; @@ -27,17 +32,10 @@ impl Certificate { } if let Ok(bytes) = self.cert.to_pem() { - fs::write(Path::new(DEFAULT_CERT_DIR).join("cert.pem"), bytes)?; + write_and_restrict(Path::new(DEFAULT_CERT_DIR).join("cert.pem"), &bytes)?; } if let Ok(bytes) = self.key.private_key_to_pem_pkcs8() { - let path = Path::new(DEFAULT_CERT_DIR).join("key.pem"); - let mut file = fs::OpenOptions::new() - .create(true) - .truncate(true) - .write(true) - .mode(0o400) - .open(path)?; - file.write_all(&bytes)?; + write_and_restrict(Path::new(DEFAULT_CERT_DIR).join("key.pem"), &bytes)?; } Ok(()) @@ -114,3 +112,17 @@ impl Certificate { }) } } + +/// Writes buf into a file at path and sets the file permissions for the root only access +fn write_and_restrict>(path: T, buf: &[u8]) -> io::Result<()> { + let mut file = fs::OpenOptions::new() + .create(true) + .truncate(true) + .write(true) + .mode(0o400) + .open(path)?; + + file.write_all(buf)?; + + Ok(()) +}