mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
bd22a18f87
PiperOrigin-RevId: 290586117 Change-Id: I637ca27121ef541d48a717903496cab256214a0a
55 lines
1.6 KiB
Protocol Buffer
55 lines
1.6 KiB
Protocol Buffer
// 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 proto for the sandbox2::Forkserver class
|
|
|
|
syntax = "proto2";
|
|
|
|
package sandbox2;
|
|
|
|
import "sandboxed_api/sandbox2/mounttree.proto";
|
|
|
|
enum Mode {
|
|
// Fork, execve and sandbox
|
|
FORKSERVER_FORK_EXECVE_SANDBOX = 1;
|
|
// Fork and execve, but no sandboxing
|
|
FORKSERVER_FORK_EXECVE = 2;
|
|
// Just fork
|
|
FORKSERVER_FORK = 3;
|
|
// Special internal case: join a user namespace prior to unwinding
|
|
FORKSERVER_FORK_JOIN_SANDBOX_UNWIND = 4;
|
|
}
|
|
|
|
message ForkRequest {
|
|
// List of arguments, starting with argv[0]
|
|
repeated bytes args = 1;
|
|
// List of environment variables which will be passed to the child
|
|
repeated bytes envs = 2;
|
|
|
|
// How to interpret the request
|
|
required Mode mode = 3;
|
|
|
|
// Clone flags for the new process
|
|
optional int32 clone_flags = 4 [default = 0];
|
|
|
|
// Capabilities to keep when starting the sandboxee
|
|
repeated int32 capabilities = 5;
|
|
|
|
// The mount tree used for namespace initialization
|
|
optional MountTree mount_tree = 6;
|
|
|
|
// Hostname in the network namespace
|
|
optional bytes hostname = 7;
|
|
}
|