mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
e09c2bc215
PiperOrigin-RevId: 513815467 Change-Id: I31d0df2c69b20eb126aaa8dde7f45fa7c0e1e6a8
239 lines
5.8 KiB
Python
239 lines
5.8 KiB
Python
# Copyright 2019 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Description: test cases for sandbox2 unit tests.
|
|
#
|
|
# Some of the following cc_binary options avoid dynamic linking which uses a
|
|
# lot of syscalls (open, mmap, etc.):
|
|
# linkstatic = True Default for cc_binary
|
|
# features = ["fully_static_link"] Adds -static
|
|
#
|
|
# Note that linking fully static with an unmodified glibc is not generally
|
|
# considered safe, due to glibc relying heavily on loading shared objects at
|
|
# runtime.
|
|
# The rule of thumb when it is safe to do so is when the program either only
|
|
# uses plain syscalls (bypassing any libc altogether) or if it does not use
|
|
# any networking and none of the functionality from cstdio/stdio.h (due to
|
|
# auto-loading of locale-specific shared objecs).
|
|
|
|
load("//sandboxed_api/bazel:build_defs.bzl", "sapi_platform_copts")
|
|
|
|
package(default_visibility = [
|
|
"//sandboxed_api/sandbox2:__subpackages__",
|
|
])
|
|
|
|
licenses(["notice"])
|
|
|
|
cc_binary(
|
|
name = "abort",
|
|
testonly = True,
|
|
srcs = ["abort.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
deps = ["//sandboxed_api/util:raw_logging"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "add_policy_on_syscalls",
|
|
testonly = True,
|
|
srcs = ["add_policy_on_syscalls.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "buffer",
|
|
testonly = True,
|
|
srcs = ["buffer.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
deps = [
|
|
"//sandboxed_api/sandbox2:buffer",
|
|
"//sandboxed_api/sandbox2:comms",
|
|
"@com_google_absl//absl/strings:str_format",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "ipc",
|
|
testonly = True,
|
|
srcs = ["ipc.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
deps = [
|
|
"//sandboxed_api/sandbox2:client",
|
|
"//sandboxed_api/sandbox2:comms",
|
|
"//sandboxed_api/util:raw_logging",
|
|
"@com_google_absl//absl/strings",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "malloc_system",
|
|
testonly = True,
|
|
srcs = ["malloc.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "minimal_dynamic",
|
|
testonly = True,
|
|
srcs = ["minimal.cc"],
|
|
copts = sapi_platform_copts(),
|
|
)
|
|
|
|
cc_binary(
|
|
name = "minimal",
|
|
testonly = True,
|
|
srcs = ["minimal.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "personality",
|
|
testonly = True,
|
|
srcs = ["personality.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "pidcomms",
|
|
testonly = True,
|
|
srcs = ["pidcomms.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
deps = [
|
|
"//sandboxed_api/sandbox2:client",
|
|
"//sandboxed_api/sandbox2:comms",
|
|
"//sandboxed_api/util:raw_logging",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "policy",
|
|
testonly = True,
|
|
srcs = ["policy.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
deps = [
|
|
"//sandboxed_api:config",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "sanitizer",
|
|
testonly = True,
|
|
srcs = ["sanitizer.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "close_fds",
|
|
testonly = True,
|
|
srcs = ["close_fds.cc"],
|
|
copts = sapi_platform_copts(),
|
|
deps = [
|
|
"//sandboxed_api/sandbox2:sanitizer",
|
|
"@com_google_absl//absl/container:flat_hash_set",
|
|
"@com_google_absl//absl/log:check",
|
|
"@com_google_absl//absl/strings",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "sleep",
|
|
testonly = True,
|
|
srcs = ["sleep.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "symbolize_lib",
|
|
testonly = True,
|
|
srcs = ["symbolize_lib.cc"],
|
|
hdrs = ["symbolize_lib.h"],
|
|
copts = sapi_platform_copts([
|
|
"-fno-omit-frame-pointer",
|
|
"-fno-unwind-tables",
|
|
"-fno-asynchronous-unwind-tables",
|
|
]),
|
|
features = ["fully_static_link"],
|
|
deps = [
|
|
"@com_google_absl//absl/base:core_headers",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "symbolize",
|
|
testonly = True,
|
|
srcs = ["symbolize.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
deps = [
|
|
":symbolize_lib",
|
|
"//sandboxed_api/util:raw_logging",
|
|
"@com_google_absl//absl/base:core_headers",
|
|
"@com_google_absl//absl/strings",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "tsync",
|
|
testonly = True,
|
|
srcs = ["tsync.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
deps = [
|
|
"//sandboxed_api/sandbox2:client",
|
|
"//sandboxed_api/sandbox2:comms",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "starve",
|
|
testonly = True,
|
|
srcs = ["starve.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "hostname",
|
|
testonly = True,
|
|
srcs = ["hostname.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "limits",
|
|
testonly = True,
|
|
srcs = ["limits.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "namespace",
|
|
testonly = True,
|
|
srcs = ["namespace.cc"],
|
|
copts = sapi_platform_copts(),
|
|
features = ["fully_static_link"],
|
|
)
|