blob: a23902e0f6072a113e816675f8d22db47b48b05c [file] [log] [blame]
Neale Ranns5f8f6172019-04-18 10:23:56 +00001/*
2 * Copyright (c) 2019 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
Neale Ranns03ce4622020-02-03 10:55:09 +000016#include <vnet/teib/teib.h>
Neale Ranns5f8f6172019-04-18 10:23:56 +000017
18static clib_error_t *
Neale Ranns03ce4622020-02-03 10:55:09 +000019teib_add (vlib_main_t * vm,
Neale Ranns5f8f6172019-04-18 10:23:56 +000020 unformat_input_t * input, vlib_cli_command_t * cmd)
21{
22 unformat_input_t _line_input, *line_input = &_line_input;
Neale Rannse6b83052020-09-17 12:56:47 +000023 ip_address_t peer = ip_address_initializer;
24 ip_address_t nh = ip_address_initializer;
Neale Ranns5f8f6172019-04-18 10:23:56 +000025 u32 sw_if_index, nh_table_id;
26 clib_error_t *error = NULL;
27 int rv;
28
29 sw_if_index = ~0;
30 nh_table_id = 0;
31
32 /* Get a line of input. */
33 if (!unformat_user (input, unformat_line_input, line_input))
34 return 0;
35
36 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
37 {
38 if (unformat (line_input, "%U", unformat_vnet_sw_interface,
39 vnet_get_main (), &sw_if_index))
40 ;
Neale Ranns256b67b2020-09-02 14:46:53 +000041 else if (unformat (line_input, "peer %U", unformat_ip_address, &peer))
Neale Ranns5f8f6172019-04-18 10:23:56 +000042 ;
Neale Ranns5f8f6172019-04-18 10:23:56 +000043 else if (unformat (line_input, "nh-table-id %d", &nh_table_id))
44 ;
Neale Rannsbd8e43d2021-03-15 14:42:30 +000045 else if (unformat (line_input, "nh %U", unformat_ip_address, &nh))
46 ;
Neale Ranns5f8f6172019-04-18 10:23:56 +000047 else
48 {
49 error = clib_error_return (0, "unknown input `%U'",
50 format_unformat_error, line_input);
51 goto done;
52 }
53 }
54
55 if (~0 == sw_if_index)
56 {
57 error = clib_error_return (0, "interface required'",
58 format_unformat_error, line_input);
59 goto done;
60 }
Neale Ranns256b67b2020-09-02 14:46:53 +000061 if (ip_address_is_zero (&peer))
Neale Ranns5f8f6172019-04-18 10:23:56 +000062 {
63 error = clib_error_return (0, "peer required'",
64 format_unformat_error, line_input);
65 goto done;
66 }
Neale Rannse6b83052020-09-17 12:56:47 +000067 if (ip_address_is_zero (&nh))
Neale Ranns5f8f6172019-04-18 10:23:56 +000068 {
69 error = clib_error_return (0, "next-hop required'",
70 format_unformat_error, line_input);
71 goto done;
72 }
73
Neale Rannse6b83052020-09-17 12:56:47 +000074 rv = teib_entry_add (sw_if_index, &peer, nh_table_id, &nh);
Neale Ranns5f8f6172019-04-18 10:23:56 +000075
76 if (rv)
77 {
Paul Vinciguerra641c6be2020-12-26 23:49:51 +000078 error = clib_error_return_code (NULL, rv, 0, "TEIB error",
Neale Ranns5f8f6172019-04-18 10:23:56 +000079 format_unformat_error, line_input);
80 }
81
82done:
83 unformat_free (line_input);
84
85 return error;
86}
87
88/* *INDENT-OFF* */
Neale Ranns03ce4622020-02-03 10:55:09 +000089VLIB_CLI_COMMAND (teib_create_command, static) = {
90 .path = "create teib",
91 .short_help = "create teib <interface> peer <addr> nh <addr> [nh-table-id <ID>]",
92 .function = teib_add,
Neale Ranns5f8f6172019-04-18 10:23:56 +000093};
94/* *INDENT-ON* */
95
96static clib_error_t *
Neale Ranns03ce4622020-02-03 10:55:09 +000097teib_del (vlib_main_t * vm,
Neale Ranns5f8f6172019-04-18 10:23:56 +000098 unformat_input_t * input, vlib_cli_command_t * cmd)
99{
100 unformat_input_t _line_input, *line_input = &_line_input;
Neale Rannse6b83052020-09-17 12:56:47 +0000101 ip_address_t peer = ip_address_initializer;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000102 clib_error_t *error = NULL;
103 u32 sw_if_index;
104 int rv;
105
106 sw_if_index = ~0;
107
108 /* Get a line of input. */
109 if (!unformat_user (input, unformat_line_input, line_input))
110 return 0;
111
112 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
113 {
114 if (unformat (line_input, "%U", unformat_vnet_sw_interface,
115 vnet_get_main (), &sw_if_index))
116 ;
Neale Ranns256b67b2020-09-02 14:46:53 +0000117 else if (unformat (line_input, "peer %U", unformat_ip_address, &peer))
Neale Ranns5f8f6172019-04-18 10:23:56 +0000118 ;
119 else
120 {
121 error = clib_error_return (0, "unknown input `%U'",
122 format_unformat_error, line_input);
123 goto done;
124 }
125 }
126
127 if (~0 == sw_if_index)
128 {
129 error = clib_error_return (0, "interface required'",
130 format_unformat_error, line_input);
131 }
Neale Ranns256b67b2020-09-02 14:46:53 +0000132 if (ip_address_is_zero (&peer))
Neale Ranns5f8f6172019-04-18 10:23:56 +0000133 {
134 error = clib_error_return (0, "peer required'",
135 format_unformat_error, line_input);
136 goto done;
137 }
138
Neale Rannse6b83052020-09-17 12:56:47 +0000139 rv = teib_entry_del (sw_if_index, &peer);
Neale Ranns5f8f6172019-04-18 10:23:56 +0000140
141 if (rv)
142 {
Paul Vinciguerra641c6be2020-12-26 23:49:51 +0000143 error = clib_error_return_code (NULL, rv, 0, "TEIB error",
Neale Ranns5f8f6172019-04-18 10:23:56 +0000144 format_unformat_error, line_input);
145 }
146
147done:
148 unformat_free (line_input);
149
150 return error;
151}
152
153/* *INDENT-OFF* */
Neale Ranns03ce4622020-02-03 10:55:09 +0000154VLIB_CLI_COMMAND (teib_delete_command, static) = {
155 .path = "delete teib",
156 .short_help = "delete teib <interface> peer <addr>",
157 .function = teib_del,
Neale Ranns5f8f6172019-04-18 10:23:56 +0000158};
159/* *INDENT-ON* */
160
161static walk_rc_t
Neale Ranns03ce4622020-02-03 10:55:09 +0000162teib_show_one (index_t nei, void *ctx)
Neale Ranns5f8f6172019-04-18 10:23:56 +0000163{
Neale Ranns03ce4622020-02-03 10:55:09 +0000164 vlib_cli_output (ctx, "%U", format_teib_entry, nei);
Neale Ranns5f8f6172019-04-18 10:23:56 +0000165
166 return (WALK_CONTINUE);
167}
168
169
170static clib_error_t *
Neale Ranns03ce4622020-02-03 10:55:09 +0000171teib_show (vlib_main_t * vm,
Neale Ranns5f8f6172019-04-18 10:23:56 +0000172 unformat_input_t * input, vlib_cli_command_t * cmd)
173{
Neale Ranns03ce4622020-02-03 10:55:09 +0000174 teib_walk (teib_show_one, vm);
Neale Ranns5f8f6172019-04-18 10:23:56 +0000175 return (NULL);
176}
177
178/* *INDENT-OFF* */
Neale Ranns03ce4622020-02-03 10:55:09 +0000179VLIB_CLI_COMMAND (teib_show_command, static) = {
180 .path = "show teib",
181 .short_help = "show teib",
182 .function = teib_show,
Neale Ranns5f8f6172019-04-18 10:23:56 +0000183};
184/* *INDENT-ON* */
185
186/*
187 * fd.io coding-style-patch-verification: ON
188 *
189 * Local Variables:
190 * eval: (c-set-style "gnu")
191 * End:
192 */