mirror of https://github.com/Chizi123/dnscomp.git

Joel Grunbaum
2022-05-23 b79b3a7406bc87fc57f4280449d809afad18ae04
main.c
@@ -4,46 +4,47 @@
 * Tried to only use POSIX functions to ensure cross platform compatibility
 **/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <time.h>
#include <pthread.h>
#include "dns.h"
#include "servers.h"
#include "slist.h"
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#define NUM_TESTS 10
int test_dns(void);
void *test_server(void *in);
void *print_progress(void *in);
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
// 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;
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) {
   while ((option = getopt(argc, argv, "s:a:t:n:h")) != -1) {
      switch (option) {
      case 's': //server to use
      case 's': // server to use
         add_dns_server(&servers, optarg);
         num_servers++;
         break;
      case 'a': //hostname to search
      case 'a': // hostname to search
         add_hosts_server(&hosts, optarg);
         added_hosts++;
         break;
      case 't': //set number of hosts to test
      case 't': // set number of hosts to test
         num_hosts = atoi(optarg);
         break;
      case 'n': //number of tests to perform
      case 'n': // number of tests to perform
         num_tests = atoi(optarg);
         break;
      case '?':
@@ -53,19 +54,25 @@
         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-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) {
   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, (char*)HOSTNAMES[i-added_hosts]);
      add_hosts_server(&hosts, (char*)HOSTNAMES[i - added_hosts]);
   }
   for (int i = 0; i < NUM_DNS; i++) {
      add_dns_server(&servers, (char*)DNS_SERVERS[i]);
@@ -79,12 +86,13 @@
}
// Test each dns server individually
// Each test runs in its own thread and results are written to the respective dns_list
// Each test runs in its own thread and results are written to the respective
// dns_list
int test_dns(void)
{
   struct dns_list *curr = servers;
   struct dns_list* curr = servers;
   int i = 0;
   pthread_t *threads = malloc(num_servers*sizeof(pthread_t));
   pthread_t* threads = malloc(num_servers * sizeof(pthread_t));
   pthread_t progress;
   pthread_create(&progress, NULL, print_progress, NULL);
   while (curr) {
@@ -102,25 +110,29 @@
}
// Tests an individual dns server with all the hostnames configured
void *test_server(void *in)
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;
   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;
      struct hosts_list* curr = hosts;
      while (curr) {
         struct timespec run;
         run.tv_sec = -1; run.tv_nsec = 0;
         run.tv_sec = -1;
         run.tv_nsec = 0;
         unsigned char buf[65536];
         for (int i = 0; i < 3 && run.tv_sec == -1; i++) {
         for (int j = 0; j < 3 && run.tv_sec == -1; j++) {
            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
         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
         if (dns->time.tv_nsec >=
             1000000000) { // nanoseconds have overflowed into seconds
            dns->time.tv_sec += 1;
            dns->time.tv_nsec -= 1000000000;
         }
@@ -128,20 +140,25 @@
         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);
   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)
// 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;
   s.tv_sec = 0;
   s.tv_nsec = 100000000;
   while (1) {
      printf("\r%.2f%% done", ((float)tests_done)/(num_servers*num_hosts*num_tests) * 100);
      printf("\r%.2f%% done", ((float)tests_done) /
                                  (num_servers * num_hosts * num_tests) *
                                  100);
      fflush(stdout);
      nanosleep(&s, NULL);
   }