Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Alexander Afanasyev | ab1d560 | 2011-08-17 19:17:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 19 | * Ilya Moiseenko <iliamo@cs.ucla.edu> |
Alexander Afanasyev | ab1d560 | 2011-08-17 19:17:18 -0700 | [diff] [blame] | 20 | */ |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 21 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 22 | #include "ccnx-l3-protocol.h" |
| 23 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 24 | #include "ns3/packet.h" |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 25 | #include "ns3/node.h" |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 26 | #include "ns3/log.h" |
| 27 | #include "ns3/callback.h" |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 28 | #include "ns3/uinteger.h" |
| 29 | #include "ns3/trace-source-accessor.h" |
| 30 | #include "ns3/object-vector.h" |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 31 | #include "ns3/boolean.h" |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 32 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 33 | #include "ns3/ccnx-header-helper.h" |
| 34 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 35 | #include "ccnx-face.h" |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 36 | #include "ccnx-forwarding-strategy.h" |
| 37 | #include "ccnx-interest-header.h" |
| 38 | #include "ccnx-content-object-header.h" |
| 39 | |
Alexander Afanasyev | 52e9aa9 | 2011-11-15 20:23:20 -0800 | [diff] [blame] | 40 | #include "ccnx-net-device-face.h" |
| 41 | |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 42 | #include <boost/foreach.hpp> |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 43 | #include <boost/lambda/lambda.hpp> |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 44 | #include <boost/lambda/bind.hpp> |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 45 | |
| 46 | using namespace boost::tuples; |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 47 | namespace ll = boost::lambda; |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 48 | |
| 49 | NS_LOG_COMPONENT_DEFINE ("CcnxL3Protocol"); |
| 50 | |
| 51 | namespace ns3 { |
| 52 | |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 53 | const uint16_t CcnxL3Protocol::ETHERNET_FRAME_TYPE = 0x7777; |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 54 | |
| 55 | NS_OBJECT_ENSURE_REGISTERED (CcnxL3Protocol); |
| 56 | |
| 57 | TypeId |
| 58 | CcnxL3Protocol::GetTypeId (void) |
| 59 | { |
| 60 | static TypeId tid = TypeId ("ns3::CcnxL3Protocol") |
| 61 | .SetParent<Ccnx> () |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 62 | .SetGroupName ("Ccnx") |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 63 | .AddConstructor<CcnxL3Protocol> () |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 64 | .AddAttribute ("BucketLeakInterval", |
| 65 | "Interval to leak buckets", |
| 66 | StringValue ("10ms"), |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 67 | MakeTimeAccessor (&CcnxL3Protocol::GetBucketLeakInterval, |
| 68 | &CcnxL3Protocol::SetBucketLeakInterval), |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 69 | MakeTimeChecker ()) |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 70 | ; |
| 71 | return tid; |
| 72 | } |
| 73 | |
| 74 | CcnxL3Protocol::CcnxL3Protocol() |
Alexander Afanasyev | ab1d560 | 2011-08-17 19:17:18 -0700 | [diff] [blame] | 75 | : m_faceCounter (0) |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 76 | { |
| 77 | NS_LOG_FUNCTION (this); |
Alexander Afanasyev | cf133f0 | 2011-09-06 12:13:48 -0700 | [diff] [blame] | 78 | |
Alexander Afanasyev | cf133f0 | 2011-09-06 12:13:48 -0700 | [diff] [blame] | 79 | m_pit = CreateObject<CcnxPit> (); |
| 80 | m_contentStore = CreateObject<CcnxContentStore> (); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | CcnxL3Protocol::~CcnxL3Protocol () |
| 84 | { |
| 85 | NS_LOG_FUNCTION (this); |
| 86 | } |
| 87 | |
| 88 | void |
| 89 | CcnxL3Protocol::SetNode (Ptr<Node> node) |
| 90 | { |
| 91 | m_node = node; |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 92 | m_fib = m_node->GetObject<CcnxFib> (); |
| 93 | NS_ASSERT_MSG (m_fib != 0, "FIB should be created and aggregated to a node before calling Ccnx::SetNode"); |
| 94 | |
| 95 | m_pit->SetFib (m_fib); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | /* |
| 99 | * This method is called by AddAgregate and completes the aggregation |
| 100 | * by setting the node in the ccnx stack |
| 101 | */ |
| 102 | void |
| 103 | CcnxL3Protocol::NotifyNewAggregate () |
| 104 | { |
| 105 | if (m_node == 0) |
| 106 | { |
| 107 | Ptr<Node>node = this->GetObject<Node>(); |
| 108 | // verify that it's a valid node and that |
| 109 | // the node has not been set before |
| 110 | if (node != 0) |
| 111 | { |
| 112 | this->SetNode (node); |
| 113 | } |
| 114 | } |
| 115 | Object::NotifyNewAggregate (); |
| 116 | } |
| 117 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 118 | void |
| 119 | CcnxL3Protocol::DoDispose (void) |
| 120 | { |
| 121 | NS_LOG_FUNCTION (this); |
| 122 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 123 | if (m_bucketLeakEvent.IsRunning ()) |
| 124 | m_bucketLeakEvent.Cancel (); |
| 125 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 126 | for (CcnxFaceList::iterator i = m_faces.begin (); i != m_faces.end (); ++i) |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 127 | { |
| 128 | *i = 0; |
| 129 | } |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 130 | m_faces.clear (); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 131 | m_node = 0; |
Alexander Afanasyev | d02a5d6 | 2011-11-21 11:01:51 -0800 | [diff] [blame] | 132 | |
| 133 | // Force delete on objects |
Alexander Afanasyev | 1825285 | 2011-11-21 13:35:31 -0800 | [diff] [blame] | 134 | m_forwardingStrategy = 0; // there is a reference to PIT stored in here |
Alexander Afanasyev | d02a5d6 | 2011-11-21 11:01:51 -0800 | [diff] [blame] | 135 | m_pit = 0; |
| 136 | m_contentStore = 0; |
Alexander Afanasyev | 1825285 | 2011-11-21 13:35:31 -0800 | [diff] [blame] | 137 | m_fib = 0; |
| 138 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 139 | // m_forwardingStrategy = 0; |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 140 | Object::DoDispose (); |
| 141 | } |
| 142 | |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 143 | void |
| 144 | CcnxL3Protocol::SetForwardingStrategy (Ptr<CcnxForwardingStrategy> forwardingStrategy) |
| 145 | { |
| 146 | NS_LOG_FUNCTION (this); |
| 147 | m_forwardingStrategy = forwardingStrategy; |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 148 | m_forwardingStrategy->SetPit (m_pit); |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | Ptr<CcnxForwardingStrategy> |
| 152 | CcnxL3Protocol::GetForwardingStrategy (void) const |
| 153 | { |
| 154 | return m_forwardingStrategy; |
| 155 | } |
| 156 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 157 | uint32_t |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 158 | CcnxL3Protocol::AddFace (const Ptr<CcnxFace> &face) |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 159 | { |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 160 | NS_LOG_FUNCTION (this << &face); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 161 | |
Alexander Afanasyev | ab1d560 | 2011-08-17 19:17:18 -0700 | [diff] [blame] | 162 | face->SetId (m_faceCounter); // sets a unique ID of the face. This ID serves only informational purposes |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 163 | |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 164 | // ask face to register in lower-layer stack |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 165 | face->RegisterProtocolHandler (MakeCallback (&CcnxL3Protocol::Receive, this)); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 166 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 167 | m_faces.push_back (face); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 168 | m_faceCounter++; |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 169 | return face->GetId (); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 172 | void |
| 173 | CcnxL3Protocol::RemoveFace (Ptr<CcnxFace> face) |
| 174 | { |
| 175 | // ask face to register in lower-layer stack |
| 176 | face->RegisterProtocolHandler (MakeNullCallback<void,const Ptr<CcnxFace>&,const Ptr<const Packet>&> ()); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 177 | |
| 178 | // just to be on a safe side. Do the process in two steps |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 179 | std::list<CcnxPitEntryContainer::type::iterator> entriesToRemoves; |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 180 | BOOST_FOREACH (const CcnxPitEntry &pitEntry, *m_pit) |
| 181 | { |
| 182 | m_pit->modify (m_pit->iterator_to (pitEntry), |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 183 | ll::bind (&CcnxPitEntry::RemoveAllReferencesToFace, ll::_1, face)); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 184 | |
| 185 | // If this face is the only for the associated FIB entry, then FIB entry will be removed soon. |
| 186 | // Thus, we have to remove the whole PIT entry |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 187 | if (pitEntry.m_fibEntry.m_faces.size () == 1 && |
| 188 | pitEntry.m_fibEntry.m_faces.begin ()->m_face == face) |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 189 | { |
| 190 | entriesToRemoves.push_back (m_pit->iterator_to (pitEntry)); |
| 191 | } |
| 192 | } |
| 193 | BOOST_FOREACH (CcnxPitEntryContainer::type::iterator entry, entriesToRemoves) |
| 194 | { |
| 195 | m_pit->erase (entry); |
| 196 | } |
| 197 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 198 | CcnxFaceList::iterator face_it = find (m_faces.begin(), m_faces.end(), face); |
| 199 | NS_ASSERT_MSG (face_it != m_faces.end (), "Attempt to remove face that doesn't exist"); |
| 200 | m_faces.erase (face_it); |
| 201 | } |
| 202 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 203 | Ptr<CcnxFace> |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 204 | CcnxL3Protocol::GetFace (uint32_t index) const |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 205 | { |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 206 | BOOST_FOREACH (const Ptr<CcnxFace> &face, m_faces) // this function is not supposed to be called often, so linear search is fine |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 207 | { |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 208 | if (face->GetId () == index) |
| 209 | return face; |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 210 | } |
| 211 | return 0; |
| 212 | } |
| 213 | |
Alexander Afanasyev | 52e9aa9 | 2011-11-15 20:23:20 -0800 | [diff] [blame] | 214 | Ptr<CcnxFace> |
| 215 | CcnxL3Protocol::GetFaceByNetDevice (Ptr<NetDevice> netDevice) const |
| 216 | { |
| 217 | BOOST_FOREACH (const Ptr<CcnxFace> &face, m_faces) // this function is not supposed to be called often, so linear search is fine |
| 218 | { |
| 219 | Ptr<CcnxNetDeviceFace> netDeviceFace = DynamicCast<CcnxNetDeviceFace> (face); |
| 220 | if (netDeviceFace == 0) continue; |
| 221 | |
| 222 | if (netDeviceFace->GetNetDevice () == netDevice) |
| 223 | return face; |
| 224 | } |
| 225 | return 0; |
| 226 | } |
| 227 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 228 | uint32_t |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 229 | CcnxL3Protocol::GetNFaces (void) const |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 230 | { |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 231 | return m_faces.size (); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 232 | } |
| 233 | |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 234 | // Callback from lower layer |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 235 | void |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 236 | CcnxL3Protocol::Receive (const Ptr<CcnxFace> &face, const Ptr<const Packet> &p) |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 237 | { |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 238 | if (!face->IsUp ()) |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 239 | { |
| 240 | NS_LOG_LOGIC ("Dropping received packet -- interface is down"); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 241 | // m_dropTrace (p, INTERFACE_DOWN, m_node->GetObject<Ccnx> ()/*this*/, face); |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 242 | return; |
| 243 | } |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 244 | NS_LOG_LOGIC ("Packet from face " << *face << " received on node " << m_node->GetId ()); |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 245 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 246 | Ptr<Packet> packet = p->Copy (); // give upper layers a rw copy of the packet |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 247 | try |
| 248 | { |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 249 | CcnxHeaderHelper::Type type = CcnxHeaderHelper::GetCcnxHeaderType (p); |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 250 | switch (type) |
| 251 | { |
| 252 | case CcnxHeaderHelper::INTEREST: |
| 253 | { |
| 254 | Ptr<CcnxInterestHeader> header = Create<CcnxInterestHeader> (); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 255 | |
| 256 | // Deserialization. Exception may be thrown |
| 257 | packet->RemoveHeader (*header); |
| 258 | NS_ASSERT_MSG (packet->GetSize () == 0, "Payload of Interests should be zero"); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 259 | |
| 260 | if (header->GetNack () > 0) |
| 261 | OnNack (face, header, p/*original packet*/); |
| 262 | else |
| 263 | OnInterest (face, header, p/*original packet*/); |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 264 | break; |
| 265 | } |
| 266 | case CcnxHeaderHelper::CONTENT_OBJECT: |
| 267 | { |
| 268 | Ptr<CcnxContentObjectHeader> header = Create<CcnxContentObjectHeader> (); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 269 | |
| 270 | static CcnxContentObjectTail contentObjectTrailer; //there is no data in this object |
| 271 | |
| 272 | // Deserialization. Exception may be thrown |
| 273 | packet->RemoveHeader (*header); |
| 274 | packet->RemoveTrailer (contentObjectTrailer); |
| 275 | |
| 276 | OnData (face, header, packet/*payload*/, p/*original packet*/); |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 277 | break; |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | // exception will be thrown if packet is not recognized |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 282 | } |
| 283 | catch (CcnxUnknownHeaderException) |
| 284 | { |
| 285 | NS_ASSERT_MSG (false, "Unknown CCNx header. Should not happen"); |
| 286 | } |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 287 | } |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 288 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 289 | void |
| 290 | CcnxL3Protocol::OnNack (const Ptr<CcnxFace> &face, |
| 291 | Ptr<CcnxInterestHeader> &header, |
| 292 | const Ptr<const Packet> &p) |
| 293 | { |
| 294 | NS_LOG_FUNCTION (face << header << p); |
| 295 | |
| 296 | // Huh... Ignore all this for now |
| 297 | |
| 298 | /*if( header->IsCongested () == false ) |
| 299 | m_pit->LeakBucket(incomingFace,1); |
| 300 | |
| 301 | |
| 302 | m_droppedInterestsTrace (header, DROP_CONGESTION, |
| 303 | m_node->GetObject<Ccnx> (), incomingFace); |
| 304 | |
| 305 | m_pit->modify(pitEntry, CcnxPitEntry::DeleteOutgoing(incomingFace));*/ |
| 306 | |
| 307 | // No matter is it duplicate or not, if it is a NACK message, remove all possible incoming |
| 308 | // entries for this interface (NACK means that neighbor gave up trying and there is no |
| 309 | // point of sending data in this direction) |
| 310 | |
| 311 | // NS_LOG_INFO("Before (header->IsNack()) && (pitEntry != m_pit->end ())"); |
| 312 | // if ((header->IsNack()) && (pitEntry != m_pit->end ())) |
| 313 | // { |
| 314 | // //m_pit->erase (pitEntry); |
| 315 | // NS_LOG_INFO("TRUE"); |
| 316 | // m_pit->modify(pitEntry, CcnxPitEntry::DeleteIncoming(incomingFace)); |
| 317 | // } |
| 318 | |
| 319 | // m_fib->modify (m_fib->iterator_to (pitEntry->m_fibEntry), |
| 320 | // CcnxFibEntry::UpdateStatus(incomingFace, CcnxFibFaceMetric::NDN_FIB_YELLOW)); |
| 321 | |
| 322 | // if (!pitEntry.AreThereMoreFacesToTry ()) |
| 323 | // { |
| 324 | // BOOST_FOREACH (const CcnxPitEntryIncomingFace face, pitEntry.m_incoming) |
| 325 | // { |
| 326 | // // check all entries if the name of RIT entry matches the name of interest |
| 327 | // for (CcnxRitByNonce::type::iterator it = m_rit->begin(); it != m_rit->end(); it++) |
| 328 | // { |
| 329 | // if (it->m_prefix == iter->GetPrefix() ) |
| 330 | // { |
| 331 | // header->SetNonce(it->m_nonce); |
| 332 | // header->SetNack(true); |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 333 | // face.m_face->Send (packet->Copy()); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 334 | // } |
| 335 | // } |
| 336 | // } |
| 337 | |
| 338 | // m_pit->erase(pitEntry); |
| 339 | |
| 340 | // return; |
| 341 | // } |
| 342 | } |
| 343 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 344 | // Processing Interests |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 345 | // |
| 346 | // !!! Key point. |
| 347 | // !!! All interests should be answerred!!! Either later with data, immediately with data, or immediately with NACK |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 348 | void CcnxL3Protocol::OnInterest (const Ptr<CcnxFace> &incomingFace, |
| 349 | Ptr<CcnxInterestHeader> &header, |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 350 | const Ptr<const Packet> &packet) |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 351 | { |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 352 | NS_LOG_FUNCTION (incomingFace << header << packet); |
| 353 | // m_receivedInterestsTrace (header, m_node->GetObject<Ccnx> (), incomingFace); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 354 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 355 | // Lookup of Pit (and associated Fib) entry for this Interest |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 356 | tuple<const CcnxPitEntry&,bool,bool> ret = m_pit->Lookup (*header); |
| 357 | CcnxPitEntry const& pitEntry = ret.get<0> (); |
| 358 | // bool isNew = ret.get<1> (); |
| 359 | bool isDuplicated = ret.get<2> (); |
Ilya Moiseenko | d83eb0d | 2011-11-16 15:23:46 -0800 | [diff] [blame] | 360 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 361 | if (isDuplicated) |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 362 | { |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 363 | /** |
| 364 | * This condition will handle "routing" loops and also recently satisfied interests. |
| 365 | * Every time interest is satisfied, PIT entry (with empty incoming and outgoing faces) |
| 366 | * is kept for another small chunk of time. |
| 367 | */ |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 368 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 369 | // //Trace duplicate interest |
| 370 | // m_droppedInterestsTrace (header, NDN_DUPLICATE_INTEREST, m_node->GetObject<Ccnx> (), incomingFace); |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 371 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 372 | header->SetNack (CcnxInterestHeader::NACK_LOOP); |
| 373 | Ptr<Packet> packet = Create<Packet> (); |
| 374 | packet->AddHeader (*header); |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 375 | |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 376 | incomingFace->Send (packet); |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 377 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 378 | // //Trace duplicate interest |
| 379 | // m_droppedInterestsTrace (header, NDN_DUPLICATE_INTEREST, m_node->GetObject<Ccnx> (), incomingFace); |
Alexander Afanasyev | cf133f0 | 2011-09-06 12:13:48 -0700 | [diff] [blame] | 380 | return; |
| 381 | } |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 382 | |
| 383 | Ptr<Packet> contentObject; |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 384 | Ptr<const CcnxContentObjectHeader> contentObjectHeader; // unused for now |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 385 | tie (contentObject, contentObjectHeader) = m_contentStore->Lookup (header); |
| 386 | if (contentObject != 0) |
| 387 | { |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 388 | NS_ASSERT (contentObjectHeader != 0); |
| 389 | |
| 390 | NS_LOG_LOGIC("Found in cache"); |
| 391 | |
| 392 | // TransmittedDataTrace (contentObject, CACHED, |
| 393 | // m_node->GetObject<Ccnx> (), incomingFace); |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 394 | incomingFace->Send (contentObject); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 395 | |
| 396 | // Set pruning timout on PIT entry (instead of deleting the record) |
| 397 | m_pit->modify (m_pit->iterator_to (pitEntry), |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 398 | bind (&CcnxPitEntry::SetExpireTime, ll::_1, |
| 399 | Simulator::Now () + m_pit->GetPitEntryPruningTimeout ())); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 400 | return; |
| 401 | } |
| 402 | |
| 403 | // \todo Detect retransmissions. Not yet sure how... |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 404 | |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 405 | // Data is not in cache |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 406 | CcnxPitEntryIncomingFaceContainer::type::iterator inFace = pitEntry.m_incoming.find (incomingFace); |
| 407 | CcnxPitEntryOutgoingFaceContainer::type::iterator outFace = pitEntry.m_outgoing.find (incomingFace); |
| 408 | |
| 409 | if (inFace != pitEntry.m_incoming.end ()) |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 410 | { |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 411 | // CcnxPitEntryIncomingFace.m_arrivalTime keeps track arrival time of the first packet... why? |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 412 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 413 | // this is almost definitely a retransmission. But should we trust the user on that? |
| 414 | } |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 415 | else |
| 416 | { |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 417 | m_pit->modify (m_pit->iterator_to (pitEntry), |
| 418 | ll::var(inFace) = ll::bind (&CcnxPitEntry::AddIncoming, ll::_1, incomingFace)); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | if (outFace != pitEntry.m_outgoing.end ()) |
| 422 | { |
| 423 | // got a non-duplicate interest from the face we have sent interest to |
| 424 | // Probably, there is no point in waiting data from that face... Not sure yet |
| 425 | |
| 426 | // If we're expecting data from the interface we got the interest from ("producer" asks us for "his own" data) |
| 427 | // Mark interface YELLOW, but keep a small hope that data will come eventually. |
| 428 | |
| 429 | // ?? not sure if we need to do that ?? ... |
| 430 | |
| 431 | m_fib->modify(m_fib->iterator_to (pitEntry.m_fibEntry), |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 432 | ll::bind (&CcnxFibEntry::UpdateStatus, |
| 433 | ll::_1, incomingFace, CcnxFibFaceMetric::NDN_FIB_YELLOW)); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 434 | |
| 435 | // suppress? |
| 436 | } |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 437 | else if (pitEntry.m_outgoing.size() > 0) // Suppress this interest if we're still expecting data from some other face |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 438 | |
| 439 | { |
| 440 | // We are already expecting data later in future. Suppress the interest |
| 441 | // m_droppedInterestsTrace (header, NDN_SUPPRESSED_INTEREST, m_node->GetObject<Ccnx> (), incomingFace); |
| 442 | return; |
| 443 | } |
| 444 | |
| 445 | ///////////////////////////////////////////////////////////////////// |
| 446 | // Propagate |
| 447 | ///////////////////////////////////////////////////////////////////// |
| 448 | |
| 449 | NS_ASSERT_MSG (m_forwardingStrategy != 0, "Need a forwarding protocol object to process packets"); |
| 450 | |
| 451 | bool propagated = m_forwardingStrategy-> |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 452 | PropagateInterest (pitEntry, incomingFace, header, packet); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 453 | |
| 454 | // ForwardingStrategy will try its best to forward packet to at least one interface. |
| 455 | // If no interests was propagated, then there is not other option for forwarding or |
| 456 | // ForwardingStrategy failed to find it. |
| 457 | if (!propagated) |
| 458 | { |
| 459 | Ptr<Packet> packet = Create<Packet> (); |
| 460 | header->SetNack (CcnxInterestHeader::NACK_CONGESTION); |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 461 | packet->AddHeader (*header); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 462 | |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 463 | BOOST_FOREACH (const CcnxPitEntryIncomingFace &incoming, pitEntry.m_incoming) |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 464 | { |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 465 | incoming.m_face->Send (packet->Copy ()); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 466 | |
| 467 | // m_droppedInterestsTrace (header, DROP_CONGESTION, |
| 468 | // m_node->GetObject<Ccnx> (), incomingFace); |
| 469 | } |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 470 | // All incoming interests cannot be satisfied. Remove them |
| 471 | m_pit->modify (m_pit->iterator_to (pitEntry), |
| 472 | ll::bind (&CcnxPitEntry::ClearIncoming, ll::_1)); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 473 | |
| 474 | // Set pruning timout on PIT entry (instead of deleting the record) |
| 475 | m_pit->modify (m_pit->iterator_to (pitEntry), |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 476 | ll::bind (&CcnxPitEntry::SetExpireTime, ll::_1, |
| 477 | Simulator::Now () + m_pit->GetPitEntryPruningTimeout ())); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 478 | } |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | // Processing ContentObjects |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 482 | void |
| 483 | CcnxL3Protocol::OnData (const Ptr<CcnxFace> &incomingFace, |
| 484 | Ptr<CcnxContentObjectHeader> &header, |
| 485 | Ptr<Packet> &payload, |
| 486 | const Ptr<const Packet> &packet) |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 487 | { |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 488 | |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 489 | NS_LOG_FUNCTION (incomingFace << header << payload << packet); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 490 | // m_receivedDataTrace (header, payload, m_node->GetObject<Ccnx> ()/*this*/, incomingFace); |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 491 | |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 492 | // 1. Lookup PIT entry |
| 493 | try |
| 494 | { |
Alexander Afanasyev | cf133f0 | 2011-09-06 12:13:48 -0700 | [diff] [blame] | 495 | const CcnxPitEntry &pitEntry = m_pit->Lookup (*header); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 496 | |
| 497 | // Note that with MultiIndex we need to modify entries indirectly |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 498 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 499 | CcnxPitEntryOutgoingFaceContainer::type::iterator out = pitEntry.m_outgoing.find (incomingFace); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 500 | |
| 501 | // If we have sent interest for this data via this face, then update stats. |
| 502 | if (out != pitEntry.m_outgoing.end ()) |
| 503 | { |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 504 | m_fib->modify (m_fib->iterator_to (pitEntry.m_fibEntry), |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 505 | ll::bind (&CcnxFibEntry::UpdateFaceRtt, |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 506 | ll::_1, |
| 507 | incomingFace, |
| 508 | Simulator::Now () - out->m_sendTime)); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 509 | } |
| 510 | else |
| 511 | { |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 512 | // Unsolicited data, but we're interested in it... should we get it? |
| 513 | // Potential hole for attacks |
| 514 | |
| 515 | NS_LOG_ERROR ("Node "<< m_node->GetId() << |
| 516 | ". PIT entry for "<< header->GetName ()<<" is valid, " |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 517 | "but outgoing entry for interface "<< boost::cref(*incomingFace) <<" doesn't exist\n"); |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 518 | |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 519 | // ignore unsolicited data |
| 520 | return; |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 521 | } |
| 522 | |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 523 | // Update metric status for the incoming interface in the corresponding FIB entry |
| 524 | m_fib->modify (m_fib->iterator_to (pitEntry.m_fibEntry), |
| 525 | ll::bind (&CcnxFibEntry::UpdateStatus, ll::_1, |
| 526 | incomingFace, CcnxFibFaceMetric::NDN_FIB_GREEN)); |
| 527 | |
| 528 | // Add or update entry in the content store |
| 529 | m_contentStore->Add (header, payload); |
| 530 | |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 531 | //satisfy all pending incoming Interests |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 532 | BOOST_FOREACH (const CcnxPitEntryIncomingFace &incoming, pitEntry.m_incoming) |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 533 | { |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 534 | if (incoming.m_face != incomingFace) |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 535 | incoming.m_face->Send (packet->Copy ()); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 536 | |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 537 | // successfull forwarded data trace |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 538 | } |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 539 | // All incoming interests are satisfied. Remove them |
| 540 | m_pit->modify (m_pit->iterator_to (pitEntry), |
| 541 | ll::bind (&CcnxPitEntry::ClearIncoming, ll::_1)); |
| 542 | |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 543 | // Set pruning timout on PIT entry (instead of deleting the record) |
| 544 | m_pit->modify (m_pit->iterator_to (pitEntry), |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 545 | ll::bind (&CcnxPitEntry::SetExpireTime, ll::_1, |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 546 | Simulator::Now () + m_pit->GetPitEntryPruningTimeout ())); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 547 | } |
| 548 | catch (CcnxPitEntryNotFound) |
| 549 | { |
| 550 | // 2. Drop data packet if PIT entry is not found |
| 551 | // (unsolicited data packets should not "poison" content store) |
| 552 | |
| 553 | //drop dulicated or not requested data packet |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 554 | // m_droppedDataTrace (header, payload, NDN_UNSOLICITED_DATA, m_node->GetObject<Ccnx> (), incomingFace); |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 555 | return; // do not process unsoliced data packets |
| 556 | } |
| 557 | } |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 558 | |
| 559 | void |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 560 | CcnxL3Protocol::SetBucketLeakInterval (Time interval) |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 561 | { |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 562 | m_bucketLeakInterval = interval; |
| 563 | |
| 564 | if (m_bucketLeakEvent.IsRunning ()) |
| 565 | m_bucketLeakEvent.Cancel (); |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 566 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 567 | m_bucketLeakEvent = Simulator::Schedule (m_bucketLeakInterval, |
| 568 | &CcnxL3Protocol::LeakBuckets, this); |
Alexander Afanasyev | cf133f0 | 2011-09-06 12:13:48 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 571 | Time |
| 572 | CcnxL3Protocol::GetBucketLeakInterval () const |
Alexander Afanasyev | cf133f0 | 2011-09-06 12:13:48 -0700 | [diff] [blame] | 573 | { |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 574 | return m_bucketLeakInterval; |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 575 | } |
| 576 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 577 | void |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame^] | 578 | CcnxL3Protocol::LeakBuckets () |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 579 | { |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 580 | BOOST_FOREACH (const Ptr<CcnxFace> &face, m_faces) |
| 581 | { |
| 582 | face->LeakBucket (m_bucketLeakInterval); |
| 583 | } |
| 584 | |
| 585 | m_bucketLeakEvent = Simulator::Schedule (m_bucketLeakInterval, |
| 586 | &CcnxL3Protocol::LeakBuckets, this); |
Ilya Moiseenko | 172763c | 2011-10-28 13:21:53 -0700 | [diff] [blame] | 587 | } |
Ilya Moiseenko | d83eb0d | 2011-11-16 15:23:46 -0800 | [diff] [blame] | 588 | |
Alexander Afanasyev | 08d984e | 2011-08-13 19:20:22 -0700 | [diff] [blame] | 589 | } //namespace ns3 |