mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
441201884a
PiperOrigin-RevId: 290250533 Change-Id: Ic34b253446463cf971a055b70a242df93a598ee3
148 lines
5.3 KiB
C++
148 lines
5.3 KiB
C++
// 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
|
|
//
|
|
// http://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.
|
|
|
|
// A demo sandbox for the static_bin binary.
|
|
// Use: static_sandbox --logtostderr
|
|
|
|
#include <fcntl.h>
|
|
#include <sys/resource.h>
|
|
#include <syscall.h>
|
|
#include <unistd.h>
|
|
|
|
#include <csignal>
|
|
#include <cstdlib>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include <glog/logging.h>
|
|
#include "sandboxed_api/util/flag.h"
|
|
#include "absl/memory/memory.h"
|
|
#include "sandboxed_api/sandbox2/executor.h"
|
|
#include "sandboxed_api/sandbox2/ipc.h"
|
|
#include "sandboxed_api/sandbox2/limits.h"
|
|
#include "sandboxed_api/sandbox2/policy.h"
|
|
#include "sandboxed_api/sandbox2/policybuilder.h"
|
|
#include "sandboxed_api/sandbox2/result.h"
|
|
#include "sandboxed_api/sandbox2/sandbox2.h"
|
|
#include "sandboxed_api/sandbox2/util/bpf_helper.h"
|
|
#include "sandboxed_api/sandbox2/util/runfiles.h"
|
|
|
|
std::unique_ptr<sandbox2::Policy> GetPolicy() {
|
|
return sandbox2::PolicyBuilder()
|
|
// The most frequent syscall should go first in this sequence (to make it
|
|
// fast).
|
|
// Allow read() with all arguments.
|
|
.AllowRead()
|
|
// Allow a preset of syscalls that are known to be used during startup
|
|
// of static binaries.
|
|
.AllowStaticStartup()
|
|
// Allow the getpid() syscall.
|
|
.AllowSyscall(__NR_getpid)
|
|
|
|
// On Debian, even static binaries check existence of /etc/ld.so.nohwcap.
|
|
.BlockSyscallWithErrno(__NR_access, ENOENT)
|
|
|
|
// Examples for AddPolicyOnSyscall:
|
|
.AddPolicyOnSyscall(__NR_write,
|
|
{
|
|
// Load the first argument of write() (= fd)
|
|
ARG_32(0),
|
|
// Allow write(fd=STDOUT)
|
|
JEQ32(1, ALLOW),
|
|
// Allow write(fd=STDERR)
|
|
JEQ32(2, ALLOW),
|
|
// Fall-through for every other case.
|
|
// The default action will be KILL if it is not
|
|
// explicitly ALLOWed by a following rule.
|
|
})
|
|
// write() calls with fd not in (1, 2) will continue evaluating the
|
|
// policy. This means that other rules might still allow them.
|
|
|
|
// Allow exit() only with an exit_code of 0.
|
|
// Explicitly jumping to KILL, thus the following rules can not
|
|
// override this rule.
|
|
.AddPolicyOnSyscall(
|
|
__NR_exit_group,
|
|
{// Load first argument (exit_code).
|
|
ARG_32(0),
|
|
// Deny every argument except 0.
|
|
JNE32(0, KILL),
|
|
// Allow all exit() calls that were not previously forbidden
|
|
// = exit_code == 0.
|
|
ALLOW})
|
|
|
|
// = This won't have any effect as we handled every case of this syscall
|
|
// in the previous rule.
|
|
.AllowSyscall(__NR_exit_group)
|
|
|
|
#ifdef __NR_open
|
|
.BlockSyscallWithErrno(__NR_open, ENOENT)
|
|
#else
|
|
.BlockSyscallWithErrno(__NR_openat, ENOENT)
|
|
#endif
|
|
.BuildOrDie();
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
// This test is incompatible with sanitizers.
|
|
// The `SKIP_SANITIZERS_AND_COVERAGE` macro won't work for us here since we
|
|
// need to return something.
|
|
#if defined(ADDRESS_SANITIZER) || defined(MEMORY_SANITIZER) || \
|
|
defined(THREAD_SANITIZER)
|
|
return EXIT_SUCCESS;
|
|
#endif
|
|
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
|
google::InitGoogleLogging(argv[0]);
|
|
|
|
const std::string path = sandbox2::GetInternalDataDependencyFilePath(
|
|
"sandbox2/examples/static/static_bin");
|
|
std::vector<std::string> args = {path};
|
|
auto executor = absl::make_unique<sandbox2::Executor>(path, args);
|
|
|
|
executor
|
|
// Sandboxing is enabled by the sandbox itself. The sandboxed binary is
|
|
// not aware that it'll be sandboxed.
|
|
// Note: 'true' is the default setting for this class.
|
|
->set_enable_sandbox_before_exec(true)
|
|
.limits()
|
|
// Remove restrictions on the size of address-space of sandboxed
|
|
// processes.
|
|
->set_rlimit_as(RLIM64_INFINITY)
|
|
// Kill sandboxed processes with a signal (SIGXFSZ) if it writes more than
|
|
// these many bytes to the file-system.
|
|
.set_rlimit_fsize(1024 * 1024)
|
|
// The CPU time limit.
|
|
.set_rlimit_cpu(60)
|
|
.set_walltime_limit(absl::Seconds(30));
|
|
|
|
int proc_version_fd = open("/proc/version", O_RDONLY);
|
|
PCHECK(proc_version_fd != -1);
|
|
|
|
// Map this fils to sandboxee's stdin.
|
|
executor->ipc()->MapFd(proc_version_fd, STDIN_FILENO);
|
|
|
|
auto policy = GetPolicy();
|
|
sandbox2::Sandbox2 s2(std::move(executor), std::move(policy));
|
|
|
|
// Let the sandboxee run (synchronously).
|
|
auto result = s2.Run();
|
|
|
|
LOG(INFO) << "Final execution status: " << result.ToString();
|
|
|
|
return result.final_status() == sandbox2::Result::OK ? EXIT_SUCCESS
|
|
: EXIT_FAILURE;
|
|
}
|