bgpd: tighten bounds checking in RR ORF msg reader
[jleu-quagga.git] / bgpd / bgp_route.h
blob5eed3486d1083af20badc7ab1ef66d251657e56b
1 /* BGP routing information base
2 Copyright (C) 1996, 97, 98, 2000 Kunihiro Ishiguro
4 This file is part of GNU Zebra.
6 GNU Zebra is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
11 GNU Zebra is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Zebra; see the file COPYING. If not, write to the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
21 #ifndef _QUAGGA_BGP_ROUTE_H
22 #define _QUAGGA_BGP_ROUTE_H
24 #include "bgp_table.h"
26 /* Ancillary information to struct bgp_info,
27 * used for uncommonly used data (aggregation, MPLS, etc.)
28 * and lazily allocated to save memory.
30 struct bgp_info_extra
32 /* Pointer to dampening structure. */
33 struct bgp_damp_info *damp_info;
35 /* This route is suppressed with aggregation. */
36 int suppress;
38 /* Nexthop reachability check. */
39 u_int32_t igpmetric;
41 /* MPLS label. */
42 u_char tag[3];
45 struct bgp_info
47 /* For linked list. */
48 struct bgp_info *next;
49 struct bgp_info *prev;
51 /* Peer structure. */
52 struct peer *peer;
54 /* Attribute structure. */
55 struct attr *attr;
57 /* Extra information */
58 struct bgp_info_extra *extra;
60 /* Uptime. */
61 time_t uptime;
63 /* reference count */
64 int lock;
66 /* BGP information status. */
67 u_int16_t flags;
68 #define BGP_INFO_IGP_CHANGED (1 << 0)
69 #define BGP_INFO_DAMPED (1 << 1)
70 #define BGP_INFO_HISTORY (1 << 2)
71 #define BGP_INFO_SELECTED (1 << 3)
72 #define BGP_INFO_VALID (1 << 4)
73 #define BGP_INFO_ATTR_CHANGED (1 << 5)
74 #define BGP_INFO_DMED_CHECK (1 << 6)
75 #define BGP_INFO_DMED_SELECTED (1 << 7)
76 #define BGP_INFO_STALE (1 << 8)
77 #define BGP_INFO_REMOVED (1 << 9)
78 #define BGP_INFO_COUNTED (1 << 10)
80 /* BGP route type. This can be static, RIP, OSPF, BGP etc. */
81 u_char type;
83 /* When above type is BGP. This sub type specify BGP sub type
84 information. */
85 u_char sub_type;
86 #define BGP_ROUTE_NORMAL 0
87 #define BGP_ROUTE_STATIC 1
88 #define BGP_ROUTE_AGGREGATE 2
89 #define BGP_ROUTE_REDISTRIBUTE 3
92 /* BGP static route configuration. */
93 struct bgp_static
95 /* Backdoor configuration. */
96 int backdoor;
98 /* Import check status. */
99 u_char valid;
101 /* IGP metric. */
102 u_int32_t igpmetric;
104 /* IGP nexthop. */
105 struct in_addr igpnexthop;
107 /* Atomic set reference count (ie cause of pathlimit) */
108 u_int32_t atomic;
110 /* BGP redistribute route-map. */
111 struct
113 char *name;
114 struct route_map *map;
115 } rmap;
117 /* MPLS label. */
118 u_char tag[3];
120 /* AS-Pathlimit TTL */
121 u_char ttl;
124 /* Flags which indicate a route is unuseable in some form */
125 #define BGP_INFO_UNUSEABLE \
126 (BGP_INFO_HISTORY|BGP_INFO_DAMPED|BGP_INFO_REMOVED)
127 /* Macro to check BGP information is alive or not. Sadly,
128 * not equivalent to just checking previous, because of the
129 * sense of the additional VALID flag.
131 #define BGP_INFO_HOLDDOWN(BI) \
132 (! CHECK_FLAG ((BI)->flags, BGP_INFO_VALID) \
133 || CHECK_FLAG ((BI)->flags, BGP_INFO_UNUSEABLE))
135 #define DISTRIBUTE_IN_NAME(F) ((F)->dlist[FILTER_IN].name)
136 #define DISTRIBUTE_IN(F) ((F)->dlist[FILTER_IN].alist)
137 #define DISTRIBUTE_OUT_NAME(F) ((F)->dlist[FILTER_OUT].name)
138 #define DISTRIBUTE_OUT(F) ((F)->dlist[FILTER_OUT].alist)
140 #define PREFIX_LIST_IN_NAME(F) ((F)->plist[FILTER_IN].name)
141 #define PREFIX_LIST_IN(F) ((F)->plist[FILTER_IN].plist)
142 #define PREFIX_LIST_OUT_NAME(F) ((F)->plist[FILTER_OUT].name)
143 #define PREFIX_LIST_OUT(F) ((F)->plist[FILTER_OUT].plist)
145 #define FILTER_LIST_IN_NAME(F) ((F)->aslist[FILTER_IN].name)
146 #define FILTER_LIST_IN(F) ((F)->aslist[FILTER_IN].aslist)
147 #define FILTER_LIST_OUT_NAME(F) ((F)->aslist[FILTER_OUT].name)
148 #define FILTER_LIST_OUT(F) ((F)->aslist[FILTER_OUT].aslist)
150 #define ROUTE_MAP_IN_NAME(F) ((F)->map[RMAP_IN].name)
151 #define ROUTE_MAP_IN(F) ((F)->map[RMAP_IN].map)
152 #define ROUTE_MAP_OUT_NAME(F) ((F)->map[RMAP_OUT].name)
153 #define ROUTE_MAP_OUT(F) ((F)->map[RMAP_OUT].map)
155 #define ROUTE_MAP_IMPORT_NAME(F) ((F)->map[RMAP_IMPORT].name)
156 #define ROUTE_MAP_IMPORT(F) ((F)->map[RMAP_IMPORT].map)
157 #define ROUTE_MAP_EXPORT_NAME(F) ((F)->map[RMAP_EXPORT].name)
158 #define ROUTE_MAP_EXPORT(F) ((F)->map[RMAP_EXPORT].map)
160 #define UNSUPPRESS_MAP_NAME(F) ((F)->usmap.name)
161 #define UNSUPPRESS_MAP(F) ((F)->usmap.map)
163 enum bgp_clear_route_type
165 BGP_CLEAR_ROUTE_NORMAL,
166 BGP_CLEAR_ROUTE_MY_RSCLIENT
169 /* Prototypes. */
170 extern void bgp_route_init (void);
171 extern void bgp_route_finish (void);
172 extern void bgp_cleanup_routes (void);
173 extern void bgp_announce_route (struct peer *, afi_t, safi_t);
174 extern void bgp_announce_route_all (struct peer *);
175 extern void bgp_default_originate (struct peer *, afi_t, safi_t, int);
176 extern void bgp_soft_reconfig_in (struct peer *, afi_t, safi_t);
177 extern void bgp_soft_reconfig_rsclient (struct peer *, afi_t, safi_t);
178 extern void bgp_check_local_routes_rsclient (struct peer *rsclient, afi_t afi, safi_t safi);
179 extern void bgp_clear_route (struct peer *, afi_t, safi_t,
180 enum bgp_clear_route_type);
181 extern void bgp_clear_route_all (struct peer *);
182 extern void bgp_clear_adj_in (struct peer *, afi_t, safi_t);
183 extern void bgp_clear_stale_route (struct peer *, afi_t, safi_t);
185 extern struct bgp_info *bgp_info_lock (struct bgp_info *);
186 extern struct bgp_info *bgp_info_unlock (struct bgp_info *);
187 extern void bgp_info_add (struct bgp_node *rn, struct bgp_info *ri);
188 extern void bgp_info_delete (struct bgp_node *rn, struct bgp_info *ri);
189 extern struct bgp_info_extra *bgp_info_extra_get (struct bgp_info *);
190 extern void bgp_info_set_flag (struct bgp_node *, struct bgp_info *, u_int32_t);
191 extern void bgp_info_unset_flag (struct bgp_node *, struct bgp_info *, u_int32_t);
193 extern int bgp_nlri_sanity_check (struct peer *, int, u_char *, bgp_size_t);
194 extern int bgp_nlri_parse (struct peer *, struct attr *, struct bgp_nlri *);
196 extern int bgp_maximum_prefix_overflow (struct peer *, afi_t, safi_t, int);
198 extern void bgp_redistribute_add (struct prefix *, struct in_addr *, u_int32_t, u_char);
199 extern void bgp_redistribute_delete (struct prefix *, u_char);
200 extern void bgp_redistribute_withdraw (struct bgp *, afi_t, int);
202 extern void bgp_static_delete (struct bgp *);
203 extern void bgp_static_update (struct bgp *, struct prefix *, struct bgp_static *,
204 afi_t, safi_t);
205 extern void bgp_static_withdraw (struct bgp *, struct prefix *, afi_t, safi_t);
207 extern int bgp_static_set_vpnv4 (struct vty *vty, const char *,
208 const char *, const char *);
210 extern int bgp_static_unset_vpnv4 (struct vty *, const char *,
211 const char *, const char *);
213 /* this is primarily for MPLS-VPN */
214 extern int bgp_update (struct peer *, struct prefix *, struct attr *,
215 afi_t, safi_t, int, int, struct prefix_rd *,
216 u_char *, int);
217 extern int bgp_withdraw (struct peer *, struct prefix *, struct attr *,
218 afi_t, safi_t, int, int, struct prefix_rd *, u_char *);
220 /* for bgp_nexthop and bgp_damp */
221 extern void bgp_process (struct bgp *, struct bgp_node *, afi_t, safi_t);
222 extern int bgp_config_write_network (struct vty *, struct bgp *, afi_t, safi_t, int *);
223 extern int bgp_config_write_distance (struct vty *, struct bgp *);
225 extern void bgp_aggregate_increment (struct bgp *, struct prefix *, struct bgp_info *,
226 afi_t, safi_t);
227 extern void bgp_aggregate_decrement (struct bgp *, struct prefix *, struct bgp_info *,
228 afi_t, safi_t);
230 extern u_char bgp_distance_apply (struct prefix *, struct bgp_info *, struct bgp *);
232 extern afi_t bgp_node_afi (struct vty *);
233 extern safi_t bgp_node_safi (struct vty *);
235 extern void route_vty_out (struct vty *, struct prefix *, struct bgp_info *, int, safi_t);
236 extern void route_vty_out_tag (struct vty *, struct prefix *, struct bgp_info *, int, safi_t);
237 extern void route_vty_out_tmp (struct vty *, struct prefix *, struct attr *, safi_t);
239 #endif /* _QUAGGA_BGP_ROUTE_H */