mirror of
https://github.com/espressif/openthread.git
synced 2025-08-06 14:52:18 +08:00

This commit introduces native mDNS support within the OpenThread stack, implementing RFC 6762 compliant registration of hosts, services, and keys. It supports the following functionalities: - Sending probes to claim names. - Sending announcements on initial registration and changes. - Sending "goodbye" announcements when unregistered or upon record removal. - Negative responses (NSEC). - Support for service sub-types and their addition/removal. - Support for `_services._dns-sd._udp` queries (all service types). - Responding to queries (including "QU" questions). - Delay mechanism when responding to multi-question query messages, ensuring unique answers. - Providing extra records in the Additional Data section if not already in the Answer section (e.g., on a PTR query, include SRV and host AAAA addresses). - Implementing Known-Answer Suppression. - Supporting multi-packet queries with known answers in follow-up messages. - Rate-limiting record multicasts (once per second). - Rate-limiting probe responses (once per 250ms). - Detecting conflicts after probes. - Limiting the size of emitted responses or probes, breaking into multiple messages if necessary. - Detecting self originating messages (sent by mDNS module). - Support for service browser. - Support for service resolvers (SRV and TXT records) and IPv4/IPv6 address resolvers for hostnames. - Introduces smart cache management: - Passively caches service records for active browsers. - Passively caches address records for active service resolvers. - Enables multiple simultaneous browsers/resolvers for the same service/host. This commit introduces public `otMdns` OpenThread APIs and related CLI commands for the mDNS module. For platform abstraction, `otPlatMdns` APIs are defined in `mdns_socket.h` (e.g., to send or receive mDNS messages): - An implementation of the platform APIs is provided for posix. - Also under the simulation platform, a simplified implementation of the `otPlatMdns` APIs is provided (intended for testing). This commit also adds a detailed `test_mdns` unit test, validating various functionalities and covering potential edge cases.
135 lines
3.7 KiB
Plaintext
135 lines
3.7 KiB
Plaintext
# Copyright (c) 2020, The OpenThread Authors.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
# 3. Neither the name of the copyright holder nor the
|
|
# names of its contributors may be used to endorse or promote products
|
|
# derived from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
import("../../etc/gn/openthread.gni")
|
|
|
|
source_set("openthread_config") {
|
|
public = [ "config.h" ]
|
|
|
|
if (openthread_config_file != "") {
|
|
public_deps = openthread_config_deps
|
|
}
|
|
|
|
public_configs = [ "../..:openthread_config" ]
|
|
}
|
|
|
|
source_set("openthread") {
|
|
public = [
|
|
"backbone_router.h",
|
|
"backbone_router_ftd.h",
|
|
"ble_secure.h",
|
|
"border_agent.h",
|
|
"border_router.h",
|
|
"border_routing.h",
|
|
"channel_manager.h",
|
|
"channel_monitor.h",
|
|
"child_supervision.h",
|
|
"cli.h",
|
|
"coap.h",
|
|
"coap_secure.h",
|
|
"commissioner.h",
|
|
"config.h",
|
|
"crypto.h",
|
|
"dataset.h",
|
|
"dataset_ftd.h",
|
|
"dataset_updater.h",
|
|
"diag.h",
|
|
"dns.h",
|
|
"dns_client.h",
|
|
"dnssd_server.h",
|
|
"error.h",
|
|
"heap.h",
|
|
"history_tracker.h",
|
|
"icmp6.h",
|
|
"instance.h",
|
|
"ip6.h",
|
|
"jam_detection.h",
|
|
"joiner.h",
|
|
"link.h",
|
|
"link_metrics.h",
|
|
"link_raw.h",
|
|
"logging.h",
|
|
"mdns.h",
|
|
"mesh_diag.h",
|
|
"message.h",
|
|
"multi_radio.h",
|
|
"nat64.h",
|
|
"ncp.h",
|
|
"netdata.h",
|
|
"netdata_publisher.h",
|
|
"netdiag.h",
|
|
"network_time.h",
|
|
"ping_sender.h",
|
|
"platform/alarm-micro.h",
|
|
"platform/alarm-milli.h",
|
|
"platform/ble.h",
|
|
"platform/border_routing.h",
|
|
"platform/crypto.h",
|
|
"platform/debug_uart.h",
|
|
"platform/diag.h",
|
|
"platform/dns.h",
|
|
"platform/dnssd.h",
|
|
"platform/dso_transport.h",
|
|
"platform/entropy.h",
|
|
"platform/flash.h",
|
|
"platform/infra_if.h",
|
|
"platform/logging.h",
|
|
"platform/mdns_socket.h",
|
|
"platform/memory.h",
|
|
"platform/messagepool.h",
|
|
"platform/misc.h",
|
|
"platform/multipan.h",
|
|
"platform/otns.h",
|
|
"platform/radio.h",
|
|
"platform/settings.h",
|
|
"platform/spi-slave.h",
|
|
"platform/time.h",
|
|
"platform/toolchain.h",
|
|
"platform/trel.h",
|
|
"platform/udp.h",
|
|
"radio_stats.h",
|
|
"random_crypto.h",
|
|
"random_noncrypto.h",
|
|
"server.h",
|
|
"sntp.h",
|
|
"srp_client.h",
|
|
"srp_client_buffers.h",
|
|
"srp_server.h",
|
|
"tasklet.h",
|
|
"tcat.h",
|
|
"tcp.h",
|
|
"tcp_ext.h",
|
|
"thread.h",
|
|
"thread_ftd.h",
|
|
"trel.h",
|
|
"udp.h",
|
|
"verhoeff_checksum.h",
|
|
]
|
|
|
|
public_deps = [ ":openthread_config" ]
|
|
}
|