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
use core::{cmp, fmt};
use crate::internal::fuse_io;
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub struct XattrError {
kind: XattrErrorKind,
}
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
enum XattrErrorKind {
ExceedsListMax(usize),
ExceedsCapacity(usize, usize),
ExceedsSizeMax(usize),
ExceedsRequestSize(usize, u32),
NameEmpty,
ExceedsNameMax(usize),
NameContainsNul,
}
impl XattrError {
pub(crate) fn exceeds_list_max(response_size: usize) -> XattrError {
XattrError {
kind: XattrErrorKind::ExceedsListMax(response_size),
}
}
pub(crate) fn exceeds_capacity(
response_size: usize,
capacity: usize,
) -> XattrError {
XattrError {
kind: XattrErrorKind::ExceedsCapacity(response_size, capacity),
}
}
pub(crate) fn exceeds_size_max(value_size: usize) -> XattrError {
XattrError {
kind: XattrErrorKind::ExceedsSizeMax(value_size),
}
}
pub(crate) fn exceeds_request_size(
response_size: usize,
request_size: u32,
) -> XattrError {
XattrError {
kind: XattrErrorKind::ExceedsRequestSize(
response_size,
request_size,
),
}
}
pub(crate) fn name_empty() -> XattrError {
XattrError {
kind: XattrErrorKind::NameEmpty,
}
}
pub(crate) fn exceeds_name_max(name_size: usize) -> XattrError {
XattrError {
kind: XattrErrorKind::ExceedsNameMax(name_size),
}
}
pub(crate) fn name_contains_nul() -> XattrError {
XattrError {
kind: XattrErrorKind::NameContainsNul,
}
}
}
impl fmt::Display for XattrError {
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
fmt::Debug::fmt(self, fmt)
}
}
#[cfg(feature = "std")]
impl std::error::Error for XattrError {}
#[derive(Hash)]
#[repr(transparent)]
pub struct XattrName([u8]);
#[rustfmt::skip]
pub const XATTR_LIST_MAX: usize = {
#[cfg(target_os = "linux")] { 65536 }
};
#[rustfmt::skip]
pub const XATTR_NAME_MAX: usize = {
#[cfg(target_os = "linux")] { 255 }
};
#[rustfmt::skip]
pub const XATTR_SIZE_MAX: usize = {
#[cfg(target_os = "linux")] { 65536 }
};
impl XattrName {
pub(crate) fn new<'a>(
bytes: fuse_io::NulTerminatedBytes<'a>,
) -> &'a XattrName {
Self::new_unchecked(bytes.to_bytes_without_nul())
}
pub(crate) fn new_unchecked<'a>(bytes: &'a [u8]) -> &'a XattrName {
unsafe { &*(bytes as *const [u8] as *const XattrName) }
}
pub fn from_bytes<'a>(
bytes: &'a [u8],
) -> Result<&'a XattrName, XattrError> {
let len = bytes.len();
if len == 0 {
return Err(XattrError::name_empty());
}
if len > XATTR_NAME_MAX {
return Err(XattrError::exceeds_name_max(len));
}
if bytes.contains(&0) {
return Err(XattrError::name_contains_nul());
}
Ok(unsafe { &*(bytes as *const [u8] as *const XattrName) })
}
pub fn as_bytes(&self) -> &[u8] {
&self.0
}
}
impl fmt::Debug for XattrName {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(self, fmt)
}
}
impl fmt::Display for XattrName {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
use core::fmt::Debug;
super::DebugBytesAsString(&self.0).fmt(fmt)
}
}
impl Eq for XattrName {}
impl PartialEq for XattrName {
fn eq(&self, other: &XattrName) -> bool {
self.as_bytes().eq(other.as_bytes())
}
}
impl PartialEq<[u8]> for XattrName {
fn eq(&self, other: &[u8]) -> bool {
self.as_bytes().eq(other)
}
}
impl Ord for XattrName {
fn cmp(&self, other: &XattrName) -> cmp::Ordering {
self.as_bytes().cmp(&other.as_bytes())
}
}
impl PartialEq<XattrName> for [u8] {
fn eq(&self, other: &XattrName) -> bool {
self.eq(other.as_bytes())
}
}
impl PartialOrd for XattrName {
fn partial_cmp(&self, other: &XattrName) -> Option<cmp::Ordering> {
self.as_bytes().partial_cmp(&other.as_bytes())
}
}