Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1 | /* |
| 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 | * @file |
| 17 | * @brief Common utility functions for IPv4, IPv6 and L2 LISP-GPE adjacencys. |
| 18 | * |
| 19 | */ |
| 20 | |
| 21 | #ifndef LISP_GPE_ADJACENCY_H__ |
| 22 | #define LISP_GPE_ADJACENCY_H__ |
| 23 | |
| 24 | #include <vnet/fib/fib_node.h> |
| 25 | #include <vnet/lisp-gpe/lisp_gpe.h> |
| 26 | |
| 27 | /** |
| 28 | * @brief A LISP GPE Adjacency. |
| 29 | * |
| 30 | * A adjacency represents peer on an L3 sub-interface to which to send traffic. |
| 31 | * adjacencies are thus present in the EID space. |
| 32 | * The peer is identified by the key:{remote-rloc, sub-interface}, which is |
| 33 | * equivalent to the usal adjacency key {next-hop, interface}. So curiously |
| 34 | * the rloc address from the underlay is used as a next hop address in the overlay |
| 35 | * This is OK because: |
| 36 | * 1 - the RLOC is unique in the underlay AND there is only one underlay VRF per |
| 37 | * overlay |
| 38 | * 2 - the RLOC may overlap with an address in the overlay, but we do not create |
| 39 | * an adj-fib (i.e. a route in the overlay FIB for the rloc) |
| 40 | * |
| 41 | * |
| 42 | */ |
| 43 | typedef struct lisp_gpe_adjacency_t_ |
| 44 | { |
| 45 | /** |
| 46 | * The LISP adj is a part of the FIB control plane graph. |
| 47 | */ |
| 48 | fib_node_t fib_node; |
| 49 | |
| 50 | /** |
| 51 | * remote RLOC. The adjacency's next-hop |
| 52 | */ |
| 53 | ip_address_t remote_rloc; |
| 54 | |
| 55 | /** |
| 56 | * The VNI. Used in combination with the local-rloc to get the sub-interface |
| 57 | */ |
| 58 | u32 vni; |
| 59 | |
| 60 | /** |
| 61 | * The number of locks/reference counts on the adjacency. |
| 62 | */ |
| 63 | u32 locks; |
| 64 | |
| 65 | /** |
| 66 | * The index of the LISP L3 subinterface |
| 67 | */ |
| 68 | u32 lisp_l3_sub_index; |
| 69 | |
| 70 | /** |
| 71 | * The SW IF index of the sub-interface this adjacency uses. |
| 72 | * Cached for convenience from the LISP L3 sub-interface |
| 73 | */ |
| 74 | u32 sw_if_index; |
| 75 | |
| 76 | /** |
| 77 | * The index of the LISP GPE tunnel that provides the transport |
| 78 | * in the underlay. |
| 79 | */ |
| 80 | u32 tunnel_index; |
| 81 | |
| 82 | /** |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 83 | * This adjacency is a child of the FIB entry to reach the RLOC. |
| 84 | * This is so when the reachability of that RLOC changes, we can restack |
| 85 | * the FIB adjacnecies. |
| 86 | */ |
| 87 | u32 fib_entry_child_index; |
| 88 | |
| 89 | /** |
| 90 | * LISP header fields in HOST byte order |
| 91 | */ |
| 92 | u8 flags; |
| 93 | u8 ver_res; |
| 94 | u8 res; |
| 95 | u8 next_protocol; |
| 96 | |
| 97 | } lisp_gpe_adjacency_t; |
| 98 | |
| 99 | extern index_t lisp_gpe_adjacency_find_or_create_and_lock (const |
| 100 | locator_pair_t * |
| 101 | pair, |
| 102 | u32 rloc_fib_index, |
| 103 | u32 vni); |
| 104 | |
| 105 | extern void lisp_gpe_adjacency_unlock (index_t l3si); |
| 106 | |
| 107 | extern const lisp_gpe_adjacency_t *lisp_gpe_adjacency_get (index_t l3si); |
| 108 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 109 | extern void lisp_gpe_update_adjacency (vnet_main_t * vnm, |
| 110 | u32 sw_if_index, adj_index_t ai); |
| 111 | extern u8 *lisp_gpe_build_rewrite (vnet_main_t * vnm, |
| 112 | u32 sw_if_index, |
| 113 | vnet_link_t link_type, |
| 114 | const void *dst_address); |
| 115 | |
| 116 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 117 | /** |
| 118 | * @brief Flags for displaying the adjacency |
| 119 | */ |
| 120 | typedef enum lisp_gpe_adjacency_format_flags_t_ |
| 121 | { |
| 122 | LISP_GPE_ADJ_FORMAT_FLAG_NONE, |
| 123 | LISP_GPE_ADJ_FORMAT_FLAG_DETAIL, |
| 124 | } lisp_gpe_adjacency_format_flags_t; |
| 125 | |
| 126 | extern u8 *format_lisp_gpe_adjacency (u8 * s, va_list * args); |
| 127 | |
| 128 | #endif |
| 129 | |
| 130 | /* |
| 131 | * fd.io coding-style-patch-verification: ON |
| 132 | * |
| 133 | * Local Variables: |
| 134 | * eval: (c-set-style "gnu") |
| 135 | * End: |
| 136 | */ |