123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- // 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 <exceptions/exceptions.h>
- #include <util/buffer.h>
- #include <dns/name.h>
- #include <dns/messagerenderer.h>
- #include <dns/master_lexer.h>
- #include <dns/rdata.h>
- #include <dns/rrparamregistry.h>
- #include <dns/rrtype.h>
- #include <boost/lexical_cast.hpp>
- #include <boost/shared_ptr.hpp>
- #include <algorithm>
- #include <cctype>
- #include <string>
- #include <sstream>
- #include <iomanip>
- #include <ios>
- #include <ostream>
- #include <vector>
- #include <stdint.h>
- #include <string.h>
- using namespace std;
- using boost::lexical_cast;
- 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));
- }
- namespace {
- void
- fromtextError(bool& error_issued, const MasterLexer& lexer,
- MasterLoaderCallbacks& callbacks,
- const MasterToken* token, const char* reason)
- {
- // Don't be too noisy if there are many issues for single RDATA
- if (error_issued) {
- return;
- }
- error_issued = true;
- if (token == NULL) {
- callbacks.error(lexer.getSourceName(), lexer.getSourceLine(),
- "createRdata from text failed: " + string(reason));
- return;
- }
- switch (token->getType()) {
- case MasterToken::STRING:
- case MasterToken::QSTRING:
- callbacks.error(lexer.getSourceName(), lexer.getSourceLine(),
- "createRdata from text failed near '" +
- token->getString() + "': " + string(reason));
- break;
- case MasterToken::ERROR:
- callbacks.error(lexer.getSourceName(), lexer.getSourceLine(),
- "createRdata from text failed: " +
- token->getErrorText());
- break;
- default:
- // This case shouldn't happen based on how we use MasterLexer in
- // createRdata(), so we could assert() that here. But since it
- // depends on detailed behavior of other classes, we treat the case
- // in a bit less harsh way.
- isc_throw(Unexpected, "bug: createRdata() saw unexpected token type");
- }
- }
- }
- RdataPtr
- createRdata(const RRType& rrtype, const RRClass& rrclass,
- MasterLexer& lexer, const Name* origin,
- MasterLoader::Options options,
- MasterLoaderCallbacks& callbacks)
- {
- RdataPtr rdata;
- bool error_issued = false;
- try {
- rdata = RRParamRegistry::getRegistry().createRdata(
- rrtype, rrclass, lexer, origin, options, callbacks);
- } catch (const MasterLexer::LexerError& error) {
- fromtextError(error_issued, lexer, callbacks, &error.token_, "");
- } catch (const Exception& ex) {
- // Catching all isc::Exception is too broad, but right now we don't
- // have better granularity. When we complete #2518 we can make this
- // finer.
- fromtextError(error_issued, lexer, callbacks, NULL, ex.what());
- }
- // Other exceptions mean a serious implementation bug or fatal system
- // error; it doesn't make sense to catch and try to recover from them
- // here. Just propagate.
- // Consume to end of line / file.
- // Call callback via fromtextError once if there was an error.
- do {
- const MasterToken& token = lexer.getNextToken();
- switch (token.getType()) {
- case MasterToken::END_OF_LINE:
- return (rdata);
- case MasterToken::END_OF_FILE:
- callbacks.warning(lexer.getSourceName(), lexer.getSourceLine(),
- "file does not end with newline");
- return (rdata);
- default:
- rdata.reset(); // we'll return NULL
- fromtextError(error_issued, lexer, callbacks, &token,
- "extra input text");
- // Continue until we see EOL or EOF
- }
- } while (true);
- // We shouldn't reach here
- assert(false);
- return (RdataPtr()); // add explicit return to silence some compilers
- }
- 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);
- if (rdata_len > 0) {
- buffer.readData(&data[0], rdata_len);
- }
- impl_ = new GenericImpl(data);
- }
- void
- Generic::constructHelper(const std::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(const std::string& rdata_string) {
- constructHelper(rdata_string);
- }
- Generic::Generic(MasterLexer& lexer, const Name*,
- MasterLoader::Options,
- MasterLoaderCallbacks&)
- {
- std::string s;
- while (true) {
- const MasterToken& token = lexer.getNextToken();
- if ((token.getType() == MasterToken::END_OF_FILE) ||
- (token.getType() == MasterToken::END_OF_LINE)) {
- lexer.ungetToken(); // let the upper layer handle the end-of token
- break;
- }
- if (!s.empty()) {
- s += " ";
- }
- s += token.getString();
- }
- constructHelper(s);
- }
- Generic::~Generic() {
- delete impl_;
- }
- Generic::Generic(const Generic& source) :
- Rdata(), impl_(new GenericImpl(*source.impl_))
- {}
- Generic&
- // Our check is better than the usual if (this == &source),
- // but cppcheck doesn't recognize it.
- // cppcheck-suppress operatorEqToSelf
- 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;
- // TODO: is there a need to check len - should we just assert?
- // (Depends if it is possible for rdata to have zero length)
- if ((len != 0) &&
- ((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
- }
- }
|