blob: 2c123c542a1c87f02530ee3f5b2c8e3a789dfbd8 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * Copyright (c) 2016 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
16#ifndef __ADJ_INTERNAL_H__
17#define __ADJ_INTERNAL_H__
18
19#include <vnet/adj/adj.h>
Neale Ranns0f26c5a2017-03-01 15:12:11 -080020#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010021#include <vnet/ip/ip.h>
22#include <vnet/mpls/mpls.h>
Neale Ranns5e575b12016-10-03 09:40:25 +010023#include <vnet/adj/adj_l2.h>
Florin Corasce1b4c72017-01-26 14:25:34 -080024#include <vnet/adj/adj_nsh.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010025
26/**
27 * big switch to turn on Adjacency debugging
28 */
29#undef ADJ_DEBUG
30
31/*
32 * Debug macro
33 */
34#ifdef ADJ_DEBUG
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010035#define ADJ_DBG(_adj, _fmt, _args...) \
36{ \
37 clib_warning("adj:[%d:%p]:" _fmt, \
38 _adj - adj_pool, _adj, \
39 ##_args); \
Neale Ranns0bfe5d82016-08-25 15:29:12 +010040}
41#else
42#define ADJ_DBG(_e, _fmt, _args...)
43#endif
44
Neale Rannsb80c5362016-10-08 13:03:40 +010045static inline u32
Neale Ranns924d03a2016-10-19 08:25:46 +010046adj_get_rewrite_node (vnet_link_t linkt)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047{
48 switch (linkt) {
Neale Ranns924d03a2016-10-19 08:25:46 +010049 case VNET_LINK_IP4:
Neale Rannsb80c5362016-10-08 13:03:40 +010050 return (ip4_rewrite_node.index);
Neale Ranns924d03a2016-10-19 08:25:46 +010051 case VNET_LINK_IP6:
Neale Rannsb80c5362016-10-08 13:03:40 +010052 return (ip6_rewrite_node.index);
Neale Ranns924d03a2016-10-19 08:25:46 +010053 case VNET_LINK_MPLS:
Neale Rannsb80c5362016-10-08 13:03:40 +010054 return (mpls_output_node.index);
Neale Ranns924d03a2016-10-19 08:25:46 +010055 case VNET_LINK_ETHERNET:
Neale Rannsb80c5362016-10-08 13:03:40 +010056 return (adj_l2_rewrite_node.index);
Florin Corasce1b4c72017-01-26 14:25:34 -080057 case VNET_LINK_NSH:
58 return (adj_nsh_rewrite_node.index);
Neale Ranns924d03a2016-10-19 08:25:46 +010059 case VNET_LINK_ARP:
Neale Ranns5e575b12016-10-03 09:40:25 +010060 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010061 }
Neale Ranns924d03a2016-10-19 08:25:46 +010062 ASSERT(0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010063 return (0);
64}
65
Neale Rannsb80c5362016-10-08 13:03:40 +010066static inline vnet_link_t
Neale Ranns0bfe5d82016-08-25 15:29:12 +010067adj_fib_proto_2_nd (fib_protocol_t fp)
68{
69 switch (fp)
70 {
71 case FIB_PROTOCOL_IP4:
Neale Rannsb80c5362016-10-08 13:03:40 +010072 return (VNET_LINK_ARP);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010073 case FIB_PROTOCOL_IP6:
Neale Rannsb80c5362016-10-08 13:03:40 +010074 return (VNET_LINK_IP6);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010075 case FIB_PROTOCOL_MPLS:
Neale Rannsb80c5362016-10-08 13:03:40 +010076 return (VNET_LINK_MPLS);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010077 }
78 return (0);
79}
80
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010081/**
82 * @brief
83 * Get a pointer to an adjacency object from its index
84 */
85static inline adj_index_t
86adj_get_index (ip_adjacency_t *adj)
87{
88 return (adj - adj_pool);
89}
90
Neale Ranns0f26c5a2017-03-01 15:12:11 -080091extern void adj_nbr_update_rewrite_internal(ip_adjacency_t *adj,
92 ip_lookup_next_t adj_next_index,
93 u32 complete_next_index,
94 u32 next_index,
95 u8 *rewrite);
96extern void adj_midchain_setup(adj_index_t adj_index,
97 adj_midchain_fixup_t fixup,
98 adj_flags_t flags);
Neale Rannsb80c5362016-10-08 13:03:40 +010099
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100100extern ip_adjacency_t * adj_alloc(fib_protocol_t proto);
101
Neale Ranns177bbdc2016-11-15 09:46:51 +0000102extern void adj_nbr_remove(adj_index_t ai,
103 fib_protocol_t nh_proto,
Neale Ranns924d03a2016-10-19 08:25:46 +0100104 vnet_link_t link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100105 const ip46_address_t *nh_addr,
106 u32 sw_if_index);
107extern void adj_glean_remove(fib_protocol_t proto,
108 u32 sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000109extern void adj_mcast_remove(fib_protocol_t proto,
110 u32 sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100111
112#endif