1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/dnsd.hpp

125 lines
3.4 KiB
C++
Raw Normal View History

2019-01-11 02:19:36 +01:00
#ifndef LLARP_DNSD_HPP
#define LLARP_DNSD_HPP
2018-07-16 14:48:04 +02:00
2018-12-12 01:58:08 +01:00
#include <dns.hpp> // question and dnsc
#include <dnsc.hpp>
2019-01-11 02:19:36 +01:00
#include <ev/ev.h> // for sockaadr
2018-07-16 14:48:04 +02:00
#include <string>
//
// Input structures/functions:
//
2018-08-01 11:04:40 +02:00
// fwd declaration
struct dnsd_context;
2018-08-01 11:04:40 +02:00
/// sendto hook functor
2018-11-26 14:30:03 +01:00
using sendto_dns_hook_func = std::function< ssize_t(
2019-02-03 01:48:10 +01:00
void *sock, const struct sockaddr *from, ManagedBuffer) >;
2018-09-29 12:22:00 +02:00
// FIXME: llarp::Addr
2018-07-16 14:48:04 +02:00
2018-08-01 11:04:40 +02:00
/// DNS server query request
2018-07-22 05:34:28 +02:00
struct dnsd_question_request
2018-07-16 14:48:04 +02:00
{
/// sock type
void *user;
// raw or llarp subsystem (is this used? does this matter?)
2018-07-22 05:34:28 +02:00
bool llarp;
2018-12-01 15:35:11 +01:00
/// request header
dns_msg_header hdr;
2018-07-22 05:34:28 +02:00
/// question being asked
dns_msg_question question;
// request source socket
2018-09-29 12:22:00 +02:00
struct sockaddr *from; // FIXME: convert to llarp::Addr
sendto_dns_hook_func sendto_hook; // sendto hook tbh
2018-07-22 05:34:28 +02:00
// maybe a reference to dnsd_context incase of multiple
dnsd_context *context; // or you can access it via user (udp)
2018-07-16 14:48:04 +02:00
};
2018-08-08 14:40:54 +02:00
// FIXME: made better as a two way structure, collapse the request and response
// together
struct dnsd_query_hook_response
{
/// turn off communication
bool dontSendResponse;
/// turn off recursion
bool dontLookUp;
/// potential address
2018-11-29 15:01:13 +01:00
llarp::huint32_t returnThis;
};
/// builds and fires a request based based on llarp_udp_io udp event
/// called by the llarp_handle_dns_recvfrom generic (dnsd/dnsc) handler in dns
void
llarp_handle_dnsd_recvfrom(struct llarp_udp_io *udp,
2019-02-03 01:48:10 +01:00
const struct sockaddr *addr, ManagedBuffer buf);
//
// output structures/functions:
//
// we may want to pass dnsd_question_request to these,
// incase we need to send an error back up through the pipeline
// FIXME: just use the from in the request
/// NXDOMAIN not found
void
2018-12-01 15:35:11 +01:00
write404_dnss_response(const dnsd_question_request *request);
/// for hook functions to use
void
writecname_dnss_response(std::string cname,
const dnsd_question_request *request);
// FIXME: llarp::Addr
/// send an A record found response
void
writesend_dnss_response(llarp::huint32_t *hostRes,
2018-12-01 15:35:11 +01:00
const dnsd_question_request *request);
// FIXME: llarp::Addr
/// send an PTR record found response
void
writesend_dnss_revresponse(std::string reverse,
const dnsd_question_request *request);
// FIXME: llarp::Addr
//
// setup/teardown functions/structure:
//
2018-08-01 11:04:40 +02:00
/// intercept query hook functor
using intercept_query_hook = std::function< dnsd_query_hook_response *(
2018-12-01 15:35:11 +01:00
std::string name, const dnsd_question_request *request) >;
2018-09-29 12:22:00 +02:00
// FIXME: llarp::Addr
2018-07-22 05:34:28 +02:00
2018-08-01 11:04:40 +02:00
/// DNS Server context
2018-07-22 05:34:28 +02:00
struct dnsd_context
{
/// DNS daemon socket to listen on
struct llarp_udp_io udp;
2018-09-22 12:22:18 +02:00
/// udp tracker
2018-08-01 11:04:40 +02:00
struct dns_tracker *tracker;
/// upstream DNS client context to use
2018-07-22 05:34:28 +02:00
dnsc_context client;
2018-09-22 12:22:18 +02:00
/// custom data for intercept query hook (used for configuration of hook)
2018-07-22 05:34:28 +02:00
void *user;
/// hook function for intercepting dns requests
intercept_query_hook intercept;
};
/// initialize dns subsystem and bind socket
/// returns true on bind success otherwise returns false
bool
2018-12-10 15:14:55 +01:00
llarp_dnsd_init(struct dnsd_context *const dnsd, llarp::Logic *const logic,
2018-10-03 12:59:49 +02:00
struct llarp_ev_loop *const netloop,
const llarp::Addr &dnsd_sockaddr,
2018-09-29 12:22:00 +02:00
const llarp::Addr &dnsc_sockaddr);
2018-07-22 05:34:28 +02:00
2018-08-01 11:04:40 +02:00
/// shutdowns any events, and deallocates for this context
2018-07-22 05:34:28 +02:00
bool
2018-10-03 12:59:49 +02:00
llarp_dnsd_stop(struct dnsd_context *const dnsd);
2018-07-22 05:34:28 +02:00
2018-07-16 14:48:04 +02:00
#endif