Skip to content

Commit fdd9a07

Browse files
committedJul 3, 2021
Auto merge of #79965 - ijackson:moreerrnos, r=joshtriplett
More ErrorKinds for common errnos From the commit message of the main commit here (as revised): ``` There are a number of IO error situations which it would be very useful for Rust code to be able to recognise without having to resort to OS-specific code. Taking some Unix examples, `ENOTEMPTY` and `EXDEV` have obvious recovery strategies. Recently I was surprised to discover that `ENOSPC` came out as `ErrorKind::Other`. Since I am familiar with Unix I reviwed the list of errno values in https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html Here, I add those that most clearly seem to be needed. `@CraftSpider` provided information about Windows, and references, which I have tried to take into account. This has to be insta-stable because we can't sensibly have a different set of ErrorKinds depending on a std feature flag. I have *not* added these to the mapping tables for any operating systems other than Unix and Windows. I hope that it is OK to add them now for Unix and Windows now, and maybe add them to other OS's mapping tables as and when someone on that OS is able to consider the situation. I adopted the general principle that it was usually a bad idea to map two distinct error values to the same Rust error code. I notice that this principle is already violated in the case of `EACCES` and `EPERM`, which both map to `PermissionDenied`. I think this was probably a mistake but it would be quite hard to change now, so I don't propose to do anything about that. However, for Windows, there are sometimes different error codes for identical situations. Eg there are WSA* versions of some error codes as well as ERROR_* ones. Also Windows seems to have a great many more erorr codes. I don't know precisely what best practice would be for Windows. ``` <strike> ``` Errno values I wasn't sure about so *haven't* included: EMFILE ENFILE ENOBUFS ENOLCK: These are all fairly Unix-specific resource exhaustion situations. In practice it seemed not very likely to me that anyone would want to handle these differently to `Other`. ENOMEM ERANGE EDOM EOVERFLOW Normally these don't get exposed to the Rust callers I hope. They don't tend to come out of filesystem APIs. EILSEQ Hopefully Rust libraries open files in binary mode and do the converstion in Rust. So Rust code ought not to be exposed to EILSEQ. EIO The range of things that could cause this is troublesome. I found it difficult to describe. I do think it would be useful to add this at some point, because EIO on a filesystem operation is much more serious than most other errors. ENETDOWN I wasn't sure if this was useful or, indeed, if any modern systems use it. ENOEXEC It is not clear to me how a Rust program could respond to this. It seems rather niche. EPROTO ENETRESET ENODATA ENOMSG ENOPROTOOPT ENOSR ENOSTR ETIME ENOTRECOVERABLE EOWNERDEAD EBADMSG EPROTONOSUPPORT EPROTOTYPE EIDRM These are network or STREAMS related errors which I have never in my own Unix programming found the need to do anything with. I think someone who understands these better should be the one to try to find good Rust names and descriptions for them. ENOTTY ENXIO ENODEV EOPNOTSUPP ESRCH EALREADY ECANCELED ECHILD EINPROGRESS These are very hard to get unless you're already doing something very Unix-specific, in which case the raw_os_error interface is probably more suitable than relying on the Rust ErrorKind mapping. EFAULT EBADF These would seem to be the result of application UB. ``` </strike> <i>(omitted errnos are discussed below, especially in #79965 (comment))
2 parents cd48e61 + 333d42d commit fdd9a07

File tree

5 files changed

+2107
-109
lines changed

5 files changed

+2107
-109
lines changed
 

‎library/std/src/io/error.rs

+139-21
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ pub enum ErrorKind {
105105
/// The connection was reset by the remote server.
106106
#[stable(feature = "rust1", since = "1.0.0")]
107107
ConnectionReset,
108+
/// The remote host is not reachable.
109+
#[unstable(feature = "io_error_more", issue = "86442")]
110+
HostUnreachable,
111+
/// The network containing the remote host is not reachable.
112+
#[unstable(feature = "io_error_more", issue = "86442")]
113+
NetworkUnreachable,
108114
/// The connection was aborted (terminated) by the remote server.
109115
#[stable(feature = "rust1", since = "1.0.0")]
110116
ConnectionAborted,
@@ -119,6 +125,9 @@ pub enum ErrorKind {
119125
/// local.
120126
#[stable(feature = "rust1", since = "1.0.0")]
121127
AddrNotAvailable,
128+
/// The system's networking is down.
129+
#[unstable(feature = "io_error_more", issue = "86442")]
130+
NetworkDown,
122131
/// The operation failed because a pipe was closed.
123132
#[stable(feature = "rust1", since = "1.0.0")]
124133
BrokenPipe,
@@ -129,6 +138,38 @@ pub enum ErrorKind {
129138
/// requested to not occur.
130139
#[stable(feature = "rust1", since = "1.0.0")]
131140
WouldBlock,
141+
/// A filesystem object is, unexpectedly, not a directory.
142+
///
143+
/// For example, a filesystem path was specified where one of the intermediate directory
144+
/// components was, in fact, a plain file.
145+
#[unstable(feature = "io_error_more", issue = "86442")]
146+
NotADirectory,
147+
/// The filesystem object is, unexpectedly, a directory.
148+
///
149+
/// A directory was specified when a non-directory was expected.
150+
#[unstable(feature = "io_error_more", issue = "86442")]
151+
IsADirectory,
152+
/// A non-empty directory was specified where an empty directory was expected.
153+
#[unstable(feature = "io_error_more", issue = "86442")]
154+
DirectoryNotEmpty,
155+
/// The filesystem or storage medium is read-only, but a write operation was attempted.
156+
#[unstable(feature = "io_error_more", issue = "86442")]
157+
ReadOnlyFilesystem,
158+
/// Loop in the filesystem or IO subsystem; often, too many levels of symbolic links.
159+
///
160+
/// There was a loop (or excessively long chain) resolving a filesystem object
161+
/// or file IO object.
162+
///
163+
/// On Unix this is usually the result of a symbolic link loop; or, of exceeding the
164+
/// system-specific limit on the depth of symlink traversal.
165+
#[unstable(feature = "io_error_more", issue = "86442")]
166+
FilesystemLoop,
167+
/// Stale network file handle.
168+
///
169+
/// With some network filesystems, notably NFS, an open file (or directory) can be invalidated
170+
/// by problems with the network or server.
171+
#[unstable(feature = "io_error_more", issue = "86442")]
172+
StaleNetworkFileHandle,
132173
/// A parameter was incorrect.
133174
#[stable(feature = "rust1", since = "1.0.0")]
134175
InvalidInput,
@@ -158,6 +199,62 @@ pub enum ErrorKind {
158199
/// [`Ok(0)`]: Ok
159200
#[stable(feature = "rust1", since = "1.0.0")]
160201
WriteZero,
202+
/// The underlying storage (typically, a filesystem) is full.
203+
///
204+
/// This does not include out of quota errors.
205+
#[unstable(feature = "io_error_more", issue = "86442")]
206+
StorageFull,
207+
/// Seek on unseekable file.
208+
///
209+
/// Seeking was attempted on an open file handle which is not suitable for seeking - for
210+
/// example, on Unix, a named pipe opened with `File::open`.
211+
#[unstable(feature = "io_error_more", issue = "86442")]
212+
NotSeekable,
213+
/// Filesystem quota was exceeded.
214+
#[unstable(feature = "io_error_more", issue = "86442")]
215+
FilesystemQuotaExceeded,
216+
/// File larger than allowed or supported.
217+
///
218+
/// This might arise from a hard limit of the underlying filesystem or file access API, or from
219+
/// an administratively imposed resource limitation. Simple disk full, and out of quota, have
220+
/// their own errors.
221+
#[unstable(feature = "io_error_more", issue = "86442")]
222+
FileTooLarge,
223+
/// Resource is busy.
224+
#[unstable(feature = "io_error_more", issue = "86442")]
225+
ResourceBusy,
226+
/// Executable file is busy.
227+
///
228+
/// An attempt was made to write to a file which is also in use as a running program. (Not all
229+
/// operating systems detect this situation.)
230+
#[unstable(feature = "io_error_more", issue = "86442")]
231+
ExecutableFileBusy,
232+
/// Deadlock (avoided).
233+
///
234+
/// A file locking operation would result in deadlock. This situation is typically detected, if
235+
/// at all, on a best-effort basis.
236+
#[unstable(feature = "io_error_more", issue = "86442")]
237+
Deadlock,
238+
/// Cross-device or cross-filesystem (hard) link or rename.
239+
#[unstable(feature = "io_error_more", issue = "86442")]
240+
CrossesDevices,
241+
/// Too many (hard) links to the same filesystem object.
242+
///
243+
/// The filesystem does not support making so many hardlinks to the same file.
244+
#[unstable(feature = "io_error_more", issue = "86442")]
245+
TooManyLinks,
246+
/// Filename too long.
247+
///
248+
/// The limit might be from the underlying filesystem or API, or an administratively imposed
249+
/// resource limit.
250+
#[unstable(feature = "io_error_more", issue = "86442")]
251+
FilenameTooLong,
252+
/// Program argument list too long.
253+
///
254+
/// When trying to run an external program, a system or process limit on the size of the
255+
/// arguments would have been exceeded.
256+
#[unstable(feature = "io_error_more", issue = "86442")]
257+
ArgumentListTooLong,
161258
/// This operation was interrupted.
162259
///
163260
/// Interrupted operations can typically be retried.
@@ -209,28 +306,49 @@ pub enum ErrorKind {
209306

210307
impl ErrorKind {
211308
pub(crate) fn as_str(&self) -> &'static str {
309+
use ErrorKind::*;
212310
match *self {
213-
ErrorKind::NotFound => "entity not found",
214-
ErrorKind::PermissionDenied => "permission denied",
215-
ErrorKind::ConnectionRefused => "connection refused",
216-
ErrorKind::ConnectionReset => "connection reset",
217-
ErrorKind::ConnectionAborted => "connection aborted",
218-
ErrorKind::NotConnected => "not connected",
219-
ErrorKind::AddrInUse => "address in use",
220-
ErrorKind::AddrNotAvailable => "address not available",
221-
ErrorKind::BrokenPipe => "broken pipe",
222-
ErrorKind::AlreadyExists => "entity already exists",
223-
ErrorKind::WouldBlock => "operation would block",
224-
ErrorKind::InvalidInput => "invalid input parameter",
225-
ErrorKind::InvalidData => "invalid data",
226-
ErrorKind::TimedOut => "timed out",
227-
ErrorKind::WriteZero => "write zero",
228-
ErrorKind::Interrupted => "operation interrupted",
229-
ErrorKind::UnexpectedEof => "unexpected end of file",
230-
ErrorKind::Unsupported => "unsupported",
231-
ErrorKind::OutOfMemory => "out of memory",
232-
ErrorKind::Other => "other error",
233-
ErrorKind::Uncategorized => "uncategorized error",
311+
AddrInUse => "address in use",
312+
AddrNotAvailable => "address not available",
313+
AlreadyExists => "entity already exists",
314+
ArgumentListTooLong => "argument list too long",
315+
BrokenPipe => "broken pipe",
316+
ResourceBusy => "resource busy",
317+
ConnectionAborted => "connection aborted",
318+
ConnectionRefused => "connection refused",
319+
ConnectionReset => "connection reset",
320+
CrossesDevices => "cross-device link or rename",
321+
Deadlock => "deadlock",
322+
DirectoryNotEmpty => "directory not empty",
323+
ExecutableFileBusy => "executable file busy",
324+
FilenameTooLong => "filename too long",
325+
FilesystemQuotaExceeded => "filesystem quota exceeded",
326+
FileTooLarge => "file too large",
327+
HostUnreachable => "host unreachable",
328+
Interrupted => "operation interrupted",
329+
InvalidData => "invalid data",
330+
InvalidInput => "invalid input parameter",
331+
IsADirectory => "is a directory",
332+
NetworkDown => "network down",
333+
NetworkUnreachable => "network unreachable",
334+
NotADirectory => "not a directory",
335+
StorageFull => "no storage space",
336+
NotConnected => "not connected",
337+
NotFound => "entity not found",
338+
Other => "other error",
339+
OutOfMemory => "out of memory",
340+
PermissionDenied => "permission denied",
341+
ReadOnlyFilesystem => "read-only filesystem or storage medium",
342+
StaleNetworkFileHandle => "stale network file handle",
343+
FilesystemLoop => "filesystem loop or indirection limit (e.g. symlink loop)",
344+
NotSeekable => "seek on unseekable file",
345+
TimedOut => "timed out",
346+
TooManyLinks => "too many links",
347+
Uncategorized => "uncategorized error",
348+
UnexpectedEof => "unexpected end of file",
349+
Unsupported => "unsupported",
350+
WouldBlock => "operation would block",
351+
WriteZero => "write zero",
234352
}
235353
}
236354
}

‎library/std/src/sys/unix/mod.rs

+39-17
Original file line numberDiff line numberDiff line change
@@ -133,29 +133,51 @@ pub use crate::sys::android::signal;
133133
pub use libc::signal;
134134

135135
pub fn decode_error_kind(errno: i32) -> ErrorKind {
136+
use ErrorKind::*;
136137
match errno as libc::c_int {
137-
libc::ECONNREFUSED => ErrorKind::ConnectionRefused,
138-
libc::ECONNRESET => ErrorKind::ConnectionReset,
139-
libc::EPERM | libc::EACCES => ErrorKind::PermissionDenied,
140-
libc::EPIPE => ErrorKind::BrokenPipe,
141-
libc::ENOTCONN => ErrorKind::NotConnected,
142-
libc::ECONNABORTED => ErrorKind::ConnectionAborted,
143-
libc::EADDRNOTAVAIL => ErrorKind::AddrNotAvailable,
144-
libc::EADDRINUSE => ErrorKind::AddrInUse,
145-
libc::ENOENT => ErrorKind::NotFound,
146-
libc::EINTR => ErrorKind::Interrupted,
147-
libc::EINVAL => ErrorKind::InvalidInput,
148-
libc::ETIMEDOUT => ErrorKind::TimedOut,
149-
libc::EEXIST => ErrorKind::AlreadyExists,
150-
libc::ENOSYS => ErrorKind::Unsupported,
151-
libc::ENOMEM => ErrorKind::OutOfMemory,
138+
libc::E2BIG => ArgumentListTooLong,
139+
libc::EADDRINUSE => AddrInUse,
140+
libc::EADDRNOTAVAIL => AddrNotAvailable,
141+
libc::EBUSY => ResourceBusy,
142+
libc::ECONNABORTED => ConnectionAborted,
143+
libc::ECONNREFUSED => ConnectionRefused,
144+
libc::ECONNRESET => ConnectionReset,
145+
libc::EDEADLK => Deadlock,
146+
libc::EDQUOT => FilesystemQuotaExceeded,
147+
libc::EEXIST => AlreadyExists,
148+
libc::EFBIG => FileTooLarge,
149+
libc::EHOSTUNREACH => HostUnreachable,
150+
libc::EINTR => Interrupted,
151+
libc::EINVAL => InvalidInput,
152+
libc::EISDIR => IsADirectory,
153+
libc::ELOOP => FilesystemLoop,
154+
libc::ENOENT => NotFound,
155+
libc::ENOMEM => OutOfMemory,
156+
libc::ENOSPC => StorageFull,
157+
libc::ENOSYS => Unsupported,
158+
libc::EMLINK => TooManyLinks,
159+
libc::ENAMETOOLONG => FilenameTooLong,
160+
libc::ENETDOWN => NetworkDown,
161+
libc::ENETUNREACH => NetworkUnreachable,
162+
libc::ENOTCONN => NotConnected,
163+
libc::ENOTDIR => NotADirectory,
164+
libc::ENOTEMPTY => DirectoryNotEmpty,
165+
libc::EPIPE => BrokenPipe,
166+
libc::EROFS => ReadOnlyFilesystem,
167+
libc::ESPIPE => NotSeekable,
168+
libc::ESTALE => StaleNetworkFileHandle,
169+
libc::ETIMEDOUT => TimedOut,
170+
libc::ETXTBSY => ExecutableFileBusy,
171+
libc::EXDEV => CrossesDevices,
172+
173+
libc::EACCES | libc::EPERM => PermissionDenied,
152174

153175
// These two constants can have the same value on some systems,
154176
// but different values on others, so we can't use a match
155177
// clause
156-
x if x == libc::EAGAIN || x == libc::EWOULDBLOCK => ErrorKind::WouldBlock,
178+
x if x == libc::EAGAIN || x == libc::EWOULDBLOCK => WouldBlock,
157179

158-
_ => ErrorKind::Uncategorized,
180+
_ => Uncategorized,
159181
}
160182
}
161183

‎library/std/src/sys/windows/c.rs

+4-49
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ use crate::ptr;
1010

1111
use libc::{c_void, size_t, wchar_t};
1212

13+
#[path = "c/errors.rs"] // c.rs is included from two places so we need to specify this
14+
mod errors;
15+
pub use errors::*;
16+
1317
pub use self::EXCEPTION_DISPOSITION::*;
1418
pub use self::FILE_INFO_BY_HANDLE_CLASS::*;
1519

@@ -134,19 +138,6 @@ pub const WSASYS_STATUS_LEN: usize = 128;
134138
pub const WSAPROTOCOL_LEN: DWORD = 255;
135139
pub const INVALID_SOCKET: SOCKET = !0;
136140

137-
pub const WSAEACCES: c_int = 10013;
138-
pub const WSAEINVAL: c_int = 10022;
139-
pub const WSAEWOULDBLOCK: c_int = 10035;
140-
pub const WSAEPROTOTYPE: c_int = 10041;
141-
pub const WSAEADDRINUSE: c_int = 10048;
142-
pub const WSAEADDRNOTAVAIL: c_int = 10049;
143-
pub const WSAECONNABORTED: c_int = 10053;
144-
pub const WSAECONNRESET: c_int = 10054;
145-
pub const WSAENOTCONN: c_int = 10057;
146-
pub const WSAESHUTDOWN: c_int = 10058;
147-
pub const WSAETIMEDOUT: c_int = 10060;
148-
pub const WSAECONNREFUSED: c_int = 10061;
149-
150141
pub const MAX_PROTOCOL_CHAIN: DWORD = 7;
151142

152143
pub const MAXIMUM_REPARSE_DATA_BUFFER_SIZE: usize = 16 * 1024;
@@ -166,42 +157,6 @@ pub const STD_ERROR_HANDLE: DWORD = -12i32 as DWORD;
166157

167158
pub const PROGRESS_CONTINUE: DWORD = 0;
168159

169-
// List of Windows system error codes with descriptions:
170-
// https://docs.microsoft.com/en-us/windows/win32/debug/system-error-codes#system-error-codes
171-
pub const ERROR_FILE_NOT_FOUND: DWORD = 2;
172-
pub const ERROR_PATH_NOT_FOUND: DWORD = 3;
173-
pub const ERROR_ACCESS_DENIED: DWORD = 5;
174-
pub const ERROR_INVALID_HANDLE: DWORD = 6;
175-
pub const ERROR_NOT_ENOUGH_MEMORY: DWORD = 8;
176-
pub const ERROR_OUTOFMEMORY: DWORD = 14;
177-
pub const ERROR_NO_MORE_FILES: DWORD = 18;
178-
pub const ERROR_SHARING_VIOLATION: u32 = 32;
179-
pub const ERROR_HANDLE_EOF: DWORD = 38;
180-
pub const ERROR_FILE_EXISTS: DWORD = 80;
181-
pub const ERROR_INVALID_PARAMETER: DWORD = 87;
182-
pub const ERROR_BROKEN_PIPE: DWORD = 109;
183-
pub const ERROR_CALL_NOT_IMPLEMENTED: DWORD = 120;
184-
pub const ERROR_SEM_TIMEOUT: DWORD = 121;
185-
pub const ERROR_INSUFFICIENT_BUFFER: DWORD = 122;
186-
pub const ERROR_ALREADY_EXISTS: DWORD = 183;
187-
pub const ERROR_ENVVAR_NOT_FOUND: DWORD = 203;
188-
pub const ERROR_NO_DATA: DWORD = 232;
189-
pub const ERROR_DRIVER_CANCEL_TIMEOUT: DWORD = 594;
190-
pub const ERROR_OPERATION_ABORTED: DWORD = 995;
191-
pub const ERROR_IO_PENDING: DWORD = 997;
192-
pub const ERROR_SERVICE_REQUEST_TIMEOUT: DWORD = 1053;
193-
pub const ERROR_COUNTER_TIMEOUT: DWORD = 1121;
194-
pub const ERROR_TIMEOUT: DWORD = 1460;
195-
pub const ERROR_RESOURCE_CALL_TIMED_OUT: DWORD = 5910;
196-
pub const ERROR_CTX_MODEM_RESPONSE_TIMEOUT: DWORD = 7012;
197-
pub const ERROR_CTX_CLIENT_QUERY_TIMEOUT: DWORD = 7040;
198-
pub const FRS_ERR_SYSVOL_POPULATE_TIMEOUT: DWORD = 8014;
199-
pub const ERROR_DS_TIMELIMIT_EXCEEDED: DWORD = 8226;
200-
pub const DNS_ERROR_RECORD_TIMED_OUT: DWORD = 9705;
201-
pub const ERROR_IPSEC_IKE_TIMED_OUT: DWORD = 13805;
202-
pub const ERROR_RUNLEVEL_SWITCH_TIMEOUT: DWORD = 15402;
203-
pub const ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT: DWORD = 15403;
204-
205160
pub const E_NOTIMPL: HRESULT = 0x80004001u32 as HRESULT;
206161

207162
pub const INVALID_HANDLE_VALUE: HANDLE = !0 as HANDLE;

‎library/std/src/sys/windows/c/errors.rs

+1,883
Large diffs are not rendered by default.

‎library/std/src/sys/windows/mod.rs

+42-22
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,18 @@ pub unsafe fn cleanup() {
6161
}
6262

6363
pub fn decode_error_kind(errno: i32) -> ErrorKind {
64+
use ErrorKind::*;
65+
6466
match errno as c::DWORD {
65-
c::ERROR_ACCESS_DENIED => return ErrorKind::PermissionDenied,
66-
c::ERROR_ALREADY_EXISTS => return ErrorKind::AlreadyExists,
67-
c::ERROR_FILE_EXISTS => return ErrorKind::AlreadyExists,
68-
c::ERROR_BROKEN_PIPE => return ErrorKind::BrokenPipe,
69-
c::ERROR_FILE_NOT_FOUND => return ErrorKind::NotFound,
70-
c::ERROR_PATH_NOT_FOUND => return ErrorKind::NotFound,
71-
c::ERROR_NO_DATA => return ErrorKind::BrokenPipe,
72-
c::ERROR_INVALID_PARAMETER => return ErrorKind::InvalidInput,
73-
c::ERROR_NOT_ENOUGH_MEMORY | c::ERROR_OUTOFMEMORY => return ErrorKind::OutOfMemory,
67+
c::ERROR_ACCESS_DENIED => return PermissionDenied,
68+
c::ERROR_ALREADY_EXISTS => return AlreadyExists,
69+
c::ERROR_FILE_EXISTS => return AlreadyExists,
70+
c::ERROR_BROKEN_PIPE => return BrokenPipe,
71+
c::ERROR_FILE_NOT_FOUND => return NotFound,
72+
c::ERROR_PATH_NOT_FOUND => return NotFound,
73+
c::ERROR_NO_DATA => return BrokenPipe,
74+
c::ERROR_INVALID_PARAMETER => return InvalidInput,
75+
c::ERROR_NOT_ENOUGH_MEMORY | c::ERROR_OUTOFMEMORY => return OutOfMemory,
7476
c::ERROR_SEM_TIMEOUT
7577
| c::WAIT_TIMEOUT
7678
| c::ERROR_DRIVER_CANCEL_TIMEOUT
@@ -86,24 +88,42 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind {
8688
| c::DNS_ERROR_RECORD_TIMED_OUT
8789
| c::ERROR_IPSEC_IKE_TIMED_OUT
8890
| c::ERROR_RUNLEVEL_SWITCH_TIMEOUT
89-
| c::ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT => return ErrorKind::TimedOut,
90-
c::ERROR_CALL_NOT_IMPLEMENTED => return ErrorKind::Unsupported,
91+
| c::ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT => return TimedOut,
92+
c::ERROR_CALL_NOT_IMPLEMENTED => return Unsupported,
93+
c::ERROR_HOST_UNREACHABLE => return HostUnreachable,
94+
c::ERROR_NETWORK_UNREACHABLE => return NetworkUnreachable,
95+
c::ERROR_DIRECTORY => return NotADirectory,
96+
c::ERROR_DIRECTORY_NOT_SUPPORTED => return IsADirectory,
97+
c::ERROR_DIR_NOT_EMPTY => return DirectoryNotEmpty,
98+
c::ERROR_WRITE_PROTECT => return ReadOnlyFilesystem,
99+
c::ERROR_DISK_FULL | c::ERROR_HANDLE_DISK_FULL => return StorageFull,
100+
c::ERROR_SEEK_ON_DEVICE => return NotSeekable,
101+
c::ERROR_DISK_QUOTA_EXCEEDED => return FilesystemQuotaExceeded,
102+
c::ERROR_FILE_TOO_LARGE => return FileTooLarge,
103+
c::ERROR_BUSY => return ResourceBusy,
104+
c::ERROR_POSSIBLE_DEADLOCK => return Deadlock,
105+
c::ERROR_NOT_SAME_DEVICE => return CrossesDevices,
106+
c::ERROR_TOO_MANY_LINKS => return TooManyLinks,
107+
c::ERROR_FILENAME_EXCED_RANGE => return FilenameTooLong,
91108
_ => {}
92109
}
93110

94111
match errno {
95-
c::WSAEACCES => ErrorKind::PermissionDenied,
96-
c::WSAEADDRINUSE => ErrorKind::AddrInUse,
97-
c::WSAEADDRNOTAVAIL => ErrorKind::AddrNotAvailable,
98-
c::WSAECONNABORTED => ErrorKind::ConnectionAborted,
99-
c::WSAECONNREFUSED => ErrorKind::ConnectionRefused,
100-
c::WSAECONNRESET => ErrorKind::ConnectionReset,
101-
c::WSAEINVAL => ErrorKind::InvalidInput,
102-
c::WSAENOTCONN => ErrorKind::NotConnected,
103-
c::WSAEWOULDBLOCK => ErrorKind::WouldBlock,
104-
c::WSAETIMEDOUT => ErrorKind::TimedOut,
112+
c::WSAEACCES => PermissionDenied,
113+
c::WSAEADDRINUSE => AddrInUse,
114+
c::WSAEADDRNOTAVAIL => AddrNotAvailable,
115+
c::WSAECONNABORTED => ConnectionAborted,
116+
c::WSAECONNREFUSED => ConnectionRefused,
117+
c::WSAECONNRESET => ConnectionReset,
118+
c::WSAEINVAL => InvalidInput,
119+
c::WSAENOTCONN => NotConnected,
120+
c::WSAEWOULDBLOCK => WouldBlock,
121+
c::WSAETIMEDOUT => TimedOut,
122+
c::WSAEHOSTUNREACH => HostUnreachable,
123+
c::WSAENETDOWN => NetworkDown,
124+
c::WSAENETUNREACH => NetworkUnreachable,
105125

106-
_ => ErrorKind::Uncategorized,
126+
_ => Uncategorized,
107127
}
108128
}
109129

0 commit comments

Comments
 (0)
Please sign in to comment.