123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- // Copyright (C) 2011-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.
- #include <asiolink/io_address.h>
- #include <dhcp/option4_addrlst.h>
- #include <exceptions/exceptions.h>
- #include <util/io_utilities.h>
- #include <iomanip>
- #include <sstream>
- #include <arpa/inet.h>
- #include <stdint.h>
- #include <string.h>
- using namespace std;
- using namespace isc::util;
- using namespace isc::asiolink;
- namespace isc {
- namespace dhcp {
- Option4AddrLst::Option4AddrLst(uint8_t type)
- :Option(V4, type) {
- }
- Option4AddrLst::Option4AddrLst(uint8_t type, const AddressContainer& addrs)
- :Option(V4, type) {
- setAddresses(addrs);
- // don't set addrs_ directly. setAddresses() will do additional checks.
- }
- Option4AddrLst::Option4AddrLst(uint8_t type, OptionBufferConstIter first,
- OptionBufferConstIter last)
- :Option(V4, type) {
- if ( (distance(first, last) % V4ADDRESS_LEN) ) {
- isc_throw(OutOfRange, "DHCPv4 Option4AddrLst " << type_
- << " has invalid length=" << distance(first, last)
- << ", must be divisible by 4.");
- }
- while (first != last) {
- const uint8_t* ptr = &(*first);
- addAddress(IOAddress(readUint32(ptr)));
- first += V4ADDRESS_LEN;
- }
- }
- Option4AddrLst::Option4AddrLst(uint8_t type, const IOAddress& addr)
- :Option(V4, type) {
- setAddress(addr);
- }
- void
- Option4AddrLst::pack4(isc::util::OutputBuffer& buf) {
- if (addrs_.size() * V4ADDRESS_LEN > 255) {
- isc_throw(OutOfRange, "DHCPv4 Option4AddrLst " << type_ << " is too big."
- << "At most 255 bytes are supported.");
- /// TODO Larger options can be stored as separate instances
- /// of DHCPv4 options. Clients MUST concatenate them.
- /// Fortunately, there are no such large options used today.
- }
- buf.writeUint8(type_);
- buf.writeUint8(len() - getHeaderLen());
- AddressContainer::const_iterator addr = addrs_.begin();
- while (addr != addrs_.end()) {
- buf.writeUint32(*addr);
- ++addr;
- }
- }
- void Option4AddrLst::setAddress(const isc::asiolink::IOAddress& addr) {
- if (!addr.isV4()) {
- isc_throw(BadValue, "Can't store non-IPv4 address in "
- << "Option4AddrLst option");
- }
- addrs_.clear();
- addAddress(addr);
- }
- void Option4AddrLst::setAddresses(const AddressContainer& addrs) {
- // Do not copy it as a whole. addAddress() does sanity checks.
- // i.e. throw if someone tries to set IPv6 address.
- addrs_.clear();
- for (AddressContainer::const_iterator addr = addrs.begin();
- addr != addrs.end(); ++addr) {
- addAddress(*addr);
- }
- }
- void Option4AddrLst::addAddress(const isc::asiolink::IOAddress& addr) {
- if (!addr.isV4()) {
- isc_throw(BadValue, "Can't store non-IPv4 address in "
- << "Option4AddrLst option");
- }
- addrs_.push_back(addr);
- }
- uint16_t Option4AddrLst::len() {
- // Returns length of the complete option (option header + data length)
- return (getHeaderLen() + addrs_.size() * V4ADDRESS_LEN);
- }
- std::string Option4AddrLst::toText(int indent /* =0 */ ) {
- std::stringstream tmp;
- for (int i = 0; i < indent; i++) {
- tmp << " ";
- }
- tmp << "type=" << type_ << ", len=" << len()-getHeaderLen() << ":";
- for (AddressContainer::const_iterator addr = addrs_.begin();
- addr != addrs_.end(); ++addr) {
- tmp << " " << (*addr);
- }
- return tmp.str();
- }
- } // end of isc::dhcp namespace
- } // end of isc namespace
|