Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * mpls_output.c: MPLS Adj rewrite |
| 3 | * |
| 4 | * Copyright (c) 2012-2014 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vlib/vlib.h> |
| 19 | #include <vnet/pg/pg.h> |
Neale Ranns | 1357f3b | 2016-10-16 12:01:42 -0700 | [diff] [blame] | 20 | #include <vnet/ip/ip.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 21 | #include <vnet/mpls/mpls.h> |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 22 | #include <vnet/ip/ip_frag.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 23 | |
| 24 | typedef struct { |
| 25 | /* Adjacency taken. */ |
| 26 | u32 adj_index; |
| 27 | u32 flow_hash; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 28 | } mpls_output_trace_t; |
| 29 | |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 30 | typedef enum { |
| 31 | MPLS_OUTPUT_MODE, |
| 32 | MPLS_OUTPUT_MIDCHAIN_MODE |
| 33 | }mpls_output_mode_t; |
| 34 | |
Neale Ranns | 696e88d | 2017-03-16 07:34:55 -0400 | [diff] [blame] | 35 | #define foreach_mpls_output_next \ |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 36 | _(DROP, "error-drop") \ |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 37 | _(FRAG, "mpls-frag") |
Neale Ranns | 696e88d | 2017-03-16 07:34:55 -0400 | [diff] [blame] | 38 | |
| 39 | typedef enum { |
| 40 | #define _(s,n) MPLS_OUTPUT_NEXT_##s, |
| 41 | foreach_mpls_output_next |
| 42 | #undef _ |
| 43 | MPLS_OUTPUT_N_NEXT, |
| 44 | } mpls_output_next_t; |
| 45 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 46 | static u8 * |
| 47 | format_mpls_output_trace (u8 * s, va_list * args) |
| 48 | { |
| 49 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 50 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 51 | mpls_output_trace_t * t = va_arg (*args, mpls_output_trace_t *); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 52 | |
| 53 | s = format (s, "adj-idx %d : %U flow hash: 0x%08x", |
| 54 | t->adj_index, |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 55 | format_ip_adjacency, t->adj_index, FORMAT_IP_ADJACENCY_NONE, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 56 | t->flow_hash); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 57 | return s; |
| 58 | } |
| 59 | |
| 60 | static inline uword |
| 61 | mpls_output_inline (vlib_main_t * vm, |
| 62 | vlib_node_runtime_t * node, |
John Lo | aeb06f4 | 2016-10-15 17:45:35 -0400 | [diff] [blame] | 63 | vlib_frame_t * from_frame, |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 64 | mpls_output_mode_t mode) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 65 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 66 | u32 n_left_from, next_index, * from, * to_next, thread_index; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 67 | vlib_node_runtime_t * error_node; |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 68 | u32 n_left_to_next; |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 69 | mpls_main_t *mm; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 70 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 71 | thread_index = vlib_get_thread_index(); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 72 | error_node = vlib_node_get_runtime (vm, mpls_output_node.index); |
| 73 | from = vlib_frame_vector_args (from_frame); |
| 74 | n_left_from = from_frame->n_vectors; |
| 75 | next_index = node->cached_next_index; |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 76 | mm = &mpls_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 77 | |
| 78 | while (n_left_from > 0) |
| 79 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 80 | vlib_get_next_frame (vm, node, next_index, |
| 81 | to_next, n_left_to_next); |
| 82 | |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 83 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 84 | { |
| 85 | ip_adjacency_t * adj0; |
| 86 | mpls_unicast_header_t *hdr0; |
| 87 | vlib_buffer_t * p0; |
Benoît Ganne | c257e07 | 2019-06-17 14:42:47 +0200 | [diff] [blame] | 88 | u32 pi0, adj_index0, next0, error0; |
| 89 | word rw_len0; |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 90 | |
| 91 | ip_adjacency_t * adj1; |
| 92 | mpls_unicast_header_t *hdr1; |
| 93 | vlib_buffer_t * p1; |
Benoît Ganne | c257e07 | 2019-06-17 14:42:47 +0200 | [diff] [blame] | 94 | u32 pi1, adj_index1, next1, error1; |
| 95 | word rw_len1; |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 96 | |
| 97 | /* Prefetch next iteration. */ |
| 98 | { |
| 99 | vlib_buffer_t * p2, * p3; |
| 100 | |
| 101 | p2 = vlib_get_buffer (vm, from[2]); |
| 102 | p3 = vlib_get_buffer (vm, from[3]); |
| 103 | |
| 104 | vlib_prefetch_buffer_header (p2, STORE); |
| 105 | vlib_prefetch_buffer_header (p3, STORE); |
| 106 | |
| 107 | CLIB_PREFETCH (p2->data, sizeof (hdr0[0]), STORE); |
| 108 | CLIB_PREFETCH (p3->data, sizeof (hdr1[0]), STORE); |
| 109 | } |
| 110 | |
| 111 | pi0 = to_next[0] = from[0]; |
| 112 | pi1 = to_next[1] = from[1]; |
| 113 | |
| 114 | from += 2; |
| 115 | n_left_from -= 2; |
| 116 | to_next += 2; |
| 117 | n_left_to_next -= 2; |
| 118 | |
| 119 | p0 = vlib_get_buffer (vm, pi0); |
| 120 | p1 = vlib_get_buffer (vm, pi1); |
| 121 | |
| 122 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 123 | adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX]; |
| 124 | |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 125 | adj0 = adj_get(adj_index0); |
| 126 | adj1 = adj_get(adj_index1); |
| 127 | hdr0 = vlib_buffer_get_current (p0); |
| 128 | hdr1 = vlib_buffer_get_current (p1); |
| 129 | |
| 130 | /* Guess we are only writing on simple Ethernet header. */ |
| 131 | vnet_rewrite_two_headers (adj0[0], adj1[0], hdr0, hdr1, |
| 132 | sizeof (ethernet_header_t)); |
| 133 | |
| 134 | /* Update packet buffer attributes/set output interface. */ |
| 135 | rw_len0 = adj0[0].rewrite_header.data_bytes; |
| 136 | rw_len1 = adj1[0].rewrite_header.data_bytes; |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 137 | vnet_buffer (p0)->mpls.save_rewrite_length = rw_len0; |
| 138 | vnet_buffer (p1)->mpls.save_rewrite_length = rw_len1; |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 139 | |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 140 | /* Bump the adj counters for packet and bytes */ |
| 141 | vlib_increment_combined_counter |
| 142 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 143 | thread_index, |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 144 | adj_index0, |
| 145 | 1, |
| 146 | vlib_buffer_length_in_chain (vm, p0) + rw_len0); |
| 147 | vlib_increment_combined_counter |
| 148 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 149 | thread_index, |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 150 | adj_index1, |
| 151 | 1, |
| 152 | vlib_buffer_length_in_chain (vm, p1) + rw_len1); |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 153 | |
| 154 | /* Check MTU of outgoing interface. */ |
| 155 | if (PREDICT_TRUE(vlib_buffer_length_in_chain (vm, p0) <= |
| 156 | adj0[0].rewrite_header.max_l3_packet_bytes)) |
| 157 | { |
Zhiyong Yang | 734d430 | 2019-05-29 22:38:19 -0400 | [diff] [blame] | 158 | vlib_buffer_advance(p0, -rw_len0); |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 159 | |
| 160 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = |
| 161 | adj0[0].rewrite_header.sw_if_index; |
| 162 | next0 = adj0[0].rewrite_header.next_index; |
| 163 | error0 = IP4_ERROR_NONE; |
| 164 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 165 | if (PREDICT_FALSE(adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 166 | vnet_feature_arc_start (mm->output_feature_arc_index, |
| 167 | adj0[0].rewrite_header.sw_if_index, |
| 168 | &next0, p0); |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 169 | } |
| 170 | else |
| 171 | { |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 172 | error0 = IP4_ERROR_MTU_EXCEEDED; |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 173 | next0 = MPLS_OUTPUT_NEXT_FRAG; |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 174 | vlib_node_increment_counter (vm, mpls_output_node.index, |
| 175 | MPLS_ERROR_PKTS_NEED_FRAG, |
| 176 | 1); |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 177 | } |
| 178 | if (PREDICT_TRUE(vlib_buffer_length_in_chain (vm, p1) <= |
| 179 | adj1[0].rewrite_header.max_l3_packet_bytes)) |
| 180 | { |
Zhiyong Yang | 734d430 | 2019-05-29 22:38:19 -0400 | [diff] [blame] | 181 | vlib_buffer_advance(p1, -rw_len1); |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 182 | |
| 183 | vnet_buffer (p1)->sw_if_index[VLIB_TX] = |
| 184 | adj1[0].rewrite_header.sw_if_index; |
| 185 | next1 = adj1[0].rewrite_header.next_index; |
| 186 | error1 = IP4_ERROR_NONE; |
| 187 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 188 | if (PREDICT_FALSE(adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 189 | vnet_feature_arc_start (mm->output_feature_arc_index, |
| 190 | adj1[0].rewrite_header.sw_if_index, |
| 191 | &next1, p1); |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 192 | } |
| 193 | else |
| 194 | { |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 195 | error1 = IP4_ERROR_MTU_EXCEEDED; |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 196 | next1 = MPLS_OUTPUT_NEXT_FRAG; |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 197 | vlib_node_increment_counter (vm, mpls_output_node.index, |
| 198 | MPLS_ERROR_PKTS_NEED_FRAG, |
| 199 | 1); |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 200 | } |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 201 | if (mode == MPLS_OUTPUT_MIDCHAIN_MODE) |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 202 | { |
Neale Ranns | db14f5a | 2018-01-29 10:43:33 -0800 | [diff] [blame] | 203 | adj0->sub_type.midchain.fixup_func |
| 204 | (vm, adj0, p0, |
| 205 | adj0->sub_type.midchain.fixup_data); |
| 206 | adj1->sub_type.midchain.fixup_func |
| 207 | (vm, adj1, p1, |
| 208 | adj1->sub_type.midchain.fixup_data); |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 209 | } |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 210 | |
| 211 | p0->error = error_node->errors[error0]; |
| 212 | p1->error = error_node->errors[error1]; |
| 213 | |
| 214 | if (PREDICT_FALSE(p0->flags & VLIB_BUFFER_IS_TRACED)) |
| 215 | { |
| 216 | mpls_output_trace_t *tr = vlib_add_trace (vm, node, |
| 217 | p0, sizeof (*tr)); |
| 218 | tr->adj_index = vnet_buffer(p0)->ip.adj_index[VLIB_TX]; |
| 219 | tr->flow_hash = vnet_buffer(p0)->ip.flow_hash; |
| 220 | } |
| 221 | if (PREDICT_FALSE(p1->flags & VLIB_BUFFER_IS_TRACED)) |
| 222 | { |
| 223 | mpls_output_trace_t *tr = vlib_add_trace (vm, node, |
| 224 | p1, sizeof (*tr)); |
| 225 | tr->adj_index = vnet_buffer(p1)->ip.adj_index[VLIB_TX]; |
| 226 | tr->flow_hash = vnet_buffer(p1)->ip.flow_hash; |
| 227 | } |
| 228 | |
| 229 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 230 | to_next, n_left_to_next, |
| 231 | pi0, pi1, next0, next1); |
| 232 | } |
| 233 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 234 | while (n_left_from > 0 && n_left_to_next > 0) |
| 235 | { |
| 236 | ip_adjacency_t * adj0; |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 237 | mpls_unicast_header_t *hdr0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 238 | vlib_buffer_t * p0; |
Benoît Ganne | c257e07 | 2019-06-17 14:42:47 +0200 | [diff] [blame] | 239 | u32 pi0, adj_index0, next0, error0; |
| 240 | word rw_len0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 241 | |
| 242 | pi0 = to_next[0] = from[0]; |
| 243 | |
| 244 | p0 = vlib_get_buffer (vm, pi0); |
| 245 | |
| 246 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 247 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 248 | adj0 = adj_get(adj_index0); |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 249 | hdr0 = vlib_buffer_get_current (p0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 250 | |
| 251 | /* Guess we are only writing on simple Ethernet header. */ |
| 252 | vnet_rewrite_one_header (adj0[0], hdr0, |
| 253 | sizeof (ethernet_header_t)); |
| 254 | |
| 255 | /* Update packet buffer attributes/set output interface. */ |
| 256 | rw_len0 = adj0[0].rewrite_header.data_bytes; |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 257 | vnet_buffer (p0)->mpls.save_rewrite_length = rw_len0; |
| 258 | |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 259 | vlib_increment_combined_counter |
| 260 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 261 | thread_index, |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 262 | adj_index0, |
| 263 | 1, |
| 264 | vlib_buffer_length_in_chain (vm, p0) + rw_len0); |
Zhiyong Yang | 734d430 | 2019-05-29 22:38:19 -0400 | [diff] [blame] | 265 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 266 | /* Check MTU of outgoing interface. */ |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 267 | if (PREDICT_TRUE(vlib_buffer_length_in_chain (vm, p0) <= |
| 268 | adj0[0].rewrite_header.max_l3_packet_bytes)) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 269 | { |
Zhiyong Yang | 734d430 | 2019-05-29 22:38:19 -0400 | [diff] [blame] | 270 | vlib_buffer_advance(p0, -rw_len0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 271 | |
| 272 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = |
| 273 | adj0[0].rewrite_header.sw_if_index; |
| 274 | next0 = adj0[0].rewrite_header.next_index; |
Neale Ranns | 9ca18c6 | 2016-12-10 21:08:09 +0000 | [diff] [blame] | 275 | error0 = IP4_ERROR_NONE; |
John Lo | aeb06f4 | 2016-10-15 17:45:35 -0400 | [diff] [blame] | 276 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 277 | if (PREDICT_FALSE(adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 278 | vnet_feature_arc_start (mm->output_feature_arc_index, |
| 279 | adj0[0].rewrite_header.sw_if_index, |
| 280 | &next0, p0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 281 | } |
| 282 | else |
| 283 | { |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 284 | error0 = IP4_ERROR_MTU_EXCEEDED; |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 285 | next0 = MPLS_OUTPUT_NEXT_FRAG; |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 286 | vlib_node_increment_counter (vm, mpls_output_node.index, |
| 287 | MPLS_ERROR_PKTS_NEED_FRAG, |
| 288 | 1); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 289 | } |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 290 | if (mode == MPLS_OUTPUT_MIDCHAIN_MODE) |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 291 | { |
Neale Ranns | db14f5a | 2018-01-29 10:43:33 -0800 | [diff] [blame] | 292 | adj0->sub_type.midchain.fixup_func |
| 293 | (vm, adj0, p0, |
| 294 | adj0->sub_type.midchain.fixup_data); |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | p0->error = error_node->errors[error0]; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 298 | |
| 299 | from += 1; |
| 300 | n_left_from -= 1; |
| 301 | to_next += 1; |
| 302 | n_left_to_next -= 1; |
| 303 | |
| 304 | if (PREDICT_FALSE(p0->flags & VLIB_BUFFER_IS_TRACED)) |
| 305 | { |
| 306 | mpls_output_trace_t *tr = vlib_add_trace (vm, node, |
| 307 | p0, sizeof (*tr)); |
| 308 | tr->adj_index = vnet_buffer(p0)->ip.adj_index[VLIB_TX]; |
| 309 | tr->flow_hash = vnet_buffer(p0)->ip.flow_hash; |
| 310 | } |
| 311 | |
| 312 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 313 | to_next, n_left_to_next, |
| 314 | pi0, next0); |
| 315 | } |
| 316 | |
| 317 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 318 | } |
| 319 | vlib_node_increment_counter (vm, mpls_output_node.index, |
| 320 | MPLS_ERROR_PKTS_ENCAP, |
| 321 | from_frame->n_vectors); |
| 322 | |
| 323 | return from_frame->n_vectors; |
| 324 | } |
| 325 | |
| 326 | static char * mpls_error_strings[] = { |
| 327 | #define mpls_error(n,s) s, |
| 328 | #include "error.def" |
| 329 | #undef mpls_error |
| 330 | }; |
| 331 | |
Filip Tehlar | 17fcd98 | 2019-03-05 04:32:11 -0800 | [diff] [blame] | 332 | VLIB_NODE_FN (mpls_output_node) (vlib_main_t * vm, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 333 | vlib_node_runtime_t * node, |
| 334 | vlib_frame_t * from_frame) |
| 335 | { |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 336 | return (mpls_output_inline(vm, node, from_frame, MPLS_OUTPUT_MODE)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | VLIB_REGISTER_NODE (mpls_output_node) = { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 340 | .name = "mpls-output", |
| 341 | /* Takes a vector of packets. */ |
| 342 | .vector_size = sizeof (u32), |
| 343 | .n_errors = MPLS_N_ERROR, |
| 344 | .error_strings = mpls_error_strings, |
| 345 | |
| 346 | .n_next_nodes = MPLS_OUTPUT_N_NEXT, |
| 347 | .next_nodes = { |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 348 | [MPLS_OUTPUT_NEXT_DROP] = "mpls-drop", |
| 349 | [MPLS_OUTPUT_NEXT_FRAG] = "mpls-frag", |
| 350 | }, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 351 | .format_trace = format_mpls_output_trace, |
| 352 | }; |
| 353 | |
Filip Tehlar | 17fcd98 | 2019-03-05 04:32:11 -0800 | [diff] [blame] | 354 | VLIB_NODE_FN (mpls_midchain_node) (vlib_main_t * vm, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 355 | vlib_node_runtime_t * node, |
| 356 | vlib_frame_t * from_frame) |
| 357 | { |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 358 | return (mpls_output_inline(vm, node, from_frame, MPLS_OUTPUT_MIDCHAIN_MODE)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | VLIB_REGISTER_NODE (mpls_midchain_node) = { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 362 | .name = "mpls-midchain", |
| 363 | .vector_size = sizeof (u32), |
| 364 | |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 365 | .n_errors = MPLS_N_ERROR, |
| 366 | .error_strings = mpls_error_strings, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 367 | |
| 368 | .sibling_of = "mpls-output", |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 369 | .format_trace = format_mpls_output_trace, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 370 | }; |
| 371 | |
Ole Troan | eb284a1 | 2019-10-09 13:33:19 +0200 | [diff] [blame^] | 372 | static char *mpls_frag_error_strings[] = { |
| 373 | #define _(sym,string) string, |
| 374 | foreach_ip_frag_error |
| 375 | #undef _ |
| 376 | }; |
| 377 | |
| 378 | typedef struct mpls_frag_trace_t_ |
| 379 | { |
| 380 | u16 pkt_size; |
| 381 | u16 mtu; |
| 382 | } mpls_frag_trace_t; |
| 383 | |
| 384 | typedef enum |
| 385 | { |
| 386 | MPLS_FRAG_NEXT_REWRITE, |
| 387 | MPLS_FRAG_NEXT_REWRITE_MIDCHAIN, |
| 388 | MPLS_FRAG_NEXT_ICMP_ERROR, |
| 389 | MPLS_FRAG_NEXT_DROP, |
| 390 | MPLS_FRAG_N_NEXT, |
| 391 | } mpls_frag_next_t; |
| 392 | |
| 393 | static uword |
| 394 | mpls_frag (vlib_main_t * vm, |
| 395 | vlib_node_runtime_t * node, |
| 396 | vlib_frame_t * frame) |
| 397 | { |
| 398 | u32 n_left_from, next_index, * from, * to_next, n_left_to_next, *frags; |
| 399 | vlib_node_runtime_t * error_node; |
| 400 | |
| 401 | error_node = vlib_node_get_runtime (vm, mpls_output_node.index); |
| 402 | from = vlib_frame_vector_args (frame); |
| 403 | n_left_from = frame->n_vectors; |
| 404 | next_index = node->cached_next_index; |
| 405 | frags = NULL; |
| 406 | |
| 407 | while (n_left_from > 0) |
| 408 | { |
| 409 | vlib_get_next_frame (vm, node, next_index, |
| 410 | to_next, n_left_to_next); |
| 411 | |
| 412 | while (n_left_from > 0 && n_left_to_next > 0) |
| 413 | { |
| 414 | ip_adjacency_t * adj0; |
| 415 | vlib_buffer_t * p0; |
| 416 | mpls_frag_next_t next0; |
| 417 | u32 pi0, adj_index0; |
| 418 | ip_frag_error_t error0 = IP_FRAG_ERROR_NONE; |
| 419 | i16 encap_size; |
| 420 | u8 is_ip4; |
| 421 | |
| 422 | pi0 = to_next[0] = from[0]; |
| 423 | p0 = vlib_get_buffer (vm, pi0); |
| 424 | from += 1; |
| 425 | n_left_from -= 1; |
| 426 | is_ip4 = vnet_buffer (p0)->mpls.pyld_proto == DPO_PROTO_IP4; |
| 427 | |
| 428 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 429 | adj0 = adj_get(adj_index0); |
| 430 | |
| 431 | /* the size of the MPLS stack */ |
| 432 | encap_size = vnet_buffer(p0)->l3_hdr_offset - p0->current_data; |
| 433 | |
| 434 | /* IP fragmentation */ |
| 435 | if (is_ip4) |
| 436 | error0 = ip4_frag_do_fragment (vm, pi0, |
| 437 | adj0->rewrite_header.max_l3_packet_bytes, |
| 438 | encap_size, &frags); |
| 439 | else |
| 440 | error0 = ip6_frag_do_fragment (vm, pi0, |
| 441 | adj0->rewrite_header.max_l3_packet_bytes, |
| 442 | encap_size, &frags); |
| 443 | |
| 444 | if (PREDICT_FALSE (p0->flags & VLIB_BUFFER_IS_TRACED)) |
| 445 | { |
| 446 | mpls_frag_trace_t *tr = |
| 447 | vlib_add_trace (vm, node, p0, sizeof (*tr)); |
| 448 | tr->mtu = adj0->rewrite_header.max_l3_packet_bytes; |
| 449 | tr->pkt_size = vlib_buffer_length_in_chain(vm, p0); |
| 450 | } |
| 451 | |
| 452 | if (PREDICT_TRUE(error0 == IP_FRAG_ERROR_NONE)) |
| 453 | { |
| 454 | /* Free original buffer chain */ |
| 455 | vlib_buffer_free_one (vm, pi0); /* Free original packet */ |
| 456 | next0 = (IP_LOOKUP_NEXT_MIDCHAIN == adj0->lookup_next_index ? |
| 457 | MPLS_FRAG_NEXT_REWRITE_MIDCHAIN : |
| 458 | MPLS_FRAG_NEXT_REWRITE); |
| 459 | } |
| 460 | else if (is_ip4 && error0 == IP_FRAG_ERROR_DONT_FRAGMENT_SET) |
| 461 | { |
| 462 | icmp4_error_set_vnet_buffer ( |
| 463 | p0, ICMP4_destination_unreachable, |
| 464 | ICMP4_destination_unreachable_fragmentation_needed_and_dont_fragment_set, |
| 465 | vnet_buffer (p0)->ip_frag.mtu); |
| 466 | next0 = MPLS_FRAG_NEXT_ICMP_ERROR; |
| 467 | } |
| 468 | else |
| 469 | { |
| 470 | vlib_error_count (vm, next_index, error0, 1); |
| 471 | vec_add1 (frags, pi0); /* Get rid of the original buffer */ |
| 472 | next0 = MPLS_FRAG_NEXT_DROP; |
| 473 | } |
| 474 | |
| 475 | /* Send fragments that were added in the frame */ |
| 476 | u32 *frag_from, frag_left; |
| 477 | |
| 478 | frag_from = frags; |
| 479 | frag_left = vec_len (frags); |
| 480 | |
| 481 | while (frag_left > 0) |
| 482 | { |
| 483 | while (frag_left > 0 && n_left_to_next > 0) |
| 484 | { |
| 485 | u32 i; |
| 486 | i = to_next[0] = frag_from[0]; |
| 487 | frag_from += 1; |
| 488 | frag_left -= 1; |
| 489 | to_next += 1; |
| 490 | n_left_to_next -= 1; |
| 491 | |
| 492 | p0 = vlib_get_buffer (vm, i); |
| 493 | p0->error = error_node->errors[error0]; |
| 494 | |
| 495 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 496 | to_next, n_left_to_next, i, |
| 497 | next0); |
| 498 | } |
| 499 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 500 | vlib_get_next_frame (vm, node, next_index, to_next, |
| 501 | n_left_to_next); |
| 502 | } |
| 503 | vec_reset_length (frags); |
| 504 | } |
| 505 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 506 | } |
| 507 | vec_free (frags); |
| 508 | |
| 509 | return frame->n_vectors; |
| 510 | } |
| 511 | |
| 512 | static u8 * |
| 513 | format_mpls_frag_trace (u8 * s, va_list * args) |
| 514 | { |
| 515 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 516 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 517 | mpls_frag_trace_t *t = va_arg (*args, mpls_frag_trace_t *); |
| 518 | |
| 519 | s = format (s, "mtu:%d pkt-size:%d", t->mtu, t->pkt_size); |
| 520 | return s; |
| 521 | } |
| 522 | |
| 523 | VLIB_REGISTER_NODE (mpls_frag_node) = { |
| 524 | .function = mpls_frag, |
| 525 | .name = "mpls-frag", |
| 526 | .vector_size = sizeof (u32), |
| 527 | .format_trace = format_mpls_frag_trace, |
| 528 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 529 | |
| 530 | .n_errors = IP_FRAG_N_ERROR, |
| 531 | .error_strings = mpls_frag_error_strings, |
| 532 | |
| 533 | .n_next_nodes = MPLS_FRAG_N_NEXT, |
| 534 | .next_nodes = { |
| 535 | [MPLS_FRAG_NEXT_REWRITE] = "mpls-output", |
| 536 | [MPLS_FRAG_NEXT_REWRITE_MIDCHAIN] = "mpls-midchain", |
| 537 | [MPLS_FRAG_NEXT_ICMP_ERROR] = "ip4-icmp-error", |
| 538 | [MPLS_FRAG_NEXT_DROP] = "mpls-drop" |
| 539 | }, |
| 540 | }; |
| 541 | |
| 542 | /* |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 543 | * @brief Next index values from the MPLS incomplete adj node |
| 544 | */ |
| 545 | #define foreach_mpls_adj_incomplete_next \ |
| 546 | _(DROP, "error-drop") \ |
| 547 | _(IP4, "ip4-arp") \ |
| 548 | _(IP6, "ip6-discover-neighbor") |
| 549 | |
| 550 | typedef enum { |
| 551 | #define _(s,n) MPLS_ADJ_INCOMPLETE_NEXT_##s, |
| 552 | foreach_mpls_adj_incomplete_next |
| 553 | #undef _ |
| 554 | MPLS_ADJ_INCOMPLETE_N_NEXT, |
| 555 | } mpls_adj_incomplete_next_t; |
| 556 | |
| 557 | /** |
| 558 | * @brief A struct to hold tracing information for the MPLS label imposition |
| 559 | * node. |
| 560 | */ |
| 561 | typedef struct mpls_adj_incomplete_trace_t_ |
| 562 | { |
| 563 | u32 next; |
| 564 | } mpls_adj_incomplete_trace_t; |
| 565 | |
| 566 | |
| 567 | /** |
| 568 | * @brief Graph node for incomplete MPLS adjacency. |
| 569 | * This node will push traffic to either the v4-arp or v6-nd node |
| 570 | * based on the next-hop proto of the adj. |
| 571 | * We pay a cost for this 'routing' node, but an incomplete adj is the |
| 572 | * exception case. |
| 573 | */ |
Filip Tehlar | 17fcd98 | 2019-03-05 04:32:11 -0800 | [diff] [blame] | 574 | VLIB_NODE_FN (mpls_adj_incomplete_node) (vlib_main_t * vm, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 575 | vlib_node_runtime_t * node, |
| 576 | vlib_frame_t * from_frame) |
| 577 | { |
| 578 | u32 n_left_from, next_index, * from, * to_next; |
| 579 | |
| 580 | from = vlib_frame_vector_args (from_frame); |
| 581 | n_left_from = from_frame->n_vectors; |
| 582 | next_index = node->cached_next_index; |
| 583 | |
| 584 | while (n_left_from > 0) |
| 585 | { |
| 586 | u32 n_left_to_next; |
| 587 | |
| 588 | vlib_get_next_frame (vm, node, next_index, |
| 589 | to_next, n_left_to_next); |
| 590 | |
| 591 | while (n_left_from > 0 && n_left_to_next > 0) |
| 592 | { |
| 593 | u32 pi0, next0, adj_index0; |
| 594 | ip_adjacency_t * adj0; |
| 595 | vlib_buffer_t * p0; |
| 596 | |
| 597 | pi0 = to_next[0] = from[0]; |
| 598 | p0 = vlib_get_buffer (vm, pi0); |
| 599 | from += 1; |
| 600 | n_left_from -= 1; |
| 601 | to_next += 1; |
| 602 | n_left_to_next -= 1; |
| 603 | |
| 604 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 605 | |
| 606 | adj0 = adj_get(adj_index0); |
| 607 | |
| 608 | if (PREDICT_TRUE(FIB_PROTOCOL_IP4 == adj0->ia_nh_proto)) |
| 609 | { |
| 610 | next0 = MPLS_ADJ_INCOMPLETE_NEXT_IP4; |
| 611 | } |
| 612 | else |
| 613 | { |
| 614 | next0 = MPLS_ADJ_INCOMPLETE_NEXT_IP6; |
| 615 | } |
| 616 | |
| 617 | if (PREDICT_FALSE(p0->flags & VLIB_BUFFER_IS_TRACED)) |
| 618 | { |
| 619 | mpls_adj_incomplete_trace_t *tr = |
| 620 | vlib_add_trace (vm, node, p0, sizeof (*tr)); |
| 621 | tr->next = next0; |
| 622 | } |
| 623 | |
| 624 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 625 | to_next, n_left_to_next, |
| 626 | pi0, next0); |
| 627 | } |
| 628 | |
| 629 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 630 | } |
| 631 | |
| 632 | return from_frame->n_vectors; |
| 633 | } |
| 634 | |
| 635 | static u8 * |
| 636 | format_mpls_adj_incomplete_trace (u8 * s, va_list * args) |
| 637 | { |
| 638 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 639 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 640 | mpls_adj_incomplete_trace_t * t; |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 641 | u32 indent; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 642 | |
| 643 | t = va_arg (*args, mpls_adj_incomplete_trace_t *); |
| 644 | indent = format_get_indent (s); |
| 645 | |
| 646 | s = format (s, "%Unext:%d", |
| 647 | format_white_space, indent, |
| 648 | t->next); |
| 649 | return (s); |
| 650 | } |
| 651 | |
| 652 | VLIB_REGISTER_NODE (mpls_adj_incomplete_node) = { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 653 | .name = "mpls-adj-incomplete", |
| 654 | .format_trace = format_mpls_adj_incomplete_trace, |
| 655 | /* Takes a vector of packets. */ |
| 656 | .vector_size = sizeof (u32), |
| 657 | .n_errors = MPLS_N_ERROR, |
| 658 | .error_strings = mpls_error_strings, |
| 659 | |
| 660 | .n_next_nodes = MPLS_ADJ_INCOMPLETE_N_NEXT, |
| 661 | .next_nodes = { |
| 662 | #define _(s,n) [MPLS_ADJ_INCOMPLETE_NEXT_##s] = n, |
| 663 | foreach_mpls_adj_incomplete_next |
| 664 | #undef _ |
| 665 | }, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 666 | }; |
| 667 | |