summaryrefslogtreecommitdiffstats
path: root/src/Net
diff options
context:
space:
mode:
Diffstat (limited to 'src/Net')
-rw-r--r--src/Net/Connection.cpp16
-rw-r--r--src/Net/Connection.h26
2 files changed, 25 insertions, 17 deletions
diff --git a/src/Net/Connection.cpp b/src/Net/Connection.cpp
index f1beb35..256bbfe 100644
--- a/src/Net/Connection.cpp
+++ b/src/Net/Connection.cpp
@@ -35,7 +35,7 @@ Connection::~Connection() {
void Connection::handleHandshake(const boost::system::error_code& error) {
if(error) {
- application->logf("Error: %s", error.message().c_str());
+ application->logf(Core::Logger::LOG_NETWORK, "Error: %s", error.message().c_str());
// TODO Error handling
doDisconnect();
@@ -64,7 +64,7 @@ void Connection::handleShutdown(const boost::system::error_code& error) {
boost::lock_guard<boost::shared_mutex> lock(connectionLock);
if(error) {
- application->logf(Core::Logger::LOG_VERBOSE, "Shutdown error: %s", error.message().c_str());
+ application->logf(Core::Logger::LOG_NETWORK, Core::Logger::LOG_VERBOSE, "Shutdown error: %s", error.message().c_str());
}
_setState(DISCONNECTED);
@@ -90,11 +90,17 @@ void Connection::handleHeaderReceive(const boost::shared_array<boost::uint8_t> &
header = *reinterpret_cast<const Packet::Header*>(data.get());
}
- if(header.length == 0) {
+ boost::uint32_t length = ntohl(header.length);
+
+ if(length == 0) {
receiveSignal.emit(boost::shared_ptr<Packet>(new Packet(ntohs(header.requestId))));
enterReceiveLoop();
}
+ else if(length > receiveLimit) {
+ application->log(Core::Logger::LOG_NETWORK, Core::Logger::LOG_WARNING, "Packet size limit exceeded. Disconnecting.");
+ doDisconnect();
+ }
else {
rawReceive(ntohl(header.length), boost::bind(&Connection::handleDataReceive, thisPtr.lock(), _1));
}
@@ -115,7 +121,7 @@ void Connection::handleRead(const boost::system::error_code& error, std::size_t
if(error == boost::system::errc::operation_canceled)
return;
- application->logf(Core::Logger::LOG_DEFAULT, "Read error: %s", error.message().c_str());
+ application->logf(Core::Logger::LOG_NETWORK, "Read error: %s", error.message().c_str());
// TODO Error
doDisconnect();
@@ -176,7 +182,7 @@ void Connection::rawReceive(std::size_t length, const boost::function1<void, con
void Connection::handleWrite(const boost::system::error_code& error, std::size_t) {
if(error)
- application->logf(Core::Logger::LOG_VERBOSE, "Write error: %s", error.message().c_str());
+ application->logf(Core::Logger::LOG_NETWORK, Core::Logger::LOG_VERBOSE, "Write error: %s", error.message().c_str());
{
boost::unique_lock<boost::shared_mutex> lock(connectionLock);
diff --git a/src/Net/Connection.h b/src/Net/Connection.h
index add10b7..64b12c6 100644
--- a/src/Net/Connection.h
+++ b/src/Net/Connection.h
@@ -80,6 +80,8 @@ class MAD_NET_EXPORT Connection : boost::noncopyable {
Core::Signals::Signal0 connectedSignal;
Core::Signals::Signal0 disconnectedSignal;
+ boost::uint32_t receiveLimit;
+
bool receiving;
unsigned long sending;
@@ -138,7 +140,8 @@ class MAD_NET_EXPORT Connection : boost::noncopyable {
application(application0), state(DISCONNECTED), dontStart(false),
receiveBuffer(new boost::array<boost::uint8_t, 1024*1024>),
receiveSignal(application), connectedSignal(application),
- disconnectedSignal(application), context(context0), socket(application->getIOService(), *context) {}
+ disconnectedSignal(application), receiveLimit(0xFFFF) /* 64K */, receiving(false), sending(0),
+ context(context0), socket(application->getIOService(), *context) {}
static boost::shared_ptr<Connection> create(Core::Application *application, boost::shared_ptr<boost::asio::ssl::context> context) {
boost::shared_ptr<Connection> connection(new Connection(application, context));
@@ -180,17 +183,6 @@ class MAD_NET_EXPORT Connection : boost::noncopyable {
stateChanged.wait(lock);
}
- /*const gnutls_datum_t* getCertificate() const {
- // TODO Thread-safeness
- return gnutls_certificate_get_ours(session);
- }
-
- const gnutls_datum_t* getPeerCertificate() const {
- // TODO Thread-safeness
- unsigned int n;
- return gnutls_certificate_get_peers(session, &n);
- }*/
-
boost::asio::ip::tcp::endpoint getPeer() {
boost::shared_lock<boost::shared_mutex> lock(connectionLock);
return peer;
@@ -206,6 +198,16 @@ class MAD_NET_EXPORT Connection : boost::noncopyable {
setStart(false);
}
+ boost::uint32_t getReceiveLimit() {
+ boost::shared_lock<boost::shared_mutex> lock(connectionLock);
+ return receiveLimit;
+ }
+
+ void setReceiveLimit(boost::uint32_t limit) {
+ boost::lock_guard<boost::shared_mutex> lock(connectionLock);
+ receiveLimit = limit;
+ }
+
void startReceive() {
{
boost::lock_guard<boost::shared_mutex> lock(connectionLock);