mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-15 01:22:04 +00:00

Some checks are pending
CI / setup (check) (push) Waiting to run
CI / setup (esp32) (push) Waiting to run
CI / setup (esp32c3) (push) Waiting to run
CI / setup (esp32c6) (push) Waiting to run
CI / setup (esp32s3) (push) Waiting to run
CI / setup (nrf52840) (push) Waiting to run
CI / setup (rp2040) (push) Waiting to run
CI / setup (stm32) (push) Waiting to run
CI / check (push) Blocked by required conditions
CI / build-esp32 (push) Blocked by required conditions
CI / build-esp32-s3 (push) Blocked by required conditions
CI / build-esp32-c3 (push) Blocked by required conditions
CI / build-esp32-c6 (push) Blocked by required conditions
CI / build-nrf52 (push) Blocked by required conditions
CI / build-rpi2040 (push) Blocked by required conditions
CI / build-stm32 (push) Blocked by required conditions
CI / package-raspbian (push) Waiting to run
CI / package-raspbian-armv7l (push) Waiting to run
CI / package-native (push) Waiting to run
CI / after-checks (push) Blocked by required conditions
CI / gather-artifacts (esp32) (push) Blocked by required conditions
CI / gather-artifacts (esp32c3) (push) Blocked by required conditions
CI / gather-artifacts (esp32c6) (push) Blocked by required conditions
CI / gather-artifacts (esp32s3) (push) Blocked by required conditions
CI / gather-artifacts (nrf52840) (push) Blocked by required conditions
CI / gather-artifacts (rp2040) (push) Blocked by required conditions
CI / gather-artifacts (stm32) (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
CI / release-firmware (esp32) (push) Blocked by required conditions
CI / release-firmware (esp32c3) (push) Blocked by required conditions
CI / release-firmware (esp32c6) (push) Blocked by required conditions
CI / release-firmware (esp32s3) (push) Blocked by required conditions
CI / release-firmware (nrf52840) (push) Blocked by required conditions
CI / release-firmware (rp2040) (push) Blocked by required conditions
CI / release-firmware (stm32) (push) Blocked by required conditions
Flawfinder Scan / Flawfinder (push) Waiting to run
* Revert "Fix sending duplicate packets to PhoneAPI/MQTT (#5315)"
This reverts commit 40bc04b521
.
* Handle repeated packet after potentially canceling previous Tx
78 lines
2.6 KiB
C++
78 lines
2.6 KiB
C++
#include "PacketHistory.h"
|
|
#include "configuration.h"
|
|
#include "mesh-pb-constants.h"
|
|
|
|
#ifdef ARCH_PORTDUINO
|
|
#include "platform/portduino/PortduinoGlue.h"
|
|
#endif
|
|
#include "Throttle.h"
|
|
|
|
PacketHistory::PacketHistory()
|
|
{
|
|
recentPackets.reserve(MAX_NUM_NODES); // Prealloc the worst case # of records - to prevent heap fragmentation
|
|
// setup our periodic task
|
|
}
|
|
|
|
/**
|
|
* Update recentBroadcasts and return true if we have already seen this packet
|
|
*/
|
|
bool PacketHistory::wasSeenRecently(const meshtastic_MeshPacket *p, bool withUpdate)
|
|
{
|
|
if (p->id == 0) {
|
|
LOG_DEBUG("Ignore message with zero id");
|
|
return false; // Not a floodable message ID, so we don't care
|
|
}
|
|
|
|
PacketRecord r;
|
|
r.id = p->id;
|
|
r.sender = getFrom(p);
|
|
r.rxTimeMsec = millis();
|
|
|
|
auto found = recentPackets.find(r);
|
|
bool seenRecently = (found != recentPackets.end()); // found not equal to .end() means packet was seen recently
|
|
|
|
if (seenRecently &&
|
|
!Throttle::isWithinTimespanMs(found->rxTimeMsec, FLOOD_EXPIRE_TIME)) { // Check whether found packet has already expired
|
|
recentPackets.erase(found); // Erase and pretend packet has not been seen recently
|
|
found = recentPackets.end();
|
|
seenRecently = false;
|
|
}
|
|
|
|
if (seenRecently) {
|
|
LOG_DEBUG("Found existing packet record for fr=0x%x,to=0x%x,id=0x%x", p->from, p->to, p->id);
|
|
}
|
|
|
|
if (withUpdate) {
|
|
if (found != recentPackets.end()) { // delete existing to updated timestamp (re-insert)
|
|
recentPackets.erase(found); // as unsorted_set::iterator is const (can't update timestamp - so re-insert..)
|
|
}
|
|
recentPackets.insert(r);
|
|
printPacket("Add packet record", p);
|
|
}
|
|
|
|
// Capacity is reerved, so only purge expired packets if recentPackets fills past 90% capacity
|
|
// Expiry is normally dealt with after having searched/found a packet (above)
|
|
if (recentPackets.size() > (MAX_NUM_NODES * 0.9)) {
|
|
clearExpiredRecentPackets();
|
|
}
|
|
|
|
return seenRecently;
|
|
}
|
|
|
|
/**
|
|
* Iterate through all recent packets, and remove all older than FLOOD_EXPIRE_TIME
|
|
*/
|
|
void PacketHistory::clearExpiredRecentPackets()
|
|
{
|
|
LOG_DEBUG("recentPackets size=%ld", recentPackets.size());
|
|
|
|
for (auto it = recentPackets.begin(); it != recentPackets.end();) {
|
|
if (!Throttle::isWithinTimespanMs(it->rxTimeMsec, FLOOD_EXPIRE_TIME)) {
|
|
it = recentPackets.erase(it); // erase returns iterator pointing to element immediately following the one erased
|
|
} else {
|
|
++it;
|
|
}
|
|
}
|
|
|
|
LOG_DEBUG("recentPackets size=%ld (after clearing expired packets)", recentPackets.size());
|
|
} |