Use thread local storage for thread index
[vpp.git] / src / vnet / unix / tapcli.c
1 /*
2  *------------------------------------------------------------------
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  */
19 /**
20  * @file
21  * @brief  dynamic tap interface hookup
22  */
23
24 #include <fcntl.h>              /* for open */
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
27 #include <sys/stat.h>
28 #include <sys/types.h>
29 #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
42 #include <vnet/feature/feature.h>
43 #include <vnet/devices/devices.h>
44 #include <vnet/unix/tuntap.h>
45 #include <vnet/unix/tapcli.h>
46
47 static vnet_device_class_t tapcli_dev_class;
48 static vnet_hw_interface_class_t tapcli_interface_class;
49 static vlib_node_registration_t tapcli_rx_node;
50
51 static void tapcli_nopunt_frame (vlib_main_t * vm,
52                                  vlib_node_runtime_t * node,
53                                  vlib_frame_t * frame);
54 /**
55  * @brief Struct for the tapcli interface
56  */
57 typedef struct {
58   u32 unix_fd;
59   u32 unix_file_index;
60   u32 provision_fd;
61   /** For counters */
62   u32 sw_if_index;
63   u32 hw_if_index;
64   u32 is_promisc;
65   struct ifreq ifr;
66   u32 per_interface_next_index;
67   /** for delete */
68   u8 active;
69 } tapcli_interface_t;
70
71 /**
72  * @brief Struct for RX trace
73  */
74 typedef struct {
75   u16 sw_if_index;
76 } tapcli_rx_trace_t;
77
78 /**
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  */
87 u8 * 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
98 /**
99  * @brief TAPCLI main state struct
100  */
101 typedef struct {
102   /** Vector of iovecs for readv/writev calls. */
103   struct iovec * iovecs;
104
105   /** Vector of VLIB rx buffers to use.  We allocate them in blocks
106      of VLIB_FRAME_SIZE (256). */
107   u32 * rx_buffers;
108
109   /** tap device destination MAC address. Required, or Linux drops pkts */
110   u8 ether_dst_mac[6];
111
112   /** Interface MTU in bytes and # of default sized buffers. */
113   u32 mtu_bytes, mtu_buffers;
114
115   /** Vector of tap interfaces */
116   tapcli_interface_t * tapcli_interfaces;
117
118   /** Vector of deleted tap interfaces */
119   u32 * tapcli_inactive_interfaces;
120
121   /** Bitmap of tap interfaces with pending reads */
122   uword * pending_read_bitmap;
123
124   /** Hash table to find tapcli interface given hw_if_index */
125   uword * tapcli_interface_index_by_sw_if_index;
126
127   /** Hash table to find tapcli interface given unix fd */
128   uword * tapcli_interface_index_by_unix_fd;
129
130   /** renumbering table */
131   u32 * show_dev_instance_by_real_dev_instance;
132
133   /** 1 => disable CLI */
134   int is_disabled;
135
136   /** convenience - vlib_main_t */
137   vlib_main_t * vlib_main;
138   /** convenience - vnet_main_t */
139   vnet_main_t * vnet_main;
140   /** convenience - unix_main_t */
141   unix_main_t * unix_main;
142 } tapcli_main_t;
143
144 static tapcli_main_t tapcli_main;
145
146 /**
147  * @brief tapcli TX node function
148  * @node tap-cli-tx
149  *
150  * Output node, writes the buffers comprising the incoming frame
151  * to the tun/tap device, aka hands them to the Linux kernel stack.
152  *
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  *
159  */
160 static uword
161 tapcli_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;
191
192       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     }
228
229   vlib_buffer_free(vm, vlib_frame_vector_args(frame), frame->n_vectors);
230
231   return n_packets;
232 }
233
234 VLIB_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
241 /**
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  */
252 static 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;
257   const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
258   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)) {
286           vlib_node_increment_counter(vm, tapcli_rx_node.index,
287                                       TAPCLI_ERROR_BUFFER_ALLOC,
288                                       tm->mtu_buffers - vec_len(tm->rx_buffers));
289         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]);
300       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
343     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];
349     next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
350     next_index = (ti->per_interface_next_index != ~0) ?
351         ti->per_interface_next_index : next_index;
352     next_index = admin_down ? VNET_DEVICE_INPUT_NEXT_DROP : next_index;
353
354     to_next[0] = bi_first;
355     to_next++;
356     n_left_to_next--;
357
358     vnet_feature_start_device_input_x1 (ti->sw_if_index, &next_index, b_first);
359
360     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,
369           vlib_get_thread_index(), ti->sw_if_index,
370           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
388 /**
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  */
401 static uword
402 tapcli_rx (vlib_main_t * vm,
403            vlib_node_runtime_t * node,
404            vlib_frame_t * frame)
405 {
406   tapcli_main_t * tm = &tapcli_main;
407   static u32 * ready_interface_indices;
408   tapcli_interface_t * ti;
409   int i;
410   u32 total_count = 0;
411
412   vec_reset_length (ready_interface_indices);
413   clib_bitmap_foreach (i, tm->pending_read_bitmap,
414   ({
415     vec_add1 (ready_interface_indices, i);
416   }));
417
418   if (vec_len (ready_interface_indices) == 0)
419     return 0;
420
421   for (i = 0; i < vec_len(ready_interface_indices); i++)
422   {
423     tm->pending_read_bitmap =
424         clib_bitmap_set (tm->pending_read_bitmap,
425                          ready_interface_indices[i], 0);
426
427     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.
431 }
432
433 /** TAPCLI error strings */
434 static char * tapcli_rx_error_strings[] = {
435 #define _(sym,string) string,
436   foreach_tapcli_error
437 #undef _
438 };
439
440 VLIB_REGISTER_NODE (tapcli_rx_node, static) = {
441   .function = tapcli_rx,
442   .name = "tapcli-rx",
443   .sibling_of = "device-input",
444   .type = VLIB_NODE_TYPE_INPUT,
445   .state = VLIB_NODE_STATE_INTERRUPT,
446   .vector_size = 4,
447   .n_errors = TAPCLI_N_ERROR,
448   .error_strings = tapcli_rx_error_strings,
449   .format_trace = format_tapcli_rx_trace,
450 };
451
452
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  */
461 static 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;
466
467   /** Schedule the rx node */
468   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
472   /** Mark the specific tap interface ready-to-read */
473   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
482 /**
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  */
491 static clib_error_t *
492 tapcli_config (vlib_main_t * vm, unformat_input_t * input)
493 {
494   tapcli_main_t *tm = &tapcli_main;
495   const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
496
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
511   if (geteuid())
512     {
513       clib_warning ("tapcli disabled: must be superuser");
514       tm->is_disabled = 1;
515       return 0;
516     }
517
518   tm->mtu_buffers = (tm->mtu_bytes + (buffer_size - 1)) / buffer_size;
519
520   return 0;
521 }
522
523 /**
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  */
532 static 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
546 VLIB_CONFIG_FUNCTION (tapcli_config, "tapcli");
547
548 /**
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  */
556 static void
557 tapcli_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
567 VNET_HW_INTERFACE_CLASS (tapcli_interface_class,static) = {
568   .name = "tapcli",
569   .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
570 };
571
572 /**
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  */
581 static 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
597 /**
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  */
607 static u32 tapcli_flag_change (vnet_main_t * vnm,
608                                vnet_hw_interface_t * hw,
609                                u32 flags)
610 {
611   tapcli_main_t *tm = &tapcli_main;
612   tapcli_interface_t *ti;
613
614    ti = vec_elt_at_index (tm->tapcli_interfaces, hw->dev_instance);
615
616   if (flags & ETHERNET_INTERFACE_FLAG_MTU)
617     {
618       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;
621     }
622    else
623     {
624       struct ifreq ifr;
625       u32 want_promisc;
626
627       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     }
655
656   return 0;
657 }
658
659 /**
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  */
667 static void tapcli_set_interface_next_node (vnet_main_t *vnm,
668                                             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);
676
677   /** Shut off redirection */
678   if (node_index == ~0)
679     {
680       ti->per_interface_next_index = node_index;
681       return;
682     }
683
684   ti->per_interface_next_index =
685     vlib_node_add_next (tm->vlib_main, tapcli_rx_node.index, node_index);
686 }
687
688 /**
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
696  */
697 static clib_error_t *
698 tapcli_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;
702   u32 speed_duplex = VNET_HW_INTERFACE_FLAG_FULL_DUPLEX
703     | VNET_HW_INTERFACE_FLAG_SPEED_1G;
704
705   if (is_admin_up)
706     hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP | speed_duplex;
707   else
708     hw_flags = speed_duplex;
709
710   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
711   return 0;
712 }
713
714 VNET_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
723 /**
724  * @brief Dump TAP interfaces
725  *
726  * @param **out_tapids - tapcli_interface_details_t
727  *
728  * @return rc - int
729  *
730  */
731 int 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
752 /**
753  * @brief Get tap interface from inactive interfaces or create new
754  *
755  * @return interface - tapcli_interface_t
756  *
757  */
758 static 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
783 typedef struct 
784 {
785     ip6_address_t addr;
786     u32 mask_width;
787     unsigned int ifindex;
788 } ip6_ifreq_t;
789
790 /**
791  * @brief Connect a TAP interface
792  *
793  * @param vm - vlib_main_t
794  * @param ap - vnet_tap_connect_args_t 
795  *
796  * @return rc - int
797  *
798  */
799 int vnet_tap_connect (vlib_main_t * vm, vnet_tap_connect_args_t *ap)
800 {
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;
820
821   memset (&ifr, 0, sizeof (ifr));
822   strncpy(ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
823   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));
844     strncpy (ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
845     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
895   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
901       memset(&sin, 0, sizeof(sin));
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
969   ti = tapcli_get_new_tapif();
970   ti->per_interface_next_index = ~0;
971
972   if (ap->hwaddr_arg != 0)
973     clib_memcpy(hwaddr, ap->hwaddr_arg, 6);
974   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     }
985
986   error = ethernet_register_interface
987         (tm->vnet_main,
988          tapcli_dev_class.index,
989          ti - tm->tapcli_interfaces /* device instance */,
990          hwaddr /* ethernet address */,
991          &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;
1008     clib_memcpy (&ti->ifr, &ifr, sizeof (ifr));
1009   }
1010   
1011   {
1012     vnet_hw_interface_t * hw;
1013     hw = vnet_get_hw_interface (tm->vnet_main, ti->hw_if_index);
1014     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);
1017     ti->sw_if_index = hw->sw_if_index;
1018     if (ap->sw_if_indexp)
1019       *(ap->sw_if_indexp) = hw->sw_if_index;
1020   }
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);
1034   if (dev_tap_fd >= 0)
1035       close (dev_tap_fd);
1036
1037   return rv;
1038 }
1039
1040 /**
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  */
1053 int vnet_tap_connect_renumber (vlib_main_t * vm, 
1054                                vnet_tap_connect_args_t *ap)
1055 {
1056   int rv = vnet_tap_connect(vm, ap);
1057
1058   if (!rv && ap->renumber)
1059     vnet_interface_name_renumber (*(ap->sw_if_indexp), ap->custom_dev_instance);
1060
1061   return rv;
1062 }
1063
1064 /**
1065  * @brief Disconnect TAP CLI interface
1066  *
1067  * @param *ti - tapcli_interface_t
1068  *
1069  * @return rc - int
1070  *
1071  */
1072 static 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   }
1086   else
1087     close(ti->unix_fd);
1088
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);
1091   close(ti->provision_fd);
1092   ti->unix_fd = -1;
1093   ti->provision_fd = -1;
1094
1095   return rv;
1096 }
1097
1098 /**
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  */
1107 int 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
1136 /**
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  */
1146 static clib_error_t *
1147 tap_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
1178 VLIB_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
1184 /**
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  */
1198 int vnet_tap_modify (vlib_main_t * vm, vnet_tap_connect_args_t *ap)
1199 {
1200     int rv = vnet_tap_delete (vm, ap->orig_sw_if_index);
1201
1202     if (rv)
1203       return rv;
1204
1205     rv = vnet_tap_connect_renumber(vm, ap);
1206
1207     return rv;
1208 }
1209
1210 /**
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  */
1220 static clib_error_t *
1221 tap_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];
1231   vnet_tap_connect_args_t _a, *ap= &_a;
1232
1233   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);
1250
1251   if (unformat(input, "hwaddr %U", unformat_ethernet_address,
1252                &hwaddr))
1253     user_hwaddr = 1;
1254
1255
1256   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);
1264
1265   if (!rc) {
1266     vlib_cli_output (vm, "Modified %U for Linux tap '%s'",
1267                    format_vnet_sw_if_index_name, tm->vnet_main, 
1268                      *(ap->sw_if_indexp), ap->intfc_name);
1269   } else {
1270     vlib_cli_output (vm, "Error during modification of tap interface. (rc: %d)", rc);
1271   }
1272
1273   return 0;
1274 }
1275
1276 VLIB_CLI_COMMAND (tap_modify_command, static) = {
1277     .path = "tap modify",
1278     .short_help = "tap modify <vpp-tap-intfc-name> <linux-intfc-name> [hwaddr <addr>]",
1279     .function = tap_modify_command_fn,
1280 };
1281
1282 /**
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  */
1292 static clib_error_t *
1293 tap_connect_command_fn (vlib_main_t * vm,
1294                  unformat_input_t * input,
1295                  vlib_cli_command_t * cmd)
1296 {
1297   u8 * intfc_name = 0;
1298   unformat_input_t _line_input, *line_input = &_line_input;
1299   vnet_tap_connect_args_t _a, *ap= &_a;
1300   tapcli_main_t * tm = &tapcli_main;
1301   u8 hwaddr[6];
1302   u8 *hwaddr_arg = 0;
1303   u32 sw_if_index;
1304   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;
1310   clib_error_t *error = NULL;
1311
1312   if (tm->is_disabled)
1313     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)
1319     {
1320       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
1339         {
1340           error = clib_error_return (0, "unknown input `%U'",
1341                                      format_unformat_error, line_input);
1342           goto done;
1343         }
1344     }
1345   
1346   if (intfc_name == 0)
1347     {
1348       error = clib_error_return (0, "interface name must be specified");
1349       goto done;
1350     }
1351
1352   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;
1367     }
1368
1369   ap->sw_if_indexp = &sw_if_index;
1370
1371   int rv = vnet_tap_connect(vm, ap);
1372
1373   switch (rv) 
1374     {
1375     case VNET_API_ERROR_SYSCALL_ERROR_1:
1376       error = clib_error_return (0, "Couldn't open /dev/net/tun");
1377       goto done;
1378       
1379     case VNET_API_ERROR_SYSCALL_ERROR_2:
1380       error = clib_error_return (0, "Error setting flags on '%s'", intfc_name);
1381       goto done;
1382
1383     case VNET_API_ERROR_SYSCALL_ERROR_3:
1384       error = clib_error_return (0,  "Couldn't open provisioning socket");
1385       goto done;
1386
1387     case VNET_API_ERROR_SYSCALL_ERROR_4:
1388       error = clib_error_return (0,  "Couldn't get if_index");
1389       goto done;
1390     
1391     case VNET_API_ERROR_SYSCALL_ERROR_5:
1392       error = clib_error_return (0,  "Couldn't bind provisioning socket");
1393       goto done;
1394
1395     case VNET_API_ERROR_SYSCALL_ERROR_6:
1396       error = clib_error_return (0,  "Couldn't set device non-blocking flag");
1397       goto done;
1398
1399     case VNET_API_ERROR_SYSCALL_ERROR_7:
1400       error = clib_error_return (0,  "Couldn't set device MTU");
1401       goto done;
1402
1403     case VNET_API_ERROR_SYSCALL_ERROR_8:
1404       error = clib_error_return (0,  "Couldn't get interface flags");
1405       goto done;
1406
1407     case VNET_API_ERROR_SYSCALL_ERROR_9:
1408       error = clib_error_return (0,  "Couldn't set intfc admin state up");
1409       goto done;
1410
1411     case VNET_API_ERROR_SYSCALL_ERROR_10:
1412       error = clib_error_return (0,  "Couldn't set intfc address/mask");
1413       goto done;
1414
1415     case VNET_API_ERROR_INVALID_REGISTRATION:
1416       error = clib_error_return (0,  "Invalid registration");
1417       goto done;
1418
1419     case 0:
1420       break;
1421
1422     default:
1423       error = clib_error_return (0,  "Unknown error: %d", rv);
1424       goto done;
1425     }
1426
1427   vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name, 
1428                   vnet_get_main(), sw_if_index);
1429
1430 done:
1431   unformat_free (line_input);
1432
1433   return error;
1434 }
1435
1436 VLIB_CLI_COMMAND (tap_connect_command, static) = {
1437     .path = "tap connect",
1438     .short_help =
1439         "tap connect <intfc-name> [address <ip-addr>/mw] [hwaddr <addr>]",
1440     .function = tap_connect_command_fn,
1441 };
1442
1443 /**
1444  * @brief TAPCLI main init
1445  *
1446  * @param *vm - vlib_main_t
1447  *
1448  * @return error - clib_error_t
1449  *
1450  */
1451 clib_error_t *
1452 tapcli_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;
1459   tm->mtu_bytes = TAP_MTU_DEFAULT;
1460   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));
1462   tm->rx_buffers = 0;
1463   vec_alloc(tm->rx_buffers, VLIB_FRAME_SIZE);
1464   vec_reset_length(tm->rx_buffers);
1465   vm->os_punt_frame = tapcli_nopunt_frame;
1466   return 0;
1467 }
1468
1469 VLIB_INIT_FUNCTION (tapcli_init);