From dc4a93b34ab91ee67dde95fe8c251009db51c5c9 Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Wed, 21 Oct 2020 13:35:09 +0000 Subject: [PATCH] Added GPLv3 license --- main.c | 165 +++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 135 insertions(+), 30 deletions(-) diff --git a/main.c b/main.c index 15ea1d1..edcc99d 100644 --- a/main.c +++ b/main.c @@ -1,44 +1,149 @@ +/** + * A basic dns benchmark testing program + * Tests servers in parallel so reasonably fast + * Tried to only use POSIX functions to ensure cross platform compatibility + **/ + #include <stdio.h> #include <stdlib.h> +#include <unistd.h> #include <string.h> -#include <sys/socket.h> -#include <arpa/inet.h> -#include <netint/in.h> -//#include <netdb.h> -#include <sys/time.h> +#include <time.h> +#include <pthread.h> +#include "dns.h" +#include "servers.h" +#include "slist.h" -// DNS resource records -#define T_A 1 // IPv4 address -#define T_NS // Name Server -#define T_CNAME 5 // Cannonical name -#define T_SOA 6 // State of Authority -#define T_PTR 12 // Domain name pointer -#define T_MX 15 // Mail exchange +#define NUM_TESTS 10 -struct DNS_QUERY -{ - unsigned short id; //ID number - unsigned char rd :1; //recursion - unsigned char aa :1; //truncated message - unsigned char opcode :4; //message purpose - unsigned char qr :1; //query/response - unsigned char rcode :4; //response code - -} +int test_dns(void); +void *test_server(void *in); +void *print_progress(void *in); + +// All global variables as passing to threads in structs caused corruption +// Variables are only modified before threads are created and as such are thread-safe +// tests_done is modified to provide a rough count of number of tests being completed for progress measurement +int tests_done = 0, num_tests = NUM_TESTS, num_servers = NUM_DNS, num_hosts = 0; +struct hosts_list *hosts = NULL; +struct dns_list *servers = NULL; int main(int argc, char** argv) { - + int option, added_hosts = 0; + while((option = getopt(argc, argv, "s:a:t:n:h")) != -1) { + switch (option) { + case 's': //server to use + add_dns_server(&servers, optarg); + num_servers++; + break; + case 'a': //hostname to search + add_hosts_server(&hosts, optarg); + added_hosts++; + break; + case 't': //set number of hosts to test + num_hosts = atoi(optarg); + break; + case 'n': //number of tests to perform + num_tests = atoi(optarg); + break; + case '?': + case 'h': + default: + printf("Usage: %s [options]\n", argv[0]); + printf("Options:\n"); + printf("\t-s <server>\tadd a DNS server to be tested\n"); + printf("\t-a <hostname>\tadd a hostname to be tested\n"); + printf("\t-t <number>\tspecify the number of hostnames to be tested, capped at 50 + number manually added\n\t\t\tdefaults to test all available\n"); + printf("\t-n <number>\tspecify the number of tests to perform on each hostname\n\t\t\tdefaults to 10\n"); + printf("\t-h\t\tShow this help\n"); + free_dns_list(&servers); + free_hosts_list(&hosts); + exit(1); + } + } + if (num_hosts == 0 || num_hosts > NUM_HOSTNAMES+added_hosts) { + num_hosts = NUM_HOSTNAMES + added_hosts; + } + for (int i = added_hosts; i < num_hosts; i++) { + add_hosts_server(&hosts, HOSTNAMES[i-added_hosts]); + } + for (int i = 0; i < NUM_DNS; i++) { + add_dns_server(&servers, DNS_SERVERS[i]); + } + test_dns(); + sort_servers(&servers); + print_servers(servers); + free_dns_list(&servers); + free_hosts_list(&hosts); + return 0; } -void resolve(char* hostname, char* dns_ip) +// Test each dns server individually +// Each test runs in its own thread and results are written to the respective dns_list +int test_dns(void) { - int s; - struct sockaddr_in dest; + struct dns_list *curr = servers; + int i = 0; + pthread_t *threads = malloc(num_servers*sizeof(pthread_t)); + pthread_t progress; + pthread_create(&progress, NULL, print_progress, NULL); + while (curr) { + pthread_create(&threads[i], NULL, test_server, (void*)curr); + curr = curr->next; + i++; + } + for (int i = 0; i < num_servers; i++) { + pthread_join(threads[i], NULL); + } + pthread_cancel(progress); + printf("\r100.00%% done\n"); + free(threads); + return 0; +} - s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); - dest.sin_family = AF_INET; - dest.sin_port = htons(53); - dest.sin_addr.s_addr = inet_addr(dns_ip); +// Tests an individual dns server with all the hostnames configured +void *test_server(void *in) +{ + unsigned long long avg_nsec = 0; + struct dns_list *dns = (struct dns_list *)in; + dns->time.tv_sec = 0; dns->time.tv_nsec = 0; + for (int i = 0; i < num_tests; i++) { + struct hosts_list *curr = hosts; + while (curr) { + struct timespec run; + run.tv_sec = -1; run.tv_nsec = 0; + unsigned char buf[65536]; + for (int i = 0; i < 3 && run.tv_sec == -1; i++) { + run = resolve(buf, curr->server, dns->server, T_A); + } + if (run.tv_sec == -1) //if test has failed 3 times, set time taken to 3s as penalty + run.tv_sec = 3; + dns->time.tv_sec += run.tv_sec; + dns->time.tv_nsec += run.tv_nsec; + if (dns->time.tv_nsec >= 1000000000) { //nanoseconds have overflowed into seconds + dns->time.tv_sec += 1; + dns->time.tv_nsec -= 1000000000; + } + tests_done++; + curr = curr->next; + } + } + avg_nsec = 1000000000*(dns->time.tv_sec%(num_hosts*num_tests))+dns->time.tv_nsec; + dns->time.tv_sec = dns->time.tv_sec/(num_hosts*num_tests); + dns->time.tv_nsec = avg_nsec/(num_hosts*num_tests); + return NULL; +} +// Prints the progress every 0.1s for an indication of speed +// tests_done is being written to in parallel, so may be overwritten but serves as a decent estimate of the progress +void *print_progress(void *in) +{ + struct timespec s; + s.tv_sec = 0; s.tv_nsec = 100000000; + while (1) { + printf("\r%.2f%% done", ((float)tests_done)/(num_servers*num_hosts*num_tests) * 100); + fflush(stdout); + nanosleep(&s, NULL); + } + return NULL; } -- Gitblit v1.10.0