// 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. #ifndef SANDBOXED_API_SANDBOX_H_ #define SANDBOXED_API_SANDBOX_H_ #include #include #include #include "sandboxed_api/file_toc.h" #include "absl/base/macros.h" #include "sandboxed_api/rpcchannel.h" #include "sandboxed_api/sandbox2/client.h" #include "sandboxed_api/sandbox2/comms.h" #include "sandboxed_api/sandbox2/policy.h" #include "sandboxed_api/sandbox2/policybuilder.h" #include "sandboxed_api/sandbox2/sandbox2.h" #include "sandboxed_api/vars.h" namespace sapi { // The Sandbox class represents the sandboxed library. It provides users with // means to communicate with it (make function calls, transfer memory). class Sandbox { public: Sandbox(const Sandbox&) = delete; Sandbox& operator=(const Sandbox&) = delete; explicit Sandbox(const FileToc* embed_lib_toc) : comms_(nullptr), pid_(0), embed_lib_toc_(embed_lib_toc) {} virtual ~Sandbox(); // Initializes a new sandboxing session. absl::Status Init(); // Is the current sandboxing session alive? bool IsActive() const; // Terminates the current sandboxing session (if it exists). void Terminate(bool attempt_graceful_exit = true); // Restarts the sandbox. absl::Status Restart(bool attempt_graceful_exit) { Terminate(attempt_graceful_exit); return Init(); } // Getters for common fields. sandbox2::Comms* comms() const { return comms_; } RPCChannel* GetRpcChannel() const { return rpc_channel_.get(); } int GetPid() const { return pid_; } // Synchronizes the underlying memory for the pointer before the call. absl::Status SynchronizePtrBefore(v::Callable* ptr); // Synchronizes the underlying memory for pointer after the call. absl::Status SynchronizePtrAfter(v::Callable* ptr) const; // Makes a call to the sandboxee. template absl::Status Call(const std::string& func, v::Callable* ret, Args&&... args) { static_assert(sizeof...(Args) <= FuncCall::kArgsMax, "Too many arguments to sapi::Sandbox::Call()"); return Call(func, ret, {std::forward(args)...}); } absl::Status Call(const std::string& func, v::Callable* ret, std::initializer_list args); // Allocates memory in the sandboxee, automatic_free indicates whether the // memory should be freed on the remote side when the 'var' goes out of scope. absl::Status Allocate(v::Var* var, bool automatic_free = false); // Frees memory in the sandboxee. absl::Status Free(v::Var* var); // Finds address of a symbol in the sandboxee. absl::Status Symbol(const char* symname, void** addr); // Transfers memory (both directions). Status is returned (memory transfer // succeeded/failed). absl::Status TransferToSandboxee(v::Var* var); absl::Status TransferFromSandboxee(v::Var* var); sapi::StatusOr GetCString(const v::RemotePtr& str, uint64_t max_length = 10 * 1024 * 1024); // Waits until the sandbox terminated and returns the result. const sandbox2::Result& AwaitResult(); const sandbox2::Result& result() const { return result_; } absl::Status SetWallTimeLimit(time_t limit) const; protected: // Gets the arguments passed to the sandboxee. virtual void GetArgs(std::vector* args) const { args->push_back("--logtostderr=true"); } private: // Returns the sandbox policy. Subclasses can modify the default policy // builder, or return a completely new policy. virtual std::unique_ptr ModifyPolicy( sandbox2::PolicyBuilder* builder); // Path of the sandboxee: // - relative to runfiles directory: ::sandbox2::GetDataDependencyFilePath() // will be applied to it, // - absolute: will be used as is. virtual std::string GetLibPath() const { return ""; } // Gets the environment varialbes passed to the sandboxee. virtual void GetEnvs(std::vector* envs) const {} // Modifies the Executor object if needed. virtual void ModifyExecutor(sandbox2::Executor* executor) {} // Exits the sandboxee. void Exit() const; // The client to the library forkserver. std::unique_ptr fork_client_; std::unique_ptr forkserver_executor_; // The main sandbox2::Sandbox2 object. std::unique_ptr s2_; // Result of the most recent sandbox execution sandbox2::Result result_; // Comms with the sandboxee. sandbox2::Comms* comms_; // RPCChannel object. std::unique_ptr rpc_channel_; // The main pid of the sandboxee. pid_t pid_; // FileTOC with the embedded library, takes precedence over GetLibPath if // present (not nullptr). const FileToc* embed_lib_toc_; }; } // namespace sapi #endif // SANDBOXED_API_SANDBOX_H_