blob: 5805842a5d7e08dc524d0ff6a4fd04b1184e9a3c [file] [log] [blame]
Junxiao Shi0e42c572014-10-05 20:33:48 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3148082018-04-12 18:21:54 -04002/*
Davide Pesaventod4123932021-05-28 18:48:37 -04003 * Copyright (c) 2014-2021, Regents of the University of California,
Davide Pesaventoa3148082018-04-12 18:21:54 -04004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Junxiao Shi0e42c572014-10-05 20:33:48 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "dead-nonce-list.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040027#include "common/city-hash.hpp"
28#include "common/global.hpp"
29#include "common/logger.hpp"
Junxiao Shi0e42c572014-10-05 20:33:48 -070030
Junxiao Shi0e42c572014-10-05 20:33:48 -070031namespace nfd {
32
Davide Pesaventoa3148082018-04-12 18:21:54 -040033NFD_LOG_INIT(DeadNonceList);
34
Davide Pesaventod4123932021-05-28 18:48:37 -040035const time::nanoseconds DeadNonceList::DEFAULT_LIFETIME;
36const time::nanoseconds DeadNonceList::MIN_LIFETIME;
37const size_t DeadNonceList::INITIAL_CAPACITY;
38const size_t DeadNonceList::MIN_CAPACITY;
39const size_t DeadNonceList::MAX_CAPACITY;
40const DeadNonceList::Entry DeadNonceList::MARK;
41const size_t DeadNonceList::EXPECTED_MARK_COUNT;
42const double DeadNonceList::CAPACITY_UP;
43const double DeadNonceList::CAPACITY_DOWN;
44const size_t DeadNonceList::EVICT_LIMIT;
Junxiao Shi0e42c572014-10-05 20:33:48 -070045
Davide Pesavento50a6af32019-02-21 00:04:40 -050046DeadNonceList::DeadNonceList(time::nanoseconds lifetime)
Junxiao Shi0e42c572014-10-05 20:33:48 -070047 : m_lifetime(lifetime)
Junxiao Shi0e42c572014-10-05 20:33:48 -070048 , m_capacity(INITIAL_CAPACITY)
49 , m_markInterval(m_lifetime / EXPECTED_MARK_COUNT)
50 , m_adjustCapacityInterval(m_lifetime)
51{
52 if (m_lifetime < MIN_LIFETIME) {
Davide Pesavento19779d82019-02-14 13:40:04 -050053 NDN_THROW(std::invalid_argument("lifetime is less than MIN_LIFETIME"));
Junxiao Shi0e42c572014-10-05 20:33:48 -070054 }
55
56 for (size_t i = 0; i < EXPECTED_MARK_COUNT; ++i) {
57 m_queue.push_back(MARK);
58 }
59
Davide Pesavento3dade002019-03-19 11:29:56 -060060 m_markEvent = getScheduler().schedule(m_markInterval, [this] { mark(); });
61 m_adjustCapacityEvent = getScheduler().schedule(m_adjustCapacityInterval, [this] { adjustCapacity(); });
Junxiao Shi0e42c572014-10-05 20:33:48 -070062
Junxiao Shi3a8b1b52014-11-08 21:26:07 -070063 BOOST_ASSERT_MSG(DEFAULT_LIFETIME >= MIN_LIFETIME, "DEFAULT_LIFETIME is too small");
64 static_assert(INITIAL_CAPACITY >= MIN_CAPACITY, "INITIAL_CAPACITY is too small");
65 static_assert(INITIAL_CAPACITY <= MAX_CAPACITY, "INITIAL_CAPACITY is too large");
66 BOOST_ASSERT_MSG(static_cast<size_t>(MIN_CAPACITY * CAPACITY_UP) > MIN_CAPACITY,
67 "CAPACITY_UP must be able to increase from MIN_CAPACITY");
68 BOOST_ASSERT_MSG(static_cast<size_t>(MAX_CAPACITY * CAPACITY_DOWN) < MAX_CAPACITY,
69 "CAPACITY_DOWN must be able to decrease from MAX_CAPACITY");
70 BOOST_ASSERT_MSG(CAPACITY_UP > 1.0, "CAPACITY_UP must adjust up");
71 BOOST_ASSERT_MSG(CAPACITY_DOWN < 1.0, "CAPACITY_DOWN must adjust down");
72 static_assert(EVICT_LIMIT >= 1, "EVICT_LIMIT must be at least 1");
Junxiao Shi0e42c572014-10-05 20:33:48 -070073}
74
75size_t
76DeadNonceList::size() const
77{
Davide Pesaventod4123932021-05-28 18:48:37 -040078 return m_queue.size() - countMarks();
Junxiao Shi0e42c572014-10-05 20:33:48 -070079}
80
81bool
Davide Pesavento51cf75c2020-03-11 22:21:13 -040082DeadNonceList::has(const Name& name, Interest::Nonce nonce) const
Junxiao Shi0e42c572014-10-05 20:33:48 -070083{
84 Entry entry = DeadNonceList::makeEntry(name, nonce);
85 return m_ht.find(entry) != m_ht.end();
86}
87
88void
Davide Pesavento51cf75c2020-03-11 22:21:13 -040089DeadNonceList::add(const Name& name, Interest::Nonce nonce)
Junxiao Shi0e42c572014-10-05 20:33:48 -070090{
Junxiao Shi3a8b1b52014-11-08 21:26:07 -070091 Entry entry = DeadNonceList::makeEntry(name, nonce);
Varun Patil67ad70f2021-06-04 10:04:00 -070092 const auto iter = m_ht.find(entry);
Davide Pesaventoe08cc4c2021-06-08 18:22:46 -040093 bool isDuplicate = iter != m_ht.end();
94
95 NFD_LOG_TRACE("adding " << (isDuplicate ? "duplicate " : "") << name << " nonce=" << nonce);
96
97 if (isDuplicate) {
98 m_queue.relocate(m_queue.end(), m_index.project<Queue>(iter));
Varun Patil67ad70f2021-06-04 10:04:00 -070099 }
100 else {
101 m_queue.push_back(entry);
102 evictEntries();
103 }
Junxiao Shi0e42c572014-10-05 20:33:48 -0700104}
105
106DeadNonceList::Entry
Davide Pesavento51cf75c2020-03-11 22:21:13 -0400107DeadNonceList::makeEntry(const Name& name, Interest::Nonce nonce)
Junxiao Shi0e42c572014-10-05 20:33:48 -0700108{
Davide Pesaventod4123932021-05-28 18:48:37 -0400109 const auto& nameWire = name.wireEncode();
Davide Pesavento51cf75c2020-03-11 22:21:13 -0400110 uint32_t n;
111 std::memcpy(&n, nonce.data(), sizeof(n));
112 return CityHash64WithSeed(reinterpret_cast<const char*>(nameWire.wire()), nameWire.size(), n);
Junxiao Shi0e42c572014-10-05 20:33:48 -0700113}
114
115size_t
116DeadNonceList::countMarks() const
117{
118 return m_ht.count(MARK);
119}
120
121void
122DeadNonceList::mark()
123{
124 m_queue.push_back(MARK);
Davide Pesaventod4123932021-05-28 18:48:37 -0400125 size_t nMarks = countMarks();
Junxiao Shi0e42c572014-10-05 20:33:48 -0700126 m_actualMarkCounts.insert(nMarks);
127
Davide Pesavento0e97a972015-02-22 03:50:21 +0100128 NFD_LOG_TRACE("mark nMarks=" << nMarks);
Junxiao Shi0e42c572014-10-05 20:33:48 -0700129
Davide Pesavento3dade002019-03-19 11:29:56 -0600130 m_markEvent = getScheduler().schedule(m_markInterval, [this] { mark(); });
Junxiao Shi0e42c572014-10-05 20:33:48 -0700131}
132
133void
134DeadNonceList::adjustCapacity()
135{
Davide Pesaventoe08cc4c2021-06-08 18:22:46 -0400136 auto oldCapacity = m_capacity;
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400137 auto equalRange = m_actualMarkCounts.equal_range(EXPECTED_MARK_COUNT);
Junxiao Shi0e42c572014-10-05 20:33:48 -0700138 if (equalRange.second == m_actualMarkCounts.begin()) {
139 // all counts are above expected count, adjust down
Davide Pesavento50a6af32019-02-21 00:04:40 -0500140 m_capacity = std::max(MIN_CAPACITY, static_cast<size_t>(m_capacity * CAPACITY_DOWN));
Junxiao Shi0e42c572014-10-05 20:33:48 -0700141 }
142 else if (equalRange.first == m_actualMarkCounts.end()) {
143 // all counts are below expected count, adjust up
Davide Pesavento50a6af32019-02-21 00:04:40 -0500144 m_capacity = std::min(MAX_CAPACITY, static_cast<size_t>(m_capacity * CAPACITY_UP));
Davide Pesaventoe08cc4c2021-06-08 18:22:46 -0400145 }
146
147 if (m_capacity != oldCapacity) {
148 NFD_LOG_TRACE("adjusting capacity " << oldCapacity << " -> " << m_capacity);
Junxiao Shi0e42c572014-10-05 20:33:48 -0700149 }
150
151 m_actualMarkCounts.clear();
Davide Pesaventod4123932021-05-28 18:48:37 -0400152 evictEntries();
Junxiao Shi0e42c572014-10-05 20:33:48 -0700153
Davide Pesavento3dade002019-03-19 11:29:56 -0600154 m_adjustCapacityEvent = getScheduler().schedule(m_adjustCapacityInterval, [this] { adjustCapacity(); });
Junxiao Shi0e42c572014-10-05 20:33:48 -0700155}
156
157void
158DeadNonceList::evictEntries()
159{
Davide Pesaventod4123932021-05-28 18:48:37 -0400160 if (m_queue.size() <= m_capacity) // not over capacity
Junxiao Shi0e42c572014-10-05 20:33:48 -0700161 return;
162
Davide Pesaventod4123932021-05-28 18:48:37 -0400163 auto nEvict = std::min(m_queue.size() - m_capacity, EVICT_LIMIT);
Davide Pesaventoe08cc4c2021-06-08 18:22:46 -0400164 for (size_t i = 0; i < nEvict; i++) {
165 m_queue.pop_front();
Junxiao Shi0e42c572014-10-05 20:33:48 -0700166 }
167 BOOST_ASSERT(m_queue.size() >= m_capacity);
Davide Pesaventoe08cc4c2021-06-08 18:22:46 -0400168
169 NFD_LOG_TRACE("evicted=" << nEvict << " size=" << size() << " capacity=" << m_capacity);
Junxiao Shi0e42c572014-10-05 20:33:48 -0700170}
171
172} // namespace nfd