2018-08-11 09:42:30 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
|
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
*
|
|
|
|
* This file is part of GNU Mes.
|
|
|
|
*
|
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#ifndef __MES_LINUX_X86_SYSCALL_H
|
|
|
|
#define __MES_LINUX_X86_SYSCALL_H 1
|
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
/* libc-mini */
|
|
|
|
#ifndef SYS_exit
|
|
|
|
// CONSTANT SYS_exit 0x01
|
|
|
|
#define SYS_exit 0x01
|
|
|
|
#endif
|
|
|
|
#ifndef SYS_write
|
|
|
|
// CONSTANT SYS_write 0x04
|
|
|
|
#define SYS_write 0x04
|
|
|
|
#endif
|
2018-08-11 09:42:30 +00:00
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
/* libc */
|
|
|
|
// CONSTANT SYS_fork 0x02
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_fork 0x02
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_read 0x03
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_read 0x03
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_open 0x05
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_open 0x05
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_waitpid 0x07
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_waitpid 0x07
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_wait4 0x72
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_wait4 0x72
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_execve 0x0b
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_execve 0x0b
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_chmod 0x0f
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_chmod 0x0f
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_access 0x21
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_access 0x21
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_brk 0x2d
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_brk 0x2d
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_ioctl 0x36
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_ioctl 0x36
|
2020-07-15 20:27:57 +00:00
|
|
|
// CONSTANT SYS_fsync 0x76
|
2018-08-11 09:42:30 +00:00
|
|
|
#define SYS_fsync 0x76
|
2020-07-25 18:00:44 +00:00
|
|
|
// CONSTANT SYS_getcwd 0xb7
|
|
|
|
#define SYS_getcwd 0xb7
|
|
|
|
// CONSTANT SYS_dup 0x29
|
|
|
|
#define SYS_dup 0x29
|
|
|
|
// CONSTANT SYS_dup2 0x3f
|
|
|
|
#define SYS_dup2 0x3f
|
|
|
|
// CONSTANT SYS_unlink 0x0a
|
|
|
|
#define SYS_unlink 0x0a
|
|
|
|
// CONSTANT SYS_gettimeofday 0x4e
|
|
|
|
#define SYS_gettimeofday 0x4e
|
|
|
|
// CONSTANT SYS_clock_gettime 0x109
|
|
|
|
#define SYS_clock_gettime 0x109
|
|
|
|
// CONSTANT SYS_time 0x0d
|
|
|
|
#define SYS_time 0x0d
|
2018-08-11 09:42:30 +00:00
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
/* libc+tcc */
|
2018-08-11 16:39:48 +00:00
|
|
|
#define SYS_close 0x06
|
|
|
|
#define SYS_lseek 0x13
|
|
|
|
#define SYS_rmdir 0x28
|
|
|
|
#define SYS_stat 0x6a
|
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
/* libc+gnu */
|
2018-08-26 20:41:52 +00:00
|
|
|
#define SYS_chdir 0x0c
|
2018-08-11 17:04:01 +00:00
|
|
|
#define SYS_link 0x09
|
|
|
|
#define SYS_getpid 0x14
|
|
|
|
#define SYS_getuid 0x18
|
|
|
|
#define SYS_kill 0x25
|
|
|
|
#define SYS_rename 0x26
|
|
|
|
#define SYS_mkdir 0x27
|
|
|
|
#define SYS_pipe 0x2a
|
|
|
|
#define SYS_getgid 0x2f
|
|
|
|
#define SYS_signal 0x30
|
|
|
|
#define SYS_sigaction 0x43
|
|
|
|
#define SYS_rt_sigaction 0xae
|
|
|
|
#define SYS_signal 0x30
|
|
|
|
#define SYS_fcntl 0x37
|
|
|
|
#define SYS_getrusage 0x4d
|
|
|
|
#define SYS_lstat 0x6b
|
|
|
|
#define SYS_setitimer 0x68
|
|
|
|
#define SYS_fstat 0x6c
|
|
|
|
#define SYS_nanosleep 0xa2
|
2018-08-26 16:34:53 +00:00
|
|
|
#define SYS_getdents 0x8d
|
2018-08-11 17:04:01 +00:00
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
/* bash */
|
mescc: Support GNU Bash.
* include/errno.h (EACCES, ENOSPC, ESPIPE): New macro.
* include/linux/x86/syscall.h (SYS_setuid, SYS_geteuid, SYS_getegid,
SYS_setgid): New macro.
* include/linux/x86_64/syscall.h: Likewise.
* include/stdint.h (LLONG_MIN, LLONG_MAX, SIZE_MAX): New macro.
* include/sys/stat.h (S_ISUID, S_ISGID, S_IXGRP, S_IXOTH, S_IRGRP,
S_IROTH, S_IWGRP, S_IWOTH, S_IRWXG, S_IRWXO): New macro.
* include/termio.h: New file.
* include/unistd.h (_POSIX_VERSION): New macro.
* lib/linux/gnu.c (geteuid, getegid, setuid, setgid): New function.
* lib/string/memchr.c: New file.
* lib/stub/getpwuid.c: New file.
* lib/stub/rand.c: New file.
* lib/stub/ttyname.c: New file.
* include/string.h (memchr): Declare.
* include/unistd.h (geteuid, getegid, setuid, setgid): Declare.
2018-11-09 20:26:10 +00:00
|
|
|
#define SYS_setuid 0x17
|
|
|
|
#define SYS_geteuid 0x31
|
|
|
|
#define SYS_getegid 0x32
|
|
|
|
#define SYS_setgid 0x3e
|
2018-12-14 17:48:03 +00:00
|
|
|
#define SYS_getppid 0x40
|
mescc: Support GNU Bash.
* include/errno.h (EACCES, ENOSPC, ESPIPE): New macro.
* include/linux/x86/syscall.h (SYS_setuid, SYS_geteuid, SYS_getegid,
SYS_setgid): New macro.
* include/linux/x86_64/syscall.h: Likewise.
* include/stdint.h (LLONG_MIN, LLONG_MAX, SIZE_MAX): New macro.
* include/sys/stat.h (S_ISUID, S_ISGID, S_IXGRP, S_IXOTH, S_IRGRP,
S_IROTH, S_IWGRP, S_IWOTH, S_IRWXG, S_IRWXO): New macro.
* include/termio.h: New file.
* include/unistd.h (_POSIX_VERSION): New macro.
* lib/linux/gnu.c (geteuid, getegid, setuid, setgid): New function.
* lib/string/memchr.c: New file.
* lib/stub/getpwuid.c: New file.
* lib/stub/rand.c: New file.
* lib/stub/ttyname.c: New file.
* include/string.h (memchr): Declare.
* include/unistd.h (geteuid, getegid, setuid, setgid): Declare.
2018-11-09 20:26:10 +00:00
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
/* make+POSIX */
|
2018-11-10 07:32:42 +00:00
|
|
|
#define SYS_sigprocmask 0x7e
|
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
/* tar */
|
2019-06-12 23:07:19 +00:00
|
|
|
#define SYS_symlink 0x53
|
|
|
|
#define SYS_readlink 0x55
|
2019-07-12 09:56:58 +00:00
|
|
|
#define SYS_mknod 0x0e
|
2019-06-12 23:07:19 +00:00
|
|
|
|
lib: stat: Use SYS_stat64 for 32bit platforms.
This fixes <https://debbugs.gnu.org/41264>.
* include/linux/arm/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/linux/x86/syscall.h (SYS_stat64, SYS_lstat64,
SYS_fstat64)[__SIZEOF_LONG_LONG__ == 8]:
New defines.
(SYS_stat, SYS_lstat, SYS_fstat)[__SIZEOF_LONG_LONG__ == 8]: Redefine them.
* include/sys/stat.h (struct stat): Move definition to...
* include/linux/arm/kernel-stat.h,
include/linux/m2/kernel-stat.h,
include/linux/x86/kernel-stat.h,
include/linux/x86_64/kernel-stat.h: These new files.
* include/gnu/x86/kernel-stat.h: New file.
* configure (main): Copy <srcdest>include/<kernel>/<arch>/*.h to
include/.
* configure.sh: Likewise.
* .gitignore: Ignore them. Add copyright header.
* build-aux/GNUmakefile.in (X86_ARCH_HEADERS, ARCH_HEADERS): New
variables.
(build): Use them.
(include/arch/%.h, arch-dir): New targets.
* build-aux/bootstrap.sh.in (AM_CPPFLAGS): Replace
<srcdest>include/<kernel>/<cpu> with built ../include.
* build-aux/build.sh.in (AM_CPPFLAGS): Likewise.
* build-aux/install.sh.in: Also install built include.
* include/m2/types.h: New file.
* kaem.run: Use it.
* simple.sh: Copy kernel-stat.h, syscall.h for kernel/cpu to
include/arch.
2022-10-29 11:17:58 +00:00
|
|
|
#if __SIZEOF_LONG_LONG__ == 8
|
|
|
|
|
|
|
|
#define SYS_stat64 0xc3
|
|
|
|
#define SYS_lstat64 0xc4
|
|
|
|
#define SYS_fstat64 0xc5
|
|
|
|
#define SYS_fcntl64 0xdd
|
|
|
|
#define SYS_getdents64 0xdc
|
|
|
|
|
|
|
|
#undef SYS_stat
|
|
|
|
#define SYS_stat SYS_stat64
|
|
|
|
|
|
|
|
#undef SYS_lstat
|
|
|
|
#define SYS_lstat SYS_lstat64
|
|
|
|
|
|
|
|
#undef SYS_fstat
|
|
|
|
#define SYS_fstat SYS_fstat64
|
|
|
|
|
|
|
|
#endif // __SIZEOF_LONG_LONG__ == 8
|
|
|
|
|
2020-07-15 20:27:57 +00:00
|
|
|
#endif /* __MES_LINUX_X86_SYSCALL_H */
|