devices: Add queues params in create_if
[vpp.git] / src / vnet / devices / af_packet / af_packet_api.c
1 /*
2  *------------------------------------------------------------------
3  * af_packet_api.c - af-packet api
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 <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22
23 #include <vnet/interface.h>
24 #include <vnet/api_errno.h>
25 #include <vnet/devices/af_packet/af_packet.h>
26
27 #include <vnet/format_fns.h>
28 #include <vnet/devices/af_packet/af_packet.api_enum.h>
29 #include <vnet/devices/af_packet/af_packet.api_types.h>
30
31 #define REPLY_MSG_ID_BASE msg_id_base
32 #include <vlibapi/api_helper_macros.h>
33
34 static u16 msg_id_base;
35
36 static void
37 vl_api_af_packet_create_t_handler (vl_api_af_packet_create_t * mp)
38 {
39   af_packet_create_if_arg_t _arg, *arg = &_arg;
40   vl_api_af_packet_create_reply_t *rmp;
41   int rv = 0;
42
43   clib_memset (arg, 0, sizeof (*arg));
44
45   arg->host_if_name = format (0, "%s", mp->host_if_name);
46   vec_add1 (arg->host_if_name, 0);
47
48   arg->hw_addr = mp->use_random_hw_addr ? 0 : mp->hw_addr;
49   rv = af_packet_create_if (arg);
50
51   vec_free (arg->host_if_name);
52
53   REPLY_MACRO2 (VL_API_AF_PACKET_CREATE_REPLY, ({
54                   rmp->sw_if_index = clib_host_to_net_u32 (arg->sw_if_index);
55                 }));
56 }
57
58 static void
59 vl_api_af_packet_create_v2_t_handler (vl_api_af_packet_create_v2_t *mp)
60 {
61   af_packet_create_if_arg_t _arg, *arg = &_arg;
62   vl_api_af_packet_create_v2_reply_t *rmp;
63   int rv = 0;
64
65   clib_memset (arg, 0, sizeof (*arg));
66
67   arg->host_if_name = format (0, "%s", mp->host_if_name);
68   vec_add1 (arg->host_if_name, 0);
69
70   arg->rx_frame_size = clib_net_to_host_u32 (mp->rx_frame_size);
71   arg->tx_frame_size = clib_net_to_host_u32 (mp->tx_frame_size);
72   arg->rx_frames_per_block = clib_net_to_host_u32 (mp->rx_frames_per_block);
73   arg->tx_frames_per_block = clib_net_to_host_u32 (mp->tx_frames_per_block);
74   arg->hw_addr = mp->use_random_hw_addr ? 0 : mp->hw_addr;
75
76   if (mp->num_rx_queues > 1)
77     {
78       rv = VNET_API_ERROR_INVALID_VALUE;
79       goto out;
80     }
81
82   rv = af_packet_create_if (arg);
83
84 out:
85   vec_free (arg->host_if_name);
86   REPLY_MACRO2 (VL_API_AF_PACKET_CREATE_V2_REPLY, ({
87                   rmp->sw_if_index = clib_host_to_net_u32 (arg->sw_if_index);
88                 }));
89 }
90
91 static void
92 vl_api_af_packet_delete_t_handler (vl_api_af_packet_delete_t * mp)
93 {
94   vl_api_af_packet_delete_reply_t *rmp;
95   int rv = 0;
96   u8 *host_if_name = NULL;
97
98   host_if_name = format (0, "%s", mp->host_if_name);
99   vec_add1 (host_if_name, 0);
100
101   rv = af_packet_delete_if (host_if_name);
102
103   vec_free (host_if_name);
104
105   REPLY_MACRO (VL_API_AF_PACKET_DELETE_REPLY);
106 }
107
108 static void
109   vl_api_af_packet_set_l4_cksum_offload_t_handler
110   (vl_api_af_packet_set_l4_cksum_offload_t * mp)
111 {
112   vl_api_af_packet_delete_reply_t *rmp;
113   int rv = 0;
114
115   rv = af_packet_set_l4_cksum_offload (ntohl (mp->sw_if_index), mp->set);
116   REPLY_MACRO (VL_API_AF_PACKET_SET_L4_CKSUM_OFFLOAD_REPLY);
117 }
118
119 static void
120 af_packet_send_details (vpe_api_main_t * am,
121                         vl_api_registration_t * reg,
122                         af_packet_if_detail_t * af_packet_if, u32 context)
123 {
124   vl_api_af_packet_details_t *mp;
125   mp = vl_msg_api_alloc (sizeof (*mp));
126   clib_memset (mp, 0, sizeof (*mp));
127   mp->_vl_msg_id = htons (REPLY_MSG_ID_BASE + VL_API_AF_PACKET_DETAILS);
128   mp->sw_if_index = htonl (af_packet_if->sw_if_index);
129   clib_memcpy (mp->host_if_name, af_packet_if->host_if_name,
130                MIN (ARRAY_LEN (mp->host_if_name) - 1,
131                     strlen ((const char *) af_packet_if->host_if_name)));
132
133   mp->context = context;
134   vl_api_send_msg (reg, (u8 *) mp);
135 }
136
137
138 static void
139 vl_api_af_packet_dump_t_handler (vl_api_af_packet_dump_t * mp)
140 {
141   int rv;
142   vpe_api_main_t *am = &vpe_api_main;
143   vl_api_registration_t *reg;
144   af_packet_if_detail_t *out_af_packet_ifs = NULL;
145   af_packet_if_detail_t *af_packet_if = NULL;
146
147   reg = vl_api_client_index_to_registration (mp->client_index);
148   if (!reg)
149     return;
150
151   rv = af_packet_dump_ifs (&out_af_packet_ifs);
152   if (rv)
153     return;
154
155   vec_foreach (af_packet_if, out_af_packet_ifs)
156   {
157     af_packet_send_details (am, reg, af_packet_if, mp->context);
158   }
159
160   vec_free (out_af_packet_ifs);
161 }
162
163 #include <vnet/devices/af_packet/af_packet.api.c>
164 static clib_error_t *
165 af_packet_api_hookup (vlib_main_t * vm)
166 {
167   /*
168    * Set up the (msg_name, crc, message-id) table
169    */
170   REPLY_MSG_ID_BASE = setup_message_id_table ();
171
172   return 0;
173 }
174
175 VLIB_API_INIT_FUNCTION (af_packet_api_hookup);
176
177 /*
178  * fd.io coding-style-patch-verification: ON
179  *
180  * Local Variables:
181  * eval: (c-set-style "gnu")
182  * End:
183  */