/*
This file is part of FlashMQ (https://www.flashmq.org)
Copyright (C) 2021 Wiebe Cazemier
FlashMQ is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, version 3.
FlashMQ 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with FlashMQ. If not, see .
*/
#include "cassert"
#include "session.h"
#include "client.h"
Session::Session()
{
}
Session::~Session()
{
logger->logf(LOG_DEBUG, "Session %s is being destroyed.", getClientId().c_str());
}
bool Session::clientDisconnected() const
{
return client.expired();
}
std::shared_ptr Session::makeSharedClient() const
{
return client.lock();
}
void Session::assignActiveConnection(std::shared_ptr &client)
{
this->client = client;
this->client_id = client->getClientId();
this->username = client->getUsername();
this->thread = client->getThreadData();
}
void Session::writePacket(const MqttPacket &packet, char max_qos)
{
assert(max_qos <= 2);
if (thread->authentication.aclCheck(client_id, username, packet.getTopic(), *packet.getSubtopics(), AclAccess::read) == AuthResult::success)
{
const char qos = std::min(packet.getQos(), max_qos);
if (qos == 0)
{
if (!clientDisconnected())
{
std::shared_ptr c = makeSharedClient();
c->writeMqttPacketAndBlameThisClient(packet, qos);
}
}
else if (qos == 1)
{
std::shared_ptr copyPacket = packet.getCopy();
std::unique_lock locker(qosQueueMutex);
if (qosPacketQueue.size() >= MAX_QOS_MSG_PENDING_PER_CLIENT || (qosQueueBytes >= MAX_QOS_BYTES_PENDING_PER_CLIENT && qosPacketQueue.size() > 0))
{
logger->logf(LOG_WARNING, "Dropping QoS message for client '%s', because its QoS buffers were full.", client_id.c_str());
return;
}
nextPacketId++;
if (nextPacketId == 0)
nextPacketId++;
const uint16_t pid = nextPacketId;
copyPacket->setPacketId(pid);
QueuedQosPacket p;
p.packet = copyPacket;
p.id = pid;
qosPacketQueue.push_back(p);
qosQueueBytes += copyPacket->getTotalMemoryFootprint();
locker.unlock();
if (!clientDisconnected())
{
std::shared_ptr c = makeSharedClient();
c->writeMqttPacketAndBlameThisClient(*copyPacket.get(), qos);
copyPacket->setDuplicate(); // Any dealings with this packet from here will be a duplicate.
}
}
}
}
// Normatively, this while loop will break on the first element, because all messages are sent out in order and
// should be acked in order.
void Session::clearQosMessage(uint16_t packet_id)
{
#ifndef NDEBUG
logger->logf(LOG_DEBUG, "Clearing QoS message for '%s', packet id '%d'. Left in queue: %d", client_id.c_str(), packet_id, qosPacketQueue.size());
#endif
std::lock_guard locker(qosQueueMutex);
auto it = qosPacketQueue.begin();
auto end = qosPacketQueue.end();
while (it != end)
{
QueuedQosPacket &p = *it;
if (p.id == packet_id)
{
size_t mem = p.packet->getTotalMemoryFootprint();
qosQueueBytes -= mem;
assert(qosQueueBytes >= 0);
if (qosQueueBytes < 0) // Should not happen, but correcting a hypothetical bug is fine for this purpose.
qosQueueBytes = 0;
qosPacketQueue.erase(it);
break;
}
it++;
}
}
// [MQTT-4.4.0-1]: "When a Client reconnects with CleanSession set to 0, both the Client and Server MUST re-send any
// unacknowledged PUBLISH Packets (where QoS > 0) and PUBREL Packets using their original Packet Identifiers. This
// is the only circumstance where a Client or Server is REQUIRED to redeliver messages."
//
// There is a bit of a hole there, I think. When we write out a packet to a receiver, it may decide to drop it, if its buffers
// are full, for instance. We are not required to (periodically) retry. TODO Perhaps I will implement that retry anyway.
void Session::sendPendingQosMessages()
{
if (!clientDisconnected())
{
std::shared_ptr c = makeSharedClient();
std::lock_guard locker(qosQueueMutex);
for (QueuedQosPacket &qosMessage : qosPacketQueue)
{
c->writeMqttPacketAndBlameThisClient(*qosMessage.packet.get(), qosMessage.packet->getQos());
qosMessage.packet->setDuplicate(); // Any dealings with this packet from here will be a duplicate.
}
}
}
void Session::touch(time_t val)
{
time_t newval = val > 0 ? val : time(NULL);
lastTouched = newval;
}
bool Session::hasExpired()
{
return clientDisconnected() && (lastTouched + EXPIRE_SESSION_AFTER) < time(NULL);
}