net_tap.c 3.79 KB
Newer Older
1
/*
Antoine Kaufmann's avatar
Antoine Kaufmann committed
2
3
 * Copyright 2021 Max Planck Institute for Software Systems, and
 * National University of Singapore
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 *
 * 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.
 */

#include <fcntl.h>
26
27
#include <linux/if.h>
#include <linux/if_tun.h>
28
#include <pthread.h>
29
#include <stdio.h>
30
#include <stdlib.h>
31
32
33
34
35
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <unistd.h>

36
#include <simbricks/netif/netif.h>
37

Antoine Kaufmann's avatar
Antoine Kaufmann committed
38
// #define DEBUG_PKTMETA
39

40
static struct SimbricksNetIf nsif;
41
42
static int tap_fd;

43
44
45
static int tap_open(const char *name) {
  struct ifreq ifr;
  int fd;
46

47
48
49
50
  if ((fd = open("/dev/net/tun", O_RDWR)) < 0) {
    perror("tap_open: open failed");
    return -1;
  }
51

52
53
54
  memset(&ifr, 0, sizeof(ifr));
  ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
  strncpy(ifr.ifr_name, name, IFNAMSIZ);
55

56
57
58
59
60
  if (ioctl(fd, TUNSETIFF, &ifr) != 0) {
    perror("tap_open: ioctl failed");
    close(fd);
    return -1;
  }
61

62
  return fd;
63
64
}

65
static void d2n_send(volatile struct SimbricksProtoNetD2NSend *s) {
66
#ifdef DEBUG_PKTMETA
67
  printf("sent packet: len=%u\n", s->len);
68
#endif
69

70
71
72
  if (write(tap_fd, (void *)s->data, s->len) != (ssize_t)s->len) {
    perror("d2n_send: send failed");
  }
73
74
}

75
static void poll_d2n(void) {
76
  volatile union SimbricksProtoNetD2N *msg = SimbricksNetIfD2NPoll(&nsif, 0);
77
  uint8_t type;
78

79
80
81
  /* message not ready */
  if (msg == NULL)
    return;
82

83
  type = msg->dummy.own_type & SIMBRICKS_PROTO_NET_D2N_MSG_MASK;
84
  switch (type) {
85
    case SIMBRICKS_PROTO_NET_D2N_MSG_SEND:
86
87
      d2n_send(&msg->send);
      break;
88

89
90
91
    default:
      fprintf(stderr, "poll_d2n: unsupported type=%u\n", type);
  }
92

93
  SimbricksNetIfD2NDone(&nsif, msg);
94
95
}

96
static void *rx_handler(void *arg) {
97
98
  volatile union SimbricksProtoNetN2D *msg;
  volatile struct SimbricksProtoNetN2DRecv *rx;
99
  ssize_t len;
100

101
  while (1) {
102
    msg = SimbricksNetIfN2DAlloc(&nsif, 0, 0);
103
104
105
    if (msg == NULL) {
      fprintf(stderr, "coudl not allocate message for rx\n");
      abort();
106
    }
107
    rx = &msg->recv;
108

109
110
111
    len = read(tap_fd, (void *)rx->data, nsif.n2d_elen - sizeof(*msg));
    if (len <= 0) {
      perror("rx handler: read failed");
112
    }
113
114
115
116
117
    rx->len = len;
    rx->port = 0;
#ifdef DEBUG_PKTMETA
    printf("received packet: len=%u\n", rx->len);
#endif
118

119
    // WMB();
120
121
    rx->own_type = SIMBRICKS_PROTO_NET_N2D_MSG_RECV |
        SIMBRICKS_PROTO_NET_N2D_OWN_DEV;
122
123
  }
}
124

125
126
127
128
129
130
131
132
133
134
135
136
137
int main(int argc, char *argv[]) {
  int sync;

  if (argc != 3) {
    fprintf(stderr, "Usage: net_tap TAP_DEVICE_NAME SOCKET\n");
    return EXIT_FAILURE;
  }

  if ((tap_fd = tap_open(argv[1])) < 0) {
    return -1;
  }

  sync = 0;
138
  if (SimbricksNetIfInit(&nsif, argv[2], &sync) != 0) {
139
140
141
142
143
144
145
146
147
148
149
150
151
152
    close(tap_fd);
    return -1;
  }

  pthread_t worker;
  if (pthread_create(&worker, NULL, rx_handler, NULL) != 0) {
    return EXIT_FAILURE;
  }

  printf("start polling\n");
  while (1) {
    poll_d2n();
  }
  return 0;
153
}