2020-01-17 21:05:03 +08:00
|
|
|
// Copyright 2019 Google LLC
|
2019-03-19 00:21:48 +08:00
|
|
|
//
|
|
|
|
// 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/audit.h>
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
|
2020-04-02 22:42:17 +08:00
|
|
|
#include <cstdlib>
|
|
|
|
|
2019-03-19 00:21:48 +08:00
|
|
|
#include <glog/logging.h>
|
|
|
|
#include "absl/base/macros.h"
|
2019-06-05 15:25:50 +08:00
|
|
|
#include "sandboxed_api/util/flag.h"
|
2020-09-02 23:46:48 +08:00
|
|
|
#include "absl/status/statusor.h"
|
2019-03-19 00:21:48 +08:00
|
|
|
#include "sandboxed_api/examples/zlib/zlib-sapi.sapi.h"
|
|
|
|
#include "sandboxed_api/examples/zlib/zlib-sapi_embed.h"
|
|
|
|
#include "sandboxed_api/vars.h"
|
|
|
|
|
|
|
|
// Need to define these manually, as zlib.h cannot be directly included. The
|
|
|
|
// interface generator makes all functions available that were requested in
|
|
|
|
// sapi_library(), but does not know which macro constants are needed by the
|
|
|
|
// sandboxee.
|
|
|
|
#define Z_NO_FLUSH 0
|
|
|
|
#define Z_FINISH 4
|
|
|
|
#define Z_OK 0
|
|
|
|
#define Z_DEFAULT_COMPRESSION (-1)
|
|
|
|
#define Z_ERRNO (-1)
|
|
|
|
#define Z_STREAM_ERROR (-2)
|
|
|
|
#define Z_STREAM_END 1
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2019-06-05 22:39:11 +08:00
|
|
|
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
2019-03-19 00:21:48 +08:00
|
|
|
google::InitGoogleLogging(argv[0]);
|
|
|
|
|
|
|
|
sapi::Sandbox sandbox(sapi::zlib::zlib_sapi_embed_create());
|
|
|
|
sapi::zlib::ZlibApi api(&sandbox);
|
2020-04-02 22:42:17 +08:00
|
|
|
if (auto status = sandbox.Init(); !status.ok()) {
|
|
|
|
LOG(FATAL) << "Couldn't initialize Sandboxed API for zlib: "
|
|
|
|
<< status.message();
|
2019-03-19 00:21:48 +08:00
|
|
|
}
|
|
|
|
|
2020-09-02 23:46:48 +08:00
|
|
|
absl::StatusOr<int> ret;
|
2020-04-02 22:42:17 +08:00
|
|
|
int flush;
|
2019-03-19 00:21:48 +08:00
|
|
|
unsigned have;
|
|
|
|
sapi::v::Struct<sapi::zlib::z_stream> strm;
|
|
|
|
|
|
|
|
constexpr int kChunk = 16384;
|
|
|
|
unsigned char in_[kChunk] = {0};
|
|
|
|
unsigned char out_[kChunk] = {0};
|
|
|
|
sapi::v::Array<unsigned char> input(in_, kChunk);
|
|
|
|
sapi::v::Array<unsigned char> output(out_, kChunk);
|
|
|
|
if (!sandbox.Allocate(&input).ok() || !sandbox.Allocate(&output).ok()) {
|
|
|
|
LOG(FATAL) << "Allocate memory failed";
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr char kZlibVersion[] = "1.2.11";
|
|
|
|
sapi::v::Array<const char> version(kZlibVersion,
|
|
|
|
ABSL_ARRAYSIZE(kZlibVersion));
|
|
|
|
|
|
|
|
// Allocate deflate state.
|
|
|
|
*strm.mutable_data() = sapi::zlib::z_stream{};
|
|
|
|
|
2020-04-02 22:42:17 +08:00
|
|
|
if (ret = api.deflateInit_(strm.PtrBoth(), Z_DEFAULT_COMPRESSION,
|
|
|
|
version.PtrBefore(), sizeof(sapi::zlib::z_stream));
|
|
|
|
*ret != Z_OK) {
|
|
|
|
return *ret;
|
2019-03-19 00:21:48 +08:00
|
|
|
}
|
|
|
|
|
2020-07-13 21:12:09 +08:00
|
|
|
LOG(INFO) << "Starting compression";
|
2019-03-19 00:21:48 +08:00
|
|
|
|
|
|
|
// Compress until end of file.
|
|
|
|
do {
|
|
|
|
strm.mutable_data()->avail_in = fread(input.GetLocal(), 1, kChunk, stdin);
|
|
|
|
if (!sandbox.TransferToSandboxee(&input).ok()) {
|
|
|
|
LOG(FATAL) << "TransferToSandboxee failed";
|
|
|
|
}
|
|
|
|
if (ferror(stdin)) {
|
|
|
|
LOG(INFO) << "Error reading from stdin";
|
2020-04-02 22:42:17 +08:00
|
|
|
api.deflateEnd(strm.PtrBoth()).IgnoreError();
|
2019-03-19 00:21:48 +08:00
|
|
|
return Z_ERRNO;
|
|
|
|
}
|
|
|
|
flush = feof(stdin) ? Z_FINISH : Z_NO_FLUSH;
|
|
|
|
strm.mutable_data()->next_in =
|
|
|
|
reinterpret_cast<unsigned char*>(input.GetRemote());
|
|
|
|
|
|
|
|
// Run deflate() on input until output buffer not full, finish compression
|
|
|
|
// if all of source has been read in.
|
|
|
|
do {
|
|
|
|
strm.mutable_data()->avail_out = kChunk;
|
|
|
|
strm.mutable_data()->next_out =
|
|
|
|
reinterpret_cast<unsigned char*>(output.GetRemote());
|
|
|
|
|
2020-04-02 22:42:17 +08:00
|
|
|
ret = api.deflate(strm.PtrBoth(), flush); // no bad return value.
|
|
|
|
assert(*ret != Z_STREAM_ERROR); // state not clobbered.
|
2019-03-19 00:21:48 +08:00
|
|
|
have = kChunk - strm.data().avail_out;
|
|
|
|
|
|
|
|
if (!sandbox.TransferFromSandboxee(&output).ok()) {
|
|
|
|
LOG(FATAL) << "TransferFromSandboxee failed";
|
|
|
|
}
|
|
|
|
if (fwrite(output.GetLocal(), 1, have, stdout) != have ||
|
|
|
|
ferror(stdout)) {
|
|
|
|
// Not really necessary as strm did not change from last transfer.
|
2020-04-02 22:42:17 +08:00
|
|
|
api.deflateEnd(strm.PtrBoth()).IgnoreError();
|
2019-03-19 00:21:48 +08:00
|
|
|
return Z_ERRNO;
|
|
|
|
}
|
|
|
|
} while (strm.data().avail_out == 0);
|
|
|
|
assert(strm.data().avail_in == 0); // all input will be used.
|
|
|
|
|
|
|
|
// done when last data in file processed.
|
|
|
|
} while (flush != Z_FINISH);
|
2020-04-02 22:42:17 +08:00
|
|
|
assert(*ret == Z_STREAM_END); // stream will be complete.
|
2019-03-19 00:21:48 +08:00
|
|
|
|
|
|
|
// clean up and return.
|
2020-04-02 22:42:17 +08:00
|
|
|
api.deflateEnd(strm.PtrBoth()).IgnoreError();
|
2019-03-19 00:21:48 +08:00
|
|
|
|
2020-04-02 22:42:17 +08:00
|
|
|
return EXIT_SUCCESS;
|
2019-03-19 00:21:48 +08:00
|
|
|
}
|