iof-bird-daemon / nest / protocol.h @ 8a7fb885
History | View | Annotate | Download (12.1 KB)
1 |
/*
|
---|---|
2 |
* BIRD Internet Routing Daemon -- Protocols
|
3 |
*
|
4 |
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
5 |
*
|
6 |
* Can be freely distributed and used under the terms of the GNU GPL.
|
7 |
*/
|
8 |
|
9 |
#ifndef _BIRD_PROTOCOL_H_
|
10 |
#define _BIRD_PROTOCOL_H_
|
11 |
|
12 |
#include "lib/lists.h" |
13 |
#include "lib/resource.h" |
14 |
#include "lib/timer.h" |
15 |
#include "conf/conf.h" |
16 |
|
17 |
struct iface;
|
18 |
struct ifa;
|
19 |
struct rte;
|
20 |
struct neighbor;
|
21 |
struct rta;
|
22 |
struct network;
|
23 |
struct proto_config;
|
24 |
struct config;
|
25 |
struct proto;
|
26 |
struct event;
|
27 |
struct ea_list;
|
28 |
struct eattr;
|
29 |
struct symbol;
|
30 |
|
31 |
/*
|
32 |
* Routing Protocol
|
33 |
*/
|
34 |
|
35 |
struct protocol {
|
36 |
node n; |
37 |
char *name;
|
38 |
char *template; /* Template for automatic generation of names */ |
39 |
int name_counter; /* Counter for automatic name generation */ |
40 |
int attr_class; /* Attribute class known to this protocol */ |
41 |
|
42 |
void (*preconfig)(struct protocol *, struct config *); /* Just before configuring */ |
43 |
void (*postconfig)(struct proto_config *); /* After configuring each instance */ |
44 |
struct proto * (*init)(struct proto_config *); /* Create new instance */ |
45 |
int (*reconfigure)(struct proto *, struct proto_config *); /* Try to reconfigure instance, returns success */ |
46 |
void (*dump)(struct proto *); /* Debugging dump */ |
47 |
void (*dump_attrs)(struct rte *); /* Dump protocol-dependent attributes */ |
48 |
int (*start)(struct proto *); /* Start the instance */ |
49 |
int (*shutdown)(struct proto *); /* Stop the instance */ |
50 |
void (*get_status)(struct proto *, byte *buf); /* Get instance status (for `show protocols' command) */ |
51 |
void (*get_route_info)(struct rte *, byte *buf, struct ea_list *attrs); /* Get route information (for `show route' command) */ |
52 |
int (*get_attr)(struct eattr *, byte *buf, int buflen); /* ASCIIfy dynamic attribute (returns GA_*) */ |
53 |
}; |
54 |
|
55 |
void protos_build(void); |
56 |
void proto_build(struct protocol *); |
57 |
void protos_preconfig(struct config *); |
58 |
void protos_postconfig(struct config *); |
59 |
void protos_commit(struct config *new, struct config *old, int force_restart, int type); |
60 |
void protos_dump_all(void); |
61 |
|
62 |
#define GA_UNKNOWN 0 /* Attribute not recognized */ |
63 |
#define GA_NAME 1 /* Result = name */ |
64 |
#define GA_FULL 2 /* Result = both name and value */ |
65 |
|
66 |
/*
|
67 |
* Known protocols
|
68 |
*/
|
69 |
|
70 |
extern struct protocol |
71 |
proto_device, proto_rip, proto_static, |
72 |
proto_ospf, proto_pipe, proto_bgp; |
73 |
|
74 |
/*
|
75 |
* Routing Protocol Instance
|
76 |
*/
|
77 |
|
78 |
struct proto_config {
|
79 |
node n; |
80 |
struct config *global; /* Global configuration data */ |
81 |
struct protocol *protocol; /* Protocol */ |
82 |
struct proto *proto; /* Instance we've created */ |
83 |
char *name;
|
84 |
char *dsc;
|
85 |
unsigned debug, preference, disabled; /* Generic parameters */ |
86 |
u32 router_id; /* Protocol specific router ID */
|
87 |
struct rtable_config *table; /* Table we're attached to */ |
88 |
struct filter *in_filter, *out_filter; /* Attached filters */ |
89 |
|
90 |
/* Protocol-specific data follow... */
|
91 |
}; |
92 |
|
93 |
/* Protocol statistics */
|
94 |
struct proto_stats {
|
95 |
/* Import - from protocol to core */
|
96 |
u32 imp_routes; /* Number of routes successfully imported to the (adjacent) routing table */
|
97 |
u32 pref_routes; /* Number of routes that are preferred, sum over all routing table */
|
98 |
u32 imp_updates_received; /* Number of route updates received */
|
99 |
u32 imp_updates_invalid; /* Number of route updates rejected as invalid */
|
100 |
u32 imp_updates_filtered; /* Number of route updates rejected by filters */
|
101 |
u32 imp_updates_ignored; /* Number of route updates rejected as already in route table */
|
102 |
u32 imp_updates_accepted; /* Number of route updates accepted and imported */
|
103 |
u32 imp_withdraws_received; /* Number of route withdraws received */
|
104 |
u32 imp_withdraws_invalid; /* Number of route withdraws rejected as invalid */
|
105 |
u32 imp_withdraws_ignored; /* Number of route withdraws rejected as already not in route table */
|
106 |
u32 imp_withdraws_accepted; /* Number of route withdraws accepted and processed */
|
107 |
|
108 |
/* Export - from core to protocol */
|
109 |
u32 exp_routes; /* Number of routes successfully exported to the protocol */
|
110 |
u32 exp_updates_received; /* Number of route updates received */
|
111 |
u32 exp_updates_rejected; /* Number of route updates rejected by protocol */
|
112 |
u32 exp_updates_filtered; /* Number of route updates rejected by filters */
|
113 |
u32 exp_updates_accepted; /* Number of route updates accepted and exported */
|
114 |
u32 exp_withdraws_received; /* Number of route withdraws received */
|
115 |
u32 exp_withdraws_accepted; /* Number of route withdraws accepted and processed */
|
116 |
}; |
117 |
|
118 |
struct proto {
|
119 |
node n; /* Node in *_proto_list */
|
120 |
node glob_node; /* Node in global proto_list */
|
121 |
struct protocol *proto; /* Protocol */ |
122 |
struct proto_config *cf; /* Configuration data */ |
123 |
struct proto_config *cf_new; /* Configuration we want to switch to after shutdown (NULL=delete) */ |
124 |
pool *pool; /* Pool containing local objects */
|
125 |
struct event *attn; /* "Pay attention" event */ |
126 |
|
127 |
char *name; /* Name of this instance (== cf->name) */ |
128 |
unsigned debug; /* Debugging flags */ |
129 |
unsigned preference; /* Default route preference */ |
130 |
int min_scope; /* Minimal route scope accepted */ |
131 |
unsigned accept_ra_types; /* Which types of route announcements are accepted (RA_OPTIMAL or RA_ANY) */ |
132 |
unsigned disabled; /* Manually disabled */ |
133 |
unsigned proto_state; /* Protocol state machine (see below) */ |
134 |
unsigned core_state; /* Core state machine (see below) */ |
135 |
unsigned core_goal; /* State we want to reach (see below) */ |
136 |
unsigned reconfiguring; /* We're shutting down due to reconfiguration */ |
137 |
unsigned refeeding; /* We are refeeding (valid only if core_state == FS_FEEDING) */ |
138 |
u32 hash_key; /* Random key used for hashing of neighbors */
|
139 |
bird_clock_t last_state_change; /* Time of last state transition */
|
140 |
char *last_state_name_announced; /* Last state name we've announced to the user */ |
141 |
struct proto_stats stats; /* Current protocol statistics */ |
142 |
|
143 |
/*
|
144 |
* General protocol hooks:
|
145 |
*
|
146 |
* if_notify Notify protocol about interface state changes.
|
147 |
* ifa_notify Notify protocol about interface address changes.
|
148 |
* rt_notify Notify protocol about routing table updates.
|
149 |
* neigh_notify Notify protocol about neighbor cache events.
|
150 |
* make_tmp_attrs Construct ea_list from private attrs stored in rte.
|
151 |
* store_tmp_attrs Store private attrs back to the rte.
|
152 |
* import_control Called as the first step of the route importing process.
|
153 |
* It can construct a new rte, add private attributes and
|
154 |
* decide whether the route shall be imported: 1=yes, -1=no,
|
155 |
* 0=process it through the import filter set by the user.
|
156 |
* reload_routes Request protocol to reload all its routes to the core
|
157 |
* (using rte_update()). Returns: 0=reload cannot be done,
|
158 |
* 1= reload is scheduled and will happen (asynchronously).
|
159 |
*/
|
160 |
|
161 |
void (*if_notify)(struct proto *, unsigned flags, struct iface *i); |
162 |
void (*ifa_notify)(struct proto *, unsigned flags, struct ifa *a); |
163 |
void (*rt_notify)(struct proto *, struct network *net, struct rte *new, struct rte *old, struct ea_list *attrs); |
164 |
void (*neigh_notify)(struct neighbor *neigh); |
165 |
struct ea_list *(*make_tmp_attrs)(struct rte *rt, struct linpool *pool); |
166 |
void (*store_tmp_attrs)(struct rte *rt, struct ea_list *attrs); |
167 |
int (*import_control)(struct proto *, struct rte **rt, struct ea_list **attrs, struct linpool *pool); |
168 |
int (*reload_routes)(struct proto *); |
169 |
|
170 |
/*
|
171 |
* Routing entry hooks (called only for rte's belonging to this protocol):
|
172 |
*
|
173 |
* rte_better Compare two rte's and decide which one is better (1=first, 0=second).
|
174 |
* rte_same Compare two rte's and decide whether they are identical (1=yes, 0=no).
|
175 |
* rte_insert Called whenever a rte is inserted to a routing table.
|
176 |
* rte_remove Called whenever a rte is removed from the routing table.
|
177 |
*/
|
178 |
|
179 |
int (*rte_better)(struct rte *, struct rte *); |
180 |
int (*rte_same)(struct rte *, struct rte *); |
181 |
void (*rte_insert)(struct network *, struct rte *); |
182 |
void (*rte_remove)(struct network *, struct rte *); |
183 |
|
184 |
struct rtable *table; /* Our primary routing table */ |
185 |
struct filter *in_filter; /* Input filter */ |
186 |
struct filter *out_filter; /* Output filter */ |
187 |
struct announce_hook *ahooks; /* Announcement hooks for this protocol */ |
188 |
|
189 |
struct fib_iterator *feed_iterator; /* Routing table iterator used during protocol feeding */ |
190 |
struct announce_hook *feed_ahook; /* Announce hook we currently feed */ |
191 |
|
192 |
/* Hic sunt protocol-specific data */
|
193 |
}; |
194 |
|
195 |
void *proto_new(struct proto_config *, unsigned size); |
196 |
void *proto_config_new(struct protocol *, unsigned size); |
197 |
|
198 |
void proto_request_feeding(struct proto *p); |
199 |
void proto_show(struct symbol *, int); |
200 |
struct proto *proto_get_named(struct symbol *, struct protocol *); |
201 |
void proto_xxable(char *, int); |
202 |
void proto_debug(char *, unsigned int); |
203 |
|
204 |
#define XX_DISABLE 0 |
205 |
#define XX_ENABLE 1 |
206 |
#define XX_RESTART 2 |
207 |
#define XX_RELOAD 3 |
208 |
#define XX_RELOAD_IN 4 |
209 |
#define XX_RELOAD_OUT 5 |
210 |
|
211 |
static inline u32 |
212 |
proto_get_router_id(struct proto_config *pc)
|
213 |
{ |
214 |
return pc->router_id ? pc->router_id : pc->global->router_id;
|
215 |
} |
216 |
|
217 |
extern list active_proto_list;
|
218 |
|
219 |
/*
|
220 |
* Each protocol instance runs two different state machines:
|
221 |
*
|
222 |
* [P] The protocol machine: (implemented inside protocol)
|
223 |
*
|
224 |
* DOWN ----> START
|
225 |
* ^ |
|
226 |
* | V
|
227 |
* STOP <---- UP
|
228 |
*
|
229 |
* States: DOWN Protocol is down and it's waiting for the core
|
230 |
* requesting protocol start.
|
231 |
* START Protocol is waiting for connection with the rest
|
232 |
* of the network and it's not willing to accept
|
233 |
* packets. When it connects, it goes to UP state.
|
234 |
* UP Protocol is up and running. When the network
|
235 |
* connection breaks down or the core requests
|
236 |
* protocol to be terminated, it goes to STOP state.
|
237 |
* STOP Protocol is disconnecting from the network.
|
238 |
* After it disconnects, it returns to DOWN state.
|
239 |
*
|
240 |
* In: start() Called in DOWN state to request protocol startup.
|
241 |
* Returns new state: either UP or START (in this
|
242 |
* case, the protocol will notify the core when it
|
243 |
* finally comes UP).
|
244 |
* stop() Called in START, UP or STOP state to request
|
245 |
* protocol shutdown. Returns new state: either
|
246 |
* DOWN or STOP (in this case, the protocol will
|
247 |
* notify the core when it finally comes DOWN).
|
248 |
*
|
249 |
* Out: proto_notify_state() -- called by protocol instance when
|
250 |
* it does any state transition not covered by
|
251 |
* return values of start() and stop(). This includes
|
252 |
* START->UP (delayed protocol startup), UP->STOP
|
253 |
* (spontaneous shutdown) and STOP->DOWN (delayed
|
254 |
* shutdown).
|
255 |
*/
|
256 |
|
257 |
#define PS_DOWN 0 |
258 |
#define PS_START 1 |
259 |
#define PS_UP 2 |
260 |
#define PS_STOP 3 |
261 |
|
262 |
void proto_notify_state(struct proto *p, unsigned state); |
263 |
|
264 |
/*
|
265 |
* [F] The feeder machine: (implemented in core routines)
|
266 |
*
|
267 |
* HUNGRY ----> FEEDING
|
268 |
* ^ |
|
269 |
* | V
|
270 |
* FLUSHING <---- HAPPY
|
271 |
*
|
272 |
* States: HUNGRY Protocol either administratively down (i.e.,
|
273 |
* disabled by the user) or temporarily down
|
274 |
* (i.e., [P] is not UP)
|
275 |
* FEEDING The protocol came up and we're feeding it
|
276 |
* initial routes. [P] is UP.
|
277 |
* HAPPY The protocol is up and it's receiving normal
|
278 |
* routing updates. [P] is UP.
|
279 |
* FLUSHING The protocol is down and we're removing its
|
280 |
* routes from the table. [P] is STOP or DOWN.
|
281 |
*
|
282 |
* Normal lifecycle of a protocol looks like:
|
283 |
*
|
284 |
* HUNGRY/DOWN --> HUNGRY/START --> HUNGRY/UP -->
|
285 |
* FEEDING/UP --> HAPPY/UP --> FLUSHING/STOP|DOWN -->
|
286 |
* HUNGRY/STOP|DOWN --> HUNGRY/DOWN
|
287 |
*
|
288 |
* Sometimes, protocol might switch from HAPPY/UP to FEEDING/UP
|
289 |
* if it wants to refeed the routes (for example BGP does so
|
290 |
* as a result of received ROUTE-REFRESH request).
|
291 |
*/
|
292 |
|
293 |
#define FS_HUNGRY 0 |
294 |
#define FS_FEEDING 1 |
295 |
#define FS_HAPPY 2 |
296 |
#define FS_FLUSHING 3 |
297 |
|
298 |
/*
|
299 |
* Debugging flags
|
300 |
*/
|
301 |
|
302 |
#define D_STATES 1 /* [core] State transitions */ |
303 |
#define D_ROUTES 2 /* [core] Routes passed by the filters */ |
304 |
#define D_FILTERS 4 /* [core] Routes rejected by the filters */ |
305 |
#define D_IFACES 8 /* [core] Interface events */ |
306 |
#define D_EVENTS 16 /* Protocol events */ |
307 |
#define D_PACKETS 32 /* Packets sent/received */ |
308 |
|
309 |
/*
|
310 |
* Known unique protocol instances as referenced by config routines
|
311 |
*/
|
312 |
|
313 |
extern struct proto_config *cf_dev_proto; |
314 |
|
315 |
/*
|
316 |
* Route Announcement Hook
|
317 |
*/
|
318 |
|
319 |
struct announce_hook {
|
320 |
node n; |
321 |
struct rtable *table;
|
322 |
struct proto *proto;
|
323 |
struct announce_hook *next; /* Next hook for the same protocol */ |
324 |
}; |
325 |
|
326 |
struct announce_hook *proto_add_announce_hook(struct proto *, struct rtable *); |
327 |
|
328 |
#endif
|