cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

prctl_option.sh (679B)


      1#!/bin/sh
      2# SPDX-License-Identifier: LGPL-2.1
      3
      4[ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/linux/
      5
      6printf "static const char *prctl_options[] = {\n"
      7regex='^#define[[:space:]]{1}PR_(\w+)[[:space:]]*([[:xdigit:]]+)([[:space:]]*\/.*)?$'
      8egrep $regex ${header_dir}/prctl.h | grep -v PR_SET_PTRACER | \
      9	sed -r "s/$regex/\2 \1/g"	| \
     10	sort -n | xargs printf "\t[%s] = \"%s\",\n"
     11printf "};\n"
     12
     13printf "static const char *prctl_set_mm_options[] = {\n"
     14regex='^#[[:space:]]+define[[:space:]]+PR_SET_MM_(\w+)[[:space:]]*([[:digit:]]+).*'
     15egrep $regex ${header_dir}/prctl.h | \
     16	sed -r "s/$regex/\2 \1/g"	| \
     17	sort -n | xargs printf "\t[%s] = \"%s\",\n"
     18printf "};\n"