2022-02-08 00:23:17 +08:00
|
|
|
/* SPDX-License-Identifier: LGPL-2.1 OR MIT */
|
|
|
|
/*
|
|
|
|
* i386 specific definitions for NOLIBC
|
|
|
|
* Copyright (C) 2017-2022 Willy Tarreau <w@1wt.eu>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NOLIBC_ARCH_I386_H
|
|
|
|
#define _NOLIBC_ARCH_I386_H
|
|
|
|
|
2023-05-21 17:36:34 +08:00
|
|
|
#include "compiler.h"
|
2023-07-16 02:26:42 +08:00
|
|
|
#include "crt.h"
|
2023-05-21 17:36:34 +08:00
|
|
|
|
2022-02-08 00:23:17 +08:00
|
|
|
/* Syscalls for i386 :
|
|
|
|
* - mostly similar to x86_64
|
|
|
|
* - registers are 32-bit
|
|
|
|
* - syscall number is passed in eax
|
|
|
|
* - arguments are in ebx, ecx, edx, esi, edi, ebp respectively
|
|
|
|
* - all registers are preserved (except eax of course)
|
|
|
|
* - the system call is performed by calling int $0x80
|
|
|
|
* - syscall return comes in eax
|
|
|
|
* - the arguments are cast to long and assigned into the target registers
|
|
|
|
* which are then simply passed as registers to the asm code, so that we
|
|
|
|
* don't have to experience issues with register constraints.
|
|
|
|
* - the syscall number is always specified last in order to allow to force
|
|
|
|
* some registers before (gcc refuses a %-register at the last position).
|
|
|
|
*
|
|
|
|
* Also, i386 supports the old_select syscall if newselect is not available
|
|
|
|
*/
|
|
|
|
#define __ARCH_WANT_SYS_OLD_SELECT
|
|
|
|
|
|
|
|
#define my_syscall0(num) \
|
|
|
|
({ \
|
|
|
|
long _ret; \
|
2022-03-29 18:17:30 +08:00
|
|
|
register long _num __asm__ ("eax") = (num); \
|
2023-07-07 22:50:34 +08:00
|
|
|
\
|
2023-07-07 22:52:09 +08:00
|
|
|
__asm__ volatile ( \
|
2022-02-08 00:23:17 +08:00
|
|
|
"int $0x80\n" \
|
|
|
|
: "=a" (_ret) \
|
|
|
|
: "0"(_num) \
|
|
|
|
: "memory", "cc" \
|
|
|
|
); \
|
|
|
|
_ret; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define my_syscall1(num, arg1) \
|
|
|
|
({ \
|
|
|
|
long _ret; \
|
2022-03-29 18:17:30 +08:00
|
|
|
register long _num __asm__ ("eax") = (num); \
|
|
|
|
register long _arg1 __asm__ ("ebx") = (long)(arg1); \
|
2023-07-07 22:50:34 +08:00
|
|
|
\
|
2023-07-07 22:52:09 +08:00
|
|
|
__asm__ volatile ( \
|
2022-02-08 00:23:17 +08:00
|
|
|
"int $0x80\n" \
|
|
|
|
: "=a" (_ret) \
|
|
|
|
: "r"(_arg1), \
|
|
|
|
"0"(_num) \
|
|
|
|
: "memory", "cc" \
|
|
|
|
); \
|
|
|
|
_ret; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define my_syscall2(num, arg1, arg2) \
|
|
|
|
({ \
|
|
|
|
long _ret; \
|
2022-03-29 18:17:30 +08:00
|
|
|
register long _num __asm__ ("eax") = (num); \
|
|
|
|
register long _arg1 __asm__ ("ebx") = (long)(arg1); \
|
|
|
|
register long _arg2 __asm__ ("ecx") = (long)(arg2); \
|
2023-07-07 22:50:34 +08:00
|
|
|
\
|
2023-07-07 22:52:09 +08:00
|
|
|
__asm__ volatile ( \
|
2022-02-08 00:23:17 +08:00
|
|
|
"int $0x80\n" \
|
|
|
|
: "=a" (_ret) \
|
|
|
|
: "r"(_arg1), "r"(_arg2), \
|
|
|
|
"0"(_num) \
|
|
|
|
: "memory", "cc" \
|
|
|
|
); \
|
|
|
|
_ret; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define my_syscall3(num, arg1, arg2, arg3) \
|
|
|
|
({ \
|
|
|
|
long _ret; \
|
2022-03-29 18:17:30 +08:00
|
|
|
register long _num __asm__ ("eax") = (num); \
|
|
|
|
register long _arg1 __asm__ ("ebx") = (long)(arg1); \
|
|
|
|
register long _arg2 __asm__ ("ecx") = (long)(arg2); \
|
|
|
|
register long _arg3 __asm__ ("edx") = (long)(arg3); \
|
2023-07-07 22:50:34 +08:00
|
|
|
\
|
2023-07-07 22:52:09 +08:00
|
|
|
__asm__ volatile ( \
|
2022-02-08 00:23:17 +08:00
|
|
|
"int $0x80\n" \
|
|
|
|
: "=a" (_ret) \
|
|
|
|
: "r"(_arg1), "r"(_arg2), "r"(_arg3), \
|
|
|
|
"0"(_num) \
|
|
|
|
: "memory", "cc" \
|
|
|
|
); \
|
|
|
|
_ret; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define my_syscall4(num, arg1, arg2, arg3, arg4) \
|
|
|
|
({ \
|
|
|
|
long _ret; \
|
2022-03-29 18:17:30 +08:00
|
|
|
register long _num __asm__ ("eax") = (num); \
|
|
|
|
register long _arg1 __asm__ ("ebx") = (long)(arg1); \
|
|
|
|
register long _arg2 __asm__ ("ecx") = (long)(arg2); \
|
|
|
|
register long _arg3 __asm__ ("edx") = (long)(arg3); \
|
|
|
|
register long _arg4 __asm__ ("esi") = (long)(arg4); \
|
2023-07-07 22:50:34 +08:00
|
|
|
\
|
2023-07-07 22:52:09 +08:00
|
|
|
__asm__ volatile ( \
|
2022-02-08 00:23:17 +08:00
|
|
|
"int $0x80\n" \
|
|
|
|
: "=a" (_ret) \
|
|
|
|
: "r"(_arg1), "r"(_arg2), "r"(_arg3), "r"(_arg4), \
|
|
|
|
"0"(_num) \
|
|
|
|
: "memory", "cc" \
|
|
|
|
); \
|
|
|
|
_ret; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
|
|
|
|
({ \
|
|
|
|
long _ret; \
|
2022-03-29 18:17:30 +08:00
|
|
|
register long _num __asm__ ("eax") = (num); \
|
|
|
|
register long _arg1 __asm__ ("ebx") = (long)(arg1); \
|
|
|
|
register long _arg2 __asm__ ("ecx") = (long)(arg2); \
|
|
|
|
register long _arg3 __asm__ ("edx") = (long)(arg3); \
|
|
|
|
register long _arg4 __asm__ ("esi") = (long)(arg4); \
|
|
|
|
register long _arg5 __asm__ ("edi") = (long)(arg5); \
|
2023-07-07 22:50:34 +08:00
|
|
|
\
|
2023-07-07 22:52:09 +08:00
|
|
|
__asm__ volatile ( \
|
2022-02-08 00:23:17 +08:00
|
|
|
"int $0x80\n" \
|
|
|
|
: "=a" (_ret) \
|
|
|
|
: "r"(_arg1), "r"(_arg2), "r"(_arg3), "r"(_arg4), "r"(_arg5), \
|
|
|
|
"0"(_num) \
|
|
|
|
: "memory", "cc" \
|
|
|
|
); \
|
|
|
|
_ret; \
|
|
|
|
})
|
|
|
|
|
2022-03-29 18:17:32 +08:00
|
|
|
#define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
|
|
|
|
({ \
|
|
|
|
long _eax = (long)(num); \
|
|
|
|
long _arg6 = (long)(arg6); /* Always in memory */ \
|
|
|
|
__asm__ volatile ( \
|
|
|
|
"pushl %[_arg6]\n\t" \
|
|
|
|
"pushl %%ebp\n\t" \
|
|
|
|
"movl 4(%%esp),%%ebp\n\t" \
|
|
|
|
"int $0x80\n\t" \
|
|
|
|
"popl %%ebp\n\t" \
|
|
|
|
"addl $4,%%esp\n\t" \
|
|
|
|
: "+a"(_eax) /* %eax */ \
|
|
|
|
: "b"(arg1), /* %ebx */ \
|
|
|
|
"c"(arg2), /* %ecx */ \
|
|
|
|
"d"(arg3), /* %edx */ \
|
|
|
|
"S"(arg4), /* %esi */ \
|
|
|
|
"D"(arg5), /* %edi */ \
|
|
|
|
[_arg6]"m"(_arg6) /* memory */ \
|
|
|
|
: "memory", "cc" \
|
|
|
|
); \
|
|
|
|
_eax; \
|
|
|
|
})
|
|
|
|
|
2022-02-08 00:23:17 +08:00
|
|
|
/* startup code */
|
|
|
|
/*
|
|
|
|
* i386 System V ABI mandates:
|
|
|
|
* 1) last pushed argument must be 16-byte aligned.
|
|
|
|
* 2) The deepest stack frame should be set to zero
|
|
|
|
*
|
|
|
|
*/
|
2023-07-16 02:18:54 +08:00
|
|
|
void __attribute__((weak, noreturn, optimize("Os", "omit-frame-pointer"))) __no_stack_protector _start(void)
|
tools/nolibc: make compiler and assembler agree on the section around _start
The out-of-block asm() statement carrying _start does not allow the
compiler to know what section the assembly code is being emitted to,
and there's no easy way to push/pop the current section and restore
it. It sometimes causes issues depending on the include files ordering
and compiler optimizations. For example if a variable is declared
immediately before the asm() block and another one after, the compiler
assumes that the current section is still .bss and doesn't re-emit it,
making the second variable appear inside the .text section instead.
Forcing .bss at the end of the _start block doesn't work either because
at certain optimizations the compiler may reorder blocks and will make
some real code appear just after this block.
A significant number of solutions were attempted, but many of them were
still sensitive to section reordering. In the end, the best way to make
sure the compiler and assembler agree on the current section is to place
this code inside a function. Here the function is directly called _start
and configured not to emit a frame-pointer, hence to have no prologue.
If some future architectures would still emit some prologue, another
working approach consists in naming the function differently and placing
the _start label inside the asm statement. But the current solution is
simpler.
It was tested with nolibc-test at -O,-O0,-O2,-O3,-Os for arm,arm64,i386,
mips,riscv,s390 and x86_64.
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
2023-01-10 15:24:13 +08:00
|
|
|
{
|
|
|
|
__asm__ volatile (
|
2023-07-16 02:26:42 +08:00
|
|
|
"xor %ebp, %ebp\n" /* zero the stack frame */
|
|
|
|
"mov %esp, %eax\n" /* save stack pointer to %eax, as arg1 of _start_c */
|
2023-08-30 09:02:23 +08:00
|
|
|
"add $12, %esp\n" /* avoid over-estimating after the 'and' & 'sub' below */
|
|
|
|
"and $-16, %esp\n" /* the %esp must be 16-byte aligned on 'call' */
|
|
|
|
"sub $12, %esp\n" /* sub 12 to keep it aligned after the push %eax */
|
2023-07-16 02:26:42 +08:00
|
|
|
"push %eax\n" /* push arg1 on stack to support plain stack modes too */
|
|
|
|
"call _start_c\n" /* transfer to c runtime */
|
|
|
|
"hlt\n" /* ensure it does not return */
|
tools/nolibc: make compiler and assembler agree on the section around _start
The out-of-block asm() statement carrying _start does not allow the
compiler to know what section the assembly code is being emitted to,
and there's no easy way to push/pop the current section and restore
it. It sometimes causes issues depending on the include files ordering
and compiler optimizations. For example if a variable is declared
immediately before the asm() block and another one after, the compiler
assumes that the current section is still .bss and doesn't re-emit it,
making the second variable appear inside the .text section instead.
Forcing .bss at the end of the _start block doesn't work either because
at certain optimizations the compiler may reorder blocks and will make
some real code appear just after this block.
A significant number of solutions were attempted, but many of them were
still sensitive to section reordering. In the end, the best way to make
sure the compiler and assembler agree on the current section is to place
this code inside a function. Here the function is directly called _start
and configured not to emit a frame-pointer, hence to have no prologue.
If some future architectures would still emit some prologue, another
working approach consists in naming the function differently and placing
the _start label inside the asm statement. But the current solution is
simpler.
It was tested with nolibc-test at -O,-O0,-O2,-O3,-Os for arm,arm64,i386,
mips,riscv,s390 and x86_64.
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
2023-01-10 15:24:13 +08:00
|
|
|
);
|
|
|
|
__builtin_unreachable();
|
|
|
|
}
|
2022-02-08 00:23:17 +08:00
|
|
|
|
2023-04-07 05:54:49 +08:00
|
|
|
#endif /* _NOLIBC_ARCH_I386_H */
|