mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
This commit is a large squash, the full development branch is available at: https://github.com/cirosantilli/linux-kernel-module-cheat/tree/asm This notably means a refactor of the userland build and testing, to support: - improved assembly infrastructure unified across arm and x86 - native in-tree build and test helpers - parallel building and testing, which implies thread_pool.py - selection of what to build and test from the CLI - path_properties.py to indicate how to build and run different examples - in full system, move all userland stuff into /lkmc - prefix everything that we defined across files with LKMC - --gdb uber convenient helper - remove import imp which was deprecated Full commit messages from the branch follow: 1: userland: add assembly support Move arm assembly cheat here, and start some work on x86 cheat as well. 2: document userland asm syscall interfaces 3: userland assembly: structure readme 4: x86 fail works 5: asm: more links 6: userland: add ported to all archs 7: move all our stuff into /lkmc in guest Motivation: userland is getting several new subdirectories, it would be too insane to just dump all of that in the guest root filesystem. To alleviate the cd pain, .profile puts user inside /lkmc by default. 8: start the big userland migration 9: migrate all 10: bak 11: build-userland-in-tree is now a Python command ./build calls it, we did this to allow --download-dependencies to work perfectly. 12: rename include to lkmc 13: mtops.h is perfect now 14: userland: make build perfect 15: preparing test_user_mode, need to generalize stuff as usual 16: asm: prefix every linux specific with linux/ 17: userland: maybe it really works 18: userland: fix kernel version to work on older ubuntu Expose --kernel-version to allow customization. Update LTP info. 19: userland: build really truly working now userland test: start work, in a working state, but no features 20: test-user-mode: make perfect like build-userland Multithreading and target selection. 21: userland: get a bit closer to perfection 22: thread_pool: support passing thread IDs Then use that to fix gem5 error log read race. 23: userland: native testing 24: userland: path properties getting nice! 25: userland: move posix/environ from cpp-cheat 26: gem5: --debug-flags without =, looks nicer whenever it can be done 27: run: rename --wait-gdb in --gdb-wait, --gdb prefix might become a thing 28: run: create --tmux-program gdb to open gem5 GDB 29: run: create the uber convenient --gdb option 30: userland: move getchar from cpp-cheat 31: prebuilt: kernel boot aarch64 does not work on Ubuntu 16.04 32: userland: x86_64 linux hello world make PIE 33: userland: try to make userland executable selection saner Only allow existing files to be built, stop extension expansion madness. cli_function: get_cli print booleans properly, was printing without --no- for negations. 34: userland: only link to lkmc.o if needed 35: path_properties: make data very compact with only tuples and dicts Spend 2 hours of my life thinking about low value tree walks ;-) 36: userland: move more userland/arch/ logic into property tree 37: userland: make libs work Working for build, but now test-user-mode-in-tree is not using --in-tree, TODO fix later on. 38: userland: make libs really work 39: userland: document path_properties 40: userland: classify linux 41: waste your life 42: common: fix absolute path runs --gdb: allow running from arbitrary directory 43: baremetal: arm allow using floating point instructions 44: baremetal: stat preparing to make perfect like userland/ 45: run: fix image check logic accounting for userland Was failing if I try to run userland (with abspath) when out/ directory is not present. 46: cli-function: raise if the config file is given and does not exist 47: common: define missing 'ld' variable, this broke m5 build 48: rum: --qemu-which host now works for user mode as well as system Don't fall back on host QEMU automatically, too much insanity. 49: userland: refix silly mistakes 50: userland: use path_properties flags for all builds, including lkmc. and userland/arch/main.c Without this in particular, --gdb fails on assembly because main.c was not being built with -ggdb3. 51: userland: start refactor to show failing values on failure! aarch64 basically done, but missing: - other archs - maybe convert main.c into C++ to use templates? - full review of ASSERT_EQ calling convention issues not seen by tests by chance - documentation 52: readme: releases are more stable... 53: submodules: sort gitmodules 54: test-baremetal: same interface as test-user-mode In particular, runs tests in parallel, and allows selecting given tests 55: baremetal: allow arbitrary exit status with the magic string test-baremetal: fix missing setting x0 return value Examples were just returning on ret without setting x0, which led to failures... those were not noticed because of how broken the testing system was ;-) 56: baremetal: ah, actually nope, it didn't work :-( Workaround for now. Works on asserts, but not on exit 1. Some other day, maybe. https://github.com/cirosantilli/linux-kernel-module-cheat/issues/59 57: panic on panic: improve behaviour description 58: baremetal: get exit status working with on_exit :-) 59: baremetal: implement C assert 60: test-baremetal: remove commented out exit status workaround 61: test-user-mode: handle exit status for signals. Fix #61. 62: aarch64: fix ASSERT_EQ_REG tests on gem5 Was doing an 8-byte aligned store, which gem5 dislikes. But the ARMARM says bad things may happen there, notably a signal: "D1.8.2 SP alignment checking" so gem5 is not really too wrong, QEMU just happens to work by chance. 63: userland assembly: build empty.S and fail.S to toplevel and run fail.S with path_properties exit_status They were just duplicating stuff needlessly while we don't support non-native in-tree builds, which leads to executable conflicts for C file anyways. 64: gem5: use a single build tree for all build types gem5 already has different object names for each build type it seems, so let's just make sure that works and save some disk space. 65: userland x86_64: ASSERT_EQ show actual and expected values 66: assert_fail.c: add to readme index 67: userland x86_64: implement ASSERT_MEMCMP 68: userland x86_64: allow ASSERT_EQ to take just about anything 69: gas data sizes 70: gas_data_sizes.S: make PIE for all ISAs 71: x86: paddq 72: x86 paddq: test entire family 73: Get rid of imp, started giving deprecation warning every time in Python 3.7 in Ubuntu 19.04. Please python stop torturing me with refactors. Make ./run -u blow up if executable not found, otherwise I go crazy. Get ./test-gdb back to life after the ./run relative path refactor, forgot to test this. 74: fix run-toolchain, qemu-monitor, trace-boot, trace2line, bisect-linux-boot-gem5. Fixes part of #63 I'm sad no one reported qemu-monitor break, that one is kind of important. count.out arguments broke it as an init program, since the kernel adds trash parameters to every init. Is anyone using this repo, I wonder? Keep pushing, keep pushing. One day it gets good enough, and the whole world will see. 75: x86 assembly: addpd 76: Fix import_path circular dependency by splitting it out. Use import thread_pool instead from, from is evil. Fix poweroff.out path for ./trace-boot. 77: run: rename cryptic tmu to tmux-split, ./run is good now so I never use it anymore explicitly 78: assembly SIMD add: make uniform for all ISAs, mark as entry point to learning SIMD 79: start moving arm-assembly-cheat readme in here 80: arm assembly: move some more in 81: move more arm in 82: userland: attempt to fix all assembly example links to README 83: assembly: improve organization of simd add 84: ld2 move in 85: Make userland / assembly getting started more uniform / visible Forward --gcc-which to ./run --tmux. Use gdb-multiarch for --gcc-which host. 86: userland: disable PIE explicitly on command line for all executables 87: userland: make userland content a better landing page 88: build: check git version from --version and degrade gracefully 89: build: make --dry-run work again on all 90: import_path: importlib explicit for Ubuntu 16.04 91: make all submodules point to my forks git servers are insane, submodule implementation is crap, what can you do 92: build: log warning on git too old for --update 93: build-linux: do olddefconfig even if no fragments In particular, gem5 kernel 4.15 needs it 94: userland content: improve a bit landing page for cpp-cheat
374 lines
14 KiB
Python
374 lines
14 KiB
Python
#!/usr/bin/env python3
|
|
|
|
import base64
|
|
import distutils.file_util
|
|
import itertools
|
|
import os
|
|
import shlex
|
|
import shutil
|
|
import signal
|
|
import stat
|
|
import subprocess
|
|
import sys
|
|
import threading
|
|
import urllib.request
|
|
|
|
class LF:
|
|
'''
|
|
LineFeed (AKA newline).
|
|
|
|
Singleton class. Can be used in print_cmd to print out nicer command lines
|
|
with --key on the same line as "--key value".
|
|
'''
|
|
pass
|
|
|
|
class ShellHelpers:
|
|
'''
|
|
Helpers to do things which are easy from the shell,
|
|
usually filesystem, process or pipe operations.
|
|
|
|
Attempt to print shell equivalents of all commands to make things
|
|
easy to debug and understand what is going on.
|
|
'''
|
|
|
|
_print_lock = threading.Lock()
|
|
|
|
def __init__(self, dry_run=False, quiet=False):
|
|
'''
|
|
:param dry_run: don't run the commands, just potentially print them. Debug aid.
|
|
:type dry_run: Bool
|
|
|
|
:param quiet: don't print the commands
|
|
:type dry_run: Bool
|
|
'''
|
|
self.dry_run = dry_run
|
|
self.quiet = quiet
|
|
|
|
@classmethod
|
|
def _print_thread_safe(cls, string):
|
|
'''
|
|
Python sucks: a naive print adds a bunch of random spaces to stdout,
|
|
and then copy pasting the command fails.
|
|
https://stackoverflow.com/questions/3029816/how-do-i-get-a-thread-safe-print-in-python-2-6
|
|
The initial use case was test-gdb which must create a thread for GDB to run the program in parallel.
|
|
'''
|
|
with cls._print_lock:
|
|
sys.stdout.write(string + '\n')
|
|
sys.stdout.flush()
|
|
|
|
def add_newlines(self, cmd):
|
|
out = []
|
|
for arg in cmd:
|
|
out.extend([arg, LF])
|
|
return out
|
|
|
|
def base64_encode(self, string):
|
|
'''
|
|
TODO deal with redirection and print nicely.
|
|
'''
|
|
return base64.b64encode(string.encode()).decode()
|
|
|
|
def base64_decode(self, string):
|
|
return base64.b64decode(string.encode()).decode()
|
|
|
|
def chmod(self, path, add_rm_abs='+', mode_delta=stat.S_IXUSR):
|
|
'''
|
|
TODO extend further, shell print equivalent.
|
|
'''
|
|
old_mode = os.stat(path).st_mode
|
|
if add_rm_abs == '+':
|
|
new_mode = old_mode | mode_delta
|
|
elif add_rm_abs == '':
|
|
new_mode = mode_delta
|
|
elif add_rm_abs == '-':
|
|
new_mode = old_mode & ~mode_delta
|
|
os.chmod(path, new_mode)
|
|
|
|
@staticmethod
|
|
def cmd_to_string(cmd, cwd=None, extra_env=None, extra_paths=None):
|
|
'''
|
|
Format a command given as a list of strings so that it can
|
|
be viewed nicely and executed by bash directly and print it to stdout.
|
|
'''
|
|
last_newline = ' \\\n'
|
|
newline_separator = last_newline + ' '
|
|
out = []
|
|
if extra_env is None:
|
|
extra_env = {}
|
|
if cwd is not None:
|
|
out.append('cd {} &&'.format(shlex.quote(cwd)))
|
|
if extra_paths is not None:
|
|
out.append('PATH="{}:${{PATH}}"'.format(':'.join(extra_paths)))
|
|
for key in extra_env:
|
|
out.append('{}={}'.format(shlex.quote(key), shlex.quote(extra_env[key])))
|
|
cmd_quote = []
|
|
newline_count = 0
|
|
for arg in cmd:
|
|
if arg == LF:
|
|
cmd_quote.append(arg)
|
|
newline_count += 1
|
|
else:
|
|
cmd_quote.append(shlex.quote(arg))
|
|
if newline_count > 0:
|
|
cmd_quote = [' '.join(list(y)) for x, y in itertools.groupby(cmd_quote, lambda z: z == LF) if not x]
|
|
out.extend(cmd_quote)
|
|
if newline_count == 1 and cmd[-1] == LF:
|
|
ending = ''
|
|
else:
|
|
ending = last_newline + ';'
|
|
return newline_separator.join(out) + ending
|
|
|
|
def copy_dir_if_update_non_recursive(self, srcdir, destdir, filter_ext=None):
|
|
# TODO print rsync equivalent.
|
|
os.makedirs(destdir, exist_ok=True)
|
|
for basename in sorted(os.listdir(srcdir)):
|
|
src = os.path.join(srcdir, basename)
|
|
if os.path.isfile(src) or os.path.islink(src):
|
|
noext, ext = os.path.splitext(basename)
|
|
dest = os.path.join(destdir, basename)
|
|
if (
|
|
(filter_ext is None or ext == filter_ext) and
|
|
(not os.path.exists(dest) or os.path.getmtime(src) > os.path.getmtime(dest))
|
|
):
|
|
self.cp(src, dest)
|
|
|
|
def copy_dir_if_update(self, srcdir, destdir, filter_ext=None):
|
|
self.copy_dir_if_update_non_recursive(srcdir, destdir, filter_ext)
|
|
srcdir_abs = os.path.abspath(srcdir)
|
|
srcdir_abs_len = len(srcdir_abs)
|
|
for path, dirnames, filenames in self.walk(srcdir_abs):
|
|
for dirname in dirnames:
|
|
dirpath = os.path.join(path, dirname)
|
|
dirpath_relative_root = dirpath[srcdir_abs_len + 1:]
|
|
self.copy_dir_if_update_non_recursive(
|
|
dirpath,
|
|
os.path.join(destdir, dirpath_relative_root),
|
|
filter_ext
|
|
)
|
|
|
|
def cp(self, src, dest, **kwargs):
|
|
self.print_cmd(['cp', src, dest])
|
|
if not self.dry_run:
|
|
if os.path.islink(src):
|
|
if os.path.lexists(dest):
|
|
os.unlink(dest)
|
|
linkto = os.readlink(src)
|
|
os.symlink(linkto, dest)
|
|
else:
|
|
shutil.copy2(src, dest)
|
|
|
|
def print_cmd(self, cmd, cwd=None, cmd_file=None, extra_env=None, extra_paths=None):
|
|
'''
|
|
Print cmd_to_string to stdout.
|
|
|
|
Optionally save the command to cmd_file file, and add extra_env
|
|
environment variables to the command generated.
|
|
|
|
If cmd contains at least one LF, newlines are only added on LF.
|
|
Otherwise, newlines are added automatically after every word.
|
|
'''
|
|
if type(cmd) is str:
|
|
cmd_string = cmd
|
|
else:
|
|
cmd_string = self.cmd_to_string(cmd, cwd=cwd, extra_env=extra_env, extra_paths=extra_paths)
|
|
if not self.quiet:
|
|
self._print_thread_safe('+ ' + cmd_string)
|
|
if cmd_file is not None:
|
|
os.makedirs(os.path.dirname(cmd_file), exist_ok=True)
|
|
with open(cmd_file, 'w') as f:
|
|
f.write('#!/usr/bin/env bash\n')
|
|
f.write(cmd_string)
|
|
self.chmod(cmd_file)
|
|
|
|
def rmrf(self, path):
|
|
self.print_cmd(['rm', '-r', '-f', path, LF])
|
|
if not self.dry_run and os.path.exists(path):
|
|
if os.path.isdir(path):
|
|
shutil.rmtree(path)
|
|
else:
|
|
os.unlink(path)
|
|
|
|
def run_cmd(
|
|
self,
|
|
cmd,
|
|
cmd_file=None,
|
|
out_file=None,
|
|
show_stdout=True,
|
|
show_cmd=True,
|
|
extra_env=None,
|
|
extra_paths=None,
|
|
delete_env=None,
|
|
raise_on_failure=True,
|
|
**kwargs
|
|
):
|
|
'''
|
|
Run a command. Write the command to stdout before running it.
|
|
|
|
Wait until the command finishes execution.
|
|
|
|
:param cmd: command to run. LF entries are magic get skipped.
|
|
:type cmd: List[str]
|
|
|
|
:param cmd_file: if not None, write the command to be run to that file
|
|
:type cmd_file: str
|
|
|
|
:param out_file: if not None, write the stdout and stderr of the command the file
|
|
:type out_file: str
|
|
|
|
:param show_stdout: wether to show stdout and stderr on the terminal or not
|
|
:type show_stdout: bool
|
|
|
|
:param extra_env: extra environment variables to add when running the command
|
|
:type extra_env: Dict[str,str]
|
|
|
|
:return: exit status of the command
|
|
:rtype: int
|
|
'''
|
|
if out_file is None:
|
|
if show_stdout:
|
|
stdout = None
|
|
stderr = None
|
|
else:
|
|
stdout = subprocess.DEVNULL
|
|
stderr = subprocess.DEVNULL
|
|
else:
|
|
stdout = subprocess.PIPE
|
|
stderr = subprocess.STDOUT
|
|
if extra_env is None:
|
|
extra_env = {}
|
|
if delete_env is None:
|
|
delete_env = []
|
|
if 'cwd' in kwargs:
|
|
cwd = kwargs['cwd']
|
|
else:
|
|
cwd = None
|
|
env = os.environ.copy()
|
|
env.update(extra_env)
|
|
if extra_paths is not None:
|
|
path = ':'.join(extra_paths)
|
|
if 'PATH' in os.environ:
|
|
path += ':' + os.environ['PATH']
|
|
env['PATH'] = path
|
|
for key in delete_env:
|
|
if key in env:
|
|
del env[key]
|
|
if show_cmd:
|
|
self.print_cmd(cmd, cwd=cwd, cmd_file=cmd_file, extra_env=extra_env, extra_paths=extra_paths)
|
|
|
|
# Otherwise, if called from a non-main thread:
|
|
# ValueError: signal only works in main thread
|
|
if threading.current_thread() == threading.main_thread():
|
|
# Otherwise Ctrl + C gives:
|
|
# - ugly Python stack trace for gem5 (QEMU takes over terminal and is fine).
|
|
# - kills Python, and that then kills GDB: https://stackoverflow.com/questions/19807134/does-python-always-raise-an-exception-if-you-do-ctrlc-when-a-subprocess-is-exec
|
|
sigint_old = signal.getsignal(signal.SIGINT)
|
|
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
|
|
|
# Otherwise BrokenPipeError when piping through | grep
|
|
# But if I do this_module, my terminal gets broken at the end. Why, why, why.
|
|
# https://stackoverflow.com/questions/14207708/ioerror-errno-32-broken-pipe-python
|
|
# Ignoring the exception is not enough as it prints a warning anyways.
|
|
#sigpipe_old = signal.getsignal(signal.SIGPIPE)
|
|
#signal.signal(signal.SIGPIPE, signal.SIG_DFL)
|
|
|
|
cmd = self.strip_newlines(cmd)
|
|
if not self.dry_run:
|
|
# https://stackoverflow.com/questions/15535240/python-popen-write-to-stdout-and-log-file-simultaneously/52090802#52090802
|
|
with subprocess.Popen(cmd, stdout=stdout, stderr=stderr, env=env, **kwargs) as proc:
|
|
if out_file is not None:
|
|
os.makedirs(os.path.split(os.path.abspath(out_file))[0], exist_ok=True)
|
|
with open(out_file, 'bw') as logfile:
|
|
while True:
|
|
byte = proc.stdout.read(1)
|
|
if byte:
|
|
if show_stdout:
|
|
sys.stdout.buffer.write(byte)
|
|
try:
|
|
sys.stdout.flush()
|
|
except BlockingIOError:
|
|
# TODO understand. Why, Python, why.
|
|
pass
|
|
logfile.write(byte)
|
|
else:
|
|
break
|
|
if threading.current_thread() == threading.main_thread():
|
|
signal.signal(signal.SIGINT, sigint_old)
|
|
#signal.signal(signal.SIGPIPE, sigpipe_old)
|
|
returncode = proc.returncode
|
|
if returncode != 0 and raise_on_failure:
|
|
e = Exception('Command exited with status: {}'.format(returncode))
|
|
e.returncode = returncode
|
|
raise e
|
|
return returncode
|
|
else:
|
|
return 0
|
|
|
|
def shlex_split(self, string):
|
|
'''
|
|
shlex_split, but also add Newline after every word.
|
|
|
|
Not perfect since it does not group arguments, but I don't see a solution.
|
|
'''
|
|
return self.add_newlines(shlex.split(string))
|
|
|
|
def strip_newlines(self, cmd):
|
|
if type(cmd) is str:
|
|
return cmd
|
|
else:
|
|
return [x for x in cmd if x != LF]
|
|
|
|
def walk(self, root):
|
|
'''
|
|
Extended walk that can take files or directories.
|
|
'''
|
|
if not os.path.exists(root):
|
|
raise Exception('Path does not exist: ' + root)
|
|
if os.path.isfile(root):
|
|
dirname, basename = os.path.split(root)
|
|
yield dirname, [], [basename]
|
|
else:
|
|
for path, dirnames, filenames in os.walk(root):
|
|
dirnames.sort()
|
|
filenames.sort()
|
|
yield path, dirnames, filenames
|
|
|
|
def wget(self, url, download_path):
|
|
'''
|
|
Append extra KEY=val configs into the given config file.
|
|
|
|
I wissh we could have a progress indicator, but impossible:
|
|
https://stackoverflow.com/questions/51212/how-to-write-a-download-progress-indicator-in-python
|
|
'''
|
|
self.print_cmd([
|
|
'wget', LF,
|
|
'-O', download_path, LF,
|
|
url, LF,
|
|
])
|
|
urllib.request.urlretrieve(url, download_path)
|
|
|
|
def write_configs(self, config_path, configs, config_fragments=None, mode='a'):
|
|
'''
|
|
Append extra KEY=val configs into the given config file.
|
|
'''
|
|
if config_fragments is None:
|
|
config_fragments = []
|
|
for config_fragment in config_fragments:
|
|
self.print_cmd(['cat', config_fragment, '>>', config_path])
|
|
if not self.dry_run:
|
|
with open(config_path, 'a') as config_file:
|
|
for config_fragment in config_fragments:
|
|
with open(config_fragment, 'r') as config_fragment_file:
|
|
for line in config_fragment_file:
|
|
config_file.write(line)
|
|
self.write_string_to_file(config_path, '\n'.join(configs), mode=mode)
|
|
|
|
def write_string_to_file(self, path, string, mode='w'):
|
|
if mode == 'a':
|
|
redirect = '>>'
|
|
else:
|
|
redirect = '>'
|
|
self.print_cmd("cat << 'EOF' {} {}\n{}\nEOF".format(redirect, path, string))
|
|
if not self.dry_run:
|
|
with open(path, mode) as f:
|
|
f.write(string)
|