danicoin/src/Platform/OSX/System/TcpConnection.cpp

239 lines
8.2 KiB
C++
Raw Normal View History

2015-05-27 12:08:46 +00:00
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#include "TcpConnection.h"
2015-05-27 12:08:46 +00:00
#include <cassert>
#include <netinet/in.h>
#include <sys/event.h>
2015-05-27 12:08:46 +00:00
#include <sys/errno.h>
#include <sys/socket.h>
2015-05-27 12:08:46 +00:00
#include <unistd.h>
2015-05-27 12:08:46 +00:00
#include "Dispatcher.h"
#include <System/InterruptedException.h>
#include <System/Ipv4Address.h>
2015-05-27 12:08:46 +00:00
namespace System {
TcpConnection::TcpConnection() : dispatcher(nullptr) {
}
TcpConnection::TcpConnection(TcpConnection&& other) : dispatcher(other.dispatcher) {
if (other.dispatcher != nullptr) {
2015-05-27 12:08:46 +00:00
assert(other.readContext == nullptr);
assert(other.writeContext == nullptr);
connection = other.connection;
2015-05-27 12:08:46 +00:00
readContext = nullptr;
writeContext = nullptr;
other.dispatcher = nullptr;
}
}
TcpConnection::~TcpConnection() {
if (dispatcher != nullptr) {
assert(readContext == nullptr);
assert(writeContext == nullptr);
2015-05-27 12:08:46 +00:00
int result = close(connection);
assert(result != -1);
}
}
TcpConnection& TcpConnection::operator=(TcpConnection&& other) {
if (dispatcher != nullptr) {
assert(readContext == nullptr);
assert(writeContext == nullptr);
if (close(connection) == -1) {
2015-05-27 12:08:46 +00:00
throw std::runtime_error("TcpConnection::operator=, close() failed, errno=" + std::to_string(errno));
}
}
dispatcher = other.dispatcher;
if (other.dispatcher != nullptr) {
2015-05-27 12:08:46 +00:00
assert(other.readContext == nullptr);
assert(other.writeContext == nullptr);
connection = other.connection;
2015-05-27 12:08:46 +00:00
readContext = nullptr;
writeContext = nullptr;
other.dispatcher = nullptr;
}
return *this;
}
size_t TcpConnection::read(uint8_t* data, size_t size) {
assert(dispatcher != nullptr);
assert(readContext == nullptr);
2015-07-30 15:22:07 +00:00
if (dispatcher->interrupted()) {
throw InterruptedException();
}
2015-05-27 12:08:46 +00:00
std::string message;
ssize_t transferred = ::recv(connection, (void *)data, size, 0);
if (transferred == -1) {
if (errno != EAGAIN && errno != EWOULDBLOCK) {
2015-05-27 12:08:46 +00:00
message = "recv failed, errno=" + std::to_string(errno);
} else {
2015-07-30 15:22:07 +00:00
OperationContext context;
2015-05-27 12:08:46 +00:00
context.context = dispatcher->getCurrentContext();
context.interrupted = false;
struct kevent event;
2015-05-27 12:08:46 +00:00
EV_SET(&event, connection, EVFILT_READ, EV_ADD | EV_ENABLE | EV_CLEAR | EV_ONESHOT, 0, 0, &context);
if (kevent(dispatcher->getKqueue(), &event, 1, NULL, 0, NULL) == -1) {
2015-05-27 12:08:46 +00:00
message = "kevent() failed, errno=" + std::to_string(errno);
} else {
2015-05-27 12:08:46 +00:00
readContext = &context;
2015-07-30 15:22:07 +00:00
dispatcher->getCurrentContext()->interruptProcedure = [&] {
assert(dispatcher != nullptr);
assert(readContext != nullptr);
OperationContext* context = static_cast<OperationContext*>(readContext);
if (!context->interrupted) {
struct kevent event;
EV_SET(&event, connection, EVFILT_READ, EV_DELETE | EV_DISABLE, 0, 0, NULL);
if (kevent(dispatcher->getKqueue(), &event, 1, NULL, 0, NULL) == -1) {
throw std::runtime_error("TcpListener::interruptionProcedure, kevent() failed, errno=" + std::to_string(errno));
}
context->interrupted = true;
dispatcher->pushContext(context->context);
}
};
2015-05-27 12:08:46 +00:00
dispatcher->dispatch();
2015-07-30 15:22:07 +00:00
dispatcher->getCurrentContext()->interruptProcedure = nullptr;
assert(dispatcher != nullptr);
2015-05-27 12:08:46 +00:00
assert(context.context == dispatcher->getCurrentContext());
assert(readContext == &context);
readContext = nullptr;
2015-05-27 12:08:46 +00:00
context.context = nullptr;
if (context.interrupted) {
throw InterruptedException();
}
ssize_t transferred = ::recv(connection, (void *)data, size, 0);
if (transferred == -1) {
2015-05-27 12:08:46 +00:00
message = "recv failed, errno=" + std::to_string(errno);
} else {
2015-05-27 12:08:46 +00:00
assert(transferred <= static_cast<ssize_t>(size));
return transferred;
}
}
}
2015-05-27 12:08:46 +00:00
throw std::runtime_error("TcpConnection::read, " + message);
}
2015-05-27 12:08:46 +00:00
assert(transferred <= static_cast<ssize_t>(size));
return transferred;
}
2015-05-27 12:08:46 +00:00
size_t TcpConnection::write(const uint8_t* data, size_t size) {
assert(dispatcher != nullptr);
assert(writeContext == nullptr);
2015-07-30 15:22:07 +00:00
if (dispatcher->interrupted()) {
throw InterruptedException();
}
2015-05-27 12:08:46 +00:00
std::string message;
if (size == 0) {
if (shutdown(connection, SHUT_WR) == -1) {
2015-05-27 12:08:46 +00:00
throw std::runtime_error("TcpConnection::write, shutdown failed, result=" + std::to_string(errno));
}
2015-05-27 12:08:46 +00:00
return 0;
}
ssize_t transferred = ::send(connection, (void *)data, size, 0);
if (transferred == -1) {
if (errno != EAGAIN && errno != EWOULDBLOCK) {
2015-05-27 12:08:46 +00:00
message = "send failed, result=" + std::to_string(errno);
} else {
2015-07-30 15:22:07 +00:00
OperationContext context;
2015-05-27 12:08:46 +00:00
context.context = dispatcher->getCurrentContext();
context.interrupted = false;
struct kevent event;
2015-05-27 12:08:46 +00:00
EV_SET(&event, connection, EVFILT_WRITE, EV_ADD | EV_ENABLE | EV_ONESHOT, 0, 0, &context);
if (kevent(dispatcher->getKqueue(), &event, 1, NULL, 0, NULL) == -1) {
2015-05-27 12:08:46 +00:00
message = "kevent() failed, errno=" + std::to_string(errno);
} else {
2015-05-27 12:08:46 +00:00
writeContext = &context;
2015-07-30 15:22:07 +00:00
dispatcher->getCurrentContext()->interruptProcedure = [&] {
assert(dispatcher != nullptr);
assert(writeContext != nullptr);
OperationContext* context = static_cast<OperationContext*>(writeContext);
if (!context->interrupted) {
struct kevent event;
EV_SET(&event, connection, EVFILT_WRITE, EV_DELETE | EV_DISABLE, 0, 0, NULL);
if (kevent(dispatcher->getKqueue(), &event, 1, NULL, 0, NULL) == -1) {
throw std::runtime_error("TcpListener::stop, kevent() failed, errno=" + std::to_string(errno));
}
context->interrupted = true;
dispatcher->pushContext(context->context);
}
};
2015-05-27 12:08:46 +00:00
dispatcher->dispatch();
2015-07-30 15:22:07 +00:00
dispatcher->getCurrentContext()->interruptProcedure = nullptr;
assert(dispatcher != nullptr);
2015-05-27 12:08:46 +00:00
assert(context.context == dispatcher->getCurrentContext());
assert(writeContext == &context);
writeContext = nullptr;
2015-05-27 12:08:46 +00:00
context.context = nullptr;
if (context.interrupted) {
throw InterruptedException();
}
ssize_t transferred = ::send(connection, (void *)data, size, 0);
if (transferred == -1) {
2015-05-27 12:08:46 +00:00
message = "send failed, errno=" + std::to_string(errno);
} else {
2015-05-27 12:08:46 +00:00
assert(transferred <= static_cast<ssize_t>(size));
return transferred;
}
}
}
2015-05-27 12:08:46 +00:00
throw std::runtime_error("TcpConnection::write, " + message);
}
2015-05-27 12:08:46 +00:00
assert(transferred <= static_cast<ssize_t>(size));
return transferred;
}
2015-07-30 15:22:07 +00:00
std::pair<Ipv4Address, uint16_t> TcpConnection::getPeerAddressAndPort() const {
2015-05-27 12:08:46 +00:00
sockaddr_in addr;
socklen_t size = sizeof(addr);
if (getpeername(connection, reinterpret_cast<sockaddr*>(&addr), &size) != 0) {
throw std::runtime_error("TcpConnection::getPeerAddress, getpeername failed, result=" + std::to_string(errno));
}
2015-05-27 12:08:46 +00:00
assert(size == sizeof(sockaddr_in));
return std::make_pair(Ipv4Address(htonl(addr.sin_addr.s_addr)), htons(addr.sin_port));
}
2015-07-30 15:22:07 +00:00
TcpConnection::TcpConnection(Dispatcher& dispatcher, int socket) : dispatcher(&dispatcher), connection(socket), readContext(nullptr), writeContext(nullptr) {
int val = 1;
if (setsockopt(connection, SOL_SOCKET, SO_NOSIGPIPE, (void*)&val, sizeof val) == -1) {
throw std::runtime_error("TcpConnection::TcpConnection, setsockopt failed, result=" + std::to_string(errno));
}
2015-05-27 12:08:46 +00:00
}
}