Modified sandbox to limit ioctl. Use .value() instead of manually checking .ok().

This commit is contained in:
Andrei Medar 2020-10-02 15:52:29 +00:00
parent 7e1d9179e5
commit 589776b6f9
6 changed files with 105 additions and 153 deletions

View File

@ -1,3 +0,0 @@
BasedOnStyle: Google
DerivePointerAlignment: false
PointerAlignment: Left

View File

@ -1,4 +1,3 @@
build/ build/
.clang-format
.cache .cache
.vscode .vscode

View File

@ -13,8 +13,7 @@ After this, run the following commands: -->
`cmake --build .` `cmake --build .`
The example binary file can be found at **build/examples/sapi_minitar** and the unit tests at **build/test/sapi_minitar_test**.
The example binary file can be found at `build/examples/sapi_minitar` and the unit tests at `build/test/sapi_minitar_test`.
## Patches ## Patches
@ -28,7 +27,6 @@ The code is found in the **examples** directory and is structured as follows:
- **sapi_minitar.h** and **sapi_minitar.cc** - The two main functions (***create*** and ***extract***) and also other helper functions. - **sapi_minitar.h** and **sapi_minitar.cc** - The two main functions (***create*** and ***extract***) and also other helper functions.
- **sandbox.h** - Custom security policies, depending on the whether the user creates or extracts an archive. - **sandbox.h** - Custom security policies, depending on the whether the user creates or extracts an archive.
On top of that, unit tests can be found in the **test/minitar_test.cc** file. On top of that, unit tests can be found in the **test/minitar_test.cc** file.
## Usage ## Usage

View File

@ -16,8 +16,10 @@
#define SAPI_LIBARCHIVE_EXAMPLES_SANDBOX_H #define SAPI_LIBARCHIVE_EXAMPLES_SANDBOX_H
#include <asm/unistd_64.h> #include <asm/unistd_64.h>
#include <linux/fs.h>
#include "libarchive_sapi.sapi.h" #include "libarchive_sapi.sapi.h"
#include "sandboxed_api/sandbox2/util/bpf_helper.h"
#include "sandboxed_api/sandbox2/util/fileops.h" #include "sandboxed_api/sandbox2/util/fileops.h"
// When creating an archive, we need read permissions on each of the // When creating an archive, we need read permissions on each of the
@ -56,11 +58,13 @@ class SapiLibarchiveSandboxCreate : public LibarchiveSandbox {
__NR_fstatfs, __NR_fstatfs,
__NR_socket, __NR_socket,
__NR_connect, __NR_connect,
__NR_ioctl,
__NR_flistxattr, __NR_flistxattr,
__NR_recvmsg, __NR_recvmsg,
__NR_getdents64, __NR_getdents64,
}); })
// Allow ioctl only for FS_IOC_GETFLAGS.
.AddPolicyOnSyscall(__NR_ioctl,
{ARG(1), JEQ(FS_IOC_GETFLAGS, ALLOW)});
// We check whether the entry is a file or a directory. // We check whether the entry is a file or a directory.
for (const auto& i : files_) { for (const auto& i : files_) {

View File

@ -13,6 +13,7 @@
// limitations under the License. // limitations under the License.
#include "sapi_minitar.h" #include "sapi_minitar.h"
#include "sandboxed_api/sandbox2/util/path.h" #include "sandboxed_api/sandbox2/util/path.h"
void create(const char* initial_filename, int compress, const char** argv, void create(const char* initial_filename, int compress, const char** argv,
@ -36,7 +37,6 @@ void create(const char* initial_filename, int compress, const char** argv,
std::transform(relative_paths.begin(), relative_paths.end(), std::transform(relative_paths.begin(), relative_paths.end(),
relative_paths.begin(), sandbox2::file::CleanPath); relative_paths.begin(), sandbox2::file::CleanPath);
// At this point, we have the relative and absolute paths (cleaned) saved // At this point, we have the relative and absolute paths (cleaned) saved
// in vectors. // in vectors.
@ -45,47 +45,36 @@ void create(const char* initial_filename, int compress, const char** argv,
CHECK(sandbox.Init().ok()) << "Error during sandbox initialization"; CHECK(sandbox.Init().ok()) << "Error during sandbox initialization";
LibarchiveApi api(&sandbox); LibarchiveApi api(&sandbox);
absl::StatusOr<archive*> ret = api.archive_write_new(); archive* ret = api.archive_write_new().value();
CHECK(ret.ok()) << "write_new call failed"; CHECK(ret != NULL) << "Failed to create write archive";
CHECK(ret.value() != NULL) << "Failed to create write archive";
// Treat the pointer as remote. There is no need to copy the data // Treat the pointer as remote. There is no need to copy the data
// to the client process. // to the client process.
sapi::v::RemotePtr a(ret.value()); sapi::v::RemotePtr a(ret);
absl::StatusOr<int> ret2; int ret2;
switch (compress) { switch (compress) {
case 'j': case 'j':
case 'y': case 'y':
ret2 = api.archive_write_add_filter_bzip2(&a); CHECK(api.archive_write_add_filter_bzip2(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_add_filter_bzip2 call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_add_filter_bzip2 call"; << "Unexpected result from write_add_filter_bzip2 call";
break; break;
case 'Z': case 'Z':
ret2 = api.archive_write_add_filter_compress(&a); CHECK(api.archive_write_add_filter_compress(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_add_filter_compress call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_add_filter_compress call"; << "Unexpected result from write_add_filter_compress call";
break; break;
case 'z': case 'z':
ret2 = api.archive_write_add_filter_gzip(&a); CHECK(api.archive_write_add_filter_gzip(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_add_filter_gzip call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_add_filter_gzip call"; << "Unexpected result from write_add_filter_gzip call";
break; break;
default: default:
ret2 = api.archive_write_add_filter_none(&a); CHECK(api.archive_write_add_filter_none(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_add_filter_none call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_add_filter_none call"; << "Unexpected result from write_add_filter_none call";
break; break;
} }
ret2 = api.archive_write_set_format_ustar(&a); CHECK(api.archive_write_set_format_ustar(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_set_format_ustar call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_set_format_ustar call"; << "Unexpected result from write_set_format_ustar call";
const char* filename_ptr = filename.data(); const char* filename_ptr = filename.data();
@ -93,56 +82,51 @@ void create(const char* initial_filename, int compress, const char** argv,
filename_ptr = NULL; filename_ptr = NULL;
} }
ret2 = api.archive_write_open_filename( CHECK(api.archive_write_open_filename(
&a, sapi::v::ConstCStr(filename_ptr).PtrBefore()); &a, sapi::v::ConstCStr(filename_ptr).PtrBefore())
CHECK(ret2.ok()) << "write_open_filename call failed"; .value() == ARCHIVE_OK)
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_open_filename call"; << "Unexpected result from write_open_filename call";
int file_idx = 0; int file_idx = 0;
// We can directly use the vectors defined before. // We can directly use the vectors defined before.
for (int file_idx = 0; file_idx < absolute_paths.size(); ++file_idx) { for (int file_idx = 0; file_idx < absolute_paths.size(); ++file_idx) {
ret = api.archive_read_disk_new(); ret = api.archive_read_disk_new().value();
CHECK(ret.ok()) << "read_disk_new call failed"; CHECK(ret != NULL) << "Failed to create read_disk archive";
CHECK(ret.value() != NULL) << "Failed to create read_disk archive";
sapi::v::RemotePtr disk(ret.value()); sapi::v::RemotePtr disk(ret);
ret2 = api.archive_read_disk_set_standard_lookup(&disk); CHECK(api.archive_read_disk_set_standard_lookup(&disk).value() ==
CHECK(ret2.ok()) << "read_disk_set_standard_lookup call failed"; ARCHIVE_OK)
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from read_disk_set_standard_lookup call"; << "Unexpected result from read_disk_set_standard_lookup call";
// We use the absolute path first. // We use the absolute path first.
ret2 = api.archive_read_disk_open( CHECK(
&disk, api.archive_read_disk_open(
sapi::v::ConstCStr(absolute_paths[file_idx].c_str()).PtrBefore()); &disk,
CHECK(ret2.ok()) << "read_disk_open call failed"; sapi::v::ConstCStr(absolute_paths[file_idx].c_str()).PtrBefore())
CHECK(ret2.value() == ARCHIVE_OK) .value() == ARCHIVE_OK)
<< CheckStatusAndGetString(api.archive_error_string(&disk), sandbox); << CheckStatusAndGetString(api.archive_error_string(&disk), sandbox);
for (;;) { for (;;) {
absl::StatusOr<archive_entry*> ret3; archive_entry* ret3;
ret3 = api.archive_entry_new(); ret3 = api.archive_entry_new().value();
CHECK(ret3.ok()) << "entry_new call failed"; CHECK(ret3 != NULL) << "Failed to create archive_entry";
CHECK(ret3.value() != NULL) << "Failed to create archive_entry";
sapi::v::RemotePtr entry(ret3.value()); sapi::v::RemotePtr entry(ret3);
ret2 = api.archive_read_next_header2(&disk, &entry); ret2 = api.archive_read_next_header2(&disk, &entry).value();
CHECK(ret2.ok()) << "read_next_header2 call failed";
if (ret2.value() == ARCHIVE_EOF) { if (ret2 == ARCHIVE_EOF) {
break; break;
} }
CHECK(ret2.value() == ARCHIVE_OK) CHECK(ret2 == ARCHIVE_OK)
<< CheckStatusAndGetString(api.archive_error_string(&disk), sandbox); << CheckStatusAndGetString(api.archive_error_string(&disk), sandbox);
ret2 = api.archive_read_disk_descend(&disk); CHECK(api.archive_read_disk_descend(&disk).ok())
CHECK(ret2.ok()) << "read_disk_descend call failed"; << "read_disk_descend call failed";
// After using the absolute path before, we now need to add the pathname // After using the absolute path before, we now need to add the pathname
// to the archive entry. This would help store the files by their relative // to the archive entry. This would help store the files by their relative
@ -185,21 +169,20 @@ void create(const char* initial_filename, int compress, const char** argv,
<< std::endl; << std::endl;
} }
ret2 = api.archive_write_header(&a, &entry); ret2 = api.archive_write_header(&a, &entry).value();
CHECK(ret2.ok()) << "write_header call failed";
if (ret2.value() < ARCHIVE_OK) { if (ret2 < ARCHIVE_OK) {
std::cout << CheckStatusAndGetString(api.archive_error_string(&a), std::cout << CheckStatusAndGetString(api.archive_error_string(&a),
sandbox) sandbox)
<< std::endl; << std::endl;
} }
CHECK(ret2.value() != ARCHIVE_FATAL) CHECK(ret2 != ARCHIVE_FATAL)
<< "Unexpected result from write_header call"; << "Unexpected result from write_header call";
// In the following section, the calls (read, archive_write_data) are done // In the following section, the calls (read, archive_write_data) are done
// on the sandboxed process since we do not need to transfer the data in // on the sandboxed process since we do not need to transfer the data in
// the client process. // the client process.
if (ret2.value() > ARCHIVE_FAILED) { if (ret2 > ARCHIVE_FAILED) {
int fd = open(CheckStatusAndGetString( int fd = open(CheckStatusAndGetString(
api.archive_entry_sourcepath(&entry), sandbox) api.archive_entry_sourcepath(&entry), sandbox)
.c_str(), .c_str(),
@ -240,26 +223,21 @@ void create(const char* initial_filename, int compress, const char** argv,
CHECK(api.archive_entry_free(&entry).ok()) << "entry_free call failed"; CHECK(api.archive_entry_free(&entry).ok()) << "entry_free call failed";
} }
ret2 = api.archive_read_close(&disk); CHECK(api.archive_read_close(&disk).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_close call failed"; << "Unexpected result from read_close call";
CHECK(!ret2.value()) << "Unexpected result from read_close call";
ret2 = api.archive_read_free(&disk); CHECK(api.archive_read_free(&disk).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_free call failed"; << "Unexpected result from read_free call";
CHECK(!ret2.value()) << "Unexpected result from read_free call";
} }
ret2 = api.archive_write_close(&a); CHECK(api.archive_write_close(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_close call failed"; << "Unexpected result from write_close call";
CHECK(!ret2.value()) << "Unexpected result from write_close call";
ret2 = api.archive_write_free(&a); CHECK(api.archive_write_free(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_free call failed"; << "Unexpected result from write_free call";
CHECK(!ret2.value()) << "Unexpected result from write_free call";
} }
void extract(const char* filename, int do_extract, int flags, void extract(const char* filename, int do_extract, int flags, bool verbose) {
bool verbose) {
std::string tmp_dir; std::string tmp_dir;
if (do_extract) { if (do_extract) {
tmp_dir = CreateTempDirAtCWD(); tmp_dir = CreateTempDirAtCWD();
@ -268,10 +246,11 @@ void extract(const char* filename, int do_extract, int flags,
// We can use a struct like this in order to delete the temporary // We can use a struct like this in order to delete the temporary
// directory that was created earlier whenever the function ends. // directory that was created earlier whenever the function ends.
struct ExtractTempDirectoryCleanup { struct ExtractTempDirectoryCleanup {
ExtractTempDirectoryCleanup(const std::string& dir): dir_(dir) {} ExtractTempDirectoryCleanup(const std::string& dir) : dir_(dir) {}
~ExtractTempDirectoryCleanup() { ~ExtractTempDirectoryCleanup() {
sandbox2::file_util::fileops::DeleteRecursively(dir_); sandbox2::file_util::fileops::DeleteRecursively(dir_);
} }
private: private:
std::string dir_; std::string dir_;
}; };
@ -290,52 +269,36 @@ void extract(const char* filename, int do_extract, int flags,
CHECK(sandbox.Init().ok()) << "Error during sandbox initialization"; CHECK(sandbox.Init().ok()) << "Error during sandbox initialization";
LibarchiveApi api(&sandbox); LibarchiveApi api(&sandbox);
absl::StatusOr<archive*> ret = api.archive_read_new(); archive* ret = api.archive_read_new().value();
CHECK(ret.ok()) << "archive_read_new call failed"; CHECK(ret != NULL) << "Failed to create read archive";
CHECK(ret.value() != NULL) << "Failed to create read archive";
sapi::v::RemotePtr a(ret.value()); sapi::v::RemotePtr a(ret);
ret = api.archive_write_disk_new(); ret = api.archive_write_disk_new().value();
CHECK(ret.ok()) << "write_disk_new call failed"; CHECK(ret != NULL) << "Failed to create write disk archive";
CHECK(ret.value() != NULL) << "Failed to create write disk archive";
sapi::v::RemotePtr ext(ret.value()); sapi::v::RemotePtr ext(ret);
absl::StatusOr<int> ret2; int ret2;
ret2 = api.archive_write_disk_set_options(&ext, flags); CHECK(api.archive_write_disk_set_options(&ext, flags).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_disk_set_options call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_disk_set_options call"; << "Unexpected result from write_disk_set_options call";
ret2 = api.archive_read_support_filter_bzip2(&a); CHECK(api.archive_read_support_filter_bzip2(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_support_filter_bzip2 call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from read_support_filter_bzip2 call"; << "Unexpected result from read_support_filter_bzip2 call";
ret2 = api.archive_read_support_filter_gzip(&a); CHECK(api.archive_read_support_filter_gzip(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_suppport_filter_gzip call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from read_suppport_filter_gzip call"; << "Unexpected result from read_suppport_filter_gzip call";
ret2 = api.archive_read_support_filter_compress(&a); CHECK(api.archive_read_support_filter_compress(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_support_filter_compress call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from read_support_filter_compress call"; << "Unexpected result from read_support_filter_compress call";
ret2 = api.archive_read_support_format_tar(&a); CHECK(api.archive_read_support_format_tar(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_support_format_tar call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result fromread_support_format_tar call"; << "Unexpected result fromread_support_format_tar call";
ret2 = api.archive_read_support_format_cpio(&a); CHECK(api.archive_read_support_format_cpio(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_support_format_cpio call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from read_support_format_tar call"; << "Unexpected result from read_support_format_tar call";
ret2 = api.archive_write_disk_set_standard_lookup(&ext); CHECK(api.archive_write_disk_set_standard_lookup(&ext).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_disk_set_standard_lookup call failed";
CHECK(ret2.value() != ARCHIVE_FATAL)
<< "Unexpected result from write_disk_set_standard_lookup call"; << "Unexpected result from write_disk_set_standard_lookup call";
const char* filename_ptr = filename_absolute.c_str(); const char* filename_ptr = filename_absolute.c_str();
@ -345,23 +308,21 @@ void extract(const char* filename, int do_extract, int flags,
// The entries are saved with a relative path so they are all created // The entries are saved with a relative path so they are all created
// relative to the current working directory. // relative to the current working directory.
ret2 = api.archive_read_open_filename( CHECK(api.archive_read_open_filename(
&a, sapi::v::ConstCStr(filename_ptr).PtrBefore(), kBlockSize); &a, sapi::v::ConstCStr(filename_ptr).PtrBefore(), kBlockSize)
CHECK(ret2.ok()) << "read_open_filename call failed"; .value() == ARCHIVE_OK)
CHECK(!ret2.value()) << CheckStatusAndGetString(api.archive_error_string(&a), << CheckStatusAndGetString(api.archive_error_string(&a), sandbox);
sandbox);
for (;;) { for (;;) {
sapi::v::IntBase<struct archive_entry*> entry_ptr_tmp(0); sapi::v::IntBase<archive_entry*> entry_ptr_tmp(0);
ret2 = api.archive_read_next_header(&a, entry_ptr_tmp.PtrAfter()); ret2 = api.archive_read_next_header(&a, entry_ptr_tmp.PtrAfter()).value();
CHECK(ret2.ok()) << "read_next_header call failed";
if (ret2.value() == ARCHIVE_EOF) { if (ret2 == ARCHIVE_EOF) {
break; break;
} }
CHECK(ret2.value() == ARCHIVE_OK) CHECK(ret2 == ARCHIVE_OK)
<< CheckStatusAndGetString(api.archive_error_string(&a), sandbox); << CheckStatusAndGetString(api.archive_error_string(&a), sandbox);
sapi::v::RemotePtr entry(entry_ptr_tmp.GetValue()); sapi::v::RemotePtr entry(entry_ptr_tmp.GetValue());
@ -377,10 +338,9 @@ void extract(const char* filename, int do_extract, int flags,
} }
if (do_extract) { if (do_extract) {
ret2 = api.archive_write_header(&ext, &entry); ret2 = api.archive_write_header(&ext, &entry).value();
CHECK(ret2.ok()) << "write_header call failed";
if (ret2.value() != ARCHIVE_OK) { if (ret2 != ARCHIVE_OK) {
std::cout << CheckStatusAndGetString(api.archive_error_string(&a), std::cout << CheckStatusAndGetString(api.archive_error_string(&a),
sandbox); sandbox);
} else { } else {
@ -389,56 +349,51 @@ void extract(const char* filename, int do_extract, int flags,
} }
} }
ret2 = api.archive_read_close(&a); CHECK(api.archive_read_close(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_close call failed"; << "Unexpected value from read_close call";
CHECK(!ret2.value()) << "Unexpected value from read_close call";
ret2 = api.archive_read_free(&a); CHECK(api.archive_read_free(&a).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "read_free call failed"; << "Unexpected result from read_free call";
CHECK(!ret2.value()) << "Unexpected result from read_free call";
ret2 = api.archive_write_close(&ext); CHECK(api.archive_write_close(&ext).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_close call failed"; << "Unexpected result from write_close call";
CHECK(!ret2.value()) << "Unexpected result from write_close call";
ret2 = api.archive_write_free(&ext); CHECK(api.archive_write_free(&ext).value() == ARCHIVE_OK)
CHECK(ret2.ok()) << "write_free call failed"; << "Unexpected result from write_free call";
CHECK(!ret2.value()) << "Unexpected result from write_free call";
} }
int copy_data(sapi::v::RemotePtr* ar, sapi::v::RemotePtr* aw, int copy_data(sapi::v::RemotePtr* ar, sapi::v::RemotePtr* aw,
LibarchiveApi& api, SapiLibarchiveSandboxExtract& sandbox) { LibarchiveApi& api, SapiLibarchiveSandboxExtract& sandbox) {
absl::StatusOr<int> ret; int ret;
sapi::v::IntBase<struct archive_entry*> buff_ptr_tmp(0); sapi::v::IntBase<archive_entry*> buff_ptr_tmp(0);
sapi::v::ULLong size; sapi::v::ULLong size;
sapi::v::SLLong offset; sapi::v::SLLong offset;
for (;;) { for (;;) {
ret = api.archive_read_data_block(ar, buff_ptr_tmp.PtrAfter(), ret = api.archive_read_data_block(ar, buff_ptr_tmp.PtrAfter(),
size.PtrAfter(), offset.PtrAfter()); size.PtrAfter(), offset.PtrAfter())
CHECK(ret.ok()) << "read_data_block call failed"; .value();
if (ret.value() == ARCHIVE_EOF) { if (ret == ARCHIVE_EOF) {
return ARCHIVE_OK; return ARCHIVE_OK;
} }
if (ret.value() != ARCHIVE_OK) { if (ret != ARCHIVE_OK) {
std::cout << CheckStatusAndGetString(api.archive_error_string(ar), std::cout << CheckStatusAndGetString(api.archive_error_string(ar),
sandbox); sandbox);
return ret.value(); return ret;
} }
sapi::v::RemotePtr buff(buff_ptr_tmp.GetValue()); sapi::v::RemotePtr buff(buff_ptr_tmp.GetValue());
ret = api.archive_write_data_block(aw, &buff, size.GetValue(), ret = api.archive_write_data_block(aw, &buff, size.GetValue(),
offset.GetValue()); offset.GetValue())
.value();
CHECK(ret.ok()) << "write_data_block call failed"; if (ret != ARCHIVE_OK) {
if (ret.value() != ARCHIVE_OK) {
std::cout << CheckStatusAndGetString(api.archive_error_string(ar), std::cout << CheckStatusAndGetString(api.archive_error_string(ar),
sandbox); sandbox);
return ret.value(); return ret;
} }
} }
} }
@ -452,12 +407,9 @@ std::string MakeAbsolutePathAtCWD(const std::string& path) {
std::string CheckStatusAndGetString(const absl::StatusOr<char*>& status, std::string CheckStatusAndGetString(const absl::StatusOr<char*>& status,
LibarchiveSandbox& sandbox) { LibarchiveSandbox& sandbox) {
CHECK(status.ok() && status.value() != NULL) << "Could not get error message"; char* str = status.value();
CHECK(str != NULL) << "Could not get error message";
absl::StatusOr<std::string> ret = return sandbox.GetCString(sapi::v::RemotePtr(str)).value();
sandbox.GetCString(sapi::v::RemotePtr(status.value()));
CHECK(ret.ok()) << "Could not transfer error message";
return ret.value();
} }
std::string CreateTempDirAtCWD() { std::string CreateTempDirAtCWD() {
@ -465,6 +417,8 @@ std::string CreateTempDirAtCWD() {
CHECK(!cwd.empty()) << "Could not get current working directory"; CHECK(!cwd.empty()) << "Could not get current working directory";
cwd.append("/"); cwd.append("/");
// We can manually check for .ok() result in this case because it offers
// important debugging information.
absl::StatusOr<std::string> result = sandbox2::CreateTempDir(cwd); absl::StatusOr<std::string> result = sandbox2::CreateTempDir(cwd);
CHECK(result.ok()) << "Could not create temporary directory at " << cwd; CHECK(result.ok()) << "Could not create temporary directory at " << cwd;
return result.value(); return result.value();

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef SAPI_LIBARCHIVE_MINITAR_H #ifndef SAPI_LIBARCHIVE_EXAMPLES_MINITAR_H
#define SAPI_LIBARCHIVE_MINITAR_H #define SAPI_LIBARCHIVE_EXAMPLES_MINITAR_H
#include <archive.h> #include <archive.h>
#include <archive_entry.h> #include <archive_entry.h>
@ -59,4 +59,4 @@ std::string CheckStatusAndGetString(const absl::StatusOr<char*>& status,
// process changes the current working directory to this temporary directory. // process changes the current working directory to this temporary directory.
std::string CreateTempDirAtCWD(); std::string CreateTempDirAtCWD();
#endif // SAPI_LIBARCHIVE_MINITAR_H #endif // SAPI_LIBARCHIVE_EXAMPLES_MINITAR_H