A Discrete-Event Network Simulator
API
peer-management-protocol.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008,2009 IITP RAS
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  * Authors: Kirill Andreev <andreev@iitp.ru>
19  * Aleksey Kovalenko <kovalenko@iitp.ru>
20  */
21 
22 #ifndef DOT11S_PEER_MAN_H
23 #define DOT11S_PEER_MAN_H
24 
25 #include "ns3/mac48-address.h"
26 #include "ns3/net-device.h"
27 #include "ns3/event-id.h"
28 #include "ns3/nstime.h"
29 #include "ns3/traced-value.h"
32 #include "peer-link.h"
33 
34 #include <map>
35 namespace ns3 {
36 class MeshPointDevice;
37 class UniformRandomVariable;
38 namespace dot11s {
39 class PeerManagementProtocolMac;
40 class PeerLink;
41 class IeMeshId;
42 class IePeerManagement;
43 class IeConfiguration;
50 {
51 public:
58  static TypeId GetTypeId ();
59  void DoDispose ();
82  Ptr<IeBeaconTiming> GetBeaconTimingElement (uint32_t interface);
90  void ReceiveBeacon (uint32_t interface, Mac48Address peerAddress, Time beaconInterval, Ptr<IeBeaconTiming> beaconTiming);
91  // \}
108  void ReceivePeerLinkFrame (
109  uint32_t interface,
110  Mac48Address peerAddress,
111  Mac48Address peerMeshPointAddress,
112  uint16_t aid,
113  IePeerManagement peerManagementElement,
114  IeConfiguration meshConfig
115  );
120  void ConfigurationMismatch (uint32_t interface, Mac48Address peerAddress);
124  void TransmissionFailure (uint32_t interface, const Mac48Address peerAddress);
128  void TransmissionSuccess (uint32_t interface, const Mac48Address peerAddress);
132  bool IsActiveLink (uint32_t interface, Mac48Address peerAddress);
133  // \}
135  // \{
139  Ptr<PeerLink> FindPeerLink (uint32_t interface, Mac48Address peerAddress);
141  std::vector < Ptr<PeerLink> > GetPeerLinks () const;
143  std::vector<Mac48Address> GetPeers (uint32_t interface) const;
154  uint8_t GetNumberOfLinks ();
159  void SetMeshId (std::string s);
164  Ptr<IeMeshId> GetMeshId () const;
169  void SetBeaconCollisionAvoidance (bool enable);
174  bool GetBeaconCollisionAvoidance () const;
180  void NotifyBeaconSent (uint32_t interface, Time beaconInterval);
181  // \}
182 
187  void Report (std::ostream & os) const;
189  void ResetStats ();
198  int64_t AssignStreams (int64_t stream);
199 
206  typedef void (* LinkOpenCloseTracedCallback)
207  (Mac48Address src, const Mac48Address dst);
208 
209 
210 private:
211  virtual void DoInitialize ();
212 
213  // Private structures
215  struct BeaconInfo
216  {
217  uint16_t aid;
220  };
223  typedef std::vector<Ptr<PeerLink> > PeerLinksOnInterface;
225  typedef std::map<uint32_t, PeerLinksOnInterface> PeerLinksMap;
227  typedef std::map<Mac48Address, BeaconInfo> BeaconsOnInterface;
229  typedef std::map<uint32_t, BeaconsOnInterface> BeaconInfoMap;
231  typedef std::map<uint32_t, Ptr<PeerManagementProtocolMac> > PeerManagementProtocolMacMap;
232 
233 private:
243 
253  uint32_t interface,
254  Mac48Address peerAddress,
255  Mac48Address peerMeshPointAddress
256  );
263  bool ShouldSendOpen (uint32_t interface, Mac48Address peerAddress);
267  bool ShouldAcceptOpen (uint32_t interface, Mac48Address peerAddress, PmpReasonCode & reasonCode);
271  void PeerLinkStatus (uint32_t interface, Mac48Address peerAddress, Mac48Address peerMeshPointAddres, PeerLink::PeerState ostate, PeerLink::PeerState nstate);
273  void CheckBeaconCollisions (uint32_t interface);
275  void ShiftOwnBeacon (uint32_t interface);
279  Time TuToTime (int x);
283  int TimeToTu (Time x);
284 
286  void NotifyLinkOpen (Mac48Address peerMp, Mac48Address peerIface, Mac48Address myIface, uint32_t interface);
288  void NotifyLinkClose (Mac48Address peerMp, Mac48Address peerIface, Mac48Address myIface, uint32_t interface);
289 private:
293 
294  uint16_t m_lastAssocId;
295  uint16_t m_lastLocalLinkId;
297  bool m_enableBca;
302  std::map<uint32_t, Time> m_lastBeacon;
304  std::map<uint32_t, Time> m_beaconInterval;
305 
318 
325 
327  struct Statistics {
328  uint16_t linksTotal;
329  uint16_t linksOpened;
330  uint16_t linksClosed;
331 
337  Statistics (uint16_t t = 0);
342  void Print (std::ostream & os) const;
343  };
345 
348 };
349 
350 } // namespace dot11s
351 } // namespace ns3
352 #endif
PeerLinksMap m_peerLinks
Simple link open/close trace source type. Addresses are: src interface, dst interface.
Time referenceTbtt
When one of my station&#39;s beacons was put into a beacon queue;.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
void NotifyLinkClose(Mac48Address peerMp, Mac48Address peerIface, Mac48Address myIface, uint32_t interface)
Aux. method to register closed links.
virtual void DoInitialize()
Initialize() implementation.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
Callback template class.
Definition: callback.h:1176
PeerManagementProtocol & operator=(const PeerManagementProtocol &peer)
assignment operator
uint8_t m_maxNumberOfPeerLinks
maimum number of peer links
Time beaconInterval
Beacon interval of my station;.
void NotifyLinkOpen(Mac48Address peerMp, Mac48Address peerIface, Mac48Address myIface, uint32_t interface)
Aux. method to register open links.
Ptr< UniformRandomVariable > m_beaconShift
Add randomness to beacon shift.
static TypeId GetTypeId()
Get the type ID.
Ptr< PeerLink > FindPeerLink(uint32_t interface, Mac48Address peerAddress)
Find active peer link by my interface and peer interface MAC.
LinkEventCallback m_linkCloseTraceSrc
LinkClose trace source.
TracedCallback< Mac48Address, Mac48Address > LinkEventCallback
Simple link open/close trace source type. Addresses are: src interface, dst interface.
uint16_t m_lastLocalLinkId
last local link ID
bool IsActiveLink(uint32_t interface, Mac48Address peerAddress)
Checks if there is established link.
std::vector< Ptr< PeerLink > > PeerLinksOnInterface
We keep a vector of pointers to PeerLink class.
according to IEEE 802.11 - 2012
void Report(std::ostream &os) const
: Report statistics
std::vector< Ptr< PeerLink > > GetPeerLinks() const
Get list of all active peer links.
void SetMeshId(std::string s)
Set mesh ID to a string value.
void DoDispose()
Destructor implementation.
void NotifyBeaconSent(uint32_t interface, Time beaconInterval)
Notify about beacon send event, needed to schedule BCA.
Mac48Address GetAddress()
Get mesh point address.
void SetPeerLinkStatusCallback(Callback< void, Mac48Address, Mac48Address, uint32_t, bool > cb)
Set peer link status change callback.
uint8_t GetNumberOfLinks()
Get number of links.
std::vector< Mac48Address > GetPeers(uint32_t interface) const
Get list of active peers of my given interface.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::map< uint32_t, PeerLinksOnInterface > PeerLinksMap
This map keeps all peer links.
void(* LinkOpenCloseTracedCallback)(Mac48Address src, const Mac48Address dst)
TracedCallback signature for link open/close events.
PeerManagementProtocolMacMap m_plugins
plugins
an EUI-48 address
Definition: mac48-address.h:43
LinkEventCallback m_linkOpenTraceSrc
LinkOpen trace source.
void ShiftOwnBeacon(uint32_t interface)
Shift own beacon function.
void ReceivePeerLinkFrame(uint32_t interface, Mac48Address peerAddress, Mac48Address peerMeshPointAddress, uint16_t aid, IePeerManagement peerManagementElement, IeConfiguration meshConfig)
Methods that handle Peer link management frames interaction:
void ResetStats()
Reset statistics function.
Ptr< IeBeaconTiming > GetBeaconTimingElement(uint32_t interface)
When we are sending a beacon - we fill beacon timing element.
void PeerLinkStatus(uint32_t interface, Mac48Address peerAddress, Mac48Address peerMeshPointAddres, PeerLink::PeerState ostate, PeerLink::PeerState nstate)
Indicates changes in peer links.
bool ShouldSendOpen(uint32_t interface, Mac48Address peerAddress)
Indicates changes in peer links.
std::map< Mac48Address, BeaconInfo > BeaconsOnInterface
This map keeps relationship between peer address and its beacon information.
void ConfigurationMismatch(uint32_t interface, Mac48Address peerAddress)
Cancels peer link due to broken configuration (Mesh ID or Supported rates)
void TransmissionFailure(uint32_t interface, const Mac48Address peerAddress)
Cancels peer link due to successive transmission failures.
Ptr< IeMeshId > GetMeshId() const
Get mesh ID information element.
bool GetBeaconCollisionAvoidance() const
Get beacon collision avoidance.
void CheckBeaconCollisions(uint32_t interface)
BCA.
std::map< uint32_t, Time > m_lastBeacon
Last beacon at each interface.
PmpReasonCode
Codes used by 802.11s Peer Management Protocol.
bool ShouldAcceptOpen(uint32_t interface, Mac48Address peerAddress, PmpReasonCode &reasonCode)
Indicates changes in peer links.
bool m_enableBca
Flag which enables BCA.
void ReceiveBeacon(uint32_t interface, Mac48Address peerAddress, Time beaconInterval, Ptr< IeBeaconTiming > beaconTiming)
To initiate peer link we must notify about received beacon.
Describes Mesh Configuration Element see 7.3.2.86 of 802.11s draft 3.0.
std::map< uint32_t, Time > m_beaconInterval
Beacon interval at each interface.
void SetBeaconCollisionAvoidance(bool enable)
Enable or disable beacon collision avoidance.
A base class which provides memory management and object aggregation.
Definition: object.h:87
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
std::map< uint32_t, Ptr< PeerManagementProtocolMac > > PeerManagementProtocolMacMap
this vector keeps pointers to MAC-plugins
Keeps information about beacon of peer station: beacon interval, association ID, last time we have re...
uint16_t m_maxBeaconShift
Beacon can be shifted at [-m_maxBeaconShift; +m_maxBeaconShift] TUs.
Callback< void, Mac48Address, Mac48Address, uint32_t, bool > m_peerStatusCallback
Callback to notify about peer link changes: Mac48Address is peer address of mesh point, Mac48Address is peer address of interface, uint32_t - interface ID, bool is status - true when new link has appeared, false - when link was closed,.
std::map< uint32_t, BeaconsOnInterface > BeaconInfoMap
This map keeps beacon information on all interfaces.
a unique identifier for an interface.
Definition: type-id.h:58
Ptr< PeerLink > InitiateLink(uint32_t interface, Mac48Address peerAddress, Mac48Address peerMeshPointAddress)
Initiate link function.
bool Install(Ptr< MeshPointDevice >)
Install PMP on given mesh point.
void Print(std::ostream &os) const
Print function.
void TransmissionSuccess(uint32_t interface, const Mac48Address peerAddress)
resets transmission failure statistics
802.11s Peer Management Protocol model