Skip to content

Commit

Permalink
config: do not follow symbolic links for trusted paths (#1513)
Browse files Browse the repository at this point in the history
* config: do not follow symbolic links for trusted paths

Fixes #1501

* Commit from GitHub Actions (test)

---------

Co-authored-by: mise[bot] <123107610+mise-en-dev@users.noreply.github.com>
  • Loading branch information
jdx and mise-en-dev committed Jan 24, 2024
1 parent 578ff24 commit 032e325
Showing 1 changed file with 24 additions and 29 deletions.
53 changes: 24 additions & 29 deletions src/config/config_file/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,54 +216,49 @@ pub fn trust_check(path: &Path) -> Result<()> {

pub fn is_trusted(path: &Path) -> bool {
static IS_TRUSTED: Lazy<Mutex<HashSet<PathBuf>>> = Lazy::new(|| Mutex::new(HashSet::new()));
if let Ok(path) = path.canonicalize() {
let mut cached = IS_TRUSTED.lock().unwrap();
if cached.contains(&path) {
let mut cached = IS_TRUSTED.lock().unwrap();
if cached.contains(path) {
return true;
}
let settings = Settings::get();
for p in settings.trusted_config_paths() {
if path.starts_with(p) {
cached.insert(path.to_path_buf());
return true;
}
let settings = Settings::get();
for p in settings.trusted_config_paths() {
if path.starts_with(p) {
cached.insert(path);
return true;
}
}
if !trust_path(&path).exists() {
}
if !trust_path(path).exists() {
return false;
}
if settings.paranoid {
let trusted = trust_file_hash(path).unwrap_or_else(|e| {
warn!("trust_file_hash: {e}");
false
});
if !trusted {
return false;
}
if settings.paranoid {
let trusted = trust_file_hash(&path).unwrap_or_else(|e| {
warn!("trust_file_hash: {e}");
false
});
if !trusted {
return false;
}
}
cached.insert(path);
return true;
}
false
cached.insert(path.to_path_buf());
true
}

pub fn trust(path: &Path) -> Result<()> {
let path = path.canonicalize()?;
let hashed_path = trust_path(&path);
let hashed_path = trust_path(path);
if !hashed_path.exists() {
file::create_dir_all(hashed_path.parent().unwrap())?;
file::make_symlink(&path, &hashed_path)?;
file::make_symlink(path, &hashed_path)?;
}
let trust_hash_path = hashed_path.with_extension("hash");
if !trust_hash_path.exists() {
let hash = file_hash_sha256(&path)?;
let hash = file_hash_sha256(path)?;
file::write(&trust_hash_path, hash)?;
}
Ok(())
}

pub fn untrust(path: &Path) -> Result<()> {
let path = path.canonicalize()?;
let hashed_path = trust_path(&path);
let hashed_path = trust_path(path);
if hashed_path.exists() {
file::remove_file(hashed_path)?;
}
Expand Down

0 comments on commit 032e325

Please sign in to comment.