hermit/errno.rs
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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
/// Operation not permitted
pub const EPERM: i32 = 1;
/// No such file or directory
pub const ENOENT: i32 = 2;
/// No such process
pub const ESRCH: i32 = 3;
/// Interrupted system call
pub const EINTR: i32 = 4;
/// I/O error
pub const EIO: i32 = 5;
/// No such device or address
pub const ENXIO: i32 = 6;
/// Argument list too long
pub const E2BIG: i32 = 7;
/// Exec format error
pub const ENOEXEC: i32 = 8;
/// Bad file number
pub const EBADF: i32 = 9;
/// No child processes
pub const ECHILD: i32 = 10;
/// Try again
pub const EAGAIN: i32 = 11;
/// Out of memory
pub const ENOMEM: i32 = 12;
/// Permission denied
pub const EACCES: i32 = 13;
/// Bad address
pub const EFAULT: i32 = 14;
/// Block device required
pub const ENOTBLK: i32 = 15;
/// Device or resource busy
pub const EBUSY: i32 = 16;
/// File exists
pub const EEXIST: i32 = 17;
/// Cross-device link
pub const EXDEV: i32 = 18;
/// No such device
pub const ENODEV: i32 = 19;
/// Not a directory
pub const ENOTDIR: i32 = 20;
/// Is a directory
pub const EISDIR: i32 = 21;
/// Invalid argument
pub const EINVAL: i32 = 22;
/// File table overflow
pub const ENFILE: i32 = 23;
/// Too many open files
pub const EMFILE: i32 = 24;
/// Not a typewriter
pub const ENOTTY: i32 = 25;
/// Text file busy
pub const ETXTBSY: i32 = 26;
/// File too large
pub const EFBIG: i32 = 27;
/// No space left on device
pub const ENOSPC: i32 = 28;
/// Illegal seek
pub const ESPIPE: i32 = 29;
/// Read-only file system
pub const EROFS: i32 = 30;
/// Too many links
pub const EMLINK: i32 = 31;
/// Broken pipe
pub const EPIPE: i32 = 32;
/// Math argument out of domain of func
pub const EDOM: i32 = 33;
/// Math result not representable
pub const ERANGE: i32 = 34;
/// Resource deadlock would occur
pub const EDEADLK: i32 = 35;
/// File name too long
pub const ENAMETOOLONG: i32 = 36;
/// No record locks available
pub const ENOLCK: i32 = 37;
/// Function not implemented
pub const ENOSYS: i32 = 38;
/// Directory not empty
pub const ENOTEMPTY: i32 = 39;
/// Too many symbolic links encountered
pub const ELOOP: i32 = 40;
/// Operation would block
pub const EWOULDBLOCK: i32 = EAGAIN;
/// No message of desired type
pub const ENOMSG: i32 = 42;
/// Identifier removed
pub const EIDRM: i32 = 43;
/// Channel number out of range
pub const ECHRNG: i32 = 44;
/// Level 2 not synchronized
pub const EL2NSYNC: i32 = 45;
/// Level 3 halted
pub const EL3HLT: i32 = 46;
/// Level 3 reset
pub const EL3RST: i32 = 47;
/// Link number out of range
pub const ELNRNG: i32 = 48;
/// Protocol driver not attached
pub const EUNATCH: i32 = 49;
/// No CSI structure available
pub const ENOCSI: i32 = 50;
/// Level 2 halted
pub const EL2HLT: i32 = 51;
/// Invalid exchange
pub const EBADE: i32 = 52;
/// Invalid request descriptor
pub const EBADR: i32 = 53;
/// Exchange full
pub const EXFULL: i32 = 54;
/// No anode
pub const ENOANO: i32 = 55;
/// Invalid request code
pub const EBADRQC: i32 = 56;
/// Invalid slot
pub const EBADSLT: i32 = 57;
pub const EDEADLOCK: i32 = EDEADLK;
/// Bad font file format
pub const EBFONT: i32 = 59;
/// Device not a stream
pub const ENOSTR: i32 = 60;
/// No data available
pub const ENODATA: i32 = 61;
/// Timer expired
pub const ETIME: i32 = 62;
/// Out of streams resources
pub const ENOSR: i32 = 63;
/// Machine is not on the network
pub const ENONET: i32 = 64;
/// Package not installed
pub const ENOPKG: i32 = 65;
/// Object is remote
pub const EREMOTE: i32 = 66;
/// Link has been severed
pub const ENOLINK: i32 = 67;
/// Advertise error
pub const EADV: i32 = 68;
/// Srmount error
pub const ESRMNT: i32 = 69;
/// Communication error on send
pub const ECOMM: i32 = 70;
/// Protocol error
pub const EPROTO: i32 = 71;
/// Multihop attempted
pub const EMULTIHOP: i32 = 72;
/// RFS specific error
pub const EDOTDOT: i32 = 73;
/// Not a data message
pub const EBADMSG: i32 = 74;
/// Value too large for defined data type
pub const EOVERFLOW: i32 = 75;
/// Name not unique on network
pub const ENOTUNIQ: i32 = 76;
/// File descriptor in bad state
pub const EBADFD: i32 = 77;
/// Remote address changed
pub const EREMCHG: i32 = 78;
/// Can not access a needed shared library
pub const ELIBACC: i32 = 79;
/// Accessing a corrupted shared library
pub const ELIBBAD: i32 = 80;
/// .lib section in a.out corrupted
pub const ELIBSCN: i32 = 81;
/// Attempting to link in too many shared libraries
pub const ELIBMAX: i32 = 82;
/// Cannot exec a shared library directly
pub const ELIBEXEC: i32 = 83;
/// Illegal byte sequence
pub const EILSEQ: i32 = 84;
/// Interrupted system call should be restarted
pub const ERESTART: i32 = 85;
/// Streams pipe error
pub const ESTRPIPE: i32 = 86;
/// Too many users
pub const EUSERS: i32 = 87;
/// Socket operation on non-socket
pub const ENOTSOCK: i32 = 88;
/// Destination address required
pub const EDESTADDRREQ: i32 = 89;
/// Message too long
pub const EMSGSIZE: i32 = 90;
/// Protocol wrong type for socket
pub const EPROTOTYPE: i32 = 91;
/// Protocol not available
pub const ENOPROTOOPT: i32 = 92;
/// Protocol not supported
pub const EPROTONOSUPPORT: i32 = 93;
/// Socket type not supported
pub const ESOCKTNOSUPPORT: i32 = 94;
/// Operation not supported on transport endpoint
pub const EOPNOTSUPP: i32 = 95;
/// Protocol family not supported
pub const EPFNOSUPPORT: i32 = 96;
/// Address family not supported by protocol
pub const EAFNOSUPPORT: i32 = 97;
/// Address already in use
pub const EADDRINUSE: i32 = 98;
/// Cannot assign requested address
pub const EADDRNOTAVAIL: i32 = 99;
/// Network is down
pub const ENETDOWN: i32 = 100;
/// Network is unreachable
pub const ENETUNREACH: i32 = 101;
/// Network dropped connection because of reset
pub const ENETRESET: i32 = 102;
/// Software caused connection abort
pub const ECONNABORTED: i32 = 103;
/// Connection reset by peer
pub const ECONNRESET: i32 = 104;
/// No buffer space available
pub const ENOBUFS: i32 = 105;
/// Transport endpoint is already connected
pub const EISCONN: i32 = 106;
/// Transport endpoint is not connected
pub const ENOTCONN: i32 = 107;
/// Cannot send after transport endpoint shutdown
pub const ESHUTDOWN: i32 = 108;
/// Too many references: cannot splice
pub const ETOOMANYREFS: i32 = 109;
/// Connection timed out
pub const ETIMEDOUT: i32 = 110;
/// Connection refused
pub const ECONNREFUSED: i32 = 111;
/// Host is down
pub const EHOSTDOWN: i32 = 112;
/// No route to host
pub const EHOSTUNREACH: i32 = 113;
/// Operation already in progress
pub const EALREADY: i32 = 114;
/// Operation now in progress
pub const EINPROGRESS: i32 = 115;
/// Stale file handle
pub const ESTALE: i32 = 116;
/// Structure needs cleaning
pub const EUCLEAN: i32 = 117;
/// Not a XENIX named type file
pub const ENOTNAM: i32 = 118;
/// No XENIX semaphores available
pub const ENAVAIL: i32 = 119;
/// Is a named type file
pub const EISNAM: i32 = 120;
/// Remote I/O error
pub const EREMOTEIO: i32 = 121;
/// Quota exceeded
pub const EDQUOT: i32 = 122;
/// No medium found
pub const ENOMEDIUM: i32 = 123;
/// Wrong medium type
pub const EMEDIUMTYPE: i32 = 124;
/// Operation Canceled
pub const ECANCELED: i32 = 125;
/// Required key not available
pub const ENOKEY: i32 = 126;
/// Key has expired
pub const EKEYEXPIRED: i32 = 127;
/// Key has been revoked
pub const EKEYREVOKED: i32 = 128;
/// Key was rejected by service
pub const EKEYREJECTED: i32 = 129;
/// Robust mutexes: Owner died
pub const EOWNERDEAD: i32 = 130;
/// Robust mutexes: State not recoverable
pub const ENOTRECOVERABLE: i32 = 131;
/// Robust mutexes: Operation not possible due to RF-kill
pub const ERFKILL: i32 = 132;
/// Robust mutexes: Memory page has hardware error
pub const EHWPOISON: i32 = 133;
#[cfg(all(
not(any(feature = "common-os", feature = "nostd")),
not(target_arch = "riscv64")
))]
#[thread_local]
pub(crate) static ERRNO: core::cell::UnsafeCell<i32> = core::cell::UnsafeCell::new(0);
/// Get the error number from the thread local storage
#[cfg(not(feature = "nostd"))]
#[no_mangle]
pub extern "C" fn sys_get_errno() -> i32 {
sys_errno()
}
/// Get the error number from the thread local storage
#[cfg(not(feature = "nostd"))]
#[no_mangle]
pub extern "C" fn sys_errno() -> i32 {
cfg_if::cfg_if! {
if #[cfg(any(feature = "common-os", target_arch = "riscv64"))] {
0
} else {
unsafe { ERRNO.get().read() }
}
}
}
pub(crate) trait ToErrno {
fn to_errno(&self) -> Option<i32> {
None
}
fn set_errno(self) -> Self
where
Self: Sized,
{
if let Some(errno) = self.to_errno() {
cfg_if::cfg_if! {
if #[cfg(any(feature = "common-os", feature = "nostd", target_arch = "riscv64"))] {
let _ = errno;
} else {
unsafe {
ERRNO.get().write(errno);
}
}
}
}
self
}
}
impl ToErrno for i32 {
fn to_errno(&self) -> Option<i32> {
let errno = if *self < 0 { -self } else { 0 };
Some(errno)
}
}
impl ToErrno for i64 {
fn to_errno(&self) -> Option<i32> {
let errno = if *self < 0 {
i32::try_from(-self).unwrap()
} else {
0
};
Some(errno)
}
}
impl ToErrno for isize {
fn to_errno(&self) -> Option<i32> {
let errno = if *self < 0 {
i32::try_from(-self).unwrap()
} else {
0
};
Some(errno)
}
}
impl ToErrno for u8 {}
impl ToErrno for u16 {}
impl ToErrno for u32 {}
impl ToErrno for usize {}
impl ToErrno for *mut u8 {}
impl ToErrno for () {}
impl ToErrno for ! {}