mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
4eede550e7
- Move canonical errors into status. PiperOrigin-RevId: 295941935 Change-Id: I9408d21b6d34239b0ef3f3cd24975f39f1405505
132 lines
4.1 KiB
C++
132 lines
4.1 KiB
C++
// 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.
|
|
|
|
// Implementation of sapi::v::Var
|
|
|
|
#include "sandboxed_api/var_abstract.h"
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <glog/logging.h>
|
|
#include "sandboxed_api/sandbox2/comms.h"
|
|
#include "absl/strings/str_cat.h"
|
|
#include "sandboxed_api/rpcchannel.h"
|
|
#include "sandboxed_api/util/status_macros.h"
|
|
|
|
namespace sapi::v {
|
|
|
|
Var::~Var() {
|
|
if (free_rpc_channel_ && GetRemote()) {
|
|
this->Free(free_rpc_channel_).IgnoreError();
|
|
}
|
|
}
|
|
|
|
sapi::Status Var::Allocate(RPCChannel* rpc_channel, bool automatic_free) {
|
|
void* addr;
|
|
SAPI_RETURN_IF_ERROR(rpc_channel->Allocate(GetSize(), &addr));
|
|
|
|
if (!addr) {
|
|
LOG(ERROR) << "Allocate: returned nullptr";
|
|
return sapi::UnavailableError("Allocating memory failed");
|
|
}
|
|
|
|
SetRemote(addr);
|
|
if (automatic_free) {
|
|
SetFreeRPCChannel(rpc_channel);
|
|
}
|
|
|
|
return sapi::OkStatus();
|
|
}
|
|
|
|
sapi::Status Var::Free(RPCChannel* rpc_channel) {
|
|
SAPI_RETURN_IF_ERROR(rpc_channel->Free(GetRemote()));
|
|
|
|
SetRemote(nullptr);
|
|
return sapi::OkStatus();
|
|
}
|
|
|
|
sapi::Status Var::TransferToSandboxee(RPCChannel* rpc_channel, pid_t pid) {
|
|
VLOG(3) << "TransferToSandboxee for: " << ToString()
|
|
<< ", local: " << GetLocal() << ", remote: " << GetRemote()
|
|
<< ", size: " << GetSize();
|
|
|
|
if (remote_ == nullptr) {
|
|
LOG(WARNING) << "Object: " << GetType() << " has no remote object set";
|
|
return sapi::FailedPreconditionError(
|
|
absl::StrCat("Object: ", GetType(), " has no remote object set"));
|
|
}
|
|
|
|
struct iovec local = {
|
|
.iov_base = GetLocal(),
|
|
.iov_len = GetSize(),
|
|
};
|
|
struct iovec remote = {
|
|
.iov_base = GetRemote(),
|
|
.iov_len = GetSize(),
|
|
};
|
|
|
|
ssize_t ret = process_vm_writev(pid, &local, 1, &remote, 1, 0);
|
|
if (ret == -1) {
|
|
PLOG(WARNING) << "process_vm_writev(pid: " << pid
|
|
<< " laddr: " << GetLocal() << " raddr: " << GetRemote()
|
|
<< " size: " << GetSize() << ")";
|
|
return sapi::UnavailableError("process_vm_writev failed");
|
|
}
|
|
if (ret != GetSize()) {
|
|
LOG(WARNING) << "process_vm_writev(pid: " << pid << " laddr: " << GetLocal()
|
|
<< " raddr: " << GetRemote() << " size: " << GetSize() << ")"
|
|
<< " transferred " << ret << " bytes";
|
|
return sapi::UnavailableError("process_vm_writev: partial success");
|
|
}
|
|
|
|
return sapi::OkStatus();
|
|
}
|
|
|
|
sapi::Status Var::TransferFromSandboxee(RPCChannel* rpc_channel, pid_t pid) {
|
|
VLOG(3) << "TransferFromSandboxee for: " << ToString()
|
|
<< ", local: " << GetLocal() << ", remote: " << GetRemote()
|
|
<< ", size: " << GetSize();
|
|
|
|
if (local_ == nullptr) {
|
|
return sapi::FailedPreconditionError(
|
|
absl::StrCat("Object: ", GetType(), " has no local storage set"));
|
|
}
|
|
|
|
struct iovec local = {
|
|
.iov_base = GetLocal(),
|
|
.iov_len = GetSize(),
|
|
};
|
|
struct iovec remote = {
|
|
.iov_base = GetRemote(),
|
|
.iov_len = GetSize(),
|
|
};
|
|
|
|
ssize_t ret = process_vm_readv(pid, &local, 1, &remote, 1, 0);
|
|
if (ret == -1) {
|
|
PLOG(WARNING) << "process_vm_readv(pid: " << pid << " laddr: " << GetLocal()
|
|
<< " raddr: " << GetRemote() << " size: " << GetSize() << ")";
|
|
return sapi::UnavailableError("process_vm_readv failed");
|
|
}
|
|
if (ret != GetSize()) {
|
|
LOG(WARNING) << "process_vm_readv(pid: " << pid << " laddr: " << GetLocal()
|
|
<< " raddr: " << GetRemote() << " size: " << GetSize() << ")"
|
|
<< " transferred " << ret << " bytes";
|
|
return sapi::UnavailableError("process_vm_readv succeeded partially");
|
|
}
|
|
|
|
return sapi::OkStatus();
|
|
}
|
|
|
|
} // namespace sapi::v
|