File: relax-rustix.patch

package info (click to toggle)
rust-nusb 0.1.13-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 584 kB
  • sloc: makefile: 2
file content (299 lines) | stat: -rw-r--r-- 10,421 bytes parent folder | download
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
From d49490ce6ade74c52c8a716ecf35906c033127e6 Mon Sep 17 00:00:00 2001
From: Kevin Mehall <km@kevinmehall.net>
Date: Sat, 1 Feb 2025 20:38:53 -0700
Subject: [PATCH] Update Rustix to 1.0

---
 Cargo.toml                         |   2 +-
 src/platform/linux_usbfs/events.rs |   5 +-
 src/platform/linux_usbfs/usbfs.rs  | 108 +++++++++++++++--------------
 3 files changed, 60 insertions(+), 55 deletions(-)

--- a/Cargo.toml
+++ b/Cargo.toml
@@ -96,7 +96,7 @@
 version = "0.2.155"
 
 [target.'cfg(any(target_os="linux", target_os="android"))'.dependencies.rustix]
-version = "0.38.17"
+version = "1"
 features = [
     "fs",
     "event",
--- a/src/platform/linux_usbfs/events.rs
+++ b/src/platform/linux_usbfs/events.rs
@@ -13,6 +13,7 @@
 /// dispatch in the event loop avoids additonal synchronization.
 use once_cell::sync::OnceCell;
 use rustix::{
+    buffer::spare_capacity,
     event::epoll::{self, EventData, EventFlags},
     fd::{AsFd, BorrowedFd, OwnedFd},
     io::retry_on_intr,
@@ -71,9 +72,9 @@
 
 fn event_loop() {
     let epoll_fd = EPOLL_FD.get().unwrap();
-    let mut event_list = epoll::EventVec::with_capacity(4);
+    let mut event_list = Vec::with_capacity(4);
     loop {
-        retry_on_intr(|| epoll::wait(epoll_fd, &mut event_list, -1)).unwrap();
+        retry_on_intr(|| epoll::wait(epoll_fd, spare_capacity(&mut event_list), None)).unwrap();
         for event in &event_list {
             let key = event.data.u64() as usize;
             let lock = WATCHES.lock().unwrap();
--- a/src/platform/linux_usbfs/usbfs.rs
+++ b/src/platform/linux_usbfs/usbfs.rs
@@ -4,37 +4,37 @@
 //! [usbfs]: https://www.kernel.org/doc/html/latest/driver-api/usb/usb.html#the-usb-character-device-nodes
 //! [uapi]: https://github.com/torvalds/linux/blob/master/tools/include/uapi/linux/usbdevice_fs.h
 #![allow(dead_code)]
-use std::{
-    ffi::{c_int, c_uchar, c_uint, c_void},
-    marker::PhantomData,
-};
+use std::ffi::{c_int, c_uchar, c_uint, c_void};
 
 use rustix::{
     fd::AsFd,
     io,
-    ioctl::{self, CompileTimeOpcode, Ioctl, IoctlOutput},
+    ioctl::{self, Ioctl, IoctlOutput, Opcode},
 };
 
 pub fn set_configuration<Fd: AsFd>(fd: Fd, configuration: u8) -> io::Result<()> {
     unsafe {
-        let ctl =
-            ioctl::Setter::<ioctl::ReadOpcode<b'U', 5, c_uint>, c_uint>::new(configuration.into());
+        let ctl = ioctl::Setter::<{ ioctl::opcode::read::<c_uint>(b'U', 5) }, c_uint>::new(
+            configuration.into(),
+        );
         ioctl::ioctl(fd, ctl)
     }
 }
 
 pub fn claim_interface<Fd: AsFd>(fd: Fd, interface: u8) -> io::Result<()> {
     unsafe {
-        let ctl =
-            ioctl::Setter::<ioctl::ReadOpcode<b'U', 15, c_uint>, c_uint>::new(interface.into());
+        let ctl = ioctl::Setter::<{ ioctl::opcode::read::<c_uint>(b'U', 15) }, c_uint>::new(
+            interface.into(),
+        );
         ioctl::ioctl(fd, ctl)
     }
 }
 
 pub fn release_interface<Fd: AsFd>(fd: Fd, interface: u8) -> io::Result<()> {
     unsafe {
-        let ctl =
-            ioctl::Setter::<ioctl::ReadOpcode<b'U', 16, c_uint>, c_uint>::new(interface.into());
+        let ctl = ioctl::Setter::<{ ioctl::opcode::read::<c_uint>(b'U', 16) }, c_uint>::new(
+            interface.into(),
+        );
         ioctl::ioctl(fd, ctl)
     }
 }
@@ -57,7 +57,7 @@
 
         dc.driver[0..6].copy_from_slice(b"usbfs\0");
 
-        let ctl = ioctl::Setter::<opcodes::USBDEVFS_DISCONNECT_CLAIM, DetachAndClaim>::new(dc);
+        let ctl = ioctl::Setter::<{ opcodes::USBDEVFS_DISCONNECT_CLAIM }, DetachAndClaim>::new(dc);
 
         ioctl::ioctl(&fd, ctl)
     }
@@ -78,17 +78,19 @@
 // TODO: Move the rest of the opcodes into here.
 #[allow(non_camel_case_types)]
 mod opcodes {
+    use rustix::ioctl::Opcode;
+
     use super::*;
 
-    pub type USBDEVFS_IOCTL = ioctl::ReadWriteOpcode<b'U', 18, UsbFsIoctl>;
-    pub type USBDEVFS_DISCONNECT_CLAIM = ioctl::ReadOpcode<b'U', 27, DetachAndClaim>;
+    pub const USBDEVFS_IOCTL: Opcode = ioctl::opcode::read_write::<UsbFsIoctl>(b'U', 18);
+    pub const USBDEVFS_DISCONNECT_CLAIM: Opcode = ioctl::opcode::read::<DetachAndClaim>(b'U', 27);
 
     /// These opcodes are nested inside a [`USBDEVFS_IOCTL`] operation.
     pub mod nested {
         use super::*;
 
-        pub type USBDEVFS_DISCONNECT = ioctl::NoneOpcode<b'U', 22, ()>;
-        pub type USBDEVFS_CONNECT = ioctl::NoneOpcode<b'U', 23, ()>;
+        pub const USBDEVFS_DISCONNECT: Opcode = ioctl::opcode::none(b'U', 22);
+        pub const USBDEVFS_CONNECT: Opcode = ioctl::opcode::none(b'U', 23);
     }
 }
 
@@ -96,11 +98,11 @@
     let command = UsbFsIoctl {
         interface: interface.into(),
         // NOTE: Cast needed since on android this type is i32 vs u32 on linux
-        ioctl_code: opcodes::nested::USBDEVFS_DISCONNECT::OPCODE.raw() as _,
+        ioctl_code: opcodes::nested::USBDEVFS_DISCONNECT as _,
         data: std::ptr::null_mut(),
     };
     unsafe {
-        let ctl = ioctl::Setter::<opcodes::USBDEVFS_IOCTL, UsbFsIoctl>::new(command);
+        let ctl = ioctl::Setter::<{ opcodes::USBDEVFS_IOCTL }, UsbFsIoctl>::new(command);
         ioctl::ioctl(fd, ctl)
     }
 }
@@ -108,11 +110,11 @@
 pub fn attach_kernel_driver<Fd: AsFd>(fd: Fd, interface: u8) -> io::Result<()> {
     let command = UsbFsIoctl {
         interface: interface.into(),
-        ioctl_code: opcodes::nested::USBDEVFS_CONNECT::OPCODE.raw() as _,
+        ioctl_code: opcodes::nested::USBDEVFS_CONNECT as _,
         data: std::ptr::null_mut(),
     };
     unsafe {
-        let ctl = ioctl::Setter::<opcodes::USBDEVFS_IOCTL, UsbFsIoctl>::new(command);
+        let ctl = ioctl::Setter::<{ opcodes::USBDEVFS_IOCTL }, UsbFsIoctl>::new(command);
         ioctl::ioctl(fd, ctl)
     }
 }
@@ -125,22 +127,22 @@
 
 pub fn set_interface<Fd: AsFd>(fd: Fd, interface: u8, alt_setting: u8) -> io::Result<()> {
     unsafe {
-        let ctl = ioctl::Setter::<ioctl::ReadOpcode<b'U', 4, SetAltSetting>, SetAltSetting>::new(
-            SetAltSetting {
-                interface: interface.into(),
-                alt_setting: alt_setting.into(),
-            },
-        );
+        let ctl =
+            ioctl::Setter::<{ ioctl::opcode::read::<SetAltSetting>(b'U', 4) }, SetAltSetting>::new(
+                SetAltSetting {
+                    interface: interface.into(),
+                    alt_setting: alt_setting.into(),
+                },
+            );
         ioctl::ioctl(fd, ctl)
     }
 }
 
-pub struct PassPtr<Opcode, Input> {
+pub struct PassPtr<const OPCODE: Opcode, Input> {
     input: *mut Input,
-    _opcode: PhantomData<Opcode>,
 }
 
-impl<Opcode: CompileTimeOpcode, Input> PassPtr<Opcode, Input> {
+impl<const OPCODE: Opcode, Input> PassPtr<OPCODE, Input> {
     /// Create a new pointer setter-style `ioctl` object.
     ///
     /// # Safety
@@ -150,18 +152,18 @@
     ///   get.
     #[inline]
     pub unsafe fn new(input: *mut Input) -> Self {
-        Self {
-            input,
-            _opcode: PhantomData,
-        }
+        Self { input }
     }
 }
 
-unsafe impl<Opcode: CompileTimeOpcode, Input> Ioctl for PassPtr<Opcode, Input> {
+unsafe impl<const OPCODE: Opcode, Input> Ioctl for PassPtr<OPCODE, Input> {
     type Output = ();
 
     const IS_MUTATING: bool = false;
-    const OPCODE: rustix::ioctl::Opcode = Opcode::OPCODE;
+
+    fn opcode(&self) -> ioctl::Opcode {
+        OPCODE
+    }
 
     fn as_ptr(&mut self) -> *mut c_void {
         self.input as *mut c_void
@@ -174,28 +176,28 @@
 
 pub unsafe fn submit_urb<Fd: AsFd>(fd: Fd, urb: *mut Urb) -> io::Result<()> {
     unsafe {
-        let ctl = PassPtr::<ioctl::ReadOpcode<b'U', 10, Urb>, Urb>::new(urb);
+        let ctl = PassPtr::<{ ioctl::opcode::read::<Urb>(b'U', 10) }, Urb>::new(urb);
         ioctl::ioctl(fd, ctl)
     }
 }
 
 pub fn reap_urb_ndelay<Fd: AsFd>(fd: Fd) -> io::Result<*mut Urb> {
     unsafe {
-        let ctl = ioctl::Getter::<ioctl::WriteOpcode<b'U', 13, *mut Urb>, *mut Urb>::new();
+        let ctl = ioctl::Getter::<{ ioctl::opcode::write::<*mut Urb>(b'U', 13) }, *mut Urb>::new();
         ioctl::ioctl(fd, ctl)
     }
 }
 
 pub unsafe fn discard_urb<Fd: AsFd>(fd: Fd, urb: *mut Urb) -> io::Result<()> {
     unsafe {
-        let ctl = PassPtr::<ioctl::NoneOpcode<b'U', 11, ()>, Urb>::new(urb);
+        let ctl = PassPtr::<{ ioctl::opcode::none(b'U', 11) }, Urb>::new(urb);
         ioctl::ioctl(fd, ctl)
     }
 }
 
 pub fn reset<Fd: AsFd>(fd: Fd) -> io::Result<()> {
     unsafe {
-        let ctl = ioctl::NoArg::<ioctl::NoneOpcode<b'U', 20, ()>>::new();
+        let ctl = ioctl::NoArg::<{ ioctl::opcode::none(b'U', 20) }>::new();
         ioctl::ioctl(fd, ctl)
     }
 }
@@ -229,26 +231,25 @@
     // + variable size array of iso_packet_desc
 }
 
-pub struct Transfer<Opcode, Input> {
+pub struct Transfer<const OPCODE: Opcode, Input> {
     input: Input,
-    _opcode: PhantomData<Opcode>,
 }
 
-impl<Opcode: CompileTimeOpcode, Input> Transfer<Opcode, Input> {
+impl<const OPCODE: Opcode, Input> Transfer<OPCODE, Input> {
     #[inline]
     pub unsafe fn new(input: Input) -> Self {
-        Self {
-            input,
-            _opcode: PhantomData,
-        }
+        Self { input }
     }
 }
 
-unsafe impl<Opcode: CompileTimeOpcode, Input> Ioctl for Transfer<Opcode, Input> {
+unsafe impl<const OPCODE: Opcode, Input> Ioctl for Transfer<OPCODE, Input> {
     type Output = usize;
 
     const IS_MUTATING: bool = true;
-    const OPCODE: rustix::ioctl::Opcode = Opcode::OPCODE;
+
+    fn opcode(&self) -> ioctl::Opcode {
+        OPCODE
+    }
 
     fn as_ptr(&mut self) -> *mut c_void {
         &mut self.input as *mut Input as *mut c_void
@@ -274,7 +275,7 @@
 pub fn control<Fd: AsFd>(fd: Fd, transfer: CtrlTransfer) -> io::Result<usize> {
     unsafe {
         let ctl =
-            Transfer::<ioctl::ReadWriteOpcode<b'U', 0, CtrlTransfer>, CtrlTransfer>::new(transfer);
+            Transfer::<{ ioctl::opcode::read_write::<CtrlTransfer>(b'U', 0) }, CtrlTransfer>::new(transfer);
         ioctl::ioctl(fd, ctl)
     }
 }
@@ -282,7 +283,7 @@
 pub fn clear_halt<Fd: AsFd>(fd: Fd, endpoint: u8) -> io::Result<()> {
     unsafe {
         let ctl =
-            ioctl::Setter::<ioctl::ReadOpcode<b'U', 21, c_uint>, c_uint>::new(endpoint.into());
+            ioctl::Setter::<{ ioctl::opcode::read::<c_uint>(b'U', 21) }, c_uint>::new(endpoint.into());
         ioctl::ioctl(fd, ctl)
     }
 }