aboutsummaryrefslogtreecommitdiff
path: root/resolv/Makefile
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-08-30 10:02:49 +0200
committerFlorian Weimer <fweimer@redhat.com>2022-08-30 10:02:49 +0200
commit857c890d9b42c50c8a94b76d47d4a61ab6d2f49c (patch)
tree1b87343a1b57fb9cf28d19c3884066e9f57e6b90 /resolv/Makefile
parent78b1a4f0e49064e5dfb686c7cd87bd4df2640b29 (diff)
downloadglibc-857c890d9b42c50c8a94b76d47d4a61ab6d2f49c.zip
glibc-857c890d9b42c50c8a94b76d47d4a61ab6d2f49c.tar.gz
glibc-857c890d9b42c50c8a94b76d47d4a61ab6d2f49c.tar.bz2
resolv: Add DNS packet parsing helpers geared towards wire format
The public parser functions around the ns_rr record type produce textual domain names, but usually, this is not what we need while parsing DNS packets within glibc. This commit adds two new helper functions, __ns_rr_cursor_init and __ns_rr_cursor_next, for writing packet parsers, and struct ns_rr_cursor, struct ns_rr_wire as supporting types. In theory, it is possible to avoid copying the owner name into the rname field in __ns_rr_cursor_next, but this would need more functions that work on compressed names. Eventually, __res_context_send could be enhanced to preserve the result of the packet parsing that is necessary for matching the incoming UDP packets, so that this works does not have to be done twice. Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'resolv/Makefile')
-rw-r--r--resolv/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/resolv/Makefile b/resolv/Makefile
index bf28825..018b180 100644
--- a/resolv/Makefile
+++ b/resolv/Makefile
@@ -47,6 +47,8 @@ routines := \
ns_name_skip \
ns_name_uncompress \
ns_name_unpack \
+ ns_rr_cursor_init \
+ ns_rr_cursor_next \
ns_samebinaryname \
ns_samename \
nsap_addr \
@@ -116,6 +118,10 @@ tests-static += tst-ns_samebinaryname
tests-internal += tst-ns_name_length_uncompressed
tests-static += tst-ns_name_length_uncompressed
+# Likewise for struct ns_rr_cursor and its functions.
+tests-internal += tst-ns_rr_cursor
+tests-static += tst-ns_rr_cursor
+
# These tests need libdl.
ifeq (yes,$(build-shared))
tests += \