123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- // Copyright (C) 2010 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 <algorithm>
- #include <cctype>
- #include <string>
- #include <sstream>
- #include <iomanip>
- #include <ios>
- #include <ostream>
- #include <vector>
- #include <stdint.h>
- #include <string.h>
- #include <boost/lexical_cast.hpp>
- #include <boost/shared_ptr.hpp>
- #include <util/buffer.h>
- #include <dns/name.h>
- #include <dns/messagerenderer.h>
- #include <dns/rdata.h>
- #include <dns/rrparamregistry.h>
- #include <dns/rrtype.h>
- using namespace std;
- using namespace boost;
- using namespace isc::util;
- namespace isc {
- namespace dns {
- namespace rdata {
- // XXX: we need to specify std:: for string to help doxygen match the
- // function signature with that given in the header file.
- RdataPtr
- createRdata(const RRType& rrtype, const RRClass& rrclass,
- const std::string& rdata_string)
- {
- return (RRParamRegistry::getRegistry().createRdata(rrtype, rrclass,
- rdata_string));
- }
- RdataPtr
- createRdata(const RRType& rrtype, const RRClass& rrclass,
- isc::util::InputBuffer& buffer, size_t len)
- {
- if (len > MAX_RDLENGTH) {
- isc_throw(InvalidRdataLength, "RDLENGTH too large");
- }
- size_t old_pos = buffer.getPosition();
- RdataPtr rdata =
- RRParamRegistry::getRegistry().createRdata(rrtype, rrclass, buffer,
- len);
-
- if (buffer.getPosition() - old_pos != len) {
- isc_throw(InvalidRdataLength, "RDLENGTH mismatch: " <<
- buffer.getPosition() - old_pos << " != " << len);
- }
- return (rdata);
- }
- RdataPtr
- createRdata(const RRType& rrtype, const RRClass& rrclass, const Rdata& source)
- {
- return (RRParamRegistry::getRegistry().createRdata(rrtype, rrclass,
- source));
- }
- int
- compareNames(const Name& n1, const Name& n2) {
- size_t len1 = n1.getLength();
- size_t len2 = n2.getLength();
- size_t cmplen = min(len1, len2);
- for (size_t i = 0; i < cmplen; ++i) {
- uint8_t c1 = tolower(n1.at(i));
- uint8_t c2 = tolower(n2.at(i));
- if (c1 < c2) {
- return (-1);
- } else if (c1 > c2) {
- return (1);
- }
- }
- return ((len1 == len2) ? 0 : (len1 < len2) ? -1 : 1);
- }
- namespace generic {
- struct GenericImpl {
- GenericImpl(const vector<uint8_t>& data) : data_(data) {}
- vector<uint8_t> data_;
- };
- Generic::Generic(isc::util::InputBuffer& buffer, size_t rdata_len) {
- if (rdata_len > MAX_RDLENGTH) {
- isc_throw(InvalidRdataLength, "RDLENGTH too large");
- }
- vector<uint8_t> data(rdata_len);
- buffer.readData(&data[0], rdata_len);
- impl_ = new GenericImpl(data);
- }
- Generic::Generic(const string& rdata_string) {
- istringstream iss(rdata_string);
- string unknown_mark;
- iss >> unknown_mark;
- if (unknown_mark != "\\#") {
- isc_throw(InvalidRdataText,
- "Missing the special token (\\#) for generic RDATA encoding");
- }
- // RDLENGTH: read into a string so that we can easily reject invalid tokens
- string rdlen_txt;
- iss >> rdlen_txt;
- istringstream iss_rdlen(rdlen_txt);
- int32_t rdlen;
- iss_rdlen >> rdlen;
- if (iss_rdlen.rdstate() != ios::eofbit) {
- isc_throw(InvalidRdataText,
- "Invalid representation for a generic RDLENGTH");
- }
- if (rdlen < 0 || rdlen > 0xffff) {
- isc_throw(InvalidRdataLength, "RDATA length is out of range");
- }
- iss >> ws; // skip any white spaces
- // Hexadecimal encoding of RDATA: each segment must consist of an even
- // number of hex digits.
- vector<uint8_t> data;
- while (!iss.eof() && data.size() < rdlen) {
- // extract two characters, which should compose a single byte of data.
- char buf[2];
- iss.read(buf, sizeof(buf));
- if ((iss.rdstate() & (ios::badbit | ios::failbit)) != 0) {
- isc_throw(InvalidRdataText,
- "Invalid hex encoding of generic RDATA");
- }
- // convert it to a single byte integer as a hex digit.
- istringstream iss_byte(string(buf, sizeof(buf)));
- unsigned int ch;
- iss_byte >> hex >> ch;
- if (iss_byte.rdstate() != ios::eofbit) {
- isc_throw(InvalidRdataText,
- "Invalid hex encoding of generic RDATA");
- }
- data.push_back(ch);
- iss >> ws; // skip spaces
- }
- if (!iss.eof()) {
- isc_throw(InvalidRdataLength,
- "RDLENGTH is too small for generic RDATA");
- }
- if (data.size() != rdlen) {
- isc_throw(InvalidRdataLength,
- "Generic RDATA code doesn't match RDLENGTH");
- }
- impl_ = new GenericImpl(data);
- }
- Generic::~Generic() {
- delete impl_;
- }
- Generic::Generic(const Generic& source) :
- Rdata(), impl_(new GenericImpl(*source.impl_))
- {}
- Generic&
- Generic::operator=(const Generic& source) {
- if (impl_ == source.impl_) {
- return (*this);
- }
- GenericImpl* newimpl = new GenericImpl(*source.impl_);
- delete impl_;
- impl_ = newimpl;
- return (*this);
- }
- namespace {
- class UnknownRdataDumper {
- public:
- UnknownRdataDumper(ostringstream& oss) : oss_(&oss) {}
- void operator()(const unsigned char d)
- {
- *oss_ << setw(2) << static_cast<unsigned int>(d);
- }
- private:
- ostringstream* oss_;
- };
- }
- string
- Generic::toText() const {
- ostringstream oss;
- oss << "\\# " << impl_->data_.size() << " ";
- oss.fill('0');
- oss << right << hex;
- for_each(impl_->data_.begin(), impl_->data_.end(), UnknownRdataDumper(oss));
- return (oss.str());
- }
- void
- Generic::toWire(isc::util::OutputBuffer& buffer) const {
- buffer.writeData(&impl_->data_[0], impl_->data_.size());
- }
- void
- Generic::toWire(AbstractMessageRenderer& renderer) const {
- renderer.writeData(&impl_->data_[0], impl_->data_.size());
- }
- namespace {
- inline int
- compare_internal(const GenericImpl& lhs, const GenericImpl& rhs) {
- size_t this_len = lhs.data_.size();
- size_t other_len = rhs.data_.size();
- size_t len = (this_len < other_len) ? this_len : other_len;
- int cmp;
- if ((cmp = memcmp(&lhs.data_[0], &rhs.data_[0], len))
- != 0) {
- return (cmp);
- } else {
- return ((this_len == other_len) ? 0 :
- (this_len < other_len) ? -1 : 1);
- }
- }
- }
- int
- Generic::compare(const Rdata& other) const {
- const Generic& other_rdata = dynamic_cast<const Generic&>(other);
- return (compare_internal(*impl_, *other_rdata.impl_));
- }
- std::ostream&
- operator<<(std::ostream& os, const Generic& rdata) {
- return (os << rdata.toText());
- }
- } // end of namespace generic
- } // end of namespace rdata
- }
- }
|