123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- // Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #ifndef OPTION_INT6_H_
- #define OPTION_INT6_H_
- #include <stdint.h>
- #include <limits>
- #include <util/io_utilities.h>
- #include "dhcp/libdhcp++.h"
- #include "dhcp/option.h"
- #include "dhcp/option_data_types.h"
- namespace isc {
- namespace dhcp {
- /// This template class represents DHCPv6 option with single value.
- /// This value is of integer type and can be any of the following:
- /// - uint8_t,
- /// - uint16_t,
- /// - uint32_t,
- /// - int8_t,
- /// - int16_t,
- /// - int32_t.
- ///
- /// @param T data field type (see above).
- template<typename T>
- class Option6Int: public Option {
- public:
- /// @brief Constructor.
- ///
- /// @param type option type.
- /// @param value option value.
- Option6Int(uint16_t type, T value)
- : Option(Option::V6, type), value_(value) {
- if (!OptionDataTypes<T>::valid) {
- isc_throw(dhcp::InvalidDataType, "non-numeric type");
- }
- }
- /// @brief Constructor.
- ///
- /// This constructor creates option from a buffer. This construtor
- /// may throw exception if \ref unpack function throws during buffer
- /// parsing.
- ///
- /// @param type option type.
- /// @param begin iterator to first byte of option data.
- /// @param end iterator to end of option data (first byte after option end).
- ///
- /// @todo mention here what it throws.
- Option6Int(uint16_t type, OptionBufferConstIter begin,
- OptionBufferConstIter end)
- : Option(Option::V6, type) {
- if (!OptionDataTypes<T>::valid) {
- isc_throw(dhcp::InvalidDataType, "non-numeric type");
- }
- unpack(begin, end);
- }
- /// Writes option in wire-format to buf, returns pointer to first unused
- /// byte after stored option.
- ///
- /// @param [out] buf buffer (option will be stored here)
- ///
- /// @throw isc::BadValue if invalid option type has been provided.
- void pack(isc::util::OutputBuffer& buf) {
- buf.writeUint16(type_);
- buf.writeUint16(len() - OPTION6_HDR_LEN);
- switch (OptionDataTypes<T>::len) {
- case 1:
- buf.writeUint8(value_);
- break;
- case 2:
- buf.writeUint16(value_);
- break;
- case 4:
- buf.writeUint32(value_);
- break;
- default:
- isc_throw(dhcp::InvalidDataType, "non-numeric type");
- }
- }
- /// @brief Parses received buffer
- ///
- /// Parses received buffer and returns offset to the first unused byte after
- /// parsed option.
- ///
- /// @param begin iterator to first byte of option data
- /// @param end iterator to end of option data (first byte after option end)
- virtual void unpack(OptionBufferConstIter begin, OptionBufferConstIter end) {
- if (distance(begin, end) < sizeof(T)) {
- isc_throw(OutOfRange, "Option " << type_ << " truncated");
- }
- switch (OptionDataTypes<T>::len) {
- case 1:
- value_ = *begin;
- break;
- case 2:
- value_ = isc::util::readUint16( &(*begin) );
- break;
- case 4:
- value_ = isc::util::readUint32( &(*begin) );
- break;
- default:
- isc_throw(dhcp::InvalidDataType, "non-numeric type");
- }
- LibDHCP::unpackOptions6(OptionBuffer(begin, end), options_);
- }
- void setValue(T value) { value_ = value; }
- T getValue() const { return value_; }
- /// @brief returns complete length of option
- ///
- /// Returns length of this option, including option header and suboptions
- ///
- /// @return length of this option
- virtual uint16_t len() {
- uint16_t length = OPTION6_HDR_LEN + sizeof(T);
- // length of all suboptions
- for (Option::OptionCollection::iterator it = options_.begin();
- it != options_.end();
- ++it) {
- length += (*it).second->len();
- }
- return (length);
- }
- private:
- T value_;
- };
- } // isc::dhcp namespace
- } // isc namespace
- #endif /* OPTION_IA_H_ */
|