rustix/fs/
ioctl.rs
1#![allow(unsafe_code)]
4
5#[cfg(linux_kernel)]
6use {
7 crate::fd::AsFd,
8 crate::{backend, io, ioctl},
9 backend::c,
10};
11
12#[cfg(all(linux_kernel, not(any(target_arch = "sparc", target_arch = "sparc64"))))]
13use crate::fd::{AsRawFd, BorrowedFd};
14
15#[cfg(linux_kernel)]
21#[inline]
22#[doc(alias = "BLKSSZGET")]
23pub fn ioctl_blksszget<Fd: AsFd>(fd: Fd) -> io::Result<u32> {
24 unsafe {
26 let ctl = ioctl::Getter::<ioctl::BadOpcode<{ c::BLKSSZGET }>, c::c_uint>::new();
27 ioctl::ioctl(fd, ctl)
28 }
29}
30
31#[cfg(linux_kernel)]
33#[inline]
34#[doc(alias = "BLKPBSZGET")]
35pub fn ioctl_blkpbszget<Fd: AsFd>(fd: Fd) -> io::Result<u32> {
36 unsafe {
38 let ctl = ioctl::Getter::<ioctl::BadOpcode<{ c::BLKPBSZGET }>, c::c_uint>::new();
39 ioctl::ioctl(fd, ctl)
40 }
41}
42
43#[cfg(all(linux_kernel, not(any(target_arch = "sparc", target_arch = "sparc64"))))]
52#[inline]
53#[doc(alias = "FICLONE")]
54pub fn ioctl_ficlone<Fd: AsFd, SrcFd: AsFd>(fd: Fd, src_fd: SrcFd) -> io::Result<()> {
55 unsafe { ioctl::ioctl(fd, Ficlone(src_fd.as_fd())) }
56}
57
58#[cfg(linux_kernel)]
60#[inline]
61#[doc(alias = "EXT4_IOC_RESIZE_FS")]
62pub fn ext4_ioc_resize_fs<Fd: AsFd>(fd: Fd, blocks: u64) -> io::Result<()> {
63 unsafe {
65 let ctl = ioctl::Setter::<ioctl::BadOpcode<{ backend::fs::EXT4_IOC_RESIZE_FS }>, u64>::new(
66 blocks,
67 );
68 ioctl::ioctl(fd, ctl)
69 }
70}
71
72#[cfg(all(linux_kernel, not(any(target_arch = "sparc", target_arch = "sparc64"))))]
73struct Ficlone<'a>(BorrowedFd<'a>);
74
75#[cfg(all(linux_kernel, not(any(target_arch = "sparc", target_arch = "sparc64"))))]
76unsafe impl ioctl::Ioctl for Ficlone<'_> {
77 type Output = ();
78
79 const IS_MUTATING: bool = false;
80 const OPCODE: ioctl::Opcode = ioctl::Opcode::old(c::FICLONE as ioctl::RawOpcode);
81
82 fn as_ptr(&mut self) -> *mut c::c_void {
83 self.0.as_raw_fd() as *mut c::c_void
84 }
85
86 unsafe fn output_from_ptr(
87 _: ioctl::IoctlOutput,
88 _: *mut c::c_void,
89 ) -> io::Result<Self::Output> {
90 Ok(())
91 }
92}