| xf.li | bdd93d5 | 2023-05-12 07:10:14 -0700 | [diff] [blame] | 1 | /* Assembly code template for system call stubs. | 
|  | 2 | Copyright (C) 2009-2016 Free Software Foundation, Inc. | 
|  | 3 | This file is part of the GNU C Library. | 
|  | 4 |  | 
|  | 5 | The GNU C Library is free software; you can redistribute it and/or | 
|  | 6 | modify it under the terms of the GNU Lesser General Public | 
|  | 7 | License as published by the Free Software Foundation; either | 
|  | 8 | version 2.1 of the License, or (at your option) any later version. | 
|  | 9 |  | 
|  | 10 | The GNU C Library is distributed in the hope that it will be useful, | 
|  | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
|  | 13 | Lesser General Public License for more details. | 
|  | 14 |  | 
|  | 15 | You should have received a copy of the GNU Lesser General Public | 
|  | 16 | License along with the GNU C Library; if not, see | 
|  | 17 | <http://www.gnu.org/licenses/>.  */ | 
|  | 18 |  | 
|  | 19 | /* The real guts of this work are in the macros defined in the | 
|  | 20 | machine- and kernel-specific sysdep.h header file.  When we | 
|  | 21 | are defining a cancellable system call, the sysdep-cancel.h | 
|  | 22 | versions of those macros are what we really use. | 
|  | 23 |  | 
|  | 24 | Each system call's object is built by a rule in sysd-syscalls | 
|  | 25 | generated by make-syscalls.sh that #include's this file after | 
|  | 26 | defining a few macros: | 
|  | 27 | SYSCALL_NAME		syscall name | 
|  | 28 | SYSCALL_NARGS		number of arguments this call takes | 
|  | 29 | SYSCALL_SYMBOL		primary symbol name | 
|  | 30 | SYSCALL_CANCELLABLE	1 if the call is a cancelation point | 
|  | 31 | SYSCALL_NOERRNO		1 to define a no-errno version (see below) | 
|  | 32 | SYSCALL_ERRVAL		1 to define an error-value version (see below) | 
|  | 33 |  | 
|  | 34 | We used to simply pipe the correct three lines below through cpp into | 
|  | 35 | the assembler.  The main reason to have this file instead is so that | 
|  | 36 | stub objects can be assembled with -g and get source line information | 
|  | 37 | that leads a user back to a source file and these fine comments.  The | 
|  | 38 | average user otherwise has a hard time knowing which "syscall-like" | 
|  | 39 | functions in libc are plain stubs and which have nontrivial C wrappers. | 
|  | 40 | Some versions of the "plain" stub generation macros are more than a few | 
|  | 41 | instructions long and the untrained eye might not distinguish them from | 
|  | 42 | some compiled code that inexplicably lacks source line information.  */ | 
|  | 43 |  | 
|  | 44 | #if SYSCALL_CANCELLABLE | 
|  | 45 | # include <sysdep-cancel.h> | 
|  | 46 | #else | 
|  | 47 | # include <sysdep.h> | 
|  | 48 | #endif | 
|  | 49 |  | 
|  | 50 | /* This indirection is needed so that SYMBOL gets macro-expanded.  */ | 
|  | 51 | #define syscall_hidden_def(SYMBOL)		hidden_def (SYMBOL) | 
|  | 52 |  | 
|  | 53 | #define T_PSEUDO(SYMBOL, NAME, N)		PSEUDO (SYMBOL, NAME, N) | 
|  | 54 | #define T_PSEUDO_NOERRNO(SYMBOL, NAME, N)	PSEUDO_NOERRNO (SYMBOL, NAME, N) | 
|  | 55 | #define T_PSEUDO_ERRVAL(SYMBOL, NAME, N)	PSEUDO_ERRVAL (SYMBOL, NAME, N) | 
|  | 56 | #define T_PSEUDO_END(SYMBOL)			PSEUDO_END (SYMBOL) | 
|  | 57 | #define T_PSEUDO_END_NOERRNO(SYMBOL)		PSEUDO_END_NOERRNO (SYMBOL) | 
|  | 58 | #define T_PSEUDO_END_ERRVAL(SYMBOL)		PSEUDO_END_ERRVAL (SYMBOL) | 
|  | 59 |  | 
|  | 60 | #if SYSCALL_NOERRNO | 
|  | 61 |  | 
|  | 62 | /* This kind of system call stub never returns an error. | 
|  | 63 | We return the return value register to the caller unexamined.  */ | 
|  | 64 |  | 
|  | 65 | T_PSEUDO_NOERRNO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS) | 
|  | 66 | ret_NOERRNO | 
|  | 67 | T_PSEUDO_END_NOERRNO (SYSCALL_SYMBOL) | 
|  | 68 |  | 
|  | 69 | #elif SYSCALL_ERRVAL | 
|  | 70 |  | 
|  | 71 | /* This kind of system call stub returns the errno code as its return | 
|  | 72 | value, or zero for success.  We may massage the kernel's return value | 
|  | 73 | to meet that ABI, but we never set errno here.  */ | 
|  | 74 |  | 
|  | 75 | T_PSEUDO_ERRVAL (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS) | 
|  | 76 | ret_ERRVAL | 
|  | 77 | T_PSEUDO_END_ERRVAL (SYSCALL_SYMBOL) | 
|  | 78 |  | 
|  | 79 | #else | 
|  | 80 |  | 
|  | 81 | /* This is a "normal" system call stub: if there is an error, | 
|  | 82 | it returns -1 and sets errno.  */ | 
|  | 83 |  | 
|  | 84 | T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS) | 
|  | 85 | ret | 
|  | 86 | T_PSEUDO_END (SYSCALL_SYMBOL) | 
|  | 87 |  | 
|  | 88 | #endif | 
|  | 89 |  | 
|  | 90 | syscall_hidden_def (SYSCALL_SYMBOL) |