/usr/include/ns3.26/ns3/icmpv6-l4-protocol.h is in libns3-dev 3.26+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2007-2009 Strasbourg University
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Sebastien Vincent <vincent@clarinet.u-strasbg.fr>
* David Gross <gdavid.devel@gmail.com>
* Mehdi Benamor <benamor.mehdi@ensi.rnu.tn>
*/
#ifndef ICMPV6_L4_PROTOCOL_H
#define ICMPV6_L4_PROTOCOL_H
#include <list>
#include "ns3/ipv6-address.h"
#include "ns3/random-variable-stream.h"
#include "icmpv6-header.h"
#include "ip-l4-protocol.h"
#include "ndisc-cache.h"
namespace ns3 {
class NetDevice;
class Node;
class Packet;
class TraceContext;
/**
* \ingroup ipv6
* \defgroup icmpv6 ICMPv6 protocol and associated headers.
*/
/**
* \ingroup icmpv6
*
* \brief An implementation of the ICMPv6 protocol.
*/
class Icmpv6L4Protocol : public IpL4Protocol
{
public:
/**
* \brief Interface ID
*/
static TypeId GetTypeId ();
/**
* \brief ICMPv6 protocol number (58).
*/
static const uint8_t PROT_NUMBER;
/**
* \brief Neighbor Discovery router constants : max initial RA initial interval.
*/
static const uint8_t MAX_INITIAL_RTR_ADVERT_INTERVAL;
/**
* \brief Neighbor Discovery router constants : max initial RA transmission.
*/
static const uint8_t MAX_INITIAL_RTR_ADVERTISEMENTS;
/**
* \brief Neighbor Discovery router constants : max final RA transmission.
*/
static const uint8_t MAX_FINAL_RTR_ADVERTISEMENTS;
/**
* \brief Neighbor Discovery router constants : min delay between RA.
*/
static const uint8_t MIN_DELAY_BETWEEN_RAS;
/**
* \brief Neighbor Discovery router constants : max delay between RA.
*/
static const uint32_t MAX_RA_DELAY_TIME;
/**
* \brief Neighbor Discovery host constants : max RS delay.
*/
static const uint8_t MAX_RTR_SOLICITATION_DELAY;
/**
* \brief Neighbor Discovery host constants : RS interval.
*/
static const uint8_t RTR_SOLICITATION_INTERVAL;
/**
* \brief Neighbor Discovery host constants : max RS transmission.
*/
static const uint8_t MAX_RTR_SOLICITATIONS;
/**
* \brief Neighbor Discovery node constants : max multicast solicitations.
*/
static const uint8_t MAX_MULTICAST_SOLICIT;
/**
* \brief Neighbor Discovery node constants : max unicast solicitations.
*/
static const uint8_t MAX_UNICAST_SOLICIT;
/**
* \brief Neighbor Discovery node constants : max anycast delay.
*/
static const uint8_t MAX_ANYCAST_DELAY_TIME;
/**
* \brief Neighbor Discovery node constants : max NA transmission.
*/
static const uint8_t MAX_NEIGHBOR_ADVERTISEMENT;
/**
* \brief Neighbor Discovery node constants : reachable time.
*/
static const uint32_t REACHABLE_TIME;
/**
* \brief Neighbor Discovery node constants : retransmission timer.
*/
static const uint32_t RETRANS_TIMER;
/**
* \brief Neighbor Discovery node constants : delay for the first probe.
*/
static const uint8_t DELAY_FIRST_PROBE_TIME;
/**
* \brief Neighbor Discovery node constants : min random factor.
*/
static const double MIN_RANDOM_FACTOR;
/**
* \brief Neighbor Discovery node constants : max random factor.
*/
static const double MAX_RANDOM_FACTOR;
/**
* \brief Get ICMPv6 protocol number.
* \return protocol number
*/
static uint16_t GetStaticProtocolNumber ();
/**
* \brief Constructor.
*/
Icmpv6L4Protocol ();
/**
* \brief Destructor.
*/
virtual ~Icmpv6L4Protocol ();
/**
* \brief Set the node.
* \param node the node to set
*/
void SetNode (Ptr<Node> node);
/**
* \brief This method is called by AddAgregate and completes the aggregation
* by setting the node in the ICMPv6 stack and adding ICMPv6 factory to
* IPv6 stack connected to the node.
*/
void NotifyNewAggregate ();
/**
* \brief Get the protocol number.
* \return protocol number
*/
virtual int GetProtocolNumber () const;
/**
* \brief Get the version of the protocol.
* \return version
*/
virtual int GetVersion () const;
/**
* \brief Send a packet via ICMPv6, note that packet already contains ICMPv6 header.
* \param packet the packet to send which contains ICMPv6 header
* \param src source address
* \param dst destination address
* \param ttl next hop limit
*/
void SendMessage (Ptr<Packet> packet, Ipv6Address src, Ipv6Address dst, uint8_t ttl);
/**
* \brief Helper function used during delayed solicitation. Calls SendMessage internally
* \param packet the packet to send which contains ICMPv6 header
* \param src source address
* \param dst destination address
* \param ttl next hop limit
*/
void DelayedSendMessage (Ptr<Packet> packet, Ipv6Address src, Ipv6Address dst, uint8_t ttl);
/**
* \brief Send a packet via ICMPv6.
* \param packet the packet to send
* \param dst destination address
* \param icmpv6Hdr ICMPv6 header (needed to calculate checksum
* after source address is determined by routing stuff
* \param ttl next hop limit
*/
void SendMessage (Ptr<Packet> packet, Ipv6Address dst, Icmpv6Header& icmpv6Hdr, uint8_t ttl);
/**
* \brief Do the Duplication Address Detection (DAD).
* It consists in sending a NS with our IPv6 as target. If
* we received a NA with matched target address, we could not use
* the address, else the address pass from TENTATIVE to PERMANENT.
*
* \param target target address
* \param interface interface
*/
void DoDAD (Ipv6Address target, Ptr<Ipv6Interface> interface);
/**
* \brief Send a Neighbor Adverstisement.
* \param src source IPv6 address
* \param dst destination IPv6 address
* \param hardwareAddress our MAC address
* \param flags to set (4 = flag R, 2 = flag S, 3 = flag O)
*/
void SendNA (Ipv6Address src, Ipv6Address dst, Address* hardwareAddress, uint8_t flags);
/**
* \brief Send a Echo Reply.
* \param src source IPv6 address
* \param dst destination IPv6 address
* \param id id of the packet
* \param seq sequence number
* \param data auxiliary data
*/
void SendEchoReply (Ipv6Address src, Ipv6Address dst, uint16_t id, uint16_t seq, Ptr<Packet> data);
/**
* \brief Send a Neighbor Solicitation.
* \param src source IPv6 address
* \param dst destination IPv6 address
* \param target target IPv6 address
* \param hardwareAddress our mac address
*/
void SendNS (Ipv6Address src, Ipv6Address dst, Ipv6Address target, Address hardwareAddress);
/**
* \brief Send an error Destination Unreachable.
* \param malformedPacket the malformed packet
* \param dst destination IPv6 address
* \param code code of the error
*/
void SendErrorDestinationUnreachable (Ptr<Packet> malformedPacket, Ipv6Address dst, uint8_t code);
/**
* \brief Send an error Too Big.
* \param malformedPacket the malformed packet
* \param dst destination IPv6 address
* \param mtu the mtu
*/
void SendErrorTooBig (Ptr<Packet> malformedPacket, Ipv6Address dst, uint32_t mtu);
/**
* \brief Send an error Time Exceeded.
* \param malformedPacket the malformed packet
* \param dst destination IPv6 address
* \param code code of the error
*/
void SendErrorTimeExceeded (Ptr<Packet> malformedPacket, Ipv6Address dst, uint8_t code);
/**
* \brief Send an error Parameter Error.
* \param malformedPacket the malformed packet
* \param dst destination IPv6 address
* \param code code of the error
* \param ptr byte of p where the error is located
*/
void SendErrorParameterError (Ptr<Packet> malformedPacket, Ipv6Address dst, uint8_t code, uint32_t ptr);
/**
* \brief Send an ICMPv6 Redirection.
* \param redirectedPacket the redirected packet
* \param src IPv6 address to send the redirect from
* \param dst IPv6 address to send the redirect to
* \param redirTarget IPv6 target address for Icmpv6Redirection
* \param redirDestination IPv6 destination address for Icmpv6Redirection
* \param redirHardwareTarget L2 target address for Icmpv6OptionRdirected
*/
void SendRedirection (Ptr<Packet> redirectedPacket, Ipv6Address src, Ipv6Address dst, Ipv6Address redirTarget, Ipv6Address redirDestination, Address redirHardwareTarget);
/**
* \brief Forge a Neighbor Solicitation.
* \param src source IPv6 address
* \param dst destination IPv6 address
* \param target target IPv6 address
* \param hardwareAddress our mac address
* \return NS packet (with IPv6 header)
*/
NdiscCache::Ipv6PayloadHeaderPair ForgeNS (Ipv6Address src, Ipv6Address dst, Ipv6Address target, Address hardwareAddress);
/**
* \brief Forge a Neighbor Advertisement.
* \param src source IPv6 address
* \param dst destination IPv6 address
* \param hardwareAddress our mac address
* \param flags flags (bitfield => R (4), S (2), O (1))
* \return NA packet (with IPv6 header)
*/
NdiscCache::Ipv6PayloadHeaderPair ForgeNA (Ipv6Address src, Ipv6Address dst, Address* hardwareAddress, uint8_t flags);
/**
* \brief Forge a Router Solicitation.
* \param src source IPv6 address
* \param dst destination IPv6 address
* \param hardwareAddress our mac address
* \return RS packet (with IPv6 header)
*/
NdiscCache::Ipv6PayloadHeaderPair ForgeRS (Ipv6Address src, Ipv6Address dst, Address hardwareAddress);
/**
* \brief Forge an Echo Request.
* \param src source address
* \param dst destination address
* \param id ID of the packet
* \param seq sequence number
* \param data the data
* \return Echo Request packet (with IPv6 header)
*/
NdiscCache::Ipv6PayloadHeaderPair ForgeEchoRequest (Ipv6Address src, Ipv6Address dst, uint16_t id, uint16_t seq, Ptr<Packet> data);
/**
* \brief Receive method.
* \param p the packet
* \param header the IPv4 header
* \param interface the interface from which the packet is coming
* \returns the receive status
*/
virtual enum IpL4Protocol::RxStatus Receive (Ptr<Packet> p,
Ipv4Header const &header,
Ptr<Ipv4Interface> interface);
/**
* \brief Receive method.
* \param p the packet
* \param header the IPv6 header
* \param interface the interface from which the packet is coming
* \returns the receive status
*/
virtual enum IpL4Protocol::RxStatus Receive (Ptr<Packet> p,
Ipv6Header const &header,
Ptr<Ipv6Interface> interface);
/**
* \brief Function called when DAD timeout.
* \param icmpv6 Icmpv6L4Protocol instance
* \param interface the interface
* \param addr the IPv6 address
*/
static void FunctionDadTimeout (Ptr<Icmpv6L4Protocol> icmpv6, Ipv6Interface* interface, Ipv6Address addr);
/**
* \brief Lookup in the ND cache for the IPv6 address
*
* \note Unlike other Lookup method, it does not send NS request!
*
* \param dst destination address
* \param device device
* \param cache the neighbor cache
* \param hardwareDestination hardware address
* \return true if the address is in the ND cache, the hardwareDestination is updated.
*/
bool Lookup (Ipv6Address dst, Ptr<NetDevice> device, Ptr<NdiscCache> cache, Address* hardwareDestination);
/**
* \brief Lookup in the ND cache for the IPv6 address (similar as ARP protocol).
*
* It also send NS request to target and store the waiting packet.
* \param p the packet
* \param ipHeader IPv6 header
* \param dst destination address
* \param device device
* \param cache the neighbor cache
* \param hardwareDestination hardware address
* \return true if the address is in the ND cache, the hardwareDestination is updated.
*/
bool Lookup (Ptr<Packet> p, const Ipv6Header & ipHeader, Ipv6Address dst, Ptr<NetDevice> device, Ptr<NdiscCache> cache, Address* hardwareDestination);
/**
* \brief Send a Router Solicitation.
* \param src link-local source address
* \param dst destination address (usealy ff02::2 i.e all-routers)
* \param hardwareAddress link-layer address (SHOULD be included if src is not ::)
*/
void SendRS (Ipv6Address src, Ipv6Address dst, Address hardwareAddress);
/**
* \brief Create a neighbor cache.
* \param device thet NetDevice
* \param interface the IPv6 interface
* \return a smart pointer of NdCache or 0 if problem
*/
Ptr<NdiscCache> CreateCache (Ptr<NetDevice> device, Ptr<Ipv6Interface> interface);
/**
* \brief Is the node must do DAD.
* \return true if node has to do DAD.
*/
bool IsAlwaysDad () const;
/**
* Assign a fixed random variable stream number to the random variables
* used by this model. Return the number of streams (possibly zero) that
* have been assigned.
*
* \param stream first stream index to use
* \return the number of stream indices assigned by this model
*/
int64_t AssignStreams (int64_t stream);
protected:
/**
* \brief Dispose this object.
*/
virtual void DoDispose ();
private:
typedef std::list<Ptr<NdiscCache> > CacheList; //!< container of NdiscCaches
/**
* \brief The node.
*/
Ptr<Node> m_node;
/**
* \brief A list of cache by device.
*/
CacheList m_cacheList;
/**
* \brief Always do DAD ?
*/
bool m_alwaysDad;
/**
* \brief Random jitter before sending solicitations
*/
Ptr<RandomVariableStream> m_solicitationJitter;
/**
* \brief Notify an ICMPv6 reception to upper layers (if requested).
* \param source the ICMP source
* \param icmp the ICMP header
* \param info information about the ICMP
* \param ipHeader the IP header carried by the ICMP
* \param payload the data carried by the ICMP
*/
void Forward (Ipv6Address source, Icmpv6Header icmp,
uint32_t info, Ipv6Header ipHeader,
const uint8_t payload[8]);
/**
* \brief Receive Neighbor Solicitation method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleNS (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Router Solicitation method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleRS (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Router Advertisement method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleRA (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Echo Request method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleEchoRequest (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Neighbor Advertisement method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleNA (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Redirection method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleRedirection (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Destination Unreachable method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleDestinationUnreachable (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Time Exceeded method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleTimeExceeded (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Packet Too Big method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandlePacketTooBig (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Receive Parameter Error method.
* \param p the packet
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void HandleParameterError (Ptr<Packet> p, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Link layer address option processing.
* \param lla LLA option
* \param src source address
* \param dst destination address
* \param interface the interface from which the packet is coming
*/
void ReceiveLLA (Icmpv6OptionLinkLayerAddress lla, Ipv6Address const &src, Ipv6Address const &dst, Ptr<Ipv6Interface> interface);
/**
* \brief Get the cache corresponding to the device.
* \param device the device
* \returns the NdiscCache associated with the device
*/
Ptr<NdiscCache> FindCache (Ptr<NetDevice> device);
// From IpL4Protocol
virtual void SetDownTarget (IpL4Protocol::DownTargetCallback cb);
virtual void SetDownTarget6 (IpL4Protocol::DownTargetCallback6 cb);
// From IpL4Protocol
virtual IpL4Protocol::DownTargetCallback GetDownTarget (void) const;
virtual IpL4Protocol::DownTargetCallback6 GetDownTarget6 (void) const;
IpL4Protocol::DownTargetCallback6 m_downTarget; //!< callback to Ipv6::Send
};
} /* namespace ns3 */
#endif /* ICMPV6_L4_PROTOCOL_H */
|