blob: fd03be9e5ef3ba915e5698ef707e9672ab90c2bb [file] [log] [blame]
Alexander Afanasyevc74a6022011-08-15 20:01:35 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev7112f482011-08-17 14:05:57 -07002/*
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>
19 */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070020
21#ifndef CCNX_L3_PROTOCOL_H
22#define CCNX_L3_PROTOCOL_H
23
24#include <list>
25#include <vector>
26#include <stdint.h>
27#include "ns3/ptr.h"
28#include "ns3/net-device.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070029#include "ns3/traced-callback.h"
30
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -070031#include "ccnx-content-store.h"
32#include "ccnx-rit.h"
33#include "ccnx-pit.h"
34#include "ccnx-fib.h"
35
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070036#include "ccnx.h"
37
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070038namespace ns3 {
39
40class Packet;
41class NetDevice;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070042class Node;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070043class CcnxFace;
44class CcnxRoute;
Alexander Afanasyevc74a6022011-08-15 20:01:35 -070045class CcnxForwardingStrategy;
46class Header;
47class CcnxInterestHeader;
48class CcnxContentObjectHeader;
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -070049
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070050/**
Alexander Afanasyev7112f482011-08-17 14:05:57 -070051 * \ingroup ccnx
52 * \brief Actual implementation of the Ccnx network layer
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070053 *
Alexander Afanasyev7112f482011-08-17 14:05:57 -070054 * \todo This description is incorrect. Should be changed accordingly
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070055 *
56 * This class contains two distinct groups of trace sources. The
57 * trace sources 'Rx' and 'Tx' are called, respectively, immediately
58 * after receiving from the NetDevice and immediately before sending
59 * to a NetDevice for transmitting a packet. These are low level
60 * trace sources that include the CcnxHeader already serialized into
61 * the packet. In contrast, the Drop, SendOutgoing, UnicastForward,
62 * and LocalDeliver trace sources are slightly higher-level and pass
63 * around the CcnxHeader as an explicit parameter and not as part of
64 * the packet.
65 */
66class CcnxL3Protocol : public Ccnx
67{
68public:
Alexander Afanasyev7112f482011-08-17 14:05:57 -070069 /**
70 * \brief Interface ID
71 *
72 * \return interface ID
73 */
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070074 static TypeId GetTypeId ();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070075
Alexander Afanasyev7112f482011-08-17 14:05:57 -070076 static const uint16_t ETHERNET_FRAME_TYPE; ///< \brief Ethernet Frame Type of CCNx
77 static const uint16_t IP_PROTOCOL_TYPE; ///< \brief IP protocol type of CCNx
78 static const uint16_t UDP_PORT; ///< \brief UDP port of CCNx
79
80 /**
81 * \brief Default constructor. Creates an empty stack without forwarding strategy set
82 */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070083 CcnxL3Protocol();
84 virtual ~CcnxL3Protocol ();
85
86 /**
87 * \enum DropReason
88 * \brief Reason why a packet has been dropped.
89 */
90 enum DropReason
91 {
Alexander Afanasyev98256102011-08-14 01:00:02 -070092 /** \todo Fill reasons from QualNet code */
93 DROP_DUPLICATE_INTEREST=1, /**< Duplicate Interest */
94 DROP_CONGESTION, /**< Congestion detected */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070095 DROP_NO_ROUTE, /**< No route to host */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070096 DROP_INTERFACE_DOWN, /**< Interface is down so can not send packet */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070097 };
98
Alexander Afanasyev7112f482011-08-17 14:05:57 -070099 /**
100 * \brief Assigns node to the CCNx stack
101 *
102 * \param node Simulation node
103 */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700104 void SetNode (Ptr<Node> node);
105
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700106 ////////////////////////////////////////////////////////////////////
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700107 // functions defined in base class Ccnx
Alexander Afanasyev98256102011-08-14 01:00:02 -0700108
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700109 void SetForwardingStrategy (Ptr<CcnxForwardingStrategy> forwardingStrategy);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700110 Ptr<CcnxForwardingStrategy> GetForwardingStrategy () const;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700111
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700112 virtual void Send (const Ptr<CcnxFace> &face, const Ptr<Packet> &packet);
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700113 virtual void Receive (const Ptr<CcnxFace> &face, const Ptr<const Packet> &p);
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700114
115 virtual uint32_t AddFace (const Ptr<CcnxFace> &face);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700116 virtual uint32_t GetNFaces () const;
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700117 virtual Ptr<CcnxFace> GetFace (uint32_t face) const;
118
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700119protected:
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700120 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700121 * \brief Actual processing of incoming CCNx interests
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700122 *
123 * Processing Interest packets
Alexander Afanasyev98256102011-08-14 01:00:02 -0700124 */
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700125 virtual void
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700126 OnInterest (const Ptr<CcnxFace> &face,
127 Ptr<CcnxInterestHeader> &header,
128 Ptr<Packet> &p);
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700129
130
131 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700132 * \brief Actual processing of incoming CCNx content objects
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700133 *
134 * Processing ContentObject packets
135 */
136 virtual void
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700137 OnData (const Ptr<CcnxFace> &face,
138 Ptr<CcnxContentObjectHeader> &header,
139 Ptr<Packet> &p);
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700140
141protected:
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700142 virtual void DoDispose (void);
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700143
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700144 /**
145 * This function will notify other components connected to the node that a new stack member is now connected
146 * This will be used to notify Layer 3 protocol of layer 4 protocol stack to connect them together.
147 */
148 virtual void NotifyNewAggregate ();
Alexander Afanasyev98256102011-08-14 01:00:02 -0700149
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700150private:
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700151 CcnxL3Protocol(const CcnxL3Protocol &); ///< copy constructor is disabled
152 CcnxL3Protocol &operator = (const CcnxL3Protocol &); ///< copy operator is disabled
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700153
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700154 // /**
155 // * \brief Fake function. should never be called. Just to trick C++ to compile
156 // */
157 // virtual void
158 // ReceiveAndProcess (const Ptr<CcnxFace> face, Ptr<Header> header, Ptr<Packet> p);
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700159
Alexander Afanasyev98256102011-08-14 01:00:02 -0700160private:
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700161 uint32_t m_faceCounter; ///< \brief counter of faces. Increased every time a new face is added to the stack
Alexander Afanasyev98256102011-08-14 01:00:02 -0700162 typedef std::vector<Ptr<CcnxFace> > CcnxFaceList;
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700163 CcnxFaceList m_faces; ///< \brief list of faces that belongs to ccnx stack on this node
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700164
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700165 Ptr<Node> m_node; ///< \brief node on which ccnx stack is installed
166 Ptr<CcnxForwardingStrategy> m_forwardingStrategy; ///< \brief smart pointer to the selected forwarding strategy
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700167
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700168 CcnxRit m_rit; ///< \brief RIT (recently interest table)
169 CcnxPit m_pit; ///< \brief PIT (pending interest table)
170 CcnxFib m_fib; ///< \brief FIB
Alexander Afanasyev070aa482011-08-20 00:38:25 -0700171
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700172 CcnxContentStore m_contentStore; ///< \brief Content store (for caching purposes only)
173
174 TracedCallback<Ptr<const Packet>, Ptr<Ccnx>, Ptr<const CcnxFace> > m_receivedInterestsTrace;
175 TracedCallback<Ptr<const Packet>, Ptr<Ccnx>, Ptr<const CcnxFace> > m_transmittedInterestsTrace;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700176
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700177 TracedCallback<Ptr<const Packet>, Ptr<Ccnx>, Ptr<const CcnxFace> > m_receivedDataTrace;
178 TracedCallback<Ptr<const Packet>, Ptr<Ccnx>, Ptr<const CcnxFace> > m_transmittedDataTrace;
179
Alexander Afanasyev070aa482011-08-20 00:38:25 -0700180 /**
181 * \brief Trace of dropped packets, including reason and all headers
182 * \internal
183 */
184 TracedCallback<Ptr<const Packet>, DropReason, Ptr<const Ccnx>, Ptr<const CcnxFace> > m_dropTrace;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700185};
186
187} // Namespace ns3
188
189#endif /* CCNX_L3_PROTOCOL_H */