blob: a4531dab85c050f72921017be676f918bcaa74eb [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * l2tp.c : L2TPv3 tunnel support
3 *
4 * Copyright (c) 2013 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 <vppinfra/error.h>
19#include <vppinfra/hash.h>
20#include <vnet/vnet.h>
21#include <vnet/ip/ip.h>
22#include <vnet/l2/l2_input.h>
23#include <vnet/ethernet/ethernet.h>
24#include <vnet/l2tp/l2tp.h>
25
26l2t_main_t l2t_main;
27
28/* packet trace format function */
Calvinee275a72016-08-10 11:01:41 -040029u8 *
30format_l2t_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070031{
32 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
33 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Calvinee275a72016-08-10 11:01:41 -040034 l2t_trace_t *t = va_arg (*args, l2t_trace_t *);
35
Ed Warnickecb9cada2015-12-08 15:45:58 -070036 if (t->is_user_to_network)
Calvinee275a72016-08-10 11:01:41 -040037 s = format (s, "L2T: %U (client) -> %U (our) session %d",
38 format_ip6_address, &t->client_address,
39 format_ip6_address, &t->our_address, t->session_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070040 else
41 s = format (s, "L2T: %U (our) -> %U (client) session %d)",
Calvinee275a72016-08-10 11:01:41 -040042 format_ip6_address, &t->our_address,
43 format_ip6_address, &t->client_address, t->session_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070044 return s;
45}
46
Calvinee275a72016-08-10 11:01:41 -040047u8 *
48format_l2t_session (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070049{
Calvinee275a72016-08-10 11:01:41 -040050 l2t_session_t *session = va_arg (*args, l2t_session_t *);
51 l2t_main_t *lm = &l2t_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070052 u32 counter_index;
53 vlib_counter_t v;
54
Calvinee275a72016-08-10 11:01:41 -040055 s = format (s, "[%d] %U (our) %U (client) %U (sw_if_index %d)\n",
56 session - lm->sessions,
57 format_ip6_address, &session->our_address,
58 format_ip6_address, &session->client_address,
59 format_vnet_sw_interface_name, lm->vnet_main,
60 vnet_get_sw_interface (lm->vnet_main, session->sw_if_index),
61 session->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
63 s = format (s, " local cookies %016llx %016llx remote cookie %016llx\n",
Calvinee275a72016-08-10 11:01:41 -040064 clib_net_to_host_u64 (session->local_cookie[0]),
65 clib_net_to_host_u64 (session->local_cookie[1]),
66 clib_net_to_host_u64 (session->remote_cookie));
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
68 s = format (s, " local session-id %d remote session-id %d\n",
Calvinee275a72016-08-10 11:01:41 -040069 clib_net_to_host_u32 (session->local_session_id),
70 clib_net_to_host_u32 (session->remote_session_id));
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
Calvinee275a72016-08-10 11:01:41 -040072 s = format (s, " l2 specific sublayer %s\n",
73 session->l2_sublayer_present ? "preset" : "absent");
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
Calvinee275a72016-08-10 11:01:41 -040075 counter_index =
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 session_index_to_counter_index (session - lm->sessions,
Calvinee275a72016-08-10 11:01:41 -040077 SESSION_COUNTER_USER_TO_NETWORK);
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79 vlib_get_combined_counter (&lm->counter_main, counter_index, &v);
80 if (v.packets != 0)
81 s = format (s, " user-to-net: %llu pkts %llu bytes\n",
Calvinee275a72016-08-10 11:01:41 -040082 v.packets, v.bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
Calvinee275a72016-08-10 11:01:41 -040084 vlib_get_combined_counter (&lm->counter_main, counter_index + 1, &v);
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
86 if (v.packets != 0)
87 s = format (s, " net-to-user: %llu pkts %llu bytes\n",
Calvinee275a72016-08-10 11:01:41 -040088 v.packets, v.bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 return s;
90}
91
92static clib_error_t *
93show_l2tp_command_fn (vlib_main_t * vm,
Calvinee275a72016-08-10 11:01:41 -040094 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -070095{
96 l2t_session_t *session;
97 l2t_main_t *lm = &l2t_main;
Calvinee275a72016-08-10 11:01:41 -040098 char *keystr = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070099 int verbose = 0;
Calvinee275a72016-08-10 11:01:41 -0400100
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 if (unformat (input, "verbose") || unformat (input, "v"))
102 verbose = 1;
103
104 if (pool_elts (lm->sessions) == 0)
Calvinee275a72016-08-10 11:01:41 -0400105 vlib_cli_output (vm, "No l2tp sessions...");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 else
Calvinee275a72016-08-10 11:01:41 -0400107 vlib_cli_output (vm, "%u l2tp sessions...", pool_elts (lm->sessions));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
109 if (verbose)
110 {
111 switch (lm->lookup_type)
Calvinee275a72016-08-10 11:01:41 -0400112 {
113 case L2T_LOOKUP_SRC_ADDRESS:
114 keystr = "src address";
115 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116
Calvinee275a72016-08-10 11:01:41 -0400117 case L2T_LOOKUP_DST_ADDRESS:
118 keystr = "dst address";
119 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
Calvinee275a72016-08-10 11:01:41 -0400121 case L2T_LOOKUP_SESSION_ID:
122 keystr = "session id";
123 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Calvinee275a72016-08-10 11:01:41 -0400125 default:
126 keystr = "BOGUS!";
127 break;
128 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
130 vlib_cli_output (vm, "L2tp session lookup on %s", keystr);
131
Calvinee275a72016-08-10 11:01:41 -0400132 /* *INDENT-OFF* */
Damjan Marion607de1a2016-08-16 22:53:54 +0200133 pool_foreach (session, lm->sessions,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 ({
135 vlib_cli_output (vm, "%U", format_l2t_session, session);
136 }));
Calvinee275a72016-08-10 11:01:41 -0400137 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 }
Calvinee275a72016-08-10 11:01:41 -0400139
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140 return 0;
141}
142
Calvinee275a72016-08-10 11:01:41 -0400143/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144VLIB_CLI_COMMAND (show_session_detail_command, static) = {
145 .path = "show l2tpv3",
146 .short_help = "show l2tpv3 [verbose]",
147 .function = show_l2tp_command_fn,
148};
Calvinee275a72016-08-10 11:01:41 -0400149/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151static clib_error_t *
152test_counters_command_fn (vlib_main_t * vm,
Calvinee275a72016-08-10 11:01:41 -0400153 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154{
155 l2t_session_t *session;
156 l2t_main_t *lm = &l2t_main;
157 u32 session_index;
158 u32 counter_index;
Calvinee275a72016-08-10 11:01:41 -0400159 u32 nincr = 0;
160 u32 cpu_index = os_get_cpu_number ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Calvinee275a72016-08-10 11:01:41 -0400162 /* *INDENT-OFF* */
Damjan Marion607de1a2016-08-16 22:53:54 +0200163 pool_foreach (session, lm->sessions,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 ({
165 session_index = session - lm->sessions;
Damjan Marion607de1a2016-08-16 22:53:54 +0200166 counter_index =
167 session_index_to_counter_index (session_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 SESSION_COUNTER_USER_TO_NETWORK);
169 vlib_increment_combined_counter (&lm->counter_main,
Damjan Marion607de1a2016-08-16 22:53:54 +0200170 cpu_index,
171 counter_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172 1/*pkt*/, 1111 /*bytes*/);
173 vlib_increment_combined_counter (&lm->counter_main,
Damjan Marion607de1a2016-08-16 22:53:54 +0200174 cpu_index,
175 counter_index+1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 1/*pkt*/, 2222 /*bytes*/);
177 nincr++;
Damjan Marion607de1a2016-08-16 22:53:54 +0200178
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 }));
Calvinee275a72016-08-10 11:01:41 -0400180 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181 vlib_cli_output (vm, "Incremented %d active counters\n", nincr);
Calvinee275a72016-08-10 11:01:41 -0400182
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 return 0;
184}
185
Calvinee275a72016-08-10 11:01:41 -0400186/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187VLIB_CLI_COMMAND (test_counters_command, static) = {
188 .path = "test counters",
189 .short_help = "increment all active counters",
190 .function = test_counters_command_fn,
191};
Calvinee275a72016-08-10 11:01:41 -0400192/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
194static clib_error_t *
195clear_counters_command_fn (vlib_main_t * vm,
Calvinee275a72016-08-10 11:01:41 -0400196 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197{
198 l2t_session_t *session;
199 l2t_main_t *lm = &l2t_main;
200 u32 session_index;
201 u32 counter_index;
Calvinee275a72016-08-10 11:01:41 -0400202 u32 nincr = 0;
203
204 /* *INDENT-OFF* */
Damjan Marion607de1a2016-08-16 22:53:54 +0200205 pool_foreach (session, lm->sessions,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 ({
207 session_index = session - lm->sessions;
Damjan Marion607de1a2016-08-16 22:53:54 +0200208 counter_index =
209 session_index_to_counter_index (session_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 SESSION_COUNTER_USER_TO_NETWORK);
211 vlib_zero_combined_counter (&lm->counter_main, counter_index);
212 vlib_zero_combined_counter (&lm->counter_main, counter_index+1);
213 nincr++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214 }));
Calvinee275a72016-08-10 11:01:41 -0400215 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 vlib_cli_output (vm, "Cleared %d active counters\n", nincr);
Calvinee275a72016-08-10 11:01:41 -0400217
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218 return 0;
219}
220
Calvinee275a72016-08-10 11:01:41 -0400221/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222VLIB_CLI_COMMAND (clear_counters_command, static) = {
Calvinee275a72016-08-10 11:01:41 -0400223 .path = "clear counters",
224 .short_help = "clear all active counters",
225 .function = clear_counters_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226};
Calvinee275a72016-08-10 11:01:41 -0400227/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
Calvinee275a72016-08-10 11:01:41 -0400229static u8 *
230format_l2tpv3_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231{
232 l2t_main_t *lm = &l2t_main;
233 u32 i = va_arg (*args, u32);
234 u32 show_dev_instance = ~0;
235
236 if (i < vec_len (lm->dev_inst_by_real))
237 show_dev_instance = lm->dev_inst_by_real[i];
238
239 if (show_dev_instance != ~0)
240 i = show_dev_instance;
241
242 return format (s, "l2tpv3_tunnel%d", i);
243}
244
Calvinee275a72016-08-10 11:01:41 -0400245static int
246l2tpv3_name_renumber (vnet_hw_interface_t * hi, u32 new_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247{
248 l2t_main_t *lm = &l2t_main;
249
250 vec_validate_init_empty (lm->dev_inst_by_real, hi->dev_instance, ~0);
251
Calvinee275a72016-08-10 11:01:41 -0400252 lm->dev_inst_by_real[hi->dev_instance] = new_dev_instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253
254 return 0;
255}
256
Calvinee275a72016-08-10 11:01:41 -0400257static uword
258dummy_interface_tx (vlib_main_t * vm,
259 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260{
261 clib_warning ("you shouldn't be here, leaking buffers...");
262 return frame->n_vectors;
263}
264
Calvinee275a72016-08-10 11:01:41 -0400265/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266VNET_DEVICE_CLASS (l2tpv3_device_class,static) = {
267 .name = "L2TPv3",
268 .format_device_name = format_l2tpv3_name,
269 .name_renumber = l2tpv3_name_renumber,
270 .tx_function = dummy_interface_tx,
271};
Calvinee275a72016-08-10 11:01:41 -0400272/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273
Calvinee275a72016-08-10 11:01:41 -0400274static u8 *
275format_l2tp_header_with_length (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276{
277 u32 dev_instance = va_arg (*args, u32);
278 s = format (s, "unimplemented dev %u", dev_instance);
279 return s;
280}
281
Calvinee275a72016-08-10 11:01:41 -0400282/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283VNET_HW_INTERFACE_CLASS (l2tpv3_hw_class) = {
284 .name = "L2TPV3",
285 .format_header = format_l2tp_header_with_length,
Neale Rannsb80c5362016-10-08 13:03:40 +0100286 .build_rewrite = default_build_rewrite,
287 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288};
Calvinee275a72016-08-10 11:01:41 -0400289/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Calvinee275a72016-08-10 11:01:41 -0400291int
292create_l2tpv3_ipv6_tunnel (l2t_main_t * lm,
293 ip6_address_t * client_address,
294 ip6_address_t * our_address,
295 u32 local_session_id,
296 u32 remote_session_id,
297 u64 local_cookie,
298 u64 remote_cookie,
299 int l2_sublayer_present,
300 u32 encap_fib_index, u32 * sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301{
302 l2t_session_t *s = 0;
Calvinee275a72016-08-10 11:01:41 -0400303 vnet_main_t *vnm = lm->vnet_main;
304 vnet_hw_interface_t *hi;
305 uword *p = (uword *) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306 u32 hw_if_index;
307 l2tpv3_header_t l2tp_hdr;
Calvinee275a72016-08-10 11:01:41 -0400308 ip6_address_t *dst_address_copy, *src_address_copy;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309 u32 counter_index;
310
311 remote_session_id = clib_host_to_net_u32 (remote_session_id);
Calvinee275a72016-08-10 11:01:41 -0400312 local_session_id = clib_host_to_net_u32 (local_session_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
Calvinee275a72016-08-10 11:01:41 -0400314 switch (lm->lookup_type)
315 {
316 case L2T_LOOKUP_SRC_ADDRESS:
317 p = hash_get_mem (lm->session_by_src_address, client_address);
318 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
Calvinee275a72016-08-10 11:01:41 -0400320 case L2T_LOOKUP_DST_ADDRESS:
321 p = hash_get_mem (lm->session_by_dst_address, our_address);
322 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
Calvinee275a72016-08-10 11:01:41 -0400324 case L2T_LOOKUP_SESSION_ID:
325 p = hash_get (lm->session_by_session_id, local_session_id);
326 break;
327
328 default:
329 ASSERT (0);
330 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332 /* adding a session: session must not already exist */
Calvinee275a72016-08-10 11:01:41 -0400333 if (p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 return VNET_API_ERROR_INVALID_VALUE;
335
336 pool_get (lm->sessions, s);
337 memset (s, 0, sizeof (*s));
Damjan Marionf1213b82016-03-13 02:22:06 +0100338 clib_memcpy (&s->our_address, our_address, sizeof (s->our_address));
Calvinee275a72016-08-10 11:01:41 -0400339 clib_memcpy (&s->client_address, client_address,
340 sizeof (s->client_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 s->local_cookie[0] = clib_host_to_net_u64 (local_cookie);
342 s->remote_cookie = clib_host_to_net_u64 (remote_cookie);
343 s->local_session_id = local_session_id;
344 s->remote_session_id = remote_session_id;
345 s->l2_sublayer_present = l2_sublayer_present;
346 /* precompute l2tp header size */
Calvinee275a72016-08-10 11:01:41 -0400347 s->l2tp_hdr_size = l2_sublayer_present ?
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348 sizeof (l2tpv3_header_t) :
Calvinee275a72016-08-10 11:01:41 -0400349 sizeof (l2tpv3_header_t) - sizeof (l2tp_hdr.l2_specific_sublayer);
Pierre Pfister80ee2132016-06-22 12:54:48 +0100350 s->admin_up = 0;
Pierre Pfister08e03122016-07-15 09:19:39 +0100351 s->encap_fib_index = encap_fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352
353 /* Setup hash table entries */
Calvinee275a72016-08-10 11:01:41 -0400354 switch (lm->lookup_type)
355 {
356 case L2T_LOOKUP_SRC_ADDRESS:
357 src_address_copy = clib_mem_alloc (sizeof (*src_address_copy));
358 clib_memcpy (src_address_copy, client_address,
359 sizeof (*src_address_copy));
360 hash_set_mem (lm->session_by_src_address, src_address_copy,
361 s - lm->sessions);
362 break;
363 case L2T_LOOKUP_DST_ADDRESS:
364 dst_address_copy = clib_mem_alloc (sizeof (*dst_address_copy));
365 clib_memcpy (dst_address_copy, our_address, sizeof (*dst_address_copy));
366 hash_set_mem (lm->session_by_dst_address, dst_address_copy,
367 s - lm->sessions);
368 break;
369 case L2T_LOOKUP_SESSION_ID:
370 hash_set (lm->session_by_session_id, local_session_id,
371 s - lm->sessions);
372 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373
Calvinee275a72016-08-10 11:01:41 -0400374 default:
375 ASSERT (0);
376 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
378 /* validate counters */
Calvinee275a72016-08-10 11:01:41 -0400379 counter_index =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 session_index_to_counter_index (s - lm->sessions,
Calvinee275a72016-08-10 11:01:41 -0400381 SESSION_COUNTER_USER_TO_NETWORK);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 vlib_validate_combined_counter (&lm->counter_main, counter_index);
Calvinee275a72016-08-10 11:01:41 -0400383 vlib_validate_combined_counter (&lm->counter_main, counter_index + 1);
384
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 if (vec_len (lm->free_l2tpv3_tunnel_hw_if_indices) > 0)
386 {
387 hw_if_index = lm->free_l2tpv3_tunnel_hw_if_indices
Calvinee275a72016-08-10 11:01:41 -0400388 [vec_len (lm->free_l2tpv3_tunnel_hw_if_indices) - 1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 _vec_len (lm->free_l2tpv3_tunnel_hw_if_indices) -= 1;
390
391 hi = vnet_get_hw_interface (vnm, hw_if_index);
392 hi->dev_instance = s - lm->sessions;
393 hi->hw_instance = hi->dev_instance;
394 }
Calvinee275a72016-08-10 11:01:41 -0400395 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 {
397 hw_if_index = vnet_register_interface
Calvinee275a72016-08-10 11:01:41 -0400398 (vnm, l2tpv3_device_class.index, s - lm->sessions,
399 l2tpv3_hw_class.index, s - lm->sessions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 hi = vnet_get_hw_interface (vnm, hw_if_index);
401 hi->output_node_index = l2t_encap_node.index;
402 /* $$$$ initialize custom dispositions, if needed */
403 }
Calvinee275a72016-08-10 11:01:41 -0400404
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 s->hw_if_index = hw_if_index;
406 s->sw_if_index = hi->sw_if_index;
407
408 if (sw_if_index)
409 *sw_if_index = hi->sw_if_index;
410
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 return 0;
412}
413
414static clib_error_t *
415create_l2tpv3_tunnel_command_fn (vlib_main_t * vm,
Calvinee275a72016-08-10 11:01:41 -0400416 unformat_input_t * input,
417 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418{
419 ip6_address_t client_address, our_address;
Calvinee275a72016-08-10 11:01:41 -0400420 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 l2t_main_t *lm = &l2t_main;
Calvinee275a72016-08-10 11:01:41 -0400422 u64 local_cookie = (u64) ~ 0, remote_cookie = (u64) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 u32 local_session_id = 1, remote_session_id = 1;
424 int our_address_set = 0, client_address_set = 0;
425 int l2_sublayer_present = 0;
426 int rv;
427 u32 sw_if_index;
Pierre Pfister08e03122016-07-15 09:19:39 +0100428 u32 encap_fib_id = ~0;
429 u32 encap_fib_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430
431 /* Get a line of input. */
Calvinee275a72016-08-10 11:01:41 -0400432 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 return 0;
434
Calvinee275a72016-08-10 11:01:41 -0400435 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
436 {
437 if (unformat (line_input, "client %U",
438 unformat_ip6_address, &client_address))
439 client_address_set = 1;
440 else if (unformat (line_input, "our %U",
441 unformat_ip6_address, &our_address))
442 our_address_set = 1;
443 else if (unformat (line_input, "local-cookie %llx", &local_cookie))
444 ;
445 else if (unformat (line_input, "remote-cookie %llx", &remote_cookie))
446 ;
447 else if (unformat (line_input, "local-session-id %d",
448 &local_session_id))
449 ;
450 else if (unformat (line_input, "remote-session-id %d",
451 &remote_session_id))
452 ;
453 else if (unformat (line_input, "fib-id %d", &encap_fib_id))
454 ;
455 else if (unformat (line_input, "l2-sublayer-present"))
456 l2_sublayer_present = 1;
457 else
458 return clib_error_return (0, "parse error: '%U'",
459 format_unformat_error, line_input);
460 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461
462 unformat_free (line_input);
463
Calvinee275a72016-08-10 11:01:41 -0400464 if (encap_fib_id != ~0)
465 {
Pierre Pfister08e03122016-07-15 09:19:39 +0100466 uword *p;
467 ip6_main_t *im = &ip6_main;
468 if (!(p = hash_get (im->fib_index_by_table_id, encap_fib_id)))
Calvinee275a72016-08-10 11:01:41 -0400469 return clib_error_return (0, "No fib with id %d", encap_fib_id);
Pierre Pfister08e03122016-07-15 09:19:39 +0100470 encap_fib_index = p[0];
Calvinee275a72016-08-10 11:01:41 -0400471 }
472 else
473 {
Pierre Pfister08e03122016-07-15 09:19:39 +0100474 encap_fib_index = ~0;
Calvinee275a72016-08-10 11:01:41 -0400475 }
Pierre Pfister08e03122016-07-15 09:19:39 +0100476
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477 if (our_address_set == 0)
478 return clib_error_return (0, "our address not specified");
479 if (client_address_set == 0)
480 return clib_error_return (0, "client address not specified");
Calvinee275a72016-08-10 11:01:41 -0400481
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482 rv = create_l2tpv3_ipv6_tunnel (lm, &client_address, &our_address,
Calvinee275a72016-08-10 11:01:41 -0400483 local_session_id, remote_session_id,
484 local_cookie, remote_cookie,
485 l2_sublayer_present,
486 encap_fib_index, &sw_if_index);
487 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488 {
489 case 0:
Calvinee275a72016-08-10 11:01:41 -0400490 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
491 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 break;
493 case VNET_API_ERROR_INVALID_VALUE:
494 return clib_error_return (0, "session already exists...");
495
496 case VNET_API_ERROR_NO_SUCH_ENTRY:
497 return clib_error_return (0, "session does not exist...");
498
499 default:
500 return clib_error_return (0, "l2tp_session_add_del returned %d", rv);
501 }
502
503 return 0;
504}
505
Calvinee275a72016-08-10 11:01:41 -0400506/* *INDENT-OFF* */
Damjan Marion607de1a2016-08-16 22:53:54 +0200507VLIB_CLI_COMMAND (create_l2tpv3_tunnel_command, static) =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508{
Calvinee275a72016-08-10 11:01:41 -0400509 .path = "create l2tpv3 tunnel",
Damjan Marion607de1a2016-08-16 22:53:54 +0200510 .short_help =
Calvinee275a72016-08-10 11:01:41 -0400511 "create l2tpv3 tunnel client <ip6> our <ip6> local-cookie <hex> remote-cookie <hex> local-session <dec> remote-session <dec>",
512 .function = create_l2tpv3_tunnel_command_fn,
513};
514/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515
Calvinee275a72016-08-10 11:01:41 -0400516int
517l2tpv3_set_tunnel_cookies (l2t_main_t * lm,
518 u32 sw_if_index,
519 u64 new_local_cookie, u64 new_remote_cookie)
520{
521 l2t_session_t *s;
522 vnet_hw_interface_t *hi;
523 vnet_main_t *vnm = vnet_get_main ();
524 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
Calvinee275a72016-08-10 11:01:41 -0400526 if (pool_is_free_index (lm->sessions, hi->dev_instance))
527 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528
Calvinee275a72016-08-10 11:01:41 -0400529 s = pool_elt_at_index (lm->sessions, hi->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530
Calvinee275a72016-08-10 11:01:41 -0400531 s->local_cookie[1] = s->local_cookie[0];
532 s->local_cookie[0] = clib_host_to_net_u64 (new_local_cookie);
533 s->remote_cookie = clib_host_to_net_u64 (new_remote_cookie);
534
535 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536}
537
538
539static clib_error_t *
540set_l2tp_tunnel_cookie_command_fn (vlib_main_t * vm,
Calvinee275a72016-08-10 11:01:41 -0400541 unformat_input_t * input,
542 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543{
544 l2t_main_t *lm = &l2t_main;
Calvinee275a72016-08-10 11:01:41 -0400545 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 u32 sw_if_index = ~0;
Calvinee275a72016-08-10 11:01:41 -0400547 u64 local_cookie = (u64) ~ 0, remote_cookie = (u64) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548
549 int rv;
Calvinee275a72016-08-10 11:01:41 -0400550
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
552 {
Calvinee275a72016-08-10 11:01:41 -0400553 if (unformat (input, "%U", unformat_vnet_sw_interface, vnm,
554 &sw_if_index))
555 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556 else if (unformat (input, "local %llx", &local_cookie))
Calvinee275a72016-08-10 11:01:41 -0400557 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 else if (unformat (input, "remote %llx", &remote_cookie))
Calvinee275a72016-08-10 11:01:41 -0400559 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 else
Calvinee275a72016-08-10 11:01:41 -0400561 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 }
563 if (sw_if_index == ~0)
564 return clib_error_return (0, "unknown interface");
565 if (local_cookie == ~0)
566 return clib_error_return (0, "local cookie required");
567 if (remote_cookie == ~0)
568 return clib_error_return (0, "remote cookie required");
569
Calvinee275a72016-08-10 11:01:41 -0400570 rv = l2tpv3_set_tunnel_cookies (lm, sw_if_index,
571 local_cookie, remote_cookie);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
573 switch (rv)
574 {
575 case 0:
576 break;
577
578 case VNET_API_ERROR_INVALID_SW_IF_INDEX:
579 return clib_error_return (0, "invalid interface");
580
581 default:
582 return clib_error_return (0, "l2tp_session_set_cookies returned %d",
Calvinee275a72016-08-10 11:01:41 -0400583 rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584 }
585
Calvinee275a72016-08-10 11:01:41 -0400586 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587}
588
Calvinee275a72016-08-10 11:01:41 -0400589/* *INDENT-OFF* */
Damjan Marion607de1a2016-08-16 22:53:54 +0200590VLIB_CLI_COMMAND (set_l2tp_tunnel_cookie_command, static) =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591{
Calvinee275a72016-08-10 11:01:41 -0400592 .path = "set l2tpv3 tunnel cookie",
Damjan Marion607de1a2016-08-16 22:53:54 +0200593 .short_help =
Calvinee275a72016-08-10 11:01:41 -0400594 "set l2tpv3 tunnel cookie <intfc> local <hex> remote <hex>",
595 .function = set_l2tp_tunnel_cookie_command_fn,
596};
597/* *INDENT-ON* */
598
599int
600l2tpv3_interface_enable_disable (vnet_main_t * vnm,
601 u32 sw_if_index, int enable_disable)
602{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
604 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
605 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
606
Damjan Marion8b3191e2016-11-09 19:54:20 +0100607 vnet_feature_enable_disable ("ip6-unicast", "l2tp-decap", sw_if_index,
608 enable_disable, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 return 0;
610}
611
612/* Enable/disable L2TPv3 intercept on IP6 fowarding path */
613static clib_error_t *
614set_ip6_l2tpv3 (vlib_main_t * vm,
Calvinee275a72016-08-10 11:01:41 -0400615 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616{
617 u32 sw_if_index = ~0;
618 int is_add = 1;
619 int rv;
Calvinee275a72016-08-10 11:01:41 -0400620 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621
622 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
623 {
Calvinee275a72016-08-10 11:01:41 -0400624 if (unformat (input, "%U", unformat_vnet_sw_interface, vnm,
625 &sw_if_index))
626 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627 else if (unformat (input, "del"))
Calvinee275a72016-08-10 11:01:41 -0400628 is_add = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629 else
Calvinee275a72016-08-10 11:01:41 -0400630 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631 }
632
633 if (sw_if_index == ~0)
634 return clib_error_return (0, "interface required");
Calvinee275a72016-08-10 11:01:41 -0400635
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636 rv = l2tpv3_interface_enable_disable (vnm, sw_if_index, is_add);
637
638 switch (rv)
639 {
640 case 0:
641 break;
642
643 case VNET_API_ERROR_INVALID_SW_IF_INDEX:
644 return clib_error_return (0, "invalid interface");
645
646 default:
Calvinee275a72016-08-10 11:01:41 -0400647 return clib_error_return (0,
648 "l2tp_interface_enable_disable returned %d",
649 rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650 }
651 return 0;
652}
653
Calvinee275a72016-08-10 11:01:41 -0400654/* *INDENT-OFF* */
Damjan Marion607de1a2016-08-16 22:53:54 +0200655VLIB_CLI_COMMAND (set_interface_ip6_l2tpv3, static) =
Calvinee275a72016-08-10 11:01:41 -0400656{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 .path = "set interface ip6 l2tpv3",
658 .function = set_ip6_l2tpv3,
659 .short_help = "set interface ip6 l2tpv3 <intfc> [del]",
660};
Calvinee275a72016-08-10 11:01:41 -0400661/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662
663static clib_error_t *
664l2tp_config (vlib_main_t * vm, unformat_input_t * input)
665{
Calvinee275a72016-08-10 11:01:41 -0400666 l2t_main_t *lm = &l2t_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
Calvinee275a72016-08-10 11:01:41 -0400668 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
669 {
670 if (unformat (input, "lookup-v6-src"))
671 lm->lookup_type = L2T_LOOKUP_SRC_ADDRESS;
672 else if (unformat (input, "lookup-v6-dst"))
673 lm->lookup_type = L2T_LOOKUP_DST_ADDRESS;
674 else if (unformat (input, "lookup-session-id"))
675 lm->lookup_type = L2T_LOOKUP_SESSION_ID;
676 else
677 return clib_error_return (0, "unknown input `%U'",
678 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 }
Calvinee275a72016-08-10 11:01:41 -0400680 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681}
682
683VLIB_CONFIG_FUNCTION (l2tp_config, "l2tp");
684
Pierre Pfister80ee2132016-06-22 12:54:48 +0100685
686clib_error_t *
Calvinee275a72016-08-10 11:01:41 -0400687l2tp_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
Pierre Pfister80ee2132016-06-22 12:54:48 +0100688{
689 l2t_main_t *lm = &l2t_main;
690 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
691 if (hi->hw_class_index != l2tpv3_hw_class.index)
692 return 0;
693
694 u32 session_index = hi->dev_instance;
695 l2t_session_t *s = pool_elt_at_index (lm->sessions, session_index);
Calvinee275a72016-08-10 11:01:41 -0400696 s->admin_up = ! !(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP);
Pierre Pfister80ee2132016-06-22 12:54:48 +0100697 return 0;
698}
699
700VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (l2tp_sw_interface_up_down);
701
Calvinee275a72016-08-10 11:01:41 -0400702clib_error_t *
703l2tp_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704{
Calvinee275a72016-08-10 11:01:41 -0400705 l2t_main_t *lm = &l2t_main;
706 ip_main_t *im = &ip_main;
707 ip_protocol_info_t *pi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708
Calvinee275a72016-08-10 11:01:41 -0400709 lm->vnet_main = vnet_get_main ();
710 lm->vlib_main = vm;
711 lm->lookup_type = L2T_LOOKUP_DST_ADDRESS;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
Calvinee275a72016-08-10 11:01:41 -0400713 lm->session_by_src_address = hash_create_mem
714 (0, sizeof (ip6_address_t) /* key bytes */ ,
715 sizeof (u32) /* value bytes */ );
716 lm->session_by_dst_address = hash_create_mem
717 (0, sizeof (ip6_address_t) /* key bytes */ ,
718 sizeof (u32) /* value bytes */ );
719 lm->session_by_session_id = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720
Calvinee275a72016-08-10 11:01:41 -0400721 pi = ip_get_protocol_info (im, IP_PROTOCOL_L2TP);
722 pi->unformat_pg_edit = unformat_pg_l2tp_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723
Calvinee275a72016-08-10 11:01:41 -0400724 /* insure these nodes are included in build */
725 l2tp_encap_init (vm);
726 l2tp_decap_init ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727
Calvinee275a72016-08-10 11:01:41 -0400728 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729}
730
Calvinee275a72016-08-10 11:01:41 -0400731VLIB_INIT_FUNCTION (l2tp_init);
732
733/*
734 * fd.io coding-style-patch-verification: ON
735 *
736 * Local Variables:
737 * eval: (c-set-style "gnu")
738 * End:
739 */