~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/syscallhdr.sh

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/syscallhdr.sh (Version linux-6.12-rc7) and /scripts/syscallhdr.sh (Version linux-6.9.12)


  1 #!/bin/sh                                           1 #!/bin/sh
  2 # SPDX-License-Identifier: GPL-2.0-only             2 # SPDX-License-Identifier: GPL-2.0-only
  3 #                                                   3 #
  4 # Generate a syscall number header.                 4 # Generate a syscall number header.
  5 #                                                   5 #
  6 # Each line of the syscall table should have t      6 # Each line of the syscall table should have the following format:
  7 #                                                   7 #
  8 # NR ABI NAME [NATIVE] [COMPAT]                     8 # NR ABI NAME [NATIVE] [COMPAT]
  9 #                                                   9 #
 10 # NR       syscall number                          10 # NR       syscall number
 11 # ABI      ABI name                                11 # ABI      ABI name
 12 # NAME     syscall name                            12 # NAME     syscall name
 13 # NATIVE   native entry point (optional)           13 # NATIVE   native entry point (optional)
 14 # COMPAT   compat entry point (optional)           14 # COMPAT   compat entry point (optional)
 15                                                    15 
 16 set -e                                             16 set -e
 17                                                    17 
 18 usage() {                                          18 usage() {
 19         echo >&2 "usage: $0 [--abis ABIS] [--e     19         echo >&2 "usage: $0 [--abis ABIS] [--emit-nr] [--offset OFFSET] [--prefix PREFIX] INFILE OUTFILE" >&2
 20         echo >&2                                   20         echo >&2
 21         echo >&2 "  INFILE    input syscall ta     21         echo >&2 "  INFILE    input syscall table"
 22         echo >&2 "  OUTFILE   output header fi     22         echo >&2 "  OUTFILE   output header file"
 23         echo >&2                                   23         echo >&2
 24         echo >&2 "options:"                        24         echo >&2 "options:"
 25         echo >&2 "  --abis ABIS        ABI(s)      25         echo >&2 "  --abis ABIS        ABI(s) to handle (By default, all lines are handled)"
 26         echo >&2 "  --emit-nr          Emit th     26         echo >&2 "  --emit-nr          Emit the macro of the number of syscalls (__NR_syscalls)"
 27         echo >&2 "  --offset OFFSET    The off     27         echo >&2 "  --offset OFFSET    The offset of syscall numbers"
 28         echo >&2 "  --prefix PREFIX    The pre     28         echo >&2 "  --prefix PREFIX    The prefix to the macro like __NR_<PREFIX><NAME>"
 29         exit 1                                     29         exit 1
 30 }                                                  30 }
 31                                                    31 
 32 # default unless specified by options              32 # default unless specified by options
 33 abis=                                              33 abis=
 34 emit_nr=                                           34 emit_nr=
 35 offset=                                            35 offset=
 36 prefix=                                            36 prefix=
 37                                                    37 
 38 while [ $# -gt 0 ]                                 38 while [ $# -gt 0 ]
 39 do                                                 39 do
 40         case $1 in                                 40         case $1 in
 41         --abis)                                    41         --abis)
 42                 abis=$(echo "($2)" | tr ',' '|     42                 abis=$(echo "($2)" | tr ',' '|')
 43                 shift 2;;                          43                 shift 2;;
 44         --emit-nr)                                 44         --emit-nr)
 45                 emit_nr=1                          45                 emit_nr=1
 46                 shift 1;;                          46                 shift 1;;
 47         --offset)                                  47         --offset)
 48                 offset=$2                          48                 offset=$2
 49                 shift 2;;                          49                 shift 2;;
 50         --prefix)                                  50         --prefix)
 51                 prefix=$2                          51                 prefix=$2
 52                 shift 2;;                          52                 shift 2;;
 53         -*)                                        53         -*)
 54                 echo "$1: unknown option" >&2      54                 echo "$1: unknown option" >&2
 55                 usage;;                            55                 usage;;
 56         *)                                         56         *)
 57                 break;;                            57                 break;;
 58         esac                                       58         esac
 59 done                                               59 done
 60                                                    60 
 61 if [ $# -ne 2 ]; then                              61 if [ $# -ne 2 ]; then
 62         usage                                      62         usage
 63 fi                                                 63 fi
 64                                                    64 
 65 infile="$1"                                        65 infile="$1"
 66 outfile="$2"                                       66 outfile="$2"
 67                                                    67 
 68 guard=_UAPI_ASM_$(basename "$outfile" |            68 guard=_UAPI_ASM_$(basename "$outfile" |
 69         sed -e 'y/abcdefghijklmnopqrstuvwxyz/A     69         sed -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
 70         -e 's/[^A-Z0-9_]/_/g' -e 's/__/_/g')       70         -e 's/[^A-Z0-9_]/_/g' -e 's/__/_/g')
 71                                                    71 
 72 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+$abis" "$i     72 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+$abis" "$infile" | {
 73         echo "#ifndef $guard"                      73         echo "#ifndef $guard"
 74         echo "#define $guard"                      74         echo "#define $guard"
 75         echo                                       75         echo
 76                                                    76 
 77         max=0                                      77         max=0
 78         while read nr abi name native compat ;     78         while read nr abi name native compat ; do
 79                                                    79 
 80                 max=$nr                            80                 max=$nr
 81                                                    81 
 82                 if [ -n "$offset" ]; then          82                 if [ -n "$offset" ]; then
 83                         nr="($offset + $nr)"       83                         nr="($offset + $nr)"
 84                 fi                                 84                 fi
 85                                                    85 
 86                 echo "#define __NR_$prefix$nam     86                 echo "#define __NR_$prefix$name $nr"
 87         done                                       87         done
 88                                                    88 
 89         if [ -n "$emit_nr" ]; then                 89         if [ -n "$emit_nr" ]; then
 90                 echo                               90                 echo
 91                 echo "#ifdef __KERNEL__"           91                 echo "#ifdef __KERNEL__"
 92                 echo "#define __NR_${prefix}sy     92                 echo "#define __NR_${prefix}syscalls $(($max + 1))"
 93                 echo "#endif"                      93                 echo "#endif"
 94         fi                                         94         fi
 95                                                    95 
 96         echo                                       96         echo
 97         echo "#endif /* $guard */"                 97         echo "#endif /* $guard */"
 98 } > "$outfile"                                     98 } > "$outfile"
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php