VPP-81: Print interface name after creating an interface with CLI
[vpp.git] / vnet / vnet / devices / af_packet / cli.c
1 /*
2  *------------------------------------------------------------------
3  * af_packet.c - linux kernel packet interface
4  *
5  * Copyright (c) 2016 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 #include <fcntl.h>              /* for open */
21 #include <sys/ioctl.h>
22 #include <sys/socket.h>
23 #include <sys/stat.h>
24 #include <sys/types.h>
25 #include <sys/uio.h>            /* for iovec */
26 #include <netinet/in.h>
27
28 #include <vlib/vlib.h>
29 #include <vlib/unix/unix.h>
30 #include <vnet/ip/ip.h>
31 #include <vnet/ethernet/ethernet.h>
32
33 #include <vnet/devices/af_packet/af_packet.h>
34
35 static clib_error_t *
36 af_packet_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
37                              vlib_cli_command_t * cmd)
38 {
39   unformat_input_t _line_input, * line_input = &_line_input;
40   u8 * host_if_name = NULL;
41   u8 hwaddr [6];
42   u8 * hw_addr_ptr = 0;
43   u32 sw_if_index;
44   int r;
45
46   /* Get a line of input. */
47   if (! unformat_user (input, unformat_line_input, line_input))
48     return 0;
49
50   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
51     {
52       if (unformat (line_input, "name %s", &host_if_name))
53         ;
54       else if (unformat (line_input, "hw-addr %U", unformat_ethernet_address, hwaddr))
55         hw_addr_ptr = hwaddr;
56       else
57         return clib_error_return (0, "unknown input `%U'", format_unformat_error, input);
58     }
59   unformat_free (line_input);
60
61   if (host_if_name == NULL)
62       return clib_error_return (0, "missing host interface name");
63
64   r = af_packet_create_if(vm, host_if_name, hw_addr_ptr, &sw_if_index);
65
66   if (r == VNET_API_ERROR_SYSCALL_ERROR_1)
67     return clib_error_return(0, "%s (errno %d)", strerror (errno), errno);
68
69   if (r == VNET_API_ERROR_INVALID_INTERFACE)
70     return clib_error_return(0, "Invalid interface name");
71
72   if (r == VNET_API_ERROR_SUBIF_ALREADY_EXISTS)
73     return clib_error_return(0, "Interface elready exists");
74
75   vlib_cli_output(vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main(), sw_if_index);
76   return 0;
77 }
78
79 VLIB_CLI_COMMAND (af_packet_create_command, static) = {
80   .path = "create host-interface",
81   .short_help = "create host-interface name <interface name> [hw-addr <mac>]",
82   .function = af_packet_create_command_fn,
83 };
84
85 static clib_error_t *
86 af_packet_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
87                              vlib_cli_command_t * cmd)
88 {
89   unformat_input_t _line_input, * line_input = &_line_input;
90   u8 * host_if_name = NULL;
91
92   /* Get a line of input. */
93   if (! unformat_user (input, unformat_line_input, line_input))
94     return 0;
95
96   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
97     {
98       if (unformat (line_input, "name %s", &host_if_name))
99         ;
100       else
101         return clib_error_return (0, "unknown input `%U'", format_unformat_error, input);
102     }
103   unformat_free (line_input);
104
105   if (host_if_name == NULL)
106       return clib_error_return (0, "missing host interface name");
107
108   af_packet_delete_if(vm, host_if_name);
109
110   return 0;
111 }
112
113 VLIB_CLI_COMMAND (af_packet_delete_command, static) = {
114   .path = "delete host-interface",
115   .short_help = "delete host-interface name <interface name>",
116   .function = af_packet_delete_command_fn,
117 };
118
119 clib_error_t *
120 af_packet_cli_init (vlib_main_t * vm)
121 {
122   return 0;
123 }
124
125 VLIB_INIT_FUNCTION (af_packet_cli_init);