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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
use core::{fmt, num};
#[cfg(feature = "std")]
use crate::internal::fuse_kernel;
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub struct Error {
kind: ErrorKind,
}
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum ErrorKind {
MissingNodeId,
UnexpectedEof,
ExpectedCuseInit(u32),
ExpectedFuseInit(u32),
}
impl Error {
pub(crate) fn expected_cuse_init(opcode: u32) -> Error {
Error {
kind: ErrorKind::ExpectedCuseInit(opcode),
}
}
pub(crate) fn expected_fuse_init(opcode: u32) -> Error {
Error {
kind: ErrorKind::ExpectedFuseInit(opcode),
}
}
pub(crate) fn missing_node_id() -> Error {
Error {
kind: ErrorKind::MissingNodeId,
}
}
pub(crate) fn unexpected_eof() -> Error {
Error {
kind: ErrorKind::UnexpectedEof,
}
}
}
impl fmt::Display for Error {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
fmt::Debug::fmt(self, fmt)
}
}
#[cfg(feature = "std")]
impl std::error::Error for Error {}
#[cfg(feature = "std")]
#[cfg_attr(doc, doc(cfg(feature = "std")))]
impl From<Error> for std::io::Error {
fn from(err: Error) -> std::io::Error {
use std::io;
match err.kind {
ErrorKind::MissingNodeId => io::Error::new(
io::ErrorKind::InvalidData,
"Request field 'fuse_in_header::nodeid' is missing (expected non-zero)",
),
ErrorKind::UnexpectedEof => io::ErrorKind::UnexpectedEof.into(),
ErrorKind::ExpectedCuseInit(opcode) => io::Error::new(
io::ErrorKind::InvalidData,
format!(
"Received opcode {:?} from kernel (expected CUSE_INIT)",
fuse_kernel::Opcode(opcode),
),
),
ErrorKind::ExpectedFuseInit(opcode) => io::Error::new(
io::ErrorKind::InvalidData,
format!(
"Received opcode {:?} from kernel (expected FUSE_INIT)",
fuse_kernel::Opcode(opcode),
),
),
}
}
}
#[derive(Copy, Clone, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct ErrorCode(num::NonZeroU16);
impl ErrorCode {
pub fn new(n: num::NonZeroU16) -> ErrorCode {
ErrorCode(n)
}
pub fn name(&self) -> Option<&'static str> {
self.name_impl()
}
}
impl From<num::NonZeroU16> for ErrorCode {
fn from(n: num::NonZeroU16) -> ErrorCode {
ErrorCode(n)
}
}
impl From<ErrorCode> for u16 {
fn from(err: ErrorCode) -> u16 {
err.0.get()
}
}
impl From<ErrorCode> for num::NonZeroU16 {
fn from(err: ErrorCode) -> num::NonZeroU16 {
err.0
}
}
impl From<ErrorCode> for u32 {
fn from(err: ErrorCode) -> u32 {
err.0.get().into()
}
}
impl From<ErrorCode> for num::NonZeroU32 {
fn from(err: ErrorCode) -> num::NonZeroU32 {
err.0.into()
}
}
impl From<ErrorCode> for i32 {
fn from(err: ErrorCode) -> i32 {
err.0.get().into()
}
}
impl From<ErrorCode> for num::NonZeroI32 {
fn from(err: ErrorCode) -> num::NonZeroI32 {
err.0.into()
}
}
impl From<ErrorCode> for u64 {
fn from(err: ErrorCode) -> u64 {
err.0.get().into()
}
}
impl From<ErrorCode> for num::NonZeroU64 {
fn from(err: ErrorCode) -> num::NonZeroU64 {
err.0.into()
}
}
impl From<ErrorCode> for i64 {
fn from(err: ErrorCode) -> i64 {
err.0.get().into()
}
}
impl From<ErrorCode> for num::NonZeroI64 {
fn from(err: ErrorCode) -> num::NonZeroI64 {
err.0.into()
}
}
impl fmt::Debug for ErrorCode {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
self.0.fmt(fmt)
}
}
impl fmt::Display for ErrorCode {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
self.0.fmt(fmt)
}
}
impl fmt::Binary for ErrorCode {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(fmt)
}
}
impl fmt::LowerHex for ErrorCode {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(fmt)
}
}
impl fmt::UpperHex for ErrorCode {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(fmt)
}
}
macro_rules! impl_partial_eq {
($t:ty) => {
impl PartialEq<$t> for ErrorCode {
fn eq(&self, x: &$t) -> bool {
<$t>::from(self.0.get()) == *x
}
}
impl PartialEq<ErrorCode> for $t {
fn eq(&self, x: &ErrorCode) -> bool {
<$t>::from(x.0.get()) == *self
}
}
};
}
impl_partial_eq!(i32);
impl_partial_eq!(i64);
impl_partial_eq!(u16);
impl_partial_eq!(u32);
impl_partial_eq!(u64);
impl_partial_eq!(usize);
impl PartialEq<i16> for ErrorCode {
fn eq(&self, x: &i16) -> bool {
if *x <= 0 {
return false;
}
self.0.get() == *x as u16
}
}
impl PartialEq<ErrorCode> for i16 {
fn eq(&self, x: &ErrorCode) -> bool {
if *self <= 0 {
return false;
}
x.0.get() == *self as u16
}
}
impl PartialEq<isize> for ErrorCode {
fn eq(&self, x: &isize) -> bool {
if *x <= 0 {
return false;
}
usize::from(self.0.get()) == *x as usize
}
}
impl PartialEq<ErrorCode> for isize {
fn eq(&self, x: &ErrorCode) -> bool {
if *self <= 0 {
return false;
}
usize::from(x.0.get()) == *self as usize
}
}
impl ErrorCode {
pub const EINTR: ErrorCode = target::EINTR;
pub const EIO: ErrorCode = target::EIO;
pub const ENODEV: ErrorCode = target::ENODEV;
pub const ENOENT: ErrorCode = target::ENOENT;
pub const ENOSYS: ErrorCode = target::ENOSYS;
pub const ERANGE: ErrorCode = target::ERANGE;
fn name_impl(&self) -> Option<&'static str> {
match *self {
Self::EINTR => Some("EINTR"),
Self::EIO => Some("EIO"),
Self::ENODEV => Some("ENODEV"),
Self::ENOENT => Some("ENOENT"),
Self::ENOSYS => Some("ENOSYS"),
Self::ERANGE => Some("ERANGE"),
_ => None,
}
}
}
macro_rules! target_error_codes {
($( $name:ident : $value:literal , )*) => {
mod target {
$(
pub(super) const $name: super::ErrorCode = super::ErrorCode(unsafe{
core::num::NonZeroU16::new_unchecked($value)
});
)*
}
}
}
#[cfg(target_os = "freebsd")]
target_error_codes! {
EINTR: 4,
EIO: 5,
ENODEV: 19,
ENOENT: 2,
ENOSYS: 78,
ERANGE: 34,
}
#[cfg(all(
target_os = "linux",
any(target_arch = "x86", target_arch = "x86_64",),
))]
target_error_codes! {
EINTR: 4,
EIO: 5,
ENODEV: 19,
ENOENT: 2,
ENOSYS: 38,
ERANGE: 34,
}