errno: implement strerror
i defo need to check my priorities but i wanted to play around with awk and the errno cli tool so leave me alone
This commit is contained in:
parent
c4717d8fce
commit
e79f9d5165
3 changed files with 156 additions and 0 deletions
|
@ -138,6 +138,15 @@
|
|||
#define ERFKILL 132
|
||||
#define EHWPOISON 133
|
||||
|
||||
/**
|
||||
* Obtain an error message from the POSIX error number.
|
||||
* The returned string must not be modified in any way.
|
||||
*
|
||||
* @param errnum: POSIX error number
|
||||
* @returns an immutable human-readable string briefly describing the error
|
||||
*/
|
||||
char *strerror(int errnum);
|
||||
|
||||
/* TODO: actually define errno */
|
||||
|
||||
/*
|
||||
|
|
|
@ -27,6 +27,7 @@ ARDIX_LIB_PWD := $(PWD)/lib
|
|||
|
||||
ARDIX_SOURCES += \
|
||||
$(ARDIX_LIB_PWD)/ctype.c \
|
||||
$(ARDIX_LIB_PWD)/errno.c \
|
||||
$(ARDIX_LIB_PWD)/list.c \
|
||||
$(ARDIX_LIB_PWD)/malloc.c \
|
||||
$(ARDIX_LIB_PWD)/string.c \
|
||||
|
|
146
lib/errno.c
Normal file
146
lib/errno.c
Normal file
|
@ -0,0 +1,146 @@
|
|||
/* SPDX-License-Identifier: BSD-3-Clause */
|
||||
/* See the end of this file for copyright, licensing, and warranty information. */
|
||||
|
||||
#include <ardix/util.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <toolchain.h>
|
||||
|
||||
__rodata static const char *error_messages[] = {
|
||||
[EPERM] "Operation not permitted",
|
||||
[ENOENT] "No such file or directory",
|
||||
[ESRCH] "No such process",
|
||||
[EINTR] "Interrupted system call",
|
||||
[EIO] "Input/output error",
|
||||
[ENXIO] "No such device or address",
|
||||
[E2BIG] "Argument list too long",
|
||||
[ENOEXEC] "Exec format error",
|
||||
[EBADF] "Bad file descriptor",
|
||||
[ECHILD] "No child process",
|
||||
[EAGAIN] "Resource temporarily unavailable",
|
||||
[ENOMEM] "Cannot allocate memory",
|
||||
[EACCES] "Permission denied",
|
||||
[EFAULT] "Bad address",
|
||||
[ENOTBLK] "Block device required",
|
||||
[EBUSY] "Device or resource busy",
|
||||
[EEXIST] "File exists",
|
||||
[EXDEV] "Invalid cross-device link",
|
||||
[ENODEV] "No such device",
|
||||
[ENOTDIR] "Not a directory",
|
||||
[EISDIR] "Is a directory",
|
||||
[EINVAL] "Invalid argument",
|
||||
[ENFILE] "Too many open files in system",
|
||||
[EMFILE] "Too many open files",
|
||||
[ENOTTY] "Inappropriate ioctl for device",
|
||||
[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] "Numerical argument out of domain",
|
||||
[ERANGE] "Numerical result out of range",
|
||||
[EDEADLK] "Resource deadlock avoided",
|
||||
[ENAMETOOLONG] "File name too long",
|
||||
[ENOLCK] "No locks available",
|
||||
[ENOSYS] "Function not implemented",
|
||||
[ENOTEMPTY] "Directory not empty",
|
||||
[ELOOP] "Too many levels of symbolic links",
|
||||
[EWOULDBLOCK] "Resource temporarily unavailable",
|
||||
[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",
|
||||
[EDEADLOCK] "Resource deadlock avoided",
|
||||
[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] "Bad 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 access 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] "Invalid or incomplete multibyte or wide character",
|
||||
[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",
|
||||
};
|
||||
|
||||
__shared char *strerror(int errnum)
|
||||
{
|
||||
if (errnum < 0)
|
||||
errnum = -errnum;
|
||||
|
||||
if ((unsigned int)errnum >= ARRAY_SIZE(error_messages))
|
||||
return NULL;
|
||||
|
||||
/*
|
||||
* POSIX prohibits modifying the string returned by strerror(), so we
|
||||
* can safely cast here. If userland is stupid enough to write to it
|
||||
* anyways, they will get a segfault because the messages are stored
|
||||
* in ROM rather than RAM.
|
||||
*/
|
||||
return (char *)error_messages[errnum];
|
||||
}
|
||||
|
||||
/*
|
||||
* Copyright (c) 2020 Felix Kopp <sandtler@sandtler.club>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification, are permitted
|
||||
* provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||
* conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of
|
||||
* conditions and the following disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
* 3. Neither the name of the copyright holder nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software without specific prior
|
||||
* written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
|
||||
* WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
Loading…
Reference in a new issue