blob: 3d278785fe574a0e55043a6682c791b73c404e41 [file] [log] [blame]
Arnaldo Carvalho de Melod688d032017-10-26 15:19:35 -03001#!/bin/sh
Arnaldo Carvalho de Melo794f5942018-10-24 15:54:23 -03002# SPDX-License-Identifier: LGPL-2.1
Arnaldo Carvalho de Melod688d032017-10-26 15:19:35 -03003
Arnaldo Carvalho de Melo0d690fc2018-05-30 10:29:52 -03004[ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/linux/
Arnaldo Carvalho de Melod688d032017-10-26 15:19:35 -03005
6printf "static const char *prctl_options[] = {\n"
Arnaldo Carvalho de Melo10019832022-02-01 12:53:16 -03007regex='^#define[[:space:]]{1}PR_(\w+)[[:space:]]*([[:xdigit:]]+)([[:space:]]*\/.*)?$'
Arnaldo Carvalho de Melod688d032017-10-26 15:19:35 -03008egrep $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"