aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHristo Venev <hristo@venev.name>2019-05-17 20:40:49 +0300
committerHristo Venev <hristo@venev.name>2019-05-18 20:07:08 +0300
commit8668f831620d2bff617920974f431bf4db31e398 (patch)
tree0ac7e7bcb199495f7b91cb3958811f7e714147ae /src
parentec821f39d9689df213698dbcb90b4367297b9cb5 (diff)
Create cache and state files in mode 0o0600.
Diffstat (limited to 'src')
-rw-r--r--src/manager.rs12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/manager.rs b/src/manager.rs
index 87175dc..3f487bf 100644
--- a/src/manager.rs
+++ b/src/manager.rs
@@ -4,6 +4,8 @@
use crate::{builder, config, model, proto, wg};
use std::ffi::{OsStr, OsString};
+#[cfg(unix)]
+use std::os::unix::fs::OpenOptionsExt;
use std::path::{Path, PathBuf};
use std::time::{Duration, Instant, SystemTime};
use std::{fs, io};
@@ -26,7 +28,15 @@ fn update_file(path: &Path, data: &[u8]) -> io::Result<()> {
tmp_path.push(".tmp");
let tmp_path = PathBuf::from(tmp_path);
- let mut file = fs::File::create(&tmp_path)?;
+ let mut file = {
+ let mut file = fs::OpenOptions::new();
+ file.append(true);
+ file.create_new(true);
+ #[cfg(unix)]
+ file.mode(0o0600);
+ file.open(&tmp_path)?
+ };
+
let r = io::Write::write_all(&mut file, data)
.and_then(|_| file.sync_data())
.and_then(|_| fs::rename(&tmp_path, &path));