sandboxed-api/oss-internship-2020/guetzli
Christian Blichmann 6cbde854d6 #Cleanup: Consistently use `char* argv[]` instead of `char**`
PiperOrigin-RevId: 444782296
Change-Id: If8e7647be28f794392675ae001abbe9b809da0ac
2022-04-27 00:43:51 -07:00
..
external Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
testdata Moved tests to root folder, removed unused headers 2020-09-13 18:20:10 +03:00
.bazelrc First version of guetzli sandbox 2020-08-11 15:48:48 -07:00
BUILD.bazel Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
README.md Changed README, Bazel deps and different parts of code according to the review 2020-08-31 02:19:00 -07:00
WORKSPACE.bazel Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
guetzli_entry_points.cc Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
guetzli_entry_points.h Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
guetzli_sandbox.h Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
guetzli_sandboxed.cc #Cleanup: Consistently use `char* argv[]` instead of `char**` 2022-04-27 00:43:51 -07:00
guetzli_sapi_test.cc Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
guetzli_transaction.cc Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
guetzli_transaction.h Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00
guetzli_transaction_test.cc Change license link to HTTPS URL 2022-01-28 01:39:09 -08:00

README.md

Guetzli Sandbox

This is an example implementation of a sandbox for the Guetzli library using Sandboxed API. Please read Guetzli's documentation to learn more about it.

Implementation details

Because Guetzli provides a C++ API and SAPI requires functions to be extern "C", a wrapper library has been written for the compatibility. SAPI provides a Transaction class, which is a convenient way to create a wrapper for your sandboxed API that handles internal errors. The original Guetzli has a command-line utility to encode images, so a fully compatible utility that uses sandboxed Guetzli is provided.

The wrapper around Guetzli uses file descriptors to pass data to the sandbox. This approach restricts the sandbox from using the open() syscall and also helps to prevent making copies of data, because you need to synchronize it between processes.

Build Guetzli Sandboxed

Right now Sandboxed API support only Linux systems, so you need one to build it. Guetzli sandboxed uses Bazel as a build system so you need to install it before building.

To build Guetzli sandboxed encoding utility you can use this command: bazel build //:guetzli_sandboxed

Then you can use it in this way:

guetzli_sandboxed [--quality Q] [--verbose] original.png output.jpg
guetzli_sandboxed [--quality Q] [--verbose] original.jpg output.jpg

Refer to Guetzli's documentation to read more about usage.

Examples

There are two different sets of unit tests which demonstrate how to use different parts of Guetzli sandboxed:

  • tests/guetzli_sapi_test.cc - example usage of Guetzli sandboxed API.
  • tests/guetzli_transaction_test.cc - example usage of Guetzli transaction.

To run tests use the following command: bazel test ...

Also, there is an example of custom security policy for your sandbox in guetzli_sandbox.h