blob: 0c96a79c94766113be271b6ee04289202318d51d [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* BGP routing information base
2 Copyright (C) 1996, 97, 98, 2000 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
20
paul00d252c2005-05-23 14:19:54 +000021#ifndef _QUAGGA_BGP_ROUTE_H
22#define _QUAGGA_BGP_ROUTE_H
23
paul718e3742002-12-13 20:15:29 +000024struct bgp_info
25{
26 /* For linked list. */
27 struct bgp_info *next;
28 struct bgp_info *prev;
29
30 /* BGP route type. This can be static, RIP, OSPF, BGP etc. */
31 u_char type;
32
33 /* When above type is BGP. This sub type specify BGP sub type
34 information. */
35 u_char sub_type;
36#define BGP_ROUTE_NORMAL 0
37#define BGP_ROUTE_STATIC 1
38#define BGP_ROUTE_AGGREGATE 2
39#define BGP_ROUTE_REDISTRIBUTE 3
40
41 /* BGP information status. */
hasso93406d82005-02-02 14:40:33 +000042 u_int16_t flags;
paul718e3742002-12-13 20:15:29 +000043#define BGP_INFO_IGP_CHANGED (1 << 0)
44#define BGP_INFO_DAMPED (1 << 1)
45#define BGP_INFO_HISTORY (1 << 2)
46#define BGP_INFO_SELECTED (1 << 3)
47#define BGP_INFO_VALID (1 << 4)
48#define BGP_INFO_ATTR_CHANGED (1 << 5)
49#define BGP_INFO_DMED_CHECK (1 << 6)
50#define BGP_INFO_DMED_SELECTED (1 << 7)
hasso93406d82005-02-02 14:40:33 +000051#define BGP_INFO_STALE (1 << 8)
paul718e3742002-12-13 20:15:29 +000052
53 /* Peer structure. */
54 struct peer *peer;
55
56 /* Attribute structure. */
57 struct attr *attr;
58
59 /* This route is suppressed with aggregation. */
60 int suppress;
61
62 /* Nexthop reachability check. */
63 u_int32_t igpmetric;
64
65 /* Uptime. */
66 time_t uptime;
67
68 /* Pointer to dampening structure. */
69 struct bgp_damp_info *damp_info;
70
71 /* MPLS label. */
72 u_char tag[3];
73};
74
75/* BGP static route configuration. */
76struct bgp_static
77{
78 /* Backdoor configuration. */
79 int backdoor;
80
81 /* Import check status. */
82 u_char valid;
83
84 /* IGP metric. */
85 u_int32_t igpmetric;
86
87 /* IGP nexthop. */
88 struct in_addr igpnexthop;
89
90 /* BGP redistribute route-map. */
91 struct
92 {
93 char *name;
94 struct route_map *map;
95 } rmap;
96
97 /* MPLS label. */
98 u_char tag[3];
99};
100
101#define DISTRIBUTE_IN_NAME(F) ((F)->dlist[FILTER_IN].name)
102#define DISTRIBUTE_IN(F) ((F)->dlist[FILTER_IN].alist)
103#define DISTRIBUTE_OUT_NAME(F) ((F)->dlist[FILTER_OUT].name)
104#define DISTRIBUTE_OUT(F) ((F)->dlist[FILTER_OUT].alist)
105
106#define PREFIX_LIST_IN_NAME(F) ((F)->plist[FILTER_IN].name)
107#define PREFIX_LIST_IN(F) ((F)->plist[FILTER_IN].plist)
108#define PREFIX_LIST_OUT_NAME(F) ((F)->plist[FILTER_OUT].name)
109#define PREFIX_LIST_OUT(F) ((F)->plist[FILTER_OUT].plist)
110
111#define FILTER_LIST_IN_NAME(F) ((F)->aslist[FILTER_IN].name)
112#define FILTER_LIST_IN(F) ((F)->aslist[FILTER_IN].aslist)
113#define FILTER_LIST_OUT_NAME(F) ((F)->aslist[FILTER_OUT].name)
114#define FILTER_LIST_OUT(F) ((F)->aslist[FILTER_OUT].aslist)
115
paulfee0f4c2004-09-13 05:12:46 +0000116#define ROUTE_MAP_IN_NAME(F) ((F)->map[RMAP_IN].name)
117#define ROUTE_MAP_IN(F) ((F)->map[RMAP_IN].map)
118#define ROUTE_MAP_OUT_NAME(F) ((F)->map[RMAP_OUT].name)
119#define ROUTE_MAP_OUT(F) ((F)->map[RMAP_OUT].map)
120
121#define ROUTE_MAP_IMPORT_NAME(F) ((F)->map[RMAP_IMPORT].name)
122#define ROUTE_MAP_IMPORT(F) ((F)->map[RMAP_IMPORT].map)
123#define ROUTE_MAP_EXPORT_NAME(F) ((F)->map[RMAP_EXPORT].name)
124#define ROUTE_MAP_EXPORT(F) ((F)->map[RMAP_EXPORT].map)
paul718e3742002-12-13 20:15:29 +0000125
126#define UNSUPPRESS_MAP_NAME(F) ((F)->usmap.name)
127#define UNSUPPRESS_MAP(F) ((F)->usmap.map)
128
129/* Prototypes. */
130void bgp_route_init ();
paul545acaf2004-04-20 15:13:15 +0000131void bgp_cleanup_routes (void);
paul718e3742002-12-13 20:15:29 +0000132void bgp_announce_route (struct peer *, afi_t, safi_t);
133void bgp_announce_route_all (struct peer *);
134void bgp_default_originate (struct peer *, afi_t, safi_t, int);
135void bgp_soft_reconfig_in (struct peer *, afi_t, safi_t);
paulfee0f4c2004-09-13 05:12:46 +0000136void bgp_soft_reconfig_rsclient (struct peer *, afi_t, safi_t);
137void bgp_check_local_routes_rsclient (struct peer *rsclient, afi_t afi, safi_t safi);
paul718e3742002-12-13 20:15:29 +0000138void bgp_clear_route (struct peer *, afi_t, safi_t);
139void bgp_clear_route_all (struct peer *);
140void bgp_clear_adj_in (struct peer *, afi_t, safi_t);
hasso93406d82005-02-02 14:40:33 +0000141void bgp_clear_stale_route (struct peer *, afi_t, safi_t);
paul718e3742002-12-13 20:15:29 +0000142
143int bgp_nlri_sanity_check (struct peer *, int, u_char *, bgp_size_t);
144int bgp_nlri_parse (struct peer *, struct attr *, struct bgp_nlri *);
145
hassoe0701b72004-05-20 09:19:34 +0000146int bgp_maximum_prefix_overflow (struct peer *, afi_t, safi_t, int);
paul718e3742002-12-13 20:15:29 +0000147
148void bgp_redistribute_add (struct prefix *, struct in_addr *, u_int32_t, u_char);
149void bgp_redistribute_delete (struct prefix *, u_char);
150void bgp_redistribute_withdraw (struct bgp *, afi_t, int);
151
152void bgp_static_delete (struct bgp *);
153void bgp_static_update (struct bgp *, struct prefix *, struct bgp_static *,
154 afi_t, safi_t);
155void bgp_static_withdraw (struct bgp *, struct prefix *, afi_t, safi_t);
156
paulfd79ac92004-10-13 05:06:08 +0000157int bgp_static_set_vpnv4 (struct vty *vty, const char *,
158 const char *, const char *);
paul718e3742002-12-13 20:15:29 +0000159
paulfd79ac92004-10-13 05:06:08 +0000160int bgp_static_unset_vpnv4 (struct vty *, const char *,
161 const char *, const char *);
paul718e3742002-12-13 20:15:29 +0000162
163int bgp_config_write_network (struct vty *, struct bgp *, afi_t, safi_t, int *);
164int bgp_config_write_distance (struct vty *, struct bgp *);
165
166void bgp_aggregate_increment (struct bgp *, struct prefix *, struct bgp_info *,
167 afi_t, safi_t);
168void bgp_aggregate_decrement (struct bgp *, struct prefix *, struct bgp_info *,
169 afi_t, safi_t);
170
171u_char bgp_distance_apply (struct prefix *, struct bgp_info *, struct bgp *);
172
173afi_t bgp_node_afi (struct vty *);
174safi_t bgp_node_safi (struct vty *);
ajs5a646652004-11-05 01:25:55 +0000175
176void route_vty_out (struct vty *, struct prefix *, struct bgp_info *, int, safi_t);
177void route_vty_out_tag (struct vty *, struct prefix *, struct bgp_info *, int, safi_t);
178void route_vty_out_tmp (struct vty *, struct prefix *, struct attr *, safi_t);
paul00d252c2005-05-23 14:19:54 +0000179
180#endif /* _QUAGGA_BGP_ROUTE_H */