2018-12-03 22:22:59 +00:00
|
|
|
#ifndef LLARP_DNS_MESSAGE_HPP
|
|
|
|
#define LLARP_DNS_MESSAGE_HPP
|
2018-12-12 00:58:08 +00:00
|
|
|
#include <dns/serialize.hpp>
|
|
|
|
#include <dns/rr.hpp>
|
|
|
|
#include <dns/question.hpp>
|
2018-12-03 22:22:59 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dns
|
|
|
|
{
|
|
|
|
using MsgID_t = uint16_t;
|
|
|
|
using Fields_t = uint16_t;
|
|
|
|
using Count_t = uint16_t;
|
|
|
|
|
|
|
|
struct MessageHeader : public Serialize
|
|
|
|
{
|
2018-12-04 16:16:43 +00:00
|
|
|
const static size_t Size = 12;
|
|
|
|
|
|
|
|
MessageHeader() = default;
|
|
|
|
|
2018-12-03 22:22:59 +00:00
|
|
|
MsgID_t id;
|
|
|
|
Fields_t fields;
|
|
|
|
Count_t qd_count;
|
|
|
|
Count_t an_count;
|
|
|
|
Count_t ns_count;
|
|
|
|
Count_t ar_count;
|
|
|
|
|
|
|
|
bool
|
|
|
|
Encode(llarp_buffer_t* buf) const override;
|
|
|
|
|
|
|
|
bool
|
|
|
|
Decode(llarp_buffer_t* buf) override;
|
2018-12-04 16:16:43 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
operator==(const MessageHeader& other) const
|
|
|
|
{
|
|
|
|
return id == other.id && fields == other.fields
|
|
|
|
&& qd_count == other.qd_count && an_count == other.an_count
|
|
|
|
&& ns_count == other.ns_count && ar_count == other.ar_count;
|
|
|
|
}
|
2018-12-03 22:22:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Message : public Serialize
|
|
|
|
{
|
2018-12-04 16:16:43 +00:00
|
|
|
Message(const MessageHeader& hdr);
|
|
|
|
|
|
|
|
Message(Message&& other);
|
|
|
|
Message(const Message& other);
|
|
|
|
|
2018-12-03 22:22:59 +00:00
|
|
|
void
|
|
|
|
UpdateHeader();
|
|
|
|
|
2018-12-04 16:16:43 +00:00
|
|
|
void
|
2018-12-13 16:14:44 +00:00
|
|
|
AddNXReply(RR_TTL_t ttl = 1);
|
2018-12-03 22:22:59 +00:00
|
|
|
|
2018-12-07 21:52:19 +00:00
|
|
|
void
|
2018-12-13 16:14:44 +00:00
|
|
|
AddMXReply(std::string name, uint16_t priority, RR_TTL_t ttl = 1);
|
2018-12-07 21:52:19 +00:00
|
|
|
|
2018-12-13 00:03:19 +00:00
|
|
|
void
|
2018-12-13 16:14:44 +00:00
|
|
|
AddCNAMEReply(std::string name, RR_TTL_t ttl = 1);
|
2018-12-13 00:03:19 +00:00
|
|
|
|
2018-12-04 16:16:43 +00:00
|
|
|
void
|
2018-12-13 16:14:44 +00:00
|
|
|
AddINReply(llarp::huint32_t addr, RR_TTL_t ttl = 1);
|
2018-12-03 22:22:59 +00:00
|
|
|
|
2018-12-04 16:16:43 +00:00
|
|
|
void
|
2018-12-13 16:14:44 +00:00
|
|
|
AddAReply(std::string name, RR_TTL_t ttl = 1);
|
2018-12-03 22:22:59 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
Encode(llarp_buffer_t* buf) const override;
|
|
|
|
|
|
|
|
bool
|
|
|
|
Decode(llarp_buffer_t* buf) override;
|
|
|
|
|
2018-12-04 16:16:43 +00:00
|
|
|
friend std::ostream&
|
|
|
|
operator<<(std::ostream& out, const Message& msg)
|
|
|
|
{
|
|
|
|
out << "[dns message id=" << std::hex << msg.hdr_id
|
|
|
|
<< " fields=" << msg.hdr_fields << " questions=[ ";
|
|
|
|
for(const auto& qd : msg.questions)
|
|
|
|
out << qd << ", ";
|
|
|
|
out << "] answers=[ ";
|
|
|
|
for(const auto& an : msg.answers)
|
|
|
|
out << an << ", ";
|
|
|
|
out << "] nameserver=[ ";
|
|
|
|
for(const auto& ns : msg.authorities)
|
|
|
|
out << ns << ", ";
|
|
|
|
out << "] additional=[ ";
|
|
|
|
for(const auto& ar : msg.additional)
|
|
|
|
out << ar << ", ";
|
|
|
|
return out << "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
MsgID_t hdr_id;
|
|
|
|
Fields_t hdr_fields;
|
2018-12-03 22:22:59 +00:00
|
|
|
std::vector< Question > questions;
|
|
|
|
std::vector< ResourceRecord > answers;
|
|
|
|
std::vector< ResourceRecord > authorities;
|
|
|
|
std::vector< ResourceRecord > additional;
|
|
|
|
};
|
|
|
|
} // namespace dns
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|