net_wire.c 5.05 KB
Newer Older
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1
/*
Antoine Kaufmann's avatar
Antoine Kaufmann committed
2
3
 * Copyright 2021 Max Planck Institute for Software Systems, and
 * National University of Singapore
Antoine Kaufmann's avatar
Antoine Kaufmann committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

25
#include <assert.h>
Antoine Kaufmann's avatar
Antoine Kaufmann committed
26
#include <fcntl.h>
27
28
29
#include <linux/if.h>
#include <linux/if_tun.h>
#include <pcap/pcap.h>
Antoine Kaufmann's avatar
Antoine Kaufmann committed
30
#include <pthread.h>
31
#include <signal.h>
Antoine Kaufmann's avatar
Antoine Kaufmann committed
32
#include <stdio.h>
33
#include <stdlib.h>
Antoine Kaufmann's avatar
Antoine Kaufmann committed
34
35
36
37
38
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <unistd.h>

39
#include <simbricks/network/if.h>
Antoine Kaufmann's avatar
Antoine Kaufmann committed
40

41
42
43
44
static uint64_t cur_ts;
static int exiting = 0;
static pcap_dumper_t *dumpfile = NULL;

45
46
static void sigint_handler(int dummy) {
  exiting = 1;
47
48
}

49
50
static void sigusr1_handler(int dummy) {
  fprintf(stderr, "main_time = %lu\n", cur_ts);
51
52
}

53
static void move_pkt(struct SimbricksNetIf *from, struct SimbricksNetIf *to) {
54
55
56
57
58
  volatile union SimbricksProtoNetMsg *msg_from =
      SimbricksNetIfInPoll(from, cur_ts);
  volatile union SimbricksProtoNetMsg *msg_to;
  volatile struct SimbricksProtoNetMsgPacket *tx;
  volatile struct SimbricksProtoNetMsgPacket *rx;
59
60
61
62
63
64
  struct pcap_pkthdr ph;
  uint8_t type;

  if (msg_from == NULL)
    return;

65
66
67
  type = SimbricksNetIfInType(from, msg_from);
  if (type == SIMBRICKS_PROTO_NET_MSG_PACKET) {
    tx = &msg_from->packet;
68
69
70
71
72
73
74
75
76

    // log to pcap file if initialized
    if (dumpfile) {
      memset(&ph, 0, sizeof(ph));
      ph.ts.tv_sec = cur_ts / 1000000000000ULL;
      ph.ts.tv_usec = (cur_ts % 1000000000000ULL) / 1000ULL;
      ph.caplen = tx->len;
      ph.len = tx->len;
      pcap_dump((unsigned char *)dumpfile, &ph, (unsigned char *)tx->data);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
77
78
    }

79
    msg_to = SimbricksNetIfOutAlloc(to, cur_ts);
80
    if (msg_to != NULL) {
81
      rx = &msg_to->packet;
82
83
84
      rx->len = tx->len;
      rx->port = 0;
      memcpy((void *)rx->data, (void *)tx->data, tx->len);
Antoine Kaufmann's avatar
Antoine Kaufmann committed
85

86
      SimbricksNetIfOutSend(to, msg_to, SIMBRICKS_PROTO_NET_MSG_PACKET);
87
88
    } else {
      fprintf(stderr, "move_pkt: dropping packet\n");
Antoine Kaufmann's avatar
Antoine Kaufmann committed
89
    }
90
  } else if (type == SIMBRICKS_PROTO_MSG_TYPE_SYNC) {
91
92
93
94
  } else {
    fprintf(stderr, "move_pkt: unsupported type=%u\n", type);
    abort();
  }
Antoine Kaufmann's avatar
Antoine Kaufmann committed
95

96
  SimbricksNetIfInDone(from, msg_from);
97
}
98

99
int main(int argc, char *argv[]) {
100
  struct SimbricksBaseIfParams params;
101
  struct SimbricksNetIf nsif_a, nsif_b;
102
103
104
  uint64_t ts_a, ts_b;
  int sync_a, sync_b;
  pcap_t *pc = NULL;
105
106

  SimbricksNetIfDefaultParams(&params);
107

108
  if (argc < 3 || argc > 7) {
109
    fprintf(stderr,
110
            "Usage: net_wire SOCKET-A SOCKET-B [SYNC-MODE (ignored)] "
111
112
113
114
115
116
117
118
119
            "[SYNC-PERIOD] [ETH-LATENCY] [PCAP-FILE]\n");
    return EXIT_FAILURE;
  }

  signal(SIGINT, sigint_handler);
  signal(SIGTERM, sigint_handler);
  signal(SIGUSR1, sigusr1_handler);

  if (argc >= 5)
120
    params.sync_interval = strtoull(argv[4], NULL, 0) * 1000ULL;
121
122

  if (argc >= 6)
123
    params.link_latency = strtoull(argv[5], NULL, 0) * 1000ULL;
124
125
126
127
128
129
130

  if (argc >= 7) {
    pc = pcap_open_dead_with_tstamp_precision(DLT_EN10MB, 65535,
                                              PCAP_TSTAMP_PRECISION_NANO);
    if (pc == NULL) {
      perror("pcap_open_dead failed");
      return EXIT_FAILURE;
131
132
    }

133
134
135
136
    dumpfile = pcap_dump_open(pc, argv[6]);
  }

  sync_a = sync_b = 1;
137
  if (SimbricksNetIfInit(&nsif_a, &params, argv[1], &sync_a) != 0) {
138
139
    return -1;
  }
140
  if (SimbricksNetIfInit(&nsif_b, &params, argv[2], &sync_b) != 0) {
141
142
143
144
145
    return -1;
  }

  printf("start polling\n");
  while (!exiting) {
146
147
    if (SimbricksNetIfOutSync(&nsif_a, cur_ts) != 0) {
      fprintf(stderr, "SimbricksNetIfOutSync(nsif_a) failed\n");
148
      abort();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
149
    }
150
151
    if (SimbricksNetIfOutSync(&nsif_b, cur_ts) != 0) {
      fprintf(stderr, "SimbricksNetIfN2DSync(nsif_b) failed\n");
152
      abort();
Antoine Kaufmann's avatar
Antoine Kaufmann committed
153
    }
154
155
156
157

    do {
      move_pkt(&nsif_a, &nsif_b);
      move_pkt(&nsif_b, &nsif_a);
158
159
      ts_a = SimbricksNetIfInTimestamp(&nsif_a);
      ts_b = SimbricksNetIfInTimestamp(&nsif_b);
160
161
162
163
    } while (!exiting &&
             ((sync_a && ts_a <= cur_ts) || (sync_b && ts_b <= cur_ts)));

    if (sync_a && sync_b)
164
      cur_ts = ts_a <= ts_b ? ts_a : ts_b;
165
    else if (sync_a)
166
      cur_ts = ts_a;
167
    else if (sync_b)
168
      cur_ts = ts_b;
169
170
171
172
173
  }

  if (dumpfile)
    pcap_dump_close(dumpfile);
  return 0;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
174
}