2018-07-16 12:48:04 +00:00
|
|
|
#ifndef LIBLLARP_DNSD_HPP
|
|
|
|
#define LIBLLARP_DNSD_HPP
|
|
|
|
|
2018-07-25 00:35:11 +00:00
|
|
|
#include <llarp/ev.h> // for sockaadr
|
2018-07-24 01:43:32 +00:00
|
|
|
#include <string>
|
2018-07-25 00:35:11 +00:00
|
|
|
#include "dns.hpp" // question and dnsc
|
|
|
|
#include "dnsc.hpp"
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-23 23:56:26 +00:00
|
|
|
struct dnsd_context;
|
|
|
|
|
2018-07-21 13:24:47 +00:00
|
|
|
typedef ssize_t (*sendto_dns_hook_func)(void *sock, const struct sockaddr *from,
|
|
|
|
const void *buffer, size_t length);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
struct dnsd_question_request
|
2018-07-16 12:48:04 +00:00
|
|
|
{
|
|
|
|
/// sock type
|
|
|
|
void *user;
|
2018-07-22 03:34:28 +00:00
|
|
|
// raw or llarp subsystem
|
|
|
|
bool llarp;
|
2018-07-16 12:48:04 +00:00
|
|
|
/// request id
|
|
|
|
int id;
|
2018-07-22 03:34:28 +00:00
|
|
|
/// question being asked
|
|
|
|
dns_msg_question question;
|
|
|
|
// request source socket
|
2018-07-16 12:48:04 +00:00
|
|
|
struct sockaddr *from;
|
2018-07-21 13:24:47 +00:00
|
|
|
sendto_dns_hook_func hook; // sendto hook tbh
|
2018-07-22 03:34:28 +00:00
|
|
|
// maybe a reference to dnsd_context incase of multiple
|
2018-07-25 00:35:11 +00:00
|
|
|
dnsd_context *context; // or you can access it via user (udp)
|
2018-07-16 12:48:04 +00:00
|
|
|
};
|
|
|
|
|
2018-07-23 23:56:26 +00:00
|
|
|
// we could have passed in the source sockaddr in case you wanted to
|
|
|
|
// handle the response yourself
|
2018-08-08 17:43:46 +00:00
|
|
|
typedef sockaddr *(*intercept_query_hook)(std::string name,
|
|
|
|
struct dnsd_context *context);
|
2018-07-22 03:34:28 +00:00
|
|
|
|
|
|
|
struct dnsd_context
|
|
|
|
{
|
|
|
|
/// DNS daemon socket to listen on
|
|
|
|
struct llarp_udp_io udp;
|
|
|
|
dnsc_context client;
|
|
|
|
/// custom data for intercept query hook
|
|
|
|
void *user;
|
|
|
|
/// hook function for intercepting dns requests
|
|
|
|
intercept_query_hook intercept;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
llarp_handle_dnsd_recvfrom(struct llarp_udp_io *udp,
|
|
|
|
const struct sockaddr *paddr, const void *buf,
|
|
|
|
ssize_t sz);
|
|
|
|
|
|
|
|
/// initialize dns subsystem and bind socket
|
|
|
|
/// returns true on bind success otherwise returns false
|
|
|
|
bool
|
|
|
|
llarp_dnsd_init(struct dnsd_context *dnsd, struct llarp_ev_loop *netloop,
|
|
|
|
const char *dnsd_ifname, uint16_t dnsd_port,
|
|
|
|
const char *dnsc_hostname, uint16_t dnsc_port);
|
|
|
|
|
|
|
|
bool
|
|
|
|
llarp_dnsd_stop(struct dnsd_context *dnsd);
|
|
|
|
|
2018-07-16 12:48:04 +00:00
|
|
|
#endif
|