]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/rfapi/rfapi_import.h
Merge pull request #9953 from donaldsharp/system_route_replace
[mirror_frr.git] / bgpd / rfapi / rfapi_import.h
1 /*
2 *
3 * Copyright 2009-2016, LabN Consulting, L.L.C.
4 *
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /*
22 * File: rfapi_import.h
23 * Purpose: Handle import of routes from BGP to RFAPI
24 */
25
26 #ifndef QUAGGA_HGP_RFAPI_IMPORT_H
27 #define QUAGGA_HGP_RFAPI_IMPORT_H
28
29 #include "lib/thread.h"
30
31 /*
32 * These are per-rt-import-list
33 *
34 * routes are not segregated by RD - the RD is stored in bgp_path_info_extra
35 * and is needed to determine if two prefixes are the same.
36 */
37 struct rfapi_import_table {
38 struct rfapi_import_table *next;
39 struct rfapi_nve_group_cfg *rfg;
40 struct ecommunity *rt_import_list; /* copied from nve grp */
41 int refcount; /* nve grps and nves */
42 uint32_t l2_logical_net_id; /* L2 only: EVPN Eth Seg Id */
43 struct agg_table *imported_vpn[AFI_MAX];
44 struct rfapi_monitor_vpn *vpn0_queries[AFI_MAX];
45 struct rfapi_monitor_eth *eth0_queries;
46 struct agg_table *imported_encap[AFI_MAX];
47 struct skiplist *monitor_exterior_orphans;
48 int local_count[AFI_MAX];
49 int remote_count[AFI_MAX];
50 int holddown_count[AFI_MAX];
51 int imported_count[AFI_MAX];
52 };
53
54 #define RFAPI_LOCAL_BI(bpi) \
55 (((bpi)->type == ZEBRA_ROUTE_BGP) && ((bpi)->sub_type == BGP_ROUTE_RFP))
56
57 #define RFAPI_DIRECT_IMPORT_BI(bpi) \
58 (((bpi)->type == ZEBRA_ROUTE_BGP_DIRECT) \
59 || ((bpi)->type == ZEBRA_ROUTE_BGP_DIRECT_EXT))
60
61 #define RFAPI_UPDATE_ITABLE_COUNT(bpi, itable, afi, cnt) \
62 if (RFAPI_LOCAL_BI(bpi)) { \
63 (itable)->local_count[(afi)] += (cnt); \
64 } else { \
65 if (RFAPI_DIRECT_IMPORT_BI(bpi)) \
66 (itable)->imported_count[(afi)] += (cnt); \
67 else \
68 (itable)->remote_count[(afi)] += (cnt); \
69 }
70
71 extern uint8_t rfapiRfpCost(struct attr *attr);
72
73 extern void rfapiDebugBacktrace(void);
74
75 extern void rfapiCheckRouteCount(void);
76
77 /*
78 * Print BPI in an Import Table
79 */
80 extern void rfapiPrintBi(void *stream, struct bgp_path_info *bpi);
81
82 extern void rfapiShowImportTable(void *stream, const char *label,
83 struct agg_table *rt, int isvpn);
84
85 extern struct rfapi_import_table *
86 rfapiImportTableRefAdd(struct bgp *bgp, struct ecommunity *rt_import_list,
87 struct rfapi_nve_group_cfg *rfg);
88
89 extern void rfapiImportTableRefDelByIt(struct bgp *bgp,
90 struct rfapi_import_table *it_target);
91
92
93 /*
94 * Construct an rfapi nexthop list based on the routes attached to
95 * the specified node.
96 *
97 * If there are any routes that do NOT have BGP_PATH_REMOVED set,
98 * return those only. If there are ONLY routes with BGP_INFO_REMOVED,
99 * then return those, and also include all the non-removed routes from the
100 * next less-specific node (i.e., this node's parent) at the end.
101 */
102 extern struct rfapi_next_hop_entry *rfapiRouteNode2NextHopList(
103 struct agg_node *rn, uint32_t lifetime, /* put into nexthop entries */
104 struct rfapi_ip_addr *exclude_vnaddr, /* omit routes to same NVE */
105 struct agg_table *rfd_rib_table, /* preload this NVE rib table */
106 struct prefix *pfx_target_original); /* query target */
107
108 extern struct rfapi_next_hop_entry *rfapiRouteTable2NextHopList(
109 struct agg_table *rt, uint32_t lifetime, /* put into nexthop entries */
110 struct rfapi_ip_addr *exclude_vnaddr, /* omit routes to same NVE */
111 struct agg_table *rfd_rib_table, /* preload this NVE rib table */
112 struct prefix *pfx_target_original); /* query target */
113
114 extern struct rfapi_next_hop_entry *rfapiEthRouteTable2NextHopList(
115 uint32_t logical_net_id, struct rfapi_ip_prefix *rprefix,
116 uint32_t lifetime, /* put into nexthop entries */
117 struct rfapi_ip_addr *exclude_vnaddr, /* omit routes to same NVE */
118 struct agg_table *rib_route_table, /* preload NVE rib node */
119 struct prefix *pfx_target_original); /* query target */
120
121 extern int rfapiEcommunitiesIntersect(struct ecommunity *e1,
122 struct ecommunity *e2);
123
124 extern void rfapiCheckRefcount(struct agg_node *rn, safi_t safi,
125 int lockoffset);
126
127 extern int rfapiHasNonRemovedRoutes(struct agg_node *rn);
128
129 extern int rfapiGetUnAddrOfVpnBi(struct bgp_path_info *bpi, struct prefix *p);
130
131 extern void rfapiNexthop2Prefix(struct attr *attr, struct prefix *p);
132
133 extern void rfapiUnicastNexthop2Prefix(afi_t afi, struct attr *attr,
134 struct prefix *p);
135
136 /* Filtered Import Function actions */
137 #define FIF_ACTION_UPDATE 0
138 #define FIF_ACTION_WITHDRAW 1
139 #define FIF_ACTION_KILL 2
140
141 extern void rfapiBgpInfoFilteredImportVPN(
142 struct rfapi_import_table *import_table, int action, struct peer *peer,
143 void *rfd, /* set for looped back routes */
144 const struct prefix *p,
145 const struct prefix *aux_prefix, /* AFI_ETHER: optional IP */
146 afi_t afi, struct prefix_rd *prd,
147 struct attr *attr, /* part of bgp_path_info */
148 uint8_t type, /* part of bgp_path_info */
149 uint8_t sub_type, /* part of bgp_path_info */
150 uint32_t *label); /* part of bgp_path_info */
151
152 extern struct rfapi_next_hop_entry *rfapiEthRouteNode2NextHopList(
153 struct agg_node *rn, struct rfapi_ip_prefix *rprefix,
154 uint32_t lifetime, /* put into nexthop entries */
155 struct rfapi_ip_addr *exclude_vnaddr, /* omit routes to same NVE */
156 struct agg_table *rib_route_table, /* preload NVE rib table */
157 struct prefix *pfx_target_original); /* query target */
158
159 extern struct rfapi_import_table *rfapiMacImportTableGetNoAlloc(struct bgp *bgp,
160 uint32_t lni);
161
162 extern struct rfapi_import_table *rfapiMacImportTableGet(struct bgp *bgp,
163 uint32_t lni);
164
165 extern int rfapiGetL2o(struct attr *attr, struct rfapi_l2address_option *l2o);
166
167 extern int rfapiEcommunityGetLNI(struct ecommunity *ecom, uint32_t *lni);
168
169 extern int rfapiEcommunityGetEthernetTag(struct ecommunity *ecom,
170 uint16_t *tag_id);
171
172 /* enable for debugging; disable for performance */
173 #if 0
174 #define RFAPI_CHECK_REFCOUNT(rn, safi, lo) rfapiCheckRefcount((rn),(safi),(lo))
175 #else
176 #define RFAPI_CHECK_REFCOUNT(rn, safi, lo) {}
177 #endif
178
179 /*------------------------------------------
180 * rfapiDeleteRemotePrefixes
181 *
182 * UI helper: For use by the "clear vnc prefixes" command
183 *
184 * input:
185 * un if set, tunnel must match this prefix
186 * vn if set, nexthop prefix must match this prefix
187 * p if set, prefix must match this prefix
188 * it if set, only look in this import table
189 *
190 * output
191 * pARcount number of active routes deleted
192 * pAHcount number of active nves deleted
193 * pHRcount number of holddown routes deleted
194 * pHHcount number of holddown nves deleted
195 *
196 * return value:
197 * void
198 --------------------------------------------*/
199 extern void rfapiDeleteRemotePrefixes(struct prefix *un, struct prefix *vn,
200 struct prefix *p,
201 struct rfapi_import_table *it,
202 int delete_active, int delete_holddown,
203 uint32_t *pARcount, /* active routes */
204 uint32_t *pAHcount, /* active nves */
205 uint32_t *pHRcount, /* holddown routes */
206 uint32_t *pHHcount); /* holddown nves */
207
208 /*------------------------------------------
209 * rfapiCountAllItRoutes
210 *
211 * UI helper: count VRF routes from BGP side
212 *
213 * input:
214 *
215 * output
216 * pARcount count of active routes
217 * pHRcount count of holddown routes
218 * pIRcount count of holddown routes
219 *
220 * return value:
221 * void
222 --------------------------------------------*/
223 extern void rfapiCountAllItRoutes(int *pALRcount, /* active local routes */
224 int *pARRcount, /* active remote routes */
225 int *pHRcount, /* holddown routes */
226 int *pIRcount); /* direct imported routes */
227
228 /*------------------------------------------
229 * rfapiGetHolddownFromLifetime
230 *
231 * calculate holddown value based on lifetime
232 *
233 * input:
234 * lifetime lifetime
235 *
236 * return value:
237 * Holddown value based on lifetime, holddown_factor,
238 * and RFAPI_LIFETIME_INFINITE_WITHDRAW_DELAY
239 *
240 --------------------------------------------*/
241 extern uint32_t rfapiGetHolddownFromLifetime(uint32_t lifetime);
242
243 #endif /* QUAGGA_HGP_RFAPI_IMPORT_H */