aboutsummaryrefslogtreecommitdiff
path: root/Semestr 4/sieci/pracownia2/router/router.c
blob: 031ead82b03585402c176c1997ba11a81f1dc5cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <stdio.h>
#include <errno.h>
#include <strings.h>
#include <string.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
#include "network_addr.h"
#include "utils.h"

uint16_t read_configuration(struct network_addr** networks) {
  uint16_t n;
  scanf("%hd", &n);
  *networks = malloc(n * sizeof(struct network_addr));
  for (int i = 0; i < n; i++) {
    char addr[20];
    char _dist[10];
    uint16_t dist;
    scanf(" %s %s %hd", addr, _dist, &dist);
    (*networks)[i] = stora(addr);
    (*networks)[i].distance = dist;
  }
  return n;
}

void listen_for_routers(int sockfd, int timeout, int networks_number, struct network_addr *netowrks) {
  printf("Listening for %dms.\n", timeout);
  while (poll_socket_modify_timeout(sockfd, &timeout)) {
    printf("Poll returned, remaining timeout: %dms.\n", timeout);
    recv_and_print(sockfd, networks_number, netowrks);
  }
  printf("Finished listening\n\n");
}

int send_distance_vector(int sockfd, struct in_addr network) {
  char* message = "Hello server! My name is S1\n";
  ssize_t message_len = strlen(message);
  int result;

  char addr[20];
  inet_ntop(AF_INET, &network, addr, sizeof(addr));
  printf("Sending datagram to %s\n", addr);
  if ((result = send_message(sockfd, message, message_len, network)) != message_len) {
    fprintf(stderr, "sendto error: %s\n", strerror(errno));
  }
}

void propagate_distance_vector(int sockfd, int networks_number, struct network_addr *networks) {
  printf("Propagating distance vector\n");
  for (int i = 0; i < networks_number; i++) {
    struct in_addr broadcast_address = get_broadcast_address(networks[i]);
    send_distance_vector(sockfd, broadcast_address);
  }
  printf("Distance vector propagated.\n\n");
}

void router_loop(int sockfd, int networks_number, struct network_addr *networks) {
  printf("Starting the router loop...\n");
  for (;;) {
    listen_for_routers(sockfd, TURN_LEN_MS, networks_number, networks);
    propagate_distance_vector(sockfd, networks_number, networks);
  }
}

int main() {
  struct network_addr* networks;
  int n = read_configuration(&networks);
  for (int i = 0; i < n; i++) {
    pretty_print(networks[i]);
  }

  int sockfd = get_socket();
  bind_to_port(sockfd, SERVER_PORT);
  router_loop(sockfd, n, networks);

  close(sockfd);
  free(networks);
}