mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Ryan Ward <rwardd@outlook.com.au>
To: Rich Felker <dalias@libc.org>
Cc: Szabolcs Nagy <nsz@port70.net>,
	"musl@lists.openwall.com" <musl@lists.openwall.com>
Subject: Re: [musl] Adding dns/resolver tests to libc-test
Date: Mon, 9 Sep 2024 14:46:22 +0000	[thread overview]
Message-ID: <TYSPR01MB62211EECB201FEFBB44EA565F0992@TYSPR01MB6221.apcprd01.prod.exchangelabs.com> (raw)
In-Reply-To: <20240827213435.GG10433@brightrain.aerifal.cx>

[-- Attachment #1: Type: text/plain, Size: 1443 bytes --]

> My intent was that you call enter_dns_test_ns from the test process
> itself, not from a separate wrapper to exec it. This is so you don't
> end up having a program in the tests dir that, when executed
> independently as root, clobbers the host system's resolv.conf or hosts
> file (which would be really really bad). By entering the namespace in
> the same process and testing for error, you can bail out before doing
> anything if the namespace setup failed. This also avoids the need to
> add extra control machinery to run the tests.

No problems, understood, I saw the exec call in the unshare-ns.c file 
and got confused. I have refactored the test attached, and added the 
unshare-ns.c file to the src/common/ directory in libc-test, and exposed
the enter_dns_test_ns method in the test.h header file. Is this an 
appropriate solution?

The attached res_query test tests for expected domain names, classes,
types and response data from given requests. I'm yet to implement TCP
or IPV6, and wanted to ask if v4/v6 should be in separate test files, 
as to ensure the test files aren't too long-winded. I've tried to structure
the test so it's as simple as specifying a domain name, and its expected RR 
data. The test just then iterates through the domains to test, the server returns
the hardcoded packets, and checks are performed.

Is this somewhat along the lines of what you are looking for?

Thanks,
rw

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: resolv_query.c --]
[-- Type: text/x-csrc; name="resolv_query.c", Size: 9256 bytes --]

#include "test.h"
#include <arpa/inet.h>
#include <arpa/nameser.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <net/if.h>
#include <netdb.h>
#include <netinet/in.h>
#include <pthread.h>
#include <resolv.h>
#include <sched.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <unistd.h>

#define TEST(c, ...) ((c) || (t_error(#c " failed: " __VA_ARGS__), 0))
#define DNS_HEADER_OFFSET 12
#define DNS_FIELD_SIZES 12

typedef struct {
	char *domain_name;
	uint16_t type;
	uint16_t class;
	char *expected_response_data;
	size_t num_answers;
	size_t response_size;
} test_dns_packet;

#define DNS_PACKET(domain, _type, _class, response, _num_answers, size) \
	(test_dns_packet)													\
	{																	\
		.domain_name = domain, .type = _type, .class = _class,			\
		.expected_response_data = response,								\
		.num_answers = _num_answers, .response_size = size				\
	}

// Simple answer resource record
#define EXAMPLE_ANSWER_RR  \
	"\xc0\x0c"         \
	"\x00\x01"         \
	"\x00\x01"         \
	"\x00\x00\x02\x58" \
	"\x00\x04"         \
	"\xc0\xa8\x11\x01" // IPv4 192.168.17.1

// Extended answer resource record
#define EXTENDED_ANSWER_RR \
	"\xc0\x0c"         \
	"\x00\x01"         \
	"\x00\x01"         \
	"\x00\x00\x02\x58" \
	"\x00\x04"         \
	"\xc0\xa8\x11\x02" \
	"\xc0\x1c"         \
	"\x00\x01"         \
	"\x00\x01"         \
	"\x00\x00\x02\x58" \
	"\x00\x04"         \
	"\xc0\xa8\x11\x03"

#define TEST_IPV4                                                  \
	DNS_PACKET("example.com", 0x01, 0x01, EXAMPLE_ANSWER_RR, 0x01, \
	           sizeof(EXAMPLE_ANSWER_RR))

#define TEST_LONG_DOMAIN                                                   \
	DNS_PACKET("foo.bar.example.com", 0x01, 0x01, EXAMPLE_ANSWER_RR, 0x01, \
	           sizeof(EXAMPLE_ANSWER_RR))

#define TEST_EXTENDED_RESPONSE                                        \
	DNS_PACKET("fizz.buzz.com", 0x01, 0x01, EXTENDED_ANSWER_RR, 0x02, \
	           sizeof(EXTENDED_ANSWER_RR))

static test_dns_packet dns_tests[] = {TEST_IPV4, TEST_LONG_DOMAIN,
                                      TEST_EXTENDED_RESPONSE};
static const size_t dns_test_count = sizeof(dns_tests) / sizeof(*dns_tests);

// Wait until serving thread is ready to receive
pthread_barrier_t sync_barrier;

static size_t construct_response(uint16_t id, unsigned char *question,
                                 unsigned char *response, int response_index)
{
	HEADER dns_header;
	const size_t dns_header_offset = sizeof(dns_header);
	const size_t expected_question_size =
	    strlen(dns_tests[response_index].domain_name) + 6;
	memset(&dns_header, 0, dns_header_offset);

	dns_header.id = id;
	dns_header.qr = 0x01U;
	dns_header.rd = 0x01U;
	dns_header.ra = 0x01U;
	dns_header.qdcount = 0x0100U; // 1 question
	dns_header.ancount = htons(dns_tests[response_index].num_answers);

	memcpy(response, &dns_header, sizeof(dns_header));
	memcpy(&response[dns_header_offset], &question[dns_header_offset],
	       expected_question_size);

	char *answer_buffer = dns_tests[response_index].expected_response_data;
	memcpy(&response[dns_header_offset + expected_question_size],
	       &answer_buffer[0], dns_tests[response_index].response_size);

	return dns_header_offset + expected_question_size +
	       dns_tests[response_index].response_size -
	       1; // ignore null terminator
}

static int bind_to_socket(int s)
{
	struct sockaddr_in dns_server;

	memset(&dns_server, 0, sizeof(dns_server));
	dns_server.sin_addr.s_addr = inet_addr("127.0.0.1");
	dns_server.sin_family = AF_INET;
	dns_server.sin_port = htons(53);

	return bind(s, (struct sockaddr *)&dns_server, sizeof(dns_server));
}

static int set_environment(void)
{
	FILE *ft = fopen("/etc/resolv.conf", "w");
	if (ft == NULL) {
		t_error("unable to open namespaced resolv.conf\n");
		return -1;
	}
	fprintf(ft, "nameserver 127.0.0.1");
	fclose(ft);

	ft = fopen("/etc/hosts", "w");
	if (ft == NULL) {
		t_error("unable to open namespaced resolv.conf\n");
		return -1;
	}
	fprintf(ft, "127.0.0.1 localhost");
	fclose(ft);

	return 0;
}

void *dns_server(void *arguments)
{
	int s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
	int status = bind_to_socket(s);

	struct sockaddr_in from = {0};
	socklen_t from_length = sizeof(from);
	unsigned char packet_buffer[NS_PACKETSZ];
	pthread_barrier_wait(&sync_barrier);

	int packets_received = 0;
	while (packets_received != dns_test_count) {

		int packet_size =
		    recvfrom(s, packet_buffer, NS_PACKETSZ, 0,
		             (struct sockaddr *)&from, &from_length);

		unsigned char response_buffer[NS_PACKETSZ] = {0};
		const uint16_t response_id =
		    (packet_buffer[1] << 8) | packet_buffer[0];
		size_t response_size =
		    construct_response(response_id, packet_buffer,
		                       response_buffer, packets_received);

		status = sendto(s, response_buffer, response_size, 0,
		                (struct sockaddr *)&from, from_length);

		packets_received++;
	}

	return 0;
}

static unsigned char *check_domain_name(const char *domain_name,
                                        unsigned char *buffer, unsigned *length)
{
	unsigned name_location = 0;
	while (*buffer != 0x00) {
		TEST(!memcmp(buffer + 1, domain_name + name_location, *buffer),
		     "Expected domain name %s, got %s\n",
		     domain_name + name_location, buffer + 1);

		name_location += *buffer + 1;
		buffer += *buffer + 1;
	}
	*length = name_location;
	return buffer;
}

static unsigned char *check_dns_questions(unsigned char *buffer,
                                          test_dns_packet *packet)
{
	// Check the question is returned properly
	unsigned char *x = buffer + DNS_HEADER_OFFSET;
	unsigned name_length = 0;
	x = check_domain_name(packet->domain_name, x, &name_length);

	// Increment to check returned class
	x++;
	uint16_t class = ntohs(*(uint16_t *)x);
	TEST(class == packet->class, "Expected class 0x%04x, got 0x%04x\n",
	     packet->class, class);

	// Increment to check returned type
	x += sizeof(uint16_t);
	uint16_t type = ntohs(*(uint16_t *)x);
	TEST(type == packet->type, "Expected type 0x%04x, got 0x%04x\n",
	     packet->class, type);

	x += sizeof(uint16_t);
	return x;
}

static unsigned char *check_dns_answers(unsigned char *buffer,
                                        test_dns_packet *packet,
                                        int *previous_answer_length)
{
	unsigned additional_offset = 0;
	if (ntohs(*(uint16_t *)buffer) != 0xc00c + *previous_answer_length) {
		buffer = check_domain_name(packet->domain_name, buffer,
		                           &additional_offset);
		buffer++;
	} else {
		buffer += sizeof(uint16_t);
	}

	uint16_t class = ntohs(*(uint16_t *)buffer);
	TEST(class == packet->class, "Expected class 0x%04x, got 0x%04x\n",
	     packet->class, class);

	buffer += sizeof(uint16_t);
	uint16_t type = ntohs(*(uint16_t *)buffer);
	TEST(type == packet->type, "Expected type 0x%04x, got 0x%04x\n",
	     packet->class, type);

	buffer += sizeof(uint16_t);
	uint32_t ttl = ntohl(*(uint32_t *)buffer);
	TEST(ttl > 0, "Expected TTL %ld to be greater than 0\n", ttl);

	buffer += sizeof(uint32_t);
	uint16_t resource_length = ntohs(*(uint16_t *)buffer);
	TEST(resource_length > 0,
	     "Expected resource length %d to be greater than 0\n",
	     resource_length);
	buffer += sizeof(uint16_t);

	uint32_t expected_ip =
	    *(uint32_t *)&packet
	         ->expected_response_data[DNS_FIELD_SIZES +
	                                  *previous_answer_length +
	                                  additional_offset];

	TEST(!memcmp(buffer, &expected_ip, resource_length),
	     "Expected IPv4 addresses to match: 0x%08x, 0x%08x\n",
	     ntohl(*(uint32_t *)buffer), ntohl(expected_ip));

	*previous_answer_length =
	    additional_offset + resource_length + DNS_FIELD_SIZES;
	buffer += resource_length;

	return buffer;
}

static void dns_test(test_dns_packet *test)
{
	unsigned char res_buffer[NS_PACKETSZ] = {0};
	int length = res_query(test->domain_name, test->class, test->type,
	                       res_buffer, sizeof(res_buffer));

	size_t num_answers = ntohs(*(uint16_t *)(res_buffer + 6));
	unsigned char *answer_buffer = check_dns_questions(res_buffer, test);

	int previous_answer_length = 0;
	for (size_t answer = 0; answer < num_answers; ++answer) {
		answer_buffer = check_dns_answers(answer_buffer, test,
		                                  &previous_answer_length);
	}

	TEST(*answer_buffer == 0x00,
	     "Expected end of DNS packet to equal 0x00\n");
}

int main(void)
{
	if (t_enter_dns_ns() < 0) {
		t_error("Failed to enter test namespace: %s\n",
		        strerror(errno));
		return t_status;
	}

	if (set_environment() < 0) {
		t_error("Failed to set environment\n");
		return t_status;
	}

	pthread_barrier_init(&sync_barrier, NULL, 2);
	pthread_t dns_thread;
	int status = pthread_create(&dns_thread, 0, dns_server, 0);
	pthread_barrier_wait(&sync_barrier);

	for (int test_index = 0; test_index < dns_test_count; ++test_index) {
		dns_test(&dns_tests[test_index]);
	}

	void *thread_return;
	pthread_join(dns_thread, &thread_return);

	return t_status;
}

  reply	other threads:[~2024-09-09 14:46 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-18  2:03 Rich Felker
2024-08-18  9:38 ` Szabolcs Nagy
2024-08-27 15:30   ` Ryan Ward
2024-08-27 21:34     ` Rich Felker
2024-09-09 14:46       ` Ryan Ward [this message]
2024-09-11 20:38         ` Szabolcs Nagy
2024-09-11 21:33           ` Rich Felker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=TYSPR01MB62211EECB201FEFBB44EA565F0992@TYSPR01MB6221.apcprd01.prod.exchangelabs.com \
    --to=rwardd@outlook.com.au \
    --cc=dalias@libc.org \
    --cc=musl@lists.openwall.com \
    --cc=nsz@port70.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).