1d6fb4894SJohn Baldwin /*- 2d6fb4894SJohn Baldwin * Copyright (c) 2015 John H. Baldwin <jhb@FreeBSD.org> 3d6fb4894SJohn Baldwin * 4d6fb4894SJohn Baldwin * Redistribution and use in source and binary forms, with or without 5d6fb4894SJohn Baldwin * modification, are permitted provided that the following conditions 6d6fb4894SJohn Baldwin * are met: 7d6fb4894SJohn Baldwin * 1. Redistributions of source code must retain the above copyright 8d6fb4894SJohn Baldwin * notice, this list of conditions and the following disclaimer. 9d6fb4894SJohn Baldwin * 2. Redistributions in binary form must reproduce the above copyright 10d6fb4894SJohn Baldwin * notice, this list of conditions and the following disclaimer in the 11d6fb4894SJohn Baldwin * documentation and/or other materials provided with the distribution. 12d6fb4894SJohn Baldwin * 13d6fb4894SJohn Baldwin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14d6fb4894SJohn Baldwin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15d6fb4894SJohn Baldwin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16d6fb4894SJohn Baldwin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17d6fb4894SJohn Baldwin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18d6fb4894SJohn Baldwin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19d6fb4894SJohn Baldwin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20d6fb4894SJohn Baldwin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21d6fb4894SJohn Baldwin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22d6fb4894SJohn Baldwin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23d6fb4894SJohn Baldwin * SUCH DAMAGE. 24d6fb4894SJohn Baldwin */ 25d6fb4894SJohn Baldwin 26d6fb4894SJohn Baldwin #ifndef __SYSDECODE_H__ 27d6fb4894SJohn Baldwin #define __SYSDECODE_H__ 28d6fb4894SJohn Baldwin 29354efc4cSMark Johnston #include <sys/types.h> 30354efc4cSMark Johnston #include <stdbool.h> 31354efc4cSMark Johnston #include <stdio.h> 32354efc4cSMark Johnston 33a5f14abfSJohn Baldwin enum sysdecode_abi { 345842bd68SJohn Baldwin SYSDECODE_ABI_UNKNOWN = 0, 355842bd68SJohn Baldwin SYSDECODE_ABI_FREEBSD, 365842bd68SJohn Baldwin SYSDECODE_ABI_FREEBSD32, 375842bd68SJohn Baldwin SYSDECODE_ABI_LINUX, 385842bd68SJohn Baldwin SYSDECODE_ABI_LINUX32, 39a5f14abfSJohn Baldwin }; 40a5f14abfSJohn Baldwin 41287b96ddSJohn Baldwin int sysdecode_abi_to_freebsd_errno(enum sysdecode_abi _abi, int _error); 429289f547SJohn Baldwin bool sysdecode_access_mode(FILE *_fp, int _mode, int *_rem); 439289f547SJohn Baldwin const char *sysdecode_acltype(int _type); 449289f547SJohn Baldwin const char *sysdecode_atfd(int _fd); 4539a3a438SJohn Baldwin bool sysdecode_atflags(FILE *_fp, int _flags, int *_rem); 469289f547SJohn Baldwin bool sysdecode_cap_fcntlrights(FILE *_fp, uint32_t _rights, uint32_t *_rem); 479289f547SJohn Baldwin void sysdecode_cap_rights(FILE *_fp, cap_rights_t *_rightsp); 48f3f3e3c4SMateusz Guzik bool sysdecode_close_range_flags(FILE *_fp, int _flags, int *_rem); 49a826eb5aSMichael Tuexen const char *sysdecode_cmsg_type(int _cmsg_level, int _cmsg_type); 509289f547SJohn Baldwin const char *sysdecode_extattrnamespace(int _namespace); 519289f547SJohn Baldwin const char *sysdecode_fadvice(int _advice); 529289f547SJohn Baldwin void sysdecode_fcntl_arg(FILE *_fp, int _cmd, uintptr_t _arg, int _base); 539289f547SJohn Baldwin bool sysdecode_fcntl_arg_p(int _cmd); 549289f547SJohn Baldwin const char *sysdecode_fcntl_cmd(int _cmd); 559289f547SJohn Baldwin bool sysdecode_fcntl_fileflags(FILE *_fp, int _flags, int *_rem); 569289f547SJohn Baldwin bool sysdecode_fileflags(FILE *_fp, fflags_t _flags, fflags_t *_rem); 579289f547SJohn Baldwin bool sysdecode_filemode(FILE *_fp, int _mode, int *_rem); 589289f547SJohn Baldwin bool sysdecode_flock_operation(FILE *_fp, int _operation, int *_rem); 59287b96ddSJohn Baldwin int sysdecode_freebsd_to_abi_errno(enum sysdecode_abi _abi, int _error); 6048f79574SJohn Baldwin const char *sysdecode_getfsstat_mode(int _mode); 61ee8aa41dSJohn Baldwin const char *sysdecode_getrusage_who(int _who); 629289f547SJohn Baldwin const char *sysdecode_idtype(int _idtype); 63265e5898SJohn Baldwin const char *sysdecode_ioctlname(unsigned long _val); 649289f547SJohn Baldwin const char *sysdecode_ipproto(int _protocol); 65ffb66079SJohn Baldwin void sysdecode_kevent_fflags(FILE *_fp, short _filter, int _fflags, 66ffb66079SJohn Baldwin int _base); 672fc3a51dSDmitry Chagin const char *sysdecode_itimer(int _which); 68ffb66079SJohn Baldwin const char *sysdecode_kevent_filter(int _filter); 69ffb66079SJohn Baldwin bool sysdecode_kevent_flags(FILE *_fp, int _flags, int *_rem); 709289f547SJohn Baldwin const char *sysdecode_kldsym_cmd(int _cmd); 719289f547SJohn Baldwin const char *sysdecode_kldunload_flags(int _flags); 729289f547SJohn Baldwin const char *sysdecode_lio_listio_mode(int _mode); 739289f547SJohn Baldwin const char *sysdecode_madvice(int _advice); 749289f547SJohn Baldwin const char *sysdecode_minherit_inherit(int _inherit); 759289f547SJohn Baldwin const char *sysdecode_msgctl_cmd(int _cmd); 769289f547SJohn Baldwin bool sysdecode_mlockall_flags(FILE *_fp, int _flags, int *_rem); 779289f547SJohn Baldwin bool sysdecode_mmap_flags(FILE *_fp, int _flags, int *_rem); 789289f547SJohn Baldwin bool sysdecode_mmap_prot(FILE *_fp, int _prot, int *_rem); 799289f547SJohn Baldwin bool sysdecode_mount_flags(FILE *_fp, int _flags, int *_rem); 809289f547SJohn Baldwin bool sysdecode_msg_flags(FILE *_fp, int _flags, int *_rem); 819289f547SJohn Baldwin bool sysdecode_msync_flags(FILE *_fp, int _flags, int *_rem); 829289f547SJohn Baldwin const char *sysdecode_nfssvc_flags(int _flags); 839289f547SJohn Baldwin bool sysdecode_open_flags(FILE *_fp, int _flags, int *_rem); 8439a3a438SJohn Baldwin const char *sysdecode_pathconf_name(int _name); 859289f547SJohn Baldwin bool sysdecode_pipe2_flags(FILE *_fp, int _flags, int *_rem); 86*bd23e71fSKyle Evans bool sysdecode_pollfd_events(FILE *fp, int flags, int *rem); 879289f547SJohn Baldwin const char *sysdecode_prio_which(int _which); 889289f547SJohn Baldwin const char *sysdecode_procctl_cmd(int _cmd); 899289f547SJohn Baldwin const char *sysdecode_ptrace_request(int _request); 909289f547SJohn Baldwin bool sysdecode_quotactl_cmd(FILE *_fp, int _cmd); 919289f547SJohn Baldwin bool sysdecode_reboot_howto(FILE *_fp, int _howto, int *_rem); 929289f547SJohn Baldwin bool sysdecode_rfork_flags(FILE *_fp, int _flags, int *_rem); 939289f547SJohn Baldwin const char *sysdecode_rlimit(int _resource); 949289f547SJohn Baldwin const char *sysdecode_rtprio_function(int _function); 959289f547SJohn Baldwin const char *sysdecode_scheduler_policy(int _policy); 960faae8b9SMichael Tuexen bool sysdecode_sctp_nxt_flags(FILE *_fp, int _flags, int *_rem); 97a62bf68dSMichael Tuexen const char *sysdecode_sctp_pr_policy(int _policy); 980faae8b9SMichael Tuexen bool sysdecode_sctp_rcv_flags(FILE *_fp, int _flags, int *_rem); 991e6455d8SMichael Tuexen void sysdecode_sctp_sinfo_flags(FILE *_fp, int _sinfo_flags); 1000faae8b9SMichael Tuexen bool sysdecode_sctp_snd_flags(FILE *_fp, int _flags, int *_rem); 1019289f547SJohn Baldwin const char *sysdecode_semctl_cmd(int _cmd); 1029289f547SJohn Baldwin bool sysdecode_semget_flags(FILE *_fp, int _flag, int *_rem); 1039289f547SJohn Baldwin bool sysdecode_sendfile_flags(FILE *_fp, int _flags, int *_rem); 1049289f547SJohn Baldwin bool sysdecode_shmat_flags(FILE *_fp, int _flags, int *_rem); 1059289f547SJohn Baldwin const char *sysdecode_shmctl_cmd(int _cmd); 1069289f547SJohn Baldwin const char *sysdecode_shutdown_how(int _how); 1079289f547SJohn Baldwin const char *sysdecode_sigbus_code(int _si_code); 1089289f547SJohn Baldwin const char *sysdecode_sigchld_code(int _si_code); 1099289f547SJohn Baldwin const char *sysdecode_sigcode(int _sig, int _si_code); 1109289f547SJohn Baldwin const char *sysdecode_sigfpe_code(int _si_code); 1119289f547SJohn Baldwin const char *sysdecode_sigill_code(int _si_code); 1129289f547SJohn Baldwin const char *sysdecode_signal(int _sig); 1139289f547SJohn Baldwin const char *sysdecode_sigprocmask_how(int _how); 1149289f547SJohn Baldwin const char *sysdecode_sigsegv_code(int _si_code); 1159289f547SJohn Baldwin const char *sysdecode_sigtrap_code(int _si_code); 1169289f547SJohn Baldwin const char *sysdecode_sockaddr_family(int _sa_family); 1179289f547SJohn Baldwin const char *sysdecode_socketdomain(int _domain); 118738a93a4SMichael Tuexen const char *sysdecode_socket_protocol(int _domain, int _protocol); 1199289f547SJohn Baldwin bool sysdecode_socket_type(FILE *_fp, int _type, int *_rem); 1209289f547SJohn Baldwin const char *sysdecode_sockopt_level(int _level); 1219289f547SJohn Baldwin const char *sysdecode_sockopt_name(int _level, int _optname); 122a5f14abfSJohn Baldwin const char *sysdecode_syscallname(enum sysdecode_abi _abi, unsigned int _code); 12339a3a438SJohn Baldwin const char *sysdecode_sysarch_number(int _number); 1249289f547SJohn Baldwin bool sysdecode_thr_create_flags(FILE *_fp, int _flags, int *_rem); 1259289f547SJohn Baldwin bool sysdecode_umtx_cvwait_flags(FILE *_fp, u_long _flags, u_long *_rem); 1269289f547SJohn Baldwin const char *sysdecode_umtx_op(int _op); 1273b27074bSKyle Evans bool sysdecode_umtx_op_flags(FILE *_fp, int op, int *_rem); 1289289f547SJohn Baldwin bool sysdecode_umtx_rwlock_flags(FILE *_fp, u_long _flags, u_long *_rem); 129d6fb4894SJohn Baldwin int sysdecode_utrace(FILE *_fp, void *_buf, size_t _len); 1309289f547SJohn Baldwin bool sysdecode_vmprot(FILE *_fp, int _type, int *_rem); 1319289f547SJohn Baldwin const char *sysdecode_vmresult(int _result); 1329289f547SJohn Baldwin bool sysdecode_wait4_options(FILE *_fp, int _options, int *_rem); 1339289f547SJohn Baldwin bool sysdecode_wait6_options(FILE *_fp, int _options, int *_rem); 1349289f547SJohn Baldwin const char *sysdecode_whence(int _whence); 135c70019ddSKyle Evans bool sysdecode_shmflags(FILE *_fp, int _flags, int *_rem); 136d6fb4894SJohn Baldwin 137b69ae1a3SDmitry Chagin #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__) 138b69ae1a3SDmitry Chagin 139b69ae1a3SDmitry Chagin #define SYSDECODE_HAVE_LINUX 140b69ae1a3SDmitry Chagin 141d2b3237eSDmitry Chagin bool sysdecode_linux_atflags(FILE *_fp, int _flag, int *_rem); 142b69ae1a3SDmitry Chagin void sysdecode_linux_clockid(FILE *_fp, clockid_t _which); 14339de84b6SDmitry Chagin bool sysdecode_linux_clock_flags(FILE *_fp, int _flags, int *_rem); 144bd35e83bSDmitry Chagin bool sysdecode_linux_clone_flags(FILE *_fp, int _flags, int *_rem); 145fde775bcSDmitry Chagin bool sysdecode_linux_open_flags(FILE *_fp, int _flags, int *_rem); 146f85848fcSDmitry Chagin const char *sysdecode_linux_signal(int _sig); 147f587a2a7SDmitry Chagin const char *sysdecode_linux_sigprocmask_how(int _how); 148b69ae1a3SDmitry Chagin 149b69ae1a3SDmitry Chagin #endif /* __i386__ || __amd64__ || __aarch64__ */ 150b69ae1a3SDmitry Chagin 151d6fb4894SJohn Baldwin #endif /* !__SYSDECODE_H__ */ 152