mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
177b969e8c
PiperOrigin-RevId: 238996664 Change-Id: I9646527e2be68ee0b6b371572b7aafe967102e57 Signed-off-by: Christian Blichmann <cblichmann@google.com>
87 lines
2.3 KiB
C++
87 lines
2.3 KiB
C++
// Copyright 2019 Google LLC. All Rights Reserved.
|
|
//
|
|
// 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 "sandboxed_api/sandbox2/network_proxy_server.h"
|
|
|
|
#include <arpa/inet.h>
|
|
#include <netinet/in.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <syscall.h>
|
|
#include <cerrno>
|
|
#include <cstring>
|
|
|
|
#include <glog/logging.h>
|
|
#include "absl/memory/memory.h"
|
|
#include "sandboxed_api/sandbox2/util/fileops.h"
|
|
|
|
namespace sandbox2 {
|
|
|
|
NetworkProxyServer::NetworkProxyServer(int fd)
|
|
: comms_{absl::make_unique<Comms>(fd)}, fatal_error_{false} {}
|
|
|
|
void NetworkProxyServer::ProcessConnectRequest() {
|
|
std::vector<uint8_t> addr;
|
|
if (!comms_->RecvBytes(&addr)) {
|
|
fatal_error_ = true;
|
|
return;
|
|
}
|
|
|
|
// Only sockaddr_in is supported.
|
|
if (addr.size() != sizeof(sockaddr_in)) {
|
|
SendResult(-1, EINVAL);
|
|
return;
|
|
}
|
|
const struct sockaddr_in* saddr =
|
|
reinterpret_cast<const sockaddr_in*>(addr.data());
|
|
|
|
// Only IPv4 TCP and IPv6 TCP are supported.
|
|
if (saddr->sin_family != AF_INET && saddr->sin_family != AF_INET6) {
|
|
SendResult(-1, EINVAL);
|
|
return;
|
|
}
|
|
|
|
int new_socket = socket(saddr->sin_family, SOCK_STREAM, 0);
|
|
file_util::fileops::FDCloser new_socket_closer(new_socket);
|
|
|
|
int result = connect(
|
|
new_socket, reinterpret_cast<const sockaddr*>(addr.data()), addr.size());
|
|
|
|
SendResult(result, errno);
|
|
|
|
if (result == 0 && !fatal_error_) {
|
|
if (!comms_->SendFD(new_socket)) {
|
|
fatal_error_ = true;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
void NetworkProxyServer::Run() {
|
|
while (!fatal_error_) {
|
|
ProcessConnectRequest();
|
|
}
|
|
LOG(INFO)
|
|
<< "Clean shutdown or error occurred, shutting down NetworkProxyServer";
|
|
}
|
|
|
|
void NetworkProxyServer::SendResult(int result, int saved_errno) {
|
|
if (!comms_->SendInt32(result == 0 ? result : saved_errno)) {
|
|
fatal_error_ = true;
|
|
}
|
|
}
|
|
|
|
} // namespace sandbox2
|