FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
teib_api.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * teib_api.c - teib api
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19 
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22 
23 #include <vnet/api_errno.h>
24 #include <vnet/teib/teib.h>
25 #include <vnet/ip/ip_types_api.h>
26 #include <vnet/fib/fib_table.h>
27 
28 /* define message IDs */
29 #include <vnet/format_fns.h>
30 #include <vnet/teib/teib.api_enum.h>
31 #include <vnet/teib/teib.api_types.h>
32 
34 #define REPLY_MSG_ID_BASE teib_base_msg_id
35 
37 
38 static void
40 {
41  vl_api_teib_entry_add_del_reply_t *rmp;
42  ip46_address_t peer, nh;
43  int rv;
44 
45  VALIDATE_SW_IF_INDEX ((&mp->entry));
46 
47  ip_address_decode (&mp->entry.peer, &peer);
48  ip_address_decode (&mp->entry.nh, &nh);
49 
50  if (mp->is_add)
51  rv = teib_entry_add (ntohl (mp->entry.sw_if_index), &peer,
52  ntohl (mp->entry.nh_table_id), &nh);
53  else
54  rv = teib_entry_del (ntohl (mp->entry.sw_if_index), &peer);
55 
57 
58  REPLY_MACRO (VL_API_TEIB_ENTRY_ADD_DEL_REPLY);
59 }
60 
61 typedef struct vl_api_teib_send_t_
62 {
66 
67 static walk_rc_t
68 vl_api_teib_send_one (index_t nei, void *arg)
69 {
71  vl_api_teib_send_t *ctx = arg;
72  const teib_entry_t *ne;
73  const fib_prefix_t *pfx;
74 
75  mp = vl_msg_api_alloc_zero (sizeof (*mp));
76  mp->_vl_msg_id = ntohs (VL_API_TEIB_DETAILS + REPLY_MSG_ID_BASE);
77  mp->context = ctx->context;
78 
79  ne = teib_entry_get (nei);
80  pfx = teib_entry_get_nh (ne);
81 
83  &mp->entry.peer);
84  ip_address_encode (&pfx->fp_addr, IP46_TYPE_ANY, &mp->entry.nh);
85  mp->entry.nh_table_id =
87  (teib_entry_get_fib_index (ne), pfx->fp_proto));
88  mp->entry.sw_if_index = htonl (teib_entry_get_sw_if_index (ne));
89 
90  vl_api_send_msg (ctx->reg, (u8 *) mp);
91 
92  return (WALK_CONTINUE);
93 }
94 
95 static void
97 {
99 
101  if (!reg)
102  return;
103 
105  .reg = reg,
106  .context = mp->context,
107  };
108 
110 }
111 
112 /*
113  * teib_api_hookup
114  * Add vpe's API message handlers to the table.
115  * vlib has already mapped shared memory and
116  * added the client registration handlers.
117  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
118  */
119 #include <vnet/teib/teib.api.c>
120 
121 static clib_error_t *
123 {
125 
126  return (NULL);
127 }
128 
130 
131 /*
132  * fd.io coding-style-patch-verification: ON
133  *
134  * Local Variables:
135  * eval: (c-set-style "gnu")
136  * End:
137  */
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:212
int teib_entry_del(u32 sw_if_index, const ip46_address_t *peer)
Definition: teib.c:153
Definition: teib.api:33
teib_entry_t * teib_entry_get(index_t tei)
Definition: teib.c:80
vl_api_fib_path_nh_t nh
Definition: fib_types.api:126
void teib_walk(teib_walk_cb_t fn, void *ctx)
Definition: teib.c:196
static walk_rc_t vl_api_teib_send_one(index_t nei, void *arg)
Definition: teib_api.c:68
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:35
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
void * vl_msg_api_alloc_zero(int nbytes)
static void vl_api_teib_entry_add_del_t_handler(vl_api_teib_entry_add_del_t *mp)
Definition: teib_api.c:39
const ip46_address_t * teib_entry_get_peer(const teib_entry_t *te)
Definition: teib.c:62
unsigned char u8
Definition: types.h:56
u32 teib_entry_get_fib_index(const teib_entry_t *te)
Definition: teib.c:56
enum walk_rc_t_ walk_rc_t
Walk return code.
struct vl_api_teib_send_t_ vl_api_teib_send_t
Aggregate type for a prefix.
Definition: fib_types.h:203
unsigned int u32
Definition: types.h:88
ip46_type_t ip_address_decode(const vl_api_address_t *in, ip46_address_t *out)
Decode/Encode for struct/union types.
Definition: ip_types_api.c:160
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:226
u32 teib_entry_get_sw_if_index(const teib_entry_t *te)
accessors for the opaque struct
Definition: teib.c:50
static void vl_api_teib_dump_t_handler(vl_api_teib_dump_t *mp)
Definition: teib_api.c:96
long ctx[MAX_CONNS]
Definition: main.c:144
VLIB_API_INIT_FUNCTION(teib_api_hookup)
vl_api_teib_entry_t entry
Definition: teib.api:50
#define REPLY_MSG_ID_BASE
Definition: teib_api.c:34
#define REPLY_MACRO(t)
vlib_main_t * vm
Definition: in2out_ed.c:1599
vl_api_address_t peer
Definition: teib.api:28
static clib_error_t * teib_api_hookup(vlib_main_t *vm)
Definition: teib_api.c:122
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
#define BAD_SW_IF_INDEX_LABEL
Definition: teib.c:29
vl_api_registration_t * reg
Definition: teib_api.c:63
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:57
static u32 teib_base_msg_id
Definition: teib_api.c:33
u32 fib_table_get_table_id(u32 fib_index, fib_protocol_t proto)
Get the Table-ID of the FIB from protocol and index.
Definition: fib_table.c:1086
int teib_entry_add(u32 sw_if_index, const ip46_address_t *peer, u32 nh_table_id, const ip46_address_t *nh)
Create a new TEIB entry.
Definition: teib.c:103
vl_api_teib_entry_t entry
Definition: teib.api:38
void ip_address_encode(const ip46_address_t *in, ip46_type_t type, vl_api_address_t *out)
Definition: ip_types_api.c:194
static void setup_message_id_table(snat_main_t *sm, api_main_t *am)
Definition: nat_api.c:3256
u8 is_add
Definition: teib.api:37
#define VALIDATE_SW_IF_INDEX(mp)
const fib_prefix_t * teib_entry_get_nh(const teib_entry_t *te)
Definition: teib.c:68