mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 11:11:56 +00:00
Fix GCC "warning: 'ipv4' defined but not used [-Wunused-variable]" and "warning: 'ipv6' defined but not used [-Wunused-variable]" when either IPv4 or IPv6 support is not enabled. Signed-off-by: Markus Fuchs <markus.fuchs@de.sauter-bc.com>
525 lines
11 KiB
C
525 lines
11 KiB
C
/** @file
|
|
* @brief mDNS responder
|
|
*
|
|
* This listens to mDNS queries and responds to them.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <logging/log.h>
|
|
LOG_MODULE_REGISTER(net_mdns_responder, CONFIG_MDNS_RESPONDER_LOG_LEVEL);
|
|
|
|
#include <zephyr.h>
|
|
#include <init.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <net/net_ip.h>
|
|
#include <net/net_pkt.h>
|
|
#include <net/dns_resolve.h>
|
|
|
|
#include "dns_pack.h"
|
|
#include "ipv6.h"
|
|
|
|
#include "net_private.h"
|
|
|
|
#define MDNS_LISTEN_PORT 5353
|
|
|
|
#define MDNS_TTL CONFIG_MDNS_RESPONDER_TTL /* In seconds */
|
|
|
|
#if defined(CONFIG_NET_IPV4)
|
|
static struct net_context *ipv4;
|
|
#endif
|
|
#if defined(CONFIG_NET_IPV6)
|
|
static struct net_context *ipv6;
|
|
#endif
|
|
|
|
#define BUF_ALLOC_TIMEOUT K_MSEC(100)
|
|
|
|
/* This value is recommended by RFC 1035 */
|
|
#define DNS_RESOLVER_MAX_BUF_SIZE 512
|
|
#define DNS_RESOLVER_MIN_BUF 2
|
|
#define DNS_RESOLVER_BUF_CTR (DNS_RESOLVER_MIN_BUF + \
|
|
CONFIG_MDNS_RESOLVER_ADDITIONAL_BUF_CTR)
|
|
|
|
NET_BUF_POOL_DEFINE(mdns_msg_pool, DNS_RESOLVER_BUF_CTR,
|
|
DNS_RESOLVER_MAX_BUF_SIZE, 0, NULL);
|
|
|
|
#if defined(CONFIG_NET_IPV6)
|
|
static void create_ipv6_addr(struct sockaddr_in6 *addr)
|
|
{
|
|
addr->sin6_family = AF_INET6;
|
|
addr->sin6_port = htons(MDNS_LISTEN_PORT);
|
|
|
|
/* Well known IPv6 ff02::fb address */
|
|
net_ipv6_addr_create(&addr->sin6_addr,
|
|
0xff02, 0, 0, 0, 0, 0, 0, 0x00fb);
|
|
}
|
|
#endif
|
|
|
|
#if defined(CONFIG_NET_IPV4)
|
|
static void create_ipv4_addr(struct sockaddr_in *addr)
|
|
{
|
|
addr->sin_family = AF_INET;
|
|
addr->sin_port = htons(MDNS_LISTEN_PORT);
|
|
|
|
/* Well known IPv4 224.0.0.251 address */
|
|
addr->sin_addr.s_addr = htonl(0xE00000FB);
|
|
}
|
|
#endif
|
|
|
|
static struct net_context *get_ctx(sa_family_t family)
|
|
{
|
|
struct net_context *ctx;
|
|
int ret;
|
|
|
|
ret = net_context_get(family, SOCK_DGRAM, IPPROTO_UDP, &ctx);
|
|
if (ret < 0) {
|
|
NET_DBG("Cannot get context (%d)", ret);
|
|
return NULL;
|
|
}
|
|
|
|
return ctx;
|
|
}
|
|
|
|
static int bind_ctx(struct net_context *ctx,
|
|
struct sockaddr *local_addr,
|
|
socklen_t addrlen)
|
|
{
|
|
int ret;
|
|
|
|
if (!ctx) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
ret = net_context_bind(ctx, local_addr, addrlen);
|
|
if (ret < 0) {
|
|
NET_DBG("Cannot bind to mDNS %s port (%d)",
|
|
local_addr->sa_family == AF_INET ?
|
|
"IPv4" : "IPv6", ret);
|
|
return ret;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void setup_dns_hdr(u8_t *buf, u16_t answers)
|
|
{
|
|
u16_t offset;
|
|
u16_t flags;
|
|
|
|
/* See RFC 1035, ch 4.1.1 for header details */
|
|
|
|
flags = BIT(15); /* This is response */
|
|
flags |= BIT(10); /* Authoritative Answer */
|
|
|
|
UNALIGNED_PUT(0, (u16_t *)(buf)); /* Identifier, RFC 6762 ch 18.1 */
|
|
offset = DNS_HEADER_ID_LEN;
|
|
|
|
UNALIGNED_PUT(htons(flags), (u16_t *)(buf+offset));
|
|
offset += DNS_HEADER_FLAGS_LEN;
|
|
|
|
UNALIGNED_PUT(0, (u16_t *)(buf + offset));
|
|
offset += DNS_QDCOUNT_LEN;
|
|
|
|
UNALIGNED_PUT(htons(answers), (u16_t *)(buf + offset));
|
|
offset += DNS_ANCOUNT_LEN;
|
|
|
|
UNALIGNED_PUT(0, (u16_t *)(buf + offset));
|
|
offset += DNS_NSCOUNT_LEN;
|
|
|
|
UNALIGNED_PUT(0, (u16_t *)(buf + offset));
|
|
}
|
|
|
|
static void add_answer(struct net_buf *query, enum dns_rr_type qtype,
|
|
u32_t ttl, u16_t addr_len, u8_t *addr)
|
|
{
|
|
char *dot = query->data + DNS_MSG_HEADER_SIZE;
|
|
char *prev = NULL;
|
|
u16_t offset;
|
|
|
|
while ((dot = strchr(dot, '.'))) {
|
|
if (!prev) {
|
|
prev = dot++;
|
|
continue;
|
|
}
|
|
|
|
*prev = dot - prev - 1;
|
|
prev = dot++;
|
|
}
|
|
|
|
if (prev) {
|
|
*prev = strlen(prev) - 1;
|
|
}
|
|
|
|
/* terminator byte (0x00) */
|
|
query->len += 1;
|
|
|
|
offset = DNS_MSG_HEADER_SIZE + query->len;
|
|
UNALIGNED_PUT(htons(qtype), (u16_t *)(query->data+offset));
|
|
|
|
/* Bit 15 tells to flush the cache */
|
|
offset += DNS_QTYPE_LEN;
|
|
UNALIGNED_PUT(htons(DNS_CLASS_IN | BIT(15)),
|
|
(u16_t *)(query->data+offset));
|
|
|
|
|
|
offset += DNS_QCLASS_LEN;
|
|
UNALIGNED_PUT(htonl(ttl), query->data + offset);
|
|
|
|
offset += DNS_TTL_LEN;
|
|
UNALIGNED_PUT(htons(addr_len), query->data + offset);
|
|
|
|
offset += DNS_RDLENGTH_LEN;
|
|
memcpy(query->data + offset, addr, addr_len);
|
|
}
|
|
|
|
static int create_answer(struct net_context *ctx,
|
|
struct net_buf *query,
|
|
enum dns_rr_type qtype,
|
|
u16_t addr_len, u8_t *addr)
|
|
{
|
|
/* Prepare the response into the query buffer: move the name
|
|
* query buffer has to get enough free space: dns_hdr + answer
|
|
*/
|
|
if ((query->size - query->len) < (DNS_MSG_HEADER_SIZE +
|
|
DNS_QTYPE_LEN + DNS_QCLASS_LEN +
|
|
DNS_TTL_LEN + DNS_RDLENGTH_LEN +
|
|
addr_len)) {
|
|
return -ENOBUFS;
|
|
}
|
|
|
|
memmove(query->data + DNS_MSG_HEADER_SIZE, query->data, query->len);
|
|
|
|
setup_dns_hdr(query->data, 1);
|
|
|
|
add_answer(query, qtype, MDNS_TTL, addr_len, addr);
|
|
|
|
query->len += DNS_MSG_HEADER_SIZE +
|
|
DNS_QTYPE_LEN + DNS_QCLASS_LEN +
|
|
DNS_TTL_LEN + DNS_RDLENGTH_LEN + addr_len;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int send_response(struct net_context *ctx,
|
|
struct net_pkt *pkt,
|
|
union net_ip_header *ip_hdr,
|
|
struct net_buf *query,
|
|
enum dns_rr_type qtype)
|
|
{
|
|
struct sockaddr dst;
|
|
socklen_t dst_len;
|
|
int ret;
|
|
|
|
if (qtype == DNS_RR_TYPE_A) {
|
|
#if defined(CONFIG_NET_IPV4)
|
|
const struct in_addr *addr;
|
|
|
|
addr = net_if_ipv4_select_src_addr(net_pkt_iface(pkt),
|
|
&ip_hdr->ipv4->src);
|
|
|
|
create_ipv4_addr(net_sin(&dst));
|
|
dst_len = sizeof(struct sockaddr_in);
|
|
|
|
ret = create_answer(ctx, query, qtype,
|
|
sizeof(struct in_addr), (u8_t *)addr);
|
|
if (ret != 0) {
|
|
return ret;
|
|
}
|
|
|
|
net_context_set_ipv4_ttl(ctx, 255);
|
|
#else /* CONFIG_NET_IPV4 */
|
|
return -EPFNOSUPPORT;
|
|
#endif /* CONFIG_NET_IPV4 */
|
|
|
|
} else if (qtype == DNS_RR_TYPE_AAAA) {
|
|
#if defined(CONFIG_NET_IPV6)
|
|
const struct in6_addr *addr;
|
|
|
|
addr = net_if_ipv6_select_src_addr(net_pkt_iface(pkt),
|
|
&ip_hdr->ipv6->src);
|
|
|
|
create_ipv6_addr(net_sin6(&dst));
|
|
dst_len = sizeof(struct sockaddr_in6);
|
|
|
|
ret = create_answer(ctx, query, qtype,
|
|
sizeof(struct in6_addr), (u8_t *)addr);
|
|
if (ret != 0) {
|
|
return -ENOMEM;
|
|
}
|
|
|
|
net_context_set_ipv6_hop_limit(ctx, 255);
|
|
#else /* CONFIG_NET_IPV6 */
|
|
return -EPFNOSUPPORT;
|
|
#endif /* CONFIG_NET_IPV6 */
|
|
|
|
} else {
|
|
/* TODO: support also service PTRs */
|
|
return -EINVAL;
|
|
}
|
|
|
|
ret = net_context_sendto(ctx, query->data, query->len, &dst,
|
|
dst_len, NULL, K_NO_WAIT, NULL);
|
|
if (ret < 0) {
|
|
NET_DBG("Cannot send mDNS reply (%d)", ret);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int dns_read(struct net_context *ctx,
|
|
struct net_pkt *pkt,
|
|
union net_ip_header *ip_hdr,
|
|
struct net_buf *dns_data,
|
|
struct dns_addrinfo *info)
|
|
{
|
|
/* Helper struct to track the dns msg received from the server */
|
|
const char *hostname = net_hostname_get();
|
|
int hostname_len = strlen(hostname);
|
|
struct net_buf *result;
|
|
struct dns_msg_t dns_msg;
|
|
int data_len;
|
|
int queries;
|
|
int ret;
|
|
|
|
data_len = MIN(net_pkt_remaining_data(pkt), DNS_RESOLVER_MAX_BUF_SIZE);
|
|
|
|
/* Store the DNS query name into a temporary net_buf, which will be
|
|
* enventually used to send a response
|
|
*/
|
|
result = net_buf_alloc(&mdns_msg_pool, BUF_ALLOC_TIMEOUT);
|
|
if (!result) {
|
|
ret = -ENOMEM;
|
|
goto quit;
|
|
}
|
|
|
|
/* TODO: Instead of this temporary copy, just use the net_pkt directly.
|
|
*/
|
|
ret = net_pkt_read(pkt, dns_data->data, data_len);
|
|
if (ret < 0) {
|
|
goto quit;
|
|
}
|
|
|
|
dns_msg.msg = dns_data->data;
|
|
dns_msg.msg_size = data_len;
|
|
|
|
ret = mdns_unpack_query_header(&dns_msg, NULL);
|
|
if (ret < 0) {
|
|
ret = -EINVAL;
|
|
goto quit;
|
|
}
|
|
|
|
queries = ret;
|
|
|
|
NET_DBG("Received %d %s from %s", queries,
|
|
queries > 1 ? "queries" : "query",
|
|
net_pkt_family(pkt) == AF_INET ?
|
|
log_strdup(net_sprint_ipv4_addr(&NET_IPV4_HDR(pkt)->src)) :
|
|
log_strdup(net_sprint_ipv6_addr(&NET_IPV6_HDR(pkt)->src)));
|
|
|
|
do {
|
|
enum dns_rr_type qtype;
|
|
enum dns_class qclass;
|
|
u8_t *lquery;
|
|
|
|
(void)memset(result->data, 0, net_buf_tailroom(result));
|
|
result->len = 0U;
|
|
|
|
ret = dns_unpack_query(&dns_msg, result, &qtype, &qclass);
|
|
if (ret < 0) {
|
|
goto quit;
|
|
}
|
|
|
|
/* Handle only .local queries */
|
|
lquery = strrchr(result->data + 1, '.');
|
|
if (!lquery || memcmp(lquery, (const void *){ ".local" }, 7)) {
|
|
continue;
|
|
}
|
|
|
|
NET_DBG("[%d] query %s/%s label %s (%d bytes)", queries,
|
|
qtype == DNS_RR_TYPE_A ? "A" : "AAAA", "IN",
|
|
log_strdup(result->data), ret);
|
|
|
|
/* If the query matches to our hostname, then send reply.
|
|
* We skip the first dot, and make sure there is dot after
|
|
* matching hostname.
|
|
*/
|
|
if (!strncasecmp(hostname, result->data + 1, hostname_len) &&
|
|
(result->len - 1) >= hostname_len &&
|
|
&(result->data + 1)[hostname_len] == lquery) {
|
|
NET_DBG("mDNS query to our hostname %s.local",
|
|
hostname);
|
|
send_response(ctx, pkt, ip_hdr, result, qtype);
|
|
}
|
|
} while (--queries);
|
|
|
|
ret = 0;
|
|
|
|
quit:
|
|
if (result) {
|
|
net_buf_unref(result);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void recv_cb(struct net_context *net_ctx,
|
|
struct net_pkt *pkt,
|
|
union net_ip_header *ip_hdr,
|
|
union net_proto_header *proto_hdr,
|
|
int status,
|
|
void *user_data)
|
|
{
|
|
struct net_context *ctx = user_data;
|
|
struct net_buf *dns_data = NULL;
|
|
struct dns_addrinfo info = { 0 };
|
|
int ret;
|
|
|
|
ARG_UNUSED(net_ctx);
|
|
NET_ASSERT(ctx == net_ctx);
|
|
|
|
if (!pkt) {
|
|
return;
|
|
}
|
|
|
|
if (status) {
|
|
goto quit;
|
|
}
|
|
|
|
dns_data = net_buf_alloc(&mdns_msg_pool, BUF_ALLOC_TIMEOUT);
|
|
if (!dns_data) {
|
|
goto quit;
|
|
}
|
|
|
|
ret = dns_read(ctx, pkt, ip_hdr, dns_data, &info);
|
|
if (ret < 0 && ret != -EINVAL) {
|
|
NET_DBG("mDNS read failed (%d)", ret);
|
|
}
|
|
|
|
net_buf_unref(dns_data);
|
|
|
|
quit:
|
|
net_pkt_unref(pkt);
|
|
}
|
|
|
|
#if defined(CONFIG_NET_IPV6)
|
|
static void iface_ipv6_cb(struct net_if *iface, void *user_data)
|
|
{
|
|
struct in6_addr *addr = user_data;
|
|
int ret;
|
|
|
|
ret = net_ipv6_mld_join(iface, addr);
|
|
if (ret < 0) {
|
|
NET_DBG("Cannot join %s IPv6 multicast group (%d)",
|
|
log_strdup(net_sprint_ipv6_addr(addr)), ret);
|
|
}
|
|
}
|
|
|
|
static void setup_ipv6_addr(struct sockaddr_in6 *local_addr)
|
|
{
|
|
create_ipv6_addr(local_addr);
|
|
|
|
net_if_foreach(iface_ipv6_cb, &local_addr->sin6_addr);
|
|
}
|
|
#endif /* CONFIG_NET_IPV6 */
|
|
|
|
#if defined(CONFIG_NET_IPV4)
|
|
static void iface_ipv4_cb(struct net_if *iface, void *user_data)
|
|
{
|
|
struct in_addr *addr = user_data;
|
|
struct net_if_mcast_addr *ifaddr;
|
|
|
|
ifaddr = net_if_ipv4_maddr_add(iface, addr);
|
|
if (!ifaddr) {
|
|
NET_DBG("Cannot add IPv4 multicast address to iface %p",
|
|
iface);
|
|
}
|
|
}
|
|
|
|
static void setup_ipv4_addr(struct sockaddr_in *local_addr)
|
|
{
|
|
create_ipv4_addr(local_addr);
|
|
|
|
net_if_foreach(iface_ipv4_cb, &local_addr->sin_addr);
|
|
}
|
|
#endif /* CONFIG_NET_IPV4 */
|
|
|
|
static int init_listener(void)
|
|
{
|
|
int ret, ok = 0;
|
|
|
|
#if defined(CONFIG_NET_IPV6)
|
|
do {
|
|
static struct sockaddr_in6 local_addr;
|
|
|
|
setup_ipv6_addr(&local_addr);
|
|
|
|
ipv6 = get_ctx(AF_INET6);
|
|
|
|
ret = bind_ctx(ipv6, (struct sockaddr *)&local_addr,
|
|
sizeof(local_addr));
|
|
if (ret < 0) {
|
|
net_context_put(ipv6);
|
|
goto ipv6_out;
|
|
}
|
|
|
|
ret = net_context_recv(ipv6, recv_cb, K_NO_WAIT, ipv6);
|
|
if (ret < 0) {
|
|
NET_WARN("Cannot receive IPv6 mDNS data (%d)", ret);
|
|
net_context_put(ipv6);
|
|
} else {
|
|
ok++;
|
|
}
|
|
} while (0);
|
|
ipv6_out:
|
|
#endif /* CONFIG_NET_IPV6 */
|
|
|
|
#if defined(CONFIG_NET_IPV4)
|
|
do {
|
|
static struct sockaddr_in local_addr;
|
|
|
|
setup_ipv4_addr(&local_addr);
|
|
|
|
ipv4 = get_ctx(AF_INET);
|
|
|
|
ret = bind_ctx(ipv4, (struct sockaddr *)&local_addr,
|
|
sizeof(local_addr));
|
|
if (ret < 0) {
|
|
net_context_put(ipv4);
|
|
goto ipv4_out;
|
|
}
|
|
|
|
ret = net_context_recv(ipv4, recv_cb, K_NO_WAIT, ipv4);
|
|
if (ret < 0) {
|
|
NET_WARN("Cannot receive IPv4 mDNS data (%d)", ret);
|
|
net_context_put(ipv4);
|
|
} else {
|
|
ok++;
|
|
}
|
|
} while (0);
|
|
ipv4_out:
|
|
#endif /* CONFIG_NET_IPV4 */
|
|
|
|
if (!ok) {
|
|
NET_WARN("Cannot start mDNS responder");
|
|
}
|
|
|
|
return !ok;
|
|
}
|
|
|
|
static int mdns_responder_init(struct device *device)
|
|
{
|
|
ARG_UNUSED(device);
|
|
|
|
return init_listener();
|
|
}
|
|
|
|
SYS_INIT(mdns_responder_init, APPLICATION, CONFIG_MDNS_RESPONDER_INIT_PRIO);
|