1d6fb4894SJohn Baldwin /*- 2d6fb4894SJohn Baldwin * Copyright (c) 2015 John H. Baldwin <jhb@FreeBSD.org> 3d6fb4894SJohn Baldwin * All rights reserved. 4d6fb4894SJohn Baldwin * 5d6fb4894SJohn Baldwin * Redistribution and use in source and binary forms, with or without 6d6fb4894SJohn Baldwin * modification, are permitted provided that the following conditions 7d6fb4894SJohn Baldwin * are met: 8d6fb4894SJohn Baldwin * 1. Redistributions of source code must retain the above copyright 9d6fb4894SJohn Baldwin * notice, this list of conditions and the following disclaimer. 10d6fb4894SJohn Baldwin * 2. Redistributions in binary form must reproduce the above copyright 11d6fb4894SJohn Baldwin * notice, this list of conditions and the following disclaimer in the 12d6fb4894SJohn Baldwin * documentation and/or other materials provided with the distribution. 13d6fb4894SJohn Baldwin * 14d6fb4894SJohn Baldwin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15d6fb4894SJohn Baldwin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16d6fb4894SJohn Baldwin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17d6fb4894SJohn Baldwin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18d6fb4894SJohn Baldwin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19d6fb4894SJohn Baldwin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20d6fb4894SJohn Baldwin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21d6fb4894SJohn Baldwin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22d6fb4894SJohn Baldwin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23d6fb4894SJohn Baldwin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24d6fb4894SJohn Baldwin * SUCH DAMAGE. 25d6fb4894SJohn Baldwin * 26d6fb4894SJohn Baldwin * $FreeBSD$ 27d6fb4894SJohn Baldwin */ 28d6fb4894SJohn Baldwin 29d6fb4894SJohn Baldwin #ifndef __SYSDECODE_H__ 30d6fb4894SJohn Baldwin #define __SYSDECODE_H__ 31d6fb4894SJohn Baldwin 32a5f14abfSJohn Baldwin enum sysdecode_abi { 335842bd68SJohn Baldwin SYSDECODE_ABI_UNKNOWN = 0, 345842bd68SJohn Baldwin SYSDECODE_ABI_FREEBSD, 355842bd68SJohn Baldwin SYSDECODE_ABI_FREEBSD32, 365842bd68SJohn Baldwin SYSDECODE_ABI_LINUX, 375842bd68SJohn Baldwin SYSDECODE_ABI_LINUX32, 385842bd68SJohn Baldwin SYSDECODE_ABI_CLOUDABI64 39a5f14abfSJohn Baldwin }; 40a5f14abfSJohn Baldwin 41287b96ddSJohn Baldwin int sysdecode_abi_to_freebsd_errno(enum sysdecode_abi _abi, int _error); 42*9289f547SJohn Baldwin bool sysdecode_access_mode(FILE *_fp, int _mode, int *_rem); 43*9289f547SJohn Baldwin const char *sysdecode_acltype(int _type); 44*9289f547SJohn Baldwin const char *sysdecode_atfd(int _fd); 45*9289f547SJohn Baldwin bool sysdecode_cap_fcntlrights(FILE *_fp, uint32_t _rights, uint32_t *_rem); 46*9289f547SJohn Baldwin void sysdecode_cap_rights(FILE *_fp, cap_rights_t *_rightsp); 47*9289f547SJohn Baldwin const char *sysdecode_extattrnamespace(int _namespace); 48*9289f547SJohn Baldwin const char *sysdecode_fadvice(int _advice); 49*9289f547SJohn Baldwin void sysdecode_fcntl_arg(FILE *_fp, int _cmd, uintptr_t _arg, int _base); 50*9289f547SJohn Baldwin bool sysdecode_fcntl_arg_p(int _cmd); 51*9289f547SJohn Baldwin const char *sysdecode_fcntl_cmd(int _cmd); 52*9289f547SJohn Baldwin bool sysdecode_fcntl_fileflags(FILE *_fp, int _flags, int *_rem); 53*9289f547SJohn Baldwin bool sysdecode_fileflags(FILE *_fp, fflags_t _flags, fflags_t *_rem); 54*9289f547SJohn Baldwin bool sysdecode_filemode(FILE *_fp, int _mode, int *_rem); 55*9289f547SJohn Baldwin bool sysdecode_flock_operation(FILE *_fp, int _operation, int *_rem); 56287b96ddSJohn Baldwin int sysdecode_freebsd_to_abi_errno(enum sysdecode_abi _abi, int _error); 57*9289f547SJohn Baldwin bool sysdecode_getfsstat_flags(FILE *_fp, int _flags, int *_rem); 58*9289f547SJohn Baldwin const char *sysdecode_idtype(int _idtype); 59265e5898SJohn Baldwin const char *sysdecode_ioctlname(unsigned long _val); 60*9289f547SJohn Baldwin const char *sysdecode_ipproto(int _protocol); 61*9289f547SJohn Baldwin const char *sysdecode_kldsym_cmd(int _cmd); 62*9289f547SJohn Baldwin const char *sysdecode_kldunload_flags(int _flags); 63*9289f547SJohn Baldwin const char *sysdecode_lio_listio_mode(int _mode); 64*9289f547SJohn Baldwin const char *sysdecode_madvice(int _advice); 65*9289f547SJohn Baldwin const char *sysdecode_minherit_inherit(int _inherit); 66*9289f547SJohn Baldwin const char *sysdecode_msgctl_cmd(int _cmd); 67*9289f547SJohn Baldwin bool sysdecode_mlockall_flags(FILE *_fp, int _flags, int *_rem); 68*9289f547SJohn Baldwin bool sysdecode_mmap_flags(FILE *_fp, int _flags, int *_rem); 69*9289f547SJohn Baldwin bool sysdecode_mmap_prot(FILE *_fp, int _prot, int *_rem); 70*9289f547SJohn Baldwin bool sysdecode_mount_flags(FILE *_fp, int _flags, int *_rem); 71*9289f547SJohn Baldwin bool sysdecode_msg_flags(FILE *_fp, int _flags, int *_rem); 72*9289f547SJohn Baldwin bool sysdecode_msync_flags(FILE *_fp, int _flags, int *_rem); 73*9289f547SJohn Baldwin const char *sysdecode_nfssvc_flags(int _flags); 74*9289f547SJohn Baldwin bool sysdecode_open_flags(FILE *_fp, int _flags, int *_rem); 75*9289f547SJohn Baldwin bool sysdecode_pipe2_flags(FILE *_fp, int _flags, int *_rem); 76*9289f547SJohn Baldwin const char *sysdecode_prio_which(int _which); 77*9289f547SJohn Baldwin const char *sysdecode_procctl_cmd(int _cmd); 78*9289f547SJohn Baldwin const char *sysdecode_ptrace_request(int _request); 79*9289f547SJohn Baldwin bool sysdecode_quotactl_cmd(FILE *_fp, int _cmd); 80*9289f547SJohn Baldwin bool sysdecode_reboot_howto(FILE *_fp, int _howto, int *_rem); 81*9289f547SJohn Baldwin bool sysdecode_rfork_flags(FILE *_fp, int _flags, int *_rem); 82*9289f547SJohn Baldwin const char *sysdecode_rlimit(int _resource); 83*9289f547SJohn Baldwin const char *sysdecode_rtprio_function(int _function); 84*9289f547SJohn Baldwin const char *sysdecode_scheduler_policy(int _policy); 85*9289f547SJohn Baldwin const char *sysdecode_semctl_cmd(int _cmd); 86*9289f547SJohn Baldwin bool sysdecode_semget_flags(FILE *_fp, int _flag, int *_rem); 87*9289f547SJohn Baldwin bool sysdecode_sendfile_flags(FILE *_fp, int _flags, int *_rem); 88*9289f547SJohn Baldwin bool sysdecode_shmat_flags(FILE *_fp, int _flags, int *_rem); 89*9289f547SJohn Baldwin const char *sysdecode_shmctl_cmd(int _cmd); 90*9289f547SJohn Baldwin const char *sysdecode_shutdown_how(int _how); 91*9289f547SJohn Baldwin const char *sysdecode_sigbus_code(int _si_code); 92*9289f547SJohn Baldwin const char *sysdecode_sigchld_code(int _si_code); 93*9289f547SJohn Baldwin const char *sysdecode_sigcode(int _sig, int _si_code); 94*9289f547SJohn Baldwin const char *sysdecode_sigfpe_code(int _si_code); 95*9289f547SJohn Baldwin const char *sysdecode_sigill_code(int _si_code); 96*9289f547SJohn Baldwin const char *sysdecode_signal(int _sig); 97*9289f547SJohn Baldwin const char *sysdecode_sigprocmask_how(int _how); 98*9289f547SJohn Baldwin const char *sysdecode_sigsegv_code(int _si_code); 99*9289f547SJohn Baldwin const char *sysdecode_sigtrap_code(int _si_code); 100*9289f547SJohn Baldwin const char *sysdecode_sockaddr_family(int _sa_family); 101*9289f547SJohn Baldwin const char *sysdecode_socketdomain(int _domain); 102*9289f547SJohn Baldwin bool sysdecode_socket_type(FILE *_fp, int _type, int *_rem); 103*9289f547SJohn Baldwin const char *sysdecode_sockopt_level(int _level); 104*9289f547SJohn Baldwin const char *sysdecode_sockopt_name(int _level, int _optname); 105a5f14abfSJohn Baldwin const char *sysdecode_syscallname(enum sysdecode_abi _abi, unsigned int _code); 106*9289f547SJohn Baldwin bool sysdecode_thr_create_flags(FILE *_fp, int _flags, int *_rem); 107*9289f547SJohn Baldwin bool sysdecode_umtx_cvwait_flags(FILE *_fp, u_long _flags, u_long *_rem); 108*9289f547SJohn Baldwin const char *sysdecode_umtx_op(int _op); 109*9289f547SJohn Baldwin bool sysdecode_umtx_rwlock_flags(FILE *_fp, u_long _flags, u_long *_rem); 110d6fb4894SJohn Baldwin int sysdecode_utrace(FILE *_fp, void *_buf, size_t _len); 111*9289f547SJohn Baldwin bool sysdecode_vmprot(FILE *_fp, int _type, int *_rem); 112*9289f547SJohn Baldwin const char *sysdecode_vmresult(int _result); 113*9289f547SJohn Baldwin bool sysdecode_wait4_options(FILE *_fp, int _options, int *_rem); 114*9289f547SJohn Baldwin bool sysdecode_wait6_options(FILE *_fp, int _options, int *_rem); 115*9289f547SJohn Baldwin const char *sysdecode_whence(int _whence); 116d6fb4894SJohn Baldwin 117d6fb4894SJohn Baldwin #endif /* !__SYSDECODE_H__ */ 118