]> Zhao Yanbai Git Server - minix.git/commit
Basic live rerandomization infrastructure 75/3175/1
authorDavid van Moolenbroek <david@minix3.org>
Sun, 6 Sep 2015 06:06:24 +0000 (08:06 +0200)
committerDavid van Moolenbroek <david@minix3.org>
Thu, 17 Sep 2015 17:15:03 +0000 (17:15 +0000)
commite4d99eb9b04c9e4b5eae1e3658fb71795f36d65a
tree131f817abb193217d2afbc109e0f44f536dcefcf
parentfbbf2570b4e883d8aa40c5f791fbcac61556357c
Basic live rerandomization infrastructure

This commits adds a basic infrastructure to support Address Space
Randomization (ASR).  In a nutshell, using the already imported ASR
LLVM pass, multiple versions can be generated for the same system
service, each with a randomized, different address space layout.
Combined with the magic instrumentation for state transfer, a system
service can be live updated into another ASR-randomized version at
runtime, thus providing live rerandomization.

Since MINIX3 is not yet capable of running LLVM linker passes, the
ASR-randomized service binaries have to be pregenerated during
crosscompilation.  These pregenerated binaries can then be cycled
through at runtime.  This patch provides the basic proof-of-concept
infrastructure for both these parts.

In order to support pregeneration, the clientctl host script has
been extended with a "buildasr" command.  It is to be used after
building the entire system with bitcode and magic support, and will
produce a given number of ASR-randomized versions of all system
services.  These services are placed in /usr/service/asr in the
image that is generated as final step by the "buildasr" command.

In order to support runtime updating, a new update_asr(8) command
has been added to MINIX3.  This command attempts to live-update the
running system services into their next ASR-randomized versions.
For now, this command is not run automatically, and thus must be
invoked manually.

Technical notes:

- For various reasons, magic instrumentation is x86-only for now,
  and ASR functionality is therefore to be used on x86 only as well.
- The ASR-randomized binaries are placed in numbered subdirectories
  so as not to have to change their actual program names, which are
  assumed to be static in various places (system.conf, procfs).
- The root partition is typically too small to contain all the
  produced binaries, which is why we introduce /usr/service.  There
  is a symlink from /service/asr to /usr/service/asr for no other
  reason than to let userland continue to assume that all services
  are reachable through /service.
- The ASR count field (r_asr_count/ASRcount) maintained by RS is not
  used within RS in any way; it is only passed through procfs to
  userland in order to allow update_asr(8) to keep track of which
  version is currently loaded without having to maintain own state.
- Ideally, pre-instrumentation linking of a service would remove all
  its randomized versions.  Currently, the user is assumed not to
  perform ASR instrumentation and then recompile system services
  without performing ASR instrumentation again, as the randomized
  binaries included in the image would then be stale.  This aspect
  has to be improved later.
- Various other issues are flagged in the comments of the various
  parts of this patch.

Change-Id: I093ad57f31c18305591f64b2d491272288aa0937
16 files changed:
distrib/sets/checkflist
distrib/sets/lists/minix/mi
etc/Makefile
etc/mtree/NetBSD.dist.base
minix/commands/Makefile
minix/commands/service/service.c
minix/commands/update_asr/Makefile [new file with mode: 0644]
minix/commands/update_asr/update_asr.8 [new file with mode: 0644]
minix/commands/update_asr/update_asr.sh [new file with mode: 0644]
minix/fs/procfs/service.c
minix/include/minix/rs.h
minix/llvm/clientctl
minix/servers/rs/main.c
minix/servers/rs/manager.c
minix/servers/rs/type.h
releasetools/x86_hdimage.sh