blob: 0fc62f6c061ab89302966c226df9718ba2d2954f [file] [log] [blame]
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002 *------------------------------------------------------------------
3 * tapcli.c - dynamic tap interface hookup
4 *
5 * Copyright (c) 2009 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070019/**
20 * @file
21 * @brief dynamic tap interface hookup
22 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24#include <fcntl.h> /* for open */
25#include <sys/ioctl.h>
26#include <sys/socket.h>
27#include <sys/stat.h>
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070028#include <sys/types.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070029#include <sys/uio.h> /* for iovec */
30#include <netinet/in.h>
31
32#include <linux/if_arp.h>
33#include <linux/if_tun.h>
34
35#include <vlib/vlib.h>
36#include <vlib/unix/unix.h>
37
38#include <vnet/ip/ip.h>
39
40#include <vnet/ethernet/ethernet.h>
41
Dave Barach9f6186e2016-11-08 12:12:12 -050042#include <vnet/feature/feature.h>
43#include <vnet/devices/devices.h>
Dave Barach2feaffc2017-01-14 10:30:50 -050044#include <vnet/unix/tuntap.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#include <vnet/unix/tapcli.h>
46
47static vnet_device_class_t tapcli_dev_class;
48static vnet_hw_interface_class_t tapcli_interface_class;
Pierre Pfister3a8f32b2016-03-21 12:21:30 +000049static vlib_node_registration_t tapcli_rx_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
51static void tapcli_nopunt_frame (vlib_main_t * vm,
52 vlib_node_runtime_t * node,
53 vlib_frame_t * frame);
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070054/**
55 * @brief Struct for the tapcli interface
56 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070057typedef struct {
58 u32 unix_fd;
59 u32 unix_file_index;
60 u32 provision_fd;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070061 /** For counters */
62 u32 sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070063 u32 hw_if_index;
64 u32 is_promisc;
65 struct ifreq ifr;
66 u32 per_interface_next_index;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070067 /** for delete */
68 u8 active;
Ed Warnickecb9cada2015-12-08 15:45:58 -070069} tapcli_interface_t;
70
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070071/**
72 * @brief Struct for RX trace
73 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070074typedef struct {
Pierre Pfister3a8f32b2016-03-21 12:21:30 +000075 u16 sw_if_index;
76} tapcli_rx_trace_t;
77
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070078/**
79 * @brief Function to format TAP CLI trace
80 *
81 * @param *s - u8 - formatting string
82 * @param *va - va_list
83 *
84 * @return *s - u8 - formatted string
85 *
86 */
Pierre Pfister3a8f32b2016-03-21 12:21:30 +000087u8 * format_tapcli_rx_trace (u8 * s, va_list * va)
88{
89 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
90 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
91 vnet_main_t * vnm = vnet_get_main();
92 tapcli_rx_trace_t * t = va_arg (*va, tapcli_rx_trace_t *);
93 s = format (s, "%U", format_vnet_sw_if_index_name,
94 vnm, t->sw_if_index);
95 return s;
96}
97
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070098/**
99 * @brief TAPCLI main state struct
100 */
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000101typedef struct {
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700102 /** Vector of iovecs for readv/writev calls. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 struct iovec * iovecs;
104
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700105 /** Vector of VLIB rx buffers to use. We allocate them in blocks
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 of VLIB_FRAME_SIZE (256). */
107 u32 * rx_buffers;
108
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700109 /** tap device destination MAC address. Required, or Linux drops pkts */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110 u8 ether_dst_mac[6];
111
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700112 /** Interface MTU in bytes and # of default sized buffers. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 u32 mtu_bytes, mtu_buffers;
114
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700115 /** Vector of tap interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 tapcli_interface_t * tapcli_interfaces;
117
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700118 /** Vector of deleted tap interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 u32 * tapcli_inactive_interfaces;
120
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700121 /** Bitmap of tap interfaces with pending reads */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 uword * pending_read_bitmap;
123
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700124 /** Hash table to find tapcli interface given hw_if_index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 uword * tapcli_interface_index_by_sw_if_index;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700126
127 /** Hash table to find tapcli interface given unix fd */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 uword * tapcli_interface_index_by_unix_fd;
129
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700130 /** renumbering table */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 u32 * show_dev_instance_by_real_dev_instance;
132
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700133 /** 1 => disable CLI */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 int is_disabled;
135
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700136 /** convenience - vlib_main_t */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 vlib_main_t * vlib_main;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700138 /** convenience - vnet_main_t */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139 vnet_main_t * vnet_main;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700140 /** convenience - unix_main_t */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 unix_main_t * unix_main;
142} tapcli_main_t;
143
144static tapcli_main_t tapcli_main;
145
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700146/**
147 * @brief tapcli TX node function
148 * @node tap-cli-tx
149 *
150 * Output node, writes the buffers comprising the incoming frame
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 * to the tun/tap device, aka hands them to the Linux kernel stack.
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700152 *
153 * @param *vm - vlib_main_t
154 * @param *node - vlib_node_runtime_t
155 * @param *frame - vlib_frame_t
156 *
157 * @return n_packets - uword
158 *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 */
160static uword
161tapcli_tx (vlib_main_t * vm,
162 vlib_node_runtime_t * node,
163 vlib_frame_t * frame)
164{
165 u32 * buffers = vlib_frame_args (frame);
166 uword n_packets = frame->n_vectors;
167 tapcli_main_t * tm = &tapcli_main;
168 tapcli_interface_t * ti;
169 int i;
170
171 for (i = 0; i < n_packets; i++)
172 {
173 struct iovec * iov;
174 vlib_buffer_t * b;
175 uword l;
176 vnet_hw_interface_t * hw;
177 uword * p;
178 u32 tx_sw_if_index;
179
180 b = vlib_get_buffer (vm, buffers[i]);
181
182 tx_sw_if_index = vnet_buffer(b)->sw_if_index[VLIB_TX];
183 if (tx_sw_if_index == (u32)~0)
184 tx_sw_if_index = vnet_buffer(b)->sw_if_index[VLIB_RX];
185
186 ASSERT(tx_sw_if_index != (u32)~0);
187
188 /* Use the sup intfc to finesse vlan subifs */
189 hw = vnet_get_sup_hw_interface (tm->vnet_main, tx_sw_if_index);
190 tx_sw_if_index = hw->sw_if_index;
Ole Troan2df2e3d2016-03-02 10:01:43 +0100191
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 p = hash_get (tm->tapcli_interface_index_by_sw_if_index,
193 tx_sw_if_index);
194 if (p == 0)
195 {
196 clib_warning ("sw_if_index %d unknown", tx_sw_if_index);
197 /* $$$ leak, but this should never happen... */
198 continue;
199 }
200 else
201 ti = vec_elt_at_index (tm->tapcli_interfaces, p[0]);
202
203 /* Re-set iovecs if present. */
204 if (tm->iovecs)
205 _vec_len (tm->iovecs) = 0;
206
207 /* VLIB buffer chain -> Unix iovec(s). */
208 vec_add2 (tm->iovecs, iov, 1);
209 iov->iov_base = b->data + b->current_data;
210 iov->iov_len = l = b->current_length;
211
212 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
213 {
214 do {
215 b = vlib_get_buffer (vm, b->next_buffer);
216
217 vec_add2 (tm->iovecs, iov, 1);
218
219 iov->iov_base = b->data + b->current_data;
220 iov->iov_len = b->current_length;
221 l += b->current_length;
222 } while (b->flags & VLIB_BUFFER_NEXT_PRESENT);
223 }
224
225 if (writev (ti->unix_fd, tm->iovecs, vec_len (tm->iovecs)) < l)
226 clib_unix_warning ("writev");
227 }
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700228
Ole Troan2df2e3d2016-03-02 10:01:43 +0100229 vlib_buffer_free(vm, vlib_frame_vector_args(frame), frame->n_vectors);
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700230
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 return n_packets;
232}
233
234VLIB_REGISTER_NODE (tapcli_tx_node,static) = {
235 .function = tapcli_tx,
236 .name = "tapcli-tx",
237 .type = VLIB_NODE_TYPE_INTERNAL,
238 .vector_size = 4,
239};
240
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700241/**
242 * @brief Dispatch tapcli RX node function for node tap_cli_rx
243 *
244 *
245 * @param *vm - vlib_main_t
246 * @param *node - vlib_node_runtime_t
247 * @param *ti - tapcli_interface_t
248 *
249 * @return n_packets - uword
250 *
251 */
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000252static uword tapcli_rx_iface(vlib_main_t * vm,
253 vlib_node_runtime_t * node,
254 tapcli_interface_t * ti)
255{
256 tapcli_main_t * tm = &tapcli_main;
Damjan Marion19010202016-03-24 17:17:47 +0100257 const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000258 u32 n_trace = vlib_get_trace_count (vm, node);
259 u8 set_trace = 0;
260
261 vnet_main_t *vnm;
262 vnet_sw_interface_t * si;
263 u8 admin_down;
264 u32 next = node->cached_next_index;
265 u32 n_left_to_next, next_index;
266 u32 *to_next;
267
268 vnm = vnet_get_main();
269 si = vnet_get_sw_interface (vnm, ti->sw_if_index);
270 admin_down = !(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP);
271
272 vlib_get_next_frame(vm, node, next, to_next, n_left_to_next);
273
274 while (n_left_to_next) { // Fill at most one vector
275 vlib_buffer_t *b_first, *b, *prev;
276 u32 bi_first, bi;
277 word n_bytes_in_packet;
278 int j, n_bytes_left;
279
280 if (PREDICT_FALSE(vec_len(tm->rx_buffers) < tm->mtu_buffers)) {
281 uword len = vec_len(tm->rx_buffers);
282 _vec_len(tm->rx_buffers) +=
283 vlib_buffer_alloc_from_free_list(vm, &tm->rx_buffers[len],
284 VLIB_FRAME_SIZE - len, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
285 if (PREDICT_FALSE(vec_len(tm->rx_buffers) < tm->mtu_buffers)) {
Pierre Pfisterae6725b2016-07-15 08:44:10 +0100286 vlib_node_increment_counter(vm, tapcli_rx_node.index,
287 TAPCLI_ERROR_BUFFER_ALLOC,
288 tm->mtu_buffers - vec_len(tm->rx_buffers));
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000289 break;
290 }
291 }
292
293 uword i_rx = vec_len (tm->rx_buffers) - 1;
294
295 /* Allocate RX buffers from end of rx_buffers.
296 Turn them into iovecs to pass to readv. */
297 vec_validate (tm->iovecs, tm->mtu_buffers - 1);
298 for (j = 0; j < tm->mtu_buffers; j++) {
299 b = vlib_get_buffer (vm, tm->rx_buffers[i_rx - j]);
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000300 tm->iovecs[j].iov_base = b->data;
301 tm->iovecs[j].iov_len = buffer_size;
302 }
303
304 n_bytes_left = readv (ti->unix_fd, tm->iovecs, tm->mtu_buffers);
305 n_bytes_in_packet = n_bytes_left;
306 if (n_bytes_left <= 0) {
307 if (errno != EAGAIN) {
308 vlib_node_increment_counter(vm, tapcli_rx_node.index,
309 TAPCLI_ERROR_READ, 1);
310 }
311 break;
312 }
313
314 bi_first = tm->rx_buffers[i_rx];
315 b = b_first = vlib_get_buffer (vm, tm->rx_buffers[i_rx]);
316 prev = NULL;
317
318 while (1) {
319 b->current_length = n_bytes_left < buffer_size ? n_bytes_left : buffer_size;
320 n_bytes_left -= buffer_size;
321
322 if (prev) {
323 prev->next_buffer = bi;
324 prev->flags |= VLIB_BUFFER_NEXT_PRESENT;
325 }
326 prev = b;
327
328 /* last segment */
329 if (n_bytes_left <= 0)
330 break;
331
332 i_rx--;
333 bi = tm->rx_buffers[i_rx];
334 b = vlib_get_buffer (vm, bi);
335 }
336
337 _vec_len (tm->rx_buffers) = i_rx;
338
339 b_first->total_length_not_including_first_buffer =
340 (n_bytes_in_packet > buffer_size) ? n_bytes_in_packet - buffer_size : 0;
341 b_first->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
342
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000343 VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b_first);
344
345 vnet_buffer (b_first)->sw_if_index[VLIB_RX] = ti->sw_if_index;
346 vnet_buffer (b_first)->sw_if_index[VLIB_TX] = (u32)~0;
347
348 b_first->error = node->errors[TAPCLI_ERROR_NONE];
Dave Barach9f6186e2016-11-08 12:12:12 -0500349 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000350 next_index = (ti->per_interface_next_index != ~0) ?
351 ti->per_interface_next_index : next_index;
Dave Barach9f6186e2016-11-08 12:12:12 -0500352 next_index = admin_down ? VNET_DEVICE_INPUT_NEXT_DROP : next_index;
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000353
354 to_next[0] = bi_first;
355 to_next++;
356 n_left_to_next--;
357
Damjan Marion35af9e52017-03-06 12:02:50 +0100358 vnet_feature_start_device_input_x1 (ti->sw_if_index, &next_index, b_first);
Dave Barach9f6186e2016-11-08 12:12:12 -0500359
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000360 vlib_validate_buffer_enqueue_x1 (vm, node, next,
361 to_next, n_left_to_next,
362 bi_first, next_index);
363
364 /* Interface counters for tapcli interface. */
365 if (PREDICT_TRUE(!admin_down)) {
366 vlib_increment_combined_counter (
367 vnet_main.interface_main.combined_sw_if_counters
368 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200369 vlib_get_thread_index(), ti->sw_if_index,
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000370 1, n_bytes_in_packet);
371
372 if (PREDICT_FALSE(n_trace > 0)) {
373 vlib_trace_buffer (vm, node, next_index,
374 b_first, /* follow_chain */ 1);
375 n_trace--;
376 set_trace = 1;
377 tapcli_rx_trace_t *t0 = vlib_add_trace (vm, node, b_first, sizeof (*t0));
378 t0->sw_if_index = si->sw_if_index;
379 }
380 }
381 }
382 vlib_put_next_frame (vm, node, next, n_left_to_next);
383 if (set_trace)
384 vlib_set_trace_count (vm, node, n_trace);
385 return VLIB_FRAME_SIZE - n_left_to_next;
386}
387
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700388/**
389 * @brief tapcli RX node function
390 * @node tap-cli-rx
391 *
392 * Input node from the Kernel tun/tap device
393 *
394 * @param *vm - vlib_main_t
395 * @param *node - vlib_node_runtime_t
396 * @param *frame - vlib_frame_t
397 *
398 * @return n_packets - uword
399 *
400 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401static uword
402tapcli_rx (vlib_main_t * vm,
403 vlib_node_runtime_t * node,
404 vlib_frame_t * frame)
405{
406 tapcli_main_t * tm = &tapcli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407 static u32 * ready_interface_indices;
408 tapcli_interface_t * ti;
409 int i;
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000410 u32 total_count = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
412 vec_reset_length (ready_interface_indices);
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000413 clib_bitmap_foreach (i, tm->pending_read_bitmap,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414 ({
415 vec_add1 (ready_interface_indices, i);
416 }));
417
418 if (vec_len (ready_interface_indices) == 0)
Dave Barachb3ca6582016-06-10 18:31:55 -0400419 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420
421 for (i = 0; i < vec_len(ready_interface_indices); i++)
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000422 {
423 tm->pending_read_bitmap =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 clib_bitmap_set (tm->pending_read_bitmap,
425 ready_interface_indices[i], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000427 ti = vec_elt_at_index (tm->tapcli_interfaces, ready_interface_indices[i]);
428 total_count += tapcli_rx_iface(vm, node, ti);
429 }
430 return total_count; //This might return more than 256.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431}
432
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700433/** TAPCLI error strings */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434static char * tapcli_rx_error_strings[] = {
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000435#define _(sym,string) string,
436 foreach_tapcli_error
437#undef _
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438};
439
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000440VLIB_REGISTER_NODE (tapcli_rx_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441 .function = tapcli_rx,
442 .name = "tapcli-rx",
Damjan Marion51327ac2016-11-09 11:59:42 +0100443 .sibling_of = "device-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444 .type = VLIB_NODE_TYPE_INPUT,
445 .state = VLIB_NODE_STATE_INTERRUPT,
446 .vector_size = 4,
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000447 .n_errors = TAPCLI_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 .error_strings = tapcli_rx_error_strings,
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000449 .format_trace = format_tapcli_rx_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450};
451
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700452
453/**
454 * @brief Gets called when file descriptor is ready from epoll.
455 *
456 * @param *uf - unix_file_t
457 *
458 * @return error - clib_error_t
459 *
460 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461static clib_error_t * tapcli_read_ready (unix_file_t * uf)
462{
463 vlib_main_t * vm = vlib_get_main();
464 tapcli_main_t * tm = &tapcli_main;
465 uword * p;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700466
467 /** Schedule the rx node */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468 vlib_node_set_interrupt_pending (vm, tapcli_rx_node.index);
469
470 p = hash_get (tm->tapcli_interface_index_by_unix_fd, uf->file_descriptor);
471
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700472 /** Mark the specific tap interface ready-to-read */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 if (p)
474 tm->pending_read_bitmap = clib_bitmap_set (tm->pending_read_bitmap,
475 p[0], 1);
476 else
477 clib_warning ("fd %d not in hash table", uf->file_descriptor);
478
479 return 0;
480}
481
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700482/**
483 * @brief CLI function for TAPCLI configuration
484 *
485 * @param *vm - vlib_main_t
486 * @param *input - unformat_input_t
487 *
488 * @return error - clib_error_t
489 *
490 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491static clib_error_t *
492tapcli_config (vlib_main_t * vm, unformat_input_t * input)
493{
494 tapcli_main_t *tm = &tapcli_main;
Damjan Marion19010202016-03-24 17:17:47 +0100495 const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
497 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
498 {
499 if (unformat (input, "mtu %d", &tm->mtu_bytes))
500 ;
501 else if (unformat (input, "disable"))
502 tm->is_disabled = 1;
503 else
504 return clib_error_return (0, "unknown input `%U'",
505 format_unformat_error, input);
506 }
507
508 if (tm->is_disabled)
509 return 0;
510
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700511 if (geteuid())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 {
513 clib_warning ("tapcli disabled: must be superuser");
514 tm->is_disabled = 1;
515 return 0;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700516 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
518 tm->mtu_buffers = (tm->mtu_bytes + (buffer_size - 1)) / buffer_size;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700519
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520 return 0;
521}
522
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700523/**
524 * @brief Renumber TAPCLI interface
525 *
526 * @param *hi - vnet_hw_interface_t
527 * @param new_dev_instance - u32
528 *
529 * @return rc - int
530 *
531 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532static int tap_name_renumber (vnet_hw_interface_t * hi,
533 u32 new_dev_instance)
534{
535 tapcli_main_t *tm = &tapcli_main;
536
537 vec_validate_init_empty (tm->show_dev_instance_by_real_dev_instance,
538 hi->dev_instance, ~0);
539
540 tm->show_dev_instance_by_real_dev_instance [hi->dev_instance] =
541 new_dev_instance;
542
543 return 0;
544}
545
546VLIB_CONFIG_FUNCTION (tapcli_config, "tapcli");
547
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700548/**
549 * @brief Free "no punt" frame
550 *
551 * @param *vm - vlib_main_t
552 * @param *node - vlib_node_runtime_t
553 * @param *frame - vlib_frame_t
554 *
555 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556static void
557tapcli_nopunt_frame (vlib_main_t * vm,
558 vlib_node_runtime_t * node,
559 vlib_frame_t * frame)
560{
561 u32 * buffers = vlib_frame_args (frame);
562 uword n_packets = frame->n_vectors;
563 vlib_buffer_free (vm, buffers, n_packets);
564 vlib_frame_free (vm, node, frame);
565}
566
567VNET_HW_INTERFACE_CLASS (tapcli_interface_class,static) = {
568 .name = "tapcli",
Neale Rannsb80c5362016-10-08 13:03:40 +0100569 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570};
571
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700572/**
573 * @brief Formatter for TAPCLI interface name
574 *
575 * @param *s - formatter string
576 * @param *args - va_list
577 *
578 * @return *s - formatted string
579 *
580 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581static u8 * format_tapcli_interface_name (u8 * s, va_list * args)
582{
583 u32 i = va_arg (*args, u32);
584 u32 show_dev_instance = ~0;
585 tapcli_main_t * tm = &tapcli_main;
586
587 if (i < vec_len (tm->show_dev_instance_by_real_dev_instance))
588 show_dev_instance = tm->show_dev_instance_by_real_dev_instance[i];
589
590 if (show_dev_instance != ~0)
591 i = show_dev_instance;
592
593 s = format (s, "tap-%d", i);
594 return s;
595}
596
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700597/**
598 * @brief Modify interface flags for TAPCLI interface
599 *
600 * @param *vnm - vnet_main_t
601 * @param *hw - vnet_hw_interface_t
602 * @param flags - u32
603 *
604 * @return rc - u32
605 *
606 */
607static u32 tapcli_flag_change (vnet_main_t * vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 vnet_hw_interface_t * hw,
609 u32 flags)
610{
611 tapcli_main_t *tm = &tapcli_main;
612 tapcli_interface_t *ti;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200614 ti = vec_elt_at_index (tm->tapcli_interfaces, hw->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200616 if (flags & ETHERNET_INTERFACE_FLAG_MTU)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617 {
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200618 const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
619 tm->mtu_bytes = hw->max_packet_bytes;
620 tm->mtu_buffers = (tm->mtu_bytes + (buffer_size - 1)) / buffer_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 }
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200622 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 {
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200624 struct ifreq ifr;
625 u32 want_promisc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200627 memcpy (&ifr, &ti->ifr, sizeof (ifr));
628
629 /* get flags, modify to bring up interface... */
630 if (ioctl (ti->provision_fd, SIOCGIFFLAGS, &ifr) < 0)
631 {
632 clib_unix_warning ("Couldn't get interface flags for %s", hw->name);
633 return 0;
634 }
635
636 want_promisc = (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL) != 0;
637
638 if (want_promisc == ti->is_promisc)
639 return 0;
640
641 if (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL)
642 ifr.ifr_flags |= IFF_PROMISC;
643 else
644 ifr.ifr_flags &= ~(IFF_PROMISC);
645
646 /* get flags, modify to bring up interface... */
647 if (ioctl (ti->provision_fd, SIOCSIFFLAGS, &ifr) < 0)
648 {
649 clib_unix_warning ("Couldn't set interface flags for %s", hw->name);
650 return 0;
651 }
652
653 ti->is_promisc = want_promisc;
654 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655
656 return 0;
657}
658
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700659/**
660 * @brief Setting the TAP interface's next processing node
661 *
662 * @param *vnm - vnet_main_t
663 * @param hw_if_index - u32
664 * @param node_index - u32
665 *
666 */
667static void tapcli_set_interface_next_node (vnet_main_t *vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 u32 hw_if_index,
669 u32 node_index)
670{
671 tapcli_main_t *tm = &tapcli_main;
672 tapcli_interface_t *ti;
673 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
674
675 ti = vec_elt_at_index (tm->tapcli_interfaces, hw->dev_instance);
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700676
677 /** Shut off redirection */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678 if (node_index == ~0)
679 {
680 ti->per_interface_next_index = node_index;
681 return;
682 }
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700683
684 ti->per_interface_next_index =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685 vlib_node_add_next (tm->vlib_main, tapcli_rx_node.index, node_index);
686}
687
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700688/**
689 * @brief Set link_state == admin_state otherwise things like ip6 neighbor discovery breaks
690 *
691 * @param *vnm - vnet_main_t
692 * @param hw_if_index - u32
693 * @param flags - u32
694 *
695 * @return error - clib_error_t
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 */
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700697static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698tapcli_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
699{
700 uword is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
701 u32 hw_flags;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700702 u32 speed_duplex = VNET_HW_INTERFACE_FLAG_FULL_DUPLEX
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 | VNET_HW_INTERFACE_FLAG_SPEED_1G;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700704
Ed Warnickecb9cada2015-12-08 15:45:58 -0700705 if (is_admin_up)
706 hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP | speed_duplex;
707 else
708 hw_flags = speed_duplex;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700709
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
711 return 0;
712}
713
714VNET_DEVICE_CLASS (tapcli_dev_class,static) = {
715 .name = "tapcli",
716 .tx_function = tapcli_tx,
717 .format_device_name = format_tapcli_interface_name,
718 .rx_redirect_to_node = tapcli_set_interface_next_node,
719 .name_renumber = tap_name_renumber,
720 .admin_up_down_function = tapcli_interface_admin_up_down,
721};
722
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700723/**
724 * @brief Dump TAP interfaces
725 *
726 * @param **out_tapids - tapcli_interface_details_t
727 *
728 * @return rc - int
729 *
730 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731int vnet_tap_dump_ifs (tapcli_interface_details_t **out_tapids)
732{
733 tapcli_main_t * tm = &tapcli_main;
734 tapcli_interface_t * ti;
735
736 tapcli_interface_details_t * r_tapids = NULL;
737 tapcli_interface_details_t * tapid = NULL;
738
739 vec_foreach (ti, tm->tapcli_interfaces) {
740 if (!ti->active)
741 continue;
742 vec_add2(r_tapids, tapid, 1);
743 tapid->sw_if_index = ti->sw_if_index;
744 strncpy((char *)tapid->dev_name, ti->ifr.ifr_name, sizeof (ti->ifr.ifr_name)-1);
745 }
746
747 *out_tapids = r_tapids;
748
749 return 0;
750}
751
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700752/**
753 * @brief Get tap interface from inactive interfaces or create new
754 *
755 * @return interface - tapcli_interface_t
756 *
757 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758static tapcli_interface_t *tapcli_get_new_tapif()
759{
760 tapcli_main_t * tm = &tapcli_main;
761 tapcli_interface_t *ti = NULL;
762
763 int inactive_cnt = vec_len(tm->tapcli_inactive_interfaces);
764 // if there are any inactive ifaces
765 if (inactive_cnt > 0) {
766 // take last
767 u32 ti_idx = tm->tapcli_inactive_interfaces[inactive_cnt - 1];
768 if (vec_len(tm->tapcli_interfaces) > ti_idx) {
769 ti = vec_elt_at_index (tm->tapcli_interfaces, ti_idx);
770 clib_warning("reusing tap interface");
771 }
772 // "remove" from inactive list
773 _vec_len(tm->tapcli_inactive_interfaces) -= 1;
774 }
775
776 // ti was not retrieved from inactive ifaces - create new
777 if (!ti)
778 vec_add2 (tm->tapcli_interfaces, ti, 1);
779
780 return ti;
781}
782
Dave Barach2feaffc2017-01-14 10:30:50 -0500783typedef struct
784{
785 ip6_address_t addr;
786 u32 mask_width;
787 unsigned int ifindex;
788} ip6_ifreq_t;
789
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700790/**
791 * @brief Connect a TAP interface
792 *
Chris Luked4024f52016-09-06 09:32:36 -0400793 * @param vm - vlib_main_t
Dave Barach2feaffc2017-01-14 10:30:50 -0500794 * @param ap - vnet_tap_connect_args_t
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700795 *
796 * @return rc - int
797 *
798 */
Dave Barach2feaffc2017-01-14 10:30:50 -0500799int vnet_tap_connect (vlib_main_t * vm, vnet_tap_connect_args_t *ap)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800{
801 tapcli_main_t * tm = &tapcli_main;
802 tapcli_interface_t * ti = NULL;
803 struct ifreq ifr;
804 int flags;
805 int dev_net_tun_fd;
806 int dev_tap_fd = -1;
807 clib_error_t * error;
808 u8 hwaddr [6];
809 int rv = 0;
810
811 if (tm->is_disabled)
812 {
813 return VNET_API_ERROR_FEATURE_DISABLED;
814 }
815
816 flags = IFF_TAP | IFF_NO_PI;
817
818 if ((dev_net_tun_fd = open ("/dev/net/tun", O_RDWR)) < 0)
819 return VNET_API_ERROR_SYSCALL_ERROR_1;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700820
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821 memset (&ifr, 0, sizeof (ifr));
Dave Barach2feaffc2017-01-14 10:30:50 -0500822 strncpy(ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823 ifr.ifr_flags = flags;
824 if (ioctl (dev_net_tun_fd, TUNSETIFF, (void *)&ifr) < 0)
825 {
826 rv = VNET_API_ERROR_SYSCALL_ERROR_2;
827 goto error;
828 }
829
830 /* Open a provisioning socket */
831 if ((dev_tap_fd = socket(PF_PACKET, SOCK_RAW,
832 htons(ETH_P_ALL))) < 0 )
833 {
834 rv = VNET_API_ERROR_SYSCALL_ERROR_3;
835 goto error;
836 }
837
838 /* Find the interface index. */
839 {
840 struct ifreq ifr;
841 struct sockaddr_ll sll;
842
843 memset (&ifr, 0, sizeof(ifr));
Dave Barach2feaffc2017-01-14 10:30:50 -0500844 strncpy (ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 if (ioctl (dev_tap_fd, SIOCGIFINDEX, &ifr) < 0 )
846 {
847 rv = VNET_API_ERROR_SYSCALL_ERROR_4;
848 goto error;
849 }
850
851 /* Bind the provisioning socket to the interface. */
852 memset(&sll, 0, sizeof(sll));
853 sll.sll_family = AF_PACKET;
854 sll.sll_ifindex = ifr.ifr_ifindex;
855 sll.sll_protocol = htons(ETH_P_ALL);
856
857 if (bind(dev_tap_fd, (struct sockaddr*) &sll, sizeof(sll)) < 0)
858 {
859 rv = VNET_API_ERROR_SYSCALL_ERROR_5;
860 goto error;
861 }
862 }
863
864 /* non-blocking I/O on /dev/tapX */
865 {
866 int one = 1;
867 if (ioctl (dev_net_tun_fd, FIONBIO, &one) < 0)
868 {
869 rv = VNET_API_ERROR_SYSCALL_ERROR_6;
870 goto error;
871 }
872 }
873 ifr.ifr_mtu = tm->mtu_bytes;
874 if (ioctl (dev_tap_fd, SIOCSIFMTU, &ifr) < 0)
875 {
876 rv = VNET_API_ERROR_SYSCALL_ERROR_7;
877 goto error;
878 }
879
880 /* get flags, modify to bring up interface... */
881 if (ioctl (dev_tap_fd, SIOCGIFFLAGS, &ifr) < 0)
882 {
883 rv = VNET_API_ERROR_SYSCALL_ERROR_8;
884 goto error;
885 }
886
887 ifr.ifr_flags |= (IFF_UP | IFF_RUNNING);
888
889 if (ioctl (dev_tap_fd, SIOCSIFFLAGS, &ifr) < 0)
890 {
891 rv = VNET_API_ERROR_SYSCALL_ERROR_9;
892 goto error;
893 }
894
Dave Barach2feaffc2017-01-14 10:30:50 -0500895 if (ap->ip4_address_set)
896 {
897 struct sockaddr_in sin;
898 /* ip4: mask defaults to /24 */
899 u32 mask = clib_host_to_net_u32 (0xFFFFFF00);
900
Dave Barach8f544962017-01-18 10:23:22 -0500901 memset(&sin, 0, sizeof(sin));
Dave Barach2feaffc2017-01-14 10:30:50 -0500902 sin.sin_family = AF_INET;
Dave Barach8f544962017-01-18 10:23:22 -0500903 /* sin.sin_port = 0; */
Dave Barach2feaffc2017-01-14 10:30:50 -0500904 sin.sin_addr.s_addr = ap->ip4_address->as_u32;
905 memcpy (&ifr.ifr_ifru.ifru_addr, &sin, sizeof (sin));
906
907 if (ioctl (dev_tap_fd, SIOCSIFADDR, &ifr) < 0)
908 {
909 rv = VNET_API_ERROR_SYSCALL_ERROR_10;
910 goto error;
911 }
912
913 if (ap->ip4_mask_width > 0 && ap->ip4_mask_width < 33)
914 {
915 mask = ~0;
916 mask <<= (32 - ap->ip4_mask_width);
917 }
918
919 mask = clib_host_to_net_u32(mask);
920 sin.sin_family = AF_INET;
921 sin.sin_port = 0;
922 sin.sin_addr.s_addr = mask;
923 memcpy (&ifr.ifr_ifru.ifru_addr, &sin, sizeof (sin));
924
925 if (ioctl (dev_tap_fd, SIOCSIFNETMASK, &ifr) < 0)
926 {
927 rv = VNET_API_ERROR_SYSCALL_ERROR_10;
928 goto error;
929 }
930 }
931
932 if (ap->ip6_address_set)
933 {
934 struct ifreq ifr2;
935 ip6_ifreq_t ifr6;
936 int sockfd6;
937
938 sockfd6 = socket(AF_INET6, SOCK_DGRAM, IPPROTO_IP);
939 if (sockfd6 < 0)
940 {
941 rv = VNET_API_ERROR_SYSCALL_ERROR_10;
942 goto error;
943 }
944
945 memset (&ifr2, 0, sizeof(ifr));
946 strncpy (ifr2.ifr_name, (char *) ap->intfc_name,
947 sizeof (ifr2.ifr_name)-1);
948 if (ioctl (sockfd6, SIOCGIFINDEX, &ifr2) < 0 )
949 {
950 close (sockfd6);
951 rv = VNET_API_ERROR_SYSCALL_ERROR_4;
952 goto error;
953 }
954
955 memcpy (&ifr6.addr, ap->ip6_address, sizeof (ip6_address_t));
956 ifr6.mask_width = ap->ip6_mask_width;
957 ifr6.ifindex = ifr2.ifr_ifindex;
958
959 if (ioctl (sockfd6, SIOCSIFADDR, &ifr6) < 0)
960 {
961 close (sockfd6);
962 clib_unix_warning ("ifr6");
963 rv = VNET_API_ERROR_SYSCALL_ERROR_10;
964 goto error;
965 }
966 close (sockfd6);
967 }
968
Ed Warnickecb9cada2015-12-08 15:45:58 -0700969 ti = tapcli_get_new_tapif();
Ole Troanae65f5b2016-04-27 14:15:48 +0200970 ti->per_interface_next_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971
Dave Barach2feaffc2017-01-14 10:30:50 -0500972 if (ap->hwaddr_arg != 0)
973 clib_memcpy(hwaddr, ap->hwaddr_arg, 6);
Mohsin KAZMI90d8e2c2016-07-18 16:57:40 +0200974 else
975 {
976 f64 now = vlib_time_now(vm);
977 u32 rnd;
978 rnd = (u32) (now * 1e6);
979 rnd = random_u32 (&rnd);
980
981 memcpy (hwaddr+2, &rnd, sizeof(rnd));
982 hwaddr[0] = 2;
983 hwaddr[1] = 0xfe;
984 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985
986 error = ethernet_register_interface
987 (tm->vnet_main,
988 tapcli_dev_class.index,
989 ti - tm->tapcli_interfaces /* device instance */,
Mohsin KAZMI90d8e2c2016-07-18 16:57:40 +0200990 hwaddr /* ethernet address */,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991 &ti->hw_if_index,
992 tapcli_flag_change);
993
994 if (error)
995 {
996 clib_error_report (error);
997 rv = VNET_API_ERROR_INVALID_REGISTRATION;
998 goto error;
999 }
1000
1001 {
1002 unix_file_t template = {0};
1003 template.read_function = tapcli_read_ready;
1004 template.file_descriptor = dev_net_tun_fd;
1005 ti->unix_file_index = unix_file_add (&unix_main, &template);
1006 ti->unix_fd = dev_net_tun_fd;
1007 ti->provision_fd = dev_tap_fd;
Damjan Marionf1213b82016-03-13 02:22:06 +01001008 clib_memcpy (&ti->ifr, &ifr, sizeof (ifr));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 }
1010
1011 {
1012 vnet_hw_interface_t * hw;
1013 hw = vnet_get_hw_interface (tm->vnet_main, ti->hw_if_index);
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001014 hw->min_supported_packet_bytes = TAP_MTU_MIN;
1015 hw->max_supported_packet_bytes = TAP_MTU_MAX;
1016 hw->max_l3_packet_bytes[VLIB_RX] = hw->max_l3_packet_bytes[VLIB_TX] = hw->max_supported_packet_bytes - sizeof(ethernet_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017 ti->sw_if_index = hw->sw_if_index;
Dave Barach2feaffc2017-01-14 10:30:50 -05001018 if (ap->sw_if_indexp)
1019 *(ap->sw_if_indexp) = hw->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020 }
1021
1022 ti->active = 1;
1023
1024 hash_set (tm->tapcli_interface_index_by_sw_if_index, ti->sw_if_index,
1025 ti - tm->tapcli_interfaces);
1026
1027 hash_set (tm->tapcli_interface_index_by_unix_fd, ti->unix_fd,
1028 ti - tm->tapcli_interfaces);
1029
1030 return rv;
1031
1032 error:
1033 close (dev_net_tun_fd);
Dave Barachf9c231e2016-08-05 10:10:18 -04001034 if (dev_tap_fd >= 0)
1035 close (dev_tap_fd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036
1037 return rv;
1038}
1039
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001040/**
1041 * @brief Renumber a TAP interface
1042 *
1043 * @param *vm - vlib_main_t
1044 * @param *intfc_name - u8
1045 * @param *hwaddr_arg - u8
1046 * @param *sw_if_indexp - u32
1047 * @param renumber - u8
1048 * @param custom_dev_instance - u32
1049 *
1050 * @return rc - int
1051 *
1052 */
Dave Barach2feaffc2017-01-14 10:30:50 -05001053int vnet_tap_connect_renumber (vlib_main_t * vm,
1054 vnet_tap_connect_args_t *ap)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001055{
Dave Barach2feaffc2017-01-14 10:30:50 -05001056 int rv = vnet_tap_connect(vm, ap);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001057
Dave Barach2feaffc2017-01-14 10:30:50 -05001058 if (!rv && ap->renumber)
1059 vnet_interface_name_renumber (*(ap->sw_if_indexp), ap->custom_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001060
Dave Barach2feaffc2017-01-14 10:30:50 -05001061 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062}
1063
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001064/**
1065 * @brief Disconnect TAP CLI interface
1066 *
1067 * @param *ti - tapcli_interface_t
1068 *
1069 * @return rc - int
1070 *
1071 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001072static int tapcli_tap_disconnect (tapcli_interface_t *ti)
1073{
1074 int rv = 0;
1075 vnet_main_t * vnm = vnet_get_main();
1076 tapcli_main_t * tm = &tapcli_main;
1077 u32 sw_if_index = ti->sw_if_index;
1078
1079 // bring interface down
1080 vnet_sw_interface_set_flags (vnm, sw_if_index, 0);
1081
1082 if (ti->unix_file_index != ~0) {
1083 unix_file_del (&unix_main, unix_main.file_pool + ti->unix_file_index);
1084 ti->unix_file_index = ~0;
1085 }
Eyal Barif298ecf2016-09-19 18:47:39 +03001086 else
1087 close(ti->unix_fd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001088
1089 hash_unset (tm->tapcli_interface_index_by_unix_fd, ti->unix_fd);
1090 hash_unset (tm->tapcli_interface_index_by_sw_if_index, ti->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091 close(ti->provision_fd);
1092 ti->unix_fd = -1;
1093 ti->provision_fd = -1;
1094
1095 return rv;
1096}
1097
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001098/**
1099 * @brief Delete TAP interface
1100 *
1101 * @param *vm - vlib_main_t
1102 * @param sw_if_index - u32
1103 *
1104 * @return rc - int
1105 *
1106 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107int vnet_tap_delete(vlib_main_t *vm, u32 sw_if_index)
1108{
1109 int rv = 0;
1110 tapcli_main_t * tm = &tapcli_main;
1111 tapcli_interface_t *ti;
1112 uword *p = NULL;
1113
1114 p = hash_get (tm->tapcli_interface_index_by_sw_if_index,
1115 sw_if_index);
1116 if (p == 0) {
1117 clib_warning ("sw_if_index %d unknown", sw_if_index);
1118 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1119 }
1120 ti = vec_elt_at_index (tm->tapcli_interfaces, p[0]);
1121
1122 // inactive
1123 ti->active = 0;
1124 tapcli_tap_disconnect(ti);
1125 // add to inactive list
1126 vec_add1(tm->tapcli_inactive_interfaces, ti - tm->tapcli_interfaces);
1127
1128 // reset renumbered iface
1129 if (p[0] < vec_len (tm->show_dev_instance_by_real_dev_instance))
1130 tm->show_dev_instance_by_real_dev_instance[p[0]] = ~0;
1131
1132 ethernet_delete_interface (tm->vnet_main, ti->hw_if_index);
1133 return rv;
1134}
1135
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001136/**
1137 * @brief CLI function to delete TAP interface
1138 *
1139 * @param *vm - vlib_main_t
1140 * @param *input - unformat_input_t
1141 * @param *cmd - vlib_cli_command_t
1142 *
1143 * @return error - clib_error_t
1144 *
1145 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146static clib_error_t *
1147tap_delete_command_fn (vlib_main_t * vm,
1148 unformat_input_t * input,
1149 vlib_cli_command_t * cmd)
1150{
1151 tapcli_main_t * tm = &tapcli_main;
1152 u32 sw_if_index = ~0;
1153
1154 if (tm->is_disabled)
1155 {
1156 return clib_error_return (0, "device disabled...");
1157 }
1158
1159 if (unformat (input, "%U", unformat_vnet_sw_interface, tm->vnet_main,
1160 &sw_if_index))
1161 ;
1162 else
1163 return clib_error_return (0, "unknown input `%U'",
1164 format_unformat_error, input);
1165
1166
1167 int rc = vnet_tap_delete (vm, sw_if_index);
1168
1169 if (!rc) {
1170 vlib_cli_output (vm, "Deleted.");
1171 } else {
1172 vlib_cli_output (vm, "Error during deletion of tap interface. (rc: %d)", rc);
1173 }
1174
1175 return 0;
1176}
1177
1178VLIB_CLI_COMMAND (tap_delete_command, static) = {
1179 .path = "tap delete",
1180 .short_help = "tap delete <vpp-tap-intfc-name>",
1181 .function = tap_delete_command_fn,
1182};
1183
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001184/**
1185 * @brief Modifies tap interface - can result in new interface being created
1186 *
1187 * @param *vm - vlib_main_t
1188 * @param orig_sw_if_index - u32
1189 * @param *intfc_name - u8
1190 * @param *hwaddr_arg - u8
1191 * @param *sw_if_indexp - u32
1192 * @param renumber - u8
1193 * @param custom_dev_instance - u32
1194 *
1195 * @return rc - int
1196 *
1197 */
Dave Barach2feaffc2017-01-14 10:30:50 -05001198int vnet_tap_modify (vlib_main_t * vm, vnet_tap_connect_args_t *ap)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001199{
Dave Barach2feaffc2017-01-14 10:30:50 -05001200 int rv = vnet_tap_delete (vm, ap->orig_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201
1202 if (rv)
Dave Barach2feaffc2017-01-14 10:30:50 -05001203 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001204
Dave Barach2feaffc2017-01-14 10:30:50 -05001205 rv = vnet_tap_connect_renumber(vm, ap);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001206
1207 return rv;
1208}
1209
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001210/**
1211 * @brief CLI function to modify TAP interface
1212 *
1213 * @param *vm - vlib_main_t
1214 * @param *input - unformat_input_t
1215 * @param *cmd - vlib_cli_command_t
1216 *
1217 * @return error - clib_error_t
1218 *
1219 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001220static clib_error_t *
1221tap_modify_command_fn (vlib_main_t * vm,
1222 unformat_input_t * input,
1223 vlib_cli_command_t * cmd)
1224{
1225 u8 * intfc_name;
1226 tapcli_main_t * tm = &tapcli_main;
1227 u32 sw_if_index = ~0;
1228 u32 new_sw_if_index = ~0;
1229 int user_hwaddr = 0;
1230 u8 hwaddr[6];
Dave Barach2feaffc2017-01-14 10:30:50 -05001231 vnet_tap_connect_args_t _a, *ap= &_a;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001232
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 if (tm->is_disabled)
1234 {
1235 return clib_error_return (0, "device disabled...");
1236 }
1237
1238 if (unformat (input, "%U", unformat_vnet_sw_interface, tm->vnet_main,
1239 &sw_if_index))
1240 ;
1241 else
1242 return clib_error_return (0, "unknown input `%U'",
1243 format_unformat_error, input);
1244
1245 if (unformat (input, "%s", &intfc_name))
1246 ;
1247 else
1248 return clib_error_return (0, "unknown input `%U'",
1249 format_unformat_error, input);
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001250
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251 if (unformat(input, "hwaddr %U", unformat_ethernet_address,
1252 &hwaddr))
1253 user_hwaddr = 1;
1254
1255
Dave Barach2feaffc2017-01-14 10:30:50 -05001256 memset (ap, 0, sizeof(*ap));
1257 ap->orig_sw_if_index = sw_if_index;
1258 ap->intfc_name = intfc_name;
1259 ap->sw_if_indexp = &new_sw_if_index;
1260 if (user_hwaddr)
1261 ap->hwaddr_arg = hwaddr;
1262
1263 int rc = vnet_tap_modify (vm, ap);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264
1265 if (!rc) {
1266 vlib_cli_output (vm, "Modified %U for Linux tap '%s'",
1267 format_vnet_sw_if_index_name, tm->vnet_main,
Dave Barach2feaffc2017-01-14 10:30:50 -05001268 *(ap->sw_if_indexp), ap->intfc_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269 } else {
1270 vlib_cli_output (vm, "Error during modification of tap interface. (rc: %d)", rc);
1271 }
1272
1273 return 0;
1274}
1275
1276VLIB_CLI_COMMAND (tap_modify_command, static) = {
1277 .path = "tap modify",
Mohsin KAZMI90d8e2c2016-07-18 16:57:40 +02001278 .short_help = "tap modify <vpp-tap-intfc-name> <linux-intfc-name> [hwaddr <addr>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279 .function = tap_modify_command_fn,
1280};
1281
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001282/**
1283 * @brief CLI function to connect TAP interface
1284 *
1285 * @param *vm - vlib_main_t
1286 * @param *input - unformat_input_t
1287 * @param *cmd - vlib_cli_command_t
1288 *
1289 * @return error - clib_error_t
1290 *
1291 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292static clib_error_t *
1293tap_connect_command_fn (vlib_main_t * vm,
1294 unformat_input_t * input,
1295 vlib_cli_command_t * cmd)
1296{
Dave Barach8f544962017-01-18 10:23:22 -05001297 u8 * intfc_name = 0;
Dave Barach2feaffc2017-01-14 10:30:50 -05001298 unformat_input_t _line_input, *line_input = &_line_input;
1299 vnet_tap_connect_args_t _a, *ap= &_a;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300 tapcli_main_t * tm = &tapcli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001301 u8 hwaddr[6];
Ole Troanae65f5b2016-04-27 14:15:48 +02001302 u8 *hwaddr_arg = 0;
1303 u32 sw_if_index;
Dave Barach2feaffc2017-01-14 10:30:50 -05001304 ip4_address_t ip4_address;
1305 int ip4_address_set = 0;
1306 ip6_address_t ip6_address;
1307 int ip6_address_set = 0;
1308 u32 ip4_mask_width = 0;
1309 u32 ip6_mask_width = 0;
Billy McFalla9a20e72017-02-15 11:39:12 -05001310 clib_error_t *error = NULL;
Ole Troan2df2e3d2016-03-02 10:01:43 +01001311
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312 if (tm->is_disabled)
Dave Barach2feaffc2017-01-14 10:30:50 -05001313 return clib_error_return (0, "device disabled...");
1314
1315 if (!unformat_user (input, unformat_line_input, line_input))
1316 return 0;
1317
1318 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001319 {
Dave Barach2feaffc2017-01-14 10:30:50 -05001320 if (unformat(line_input, "hwaddr %U", unformat_ethernet_address,
1321 &hwaddr))
1322 hwaddr_arg = hwaddr;
1323
1324 /* It is here for backward compatibility */
1325 else if (unformat(line_input, "hwaddr random"))
1326 ;
1327
1328 else if (unformat (line_input, "address %U/%d",
1329 unformat_ip4_address, &ip4_address, &ip4_mask_width))
1330 ip4_address_set = 1;
1331
1332 else if (unformat (line_input, "address %U/%d",
1333 unformat_ip6_address, &ip6_address, &ip6_mask_width))
1334 ip6_address_set = 1;
1335
1336 else if (unformat (line_input, "%s", &intfc_name))
1337 ;
1338 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001339 {
1340 error = clib_error_return (0, "unknown input `%U'",
1341 format_unformat_error, line_input);
1342 goto done;
1343 }
Dave Barach2feaffc2017-01-14 10:30:50 -05001344 }
1345
Dave Barach18b28162017-01-20 08:34:15 -05001346 if (intfc_name == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001347 {
1348 error = clib_error_return (0, "interface name must be specified");
1349 goto done;
1350 }
Dave Barach18b28162017-01-20 08:34:15 -05001351
Dave Barach2feaffc2017-01-14 10:30:50 -05001352 memset (ap, 0, sizeof (*ap));
1353
1354 ap->intfc_name = intfc_name;
1355 ap->hwaddr_arg = hwaddr_arg;
1356 if (ip4_address_set)
1357 {
1358 ap->ip4_address = &ip4_address;
1359 ap->ip4_mask_width = ip4_mask_width;
1360 ap->ip4_address_set = 1;
1361 }
1362 if (ip6_address_set)
1363 {
1364 ap->ip6_address = &ip6_address;
1365 ap->ip6_mask_width = ip6_mask_width;
1366 ap->ip6_address_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001367 }
1368
Dave Barach2feaffc2017-01-14 10:30:50 -05001369 ap->sw_if_indexp = &sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001370
Dave Barach2feaffc2017-01-14 10:30:50 -05001371 int rv = vnet_tap_connect(vm, ap);
Ole Troanae65f5b2016-04-27 14:15:48 +02001372
Dave Barach2feaffc2017-01-14 10:30:50 -05001373 switch (rv)
1374 {
Ole Troanae65f5b2016-04-27 14:15:48 +02001375 case VNET_API_ERROR_SYSCALL_ERROR_1:
Billy McFalla9a20e72017-02-15 11:39:12 -05001376 error = clib_error_return (0, "Couldn't open /dev/net/tun");
1377 goto done;
Dave Barach2feaffc2017-01-14 10:30:50 -05001378
Ole Troanae65f5b2016-04-27 14:15:48 +02001379 case VNET_API_ERROR_SYSCALL_ERROR_2:
Billy McFalla9a20e72017-02-15 11:39:12 -05001380 error = clib_error_return (0, "Error setting flags on '%s'", intfc_name);
1381 goto done;
1382
Ole Troanae65f5b2016-04-27 14:15:48 +02001383 case VNET_API_ERROR_SYSCALL_ERROR_3:
Billy McFalla9a20e72017-02-15 11:39:12 -05001384 error = clib_error_return (0, "Couldn't open provisioning socket");
1385 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001386
Ole Troanae65f5b2016-04-27 14:15:48 +02001387 case VNET_API_ERROR_SYSCALL_ERROR_4:
Billy McFalla9a20e72017-02-15 11:39:12 -05001388 error = clib_error_return (0, "Couldn't get if_index");
1389 goto done;
Ole Troanae65f5b2016-04-27 14:15:48 +02001390
1391 case VNET_API_ERROR_SYSCALL_ERROR_5:
Billy McFalla9a20e72017-02-15 11:39:12 -05001392 error = clib_error_return (0, "Couldn't bind provisioning socket");
1393 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001394
Ole Troanae65f5b2016-04-27 14:15:48 +02001395 case VNET_API_ERROR_SYSCALL_ERROR_6:
Billy McFalla9a20e72017-02-15 11:39:12 -05001396 error = clib_error_return (0, "Couldn't set device non-blocking flag");
1397 goto done;
Ole Troanae65f5b2016-04-27 14:15:48 +02001398
1399 case VNET_API_ERROR_SYSCALL_ERROR_7:
Billy McFalla9a20e72017-02-15 11:39:12 -05001400 error = clib_error_return (0, "Couldn't set device MTU");
1401 goto done;
Ole Troanae65f5b2016-04-27 14:15:48 +02001402
1403 case VNET_API_ERROR_SYSCALL_ERROR_8:
Billy McFalla9a20e72017-02-15 11:39:12 -05001404 error = clib_error_return (0, "Couldn't get interface flags");
1405 goto done;
Ole Troanae65f5b2016-04-27 14:15:48 +02001406
1407 case VNET_API_ERROR_SYSCALL_ERROR_9:
Billy McFalla9a20e72017-02-15 11:39:12 -05001408 error = clib_error_return (0, "Couldn't set intfc admin state up");
1409 goto done;
Dave Barach2feaffc2017-01-14 10:30:50 -05001410
1411 case VNET_API_ERROR_SYSCALL_ERROR_10:
Billy McFalla9a20e72017-02-15 11:39:12 -05001412 error = clib_error_return (0, "Couldn't set intfc address/mask");
1413 goto done;
Ole Troanae65f5b2016-04-27 14:15:48 +02001414
1415 case VNET_API_ERROR_INVALID_REGISTRATION:
Billy McFalla9a20e72017-02-15 11:39:12 -05001416 error = clib_error_return (0, "Invalid registration");
1417 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418
Dave Barach2feaffc2017-01-14 10:30:50 -05001419 case 0:
1420 break;
1421
1422 default:
Billy McFalla9a20e72017-02-15 11:39:12 -05001423 error = clib_error_return (0, "Unknown error: %d", rv);
1424 goto done;
Dave Barach2feaffc2017-01-14 10:30:50 -05001425 }
1426
1427 vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name,
1428 vnet_get_main(), sw_if_index);
Billy McFalla9a20e72017-02-15 11:39:12 -05001429
1430done:
1431 unformat_free (line_input);
1432
1433 return error;
Dave Barach2feaffc2017-01-14 10:30:50 -05001434}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001435
1436VLIB_CLI_COMMAND (tap_connect_command, static) = {
1437 .path = "tap connect",
Florin Corasd79b41e2017-03-04 05:37:52 -08001438 .short_help =
1439 "tap connect <intfc-name> [address <ip-addr>/mw] [hwaddr <addr>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001440 .function = tap_connect_command_fn,
1441};
1442
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001443/**
1444 * @brief TAPCLI main init
1445 *
1446 * @param *vm - vlib_main_t
1447 *
1448 * @return error - clib_error_t
1449 *
1450 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001451clib_error_t *
1452tapcli_init (vlib_main_t * vm)
1453{
1454 tapcli_main_t * tm = &tapcli_main;
1455
1456 tm->vlib_main = vm;
1457 tm->vnet_main = vnet_get_main();
1458 tm->unix_main = &unix_main;
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001459 tm->mtu_bytes = TAP_MTU_DEFAULT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001460 tm->tapcli_interface_index_by_sw_if_index = hash_create (0, sizeof(uword));
1461 tm->tapcli_interface_index_by_unix_fd = hash_create (0, sizeof (uword));
Pierre Pfister3a8f32b2016-03-21 12:21:30 +00001462 tm->rx_buffers = 0;
1463 vec_alloc(tm->rx_buffers, VLIB_FRAME_SIZE);
1464 vec_reset_length(tm->rx_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001465 vm->os_punt_frame = tapcli_nopunt_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001466 return 0;
1467}
1468
1469VLIB_INIT_FUNCTION (tapcli_init);