FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
vpe_cli.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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 #include <vnet/ip/ip.h>
16 #include <vnet/ethernet/ethernet.h>
17 #include <vnet/adj/adj.h>
18 #include <vnet/fib/fib_table.h>
19 
20 typedef struct
21 {
22  u8 mac_addr[6];
23 } mac_addr_t;
24 
25 static clib_error_t *
27  unformat_input_t * input,
28  vlib_cli_command_t * cmd)
29 {
30  unformat_input_t _line_input, *line_input = &_line_input;
31  vnet_main_t *vnm = vnet_get_main ();
32  ip46_address_t next_hop, *next_hops;
33  fib_route_path_t *rpaths;
35  u8 mac_addr[6];
36  mac_addr_t *mac_addrs = 0;
38  u32 i;
39  clib_error_t *error = NULL;
40 
41  next_hops = NULL;
42  rpaths = NULL;
43  prefix.fp_len = 32;
44  prefix.fp_proto = FIB_PROTOCOL_IP4;
45 
46  /* Get a line of input. */
47  if (!unformat_user (input, unformat_line_input, line_input))
48  return 0;
49 
50  if (!unformat (line_input, "%U %U",
51  unformat_ip4_address, &prefix.fp_addr.ip4,
52  unformat_vnet_sw_interface, vnm, &sw_if_index))
53  {
54  error = clib_error_return (0, "unknown input `%U'",
55  format_unformat_error, line_input);
56  goto done;
57  }
58 
59  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
60  {
61  if (unformat (line_input, "mac %U",
62  unformat_ethernet_address, &mac_addr))
63  {
64  mac_addr_t *ma;
65  vec_add2 (mac_addrs, ma, 1);
66  clib_memcpy (ma, mac_addr, sizeof (mac_addr));
67  }
68  else if (unformat (line_input, "next-hop %U",
69  unformat_ip4_address, &next_hop.ip4))
70  {
71  vec_add1 (next_hops, next_hop);
72  }
73  else
74  {
75  error = clib_error_return (0, "unknown input `%U'",
76  format_unformat_error, line_input);
77  goto done;
78  }
79  }
80 
81  if (vec_len (mac_addrs) == 0 || vec_len (mac_addrs) != vec_len (next_hops))
82  {
83  error = clib_error_return (0, "unknown input `%U'",
84  format_unformat_error, line_input);
85  goto done;
86  }
87 
88  /* Create / delete special interface route /32's */
89 
90  for (i = 0; i < vec_len (mac_addrs); i++)
91  {
92  fib_route_path_t *rpath;
93 
96  &next_hops[i],
97  sw_if_index, mac_addrs[i].mac_addr);
98 
99  vec_add2 (rpaths, rpath, 1);
100 
101  rpath->frp_proto = DPO_PROTO_IP4;
102  rpath->frp_addr = next_hops[i];
103  rpath->frp_sw_if_index = sw_if_index;
104  rpath->frp_fib_index = ~0;
105  rpath->frp_weight = 1;
106  rpath->frp_label_stack = NULL;
107  }
108 
109  fib_table_entry_path_add2 (0, // default FIB table
110  &prefix,
112 
113 done:
114  vec_free (mac_addrs);
115  vec_free (next_hops);
116  vec_free (rpaths);
117  unformat_free (line_input);
118 
119  return error;
120 }
121 
122 /* *INDENT-OFF* */
123 VLIB_CLI_COMMAND (virtual_ip_cmd_fn_command, static) = {
124  .path = "ip virtual",
125  .short_help = "ip virtual <addr> <interface> [mac <Mi>]+",
126  .function = virtual_ip_cmd_fn_command_fn,
127 };
128 /* *INDENT-ON* */
129 
130 /*
131  * fd.io coding-style-patch-verification: ON
132  *
133  * Local Variables:
134  * eval: (c-set-style "gnu")
135  * End:
136  */
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:212
ip46_address_t frp_addr
The next-hop address.
Definition: fib_types.h:486
A representation of a path as described by a route producer.
Definition: fib_types.h:470
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
#define NULL
Definition: clib.h:58
fib_node_index_t fib_table_entry_path_add2(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, fib_route_path_t *rpath)
Add n paths to an entry (aka route) in the FIB.
Definition: fib_table.c:556
From the CLI.
Definition: fib_entry.h:78
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:525
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:564
int i
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:983
dpo_proto_t frp_proto
The protocol of the address below.
Definition: fib_types.h:475
unformat_function_t unformat_vnet_sw_interface
adj_index_t adj_nbr_add_or_lock_w_rewrite(fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index, u8 *rewrite)
Add (and lock) a new or lock an existing neighbour adjacency.
Definition: adj_nbr.c:263
unsigned char u8
Definition: types.h:56
#define clib_memcpy(d, s, n)
Definition: string.h:180
unformat_function_t unformat_ip4_address
Definition: format.h:70
u32 frp_sw_if_index
The interface.
Definition: fib_types.h:505
u32 sw_if_index
Definition: vxlan_gbp.api:37
Aggregrate type for a prefix.
Definition: fib_types.h:203
#define clib_error_return(e, args...)
Definition: error.h:99
unsigned int u32
Definition: types.h:88
u16 fp_len
The mask length.
Definition: fib_types.h:207
Definition: fib_entry.h:275
unformat_function_t unformat_line_input
Definition: format.h:282
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:226
struct _unformat_input_t unformat_input_t
fib_mpls_label_t * frp_label_stack
The outgoing MPLS label Stack.
Definition: fib_types.h:525
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
vlib_main_t * vm
Definition: buffer.c:301
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:233
static clib_error_t * virtual_ip_cmd_fn_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: vpe_cli.c:26
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
typedef prefix
Definition: ip_types.api:35
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
u8 frp_weight
[un]equal cost path weight
Definition: fib_types.h:561
u32 frp_fib_index
The FIB index to lookup the nexthop Only valid for recursive paths.
Definition: fib_types.h:516
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170