blob: 95671b069302d25726eda0a3314fef084be637d7 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * rewrite.c: packet rewrite
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <vnet/vnet.h>
41#include <vnet/ip/lookup.h>
42
Dave Barachba868bb2016-08-08 09:51:21 -040043u8 *
44format_vnet_rewrite (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070045{
Dave Barachba868bb2016-08-08 09:51:21 -040046 vnet_rewrite_header_t *rw = va_arg (*args, vnet_rewrite_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070047 u32 max_data_bytes = va_arg (*args, u32);
Christophe Fontained3c008d2017-10-02 18:10:54 +020048 CLIB_UNUSED (u32 indent) = va_arg (*args, u32);
Dave Barachba868bb2016-08-08 09:51:21 -040049 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Benoît Ganne4af1a7f2019-03-01 14:14:10 +010051 ASSERT (rw->data_bytes <= max_data_bytes);
52
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 if (rw->sw_if_index != ~0)
54 {
Dave Barachba868bb2016-08-08 09:51:21 -040055 vnet_sw_interface_t *si;
Neale Ranns75152282017-01-09 01:00:45 -080056 si = vnet_get_sw_interface_safe (vnm, rw->sw_if_index);
57 if (NULL != si)
Neale Rannsffd78d12018-02-09 06:05:16 -080058 s = format (s, "%U:", format_vnet_sw_interface_name, vnm, si);
Neale Ranns75152282017-01-09 01:00:45 -080059 else
Neale Ranns1bd01092017-03-15 15:41:17 -040060 s = format (s, "DELETED:%d", rw->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070061 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Ole Troan6ee40512018-02-12 18:14:39 +010063 s = format (s, " mtu:%d", rw->max_l3_packet_bytes);
64
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 /* Format rewrite string. */
66 if (rw->data_bytes > 0)
Benoît Ganne4af1a7f2019-03-01 14:14:10 +010067 s = format (s, " %U", format_hex_bytes, rw->data, rw->data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
69 return s;
70}
71
Neale Rannsb80c5362016-10-08 13:03:40 +010072u32
73vnet_tx_node_index_for_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
74{
75 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
76 return (hw->output_node_index);
77}
78
79void
80vnet_rewrite_init (vnet_main_t * vnm,
81 u32 sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +020082 vnet_link_t linkt,
Neale Rannsb80c5362016-10-08 13:03:40 +010083 u32 this_node, u32 next_node, vnet_rewrite_header_t * rw)
84{
85 rw->sw_if_index = sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +010086 rw->next_index = vlib_node_add_next (vnm->vlib_main, this_node, next_node);
87 rw->max_l3_packet_bytes =
Ole Troand7231612018-06-07 10:17:57 +020088 vnet_sw_interface_get_mtu (vnm, sw_if_index, vnet_link_to_mtu (linkt));
Neale Rannsb80c5362016-10-08 13:03:40 +010089}
90
Dave Barachba868bb2016-08-08 09:51:21 -040091void
Ole Troand7231612018-06-07 10:17:57 +020092vnet_rewrite_update_mtu (vnet_main_t * vnm, vnet_link_t linkt,
93 vnet_rewrite_header_t * rw)
Neale Rannsffd78d12018-02-09 06:05:16 -080094{
95 rw->max_l3_packet_bytes =
Ole Troand7231612018-06-07 10:17:57 +020096 vnet_sw_interface_get_mtu (vnm, rw->sw_if_index,
97 vnet_link_to_mtu (linkt));
Neale Rannsffd78d12018-02-09 06:05:16 -080098}
99
100void
Dave Barachba868bb2016-08-08 09:51:21 -0400101vnet_rewrite_for_sw_interface (vnet_main_t * vnm,
Neale Rannsb80c5362016-10-08 13:03:40 +0100102 vnet_link_t link_type,
Dave Barachba868bb2016-08-08 09:51:21 -0400103 u32 sw_if_index,
104 u32 node_index,
105 void *dst_address,
106 vnet_rewrite_header_t * rw,
107 u32 max_rewrite_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108{
Neale Rannsb80c5362016-10-08 13:03:40 +0100109
Dave Barachba868bb2016-08-08 09:51:21 -0400110 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
111 vnet_hw_interface_class_t *hc =
112 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100113 u8 *rewrite = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114
Ole Troand7231612018-06-07 10:17:57 +0200115 vnet_rewrite_init (vnm, sw_if_index, link_type, node_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100116 vnet_tx_node_index_for_sw_interface (vnm, sw_if_index),
117 rw);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
Neale Rannsb80c5362016-10-08 13:03:40 +0100119 ASSERT (hc->build_rewrite);
120 rewrite = hc->build_rewrite (vnm, sw_if_index, link_type, dst_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
Neale Rannsb80c5362016-10-08 13:03:40 +0100122 ASSERT (vec_len (rewrite) < max_rewrite_bytes);
123 vnet_rewrite_set_data_internal (rw, max_rewrite_bytes, rewrite,
124 vec_len (rewrite));
125 vec_free (rewrite);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126}
127
Dave Barachba868bb2016-08-08 09:51:21 -0400128void
129vnet_rewrite_for_tunnel (vnet_main_t * vnm,
130 u32 tx_sw_if_index,
131 u32 rewrite_node_index,
132 u32 post_rewrite_node_index,
133 vnet_rewrite_header_t * rw,
134 u8 * rewrite_data, u32 rewrite_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135{
Dave Barachba868bb2016-08-08 09:51:21 -0400136 ip_adjacency_t *adj = 0;
137 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 * Installed into vnet_buffer(b)->sw_if_index[VLIB_TX] e.g.
Dave Barachba868bb2016-08-08 09:51:21 -0400139 * by ip4_rewrite_inline. If the post-rewrite node injects into
140 * ipX-forward, this will be interpreted as a FIB number.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 */
Dave Barachba868bb2016-08-08 09:51:21 -0400142 rw->sw_if_index = tx_sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400143 rw->next_index = vlib_node_add_next (vnm->vlib_main, rewrite_node_index,
144 post_rewrite_node_index);
Neale Ranns1bce5a92018-10-30 06:34:25 -0700145 /* we can't know at this point */
146 rw->max_l3_packet_bytes = (u16) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
148 ASSERT (rewrite_length < sizeof (adj->rewrite_data));
149 /* Leave room for ethernet + VLAN tag */
Dave Barachba868bb2016-08-08 09:51:21 -0400150 vnet_rewrite_set_data_internal (rw, sizeof (adj->rewrite_data),
151 rewrite_data, rewrite_length);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152}
153
Dave Barachba868bb2016-08-08 09:51:21 -0400154void
155serialize_vnet_rewrite (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156{
Dave Barachba868bb2016-08-08 09:51:21 -0400157 vnet_rewrite_header_t *rw = va_arg (*va, vnet_rewrite_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 u32 max_data_bytes = va_arg (*va, u32);
Dave Barachba868bb2016-08-08 09:51:21 -0400159 u8 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
161 serialize_integer (m, rw->sw_if_index, sizeof (rw->sw_if_index));
162 serialize_integer (m, rw->data_bytes, sizeof (rw->data_bytes));
Dave Barachba868bb2016-08-08 09:51:21 -0400163 serialize_integer (m, rw->max_l3_packet_bytes,
164 sizeof (rw->max_l3_packet_bytes));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165 p = serialize_get (m, rw->data_bytes);
Dave Barachba868bb2016-08-08 09:51:21 -0400166 clib_memcpy (p, vnet_rewrite_get_data_internal (rw, max_data_bytes),
167 rw->data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168}
169
Dave Barachba868bb2016-08-08 09:51:21 -0400170void
171unserialize_vnet_rewrite (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172{
Dave Barachba868bb2016-08-08 09:51:21 -0400173 vnet_rewrite_header_t *rw = va_arg (*va, vnet_rewrite_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174 u32 max_data_bytes = va_arg (*va, u32);
Dave Barachba868bb2016-08-08 09:51:21 -0400175 u8 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
177 /* It is up to user to fill these in. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 rw->next_index = ~0;
179
180 unserialize_integer (m, &rw->sw_if_index, sizeof (rw->sw_if_index));
181 unserialize_integer (m, &rw->data_bytes, sizeof (rw->data_bytes));
Dave Barachba868bb2016-08-08 09:51:21 -0400182 unserialize_integer (m, &rw->max_l3_packet_bytes,
183 sizeof (rw->max_l3_packet_bytes));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 p = unserialize_get (m, rw->data_bytes);
Dave Barachba868bb2016-08-08 09:51:21 -0400185 clib_memcpy (vnet_rewrite_get_data_internal (rw, max_data_bytes), p,
186 rw->data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187}
Dave Barachba868bb2016-08-08 09:51:21 -0400188
Neale Rannsb80c5362016-10-08 13:03:40 +0100189u8 *
190vnet_build_rewrite_for_sw_interface (vnet_main_t * vnm,
191 u32 sw_if_index,
192 vnet_link_t link_type,
193 const void *dst_address)
194{
195 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
196 vnet_hw_interface_class_t *hc =
197 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
198
199 ASSERT (hc->build_rewrite);
200 return (hc->build_rewrite (vnm, sw_if_index, link_type, dst_address));
201}
202
203
204void
205vnet_update_adjacency_for_sw_interface (vnet_main_t * vnm,
206 u32 sw_if_index, u32 ai)
207{
208 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
209 vnet_hw_interface_class_t *hc =
210 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
211
212 ASSERT (hc->update_adjacency);
213 hc->update_adjacency (vnm, sw_if_index, ai);
214}
215
Dave Barachba868bb2016-08-08 09:51:21 -0400216/*
217 * fd.io coding-style-patch-verification: ON
218 *
219 * Local Variables:
220 * eval: (c-set-style "gnu")
221 * End:
222 */