tofino.cc 11.1 KB
Newer Older
Jialin Li's avatar
Jialin Li committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright 2021 Max Planck Institute for Software Systems, and
 * National University of Singapore
 *
 * 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
26
27
28
29
30
31
32
33
34
35
36
#include <arpa/inet.h>
#include <fcntl.h>
#include <linux/if_packet.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <unistd.h>

#include <cassert>
#include <chrono>
#include <climits>
Jialin Li's avatar
Jialin Li committed
37
38
39
#include <csignal>
#include <cstdio>
#include <cstdlib>
40
41
42
#include <cstring>
#include <fstream>
#include <iostream>
43
#include <queue>
Antoine Kaufmann's avatar
Antoine Kaufmann committed
44
#include <set>
45
#include <string>
Jialin Li's avatar
Jialin Li committed
46
47
#include <vector>

48
#include <simbricks/base/cxxatomicfix.h>
Jialin Li's avatar
Jialin Li committed
49
extern "C" {
50
#include <simbricks/network/if.h>
Jialin Li's avatar
Jialin Li committed
51
};
52
53
54
#include <utils/json.hpp>

//#define DEBUG
Jialin Li's avatar
Jialin Li committed
55

56
57
58
59
60
61
using json = nlohmann::json;

typedef long long int ts_t;

static const int log_wait_limit_ms = 10;  // 10ms
static ts_t cur_ts = 0;
Jialin Li's avatar
Jialin Li committed
62
63
64
static int exiting = 0;
static std::vector<struct SimbricksNetIf> nsifs;
static std::vector<int> tofino_fds;
65
66
67
68
static std::ifstream log_ifs;
static std::string log_line;
static const int flush_msg_sz = 14;
static char flush_msg[flush_msg_sz] = {0x0};
Jialin Li's avatar
Jialin Li committed
69
70

static void sigint_handler(int dummy) {
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
  exiting = 1;
}

struct packet_info {
  unsigned int port;
  ts_t latency;
};

struct event {
  ts_t time;
  bool to_switch;
  unsigned int port;
  std::string msg;
};
struct classcomp {
  bool operator()(const struct event &lhs, const struct event &rhs) const {
87
    return lhs.time > rhs.time;
88
89
  }
};
Antoine Kaufmann's avatar
Antoine Kaufmann committed
90
91
std::priority_queue<struct event, std::vector<struct event>, classcomp>
    event_queue;
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156

static bool get_tofino_log_line(int limit_ms) {
  using std::chrono::system_clock;
  system_clock::time_point start, end;
  char buf[16384];
  start = system_clock::now();

  do {
    log_ifs.clear();
    log_ifs.getline(buf, 16384);
    log_line.append(buf);
    end = system_clock::now();
  } while (!log_ifs.good() &&
           (limit_ms < 0 ||
            std::chrono::duration_cast<std::chrono::milliseconds>(end - start)
                    .count() < limit_ms));
  return log_ifs.good();
}

static void get_egress_pkts(ts_t ingress_ts,
                            std::vector<struct packet_info> &pkts) {
  while (get_tofino_log_line(log_wait_limit_ms)) {
    json j = json::parse(log_line);
    log_line.clear();
    if (j.contains("context")) {
      auto context = j.at("context");
      if (context.at("gress").get<std::string>().compare("egress") == 0 &&
          context.at("component").get<std::string>().compare("port") == 0) {
        unsigned int port = j.at("packet").at("port").get<unsigned int>();
        ts_t latency = j.at("sim_time").get<ts_t>() / 100000000 - ingress_ts;
        struct packet_info info = {port, latency};
        pkts.push_back(info);
      }
    } else if (j.contains("message") &&
               j.at("message").get<std::string>().compare(0, 7, "Ingress") ==
                   0) {
      break;
    }
  }
}

static std::vector<struct packet_info> get_tofino_output() {
  std::vector<struct packet_info> pkts;
  // First, get packet ingress time
  ts_t ingress_ts = -1;
  while (ingress_ts < 0) {
    get_tofino_log_line(-1);
    json j = json::parse(log_line);
    log_line.clear();
    if (j.contains("message") &&
        j.at("message").get<std::string>().compare(0, 7, "Ingress") == 0) {
      ingress_ts = j.at("sim_time").get<ts_t>() / 100000000;
    }
  }
  // Next, get egress time for each port
  get_egress_pkts(ingress_ts, pkts);
  // Send a malformatted message to force log flushing
  send(tofino_fds.at(0), flush_msg, flush_msg_sz, 0);
  get_egress_pkts(ingress_ts, pkts);
  return pkts;
}

static ts_t get_min_peer_time() {
  std::set<uint64_t> peer_times;
  for (auto &nsif : nsifs) {
157
    peer_times.insert(SimbricksNetIfInTimestamp(&nsif));
158
159
160
161
162
163
164
  }
  return *peer_times.begin();
}

static void switch_to_dev(int port) {
  static const int BUFFER_SIZE = 2048;
  char buf[BUFFER_SIZE];
165
  volatile union SimbricksProtoNetMsg *msg_to;
166
167
168
169
170
171
172
173
174
175
176
177
178
179
  struct sockaddr_ll addr;
  socklen_t addr_len;
  ssize_t n;

#ifdef DEBUG
  printf("forward packet to peer %u at time %llu\n", port, cur_ts);
#endif

  while ((n = recvfrom(tofino_fds.at(port), buf, BUFFER_SIZE, 0,
                       (struct sockaddr *)&addr, &addr_len)) <= 0 ||
         addr.sll_pkttype == PACKET_OUTGOING) {
    ;
  }

180
  msg_to = SimbricksNetIfOutAlloc(&nsifs[port], cur_ts);
181
  if (msg_to != nullptr) {
182
183
    volatile struct SimbricksProtoNetMsgPacket *rx;
    rx = &msg_to->packet;
184
185
186
187
    rx->len = n;
    rx->port = 0;
    memcpy((void *)rx->data, (void *)buf, n);

188
    SimbricksNetIfOutSend(&nsifs[port], msg_to, SIMBRICKS_PROTO_NET_MSG_PACKET);
189
190
191
  } else {
    fprintf(stderr, "switch_to_dev: dropping packet\n");
  }
Jialin Li's avatar
Jialin Li committed
192
193
}

194
195
196
197
198
199
200
201
202
203
204
205
206
207
static void process_event(const struct event &e) {
  if (e.to_switch) {
#ifdef DEBUG
    printf("process to_switch event from peer %u at time %llu\n", e.port,
           e.time);
#endif
    if (send(tofino_fds.at(e.port), e.msg.data(), e.msg.length(), 0) <
        (long int)e.msg.length()) {
      fprintf(stderr, "tofino: failed to forward packet to switch\n");
      abort();
    }
    for (const auto &pkt : get_tofino_output()) {
      if (pkt.port < nsifs.size()) {
        auto &nsif = nsifs.at(pkt.port);
208
        if (SimbricksBaseIfSyncEnabled(&nsif.base)) {
209
210
211
212
          struct event de;
          de.time = cur_ts + pkt.latency;
          de.to_switch = false;
          de.port = pkt.port;
213
          event_queue.push(de);
214
215
216
217
218
219
#ifdef DEBUG
          printf("add to_dev event to peer %u at time %llu to queue\n", de.port,
                 de.time);
#endif
        } else {
          switch_to_dev(pkt.port);
Jialin Li's avatar
Jialin Li committed
220
        }
221
222
223
224
225
226
227
228
229
      }
    }
  } else {
    switch_to_dev(e.port);
  }
}

static void recv_from_peer(int port) {
  struct SimbricksNetIf *nsif = &nsifs.at(port);
230
231
  volatile union SimbricksProtoNetMsg *msg_from =
      SimbricksNetIfInPoll(nsif, cur_ts);
232
233
234
  if (msg_from == nullptr) {
    return;
  }
235
236
  uint8_t type = SimbricksNetIfInType(nsif, msg_from);
  if (type == SIMBRICKS_PROTO_NET_MSG_PACKET) {
237
    struct event e;
238
    e.time = msg_from->packet.timestamp;
239
240
    e.to_switch = true;
    e.port = port;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
241
242
    e.msg =
        std::string((const char *)msg_from->packet.data, msg_from->packet.len);
243
244
245
#ifdef DEBUG
    printf("received packet from peer %u at time %llu\n", port, e.time);
#endif
246
    if (SimbricksBaseIfSyncEnabled(&nsif->base)) {
247
      event_queue.push(e);
248
249
250
251
#ifdef DEBUG
      printf("add to_switch event from peer %u at time %llu to queue\n", port,
             e.time);
#endif
Jialin Li's avatar
Jialin Li committed
252
    } else {
253
      process_event(e);
Jialin Li's avatar
Jialin Li committed
254
    }
255
  } else if (type == SIMBRICKS_PROTO_MSG_TYPE_SYNC) {
256
257
258
259
  } else {
    fprintf(stderr, "tofino: unsupported type=%u\n", type);
    abort();
  }
260
  SimbricksNetIfInDone(nsif, msg_from);
Jialin Li's avatar
Jialin Li committed
261
262
}

263
264
static void process_event_queue() {
  while (!event_queue.empty()) {
265
    const struct event &e = event_queue.top();
266
267
    if (e.time <= cur_ts) {
      process_event(e);
268
      event_queue.pop();
Jialin Li's avatar
Jialin Li committed
269
    } else {
270
      break;
Jialin Li's avatar
Jialin Li committed
271
    }
272
  }
Jialin Li's avatar
Jialin Li committed
273
274
275
}

int main(int argc, char *argv[]) {
276
277
278
279
  int c;
  int bad_option = 0;
  int sync = 1;
  std::string tofino_log;
280
281
282
  struct SimbricksBaseIfParams params;

  SimbricksNetIfDefaultParams(&params);
283
284

  // Parse command line argument
285
  while ((c = getopt(argc, argv, "s:S:E:t:u")) != -1 && !bad_option) {
286
287
288
    switch (c) {
      case 's':
        struct SimbricksNetIf nsif;
289
        if (SimbricksNetIfInit(&nsif, &params, optarg, &sync) != 0) {
290
291
          fprintf(stderr, "connecting to %s failed\n", optarg);
          return EXIT_FAILURE;
Jialin Li's avatar
Jialin Li committed
292
        }
293
294
295
296
        nsifs.push_back(nsif);
        break;

      case 'S':
297
        params.sync_interval = strtoull(optarg, NULL, 0) * 1000ULL;
298
299
300
        break;

      case 'E':
301
        params.link_latency = strtoull(optarg, NULL, 0) * 1000ULL;
302
303
304
305
306
307
308
309
310
311
312
313
314
315
        break;

      case 't':
        tofino_log = std::string(optarg);
        break;

      case 'u':
        sync = 0;
        break;

      default:
        fprintf(stderr, "unknown option %c\n", c);
        bad_option = 1;
        break;
Jialin Li's avatar
Jialin Li committed
316
    }
317
  }
Jialin Li's avatar
Jialin Li committed
318

319
320
321
322
323
324
  if (nsifs.empty() || tofino_log.empty() || bad_option) {
    fprintf(stderr,
            "Usage: tofino [-S SYNC-PERIOD] [-E ETH-LATENCY] "
            "-t TOFINO-LOG-PATH -s SOCKET-A [-s SOCKET-B ...]\n");
    return EXIT_FAILURE;
  }
Jialin Li's avatar
Jialin Li committed
325

326
327
  signal(SIGINT, sigint_handler);
  signal(SIGTERM, sigint_handler);
Jialin Li's avatar
Jialin Li committed
328

329
330
331
332
333
334
  // Open Tofino log file
  log_ifs.open(tofino_log.c_str(), std::ifstream::in);
  if (!log_ifs.good()) {
    fprintf(stderr, "Failed to open tofino log file %s\n", tofino_log.c_str());
    abort();
  }
Jialin Li's avatar
Jialin Li committed
335

336
337
338
339
340
341
342
  // Create sockets for Tofino model interfaces
  for (size_t port = 0; port < nsifs.size(); port++) {
    int fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
    if (fd == -1) {
      fprintf(stderr, "Failed to create raw socket\n");
      abort();
    }
Jialin Li's avatar
Jialin Li committed
343

344
345
346
347
348
349
350
351
352
    char ifname[16];
    sprintf(ifname, "veth%ld", port * 2 + 1);
    struct ifreq ifopts;
    memset(&ifopts, 0, sizeof(ifopts));
    strcpy(ifopts.ifr_name, ifname);
    if (ioctl(fd, SIOCGIFINDEX, &ifopts) < 0) {
      fprintf(stderr, "Failed to set ioctl option SIOCGIFINDEX\n");
      abort();
    }
Jialin Li's avatar
Jialin Li committed
353

354
355
356
357
358
359
    int sockopt = 1;
    if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &sockopt, sizeof(sockopt)) ==
        -1) {
      fprintf(stderr, "Failed to set socket option SO_REUSEADDR");
      abort();
    }
Jialin Li's avatar
Jialin Li committed
360

361
362
363
364
365
366
367
368
369
    if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
      fprintf(stderr, "Failed to set socket to non-blocking\n");
      abort();
    }

    struct sockaddr_ll sll;
    bzero(&sll, sizeof(sll));
    sll.sll_family = AF_PACKET;
    sll.sll_ifindex = ifopts.ifr_ifindex;
Jialin Li's avatar
Jialin Li committed
370

371
372
373
    if (bind(fd, (struct sockaddr *)&sll, sizeof(sll)) == -1) {
      fprintf(stderr, "Failed to bind socket\n");
      abort();
Jialin Li's avatar
Jialin Li committed
374
375
    }

376
377
378
379
380
381
382
    tofino_fds.push_back(fd);
  }

  fprintf(stderr, "start polling\n");
  while (!exiting) {
    // Sync all interfaces
    for (auto &nsif : nsifs) {
383
      if (SimbricksNetIfOutSync(&nsif, cur_ts) != 0) {
384
385
386
        fprintf(stderr, "SimbricksNetIfN2DSync failed\n");
        abort();
      }
Jialin Li's avatar
Jialin Li committed
387
388
    }

389
390
391
392
393
394
395
396
    // Switch packets
    ts_t min_ts = 0;
    while (!exiting && min_ts <= cur_ts) {
      for (int port = 0; port < (int)nsifs.size(); port++) {
        recv_from_peer(port);
      }
      min_ts = get_min_peer_time();
      process_event_queue();
Jialin Li's avatar
Jialin Li committed
397
    }
398
    if (min_ts > cur_ts) {
399
      cur_ts = min_ts;
400
401
402
403
404
405
    }
  }

  for (int fd : tofino_fds) {
    close(fd);
  }
Jialin Li's avatar
Jialin Li committed
406

407
  return 0;
Jialin Li's avatar
Jialin Li committed
408
}