2020-09-24 04:21:33 +08:00
|
|
|
// Copyright 2020 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.
|
|
|
|
|
|
|
|
#include <linux/futex.h>
|
|
|
|
#include <syscall.h>
|
2020-09-24 05:18:17 +08:00
|
|
|
|
2020-10-01 02:45:48 +08:00
|
|
|
#include <optional>
|
2020-09-24 04:21:33 +08:00
|
|
|
#include <utility>
|
|
|
|
|
2020-10-11 16:20:40 +08:00
|
|
|
#include "tiff_sapi.sapi.h" // NOLINT(build/include)
|
2020-09-24 04:21:33 +08:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class TiffSapiSandbox : public TiffSandbox {
|
|
|
|
public:
|
2020-10-01 02:45:48 +08:00
|
|
|
TiffSapiSandbox(std::optional<std::string> file = std::nullopt,
|
|
|
|
std::optional<std::string> dir = std::nullopt)
|
|
|
|
: file_(std::move(file)), dir_(std::move(dir)) {}
|
2020-09-24 04:21:33 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<sandbox2::Policy> ModifyPolicy(
|
|
|
|
sandbox2::PolicyBuilder*) override {
|
|
|
|
auto builder = std::make_unique<sandbox2::PolicyBuilder>();
|
|
|
|
(*builder)
|
|
|
|
.AllowRead()
|
|
|
|
.AllowStaticStartup()
|
|
|
|
.AllowWrite()
|
|
|
|
.AllowOpen()
|
|
|
|
.AllowExit()
|
|
|
|
.AllowStat()
|
2020-09-26 05:21:07 +08:00
|
|
|
.AllowMmap()
|
2020-09-24 04:21:33 +08:00
|
|
|
.AllowSystemMalloc()
|
|
|
|
.AllowSyscalls({
|
|
|
|
__NR_futex,
|
|
|
|
__NR_close,
|
|
|
|
__NR_lseek,
|
|
|
|
__NR_gettid,
|
|
|
|
__NR_sysinfo,
|
|
|
|
__NR_munmap,
|
|
|
|
});
|
|
|
|
|
2020-10-01 02:45:48 +08:00
|
|
|
if (file_) {
|
|
|
|
builder->AddFile(file_.value(), /*is_ro=*/false);
|
2020-09-24 04:21:33 +08:00
|
|
|
}
|
|
|
|
|
2020-10-01 02:45:48 +08:00
|
|
|
if (dir_) {
|
|
|
|
builder->AddDirectory(dir_.value(), /*is_ro=*/false);
|
2020-09-24 04:21:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return builder.get()->BuildOrDie();
|
|
|
|
}
|
|
|
|
|
2020-10-01 02:45:48 +08:00
|
|
|
std::optional<std::string> file_;
|
|
|
|
std::optional<std::string> dir_;
|
2020-09-24 04:21:33 +08:00
|
|
|
};
|
|
|
|
|
2020-09-24 05:18:17 +08:00
|
|
|
} // namespace
|