Kea 2.7.5
|
Represents DHCPv6 Client FQDN Option (code 39). More...
#include <option6_client_fqdn.h>
A set of constants setting respective bits in 'flags' field | |
enum | DomainNameType : int { PARTIAL , FULL } |
Type of the domain-name: partial or full. More... | |
static const uint8_t | FLAG_S = 0x01 |
S bit. | |
static const uint8_t | FLAG_O = 0x02 |
O bit. | |
static const uint8_t | FLAG_N = 0x04 |
N bit. | |
static const uint8_t | FLAG_MASK = 0x7 |
Mask which zeroes MBZ flag bits. | |
static const uint16_t | FLAG_FIELD_LEN = 1 |
The length of the flag field within DHCPv6 Client Fqdn Option. | |
Option6ClientFqdn (const uint8_t flags, const std::string &domain_name, const DomainNameType domain_name_type=FULL) | |
Constructor, creates option instance using flags and domain name. | |
Option6ClientFqdn (const uint8_t flags) | |
Constructor, creates option instance using flags. | |
Option6ClientFqdn (OptionBufferConstIter first, OptionBufferConstIter last) | |
Constructor, creates an option instance from part of the buffer. | |
Option6ClientFqdn (const Option6ClientFqdn &source) | |
Copy constructor. | |
virtual OptionPtr | clone () const |
Copies this option and returns a pointer to the copy. | |
virtual | ~Option6ClientFqdn () |
Destructor. | |
Option6ClientFqdn & | operator= (const Option6ClientFqdn &source) |
Assignment operator. | |
bool | getFlag (const uint8_t flag) const |
Checks if the specified flag of the DHCPv6 Client FQDN Option is set. | |
void | setFlag (const uint8_t flag, const bool set) |
Modifies the value of the specified DHCPv6 Client Fqdn Option flag. | |
void | resetFlags () |
Sets the flag field value to 0. | |
std::string | getDomainName () const |
Returns the domain-name in the text format. | |
void | packDomainName (isc::util::OutputBuffer &buf) const |
Writes domain-name in the wire format into a buffer. | |
void | setDomainName (const std::string &domain_name, const DomainNameType domain_name_type) |
Set new domain-name. | |
void | resetDomainName () |
Set empty domain-name. | |
DomainNameType | getDomainNameType () const |
Returns enumerator value which indicates whether domain-name is partial or full. | |
virtual void | pack (isc::util::OutputBuffer &buf, bool check=true) const |
Writes option in the wire format into a buffer. | |
virtual void | unpack (OptionBufferConstIter first, OptionBufferConstIter last) |
Parses option from the received buffer. | |
virtual std::string | toText (int indent=0) const |
Returns string representation of the option. | |
virtual uint16_t | len () const |
Returns length of the complete option (data length + DHCPv6 option header). | |
Additional Inherited Members | |
Public Types inherited from isc::dhcp::Option | |
typedef OptionPtr | Factory(Option::Universe u, uint16_t type, const OptionBuffer &buf) |
a factory function prototype | |
enum | Universe { V4 , V6 } |
defines option universe DHCPv4 or DHCPv6 More... | |
Public Member Functions inherited from isc::dhcp::Option | |
Option (const Option &source) | |
Copy constructor. | |
Option (Universe u, uint16_t type) | |
ctor, used for options constructed, usually during transmission | |
Option (Universe u, uint16_t type, const OptionBuffer &data) | |
Constructor, used for received options. | |
Option (Universe u, uint16_t type, OptionBufferConstIter first, OptionBufferConstIter last) | |
Constructor, used for received options. | |
virtual | ~Option () |
just to force that every option has virtual dtor | |
void | addOption (OptionPtr opt) |
Adds a sub-option. | |
bool | delOption (uint16_t type) |
Attempts to delete first suboption of requested type. | |
virtual bool | equals (const Option &other) const |
Checks if two options are equal. | |
bool | equals (const OptionPtr &other) const |
Checks if options are equal. | |
virtual const OptionBuffer & | getData () const |
Returns pointer to actual data. | |
std::string | getEncapsulatedSpace () const |
Returns the name of the option space encapsulated by this option. | |
virtual uint16_t | getHeaderLen () const |
Returns length of header (2 for v4, 4 for v6) | |
OptionCollection & | getMutableOptions () |
Returns all encapsulated options. | |
OptionPtr | getOption (uint16_t type) const |
Returns shared_ptr to suboption of specific type. | |
const OptionCollection & | getOptions () const |
Returns all encapsulated options. | |
void | getOptionsCopy (OptionCollection &options_copy) const |
Performs deep copy of suboptions. | |
uint16_t | getType () const |
Returns option type (0-255 for DHCPv4, 0-65535 for DHCPv6) | |
uint16_t | getUint16 () const |
Returns content of first word. | |
uint32_t | getUint32 () const |
Returns content of first double word. | |
uint8_t | getUint8 () const |
Returns content of first byte. | |
Universe | getUniverse () const |
returns option universe (V4 or V6) | |
Option & | operator= (const Option &rhs) |
Assignment operator. | |
template<typename InputIterator > | |
void | setData (InputIterator first, InputIterator last) |
Sets content of this option from buffer. | |
void | setEncapsulatedSpace (const std::string &encapsulated_space) |
Sets the name of the option space encapsulated by this option. | |
void | setUint16 (uint16_t value) |
Sets content of this option to a single uint16 value. | |
void | setUint32 (uint32_t value) |
Sets content of this option to a single uint32 value. | |
void | setUint8 (uint8_t value) |
Sets content of this option to a single uint8 value. | |
virtual std::vector< uint8_t > | toBinary (const bool include_header=false) const |
Returns binary representation of the option. | |
virtual std::string | toHexString (const bool include_header=false) const |
Returns string containing hexadecimal representation of option. | |
virtual std::string | toString () const |
Returns string representation of the value. | |
virtual bool | valid () const |
returns if option is valid (e.g. | |
Static Public Member Functions inherited from isc::dhcp::Option | |
static OptionPtr | create (Universe u, uint16_t type) |
Factory function creating an instance of the Option . | |
static OptionPtr | create (Universe u, uint16_t type, const OptionBuffer &data) |
Factory function creating an instance of the Option . | |
static OptionPtr | factory (Option::Universe u, uint16_t type) |
Factory function to create instance of option. | |
static OptionPtr | factory (Option::Universe u, uint16_t type, const OptionBuffer &buf) |
Factory function to create instance of option. | |
Static Public Attributes inherited from isc::dhcp::Option | |
static bool | lenient_parsing_ |
Governs whether options should be parsed less strictly. | |
static const size_t | OPTION4_HDR_LEN = 2 |
length of the usual DHCPv4 option header (there are exceptions) | |
static const size_t | OPTION6_HDR_LEN = 4 |
length of any DHCPv6 option header | |
Protected Member Functions inherited from isc::dhcp::Option | |
void | check () const |
A protected method used for option correctness. | |
template<typename OptionType > | |
OptionPtr | cloneInternal () const |
Copies this option and returns a pointer to the copy. | |
std::string | headerToText (const int indent=0, const std::string &type_name="") const |
Returns option header in the textual format. | |
void | packHeader (isc::util::OutputBuffer &buf, bool check=true) const |
Store option's header in a buffer. | |
void | packOptions (isc::util::OutputBuffer &buf, bool check=true) const |
Store sub options in a buffer. | |
std::string | suboptionsToText (const int indent=0) const |
Returns collection of suboptions in the textual format. | |
void | unpackOptions (const OptionBuffer &buf) |
Builds a collection of sub options from the buffer. | |
Protected Attributes inherited from isc::dhcp::Option | |
OptionBuffer | data_ |
contains content of this data | |
std::string | encapsulated_space_ |
Name of the option space being encapsulated by this option. | |
OptionCollection | options_ |
collection for storing suboptions | |
uint16_t | type_ |
option type (0-255 for DHCPv4, 0-65535 for DHCPv6) | |
Universe | universe_ |
option universe (V4 or V6) | |
Represents DHCPv6 Client FQDN Option (code 39).
This option has been defined in the RFC 4704 and it has a following structure:
The flags field has the following structure:
where:
This class exposes a set of functions to modify flags and check their correctness.
Domain names being carried by DHCPv6 Client Fqdn Option can be fully qualified or partial. Partial domain names are encoded similar to the fully qualified domain names, except that they lack terminating zero at the end of their wire representation. It is also accepted to create an instance of this option which has empty domain-name. Clients use empty domain-names to indicate that server should generate complete fully qualified domain-name.
Since domain names are case insensitive (see RFC 4343), this class converts them to lower case format regardless if they are received over the wire or created from strings.
Design choice: This class uses pimpl idiom to separate the interface from implementation specifics. Implementations may use different approaches to handle domain names (mostly validation of the domain-names). The existing isc::dns::Name
class is a natural (and the simplest) choice to handle domain-names. Use of this class however, implies that libdhcp must be linked with libdns. At some point these libraries may need to be separated, i.e. to support compilation and use of standalone DHCP server. This will require that the part of implementation which deals with domain-names is modified to not use classes from libdns. These changes will be transparent for this interface.
Definition at line 87 of file option6_client_fqdn.h.
enum isc::dhcp::Option6ClientFqdn::DomainNameType : int |
Type of the domain-name: partial or full.
Enumerator | |
---|---|
PARTIAL | |
FULL |
Definition at line 105 of file option6_client_fqdn.h.
|
explicit |
Constructor, creates option instance using flags and domain name.
This constructor is used to create instance of the option which will be included in outgoing messages.
flags | a combination of flag bits to be stored in flags field. |
domain_name | a name to be stored in the domain-name field. |
domain_name_type | indicates if the domain name is partial or full. |
Definition at line 285 of file option6_client_fqdn.cc.
isc::dhcp::Option6ClientFqdn::Option6ClientFqdn | ( | const uint8_t | flags | ) |
Constructor, creates option instance using flags.
This constructor creates an instance of the option with empty domain-name. This domain-name is marked partial.
flags | A combination of flag bits to be stored in flags field. |
Definition at line 280 of file option6_client_fqdn.cc.
|
explicit |
Constructor, creates an option instance from part of the buffer.
This constructor is mainly used to parse options in the received messages. Function parameters specify buffer bounds from which the option should be created. The size of the buffer chunk, specified by the constructor's parameters should be equal or larger than the size of the option. Otherwise, constructor will throw an exception.
first | the lower bound of the buffer to create option from. |
last | the upper bound of the buffer to create option from. |
Definition at line 292 of file option6_client_fqdn.cc.
isc::dhcp::Option6ClientFqdn::Option6ClientFqdn | ( | const Option6ClientFqdn & | source | ) |
Copy constructor.
Definition at line 302 of file option6_client_fqdn.cc.
|
virtual |
Destructor.
Definition at line 298 of file option6_client_fqdn.cc.
|
virtual |
Copies this option and returns a pointer to the copy.
Reimplemented from isc::dhcp::Option.
Definition at line 308 of file option6_client_fqdn.cc.
std::string isc::dhcp::Option6ClientFqdn::getDomainName | ( | ) | const |
Returns the domain-name in the text format.
If domain-name is partial, it lacks the dot at the end (e.g. myhost). If domain-name is fully qualified, it has the dot at the end (e.g. myhost.example.com.).
Definition at line 369 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::domain_name_, isc::dhcp::Option6ClientFqdnImpl::domain_name_type_, and PARTIAL.
Referenced by toText().
Option6ClientFqdn::DomainNameType isc::dhcp::Option6ClientFqdn::getDomainNameType | ( | ) | const |
Returns enumerator value which indicates whether domain-name is partial or full.
Definition at line 410 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::domain_name_type_.
Referenced by toText().
bool isc::dhcp::Option6ClientFqdn::getFlag | ( | const uint8_t | flag | ) | const |
Checks if the specified flag of the DHCPv6 Client FQDN Option is set.
This method checks the single bit of flags field. Therefore, a caller should use one of the: FLAG_S
, FLAG_N
, FLAG_O
constants as an argument of the function. Attempt to use any other value (including combinations of these constants) will result in exception.
flag | A value specifying the flags bit to be checked. It can be one of the following: FLAG_S , FLAG_N , FLAG_O . |
Definition at line 325 of file option6_client_fqdn.cc.
References FLAG_N, FLAG_O, FLAG_S, isc::dhcp::Option6ClientFqdnImpl::flags_, and isc_throw.
Referenced by toText().
|
virtual |
Returns length of the complete option (data length + DHCPv6 option header).
Reimplemented from isc::dhcp::Option.
Definition at line 452 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::domain_name_, isc::dhcp::Option6ClientFqdnImpl::domain_name_type_, FLAG_FIELD_LEN, FULL, and isc::dhcp::Option::getHeaderLen().
Option6ClientFqdn & isc::dhcp::Option6ClientFqdn::operator= | ( | const Option6ClientFqdn & | source | ) |
Assignment operator.
Definition at line 316 of file option6_client_fqdn.cc.
References isc::dhcp::Option::operator=().
|
virtual |
Writes option in the wire format into a buffer.
[out] | buf | output buffer where option data will be stored. |
check | if set to false, allows options larger than 255 for v4 |
Reimplemented from isc::dhcp::Option.
Definition at line 415 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::flags_, packDomainName(), and isc::dhcp::Option::packHeader().
void isc::dhcp::Option6ClientFqdn::packDomainName | ( | isc::util::OutputBuffer & | buf | ) | const |
Writes domain-name in the wire format into a buffer.
The data being written are appended at the end of the buffer.
[out] | buf | buffer where domain-name will be written. |
Definition at line 380 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::domain_name_, isc::dhcp::Option6ClientFqdnImpl::domain_name_type_, and PARTIAL.
Referenced by pack().
void isc::dhcp::Option6ClientFqdn::resetDomainName | ( | ) |
Set empty domain-name.
This function is equivalent to Option6ClientFqdn::setDomainName
with empty partial domain-name. It is exception safe.
Definition at line 405 of file option6_client_fqdn.cc.
References PARTIAL, and setDomainName().
void isc::dhcp::Option6ClientFqdn::resetFlags | ( | ) |
Sets the flag field value to 0.
Definition at line 364 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::flags_.
void isc::dhcp::Option6ClientFqdn::setDomainName | ( | const std::string & | domain_name, |
const DomainNameType | domain_name_type ) |
Set new domain-name.
domain_name | domain name field value in the text format. |
domain_name_type | type of the domain name: partial or fully qualified. |
Definition at line 399 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::setDomainName().
Referenced by resetDomainName().
void isc::dhcp::Option6ClientFqdn::setFlag | ( | const uint8_t | flag, |
const bool | set ) |
Modifies the value of the specified DHCPv6 Client Fqdn Option flag.
This method sets the single bit of flags field. Therefore, a caller should use one of the: FLAG_S
, FLAG_N
, FLAG_O
constants as an argument of the function. Attempt to use any other value (including combinations of these constants) will result in exception.
flag | A value specifying the flags bit to be modified. It can be one of the following: FLAG_S , FLAG_N , FLAG_O . |
set | a boolean value which indicates whether flag should be set (true), or cleared (false). |
Definition at line 337 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::checkFlags(), FLAG_MASK, isc::dhcp::Option6ClientFqdnImpl::flags_, and isc_throw.
|
virtual |
Returns string representation of the option.
The string returned by the method comprises the bit value of each option flag and the domain-name.
indent | number of spaces before printed text. |
Reimplemented from isc::dhcp::Option.
Definition at line 436 of file option6_client_fqdn.cc.
References FLAG_N, FLAG_O, FLAG_S, getDomainName(), getDomainNameType(), getFlag(), PARTIAL, and isc::dhcp::Option::type_.
|
virtual |
Parses option from the received buffer.
Method creates an instance of the DHCPv6 Client FQDN Option from the wire format. Parameters specify the bounds of the buffer to read option data from. The size of the buffer limited by the specified parameters should be equal or larger than size of the option (including its header). Otherwise exception will be thrown.
first | lower bound of the buffer to parse option from. |
last | upper bound of the buffer to parse option from. |
Reimplemented from isc::dhcp::Option.
Definition at line 425 of file option6_client_fqdn.cc.
References isc::dhcp::Option6ClientFqdnImpl::checkFlags(), isc::dhcp::Option6ClientFqdnImpl::flags_, isc::dhcp::Option6ClientFqdnImpl::parseWireData(), and isc::dhcp::Option::setData().
|
static |
The length of the flag field within DHCPv6 Client Fqdn Option.
Definition at line 102 of file option6_client_fqdn.h.
Referenced by len(), and isc::dhcp::Option6ClientFqdnImpl::parseWireData().
|
static |
Mask which zeroes MBZ flag bits.
Definition at line 99 of file option6_client_fqdn.h.
Referenced by isc::dhcp::Option6ClientFqdnImpl::checkFlags(), and setFlag().
|
static |
N bit.
Definition at line 95 of file option6_client_fqdn.h.
Referenced by isc::dhcp::Option6ClientFqdnImpl::checkFlags(), getFlag(), isc::dhcp::Dhcpv6Srv::processClientFqdn(), and toText().
|
static |
|
static |
S bit.
Definition at line 93 of file option6_client_fqdn.h.
Referenced by isc::dhcp::Option6ClientFqdnImpl::checkFlags(), getFlag(), isc::dhcp::Dhcpv6Srv::processClientFqdn(), and toText().