blob: 0742312aa2cdd9af346af1b896c46747ad836bfe [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * interface.c: mpls interfaces
3 *
4 * Copyright (c) 2012 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/vnet.h>
19#include <vnet/pg/pg.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010020#include <vnet/mpls/mpls.h>
Neale Rannsa3af3372017-03-28 03:49:52 -070021#include <vnet/fib/mpls_fib.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022#include <vnet/fib/ip4_fib.h>
23#include <vnet/adj/adj_midchain.h>
24#include <vnet/dpo/classify_dpo.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Neale Ranns0bfe5d82016-08-25 15:29:12 +010027u8
28mpls_sw_interface_is_enabled (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070029{
Neale Ranns0bfe5d82016-08-25 15:29:12 +010030 mpls_main_t * mm = &mpls_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Eyal Baricd307742018-07-22 12:45:15 +030032 if (vec_len(mm->mpls_enabled_by_sw_if_index) <= sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010033 return (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070034
Neale Ranns0bfe5d82016-08-25 15:29:12 +010035 return (mm->mpls_enabled_by_sw_if_index[sw_if_index]);
36}
37
Neale Ranns15002542017-09-10 04:39:11 -070038int
Neale Ranns0bfe5d82016-08-25 15:29:12 +010039mpls_sw_interface_enable_disable (mpls_main_t * mm,
40 u32 sw_if_index,
Neale Ranns15002542017-09-10 04:39:11 -070041 u8 is_enable,
42 u8 is_api)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010043{
Neale Ranns0bfe5d82016-08-25 15:29:12 +010044 fib_node_index_t lfib_index;
John Lo4a302ee2020-05-12 22:34:39 -040045 vnet_main_t *vnm = vnet_get_main ();
46 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047
48 vec_validate_init_empty (mm->mpls_enabled_by_sw_if_index, sw_if_index, 0);
49
Neale Ranns15002542017-09-10 04:39:11 -070050 lfib_index = fib_table_find(FIB_PROTOCOL_MPLS,
51 MPLS_FIB_DEFAULT_TABLE_ID);
52
53 if (~0 == lfib_index)
54 return VNET_API_ERROR_NO_SUCH_FIB;
55
Neale Ranns0bfe5d82016-08-25 15:29:12 +010056 /*
57 * enable/disable only on the 1<->0 transition
58 */
59 if (is_enable)
Ed Warnickecb9cada2015-12-08 15:45:58 -070060 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +010061 if (1 != ++mm->mpls_enabled_by_sw_if_index[sw_if_index])
Neale Ranns15002542017-09-10 04:39:11 -070062 return (0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010063
Neale Ranns15002542017-09-10 04:39:11 -070064 fib_table_lock(lfib_index, FIB_PROTOCOL_MPLS,
65 (is_api? FIB_SOURCE_API: FIB_SOURCE_CLI));
66
Neale Ranns44cea222018-12-04 09:39:40 +000067 vec_validate(mm->fib_index_by_sw_if_index, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010068 mm->fib_index_by_sw_if_index[sw_if_index] = lfib_index;
69 }
70 else
71 {
72 ASSERT(mm->mpls_enabled_by_sw_if_index[sw_if_index] > 0);
73 if (0 != --mm->mpls_enabled_by_sw_if_index[sw_if_index])
Neale Ranns15002542017-09-10 04:39:11 -070074 return (0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010075
76 fib_table_unlock(mm->fib_index_by_sw_if_index[sw_if_index],
Neale Ranns15002542017-09-10 04:39:11 -070077 FIB_PROTOCOL_MPLS,
78 (is_api? FIB_SOURCE_API: FIB_SOURCE_CLI));
Ed Warnickecb9cada2015-12-08 15:45:58 -070079 }
80
Neale Rannsb85e4392017-03-16 16:12:57 -040081 vnet_feature_enable_disable ("mpls-input", "mpls-not-enabled",
82 sw_if_index, !is_enable, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
John Lo4a302ee2020-05-12 22:34:39 -040084 if (is_enable)
85 hi->l3_if_count++;
86 else if (hi->l3_if_count)
87 hi->l3_if_count--;
88
Neale Ranns15002542017-09-10 04:39:11 -070089 return (0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010090}
91
Neale Ranns0bfe5d82016-08-25 15:29:12 +010092static clib_error_t *
93mpls_interface_enable_disable (vlib_main_t * vm,
94 unformat_input_t * input,
95 vlib_cli_command_t * cmd)
96{
97 vnet_main_t * vnm = vnet_get_main();
98 clib_error_t * error = 0;
99 u32 sw_if_index, enable;
Neale Ranns3ce7bcb2017-11-22 02:49:13 -0800100 int rv;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100101
102 sw_if_index = ~0;
103
104 if (! unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
105 {
106 error = clib_error_return (0, "unknown interface `%U'",
107 format_unformat_error, input);
108 goto done;
109 }
110
111 if (unformat (input, "enable"))
112 enable = 1;
113 else if (unformat (input, "disable"))
114 enable = 0;
115 else
116 {
117 error = clib_error_return (0, "expected 'enable' or 'disable'",
118 format_unformat_error, input);
119 goto done;
120 }
121
Neale Ranns3ce7bcb2017-11-22 02:49:13 -0800122 rv = mpls_sw_interface_enable_disable(&mpls_main, sw_if_index, enable, 0);
123
124 if (VNET_API_ERROR_NO_SUCH_FIB == rv)
125 error = clib_error_return (0, "default MPLS table must be created first");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100126
127 done:
128 return error;
129}
130
Neale Rannsad422ed2016-11-02 14:20:04 +0000131/*?
132 * This command enables an interface to accpet MPLS packets
133 *
134 * @cliexpar
135 * @cliexstart{set interface mpls}
136 * set interface mpls GigEthernet0/8/0 enable
137 * @cliexend
138 ?*/
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100139VLIB_CLI_COMMAND (set_interface_ip_table_command, static) = {
140 .path = "set interface mpls",
141 .function = mpls_interface_enable_disable,
142 .short_help = "Enable/Disable an interface for MPLS forwarding",
143};