Fix buffer overflow in unit tests.

The imageloader unit tests have a buffer overflow do to an unsafe
implicit conversion of non-null terminated data to an std::string. This
manually wraps the data in a StringPiece.

BUG=chromium:664658
TEST=FEATURES=test emerge-${BOARD} imageloader

Change-Id: I18270654de2e2e3e90955ab581d3f6597ff674ba
Reviewed-on: https://chromium-review.googlesource.com/410040
Commit-Ready: Greg Kerr <kerrnel@chromium.org>
Tested-by: Greg Kerr <kerrnel@chromium.org>
Reviewed-by: Ricky Zhou <rickyz@chromium.org>
3 files changed
tree: 20cd7185558d73113584bb39be8090cd32cb18cd
  1. public_keys/
  2. test/
  3. .presubmitignore
  4. imageloadclient-glue.xml
  5. imageloadclient.cc
  6. imageloadclient.h
  7. imageloader-glue.xml
  8. imageloader-seccomp-amd64.policy
  9. imageloader-seccomp-arm.policy
  10. imageloader-seccomp-x86.policy
  11. imageloader.conf
  12. imageloader.gyp
  13. imageloader.h
  14. imageloader_common.cc
  15. imageloader_common.h
  16. imageloader_impl.cc
  17. imageloader_impl.h
  18. imageloader_main.cc
  19. imageloader_unittest.cc
  20. imageloader_wrapper
  21. mock_verity_mounter.h
  22. org.chromium.ImageLoader.conf
  23. org.chromium.ImageLoader.service
  24. README.md
  25. run_tests.cc
  26. verity_mounter.cc
  27. verity_mounter.h
README.md

src/platform/imageloader

This aims to provide a generic utility to load (mount) and unload (unmount) verified disk images through DBus IPC.

Binaries

  • imageloader
  • imageloadclient

imageloader can be run as root and can handle mounting and unmounting of disk images. imageloadclient is a simple client (intended to be run as chronos) that can talk to imageloader and ask it to mount and unmount stuff. When imageloader is not running, DBus can invoke it via the one time run option (imageloader -o) and get the task done.