blob: 2d3082cbf70f5496e3a002dd400c923b9e1125db [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
Dave Barach9f6186e2016-11-08 12:12:12 -0500358 vnet_feature_start_device_input_x1 (ti->sw_if_index, &next_index,
359 b_first, 0);
360
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000361 vlib_validate_buffer_enqueue_x1 (vm, node, next,
362 to_next, n_left_to_next,
363 bi_first, next_index);
364
365 /* Interface counters for tapcli interface. */
366 if (PREDICT_TRUE(!admin_down)) {
367 vlib_increment_combined_counter (
368 vnet_main.interface_main.combined_sw_if_counters
369 + VNET_INTERFACE_COUNTER_RX,
370 os_get_cpu_number(), ti->sw_if_index,
371 1, n_bytes_in_packet);
372
373 if (PREDICT_FALSE(n_trace > 0)) {
374 vlib_trace_buffer (vm, node, next_index,
375 b_first, /* follow_chain */ 1);
376 n_trace--;
377 set_trace = 1;
378 tapcli_rx_trace_t *t0 = vlib_add_trace (vm, node, b_first, sizeof (*t0));
379 t0->sw_if_index = si->sw_if_index;
380 }
381 }
382 }
383 vlib_put_next_frame (vm, node, next, n_left_to_next);
384 if (set_trace)
385 vlib_set_trace_count (vm, node, n_trace);
386 return VLIB_FRAME_SIZE - n_left_to_next;
387}
388
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700389/**
390 * @brief tapcli RX node function
391 * @node tap-cli-rx
392 *
393 * Input node from the Kernel tun/tap device
394 *
395 * @param *vm - vlib_main_t
396 * @param *node - vlib_node_runtime_t
397 * @param *frame - vlib_frame_t
398 *
399 * @return n_packets - uword
400 *
401 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402static uword
403tapcli_rx (vlib_main_t * vm,
404 vlib_node_runtime_t * node,
405 vlib_frame_t * frame)
406{
407 tapcli_main_t * tm = &tapcli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 static u32 * ready_interface_indices;
409 tapcli_interface_t * ti;
410 int i;
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000411 u32 total_count = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412
413 vec_reset_length (ready_interface_indices);
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000414 clib_bitmap_foreach (i, tm->pending_read_bitmap,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 ({
416 vec_add1 (ready_interface_indices, i);
417 }));
418
419 if (vec_len (ready_interface_indices) == 0)
Dave Barachb3ca6582016-06-10 18:31:55 -0400420 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421
422 for (i = 0; i < vec_len(ready_interface_indices); i++)
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000423 {
424 tm->pending_read_bitmap =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425 clib_bitmap_set (tm->pending_read_bitmap,
426 ready_interface_indices[i], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000428 ti = vec_elt_at_index (tm->tapcli_interfaces, ready_interface_indices[i]);
429 total_count += tapcli_rx_iface(vm, node, ti);
430 }
431 return total_count; //This might return more than 256.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432}
433
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700434/** TAPCLI error strings */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435static char * tapcli_rx_error_strings[] = {
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000436#define _(sym,string) string,
437 foreach_tapcli_error
438#undef _
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439};
440
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000441VLIB_REGISTER_NODE (tapcli_rx_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442 .function = tapcli_rx,
443 .name = "tapcli-rx",
Damjan Marion51327ac2016-11-09 11:59:42 +0100444 .sibling_of = "device-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445 .type = VLIB_NODE_TYPE_INPUT,
446 .state = VLIB_NODE_STATE_INTERRUPT,
447 .vector_size = 4,
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000448 .n_errors = TAPCLI_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449 .error_strings = tapcli_rx_error_strings,
Pierre Pfister3a8f32b2016-03-21 12:21:30 +0000450 .format_trace = format_tapcli_rx_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451};
452
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700453
454/**
455 * @brief Gets called when file descriptor is ready from epoll.
456 *
457 * @param *uf - unix_file_t
458 *
459 * @return error - clib_error_t
460 *
461 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462static clib_error_t * tapcli_read_ready (unix_file_t * uf)
463{
464 vlib_main_t * vm = vlib_get_main();
465 tapcli_main_t * tm = &tapcli_main;
466 uword * p;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700467
468 /** Schedule the rx node */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469 vlib_node_set_interrupt_pending (vm, tapcli_rx_node.index);
470
471 p = hash_get (tm->tapcli_interface_index_by_unix_fd, uf->file_descriptor);
472
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700473 /** Mark the specific tap interface ready-to-read */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474 if (p)
475 tm->pending_read_bitmap = clib_bitmap_set (tm->pending_read_bitmap,
476 p[0], 1);
477 else
478 clib_warning ("fd %d not in hash table", uf->file_descriptor);
479
480 return 0;
481}
482
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700483/**
484 * @brief CLI function for TAPCLI configuration
485 *
486 * @param *vm - vlib_main_t
487 * @param *input - unformat_input_t
488 *
489 * @return error - clib_error_t
490 *
491 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492static clib_error_t *
493tapcli_config (vlib_main_t * vm, unformat_input_t * input)
494{
495 tapcli_main_t *tm = &tapcli_main;
Damjan Marion19010202016-03-24 17:17:47 +0100496 const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
498 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
499 {
500 if (unformat (input, "mtu %d", &tm->mtu_bytes))
501 ;
502 else if (unformat (input, "disable"))
503 tm->is_disabled = 1;
504 else
505 return clib_error_return (0, "unknown input `%U'",
506 format_unformat_error, input);
507 }
508
509 if (tm->is_disabled)
510 return 0;
511
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700512 if (geteuid())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513 {
514 clib_warning ("tapcli disabled: must be superuser");
515 tm->is_disabled = 1;
516 return 0;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700517 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518
519 tm->mtu_buffers = (tm->mtu_bytes + (buffer_size - 1)) / buffer_size;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700520
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 return 0;
522}
523
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700524/**
525 * @brief Renumber TAPCLI interface
526 *
527 * @param *hi - vnet_hw_interface_t
528 * @param new_dev_instance - u32
529 *
530 * @return rc - int
531 *
532 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533static int tap_name_renumber (vnet_hw_interface_t * hi,
534 u32 new_dev_instance)
535{
536 tapcli_main_t *tm = &tapcli_main;
537
538 vec_validate_init_empty (tm->show_dev_instance_by_real_dev_instance,
539 hi->dev_instance, ~0);
540
541 tm->show_dev_instance_by_real_dev_instance [hi->dev_instance] =
542 new_dev_instance;
543
544 return 0;
545}
546
547VLIB_CONFIG_FUNCTION (tapcli_config, "tapcli");
548
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700549/**
550 * @brief Free "no punt" frame
551 *
552 * @param *vm - vlib_main_t
553 * @param *node - vlib_node_runtime_t
554 * @param *frame - vlib_frame_t
555 *
556 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557static void
558tapcli_nopunt_frame (vlib_main_t * vm,
559 vlib_node_runtime_t * node,
560 vlib_frame_t * frame)
561{
562 u32 * buffers = vlib_frame_args (frame);
563 uword n_packets = frame->n_vectors;
564 vlib_buffer_free (vm, buffers, n_packets);
565 vlib_frame_free (vm, node, frame);
566}
567
568VNET_HW_INTERFACE_CLASS (tapcli_interface_class,static) = {
569 .name = "tapcli",
Neale Rannsb80c5362016-10-08 13:03:40 +0100570 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571};
572
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700573/**
574 * @brief Formatter for TAPCLI interface name
575 *
576 * @param *s - formatter string
577 * @param *args - va_list
578 *
579 * @return *s - formatted string
580 *
581 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582static u8 * format_tapcli_interface_name (u8 * s, va_list * args)
583{
584 u32 i = va_arg (*args, u32);
585 u32 show_dev_instance = ~0;
586 tapcli_main_t * tm = &tapcli_main;
587
588 if (i < vec_len (tm->show_dev_instance_by_real_dev_instance))
589 show_dev_instance = tm->show_dev_instance_by_real_dev_instance[i];
590
591 if (show_dev_instance != ~0)
592 i = show_dev_instance;
593
594 s = format (s, "tap-%d", i);
595 return s;
596}
597
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700598/**
599 * @brief Modify interface flags for TAPCLI interface
600 *
601 * @param *vnm - vnet_main_t
602 * @param *hw - vnet_hw_interface_t
603 * @param flags - u32
604 *
605 * @return rc - u32
606 *
607 */
608static u32 tapcli_flag_change (vnet_main_t * vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 vnet_hw_interface_t * hw,
610 u32 flags)
611{
612 tapcli_main_t *tm = &tapcli_main;
613 tapcli_interface_t *ti;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200615 ti = vec_elt_at_index (tm->tapcli_interfaces, hw->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200617 if (flags & ETHERNET_INTERFACE_FLAG_MTU)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 {
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200619 const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
620 tm->mtu_bytes = hw->max_packet_bytes;
621 tm->mtu_buffers = (tm->mtu_bytes + (buffer_size - 1)) / buffer_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 }
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200623 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624 {
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200625 struct ifreq ifr;
626 u32 want_promisc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200628 memcpy (&ifr, &ti->ifr, sizeof (ifr));
629
630 /* get flags, modify to bring up interface... */
631 if (ioctl (ti->provision_fd, SIOCGIFFLAGS, &ifr) < 0)
632 {
633 clib_unix_warning ("Couldn't get interface flags for %s", hw->name);
634 return 0;
635 }
636
637 want_promisc = (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL) != 0;
638
639 if (want_promisc == ti->is_promisc)
640 return 0;
641
642 if (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL)
643 ifr.ifr_flags |= IFF_PROMISC;
644 else
645 ifr.ifr_flags &= ~(IFF_PROMISC);
646
647 /* get flags, modify to bring up interface... */
648 if (ioctl (ti->provision_fd, SIOCSIFFLAGS, &ifr) < 0)
649 {
650 clib_unix_warning ("Couldn't set interface flags for %s", hw->name);
651 return 0;
652 }
653
654 ti->is_promisc = want_promisc;
655 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656
657 return 0;
658}
659
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700660/**
661 * @brief Setting the TAP interface's next processing node
662 *
663 * @param *vnm - vnet_main_t
664 * @param hw_if_index - u32
665 * @param node_index - u32
666 *
667 */
668static void tapcli_set_interface_next_node (vnet_main_t *vnm,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 u32 hw_if_index,
670 u32 node_index)
671{
672 tapcli_main_t *tm = &tapcli_main;
673 tapcli_interface_t *ti;
674 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
675
676 ti = vec_elt_at_index (tm->tapcli_interfaces, hw->dev_instance);
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700677
678 /** Shut off redirection */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 if (node_index == ~0)
680 {
681 ti->per_interface_next_index = node_index;
682 return;
683 }
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700684
685 ti->per_interface_next_index =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 vlib_node_add_next (tm->vlib_main, tapcli_rx_node.index, node_index);
687}
688
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700689/**
690 * @brief Set link_state == admin_state otherwise things like ip6 neighbor discovery breaks
691 *
692 * @param *vnm - vnet_main_t
693 * @param hw_if_index - u32
694 * @param flags - u32
695 *
696 * @return error - clib_error_t
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 */
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700698static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699tapcli_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
700{
701 uword is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
702 u32 hw_flags;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700703 u32 speed_duplex = VNET_HW_INTERFACE_FLAG_FULL_DUPLEX
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 | VNET_HW_INTERFACE_FLAG_SPEED_1G;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700705
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706 if (is_admin_up)
707 hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP | speed_duplex;
708 else
709 hw_flags = speed_duplex;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700710
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
712 return 0;
713}
714
715VNET_DEVICE_CLASS (tapcli_dev_class,static) = {
716 .name = "tapcli",
717 .tx_function = tapcli_tx,
718 .format_device_name = format_tapcli_interface_name,
719 .rx_redirect_to_node = tapcli_set_interface_next_node,
720 .name_renumber = tap_name_renumber,
721 .admin_up_down_function = tapcli_interface_admin_up_down,
722};
723
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700724/**
725 * @brief Dump TAP interfaces
726 *
727 * @param **out_tapids - tapcli_interface_details_t
728 *
729 * @return rc - int
730 *
731 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732int vnet_tap_dump_ifs (tapcli_interface_details_t **out_tapids)
733{
734 tapcli_main_t * tm = &tapcli_main;
735 tapcli_interface_t * ti;
736
737 tapcli_interface_details_t * r_tapids = NULL;
738 tapcli_interface_details_t * tapid = NULL;
739
740 vec_foreach (ti, tm->tapcli_interfaces) {
741 if (!ti->active)
742 continue;
743 vec_add2(r_tapids, tapid, 1);
744 tapid->sw_if_index = ti->sw_if_index;
745 strncpy((char *)tapid->dev_name, ti->ifr.ifr_name, sizeof (ti->ifr.ifr_name)-1);
746 }
747
748 *out_tapids = r_tapids;
749
750 return 0;
751}
752
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700753/**
754 * @brief Get tap interface from inactive interfaces or create new
755 *
756 * @return interface - tapcli_interface_t
757 *
758 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759static tapcli_interface_t *tapcli_get_new_tapif()
760{
761 tapcli_main_t * tm = &tapcli_main;
762 tapcli_interface_t *ti = NULL;
763
764 int inactive_cnt = vec_len(tm->tapcli_inactive_interfaces);
765 // if there are any inactive ifaces
766 if (inactive_cnt > 0) {
767 // take last
768 u32 ti_idx = tm->tapcli_inactive_interfaces[inactive_cnt - 1];
769 if (vec_len(tm->tapcli_interfaces) > ti_idx) {
770 ti = vec_elt_at_index (tm->tapcli_interfaces, ti_idx);
771 clib_warning("reusing tap interface");
772 }
773 // "remove" from inactive list
774 _vec_len(tm->tapcli_inactive_interfaces) -= 1;
775 }
776
777 // ti was not retrieved from inactive ifaces - create new
778 if (!ti)
779 vec_add2 (tm->tapcli_interfaces, ti, 1);
780
781 return ti;
782}
783
Dave Barach2feaffc2017-01-14 10:30:50 -0500784typedef struct
785{
786 ip6_address_t addr;
787 u32 mask_width;
788 unsigned int ifindex;
789} ip6_ifreq_t;
790
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700791/**
792 * @brief Connect a TAP interface
793 *
Chris Luked4024f52016-09-06 09:32:36 -0400794 * @param vm - vlib_main_t
Dave Barach2feaffc2017-01-14 10:30:50 -0500795 * @param ap - vnet_tap_connect_args_t
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700796 *
797 * @return rc - int
798 *
799 */
Dave Barach2feaffc2017-01-14 10:30:50 -0500800int vnet_tap_connect (vlib_main_t * vm, vnet_tap_connect_args_t *ap)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801{
802 tapcli_main_t * tm = &tapcli_main;
803 tapcli_interface_t * ti = NULL;
804 struct ifreq ifr;
805 int flags;
806 int dev_net_tun_fd;
807 int dev_tap_fd = -1;
808 clib_error_t * error;
809 u8 hwaddr [6];
810 int rv = 0;
811
812 if (tm->is_disabled)
813 {
814 return VNET_API_ERROR_FEATURE_DISABLED;
815 }
816
817 flags = IFF_TAP | IFF_NO_PI;
818
819 if ((dev_net_tun_fd = open ("/dev/net/tun", O_RDWR)) < 0)
820 return VNET_API_ERROR_SYSCALL_ERROR_1;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700821
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822 memset (&ifr, 0, sizeof (ifr));
Dave Barach2feaffc2017-01-14 10:30:50 -0500823 strncpy(ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824 ifr.ifr_flags = flags;
825 if (ioctl (dev_net_tun_fd, TUNSETIFF, (void *)&ifr) < 0)
826 {
827 rv = VNET_API_ERROR_SYSCALL_ERROR_2;
828 goto error;
829 }
830
831 /* Open a provisioning socket */
832 if ((dev_tap_fd = socket(PF_PACKET, SOCK_RAW,
833 htons(ETH_P_ALL))) < 0 )
834 {
835 rv = VNET_API_ERROR_SYSCALL_ERROR_3;
836 goto error;
837 }
838
839 /* Find the interface index. */
840 {
841 struct ifreq ifr;
842 struct sockaddr_ll sll;
843
844 memset (&ifr, 0, sizeof(ifr));
Dave Barach2feaffc2017-01-14 10:30:50 -0500845 strncpy (ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 if (ioctl (dev_tap_fd, SIOCGIFINDEX, &ifr) < 0 )
847 {
848 rv = VNET_API_ERROR_SYSCALL_ERROR_4;
849 goto error;
850 }
851
852 /* Bind the provisioning socket to the interface. */
853 memset(&sll, 0, sizeof(sll));
854 sll.sll_family = AF_PACKET;
855 sll.sll_ifindex = ifr.ifr_ifindex;
856 sll.sll_protocol = htons(ETH_P_ALL);
857
858 if (bind(dev_tap_fd, (struct sockaddr*) &sll, sizeof(sll)) < 0)
859 {
860 rv = VNET_API_ERROR_SYSCALL_ERROR_5;
861 goto error;
862 }
863 }
864
865 /* non-blocking I/O on /dev/tapX */
866 {
867 int one = 1;
868 if (ioctl (dev_net_tun_fd, FIONBIO, &one) < 0)
869 {
870 rv = VNET_API_ERROR_SYSCALL_ERROR_6;
871 goto error;
872 }
873 }
874 ifr.ifr_mtu = tm->mtu_bytes;
875 if (ioctl (dev_tap_fd, SIOCSIFMTU, &ifr) < 0)
876 {
877 rv = VNET_API_ERROR_SYSCALL_ERROR_7;
878 goto error;
879 }
880
881 /* get flags, modify to bring up interface... */
882 if (ioctl (dev_tap_fd, SIOCGIFFLAGS, &ifr) < 0)
883 {
884 rv = VNET_API_ERROR_SYSCALL_ERROR_8;
885 goto error;
886 }
887
888 ifr.ifr_flags |= (IFF_UP | IFF_RUNNING);
889
890 if (ioctl (dev_tap_fd, SIOCSIFFLAGS, &ifr) < 0)
891 {
892 rv = VNET_API_ERROR_SYSCALL_ERROR_9;
893 goto error;
894 }
895
Dave Barach2feaffc2017-01-14 10:30:50 -0500896 if (ap->ip4_address_set)
897 {
898 struct sockaddr_in sin;
899 /* ip4: mask defaults to /24 */
900 u32 mask = clib_host_to_net_u32 (0xFFFFFF00);
901
902 sin.sin_family = AF_INET;
903 sin.sin_port = 0;
904 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{
1297 u8 * intfc_name;
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;
Ole Troan2df2e3d2016-03-02 10:01:43 +01001310
Ed Warnickecb9cada2015-12-08 15:45:58 -07001311 if (tm->is_disabled)
Dave Barach2feaffc2017-01-14 10:30:50 -05001312 return clib_error_return (0, "device disabled...");
1313
1314 if (!unformat_user (input, unformat_line_input, line_input))
1315 return 0;
1316
1317 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001318 {
Dave Barach2feaffc2017-01-14 10:30:50 -05001319 if (unformat(line_input, "hwaddr %U", unformat_ethernet_address,
1320 &hwaddr))
1321 hwaddr_arg = hwaddr;
1322
1323 /* It is here for backward compatibility */
1324 else if (unformat(line_input, "hwaddr random"))
1325 ;
1326
1327 else if (unformat (line_input, "address %U/%d",
1328 unformat_ip4_address, &ip4_address, &ip4_mask_width))
1329 ip4_address_set = 1;
1330
1331 else if (unformat (line_input, "address %U/%d",
1332 unformat_ip6_address, &ip6_address, &ip6_mask_width))
1333 ip6_address_set = 1;
1334
1335 else if (unformat (line_input, "%s", &intfc_name))
1336 ;
1337 else
1338 return clib_error_return (0, "unknown input `%U'",
1339 format_unformat_error, line_input);
1340 }
1341
1342 memset (ap, 0, sizeof (*ap));
1343
1344 ap->intfc_name = intfc_name;
1345 ap->hwaddr_arg = hwaddr_arg;
1346 if (ip4_address_set)
1347 {
1348 ap->ip4_address = &ip4_address;
1349 ap->ip4_mask_width = ip4_mask_width;
1350 ap->ip4_address_set = 1;
1351 }
1352 if (ip6_address_set)
1353 {
1354 ap->ip6_address = &ip6_address;
1355 ap->ip6_mask_width = ip6_mask_width;
1356 ap->ip6_address_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357 }
1358
Dave Barach2feaffc2017-01-14 10:30:50 -05001359 ap->sw_if_indexp = &sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001360
Dave Barach2feaffc2017-01-14 10:30:50 -05001361 int rv = vnet_tap_connect(vm, ap);
Ole Troanae65f5b2016-04-27 14:15:48 +02001362
Dave Barach2feaffc2017-01-14 10:30:50 -05001363 switch (rv)
1364 {
Ole Troanae65f5b2016-04-27 14:15:48 +02001365 case VNET_API_ERROR_SYSCALL_ERROR_1:
Dave Barach2feaffc2017-01-14 10:30:50 -05001366 return clib_error_return (0, "Couldn't open /dev/net/tun");
1367
Ole Troanae65f5b2016-04-27 14:15:48 +02001368 case VNET_API_ERROR_SYSCALL_ERROR_2:
Dave Barach2feaffc2017-01-14 10:30:50 -05001369 return clib_error_return (0, "Error setting flags on '%s'", intfc_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001370
Ole Troanae65f5b2016-04-27 14:15:48 +02001371 case VNET_API_ERROR_SYSCALL_ERROR_3:
Dave Barach2feaffc2017-01-14 10:30:50 -05001372 return clib_error_return (0, "Couldn't open provisioning socket");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001373
Ole Troanae65f5b2016-04-27 14:15:48 +02001374 case VNET_API_ERROR_SYSCALL_ERROR_4:
Dave Barach2feaffc2017-01-14 10:30:50 -05001375 return clib_error_return (0, "Couldn't get if_index");
Ole Troanae65f5b2016-04-27 14:15:48 +02001376
1377 case VNET_API_ERROR_SYSCALL_ERROR_5:
Dave Barach2feaffc2017-01-14 10:30:50 -05001378 return clib_error_return (0, "Couldn't bind provisioning socket");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001379
Ole Troanae65f5b2016-04-27 14:15:48 +02001380 case VNET_API_ERROR_SYSCALL_ERROR_6:
Dave Barach2feaffc2017-01-14 10:30:50 -05001381 return clib_error_return (0, "Couldn't set device non-blocking flag");
Ole Troanae65f5b2016-04-27 14:15:48 +02001382
1383 case VNET_API_ERROR_SYSCALL_ERROR_7:
Dave Barach2feaffc2017-01-14 10:30:50 -05001384 return clib_error_return (0, "Couldn't set device MTU");
Ole Troanae65f5b2016-04-27 14:15:48 +02001385
1386 case VNET_API_ERROR_SYSCALL_ERROR_8:
Dave Barach2feaffc2017-01-14 10:30:50 -05001387 return clib_error_return (0, "Couldn't get interface flags");
Ole Troanae65f5b2016-04-27 14:15:48 +02001388
1389 case VNET_API_ERROR_SYSCALL_ERROR_9:
Dave Barach2feaffc2017-01-14 10:30:50 -05001390 return clib_error_return (0, "Couldn't set intfc admin state up");
1391
1392 case VNET_API_ERROR_SYSCALL_ERROR_10:
1393 return clib_error_return (0, "Couldn't set intfc address/mask");
Ole Troanae65f5b2016-04-27 14:15:48 +02001394
1395 case VNET_API_ERROR_INVALID_REGISTRATION:
Dave Barach2feaffc2017-01-14 10:30:50 -05001396 return clib_error_return (0, "Invalid registration");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001397
Dave Barach2feaffc2017-01-14 10:30:50 -05001398 case 0:
1399 break;
1400
1401 default:
1402 return clib_error_return (0, "Unknown error: %d", rv);
1403 }
1404
1405 vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name,
1406 vnet_get_main(), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001407 return 0;
Dave Barach2feaffc2017-01-14 10:30:50 -05001408}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001409
1410VLIB_CLI_COMMAND (tap_connect_command, static) = {
1411 .path = "tap connect",
Mohsin KAZMI90d8e2c2016-07-18 16:57:40 +02001412 .short_help = "tap connect <intfc-name> [hwaddr <addr>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001413 .function = tap_connect_command_fn,
1414};
1415
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -07001416/**
1417 * @brief TAPCLI main init
1418 *
1419 * @param *vm - vlib_main_t
1420 *
1421 * @return error - clib_error_t
1422 *
1423 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424clib_error_t *
1425tapcli_init (vlib_main_t * vm)
1426{
1427 tapcli_main_t * tm = &tapcli_main;
1428
1429 tm->vlib_main = vm;
1430 tm->vnet_main = vnet_get_main();
1431 tm->unix_main = &unix_main;
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001432 tm->mtu_bytes = TAP_MTU_DEFAULT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001433 tm->tapcli_interface_index_by_sw_if_index = hash_create (0, sizeof(uword));
1434 tm->tapcli_interface_index_by_unix_fd = hash_create (0, sizeof (uword));
Pierre Pfister3a8f32b2016-03-21 12:21:30 +00001435 tm->rx_buffers = 0;
1436 vec_alloc(tm->rx_buffers, VLIB_FRAME_SIZE);
1437 vec_reset_length(tm->rx_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001438 vm->os_punt_frame = tapcli_nopunt_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439 return 0;
1440}
1441
1442VLIB_INIT_FUNCTION (tapcli_init);