blob: b5bc2e2c33ff9f3552403a7e42d5d0e5c997dc5a [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 * ip/ip4.h: ip4 main include file
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#ifndef included_ip_ip4_h
41#define included_ip_ip4_h
42
Ed Warnickecb9cada2015-12-08 15:45:58 -070043#include <vnet/ip/ip4_packet.h>
44#include <vnet/ip/lookup.h>
Neale Ranns59f71132020-04-08 12:19:38 +000045#include <vnet/ip/ip_interface.h>
Dave Barach2c0a4f42017-06-29 09:30:15 -040046#include <vnet/buffer.h>
Damjan Marion22311502016-10-28 20:30:15 +020047#include <vnet/feature/feature.h>
Pierre Pfister1bfd3722017-09-18 11:40:32 +020048#include <vnet/ip/icmp46_packet.h>
Neale Rannsc8352bc2018-08-29 10:23:58 -070049#include <vnet/util/throttle.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Neale Ranns32e1c012016-11-22 17:07:28 +000051typedef struct ip4_mfib_t
52{
53 /* Hash table for each prefix length mapping. */
54 uword *fib_entry_by_dst_address[65];
55
56 /* Table ID (hash key) for this FIB. */
57 u32 table_id;
58
59 /* Index into FIB vector. */
60 u32 index;
61} ip4_mfib_t;
62
Ed Warnickecb9cada2015-12-08 15:45:58 -070063struct ip4_main_t;
64
Ed Warnickecb9cada2015-12-08 15:45:58 -070065typedef void (ip4_add_del_interface_address_function_t)
66 (struct ip4_main_t * im,
67 uword opaque,
68 u32 sw_if_index,
69 ip4_address_t * address,
Dave Barachd7cb1b52016-12-09 09:52:16 -050070 u32 address_length, u32 if_address_index, u32 is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
Dave Barachd7cb1b52016-12-09 09:52:16 -050072typedef struct
73{
74 ip4_add_del_interface_address_function_t *function;
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 uword function_opaque;
76} ip4_add_del_interface_address_callback_t;
77
Neale Ranns57e53bb2019-05-29 13:58:43 +000078typedef void (ip4_enable_disable_interface_function_t)
79 (struct ip4_main_t * im, uword opaque, u32 sw_if_index, u32 is_enable);
80
81typedef struct
82{
83 ip4_enable_disable_interface_function_t *function;
84 uword function_opaque;
85} ip4_enable_disable_interface_callback_t;
86
Neale Ranns15002542017-09-10 04:39:11 -070087typedef void (ip4_table_bind_function_t)
88 (struct ip4_main_t * im,
89 uword opaque, u32 sw_if_index, u32 new_fib_index, u32 old_fib_index);
90
91typedef struct
92{
93 ip4_table_bind_function_t *function;
94 uword function_opaque;
95} ip4_table_bind_callback_t;
96
Dave Barach6f9bca22016-04-30 10:25:32 -040097/**
98 * @brief IPv4 main type.
99 *
100 * State of IPv4 VPP processing including:
101 * - FIBs
102 * - Feature indices used in feature topological sort
103 * - Feature node run time references
104 */
105
Dave Barachd7cb1b52016-12-09 09:52:16 -0500106typedef struct ip4_main_t
107{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 ip_lookup_main_t lookup_main;
109
Dave Barach6f9bca22016-04-30 10:25:32 -0400110 /** Vector of FIBs. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111 struct fib_table_t_ *fibs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
Neale Rannsa3af3372017-03-28 03:49:52 -0700113 /** Vector of MTries. */
114 struct ip4_fib_t_ *v4_fibs;
115
Neale Ranns32e1c012016-11-22 17:07:28 +0000116 /** Vector of MFIBs. */
117 struct mfib_table_t_ *mfibs;
118
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 u32 fib_masks[33];
120
Dave Barach6f9bca22016-04-30 10:25:32 -0400121 /** Table index indexed by software interface. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122 u32 *fib_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Neale Ranns32e1c012016-11-22 17:07:28 +0000124 /** Table index indexed by software interface. */
125 u32 *mfib_index_by_sw_if_index;
126
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100127 /* IP4 enabled count by software interface */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500128 u8 *ip_enabled_by_sw_if_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100129
Dave Barach6f9bca22016-04-30 10:25:32 -0400130 /** Hash table mapping table id to fib index.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 ID space is not necessarily dense; index space is dense. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 uword *fib_index_by_table_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Neale Ranns32e1c012016-11-22 17:07:28 +0000134 /** Hash table mapping table id to multicast fib index.
135 ID space is not necessarily dense; index space is dense. */
136 uword *mfib_index_by_table_id;
137
Dave Barach6f9bca22016-04-30 10:25:32 -0400138 /** Functions to call when interface address changes. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500139 ip4_add_del_interface_address_callback_t
140 * add_del_interface_address_callbacks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
Neale Ranns57e53bb2019-05-29 13:58:43 +0000142 /** Functions to call when interface becomes IPv4 enabled/disable. */
143 ip4_enable_disable_interface_callback_t
144 * enable_disable_interface_callbacks;
145
Neale Ranns15002542017-09-10 04:39:11 -0700146 /** Functions to call when interface to table biding changes. */
147 ip4_table_bind_callback_t *table_bind_callbacks;
148
Dave Barach6f9bca22016-04-30 10:25:32 -0400149 /** Template used to generate IP4 ARP packets. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 vlib_packet_template_t ip4_arp_request_packet_template;
151
Dave Barach6f9bca22016-04-30 10:25:32 -0400152 /** Seed for Jenkins hash used to compute ip4 flow hash. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 u32 flow_hash_seed;
154
Dave Barach6f9bca22016-04-30 10:25:32 -0400155 /** @brief Template information for VPP generated packets */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500156 struct
157 {
Dave Barach6f9bca22016-04-30 10:25:32 -0400158 /** TTL to use for host generated packets. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 u8 ttl;
160
Dave Barach6f9bca22016-04-30 10:25:32 -0400161 /** TOS byte to use for host generated packets. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 u8 tos;
163
164 u8 pad[2];
165 } host_config;
Neale Ranns1ec36522017-11-29 05:20:37 -0800166
167 /** Heapsize for the Mtries */
168 uword mtrie_heap_size;
169
170 /** The memory heap for the mtries */
171 void *mtrie_mheap;
Dave Barach49433ad2018-08-08 17:59:03 -0400172
173 /** ARP throttling */
Neale Rannsc8352bc2018-08-29 10:23:58 -0700174 throttle_t arp_throttle;
Dave Barach49433ad2018-08-08 17:59:03 -0400175
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176} ip4_main_t;
177
Dave Barach49433ad2018-08-08 17:59:03 -0400178#define ARP_THROTTLE_BITS (512)
179
Dave Barach6f9bca22016-04-30 10:25:32 -0400180/** Global ip4 main structure. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181extern ip4_main_t ip4_main;
Florin Corasfa2a3162020-02-11 03:01:19 +0000182extern char *ip4_error_strings[];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700184/** Global ip4 input node. Errors get attached to ip4 input node. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185extern vlib_node_registration_t ip4_input_node;
186extern vlib_node_registration_t ip4_lookup_node;
Neale Ranns32e1c012016-11-22 17:07:28 +0000187extern vlib_node_registration_t ip4_local_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188extern vlib_node_registration_t ip4_rewrite_node;
Neale Ranns32e1c012016-11-22 17:07:28 +0000189extern vlib_node_registration_t ip4_rewrite_mcast_node;
Pierre Pfister0febaf12016-06-08 12:23:21 +0100190extern vlib_node_registration_t ip4_rewrite_local_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191extern vlib_node_registration_t ip4_arp_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100192extern vlib_node_registration_t ip4_glean_node;
193extern vlib_node_registration_t ip4_midchain_node;
Jawahar Santosh Gundapaneni62ad2aa2020-03-19 16:42:28 -0400194extern vlib_node_registration_t ip4_punt_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
196always_inline uword
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100197ip4_destination_matches_route (const ip4_main_t * im,
198 const ip4_address_t * key,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500199 const ip4_address_t * dest, uword dest_length)
200{
201 return 0 == ((key->data_u32 ^ dest->data_u32) & im->fib_masks[dest_length]);
202}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203
204always_inline uword
205ip4_destination_matches_interface (ip4_main_t * im,
206 ip4_address_t * key,
207 ip_interface_address_t * ia)
208{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500209 ip4_address_t *a = ip_interface_address_get_address (&im->lookup_main, ia);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 return ip4_destination_matches_route (im, key, a, ia->address_length);
211}
212
Pierre Pfisterd076f192016-06-22 12:58:30 +0100213always_inline int
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100214ip4_src_address_for_packet (ip_lookup_main_t * lm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500215 u32 sw_if_index, ip4_address_t * src)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500217 u32 if_add_index = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
218 if (PREDICT_TRUE (if_add_index != ~0))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100219 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500220 ip_interface_address_t *if_add =
221 pool_elt_at_index (lm->if_address_pool, if_add_index);
222 ip4_address_t *if_ip = ip_interface_address_get_address (lm, if_add);
223 *src = *if_ip;
224 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100225 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500226 else
227 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500228 src->as_u32 = 0;
229 }
230 return (!0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231}
232
233/* Find interface address which matches destination. */
234always_inline ip4_address_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500235ip4_interface_address_matching_destination (ip4_main_t * im,
Neale Rannscbe25aa2019-09-30 10:53:31 +0000236 const ip4_address_t * dst,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500237 u32 sw_if_index,
238 ip_interface_address_t **
239 result_ia)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500241 ip_lookup_main_t *lm = &im->lookup_main;
242 ip_interface_address_t *ia;
243 ip4_address_t *result = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
Dave Barachd7cb1b52016-12-09 09:52:16 -0500245 /* *INDENT-OFF* */
Dave Barach75fc8542016-10-11 16:16:02 -0400246 foreach_ip_interface_address (lm, ia, sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 1 /* honor unnumbered */,
248 ({
249 ip4_address_t * a = ip_interface_address_get_address (lm, ia);
250 if (ip4_destination_matches_route (im, dst, a, ia->address_length))
251 {
252 result = a;
253 break;
254 }
255 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500256 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257 if (result_ia)
258 *result_ia = result ? ia : 0;
259 return result;
260}
261
Dave Barachd7cb1b52016-12-09 09:52:16 -0500262ip4_address_t *ip4_interface_first_address (ip4_main_t * im, u32 sw_if_index,
263 ip_interface_address_t **
264 result_ia);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100265
Dave Barachd7cb1b52016-12-09 09:52:16 -0500266clib_error_t *ip4_add_del_interface_address (vlib_main_t * vm,
267 u32 sw_if_index,
268 ip4_address_t * address,
269 u32 address_length, u32 is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
Neale Ranns1855b8e2018-07-11 10:31:26 -0700271void ip4_directed_broadcast (u32 sw_if_index, u8 enable);
272
Dave Barachd7cb1b52016-12-09 09:52:16 -0500273void ip4_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100275int ip4_address_compare (ip4_address_t * a1, ip4_address_t * a2);
Dave Barach203c6322016-06-26 10:29:03 -0400276
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277uword
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278ip4_udp_register_listener (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279 u16 dst_port, u32 next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280
Dave Barachd7cb1b52016-12-09 09:52:16 -0500281u16 ip4_tcp_udp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0,
282 ip4_header_t * ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
284void ip4_register_protocol (u32 protocol, u32 node_index);
Neale Rannsb538dd82019-05-21 06:54:54 -0700285void ip4_unregister_protocol (u32 protocolx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
287serialize_function_t serialize_vnet_ip4_main, unserialize_vnet_ip4_main;
288
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289int vnet_set_ip4_flow_hash (u32 table_id,
290 flow_hash_config_t flow_hash_config);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Dave Barach75fc8542016-10-11 16:16:02 -0400292int vnet_set_ip4_classify_intfc (vlib_main_t * vm, u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 u32 table_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
Neale Rannsd91c1db2017-07-31 02:30:50 -0700295void ip4_punt_policer_add_del (u8 is_add, u32 policer_index);
296
297void ip4_punt_redirect_add (u32 rx_sw_if_index,
298 u32 tx_sw_if_index, ip46_address_t * nh);
Neale Ranns92207752019-06-03 13:21:40 +0000299void ip4_punt_redirect_add_paths (u32 rx_sw_if_index,
300 fib_route_path_t * paths);
301
Neale Rannsd91c1db2017-07-31 02:30:50 -0700302void ip4_punt_redirect_del (u32 rx_sw_if_index);
303
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304/* Compute flow hash. We'll use it to select which adjacency to use for this
305 flow. And other things. */
306always_inline u32
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100307ip4_compute_flow_hash (const ip4_header_t * ip,
308 flow_hash_config_t flow_hash_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500310 tcp_header_t *tcp = (void *) (ip + 1);
311 u32 a, b, c, t1, t2;
312 uword is_tcp_udp = (ip->protocol == IP_PROTOCOL_TCP
313 || ip->protocol == IP_PROTOCOL_UDP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315 t1 = (flow_hash_config & IP_FLOW_HASH_SRC_ADDR)
316 ? ip->src_address.data_u32 : 0;
317 t2 = (flow_hash_config & IP_FLOW_HASH_DST_ADDR)
318 ? ip->dst_address.data_u32 : 0;
Dave Barach75fc8542016-10-11 16:16:02 -0400319
Dave Barachd7cb1b52016-12-09 09:52:16 -0500320 a = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ? t2 : t1;
321 b = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ? t1 : t2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 t1 = is_tcp_udp ? tcp->src : 0;
324 t2 = is_tcp_udp ? tcp->dst : 0;
Dave Barach75fc8542016-10-11 16:16:02 -0400325
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 t1 = (flow_hash_config & IP_FLOW_HASH_SRC_PORT) ? t1 : 0;
327 t2 = (flow_hash_config & IP_FLOW_HASH_DST_PORT) ? t2 : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328
Mohsin Kazmi2af0e3a2018-11-20 11:11:12 +0100329 if (flow_hash_config & IP_FLOW_HASH_SYMMETRIC)
330 {
331 if (b < a)
332 {
333 c = a;
334 a = b;
335 b = c;
336 }
337 if (t2 < t1)
338 {
339 t2 += t1;
340 t1 = t2 - t1;
341 t2 = t2 - t1;
342 }
343 }
344
345 b ^= (flow_hash_config & IP_FLOW_HASH_PROTO) ? ip->protocol : 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346 c = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ?
347 (t1 << 16) | t2 : (t2 << 16) | t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 hash_v3_mix32 (a, b, c);
350 hash_v3_finalize32 (a, b, c);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352 return c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353}
354
John Lo37682e12016-11-30 12:51:39 -0500355void
356ip4_forward_next_trace (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 vlib_node_runtime_t * node,
358 vlib_frame_t * frame,
359 vlib_rx_or_tx_t which_adj_index);
John Lo37682e12016-11-30 12:51:39 -0500360
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361u8 *format_ip4_forward_next_trace (u8 * s, va_list * args);
John Lo37682e12016-11-30 12:51:39 -0500362
363u32 ip4_tcp_udp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0);
364
Dave Barach68b0fb02017-02-28 15:15:56 -0500365#define IP_DF 0x4000 /* don't fragment */
366
Dave Barach68b0fb02017-02-28 15:15:56 -0500367always_inline void *
Florin Corasab57edb2020-04-07 03:46:07 +0000368vlib_buffer_push_ip4_custom (vlib_main_t * vm, vlib_buffer_t * b,
369 ip4_address_t * src, ip4_address_t * dst,
370 int proto, u8 csum_offload, u8 is_df)
Dave Barach68b0fb02017-02-28 15:15:56 -0500371{
372 ip4_header_t *ih;
373
374 /* make some room */
375 ih = vlib_buffer_push_uninit (b, sizeof (ip4_header_t));
376
377 ih->ip_version_and_header_length = 0x45;
378 ih->tos = 0;
379 ih->length = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b));
380
381 /* No fragments */
Florin Corasab57edb2020-04-07 03:46:07 +0000382 ih->flags_and_fragment_offset = is_df ? clib_host_to_net_u16 (IP_DF) : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500383 ih->ttl = 255;
384 ih->protocol = proto;
385 ih->src_address.as_u32 = src->as_u32;
386 ih->dst_address.as_u32 = dst->as_u32;
387
Florin Coras757de982019-11-26 18:43:25 -0800388 vnet_buffer (b)->l3_hdr_offset = (u8 *) ih - b->data;
389 b->flags |= VNET_BUFFER_F_IS_IP4 | VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
390
Dave Barachc4423222017-07-19 08:48:09 -0400391 /* Offload ip4 header checksum generation */
Florin Corasfdbc3822017-07-27 00:34:12 -0700392 if (csum_offload)
Dave Barachc4423222017-07-19 08:48:09 -0400393 {
394 ih->checksum = 0;
Florin Coras757de982019-11-26 18:43:25 -0800395 b->flags |= VNET_BUFFER_F_OFFLOAD_IP_CKSUM;
Dave Barachc4423222017-07-19 08:48:09 -0400396 }
397 else
398 ih->checksum = ip4_header_checksum (ih);
399
Dave Barach68b0fb02017-02-28 15:15:56 -0500400 return ih;
401}
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000402
Florin Corasab57edb2020-04-07 03:46:07 +0000403/**
404 * Push IPv4 header to buffer
405 *
406 * This does not support fragmentation.
407 *
408 * @param vm - vlib_main
409 * @param b - buffer to write the header to
410 * @param src - source IP
411 * @param dst - destination IP
412 * @param prot - payload proto
413 *
414 * @return - pointer to start of IP header
415 */
416always_inline void *
417vlib_buffer_push_ip4 (vlib_main_t * vm, vlib_buffer_t * b,
418 ip4_address_t * src, ip4_address_t * dst, int proto,
419 u8 csum_offload)
420{
421 return vlib_buffer_push_ip4_custom (vm, b, src, dst, proto, csum_offload,
422 1 /* is_df */ );
423}
424
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000425always_inline u32
426vlib_buffer_get_ip4_fib_index (vlib_buffer_t * b)
427{
428 u32 fib_index, sw_if_index;
429 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX];
430 fib_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
431 return (fib_index == (u32) ~ 0) ?
432 vec_elt (ip4_main.fib_index_by_sw_if_index, sw_if_index) : fib_index;
433}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434#endif /* included_ip_ip4_h */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500435
436/*
437 * fd.io coding-style-patch-verification: ON
438 *
439 * Local Variables:
440 * eval: (c-set-style "gnu")
441 * End:
442 */