Kea  2.3.9
pkt6.h
Go to the documentation of this file.
1 // Copyright (C) 2011-2022 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef PKT6_H
8 #define PKT6_H
9 
10 #include <asiolink/io_address.h>
11 #include <dhcp/duid.h>
12 #include <dhcp/option.h>
13 #include <dhcp/pkt.h>
14 
15 #include <boost/date_time/posix_time/posix_time.hpp>
16 #include <boost/shared_array.hpp>
17 #include <boost/shared_ptr.hpp>
18 
19 #include <iostream>
20 #include <set>
21 
22 #include <time.h>
23 
24 namespace isc {
25 
26 namespace dhcp {
27 
28 class Pkt6;
29 
31 typedef boost::shared_ptr<Pkt6> Pkt6Ptr;
32 
44 class Pkt6 : public Pkt {
45 public:
47  const static size_t DHCPV6_PKT_HDR_LEN = 4;
48 
50  const static size_t DHCPV6_RELAY_HDR_LEN = 34;
51 
53  enum DHCPv6Proto {
54  UDP = 0, // most packets are UDP
55  TCP = 1 // there are TCP DHCPv6 packets (bulk leasequery, failover)
56  };
57 
78  RELAY_GET_LAST = 4
79  };
80 
85  struct RelayInfo {
86 
88  RelayInfo();
89 
92  std::string toText() const;
93 
94  uint8_t msg_type_;
95  uint8_t hop_count_;
98 
101  uint16_t relay_msg_len_;
102 
105  };
106 
112  Pkt6(uint8_t msg_type,
113  uint32_t transid,
114  DHCPv6Proto proto = UDP);
115 
123  Pkt6(const uint8_t* buf, uint32_t len, DHCPv6Proto proto = UDP);
124 
136  virtual void pack();
137 
144  virtual void unpack();
145 
150  return (proto_);
151  }
152 
156  void setProto(DHCPv6Proto proto = UDP) {
157  proto_ = proto;
158  }
159 
172  static std::string makeLabel(const DuidPtr duid, const uint32_t transid,
173  const HWAddrPtr& hwaddr);
174 
183  static std::string makeLabel(const DuidPtr duid, const HWAddrPtr& hwaddr);
184 
196  virtual std::string getLabel() const;
197 
203  virtual std::string toText() const;
204 
215  virtual size_t len();
216 
220  virtual uint8_t getType() const { return (msg_type_); }
221 
225  virtual void setType(uint8_t type) { msg_type_=type; };
226 
232  DuidPtr getClientId() const;
233 
234 
235 protected:
236 
250  OptionPtr getNonCopiedRelayOption(const uint16_t opt_type,
251  const uint8_t relay_level) const;
252 
266  OptionCollection getNonCopiedRelayOptions(const uint16_t opt_type,
267  const uint8_t relay_level) const;
268 
269 public:
270 
286  OptionPtr getRelayOption(uint16_t option_code, uint8_t nesting_level);
287 
303  OptionCollection getRelayOptions(uint16_t option_code,
304  uint8_t nesting_level);
305 
306 private:
307 
324  void prepareGetAnyRelayOption(const RelaySearchOrder& order,
325  int& start, int& end, int& direction) const;
326 
327 protected:
328 
341  OptionPtr getNonCopiedAnyRelayOption(const uint16_t option_code,
342  const RelaySearchOrder& order) const;
343 
356  OptionCollection getNonCopiedAllRelayOptions(const uint16_t option_code,
357  const RelaySearchOrder& order) const;
358 
359 public:
360 
371  OptionPtr getAnyRelayOption(const uint16_t option_code,
372  const RelaySearchOrder& order);
373 
386  OptionCollection getAllRelayOptions(const uint16_t option_code,
387  const RelaySearchOrder& order);
388 
403  getRelay6LinkAddress(uint8_t relay_level) const;
404 
419  getRelay6PeerAddress(uint8_t relay_level) const;
420 
427  void addRelayInfo(const RelayInfo& relay);
428 
440  static const char* getName(const uint8_t type);
441 
450  const char* getName() const;
451 
458  void copyRelayInfo(const Pkt6Ptr& question);
459 
473  std::vector<RelayInfo> relay_info_;
474 
475 protected:
476 
486 
488  // option inserted by a relay agent (RFC6939).
491  // client-linklayer-addr option inserted by the relay agent closest to
492  // the client.
496 
505  virtual HWAddrPtr getMACFromDUID();
506 
520 
533 
543 
549  void packTCP();
550 
554  void packUDP();
555 
566  void unpackTCP();
567 
576  void unpackUDP();
577 
587  void unpackMsg(OptionBuffer::const_iterator begin,
588  OptionBuffer::const_iterator end);
589 
597  void unpackRelayMsg();
598 
604  uint16_t getRelayOverhead(const RelayInfo& relay) const;
605 
608  uint16_t calculateRelaySizes();
609 
614  uint16_t directLen() const;
615 
618 
620  uint8_t msg_type_;
621 
622 }; // Pkt6 class
623 
624 } // isc::dhcp namespace
625 } // isc namespace
626 
627 #endif
Represents a DHCPv6 packet.
Definition: pkt6.h:44
virtual std::string toText() const
Returns text representation of the packet.
Definition: pkt6.cc:734
uint16_t calculateRelaySizes()
Calculates overhead for all relays defined for this message.
Definition: pkt6.cc:356
virtual HWAddrPtr getMACFromIPv6RelayOpt()
Extract MAC/Hardware address from client link-layer address.
Definition: pkt6.cc:915
DHCPv6Proto
DHCPv6 transport protocol.
Definition: pkt6.h:53
virtual std::string getLabel() const
Returns text representation of the primary packet identifiers.
Definition: pkt6.cc:726
virtual void setType(uint8_t type)
Sets message type (e.g.
Definition: pkt6.h:225
OptionCollection getRelayOptions(uint16_t option_code, uint8_t nesting_level)
Returns options inserted by relay.
Definition: pkt6.cc:297
static const size_t DHCPV6_PKT_HDR_LEN
specifies non-relayed DHCPv6 packet header length (over UDP)
Definition: pkt6.h:47
virtual size_t len()
Returns length of the packet.
Definition: pkt6.cc:63
virtual void pack()
Prepares on-wire format.
Definition: pkt6.cc:380
OptionPtr getRelayOption(uint16_t option_code, uint8_t nesting_level)
Returns option inserted by relay.
Definition: pkt6.cc:260
virtual HWAddrPtr getMACFromRemoteIdRelayOption()
Attempts to obtain MAC address from remote-id relay option.
Definition: pkt6.cc:1005
void unpackTCP()
Parses on-wire form of TCP DHCPv6 packet.
Definition: pkt6.cc:637
const char * getName() const
Returns name of the DHCPv6 message.
Definition: pkt6.cc:866
DHCPv6Proto getProto()
Returns protocol of this packet (UDP or TCP).
Definition: pkt6.h:149
virtual HWAddrPtr getMACFromSrcLinkLocalAddr()
Attempts to generate MAC/Hardware address from IPv6 link-local address.
Definition: pkt6.cc:904
OptionPtr getNonCopiedRelayOption(const uint16_t opt_type, const uint8_t relay_level) const
Returns pointer to an option inserted by relay agent.
Definition: pkt6.cc:242
void unpackRelayMsg()
Unpacks relayed message (RELAY-FORW or RELAY-REPL).
Definition: pkt6.cc:550
RelaySearchOrder
defines relay search pattern
Definition: pkt6.h:74
@ RELAY_GET_LAST
Definition: pkt6.h:78
@ RELAY_SEARCH_FROM_CLIENT
Definition: pkt6.h:75
@ RELAY_GET_FIRST
Definition: pkt6.h:77
@ RELAY_SEARCH_FROM_SERVER
Definition: pkt6.h:76
static std::string makeLabel(const DuidPtr duid, const uint32_t transid, const HWAddrPtr &hwaddr)
Returns text representation of the given packet identifiers.
Definition: pkt6.cc:695
OptionPtr getAnyRelayOption(const uint16_t option_code, const RelaySearchOrder &order)
Return first instance of a specified option.
Definition: pkt6.cc:138
DuidPtr getClientId() const
Retrieves the DUID from the Client Identifier option.
Definition: pkt6.cc:763
void packTCP()
Builds on wire packet for TCP transmission.
Definition: pkt6.cc:457
OptionPtr getNonCopiedAnyRelayOption(const uint16_t option_code, const RelaySearchOrder &order) const
Returns pointer to an instance of specified option.
Definition: pkt6.cc:106
void copyRelayInfo(const Pkt6Ptr &question)
copies relay information from client's packet to server's response
Definition: pkt6.cc:870
DHCPv6Proto proto_
UDP (usually) or TCP (bulk leasequery or failover)
Definition: pkt6.h:617
const isc::asiolink::IOAddress & getRelay6PeerAddress(uint8_t relay_level) const
return the peer address field from a relay option
Definition: pkt6.cc:336
virtual void unpack()
Dispatch method that handles binary packet parsing.
Definition: pkt6.cc:464
OptionCollection getAllRelayOptions(const uint16_t option_code, const RelaySearchOrder &order)
Return first instances of a specified option.
Definition: pkt6.cc:201
virtual HWAddrPtr getMACFromDUID()
Extract MAC/Hardware address from client-id.
Definition: pkt6.cc:643
virtual HWAddrPtr getMACFromDocsisCMTS()
Attempts to extract MAC/Hardware address from DOCSIS options.
Definition: pkt6.cc:971
const isc::asiolink::IOAddress & getRelay6LinkAddress(uint8_t relay_level) const
return the link address field from a relay option
Definition: pkt6.cc:326
OptionCollection getNonCopiedAllRelayOptions(const uint16_t option_code, const RelaySearchOrder &order) const
Returns pointers to instances of specified option.
Definition: pkt6.cc:171
std::vector< RelayInfo > relay_info_
Relay information.
Definition: pkt6.h:473
void setProto(DHCPv6Proto proto=UDP)
Sets protocol of this packet.
Definition: pkt6.h:156
uint8_t msg_type_
DHCPv6 message type.
Definition: pkt6.h:620
Pkt6(uint8_t msg_type, uint32_t transid, DHCPv6Proto proto=UDP)
Constructor, used in replying to a message.
Definition: pkt6.cc:58
void addRelayInfo(const RelayInfo &relay)
add information about one traversed relay
Definition: pkt6.cc:627
virtual HWAddrPtr getMACFromDocsisModem()
Attempts to extract MAC/Hardware address from DOCSIS options inserted by the modem itself.
Definition: pkt6.cc:943
OptionCollection getNonCopiedRelayOptions(const uint16_t opt_type, const uint8_t relay_level) const
Returns all option instances inserted by relay agent.
Definition: pkt6.cc:281
void packUDP()
Builds on wire packet for UDP transmission.
Definition: pkt6.cc:394
void unpackUDP()
Parses on-wire form of UDP DHCPv6 packet.
Definition: pkt6.cc:476
void unpackMsg(OptionBuffer::const_iterator begin, OptionBuffer::const_iterator end)
Unpacks direct (non-relayed) message.
Definition: pkt6.cc:506
uint16_t directLen() const
Calculates size of the message as if it was not relayed at all.
Definition: pkt6.cc:368
uint16_t getRelayOverhead(const RelayInfo &relay) const
Calculates overhead introduced in specified relay.
Definition: pkt6.cc:345
virtual uint8_t getType() const
Returns message type (e.g.
Definition: pkt6.h:220
static const size_t DHCPV6_RELAY_HDR_LEN
specifies relay DHCPv6 packet header length (over UDP)
Definition: pkt6.h:50
Base class for classes representing DHCP messages.
Definition: pkt.h:96
boost::shared_ptr< DUID > DuidPtr
Definition: duid.h:131
std::multimap< unsigned int, OptionPtr > OptionCollection
A collection of DHCP (v4 or v6) options.
Definition: option.h:40
boost::shared_ptr< HWAddr > HWAddrPtr
Shared pointer to a hardware address structure.
Definition: hwaddr.h:154
boost::shared_ptr< Pkt6 > Pkt6Ptr
A pointer to Pkt6 packet.
Definition: pkt6.h:28
boost::shared_ptr< Option > OptionPtr
Definition: option.h:36
Defines the logger used by the top-level component of kea-lfc.
structure that describes a single relay information
Definition: pkt6.h:85
RelayInfo()
default constructor
Definition: pkt6.cc:35
uint16_t relay_msg_len_
length of the relay_msg_len Used when calculating length during pack/unpack
Definition: pkt6.h:101
isc::dhcp::OptionCollection options_
options received from a specified relay, except relay-msg option
Definition: pkt6.h:104
uint8_t msg_type_
message type (RELAY-FORW oro RELAY-REPL)
Definition: pkt6.h:94
std::string toText() const
Returns printable representation of the relay information.
Definition: pkt6.cc:40
isc::asiolink::IOAddress linkaddr_
fixed field in relay-forw/relay-reply
Definition: pkt6.h:96
uint8_t hop_count_
number of traversed relays (up to 32)
Definition: pkt6.h:95
isc::asiolink::IOAddress peeraddr_
fixed field in relay-forw/relay-reply
Definition: pkt6.h:97