blob: fa43d7cd804005281415d3c722ace5e043cacc57 [file] [log] [blame]
Damjan Marion83243a02016-02-29 13:09:30 +01001/*
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 <linux/if_packet.h>
21
22#include <vlib/vlib.h>
23#include <vlib/unix/unix.h>
24#include <vnet/ip/ip.h>
25#include <vnet/ethernet/ethernet.h>
26
27#include <vnet/devices/af_packet/af_packet.h>
28
29#define foreach_af_packet_tx_func_error \
30_(FRAME_NOT_READY, "tx frame not ready")
31
32typedef enum {
33#define _(f,s) AF_PACKET_TX_ERROR_##f,
34 foreach_af_packet_tx_func_error
35#undef _
36 AF_PACKET_TX_N_ERROR,
37} af_packet_tx_func_error_t;
38
39static char * af_packet_tx_func_error_strings[] = {
40#define _(n,s) s,
41 foreach_af_packet_tx_func_error
42#undef _
43};
44
45
46static u8 * format_af_packet_device_name (u8 * s, va_list * args)
47{
48 u32 i = va_arg (*args, u32);
49 af_packet_main_t * apm = &af_packet_main;
Damjan Marion048ee2e2016-03-16 22:59:21 +010050 af_packet_if_t * apif = pool_elt_at_index (apm->interfaces, i);
Damjan Marion83243a02016-02-29 13:09:30 +010051
52 s = format (s, "host-%s", apif->host_if_name);
53 return s;
54}
55
56static u8 * format_af_packet_device (u8 * s, va_list * args)
57{
58 s = format (s, "Linux PACKET socket interface");
59 return s;
60}
61
62static u8 * format_af_packet_tx_trace (u8 * s, va_list * args)
63{
64 s = format (s, "Unimplemented...");
65 return s;
66}
67
68static uword
69af_packet_interface_tx (vlib_main_t * vm,
70 vlib_node_runtime_t * node,
71 vlib_frame_t * frame)
72{
73 af_packet_main_t * apm = &af_packet_main;
74 u32 * buffers = vlib_frame_args (frame);
75 u32 n_left = frame->n_vectors;
76 u32 n_sent = 0;
77 vnet_interface_output_runtime_t * rd = (void *) node->runtime_data;
Damjan Marion048ee2e2016-03-16 22:59:21 +010078 af_packet_if_t * apif = pool_elt_at_index (apm->interfaces, rd->dev_instance);
Damjan Marion83243a02016-02-29 13:09:30 +010079 int block = 0;
80 u32 block_size = apif->tx_req->tp_block_size;
81 u32 frame_size = apif->tx_req->tp_frame_size;
82 u32 frame_num = apif->tx_req->tp_frame_nr;
83 u8 * block_start = apif->tx_ring + block * block_size;
84 u32 tx_frame = apif->next_tx_frame;
85 struct tpacket2_hdr * tph;
86 u32 frame_not_ready = 0;
87
88 while(n_left > 0)
89 {
90 u32 len;
91 u32 offset = 0;
92 vlib_buffer_t * b0;
93 n_left--;
94 u32 bi = buffers[0];
95 buffers++;
96
97 tph = (struct tpacket2_hdr *) (block_start + tx_frame * frame_size);
98
99 if(tph->tp_status & (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING))
100 {
101 frame_not_ready++;
102 goto next;
103 }
104
105 do
106 {
107 b0 = vlib_get_buffer (vm, bi);
108 len = b0->current_length;
109 memcpy((u8 *) tph + TPACKET_ALIGN(sizeof(struct tpacket2_hdr)) + offset,
110 vlib_buffer_get_current(b0), len);
111 offset += len;
112 }
113 while ((bi = b0->next_buffer));
114
115 tph->tp_len = tph->tp_snaplen = offset;
116 tph->tp_status = TP_STATUS_SEND_REQUEST;
117 n_sent++;
118next:
119 tx_frame = (tx_frame + 1) % frame_num;
120 }
121
122 CLIB_MEMORY_BARRIER();
123
124 if (n_sent)
125 {
126 apif->next_tx_frame = tx_frame;
127 if (sendto(apif->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == -1)
128 clib_unix_error("tx sendto failure");
129 }
130
131 if (frame_not_ready)
132 vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_FRAME_NOT_READY,
133 frame_not_ready);
134
135 vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
136 return frame->n_vectors;
137}
138
139static void
140af_packet_set_interface_next_node (vnet_main_t *vnm, u32 hw_if_index,
141 u32 node_index)
142{
143 af_packet_main_t * apm = &af_packet_main;
144 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
145 af_packet_if_t * apif = pool_elt_at_index (apm->interfaces, hw->dev_instance);
146
147 /* Shut off redirection */
148 if (node_index == ~0)
149 {
150 apif->per_interface_next_index = node_index;
151 return;
152 }
153
154 apif->per_interface_next_index =
155 vlib_node_add_next (vlib_get_main(), af_packet_input_node.index, node_index);
156}
157
158static void af_packet_clear_hw_interface_counters (u32 instance)
159{
160 /* Nothing for now */
161}
162
163static clib_error_t *
164af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
165{
166 af_packet_main_t * apm = &af_packet_main;
167 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
168 af_packet_if_t * apif = pool_elt_at_index (apm->interfaces, hw->dev_instance);
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700169 u32 hw_flags;
Damjan Marion83243a02016-02-29 13:09:30 +0100170
171 apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
172
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700173 if (apif->is_admin_up)
174 hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
175 else
176 hw_flags = 0;
177
178 vnet_hw_interface_set_flags(vnm, hw_if_index, hw_flags);
179
Damjan Marion83243a02016-02-29 13:09:30 +0100180 return 0;
181}
182
183static clib_error_t *
184af_packet_subif_add_del_function (vnet_main_t * vnm,
185 u32 hw_if_index,
186 struct vnet_sw_interface_t * st,
187 int is_add)
188{
189 /* Nothing for now */
190 return 0;
191}
192
193VNET_DEVICE_CLASS (af_packet_device_class) = {
194 .name = "af-packet",
195 .tx_function = af_packet_interface_tx,
196 .format_device_name = format_af_packet_device_name,
197 .format_device = format_af_packet_device,
198 .format_tx_trace = format_af_packet_tx_trace,
199 .tx_function_n_errors = AF_PACKET_TX_N_ERROR,
200 .tx_function_error_strings = af_packet_tx_func_error_strings,
201 .rx_redirect_to_node = af_packet_set_interface_next_node,
202 .clear_counters = af_packet_clear_hw_interface_counters,
203 .admin_up_down_function = af_packet_interface_admin_up_down,
204 .subif_add_del_function = af_packet_subif_add_del_function,
205 .no_flatten_output_chains = 1,
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700206};