mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-05 04:56:10 +00:00
Add linux-arm64 sflib support for ragg2-cc
This commit is contained in:
parent
ed9cd818f3
commit
bdcd1df8c5
334
libr/include/sflib/linux-arm-64/sflib.h
Normal file
334
libr/include/sflib/linux-arm-64/sflib.h
Normal file
@ -0,0 +1,334 @@
|
||||
/*
|
||||
* sflib.h --- SFLib syscall library for Linux/amd64
|
||||
* see http://www.secdev.org/projects/shellforge.html for more informations
|
||||
*
|
||||
* Copyright (C) 2004 Philippe Biondi <phil@secdev.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation.
|
||||
*
|
||||
* This program 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
|
||||
* Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* Automatically generated by gensflib.py
|
||||
* Mon Nov 28 13:53:31 2011
|
||||
*/
|
||||
|
||||
#ifndef SFLIB_H
|
||||
#define SFLIB_H
|
||||
|
||||
|
||||
#include "sfsysnr.h"
|
||||
#include "sfsyscall.h"
|
||||
#include "../common/sftypes.h"
|
||||
|
||||
|
||||
static inline _sfsyscall3( ssize_t, read, int, fd, void *, buf, size_t, count )
|
||||
static inline _sfsyscall3( ssize_t, write, int, fd, const void *, buf, size_t, count )
|
||||
static inline _sfsyscall3( int, open, const char *, pathname, int, flags, mode_t, mode )
|
||||
static inline _sfsyscall1( int, close, int, fd )
|
||||
static inline _sfsyscall2( int, stat, const char *, file_name, struct stat *, buf )
|
||||
static inline _sfsyscall2( int, fstat, int, filedes, struct stat *, buf )
|
||||
static inline _sfsyscall2( int, lstat, const char *, file_name, struct stat *, buf )
|
||||
static inline _sfsyscall3( int, poll, struct pollfd *, ufds, unsigned int, nfds, int, timeout )
|
||||
static inline _sfsyscall3( off_t, lseek, int, fildes, off_t, offset, int, whence )
|
||||
static inline _sfsyscall6(void *,mmap, void *,start, size_t,length, int,prot , int,flags, int,fd, off_t,offset)
|
||||
static inline _sfsyscall3( int, mprotect, const void *, addr, size_t, len, int, prot )
|
||||
static inline _sfsyscall2( int, munmap, void *, start, size_t, length )
|
||||
static inline _sfsyscall1( int, brk, void *, end_data_segment )
|
||||
// rt_sigaction
|
||||
// rt_sigprocmask
|
||||
// rt_sigreturn
|
||||
static inline _sfsyscall4(int, ioctl, int,d, int,request, char *,argp, int,len)
|
||||
// pread64
|
||||
// pwrite64
|
||||
static inline _sfsyscall3( int, readv, int, fd, const struct iovec *, vector, int, count )
|
||||
static inline _sfsyscall3( int, writev, int, fd, const struct iovec *, vector, int, count )
|
||||
static inline _sfsyscall2( int, access, const char *, pathname, int, mode )
|
||||
static inline _sfsyscall1( int, pipe, unsigned long *, filedes)
|
||||
static inline _sfsyscall5( int, select, int, n, fd_set *, readfds, fd_set *, writefds, fd_set *, exceptfds, struct timeval *, timeout)
|
||||
static inline _sfsyscall0( int, sched_yield )
|
||||
// mremap
|
||||
static inline _sfsyscall3( int, msync, const void *, start, size_t, length, int, flags )
|
||||
// mincore
|
||||
// madvise
|
||||
static inline _sfsyscall3(int, shmget, long, key, int, size, int, flags )
|
||||
static inline _sfsyscall3(void *, shmat, int, shmid, const void *, shmaddr, int, shmflg )
|
||||
// shmctl
|
||||
static inline _sfsyscall1( int, dup, int, oldfd )
|
||||
static inline _sfsyscall2( int, dup2, int, oldfd, int, newfd )
|
||||
static inline _sfsyscall0( int, pause )
|
||||
static inline _sfsyscall2( int, nanosleep, const struct timespec *, req, struct timespec *, rem )
|
||||
// getitimer
|
||||
static inline _sfsyscall1( unsigned int, alarm, unsigned int, seconds )
|
||||
// setitimer
|
||||
static inline _sfsyscall0( pid_t, getpid )
|
||||
// sendfile
|
||||
static inline _sfsyscall3(int, socket, int,domain, int,type, int,protocol)
|
||||
static inline _sfsyscall3(int,connect, int,sockfd, const struct sockaddr *,serv_addr, socklen_t,addrlen)
|
||||
static inline _sfsyscall3(int, accept, int,s, struct sockaddr *,addr, socklen_t *,addrlen);
|
||||
static inline _sfsyscall6(ssize_t, sendto, int, s, const void *, msg, size_t, len, int, flags, const struct sockaddr *, to, socklen_t, tolen)
|
||||
static inline _sfsyscall6(ssize_t, recvfrom, int, s, void * , buf, size_t, len, int, flags, struct sockaddr * , from, socklen_t * , fromlen)
|
||||
// sendmsg
|
||||
// recvmsg
|
||||
// shutdown
|
||||
static inline _sfsyscall3(int, bind, int,sockfd, struct sockaddr *,my_addr, socklen_t,addrlen)
|
||||
static inline _sfsyscall2(int,listen,int,s, int,backlog)
|
||||
// getsockname
|
||||
// getpeername
|
||||
// socketpair
|
||||
static inline _sfsyscall5(int, setsockopt, int, s, int, level, int, optname, void *, optval, socklen_t, optlen)
|
||||
// getsockopt
|
||||
// clone
|
||||
static inline _sfsyscall0( pid_t, fork )
|
||||
static inline _sfsyscall0( pid_t, vfork )
|
||||
static inline _sfsyscall3(int, execve, char *, s, char **, argv, char **,envp)
|
||||
static inline _sfsyscall1(int, exit, int, status)
|
||||
static inline _sfsyscall4(pid_t, wait4, pid_t, pid, int *, status, int, options, struct rusage *, rusage)
|
||||
static inline _sfsyscall2( int, kill, pid_t, pid, int, sig )
|
||||
static inline _sfsyscall1( int, uname, struct utsname *, buf )
|
||||
static inline _sfsyscall3(int, semget, long, key, int, nsems, int, semflg)
|
||||
static inline _sfsyscall3(int, semop, int, semid, struct sembuf *, sops, unsigned, nsops)
|
||||
// semctl
|
||||
// shmdt
|
||||
// msgget
|
||||
// msgsnd
|
||||
// msgrcv
|
||||
// msgctl
|
||||
static inline _sfsyscall3( int, fcntl, int, fd, int, cmd, long, arg )
|
||||
// flock
|
||||
static inline _sfsyscall1( int, fsync, int, fd )
|
||||
static inline _sfsyscall1( int, fdatasync, int, fd )
|
||||
static inline _sfsyscall2( int, truncate, const char *, path, off_t, length )
|
||||
static inline _sfsyscall2( int, ftruncate, int, fd, off_t, length )
|
||||
static inline _sfsyscall3( int, getdents, unsigned int, fd, struct dirent *, dirp, unsigned int, count )
|
||||
// getcwd
|
||||
static inline _sfsyscall1( int, chdir, const char *, path )
|
||||
// fchdir
|
||||
static inline _sfsyscall2( int, rename, const char *, oldpath, const char *, newpath )
|
||||
static inline _sfsyscall2( int, mkdir, const char *, pathname, mode_t, mode )
|
||||
static inline _sfsyscall1( int, rmdir, const char *, pathname )
|
||||
static inline _sfsyscall2( int, creat, const char *, pathname, mode_t, mode )
|
||||
static inline _sfsyscall2( int, link, const char *, oldpath, const char *, newpath )
|
||||
static inline _sfsyscall1( int, unlink, const char *, pathname )
|
||||
static inline _sfsyscall2( int, symlink, const char *, oldpath, const char *, newpath )
|
||||
static inline _sfsyscall3( int, readlink, const char *, path, char *, buf, size_t, bufsiz )
|
||||
static inline _sfsyscall2( int, chmod, const char *, path, mode_t, mode )
|
||||
static inline _sfsyscall2( int, fchmod, int, fildes, mode_t, mode )
|
||||
static inline _sfsyscall3( int, chown, const char *, path, uid_t, owner, gid_t, group )
|
||||
static inline _sfsyscall3( int, fchown, int, fd, uid_t, owner, gid_t, group )
|
||||
static inline _sfsyscall3( int, lchown, const char *, path, uid_t, owner, gid_t, group )
|
||||
static inline _sfsyscall1( mode_t, umask, mode_t, mask )
|
||||
static inline _sfsyscall2( int, gettimeofday, struct timeval *, tv, struct timezone *, tz )
|
||||
// getrlimit
|
||||
// getrusage
|
||||
static inline _sfsyscall1( int, sysinfo, struct sysinfo *, info )
|
||||
static inline _sfsyscall1( clock_t, times, struct tms *, buf )
|
||||
static inline _sfsyscall4(long, ptrace, int, request, pid_t, pid, void *,addr, void *,data)
|
||||
static inline _sfsyscall0( uid_t, getuid )
|
||||
static inline _sfsyscall3( int, syslog, int, type, char *, bufp, int, len )
|
||||
static inline _sfsyscall0( gid_t, getgid )
|
||||
// setuid
|
||||
// setgid
|
||||
static inline _sfsyscall0( uid_t, geteuid )
|
||||
static inline _sfsyscall0( gid_t, getegid )
|
||||
static inline _sfsyscall2( int, setpgid, pid_t, pid, pid_t, pgid )
|
||||
static inline _sfsyscall0( pid_t, getppid )
|
||||
static inline _sfsyscall0( pid_t, getpgrp )
|
||||
static inline _sfsyscall0( pid_t, setsid )
|
||||
static inline _sfsyscall2( int, setreuid, uid_t, ruid, uid_t, euid )
|
||||
static inline _sfsyscall2( int, setregid, gid_t, rgid, gid_t, egid )
|
||||
// getgroups
|
||||
static inline _sfsyscall2( int, setgroups, size_t, size, const gid_t *, list )
|
||||
static inline _sfsyscall3( int, setresuid, uid_t, ruid, uid_t, euid, uid_t, suid )
|
||||
static inline _sfsyscall3( int, getresuid, uid_t *, ruid, uid_t *, euid, uid_t *, suid )
|
||||
// setresgid
|
||||
// getresgid
|
||||
static inline _sfsyscall1( pid_t, getpgid, pid_t, pid )
|
||||
static inline _sfsyscall1( int, setfsuid, uid_t, fsuid )
|
||||
static inline _sfsyscall1( int, setfsgid, uid_t, fsgid )
|
||||
static inline _sfsyscall1( pid_t, getsid, pid_t, pid )
|
||||
static inline _sfsyscall2( int, capget, cap_user_header_t, header, cap_user_data_t, data )
|
||||
//static inline _sfsyscall2( int, capset, cap_user_header_t, header, const cap_user_data_t, data )
|
||||
// rt_sigpending
|
||||
// rt_sigtimedwait
|
||||
// rt_sigqueueinfo
|
||||
// rt_sigsuspend
|
||||
// sigaltstack
|
||||
static inline _sfsyscall2( int, utime, const char *, filename, struct utimbuf *, buf )
|
||||
static inline _sfsyscall3( int, mknod, const char *, pathname, mode_t, mode, dev_t, dev )
|
||||
static inline _sfsyscall1( int, uselib, const char *, library )
|
||||
static inline _sfsyscall1( int, personality, unsigned long, persona )
|
||||
static inline _sfsyscall2( int, ustat, dev_t, dev, struct ustat *, ubuf )
|
||||
static inline _sfsyscall2( int, statfs, const char *, path, struct statfs *, buf )
|
||||
static inline _sfsyscall2( int, fstatfs, int, fd, struct statfs *, buf )
|
||||
static inline _sfsyscall3( int, sysfs, int, option, unsigned int, fs_index, char *, buf )
|
||||
static inline _sfsyscall2( int, getpriority, int, which, int, who )
|
||||
static inline _sfsyscall3( int, setpriority, int, which, int, who, int, prio )
|
||||
static inline _sfsyscall2( int, sched_setparam, pid_t, pid, const struct sched_param *, p )
|
||||
static inline _sfsyscall2( int, sched_getparam, pid_t, pid, struct sched_param *, p )
|
||||
// sched_setscheduler
|
||||
static inline _sfsyscall1( int, sched_getscheduler, pid_t, pid )
|
||||
static inline _sfsyscall1( int, sched_get_priority_max, int, policy )
|
||||
static inline _sfsyscall1( int, sched_get_priority_min, int, policy )
|
||||
static inline _sfsyscall2( int, sched_rr_get_interval, pid_t, pid, struct timespec *, tp )
|
||||
static inline _sfsyscall2( int, mlock, const void *, addr, size_t, len )
|
||||
static inline _sfsyscall2( int, munlock, const void *, addr, size_t, len )
|
||||
static inline _sfsyscall1( int, mlockall, int, flags )
|
||||
static inline _sfsyscall0( int, munlockall )
|
||||
static inline _sfsyscall0( int, vhangup )
|
||||
// modify_ldt
|
||||
// pivot_root
|
||||
// prctl
|
||||
// arch_prctl
|
||||
// adjtimex
|
||||
// setrlimit
|
||||
static inline _sfsyscall1( int, chroot, const char *, path )
|
||||
static inline _sfsyscall0( int, sync )
|
||||
static inline _sfsyscall1( int, acct, const char *, filename )
|
||||
// settimeofday
|
||||
// mount
|
||||
// umount2
|
||||
static inline _sfsyscall2( int, swapon, const char *, path, int, swapflags )
|
||||
static inline _sfsyscall1( int, swapoff, const char *, path )
|
||||
// reboot
|
||||
static inline _sfsyscall2( int, sethostname, const char *, name, size_t, len )
|
||||
static inline _sfsyscall2( int, setdomainname, const char *, name, size_t, len )
|
||||
static inline _sfsyscall1( int, iopl, int, level )
|
||||
static inline _sfsyscall3( int, ioperm, unsigned long, from, unsigned long, num, int, turn_on )
|
||||
static inline _sfsyscall2( caddr_t, create_module, const char *, name, size_t, size )
|
||||
static inline _sfsyscall2( int, init_module, const char *, name, struct module *, image )
|
||||
static inline _sfsyscall1( int, delete_module, const char *, name )
|
||||
static inline _sfsyscall1( int, get_kernel_syms, struct kernel_sym *, table )
|
||||
// query_module
|
||||
// quotactl
|
||||
// nfsservctl
|
||||
// getpmsg
|
||||
// putpmsg
|
||||
// afs_syscall
|
||||
// tuxcall
|
||||
// security
|
||||
// gettid
|
||||
// readahead
|
||||
// setxattr
|
||||
// lsetxattr
|
||||
// fsetxattr
|
||||
// getxattr
|
||||
// lgetxattr
|
||||
// fgetxattr
|
||||
// listxattr
|
||||
// llistxattr
|
||||
// flistxattr
|
||||
// removexattr
|
||||
// lremovexattr
|
||||
// fremovexattr
|
||||
// tkill
|
||||
static inline _sfsyscall1( time_t, time, time_t *, t )
|
||||
// futex
|
||||
// sched_setaffinity
|
||||
// sched_getaffinity
|
||||
// set_thread_area
|
||||
// io_setup
|
||||
// io_destroy
|
||||
// io_getevents
|
||||
// io_submit
|
||||
// io_cancel
|
||||
// get_thread_area
|
||||
// lookup_dcookie
|
||||
// epoll_create
|
||||
// epoll_ctl_old
|
||||
// epoll_wait_old
|
||||
// remap_file_pages
|
||||
// getdents64
|
||||
// set_tid_address
|
||||
// restart_syscall
|
||||
// semtimedop
|
||||
// fadvise64
|
||||
// timer_create
|
||||
// timer_settime
|
||||
// timer_gettime
|
||||
// timer_getoverrun
|
||||
// timer_delete
|
||||
// clock_settime
|
||||
// clock_gettime
|
||||
// clock_getres
|
||||
// clock_nanosleep
|
||||
// exit_group
|
||||
// epoll_wait
|
||||
// epoll_ctl
|
||||
// tgkill
|
||||
// utimes
|
||||
// vserver
|
||||
// mbind
|
||||
// set_mempolicy
|
||||
// get_mempolicy
|
||||
// mq_open
|
||||
// mq_unlink
|
||||
// mq_timedsend
|
||||
// mq_timedreceive
|
||||
// mq_notify
|
||||
// mq_getsetattr
|
||||
// kexec_load
|
||||
// waitid
|
||||
// add_key
|
||||
// request_key
|
||||
// keyctl
|
||||
// ioprio_set
|
||||
// ioprio_get
|
||||
// inotify_init
|
||||
// inotify_add_watch
|
||||
// inotify_rm_watch
|
||||
// migrate_pages
|
||||
// openat
|
||||
// mkdirat
|
||||
// mknodat
|
||||
// fchownat
|
||||
// futimesat
|
||||
// newfstatat
|
||||
// unlinkat
|
||||
// renameat
|
||||
// linkat
|
||||
// symlinkat
|
||||
// readlinkat
|
||||
// fchmodat
|
||||
// faccessat
|
||||
// pselect6
|
||||
// ppoll
|
||||
// unshare
|
||||
// set_robust_list
|
||||
// get_robust_list
|
||||
// splice
|
||||
// tee
|
||||
// sync_file_range
|
||||
// vmsplice
|
||||
// move_pages
|
||||
// utimensat
|
||||
// getcpu
|
||||
// epoll_pwait
|
||||
// signalfd
|
||||
// timerfd_create
|
||||
// eventfd
|
||||
// fallocate
|
||||
// timerfd_settime
|
||||
// timerfd_gettime
|
||||
// accept4
|
||||
// signalfd4
|
||||
// eventfd2
|
||||
// epoll_create1
|
||||
// dup3
|
||||
// pipe2
|
||||
// inotify_init1
|
||||
// preadv
|
||||
// pwritev
|
||||
|
||||
|
||||
//#include "../common/sfsocketcall.h"
|
||||
|
||||
|
||||
#endif /* SFLIB_H */
|
181
libr/include/sflib/linux-arm-64/sfsyscall.h
Normal file
181
libr/include/sflib/linux-arm-64/sfsyscall.h
Normal file
@ -0,0 +1,181 @@
|
||||
/* sfsyscall.h --- SFLib syscall macros for Linux/arm64 - pancake */
|
||||
|
||||
#ifndef SFSYSCALL_H
|
||||
#define SFSYSCALL_H
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
#ifdef SF_USE_ERRNO
|
||||
|
||||
static int errno = 1234;
|
||||
|
||||
#define __sfsyscall_return(type, res) \
|
||||
do { \
|
||||
if ((unsigned long)(res) >= (unsigned long)(-125)) { \
|
||||
errno = -(res); \
|
||||
res = -1; \
|
||||
} \
|
||||
return (type) (res); \
|
||||
} while (0)
|
||||
|
||||
#else /* SF_USE_ERRNO */
|
||||
|
||||
#define __sfsyscall_return(type, res) \
|
||||
do { \
|
||||
return (type) (res); \
|
||||
} while (0)
|
||||
|
||||
#endif /* SF_USE_ERRNO */
|
||||
|
||||
|
||||
/* syscall macros */
|
||||
|
||||
#define _sfsyscall0(type, name) \
|
||||
type name(void) { \
|
||||
long __res; \
|
||||
__asm__ volatile("###> " #name " <###\n\t" \
|
||||
"svc 0" \
|
||||
: "=a" (__res) \
|
||||
: "0" (__NR_##name) \
|
||||
: "memory", "cc"\
|
||||
); \
|
||||
__sfsyscall_return(type,__res); \
|
||||
}
|
||||
|
||||
#define _sfsyscall1(type, name, type1, arg1) \
|
||||
type name(type1 arg1) { \
|
||||
long __res; \
|
||||
register type1 x1 asm("x0"); \
|
||||
x1 = arg1; \
|
||||
asm volatile ("###> " #name "(%2) <###\n\t" \
|
||||
"mov x8, %0\n\t" \
|
||||
"svc 0" \
|
||||
: "=g" (__res) \
|
||||
: "0" (__NR_##name), "r"(x1) \
|
||||
); \
|
||||
__sfsyscall_return(type,__res); \
|
||||
}
|
||||
|
||||
#define _sfsyscall2(type, name, type1, arg1, type2, arg2) \
|
||||
type name(type1 arg1, type2 arg2) { \
|
||||
long __res; \
|
||||
register type1 x1 asm("x1"); \
|
||||
register type2 x2 asm("x2"); \
|
||||
x1 = arg1; \
|
||||
x2 = arg2; \
|
||||
__asm__ volatile("###> " #name "(%2, %3) <###\n\t" \
|
||||
"svc 0" \
|
||||
: "=g" (__res) \
|
||||
: "0" (__NR_##name), \
|
||||
"r" (x1), \
|
||||
"r" (x2) \
|
||||
); \
|
||||
__sfsyscall_return(type, __res); \
|
||||
}
|
||||
|
||||
#define _sfsyscall3(type, name, type1, arg1, type2, arg2, type3, arg3) \
|
||||
type name(type1 arg1, type2 arg2, type3 arg3) { \
|
||||
long __res; \
|
||||
register type1 x0 asm("x0"); \
|
||||
register type2 x1 asm("x1"); \
|
||||
register type3 x2 asm("x2"); \
|
||||
x0 = arg1; \
|
||||
x1 = arg2; \
|
||||
x2 = arg3; \
|
||||
__asm__ __volatile__ ("###> " #name "(%2, %3, %4) <###\n\t" \
|
||||
"mov x8, %1\n\t" \
|
||||
"svc 0" \
|
||||
: "=g" (__res) \
|
||||
: "0" (__NR_##name), \
|
||||
"r" (x0), \
|
||||
"r" (x1), \
|
||||
"r" (x2) \
|
||||
: "memory", "cc"\
|
||||
); \
|
||||
__sfsyscall_return(type, __res); \
|
||||
}
|
||||
|
||||
#define _sfsyscall4(type, name, type1, arg1, type2, arg2, type3, arg3, type4, arg4) \
|
||||
type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
|
||||
long __res; \
|
||||
register type1 x1 asm("x1"); ; \
|
||||
register type2 x2 asm("x2"); \
|
||||
register type3 x3 asm("x3"); \
|
||||
register type4 x4 asm("x4"); \
|
||||
x1 = arg1; \
|
||||
x2 = arg2; \
|
||||
x3 = arg3; \
|
||||
x4 = arg4; \
|
||||
asm volatile("###> " #name "(%2, %3, %4, %5) <###\n\t" \
|
||||
"svc 0" \
|
||||
: "=g" (__res) \
|
||||
: "0" (__NR_##name), \
|
||||
"r" (x1), \
|
||||
"r" (x2), \
|
||||
"r" (x3), \
|
||||
"r" (x4) \
|
||||
: "memory", "cc" \
|
||||
); \
|
||||
__sfsyscall_return(type, __res); \
|
||||
}
|
||||
|
||||
#define _sfsyscall5(type, name, type1, arg1, type2, arg2, type3, arg3, type4, arg4, type5, arg5) \
|
||||
type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
|
||||
type5 arg5) { \
|
||||
long __res; \
|
||||
register type1 x1 asm("x1"); \
|
||||
register type2 x2 asm("x2"); \
|
||||
register type3 x3 asm("x3"); \
|
||||
register type4 x4 asm("x4"); \
|
||||
register type5 x5 asm("x5"); \
|
||||
x1 = arg1; \
|
||||
x2 = arg2; \
|
||||
x3 = arg3; \
|
||||
x4 = arg4; \
|
||||
x5 = arg5; \
|
||||
asm volatile("###> " #name "(%2, %3, %4, %5, %6) <###\n\t" \
|
||||
"svc 0" \
|
||||
: "=g" (__res) \
|
||||
: "0" (__NR_##name), \
|
||||
"r" (x1), \
|
||||
"r" (x2), \
|
||||
"r" (x3), \
|
||||
"r" (x4), \
|
||||
"r" (x5) \
|
||||
: "memory", "cc" \
|
||||
); \
|
||||
__sfsyscall_return(type, __res); \
|
||||
}
|
||||
|
||||
#define _sfsyscall6(type, name, type1, arg1, type2, arg2, type3, arg3, type4, arg4, type5, arg5, type6, arg6)\
|
||||
type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
|
||||
type5 arg5, type6 arg6) { \
|
||||
long __res; \
|
||||
register type1 x1 asm("x1"); \
|
||||
register type2 x2 asm("x2"); \
|
||||
register type3 x3 asm("x3"); \
|
||||
register type4 x4 asm("x4"); \
|
||||
register type5 x5 asm("x5"); \
|
||||
register type6 x6 asm("x6"); \
|
||||
x1 = arg1; \
|
||||
x2 = arg2; \
|
||||
x3 = arg3; \
|
||||
x4 = arg4; \
|
||||
x5 = arg5; \
|
||||
x6 = arg6; \
|
||||
asm volatile("###> " #name "(%2, %3, %4, %5, %6, %7) <###\n\t" \
|
||||
"svc 0" \
|
||||
: "=a" (__res) \
|
||||
: "0" (__NR_##name), \
|
||||
"r" (x1), \
|
||||
"r" (x2), \
|
||||
"r" (x3), \
|
||||
"r" (x4), \
|
||||
"r" (x5), \
|
||||
"r" (x6) \
|
||||
: "memory", "cc" \
|
||||
); \
|
||||
__sfsyscall_return(type, __res); \
|
||||
}
|
||||
|
||||
#endif /* SFSYSCALL_H */
|
332
libr/include/sflib/linux-arm-64/sfsysnr.h
Normal file
332
libr/include/sflib/linux-arm-64/sfsysnr.h
Normal file
@ -0,0 +1,332 @@
|
||||
/*
|
||||
* sfsysnr.h --- SFLib syscall numbers for Linux/amd64
|
||||
* see http://www.secdev.org/projects/shellforge.html for more informations
|
||||
*
|
||||
* Copyright (C) 2004 Philippe Biondi <phil@secdev.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation.
|
||||
*
|
||||
* This program 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
|
||||
* Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* Automatically generated by gensflib.py
|
||||
* Fri Nov 25 15:52:34 2011
|
||||
*/
|
||||
|
||||
#ifndef SFSYSNR_H
|
||||
#define SFSYSNR_H
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
#define __NR_read 0
|
||||
#define __NR_write 0x40 // ok
|
||||
#define __NR_open 2
|
||||
#define __NR_close 3
|
||||
#define __NR_stat 4
|
||||
#define __NR_fstat 5
|
||||
#define __NR_lstat 6
|
||||
#define __NR_poll 7
|
||||
#define __NR_lseek 8
|
||||
#define __NR_mmap 9
|
||||
#define __NR_mprotect 10
|
||||
#define __NR_munmap 11
|
||||
#define __NR_brk 12
|
||||
#define __NR_rt_sigaction 13
|
||||
#define __NR_rt_sigprocmask 14
|
||||
#define __NR_rt_sigreturn 15
|
||||
#define __NR_ioctl 16
|
||||
#define __NR_pread64 17
|
||||
#define __NR_pwrite64 18
|
||||
#define __NR_readv 19
|
||||
#define __NR_writev 20
|
||||
#define __NR_access 21
|
||||
#define __NR_pipe 22
|
||||
#define __NR_select 23
|
||||
#define __NR_sched_yield 24
|
||||
#define __NR_mremap 25
|
||||
#define __NR_msync 26
|
||||
#define __NR_mincore 27
|
||||
#define __NR_madvise 28
|
||||
#define __NR_shmget 29
|
||||
#define __NR_shmat 30
|
||||
#define __NR_shmctl 31
|
||||
#define __NR_dup 32
|
||||
#define __NR_dup2 33
|
||||
#define __NR_pause 34
|
||||
#define __NR_nanosleep 35
|
||||
#define __NR_getitimer 36
|
||||
#define __NR_alarm 37
|
||||
#define __NR_setitimer 38
|
||||
#define __NR_getpid 39
|
||||
#define __NR_sendfile 40
|
||||
#define __NR_socket 41
|
||||
#define __NR_connect 42
|
||||
#define __NR_accept 43
|
||||
#define __NR_sendto 44
|
||||
#define __NR_recvfrom 45
|
||||
#define __NR_sendmsg 46
|
||||
#define __NR_recvmsg 47
|
||||
#define __NR_shutdown 48
|
||||
#define __NR_bind 49
|
||||
#define __NR_listen 50
|
||||
#define __NR_getsockname 51
|
||||
#define __NR_getpeername 52
|
||||
#define __NR_socketpair 53
|
||||
#define __NR_setsockopt 54
|
||||
#define __NR_getsockopt 55
|
||||
#define __NR_clone 56
|
||||
#define __NR_fork 57
|
||||
#define __NR_vfork 58
|
||||
#define __NR_execve 59
|
||||
#define __NR_exit 0x5e // ok
|
||||
#define __NR_wait4 61
|
||||
#define __NR_kill 62
|
||||
#define __NR_uname 63
|
||||
#define __NR_semget 64
|
||||
#define __NR_semop 65
|
||||
#define __NR_semctl 66
|
||||
#define __NR_shmdt 67
|
||||
#define __NR_msgget 68
|
||||
#define __NR_msgsnd 69
|
||||
#define __NR_msgrcv 70
|
||||
#define __NR_msgctl 71
|
||||
#define __NR_fcntl 72
|
||||
#define __NR_flock 73
|
||||
#define __NR_fsync 74
|
||||
#define __NR_fdatasync 75
|
||||
#define __NR_truncate 76
|
||||
#define __NR_ftruncate 77
|
||||
#define __NR_getdents 78
|
||||
#define __NR_getcwd 79
|
||||
#define __NR_chdir 80
|
||||
#define __NR_fchdir 81
|
||||
#define __NR_rename 82
|
||||
#define __NR_mkdir 83
|
||||
#define __NR_rmdir 84
|
||||
#define __NR_creat 85
|
||||
#define __NR_link 86
|
||||
#define __NR_unlink 87
|
||||
#define __NR_symlink 88
|
||||
#define __NR_readlink 89
|
||||
#define __NR_chmod 90
|
||||
#define __NR_fchmod 91
|
||||
#define __NR_chown 92
|
||||
#define __NR_fchown 93
|
||||
#define __NR_lchown 94
|
||||
#define __NR_umask 95
|
||||
#define __NR_gettimeofday 96
|
||||
#define __NR_getrlimit 97
|
||||
#define __NR_getrusage 98
|
||||
#define __NR_sysinfo 99
|
||||
#define __NR_times 100
|
||||
#define __NR_ptrace 101
|
||||
#define __NR_getuid 102
|
||||
#define __NR_syslog 103
|
||||
/* at the very end the stuff that never runs during the benchmarks */
|
||||
#define __NR_getgid 104
|
||||
#define __NR_setuid 105
|
||||
#define __NR_setgid 106
|
||||
#define __NR_geteuid 107
|
||||
#define __NR_getegid 108
|
||||
#define __NR_setpgid 109
|
||||
#define __NR_getppid 110
|
||||
#define __NR_getpgrp 111
|
||||
#define __NR_setsid 112
|
||||
#define __NR_setreuid 113
|
||||
#define __NR_setregid 114
|
||||
#define __NR_getgroups 115
|
||||
#define __NR_setgroups 116
|
||||
#define __NR_setresuid 117
|
||||
#define __NR_getresuid 118
|
||||
#define __NR_setresgid 119
|
||||
#define __NR_getresgid 120
|
||||
#define __NR_getpgid 121
|
||||
#define __NR_setfsuid 122
|
||||
#define __NR_setfsgid 123
|
||||
#define __NR_getsid 124
|
||||
#define __NR_capget 125
|
||||
#define __NR_capset 126
|
||||
#define __NR_rt_sigpending 127
|
||||
#define __NR_rt_sigtimedwait 128
|
||||
#define __NR_rt_sigqueueinfo 129
|
||||
#define __NR_rt_sigsuspend 130
|
||||
#define __NR_sigaltstack 131
|
||||
#define __NR_utime 132
|
||||
#define __NR_mknod 133
|
||||
/* Only needed for a.out */
|
||||
#define __NR_uselib 134
|
||||
#define __NR_personality 135
|
||||
#define __NR_ustat 136
|
||||
#define __NR_statfs 137
|
||||
#define __NR_fstatfs 138
|
||||
#define __NR_sysfs 139
|
||||
#define __NR_getpriority 140
|
||||
#define __NR_setpriority 141
|
||||
#define __NR_sched_setparam 142
|
||||
#define __NR_sched_getparam 143
|
||||
#define __NR_sched_setscheduler 144
|
||||
#define __NR_sched_getscheduler 145
|
||||
#define __NR_sched_get_priority_max 146
|
||||
#define __NR_sched_get_priority_min 147
|
||||
#define __NR_sched_rr_get_interval 148
|
||||
#define __NR_mlock 149
|
||||
#define __NR_munlock 150
|
||||
#define __NR_mlockall 151
|
||||
#define __NR_munlockall 152
|
||||
#define __NR_vhangup 153
|
||||
#define __NR_modify_ldt 154
|
||||
#define __NR_pivot_root 155
|
||||
#define __NR__sysctl 156
|
||||
#define __NR_prctl 157
|
||||
#define __NR_arch_prctl 158
|
||||
#define __NR_adjtimex 159
|
||||
#define __NR_setrlimit 160
|
||||
#define __NR_chroot 161
|
||||
#define __NR_sync 162
|
||||
#define __NR_acct 163
|
||||
#define __NR_settimeofday 164
|
||||
#define __NR_mount 165
|
||||
#define __NR_umount2 166
|
||||
#define __NR_swapon 167
|
||||
#define __NR_swapoff 168
|
||||
#define __NR_reboot 169
|
||||
#define __NR_sethostname 170
|
||||
#define __NR_setdomainname 171
|
||||
#define __NR_iopl 172
|
||||
#define __NR_ioperm 173
|
||||
#define __NR_create_module 174
|
||||
#define __NR_init_module 175
|
||||
#define __NR_delete_module 176
|
||||
#define __NR_get_kernel_syms 177
|
||||
#define __NR_query_module 178
|
||||
#define __NR_quotactl 179
|
||||
#define __NR_nfsservctl 180
|
||||
/* reserved for LiS/STREAMS */
|
||||
#define __NR_getpmsg 181
|
||||
#define __NR_putpmsg 182
|
||||
/* reserved for AFS */
|
||||
#define __NR_afs_syscall 183
|
||||
/* reserved for tux */
|
||||
#define __NR_tuxcall 184
|
||||
#define __NR_security 185
|
||||
#define __NR_gettid 186
|
||||
#define __NR_readahead 187
|
||||
#define __NR_setxattr 188
|
||||
#define __NR_lsetxattr 189
|
||||
#define __NR_fsetxattr 190
|
||||
#define __NR_getxattr 191
|
||||
#define __NR_lgetxattr 192
|
||||
#define __NR_fgetxattr 193
|
||||
#define __NR_listxattr 194
|
||||
#define __NR_llistxattr 195
|
||||
#define __NR_flistxattr 196
|
||||
#define __NR_removexattr 197
|
||||
#define __NR_lremovexattr 198
|
||||
#define __NR_fremovexattr 199
|
||||
#define __NR_tkill 200
|
||||
#define __NR_time 201
|
||||
#define __NR_futex 202
|
||||
#define __NR_sched_setaffinity 203
|
||||
#define __NR_sched_getaffinity 204
|
||||
#define __NR_set_thread_area 205
|
||||
#define __NR_io_setup 206
|
||||
#define __NR_io_destroy 207
|
||||
#define __NR_io_getevents 208
|
||||
#define __NR_io_submit 209
|
||||
#define __NR_io_cancel 210
|
||||
#define __NR_get_thread_area 211
|
||||
#define __NR_lookup_dcookie 212
|
||||
#define __NR_epoll_create 213
|
||||
#define __NR_epoll_ctl_old 214
|
||||
#define __NR_epoll_wait_old 215
|
||||
#define __NR_remap_file_pages 216
|
||||
#define __NR_getdents64 217
|
||||
#define __NR_set_tid_address 218
|
||||
#define __NR_restart_syscall 219
|
||||
#define __NR_semtimedop 220
|
||||
#define __NR_fadvise64 221
|
||||
#define __NR_timer_create 222
|
||||
#define __NR_timer_settime 223
|
||||
#define __NR_timer_gettime 224
|
||||
#define __NR_timer_getoverrun 225
|
||||
#define __NR_timer_delete 226
|
||||
#define __NR_clock_settime 227
|
||||
#define __NR_clock_gettime 228
|
||||
#define __NR_clock_getres 229
|
||||
#define __NR_clock_nanosleep 230
|
||||
#define __NR_exit_group 231
|
||||
#define __NR_epoll_wait 232
|
||||
#define __NR_epoll_ctl 233
|
||||
#define __NR_tgkill 234
|
||||
#define __NR_utimes 235
|
||||
#define __NR_vserver 236
|
||||
#define __NR_mbind 237
|
||||
#define __NR_set_mempolicy 238
|
||||
#define __NR_get_mempolicy 239
|
||||
#define __NR_mq_open 240
|
||||
#define __NR_mq_unlink 241
|
||||
#define __NR_mq_timedsend 242
|
||||
#define __NR_mq_timedreceive 243
|
||||
#define __NR_mq_notify 244
|
||||
#define __NR_mq_getsetattr 245
|
||||
#define __NR_kexec_load 246
|
||||
#define __NR_waitid 247
|
||||
#define __NR_add_key 248
|
||||
#define __NR_request_key 249
|
||||
#define __NR_keyctl 250
|
||||
#define __NR_ioprio_set 251
|
||||
#define __NR_ioprio_get 252
|
||||
#define __NR_inotify_init 253
|
||||
#define __NR_inotify_add_watch 254
|
||||
#define __NR_inotify_rm_watch 255
|
||||
#define __NR_migrate_pages 256
|
||||
#define __NR_openat 257
|
||||
#define __NR_mkdirat 258
|
||||
#define __NR_mknodat 259
|
||||
#define __NR_fchownat 260
|
||||
#define __NR_futimesat 261
|
||||
#define __NR_newfstatat 262
|
||||
#define __NR_unlinkat 263
|
||||
#define __NR_renameat 264
|
||||
#define __NR_linkat 265
|
||||
#define __NR_symlinkat 266
|
||||
#define __NR_readlinkat 267
|
||||
#define __NR_fchmodat 268
|
||||
#define __NR_faccessat 269
|
||||
#define __NR_pselect6 270
|
||||
#define __NR_ppoll 271
|
||||
#define __NR_unshare 272
|
||||
#define __NR_set_robust_list 273
|
||||
#define __NR_get_robust_list 274
|
||||
#define __NR_splice 275
|
||||
#define __NR_tee 276
|
||||
#define __NR_sync_file_range 277
|
||||
#define __NR_vmsplice 278
|
||||
#define __NR_move_pages 279
|
||||
#define __NR_utimensat 280
|
||||
#define __IGNORE_getcpu /* implemented as a vsyscall */
|
||||
#define __NR_epoll_pwait 281
|
||||
#define __NR_signalfd 282
|
||||
#define __NR_timerfd_create 283
|
||||
#define __NR_eventfd 284
|
||||
#define __NR_fallocate 285
|
||||
#define __NR_timerfd_settime 286
|
||||
#define __NR_timerfd_gettime 287
|
||||
#define __NR_accept4 288
|
||||
#define __NR_signalfd4 289
|
||||
#define __NR_eventfd2 290
|
||||
#define __NR_epoll_create1 291
|
||||
#define __NR_dup3 292
|
||||
#define __NR_pipe2 293
|
||||
#define __NR_inotify_init1 294
|
||||
#define __NR_preadv 295
|
||||
#define __NR_pwritev 296
|
||||
|
||||
#endif /* SFSYSNR_H */
|
Loading…
x
Reference in New Issue
Block a user