mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
045ace8dcb
- Abseil - Protobuf - Benchmark - Googletest In turn, some code changes were necessary: - Use absolute imports in `sapi_generator.py` when invoked by Bazel - Add Abseil's source dir as include dir in generated proto `.cc` files - Bazel: Use `@rules_proto` for `proto_library` and use native `cc_proto_library` Drive-by: - Update year in `README.md` - Look for clang versions 16, 15, 14, and 13 as well in `code.py` PiperOrigin-RevId: 539032012 Change-Id: Ib9cd1d7fb38409d884eb45e1fa08927f6af83a21
37 lines
1.7 KiB
Markdown
37 lines
1.7 KiB
Markdown
![Sandbox](sandboxed_api/docs/images/sapi-lockup-vertical.png)
|
|
|
|
Copyright 2019-2023 Google LLC
|
|
|
|
[![Bazel build status](https://badge.buildkite.com/2f662d7bddfd1c07d25bf92d243538c8344bc6fbf38fe187f8.svg)](https://buildkite.com/bazel/sandboxed-api)
|
|
[![CMake build status](https://github.com/google/sandboxed-api/workflows/CMake/badge.svg)](https://github.com/google/sandboxed-api/actions?query=workflow%3ACMake)
|
|
|
|
## What is Sandboxed API?
|
|
|
|
The Sandboxed API project (**SAPI**) makes sandboxing of C/C++ libraries less
|
|
burdensome: after initial setup of security policies and generation of library
|
|
interfaces, a stub API is generated, transparently forwarding calls using a
|
|
custom RPC layer to the real library running inside a sandboxed environment.
|
|
|
|
Additionally, each SAPI library utilizes a tightly defined security policy, in
|
|
contrast to the typical sandboxed project, where security policies must cover
|
|
the total syscall/resource footprint of all its libraries.
|
|
|
|
## Documentation
|
|
|
|
Developer documentation is available on the Google Developers site for
|
|
[Sandboxed API](https://developers.google.com/code-sandboxing/sandboxed-api).
|
|
|
|
There is also a
|
|
[Getting Started](https://developers.google.com/code-sandboxing/sandboxed-api/getting-started)
|
|
guide.
|
|
|
|
## Getting Involved
|
|
|
|
If you want to contribute, please read [CONTRIBUTING.md](CONTRIBUTING.md) and
|
|
send us pull requests. You can also report bugs or file feature requests.
|
|
|
|
If you'd like to talk to the developers or get notified about major product
|
|
updates, you may want to subscribe to our
|
|
[mailing list](mailto:sandboxed-api-users@googlegroups.com) or sign up with this
|
|
[link](https://groups.google.com/forum/#!forum/sandboxed-api-users).
|