summaryrefslogtreecommitdiff
path: root/src/errno.rs
blob: 852bd06eccaf1b8f8297bee6facdd8caf5b0758b (plain)
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
#![cfg(target_os = "linux")]

use std::fmt;
use std::os::errno;
use std::num::from_int;
use libc::c_int;

pub type SysResult<T> = Result<T, SysError>;

#[deriving(Clone)]
pub struct SysError {
    pub kind: Errno,
    pub desc: &'static str
}

impl SysError {
    pub fn last() -> SysError {
        match from_int(errno()) {
            Some(no) => SysError::new(no),
            _ => SysError::new(UnknownErrno)
        }
    }

    pub fn new(kind: Errno) -> SysError {
        SysError {
            kind: kind,
            desc: desc(kind)
        }
    }
}

impl fmt::Show for SysError {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        write!(fmt, "Errno {} - {}", self.kind as int, self.desc)
    }
}

#[inline]
pub fn from_ffi(res: c_int) -> SysResult<()> {
    if res != 0 {
        return Err(SysError::last());
    }

    Ok(())
}

#[deriving(Show, Clone, PartialEq, FromPrimitive)]
pub enum Errno {
    UnknownErrno    = 0,
    EPERM           = 1,
    ENOENT          = 2,
    ESRCH           = 3,
    EINTR           = 4,
    EIO             = 5,
    ENXIO           = 6,
    E2BIG           = 7,
    ENOEXEC         = 8,
    EBADF           = 9,
    ECHILD          = 10,
    EAGAIN          = 11,
    ENOMEM          = 12,
    EACCES          = 13,
    EFAULT          = 14,
    ENOTBLK         = 15,
    EBUSY           = 16,
    EEXIST          = 17,
    EXDEV           = 18,
    ENODEV          = 19,
    ENOTDIR         = 20,
    EISDIR          = 21,
    EINVAL          = 22,
    ENFILE          = 23,
    EMFILE          = 24,
    ENOTTY          = 25,
    ETXTBSY         = 26,
    EFBIG           = 27,
    ENOSPC          = 28,
    ESPIPE          = 29,
    EROFS           = 30,
    EMLINK          = 31,
    EPIPE           = 32,
    EDOM            = 33,
    ERANGE          = 34,
    EDEADLK         = 35,
    ENAMETOOLONG    = 36,
    ENOLCK          = 37,
    ENOSYS          = 38,
    ENOTEMPTY       = 39,
    ELOOP           = 40,
    ENOMSG          = 42,
    EIDRM           = 43,
    ECHRNG          = 44,
    EL2NSYNC        = 45,
    EL3HLT          = 46,
    EL3RST          = 47,
    ELNRNG          = 48,
    EUNATCH         = 49,
    ENOCSI          = 50,
    EL2HLT          = 51,
    EBADE           = 52,
    EBADR           = 53,
    EXFULL          = 54,
    ENOANO          = 55,
    EBADRQC         = 56,
    EBADSLT         = 57,
    EBFONT          = 59,
    ENOSTR          = 60,
    ENODATA         = 61,
    ETIME           = 62,
    ENOSR           = 63,
    ENONET          = 64,
    ENOPKG          = 65,
    EREMOTE         = 66,
    ENOLINK         = 67,
    EADV            = 68,
    ESRMNT          = 69,
    ECOMM           = 70,
    EPROTO          = 71,
    EMULTIHOP       = 72,
    EDOTDOT         = 73,
    EBADMSG         = 74,
    EOVERFLOW       = 75,
    ENOTUNIQ        = 76,
    EBADFD          = 77,
    EREMCHG         = 78,
    ELIBACC         = 79,
    ELIBBAD         = 80,
    ELIBSCN         = 81,
    ELIBMAX         = 82,
    ELIBEXEC        = 83,
    EILSEQ          = 84,
    ERESTART        = 85,
    ESTRPIPE        = 86,
    EUSERS          = 87,
    ENOTSOCK        = 88,
    EDESTADDRREQ    = 89,
    EMSGSIZE        = 90,
    EPROTOTYPE      = 91,
    ENOPROTOOPT     = 92,
    EPROTONOSUPPORT = 93,
    ESOCKTNOSUPPORT = 94,
    EOPNOTSUPP      = 95,
    EPFNOSUPPORT    = 96,
    EAFNOSUPPORT    = 97,
    EADDRINUSE      = 98,
    EADDRNOTAVAIL   = 99,
    ENETDOWN        = 100,
    ENETUNREACH     = 101,
    ENETRESET       = 102,
    ECONNABORTED    = 103,
    ECONNRESET      = 104,
    ENOBUFS         = 105,
    EISCONN         = 106,
    ENOTCONN        = 107,
    ESHUTDOWN       = 108,
    ETOOMANYREFS    = 109,
    ETIMEDOUT       = 110,
    ECONNREFUSED    = 111,
    EHOSTDOWN       = 112,
    EHOSTUNREACH    = 113,
    EALREADY        = 114,
    EINPROGRESS     = 115,
    ESTALE          = 116,
    EUCLEAN         = 117,
    ENOTNAM         = 118,
    ENAVAIL         = 119,
    EISNAM          = 120,
    EREMOTEIO       = 121,
    EDQUOT          = 122,
    ENOMEDIUM       = 123,
    EMEDIUMTYPE     = 124,
    ECANCELED       = 125,
    ENOKEY          = 126,
    EKEYEXPIRED     = 127,
    EKEYREVOKED     = 128,
    EKEYREJECTED    = 129,
    EOWNERDEAD      = 130,
    ENOTRECOVERABLE = 131,
    ERFKILL         = 132,
    EHWPOISON       = 133,
}

pub static EWOULDBLOCK: Errno = EAGAIN;
pub static EDEADLOCK:   Errno = EDEADLK;

fn desc(kind: Errno) -> &'static str {
    match kind {
        UnknownErrno    => "Unknown errno",
        EPERM           => "Operation not permitted",
        ENOENT          => "No such file or directory",
        ESRCH           => "No such process",
        EINTR           => "Interrupted system call",
        EIO             => "I/O error",
        ENXIO           => "No such device or address",
        E2BIG           => "Argument list too long",
        ENOEXEC         => "Exec format error",
        EBADF           => "Bad file number",
        ECHILD          => "No child processes",
        EAGAIN          => "Try again",
        ENOMEM          => "Out of memory",
        EACCES          => "Permission denied",
        EFAULT          => "Bad address",
        ENOTBLK         => "Block device required",
        EBUSY           => "Device or resource busy",
        EEXIST          => "File exists",
        EXDEV           => "Cross-device link",
        ENODEV          => "No such device",
        ENOTDIR         => "Not a directory",
        EISDIR          => "Is a directory",
        EINVAL          => "Invalid argument",
        ENFILE          => "File table overflow",
        EMFILE          => "Too many open files",
        ENOTTY          => "Not a typewriter",
        ETXTBSY         => "Text file busy",
        EFBIG           => "File too large",
        ENOSPC          => "No space left on device",
        ESPIPE          => "Illegal seek",
        EROFS           => "Read-only file system",
        EMLINK          => "Too many links",
        EPIPE           => "Broken pipe",
        EDOM            => "Math argument out of domain of func",
        ERANGE          => "Math result not representable",
        EDEADLK         => "Resource deadlock would occur",
        ENAMETOOLONG    => "File name too long",
        ENOLCK          => "No record locks available",
        ENOSYS          => "Function not implemented",
        ENOTEMPTY       => "Directory not empty",
        ELOOP           => "Too many symbolic links encountered",
        ENOMSG          => "No message of desired type",
        EIDRM           => "Identifier removed",
        ECHRNG          => "Channel number out of range",
        EL2NSYNC        => "Level 2 not synchronized",
        EL3HLT          => "Level 3 halted",
        EL3RST          => "Level 3 reset",
        ELNRNG          => "Link number out of range",
        EUNATCH         => "Protocol driver not attached",
        ENOCSI          => "No CSI structure available",
        EL2HLT          => "Level 2 halted",
        EBADE           => "Invalid exchange",
        EBADR           => "Invalid request descriptor",
        EXFULL          => "Exchange full",
        ENOANO          => "No anode",
        EBADRQC         => "Invalid request code",
        EBADSLT         => "Invalid slot",
        EBFONT          => "Bad font file format",
        ENOSTR          => "Device not a stream",
        ENODATA         => "No data available",
        ETIME           => "Timer expired",
        ENOSR           => "Out of streams resources",
        ENONET          => "Machine is not on the network",
        ENOPKG          => "Package not installed",
        EREMOTE         => "Object is remote",
        ENOLINK         => "Link has been severed",
        EADV            => "Advertise error",
        ESRMNT          => "Srmount error",
        ECOMM           => "Communication error on send",
        EPROTO          => "Protocol error",
        EMULTIHOP       => "Multihop attempted",
        EDOTDOT         => "RFS specific error",
        EBADMSG         => "Not a data message",
        EOVERFLOW       => "Value too large for defined data type",
        ENOTUNIQ        => "Name not unique on network",
        EBADFD          => "File descriptor in bad state",
        EREMCHG         => "Remote address changed",
        ELIBACC         => "Can not acces a needed shared library",
        ELIBBAD         => "Accessing a corrupted shared library",
        ELIBSCN         => ".lib section in a.out corrupted",
        ELIBMAX         => "Attempting to link in too many shared libraries",
        ELIBEXEC        => "Cannot exec a shared library directly",
        EILSEQ          => "Illegal byte sequence",
        ERESTART        => "Interrupted system call should be restarted",
        ESTRPIPE        => "Streams pipe error",
        EUSERS          => "Too many users",
        ENOTSOCK        => "Socket operation on non-socket",
        EDESTADDRREQ    => "Destination address required",
        EMSGSIZE        => "Message too long",
        EPROTOTYPE      => "Protocol wrong type for socket",
        ENOPROTOOPT     => "Protocol not available",
        EPROTONOSUPPORT => "Protocol not supported",
        ESOCKTNOSUPPORT => "Socket type not supported",
        EOPNOTSUPP      => "Operation not supported on transport endpoint",
        EPFNOSUPPORT    => "Protocol family not supported",
        EAFNOSUPPORT    => "Address family not supported by protocol",
        EADDRINUSE      => "Address already in use",
        EADDRNOTAVAIL   => "Cannot assign requested address",
        ENETDOWN        => "Network is down",
        ENETUNREACH     => "Network is unreachable",
        ENETRESET       => "Network dropped connection because of reset",
        ECONNABORTED    => "Software caused connection abort",
        ECONNRESET      => "Connection reset by peer",
        ENOBUFS         => "No buffer space available",
        EISCONN         => "Transport endpoint is already connected",
        ENOTCONN        => "Transport endpoint is not connected",
        ESHUTDOWN       => "Cannot send after transport endpoint shutdown",
        ETOOMANYREFS    => "Too many references: cannot splice",
        ETIMEDOUT       => "Connection timed out",
        ECONNREFUSED    => "Connection refused",
        EHOSTDOWN       => "Host is down",
        EHOSTUNREACH    => "No route to host",
        EALREADY        => "Operation already in progress",
        EINPROGRESS     => "Operation now in progress",
        ESTALE          => "Stale file handle",
        EUCLEAN         => "Structure needs cleaning",
        ENOTNAM         => "Not a XENIX named type file",
        ENAVAIL         => "No XENIX semaphores available",
        EISNAM          => "Is a named type file",
        EREMOTEIO       => "Remote I/O error",
        EDQUOT          => "Quota exceeded",
        ENOMEDIUM       => "No medium found",
        EMEDIUMTYPE     => "Wrong medium type",
        ECANCELED       => "Operation canceled",
        ENOKEY          => "Required key not available",
        EKEYEXPIRED     => "Key has expired",
        EKEYREVOKED     => "Key has been revoked",
        EKEYREJECTED    => "Key was rejected by service",
        EOWNERDEAD      => "Owner died",
        ENOTRECOVERABLE => "State not recoverable",
        ERFKILL         => "Operation not possible due to RF-kill",
        EHWPOISON       => "Memory page has hardware error"
    }
}