Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * mpls_features.c: MPLS input and output features |
| 3 | * |
| 4 | * Copyright (c) 2016 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 <vnet/mpls/mpls.h> |
| 19 | |
| 20 | always_inline uword |
| 21 | mpls_terminate (vlib_main_t * vm, |
| 22 | vlib_node_runtime_t * node, |
| 23 | vlib_frame_t * frame, |
| 24 | int error_code) |
| 25 | { |
| 26 | u32 * buffers = vlib_frame_vector_args (frame); |
| 27 | uword n_packets = frame->n_vectors; |
| 28 | |
| 29 | vlib_error_drop_buffers (vm, node, |
| 30 | buffers, |
| 31 | /* stride */ 1, |
| 32 | n_packets, |
| 33 | /* next */ 0, |
| 34 | mpls_input_node.index, |
| 35 | error_code); |
| 36 | |
| 37 | return n_packets; |
| 38 | } |
| 39 | |
| 40 | static uword |
| 41 | mpls_punt (vlib_main_t * vm, |
| 42 | vlib_node_runtime_t * node, |
| 43 | vlib_frame_t * frame) |
| 44 | { |
| 45 | return (mpls_terminate(vm, node, frame, MPLS_ERROR_PUNT)); |
| 46 | } |
| 47 | |
| 48 | VLIB_REGISTER_NODE (mpls_punt_node) = { |
| 49 | .function = mpls_punt, |
| 50 | .name = "mpls-punt", |
| 51 | .vector_size = sizeof (u32), |
| 52 | |
| 53 | .n_next_nodes = 1, |
| 54 | .next_nodes = { |
| 55 | [0] = "error-punt", |
| 56 | }, |
| 57 | }; |
| 58 | |
| 59 | VLIB_NODE_FUNCTION_MULTIARCH (mpls_punt_node, mpls_punt) |
| 60 | |
| 61 | static uword |
| 62 | mpls_drop (vlib_main_t * vm, |
| 63 | vlib_node_runtime_t * node, |
| 64 | vlib_frame_t * frame) |
| 65 | { |
| 66 | return (mpls_terminate(vm, node, frame, MPLS_ERROR_DROP)); |
| 67 | } |
| 68 | |
| 69 | VLIB_REGISTER_NODE (mpls_drop_node) = { |
| 70 | .function = mpls_drop, |
| 71 | .name = "mpls-drop", |
| 72 | .vector_size = sizeof (u32), |
| 73 | |
| 74 | .n_next_nodes = 1, |
| 75 | .next_nodes = { |
| 76 | [0] = "error-drop", |
| 77 | }, |
| 78 | }; |
| 79 | |
| 80 | VLIB_NODE_FUNCTION_MULTIARCH (mpls_drop_node, mpls_drop) |
| 81 | |
| 82 | static uword |
| 83 | mpls_not_enabled (vlib_main_t * vm, |
| 84 | vlib_node_runtime_t * node, |
| 85 | vlib_frame_t * frame) |
| 86 | { |
| 87 | return (mpls_terminate(vm, node, frame, MPLS_ERROR_NOT_ENABLED)); |
| 88 | } |
| 89 | |
| 90 | VLIB_REGISTER_NODE (mpls_not_enabled_node) = { |
| 91 | .function = mpls_not_enabled, |
| 92 | .name = "mpls-not-enabled", |
| 93 | .vector_size = sizeof (u32), |
| 94 | |
| 95 | .n_next_nodes = 1, |
| 96 | .next_nodes = { |
| 97 | [0] = "error-drop", |
| 98 | }, |
| 99 | }; |
| 100 | |
| 101 | VLIB_NODE_FUNCTION_MULTIARCH (mpls_not_enabled_node, mpls_not_enabled) |
| 102 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 103 | VNET_FEATURE_ARC_INIT (mpls_input, static) = |
| 104 | { |
| 105 | .arc_name = "mpls-input", |
| 106 | .start_nodes = VNET_FEATURES ("mpls-input"), |
| 107 | .arc_index_ptr = &mpls_main.input_feature_arc_index, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 108 | }; |
| 109 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 110 | VNET_FEATURE_INIT (mpls_not_enabled, static) = { |
| 111 | .arc_name = "mpls-input", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 112 | .node_name = "mpls-not-enabled", |
Neale Ranns | b85e439 | 2017-03-16 16:12:57 -0400 | [diff] [blame] | 113 | .runs_before = VNET_FEATURES ("mpls-lookup"), |
| 114 | }; |
| 115 | |
| 116 | VNET_FEATURE_INIT (mpls_lookup, static) = { |
| 117 | .arc_name = "mpls-input", |
| 118 | .node_name = "mpls-lookup", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 119 | .runs_before = VNET_FEATURES (0), /* not before any other features */ |
| 120 | }; |
| 121 | |
| 122 | VNET_FEATURE_ARC_INIT (mpls_output, static) = |
| 123 | { |
| 124 | .arc_name = "mpls-output", |
| 125 | .start_nodes = VNET_FEATURES ("mpls-output", "mpls-midchain"), |
| 126 | .arc_index_ptr = &mpls_main.output_feature_arc_index, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 127 | }; |
| 128 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 129 | /* Built-in ip4 tx feature path definition */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 130 | VNET_FEATURE_INIT (mpls_interface_output, static) = { |
| 131 | .arc_name = "mpls-output", |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 132 | .node_name = "interface-output", |
| 133 | .runs_before = 0, /* not before any other features */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 134 | }; |
| 135 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 136 | static clib_error_t * |
| 137 | mpls_sw_interface_add_del (vnet_main_t * vnm, |
| 138 | u32 sw_if_index, |
| 139 | u32 is_add) |
| 140 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 141 | mpls_main_t * mm = &mpls_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 142 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 143 | vec_validate_init_empty (mm->mpls_enabled_by_sw_if_index, sw_if_index, 0); |
| 144 | vec_validate_init_empty (mm->fib_index_by_sw_if_index, sw_if_index, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 145 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 146 | vnet_feature_enable_disable ("mpls-input", "mpls-not-enabled", sw_if_index, |
| 147 | is_add, 0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 148 | |
| 149 | return /* no error */ 0; |
| 150 | } |
| 151 | |
| 152 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION (mpls_sw_interface_add_del); |
| 153 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 154 | |