18a16b7a1SPedro F. Giffuni /*- 28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 38a16b7a1SPedro F. Giffuni * 458f0484fSRodney W. Grimes * Copyright (c) 1982, 1985, 1993 558f0484fSRodney W. Grimes * The Regents of the University of California. All rights reserved. 658f0484fSRodney W. Grimes * 758f0484fSRodney W. Grimes * Redistribution and use in source and binary forms, with or without 858f0484fSRodney W. Grimes * modification, are permitted provided that the following conditions 958f0484fSRodney W. Grimes * are met: 1058f0484fSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 1158f0484fSRodney W. Grimes * notice, this list of conditions and the following disclaimer. 1258f0484fSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 1358f0484fSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 1458f0484fSRodney W. Grimes * documentation and/or other materials provided with the distribution. 15fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors 1658f0484fSRodney W. Grimes * may be used to endorse or promote products derived from this software 1758f0484fSRodney W. Grimes * without specific prior written permission. 1858f0484fSRodney W. Grimes * 1958f0484fSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2058f0484fSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2158f0484fSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2258f0484fSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2358f0484fSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2458f0484fSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2558f0484fSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2658f0484fSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2758f0484fSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2858f0484fSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2958f0484fSRodney W. Grimes * SUCH DAMAGE. 3058f0484fSRodney W. Grimes */ 3158f0484fSRodney W. Grimes 32cd49e866SKonstantin Belousov #include <errno.h> 3358f0484fSRodney W. Grimes #include <stdio.h> 34e73151ebSJilles Tjoelker #include "errlst.h" 3558f0484fSRodney W. Grimes 36cd49e866SKonstantin Belousov const char __uprefix[] = "Unknown error"; 37cd49e866SKonstantin Belousov 3858f0484fSRodney W. Grimes const char *const sys_errlist[] = { 3929730574SJilles Tjoelker "No error: 0", /* 0 - ENOERROR */ 4058f0484fSRodney W. Grimes "Operation not permitted", /* 1 - EPERM */ 4158f0484fSRodney W. Grimes "No such file or directory", /* 2 - ENOENT */ 4258f0484fSRodney W. Grimes "No such process", /* 3 - ESRCH */ 4358f0484fSRodney W. Grimes "Interrupted system call", /* 4 - EINTR */ 4458f0484fSRodney W. Grimes "Input/output error", /* 5 - EIO */ 4558f0484fSRodney W. Grimes "Device not configured", /* 6 - ENXIO */ 4658f0484fSRodney W. Grimes "Argument list too long", /* 7 - E2BIG */ 4758f0484fSRodney W. Grimes "Exec format error", /* 8 - ENOEXEC */ 4858f0484fSRodney W. Grimes "Bad file descriptor", /* 9 - EBADF */ 4958f0484fSRodney W. Grimes "No child processes", /* 10 - ECHILD */ 5058f0484fSRodney W. Grimes "Resource deadlock avoided", /* 11 - EDEADLK */ 5158f0484fSRodney W. Grimes "Cannot allocate memory", /* 12 - ENOMEM */ 5258f0484fSRodney W. Grimes "Permission denied", /* 13 - EACCES */ 5358f0484fSRodney W. Grimes "Bad address", /* 14 - EFAULT */ 5458f0484fSRodney W. Grimes "Block device required", /* 15 - ENOTBLK */ 5558f0484fSRodney W. Grimes "Device busy", /* 16 - EBUSY */ 5658f0484fSRodney W. Grimes "File exists", /* 17 - EEXIST */ 5758f0484fSRodney W. Grimes "Cross-device link", /* 18 - EXDEV */ 5858f0484fSRodney W. Grimes "Operation not supported by device", /* 19 - ENODEV */ 5958f0484fSRodney W. Grimes "Not a directory", /* 20 - ENOTDIR */ 6058f0484fSRodney W. Grimes "Is a directory", /* 21 - EISDIR */ 6158f0484fSRodney W. Grimes "Invalid argument", /* 22 - EINVAL */ 6258f0484fSRodney W. Grimes "Too many open files in system", /* 23 - ENFILE */ 6358f0484fSRodney W. Grimes "Too many open files", /* 24 - EMFILE */ 6458f0484fSRodney W. Grimes "Inappropriate ioctl for device", /* 25 - ENOTTY */ 6558f0484fSRodney W. Grimes "Text file busy", /* 26 - ETXTBSY */ 6658f0484fSRodney W. Grimes "File too large", /* 27 - EFBIG */ 6758f0484fSRodney W. Grimes "No space left on device", /* 28 - ENOSPC */ 6858f0484fSRodney W. Grimes "Illegal seek", /* 29 - ESPIPE */ 6958f0484fSRodney W. Grimes "Read-only file system", /* 30 - EROFS */ 7058f0484fSRodney W. Grimes "Too many links", /* 31 - EMLINK */ 7158f0484fSRodney W. Grimes "Broken pipe", /* 32 - EPIPE */ 7258f0484fSRodney W. Grimes 7358f0484fSRodney W. Grimes /* math software */ 7458f0484fSRodney W. Grimes "Numerical argument out of domain", /* 33 - EDOM */ 7558f0484fSRodney W. Grimes "Result too large", /* 34 - ERANGE */ 7658f0484fSRodney W. Grimes 7758f0484fSRodney W. Grimes /* non-blocking and interrupt i/o */ 7858f0484fSRodney W. Grimes "Resource temporarily unavailable", /* 35 - EAGAIN */ 7958f0484fSRodney W. Grimes /* 35 - EWOULDBLOCK */ 8058f0484fSRodney W. Grimes "Operation now in progress", /* 36 - EINPROGRESS */ 8158f0484fSRodney W. Grimes "Operation already in progress", /* 37 - EALREADY */ 8258f0484fSRodney W. Grimes 8358f0484fSRodney W. Grimes /* ipc/network software -- argument errors */ 8458f0484fSRodney W. Grimes "Socket operation on non-socket", /* 38 - ENOTSOCK */ 8558f0484fSRodney W. Grimes "Destination address required", /* 39 - EDESTADDRREQ */ 8658f0484fSRodney W. Grimes "Message too long", /* 40 - EMSGSIZE */ 8758f0484fSRodney W. Grimes "Protocol wrong type for socket", /* 41 - EPROTOTYPE */ 8858f0484fSRodney W. Grimes "Protocol not available", /* 42 - ENOPROTOOPT */ 8958f0484fSRodney W. Grimes "Protocol not supported", /* 43 - EPROTONOSUPPORT */ 9058f0484fSRodney W. Grimes "Socket type not supported", /* 44 - ESOCKTNOSUPPORT */ 9158f0484fSRodney W. Grimes "Operation not supported", /* 45 - EOPNOTSUPP */ 9258f0484fSRodney W. Grimes "Protocol family not supported", /* 46 - EPFNOSUPPORT */ 9358f0484fSRodney W. Grimes /* 47 - EAFNOSUPPORT */ 9458f0484fSRodney W. Grimes "Address family not supported by protocol family", 9558f0484fSRodney W. Grimes "Address already in use", /* 48 - EADDRINUSE */ 9658f0484fSRodney W. Grimes "Can't assign requested address", /* 49 - EADDRNOTAVAIL */ 9758f0484fSRodney W. Grimes 9858f0484fSRodney W. Grimes /* ipc/network software -- operational errors */ 9958f0484fSRodney W. Grimes "Network is down", /* 50 - ENETDOWN */ 10058f0484fSRodney W. Grimes "Network is unreachable", /* 51 - ENETUNREACH */ 10158f0484fSRodney W. Grimes "Network dropped connection on reset", /* 52 - ENETRESET */ 10258f0484fSRodney W. Grimes "Software caused connection abort", /* 53 - ECONNABORTED */ 10358f0484fSRodney W. Grimes "Connection reset by peer", /* 54 - ECONNRESET */ 10458f0484fSRodney W. Grimes "No buffer space available", /* 55 - ENOBUFS */ 10558f0484fSRodney W. Grimes "Socket is already connected", /* 56 - EISCONN */ 10658f0484fSRodney W. Grimes "Socket is not connected", /* 57 - ENOTCONN */ 10758f0484fSRodney W. Grimes "Can't send after socket shutdown", /* 58 - ESHUTDOWN */ 10858f0484fSRodney W. Grimes "Too many references: can't splice", /* 59 - ETOOMANYREFS */ 10958f0484fSRodney W. Grimes "Operation timed out", /* 60 - ETIMEDOUT */ 11058f0484fSRodney W. Grimes "Connection refused", /* 61 - ECONNREFUSED */ 11158f0484fSRodney W. Grimes 11258f0484fSRodney W. Grimes "Too many levels of symbolic links", /* 62 - ELOOP */ 11358f0484fSRodney W. Grimes "File name too long", /* 63 - ENAMETOOLONG */ 11458f0484fSRodney W. Grimes 11558f0484fSRodney W. Grimes /* should be rearranged */ 11658f0484fSRodney W. Grimes "Host is down", /* 64 - EHOSTDOWN */ 11758f0484fSRodney W. Grimes "No route to host", /* 65 - EHOSTUNREACH */ 11858f0484fSRodney W. Grimes "Directory not empty", /* 66 - ENOTEMPTY */ 11958f0484fSRodney W. Grimes 12058f0484fSRodney W. Grimes /* quotas & mush */ 12158f0484fSRodney W. Grimes "Too many processes", /* 67 - EPROCLIM */ 12258f0484fSRodney W. Grimes "Too many users", /* 68 - EUSERS */ 12358f0484fSRodney W. Grimes "Disc quota exceeded", /* 69 - EDQUOT */ 12458f0484fSRodney W. Grimes 12558f0484fSRodney W. Grimes /* Network File System */ 12658f0484fSRodney W. Grimes "Stale NFS file handle", /* 70 - ESTALE */ 12758f0484fSRodney W. Grimes "Too many levels of remote in path", /* 71 - EREMOTE */ 12858f0484fSRodney W. Grimes "RPC struct is bad", /* 72 - EBADRPC */ 12958f0484fSRodney W. Grimes "RPC version wrong", /* 73 - ERPCMISMATCH */ 13058f0484fSRodney W. Grimes "RPC prog. not avail", /* 74 - EPROGUNAVAIL */ 13158f0484fSRodney W. Grimes "Program version wrong", /* 75 - EPROGMISMATCH */ 13258f0484fSRodney W. Grimes "Bad procedure for program", /* 76 - EPROCUNAVAIL */ 13358f0484fSRodney W. Grimes 13458f0484fSRodney W. Grimes "No locks available", /* 77 - ENOLCK */ 13558f0484fSRodney W. Grimes "Function not implemented", /* 78 - ENOSYS */ 13658f0484fSRodney W. Grimes "Inappropriate file type or format", /* 79 - EFTYPE */ 13700c7dcf6SPoul-Henning Kamp "Authentication error", /* 80 - EAUTH */ 13800c7dcf6SPoul-Henning Kamp "Need authenticator", /* 81 - ENEEDAUTH */ 13900c7dcf6SPoul-Henning Kamp "Identifier removed", /* 82 - EIDRM */ 14000c7dcf6SPoul-Henning Kamp "No message of desired type", /* 83 - ENOMSG */ 14100c7dcf6SPoul-Henning Kamp "Value too large to be stored in data type", /* 84 - EOVERFLOW */ 14200c7dcf6SPoul-Henning Kamp "Operation canceled", /* 85 - ECANCELED */ 14300c7dcf6SPoul-Henning Kamp "Illegal byte sequence", /* 86 - EILSEQ */ 1449d9737ecSBrian Feldman "Attribute not found", /* 87 - ENOATTR */ 1459d6d1ee6SPoul-Henning Kamp 1469d6d1ee6SPoul-Henning Kamp /* General */ 147bb7d71b9SPoul-Henning Kamp "Programming error", /* 88 - EDOOFUS */ 1485e9b87a8SDavid Schultz 1495e9b87a8SDavid Schultz "Bad message", /* 89 - EBADMSG */ 1505e9b87a8SDavid Schultz "Multihop attempted", /* 90 - EMULTIHOP */ 1515e9b87a8SDavid Schultz "Link has been severed", /* 91 - ENOLINK */ 1525e9b87a8SDavid Schultz "Protocol error", /* 92 - EPROTO */ 15344a43f00SRobert Watson "Capabilities insufficient", /* 93 - ENOTCAPABLE */ 154b70ad7a8SRobert Watson "Not permitted in capability mode", /* 94 - ECAPMODE */ 155e0906c9aSSergey Kandaurov "State not recoverable", /* 95 - ENOTRECOVERABLE */ 156e0906c9aSSergey Kandaurov "Previous owner died", /* 96 - EOWNERDEAD */ 157*88640c0eSKirk McKusick "Integrity check failed", /* 97 - EINTEGRITY */ 158cd49e866SKonstantin Belousov 159cd49e866SKonstantin Belousov /* 160cd49e866SKonstantin Belousov * Reserved space in sys_errlist, take the next slot for a next error code. 161cd49e866SKonstantin Belousov * Reserve prevents the array size from changing for some time. 162cd49e866SKonstantin Belousov */ 163cd49e866SKonstantin Belousov __uprefix, /* 98 */ 164cd49e866SKonstantin Belousov __uprefix, /* 99 */ 165cd49e866SKonstantin Belousov __uprefix, /* 100 */ 166cd49e866SKonstantin Belousov __uprefix, /* 101 */ 167cd49e866SKonstantin Belousov __uprefix, /* 102 */ 168cd49e866SKonstantin Belousov __uprefix, /* 103 */ 169cd49e866SKonstantin Belousov __uprefix, /* 104 */ 170cd49e866SKonstantin Belousov __uprefix, /* 105 */ 171cd49e866SKonstantin Belousov __uprefix, /* 106 */ 172cd49e866SKonstantin Belousov __uprefix, /* 107 */ 173cd49e866SKonstantin Belousov __uprefix, /* 108 */ 174cd49e866SKonstantin Belousov __uprefix, /* 109 */ 175cd49e866SKonstantin Belousov __uprefix, /* 110 */ 176cd49e866SKonstantin Belousov __uprefix, /* 111 */ 177cd49e866SKonstantin Belousov __uprefix, /* 112 */ 178cd49e866SKonstantin Belousov __uprefix, /* 113 */ 179cd49e866SKonstantin Belousov __uprefix, /* 114 */ 180cd49e866SKonstantin Belousov __uprefix, /* 115 */ 181cd49e866SKonstantin Belousov __uprefix, /* 116 */ 182cd49e866SKonstantin Belousov __uprefix, /* 117 */ 183cd49e866SKonstantin Belousov __uprefix, /* 118 */ 184cd49e866SKonstantin Belousov __uprefix, /* 119 */ 185cd49e866SKonstantin Belousov __uprefix, /* 120 */ 186cd49e866SKonstantin Belousov __uprefix, /* 121 */ 187cd49e866SKonstantin Belousov __uprefix, /* 122 */ 188cd49e866SKonstantin Belousov __uprefix, /* 123 */ 189cd49e866SKonstantin Belousov __uprefix, /* 124 */ 190cd49e866SKonstantin Belousov __uprefix, /* 125 */ 191cd49e866SKonstantin Belousov __uprefix, /* 126 */ 192cd49e866SKonstantin Belousov __uprefix, /* 127 */ 193cd49e866SKonstantin Belousov __uprefix, /* 128 */ 194cd49e866SKonstantin Belousov __uprefix, /* 129 */ 195cd49e866SKonstantin Belousov __uprefix, /* 130 */ 196cd49e866SKonstantin Belousov __uprefix, /* 131 */ 197cd49e866SKonstantin Belousov __uprefix, /* 132 */ 198cd49e866SKonstantin Belousov __uprefix, /* 133 */ 199cd49e866SKonstantin Belousov __uprefix, /* 134 */ 200cd49e866SKonstantin Belousov __uprefix, /* 135 */ 201cd49e866SKonstantin Belousov __uprefix, /* 136 */ 202cd49e866SKonstantin Belousov __uprefix, /* 137 */ 203cd49e866SKonstantin Belousov __uprefix, /* 138 */ 204cd49e866SKonstantin Belousov __uprefix, /* 139 */ 205cd49e866SKonstantin Belousov __uprefix, /* 140 */ 206cd49e866SKonstantin Belousov __uprefix, /* 141 */ 207cd49e866SKonstantin Belousov __uprefix, /* 142 */ 208cd49e866SKonstantin Belousov __uprefix, /* 143 */ 209cd49e866SKonstantin Belousov __uprefix, /* 144 */ 210cd49e866SKonstantin Belousov __uprefix, /* 145 */ 211cd49e866SKonstantin Belousov __uprefix, /* 146 */ 212cd49e866SKonstantin Belousov __uprefix, /* 147 */ 213cd49e866SKonstantin Belousov __uprefix, /* 148 */ 214cd49e866SKonstantin Belousov __uprefix, /* 149 */ 215cd49e866SKonstantin Belousov __uprefix, /* 150 */ 21658f0484fSRodney W. Grimes }; 217cd49e866SKonstantin Belousov const int sys_nerr = ELAST + 1; 218e73151ebSJilles Tjoelker 219294246bbSEd Maste #ifdef PIC 220e73151ebSJilles Tjoelker __strong_reference(sys_errlist, __hidden_sys_errlist); 221e73151ebSJilles Tjoelker __strong_reference(sys_nerr, __hidden_sys_nerr); 222e73151ebSJilles Tjoelker #endif 223