Skip to content

Instantly share code, notes, and snippets.

Created November 26, 2015 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/140faea2c27b5afe0988 to your computer and use it in GitHub Desktop.
Save anonymous/140faea2c27b5afe0988 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import subprocess
# Get the kernel release
p = subprocess.Popen(['uname', '-r'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
kernel_version = out.strip()#.split('-')[0]
# Open file
unistd32_contents = ''
with open('/usr/src/linux-headers-4.2.0-18-generic/arch/x86/include/generated/uapi/asm/unistd_32.h', 'r') as f:
unistd32_contents = f.read()
split_contents_32 = unistd32_contents.split('\n')
# Construct a python dictionary
mappings = {}
reverse_mappings = {}
syscalls = []
for line in split_contents_32:
if 'NR_syscalls' in line:
break
if '__NR' in line:
syscalls.append(line)
# Properly parse
# syscalls[1] -> __NR_$NAME
# syscalls[2] -> number
for syscall in syscalls:
syscall_num = syscall.split()[2]
syscall_name = syscall.split()[1]
try:
mappings[int(syscall_num)] = syscall_name[5:]
reverse_mappings[syscall_name] = int(syscall_num)
# Some pesky macro needs expanding
except ValueError:
ref_name = syscall_num.split('(')[1].split('+')[0]
ref_num = reverse_mappings[ref_name]
syscall_num = syscall_num.replace(ref_name, str(ref_num))
mappings[int(eval(syscall_num))] = syscall_name[5:]
print "const char * const syscalls[] = {",
for i in range(366):
try:
print "\"" + mappings[i] + "\",",
except KeyError:
print "\"unkown syscall %s\"," % i,
print "};\n"
#from pprint import pformat
#print "package main\n"
#print "var idToSyscall = map[int]string" + pformat(mappings).replace("'",'"')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment