1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use crate::fs::{errors, read_link_unchecked, MAX_SYMLINK_EXPANSIONS};
use std::ffi::OsStr;
use std::path::{Path, PathBuf};
use std::{fs, io};
pub(super) fn read_link_one(
base: &fs::File,
name: &OsStr,
symlink_count: &mut u8,
reuse: PathBuf,
) -> io::Result<PathBuf> {
let name: &Path = name.as_ref();
assert!(
name.as_os_str().is_empty() || name.file_name().is_some(),
"read_link_one expects a single normal path component, got '{}'",
name.display()
);
assert!(
name.as_os_str().is_empty() || name.parent().unwrap().as_os_str().is_empty(),
"read_link_one expects a single normal path component, got '{}'",
name.display()
);
if *symlink_count == MAX_SYMLINK_EXPANSIONS {
return Err(errors::too_many_symlinks());
}
let destination = read_link_unchecked(base, name, reuse)?;
*symlink_count += 1;
Ok(destination)
}