mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
To avoid polluting the namespace rename __no_stack_protector to __nolibc_no_stack_protector so its now within the nolibc umbrella. Suggested-by: Willy Tarreau <w@1wt.eu> Signed-off-by: Daniel Palmer <daniel@thingy.jp> Link: https://patch.msgid.link/20260425111315.3191461-2-daniel@thingy.jp Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
201 lines
5.3 KiB
C
201 lines
5.3 KiB
C
/* SPDX-License-Identifier: LGPL-2.1 OR MIT */
|
|
/*
|
|
* s390 specific definitions for NOLIBC
|
|
*/
|
|
|
|
#ifndef _NOLIBC_ARCH_S390_H
|
|
#define _NOLIBC_ARCH_S390_H
|
|
|
|
#include "types.h"
|
|
|
|
#include <linux/sched.h>
|
|
#include <linux/signal.h>
|
|
#include <linux/unistd.h>
|
|
|
|
#include "compiler.h"
|
|
#include "crt.h"
|
|
#include "std.h"
|
|
|
|
/* Syscalls for s390:
|
|
* - registers are 64-bit
|
|
* - syscall number is passed in r1
|
|
* - arguments are in r2-r7
|
|
* - the system call is performed by calling the svc instruction
|
|
* - syscall return value is in r2
|
|
* - r1 and r2 are clobbered, others are preserved.
|
|
*
|
|
* Link s390 ABI: https://github.com/IBM/s390x-abi
|
|
*
|
|
*/
|
|
|
|
#define __nolibc_syscall0(num) \
|
|
({ \
|
|
register long _num __asm__ ("1") = (num); \
|
|
register long _rc __asm__ ("2"); \
|
|
\
|
|
__asm__ volatile ( \
|
|
"svc 0\n" \
|
|
: "=d"(_rc) \
|
|
: "d"(_num) \
|
|
: "memory", "cc" \
|
|
); \
|
|
_rc; \
|
|
})
|
|
|
|
#define __nolibc_syscall1(num, arg1) \
|
|
({ \
|
|
register long _num __asm__ ("1") = (num); \
|
|
register long _arg1 __asm__ ("2") = (long)(arg1); \
|
|
\
|
|
__asm__ volatile ( \
|
|
"svc 0\n" \
|
|
: "+d"(_arg1) \
|
|
: "d"(_num) \
|
|
: "memory", "cc" \
|
|
); \
|
|
_arg1; \
|
|
})
|
|
|
|
#define __nolibc_syscall2(num, arg1, arg2) \
|
|
({ \
|
|
register long _num __asm__ ("1") = (num); \
|
|
register long _arg1 __asm__ ("2") = (long)(arg1); \
|
|
register long _arg2 __asm__ ("3") = (long)(arg2); \
|
|
\
|
|
__asm__ volatile ( \
|
|
"svc 0\n" \
|
|
: "+d"(_arg1) \
|
|
: "d"(_arg2), "d"(_num) \
|
|
: "memory", "cc" \
|
|
); \
|
|
_arg1; \
|
|
})
|
|
|
|
#define __nolibc_syscall3(num, arg1, arg2, arg3) \
|
|
({ \
|
|
register long _num __asm__ ("1") = (num); \
|
|
register long _arg1 __asm__ ("2") = (long)(arg1); \
|
|
register long _arg2 __asm__ ("3") = (long)(arg2); \
|
|
register long _arg3 __asm__ ("4") = (long)(arg3); \
|
|
\
|
|
__asm__ volatile ( \
|
|
"svc 0\n" \
|
|
: "+d"(_arg1) \
|
|
: "d"(_arg2), "d"(_arg3), "d"(_num) \
|
|
: "memory", "cc" \
|
|
); \
|
|
_arg1; \
|
|
})
|
|
|
|
#define __nolibc_syscall4(num, arg1, arg2, arg3, arg4) \
|
|
({ \
|
|
register long _num __asm__ ("1") = (num); \
|
|
register long _arg1 __asm__ ("2") = (long)(arg1); \
|
|
register long _arg2 __asm__ ("3") = (long)(arg2); \
|
|
register long _arg3 __asm__ ("4") = (long)(arg3); \
|
|
register long _arg4 __asm__ ("5") = (long)(arg4); \
|
|
\
|
|
__asm__ volatile ( \
|
|
"svc 0\n" \
|
|
: "+d"(_arg1) \
|
|
: "d"(_arg2), "d"(_arg3), "d"(_arg4), "d"(_num) \
|
|
: "memory", "cc" \
|
|
); \
|
|
_arg1; \
|
|
})
|
|
|
|
#define __nolibc_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
|
|
({ \
|
|
register long _num __asm__ ("1") = (num); \
|
|
register long _arg1 __asm__ ("2") = (long)(arg1); \
|
|
register long _arg2 __asm__ ("3") = (long)(arg2); \
|
|
register long _arg3 __asm__ ("4") = (long)(arg3); \
|
|
register long _arg4 __asm__ ("5") = (long)(arg4); \
|
|
register long _arg5 __asm__ ("6") = (long)(arg5); \
|
|
\
|
|
__asm__ volatile ( \
|
|
"svc 0\n" \
|
|
: "+d"(_arg1) \
|
|
: "d"(_arg2), "d"(_arg3), "d"(_arg4), "d"(_arg5), \
|
|
"d"(_num) \
|
|
: "memory", "cc" \
|
|
); \
|
|
_arg1; \
|
|
})
|
|
|
|
#define __nolibc_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
|
|
({ \
|
|
register long _num __asm__ ("1") = (num); \
|
|
register long _arg1 __asm__ ("2") = (long)(arg1); \
|
|
register long _arg2 __asm__ ("3") = (long)(arg2); \
|
|
register long _arg3 __asm__ ("4") = (long)(arg3); \
|
|
register long _arg4 __asm__ ("5") = (long)(arg4); \
|
|
register long _arg5 __asm__ ("6") = (long)(arg5); \
|
|
register long _arg6 __asm__ ("7") = (long)(arg6); \
|
|
\
|
|
__asm__ volatile ( \
|
|
"svc 0\n" \
|
|
: "+d"(_arg1) \
|
|
: "d"(_arg2), "d"(_arg3), "d"(_arg4), "d"(_arg5), \
|
|
"d"(_arg6), "d"(_num) \
|
|
: "memory", "cc" \
|
|
); \
|
|
_arg1; \
|
|
})
|
|
|
|
#ifndef NOLIBC_NO_RUNTIME
|
|
/* startup code */
|
|
void __attribute__((weak, noreturn)) __nolibc_entrypoint __nolibc_no_stack_protector _start(void)
|
|
{
|
|
__asm__ volatile (
|
|
"lgr %r2, %r15\n" /* save stack pointer to %r2, as arg1 of _start_c */
|
|
"aghi %r15, -160\n" /* allocate new stackframe */
|
|
"xc 0(8,%r15), 0(%r15)\n" /* clear backchain */
|
|
"brasl %r14, _start_c\n" /* transfer to c runtime */
|
|
);
|
|
__nolibc_entrypoint_epilogue();
|
|
}
|
|
#endif /* NOLIBC_NO_RUNTIME */
|
|
|
|
struct s390_mmap_arg_struct {
|
|
unsigned long addr;
|
|
unsigned long len;
|
|
unsigned long prot;
|
|
unsigned long flags;
|
|
unsigned long fd;
|
|
unsigned long offset;
|
|
};
|
|
|
|
static __attribute__((unused))
|
|
void *_sys_mmap(void *addr, size_t length, int prot, int flags, int fd,
|
|
off_t offset)
|
|
{
|
|
struct s390_mmap_arg_struct args = {
|
|
.addr = (unsigned long)addr,
|
|
.len = (unsigned long)length,
|
|
.prot = prot,
|
|
.flags = flags,
|
|
.fd = fd,
|
|
.offset = (unsigned long)offset
|
|
};
|
|
|
|
return (void *)__nolibc_syscall1(__NR_mmap, &args);
|
|
}
|
|
#define _sys_mmap _sys_mmap
|
|
|
|
static __attribute__((unused))
|
|
pid_t _sys_fork(void)
|
|
{
|
|
return __nolibc_syscall5(__NR_clone, 0, SIGCHLD, 0, 0, 0);
|
|
}
|
|
#define _sys_fork _sys_fork
|
|
|
|
static __attribute__((unused))
|
|
pid_t _sys_vfork(void)
|
|
{
|
|
return __nolibc_syscall5(__NR_clone, 0, CLONE_VM | CLONE_VFORK | SIGCHLD, 0, 0, 0);
|
|
}
|
|
#define _sys_vfork _sys_vfork
|
|
|
|
#endif /* _NOLIBC_ARCH_S390_H */
|