Skip to content

Commit 78ad442

Browse files
committed
fix bad ffi
1 parent 60298f5 commit 78ad442

File tree

2 files changed

+48
-21
lines changed

2 files changed

+48
-21
lines changed

examples/deviceslots.rs

+45-18
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,42 @@ fn slot_to_device(slot: i64) -> Option<&'static str> {
2424
}
2525
}
2626

27-
fn get_whole_disk_dev_link(node: &Node<'_>) -> Result<PathBuf> {
28-
// Each of the letter-indexed references into block device
29-
// slices are represented as minor nodes.
27+
fn get_dev_path(node: &Node<'_>) -> Result<Option<PathBuf>> {
3028
let mut wm = node.minors();
3129
while let Some(m) = wm.next().transpose()? {
32-
// Find the minor of the "whole disk"
33-
if m.name() == "wd" {
34-
let links = DevLinks::new(false)?;
35-
for l in links.links_for_path(m.devfs_path()?)? {
36-
return Ok(l.path().to_path_buf());
30+
if m.name() != "wd" {
31+
continue;
32+
}
33+
let links = {
34+
match DevLinks::new(true) {
35+
Ok(links) => links,
36+
Err(_) => DevLinks::new(false)?,
3737
}
38+
};
39+
let devfs_path = m.devfs_path()?;
40+
41+
let paths = links
42+
.links_for_path(&devfs_path)?
43+
.into_iter()
44+
.filter(|l| {
45+
l.linktype() == DevLinkType::Primary
46+
&& l.path()
47+
.file_name()
48+
.map(|f| f.to_string_lossy().ends_with("d0"))
49+
.unwrap_or(false)
50+
})
51+
.collect::<Vec<_>>();
52+
53+
if paths.is_empty() {
54+
return Err(anyhow!("no links for {}", devfs_path));
3855
}
56+
57+
if paths.len() != 1 {
58+
return Err(anyhow!("got weird paths {:?} for {}", paths, devfs_path));
59+
}
60+
return Ok(Some(paths[0].path().to_path_buf()));
3961
}
40-
Err(anyhow!("No whole disk minor found"))
62+
Ok(None)
4163
}
4264

4365
#[derive(Copy, Clone, PartialEq, Eq, Debug, ValueEnum)]
@@ -60,15 +82,20 @@ struct Args {
6082
fn main() -> Result<()> {
6183
let args = Args::parse();
6284

63-
let mut device_info = DevInfo::new()?;
64-
let mut node_walker = device_info.walk_node();
85+
let mut device_info = {
86+
match DevInfo::new_force_load() {
87+
Ok(di) => di,
88+
Err(_) => DevInfo::new()?,
89+
}
90+
};
91+
let mut node_walker = device_info.walk_driver("blkdev");
6592

6693
let mut device_descriptions = BTreeMap::new();
6794

6895
while let Some(mut node) = node_walker.next().transpose()? {
6996
if let Some(driver_name) = node.driver_name() {
7097
if driver_name == "blkdev" {
71-
let dev_path = get_whole_disk_dev_link(&node)?;
98+
let dev_path = get_dev_path(&node)?;
7299
let devfs_path = PathBuf::from(format!("/devices{}", node.devfs_path()?));
73100
while let Ok(Some(parent)) = node.parent() {
74101
node = parent;
@@ -83,14 +110,14 @@ fn main() -> Result<()> {
83110
let device = slot_to_device(slot).unwrap_or("Not found");
84111

85112
let path = match args.flavor {
86-
PathFlavor::Devfs => devfs_path,
87-
PathFlavor::Dev => dev_path,
113+
PathFlavor::Devfs => devfs_path.to_string_lossy(),
114+
PathFlavor::Dev => dev_path
115+
.map(|p| String::from(p.to_string_lossy()))
116+
.unwrap_or(String::from("none"))
117+
.into(),
88118
};
89119

90-
device_descriptions.insert(
91-
slot,
92-
format!("{slot:>4}\t{device:>6}\t{path}", path = path.display()),
93-
);
120+
device_descriptions.insert(slot, format!("{slot:>4}\t{device:>6}\t{path}"));
94121
break;
95122
}
96123
}

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ extern "C" {
111111
fn di_minor_spectype(minor: *mut DiMinor) -> c_int;
112112

113113
fn di_devlink_init(name: *const c_char, flags: c_uint) -> *mut DiDevlinkHandle;
114-
fn di_devlink_fini(hdlp: *mut DiDevlinkHandle);
114+
fn di_devlink_fini(hdlp: &*mut DiDevlinkHandle) -> c_int;
115115

116116
fn di_devlink_walk(
117117
hdl: *mut DiDevlinkHandle,
@@ -702,7 +702,7 @@ extern "C" fn devlink_accumulate(link: *const DiDevlink, arg: *mut c_void) -> c_
702702

703703
impl DevLinks {
704704
fn new_common(make_link: bool) -> Result<DevLinks> {
705-
let mut flags = 0;
705+
let mut flags: c_uint = 0;
706706
if make_link {
707707
flags |= DI_MAKE_LINK;
708708
}
@@ -752,6 +752,6 @@ impl DevLinks {
752752

753753
impl Drop for DevLinks {
754754
fn drop(&mut self) {
755-
unsafe { di_devlink_fini(self.handle) };
755+
unsafe { di_devlink_fini(&self.handle) };
756756
}
757757
}

0 commit comments

Comments
 (0)