1998-12-07 02:21:23 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Static Route Generator
|
|
|
|
*
|
2000-01-17 19:52:50 +08:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1998-12-07 02:21:23 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
2000-06-05 00:15:37 +08:00
|
|
|
/**
|
|
|
|
* DOC: Static
|
|
|
|
*
|
2000-06-08 20:37:21 +08:00
|
|
|
* The Static protocol is implemented in a straightforward way. It keeps
|
|
|
|
* two lists of static routes: one containing interface routes and one
|
2000-06-05 00:15:37 +08:00
|
|
|
* holding the remaining ones. Interface routes are inserted and removed according
|
2000-06-08 20:37:21 +08:00
|
|
|
* to interface events received from the core via the if_notify() hook. Routes
|
2000-06-05 00:15:37 +08:00
|
|
|
* pointing to a neighboring router use a sticky node in the neighbor cache
|
2000-06-08 20:37:21 +08:00
|
|
|
* to be notified about gaining or losing the neighbor. Special
|
2000-06-05 00:15:37 +08:00
|
|
|
* routes like black holes or rejects are inserted all the time.
|
|
|
|
*
|
|
|
|
* The only other thing worth mentioning is that when asked for reconfiguration,
|
|
|
|
* Static not only compares the two configurations, but it also calculates
|
2000-06-08 20:37:21 +08:00
|
|
|
* difference between the lists of static routes and it just inserts the
|
|
|
|
* newly added routes and removes the obsolete ones.
|
2000-06-05 00:15:37 +08:00
|
|
|
*/
|
|
|
|
|
2000-03-13 05:01:38 +08:00
|
|
|
#undef LOCAL_DEBUG
|
1998-12-07 02:21:23 +08:00
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/route.h"
|
1999-12-03 19:41:23 +08:00
|
|
|
#include "nest/cli.h"
|
1998-12-07 02:21:23 +08:00
|
|
|
#include "conf/conf.h"
|
1999-12-03 19:41:23 +08:00
|
|
|
#include "lib/string.h"
|
1998-12-07 02:21:23 +08:00
|
|
|
|
|
|
|
#include "static.h"
|
|
|
|
|
1998-12-07 07:13:31 +08:00
|
|
|
static void
|
1999-02-06 05:38:22 +08:00
|
|
|
static_install(struct proto *p, struct static_route *r, struct iface *ifa)
|
1998-12-07 07:13:31 +08:00
|
|
|
{
|
|
|
|
net *n;
|
|
|
|
rta a, *aa;
|
|
|
|
rte *e;
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
if (r->installed)
|
|
|
|
return;
|
|
|
|
|
1998-12-07 07:13:31 +08:00
|
|
|
DBG("Installing static route %I/%d, rtd=%d\n", r->net, r->masklen, r->dest);
|
|
|
|
bzero(&a, sizeof(a));
|
1999-02-06 05:38:22 +08:00
|
|
|
a.proto = p;
|
1998-12-07 07:13:31 +08:00
|
|
|
a.source = (r->dest == RTD_DEVICE) ? RTS_STATIC_DEVICE : RTS_STATIC;
|
|
|
|
a.scope = SCOPE_UNIVERSE;
|
|
|
|
a.cast = RTC_UNICAST;
|
|
|
|
a.dest = r->dest;
|
|
|
|
a.gw = r->via;
|
|
|
|
a.iface = ifa;
|
|
|
|
aa = rta_lookup(&a);
|
|
|
|
|
1999-04-13 02:01:07 +08:00
|
|
|
n = net_get(p->table, r->net, r->masklen);
|
1998-12-07 07:13:31 +08:00
|
|
|
e = rte_get_temp(aa);
|
|
|
|
e->net = n;
|
|
|
|
e->pflags = 0;
|
2009-06-01 20:07:13 +08:00
|
|
|
rte_update(p->table, n, p, p, e);
|
1999-12-03 19:41:23 +08:00
|
|
|
r->installed = 1;
|
1998-12-07 07:13:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-02-06 05:38:22 +08:00
|
|
|
static_remove(struct proto *p, struct static_route *r)
|
1998-12-07 07:13:31 +08:00
|
|
|
{
|
|
|
|
net *n;
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
if (!r->installed)
|
|
|
|
return;
|
|
|
|
|
1998-12-07 07:13:31 +08:00
|
|
|
DBG("Removing static route %I/%d\n", r->net, r->masklen);
|
1999-04-13 02:01:07 +08:00
|
|
|
n = net_find(p->table, r->net, r->masklen);
|
1998-12-07 07:13:31 +08:00
|
|
|
if (n)
|
2009-06-01 20:07:13 +08:00
|
|
|
rte_update(p->table, n, p, p, NULL);
|
1999-12-03 19:41:23 +08:00
|
|
|
r->installed = 0;
|
1998-12-07 07:13:31 +08:00
|
|
|
}
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
static void
|
|
|
|
static_add(struct proto *p, struct static_route *r)
|
|
|
|
{
|
2000-05-13 19:01:41 +08:00
|
|
|
DBG("static_add(%I/%d,%d)\n", r->net, r->masklen, r->dest);
|
2000-01-17 20:38:50 +08:00
|
|
|
switch (r->dest)
|
|
|
|
{
|
|
|
|
case RTD_ROUTER:
|
|
|
|
{
|
|
|
|
struct neighbor *n = neigh_find(p, &r->via, NEF_STICKY);
|
|
|
|
if (n)
|
|
|
|
{
|
|
|
|
r->chain = n->data;
|
|
|
|
n->data = r;
|
|
|
|
r->neigh = n;
|
|
|
|
if (n->iface)
|
|
|
|
static_install(p, r, n->iface);
|
|
|
|
}
|
|
|
|
else
|
2000-06-05 03:56:06 +08:00
|
|
|
log(L_ERR "Static route destination %I is invalid. Ignoring.", r->via);
|
2000-01-17 20:38:50 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RTD_DEVICE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
static_install(p, r, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-02-06 05:38:22 +08:00
|
|
|
static int
|
|
|
|
static_start(struct proto *p)
|
1998-12-07 02:21:23 +08:00
|
|
|
{
|
1999-02-06 05:38:22 +08:00
|
|
|
struct static_config *c = (void *) p->cf;
|
1998-12-07 07:13:31 +08:00
|
|
|
struct static_route *r;
|
|
|
|
|
1998-12-07 02:21:23 +08:00
|
|
|
DBG("Static: take off!\n");
|
1999-02-06 05:38:22 +08:00
|
|
|
WALK_LIST(r, c->other_routes)
|
2000-01-17 20:38:50 +08:00
|
|
|
static_add(p, r);
|
1999-02-06 05:38:22 +08:00
|
|
|
return PS_UP;
|
1998-12-07 02:21:23 +08:00
|
|
|
}
|
|
|
|
|
2000-05-13 19:01:41 +08:00
|
|
|
static int
|
|
|
|
static_shutdown(struct proto *p)
|
|
|
|
{
|
|
|
|
struct static_config *c = (void *) p->cf;
|
|
|
|
struct static_route *r;
|
|
|
|
|
2010-02-27 23:00:07 +08:00
|
|
|
/* Just reset the flag, the routes will be flushed by the nest */
|
2000-05-13 19:01:41 +08:00
|
|
|
WALK_LIST(r, c->iface_routes)
|
2010-02-27 23:00:07 +08:00
|
|
|
r->installed = 0;
|
2000-05-13 19:01:41 +08:00
|
|
|
WALK_LIST(r, c->other_routes)
|
2010-02-27 23:00:07 +08:00
|
|
|
r->installed = 0;
|
|
|
|
|
2000-05-13 19:01:41 +08:00
|
|
|
return PS_DOWN;
|
|
|
|
}
|
|
|
|
|
1998-12-07 02:21:23 +08:00
|
|
|
static void
|
|
|
|
static_neigh_notify(struct neighbor *n)
|
|
|
|
{
|
1999-02-06 05:38:22 +08:00
|
|
|
struct proto *p = n->proto;
|
1998-12-09 02:31:31 +08:00
|
|
|
struct static_route *r;
|
|
|
|
|
1998-12-07 07:13:31 +08:00
|
|
|
DBG("Static: neighbor notify for %I: iface %p\n", n->addr, n->iface);
|
1998-12-09 02:31:31 +08:00
|
|
|
for(r=n->data; r; r=r->chain)
|
|
|
|
if (n->iface)
|
|
|
|
static_install(p, r, n->iface);
|
|
|
|
else
|
|
|
|
static_remove(p, r);
|
1998-12-07 07:13:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
static_dump_rt(struct static_route *r)
|
|
|
|
{
|
2001-08-19 19:15:24 +08:00
|
|
|
debug("%-1I/%2d: ", r->net, r->masklen);
|
1998-12-07 07:13:31 +08:00
|
|
|
switch (r->dest)
|
|
|
|
{
|
|
|
|
case RTD_ROUTER:
|
|
|
|
debug("via %I\n", r->via);
|
|
|
|
break;
|
|
|
|
case RTD_DEVICE:
|
|
|
|
debug("dev %s\n", r->if_name);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
debug("rtd %d\n", r->dest);
|
|
|
|
break;
|
|
|
|
}
|
1998-12-07 02:21:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-02-06 05:38:22 +08:00
|
|
|
static_dump(struct proto *p)
|
1998-12-07 02:21:23 +08:00
|
|
|
{
|
1999-02-06 05:38:22 +08:00
|
|
|
struct static_config *c = (void *) p->cf;
|
1998-12-07 07:13:31 +08:00
|
|
|
struct static_route *r;
|
|
|
|
|
|
|
|
debug("Independent static routes:\n");
|
1999-02-06 05:38:22 +08:00
|
|
|
WALK_LIST(r, c->other_routes)
|
1998-12-07 07:13:31 +08:00
|
|
|
static_dump_rt(r);
|
|
|
|
debug("Device static routes:\n");
|
1999-02-06 05:38:22 +08:00
|
|
|
WALK_LIST(r, c->iface_routes)
|
1998-12-07 07:13:31 +08:00
|
|
|
static_dump_rt(r);
|
1998-12-07 02:21:23 +08:00
|
|
|
}
|
|
|
|
|
1999-02-14 05:59:48 +08:00
|
|
|
static void
|
1999-05-07 05:38:11 +08:00
|
|
|
static_if_notify(struct proto *p, unsigned flags, struct iface *i)
|
1999-02-14 05:59:48 +08:00
|
|
|
{
|
|
|
|
struct static_route *r;
|
|
|
|
struct static_config *c = (void *) p->cf;
|
|
|
|
|
|
|
|
if (flags & IF_CHANGE_UP)
|
|
|
|
{
|
|
|
|
WALK_LIST(r, c->iface_routes)
|
1999-05-07 05:38:11 +08:00
|
|
|
if (!strcmp(r->if_name, i->name))
|
|
|
|
static_install(p, r, i);
|
1999-02-14 05:59:48 +08:00
|
|
|
}
|
|
|
|
else if (flags & IF_CHANGE_DOWN)
|
|
|
|
{
|
|
|
|
WALK_LIST(r, c->iface_routes)
|
1999-05-07 05:38:11 +08:00
|
|
|
if (!strcmp(r->if_name, i->name))
|
1999-02-14 05:59:48 +08:00
|
|
|
static_remove(p, r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-12-07 02:21:23 +08:00
|
|
|
void
|
1999-02-06 05:38:22 +08:00
|
|
|
static_init_config(struct static_config *c)
|
1998-12-07 02:21:23 +08:00
|
|
|
{
|
1999-02-06 05:38:22 +08:00
|
|
|
c->c.preference = DEF_PREF_STATIC;
|
|
|
|
init_list(&c->iface_routes);
|
|
|
|
init_list(&c->other_routes);
|
1998-12-07 02:21:23 +08:00
|
|
|
}
|
|
|
|
|
1999-02-06 05:38:22 +08:00
|
|
|
static struct proto *
|
|
|
|
static_init(struct proto_config *c)
|
1998-12-07 02:21:23 +08:00
|
|
|
{
|
1999-02-06 05:38:22 +08:00
|
|
|
struct proto *p = proto_new(c, sizeof(struct proto));
|
1998-12-07 02:21:23 +08:00
|
|
|
|
1999-02-06 05:38:22 +08:00
|
|
|
p->neigh_notify = static_neigh_notify;
|
1999-02-14 05:59:48 +08:00
|
|
|
p->if_notify = static_if_notify;
|
1999-02-06 05:38:22 +08:00
|
|
|
return p;
|
1998-12-07 02:21:23 +08:00
|
|
|
}
|
|
|
|
|
2010-05-16 17:03:59 +08:00
|
|
|
static inline int
|
|
|
|
static_same_net(struct static_route *x, struct static_route *y)
|
2000-01-17 20:38:50 +08:00
|
|
|
{
|
2010-05-16 17:03:59 +08:00
|
|
|
return ipa_equal(x->net, y->net) && (x->masklen == y->masklen);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
static_same_dest(struct static_route *x, struct static_route *y)
|
|
|
|
{
|
|
|
|
return (x->dest == y->dest)
|
2000-01-17 20:38:50 +08:00
|
|
|
&& (x->dest != RTD_ROUTER || ipa_equal(x->via, y->via))
|
2010-05-16 17:03:59 +08:00
|
|
|
&& (x->dest != RTD_DEVICE || !strcmp(x->if_name, y->if_name));
|
2000-01-17 20:38:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
static_match(struct proto *p, struct static_route *r, struct static_config *n)
|
|
|
|
{
|
|
|
|
struct static_route *t;
|
|
|
|
|
2010-05-16 17:03:59 +08:00
|
|
|
/*
|
|
|
|
* For given old route *r we find whether a route to the same
|
|
|
|
* network is also in the new route list. In that case, we keep the
|
|
|
|
* route and possibly update the route later if destination changed.
|
|
|
|
* Otherwise, we remove the route.
|
|
|
|
*/
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
if (r->neigh)
|
|
|
|
r->neigh->data = NULL;
|
|
|
|
WALK_LIST(t, n->iface_routes)
|
2010-05-16 17:03:59 +08:00
|
|
|
if (static_same_net(r, t))
|
2000-01-17 20:38:50 +08:00
|
|
|
{
|
2010-05-16 17:03:59 +08:00
|
|
|
t->installed = static_same_dest(r, t);
|
2000-01-17 20:38:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
WALK_LIST(t, n->other_routes)
|
2010-05-16 17:03:59 +08:00
|
|
|
if (static_same_net(r, t))
|
2000-01-17 20:38:50 +08:00
|
|
|
{
|
2010-05-16 17:03:59 +08:00
|
|
|
t->installed = static_same_dest(r, t);
|
2000-01-17 20:38:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
static_remove(p, r);
|
|
|
|
}
|
|
|
|
|
2000-01-17 19:52:50 +08:00
|
|
|
static int
|
|
|
|
static_reconfigure(struct proto *p, struct proto_config *new)
|
|
|
|
{
|
2000-01-17 20:38:50 +08:00
|
|
|
struct static_config *o = (void *) p->cf;
|
|
|
|
struct static_config *n = (void *) new;
|
|
|
|
struct static_route *r;
|
|
|
|
|
|
|
|
/* Delete all obsolete routes and reset neighbor entries */
|
|
|
|
WALK_LIST(r, o->iface_routes)
|
|
|
|
static_match(p, r, n);
|
|
|
|
WALK_LIST(r, o->other_routes)
|
|
|
|
static_match(p, r, n);
|
|
|
|
|
|
|
|
/* Now add all new routes, those not changed will be ignored by static_install() */
|
|
|
|
WALK_LIST(r, n->iface_routes)
|
|
|
|
{
|
|
|
|
struct iface *ifa;
|
|
|
|
if (ifa = if_find_by_name(r->if_name))
|
|
|
|
static_install(p, r, ifa);
|
|
|
|
}
|
|
|
|
WALK_LIST(r, n->other_routes)
|
|
|
|
static_add(p, r);
|
|
|
|
|
|
|
|
return 1;
|
2000-01-17 19:52:50 +08:00
|
|
|
}
|
|
|
|
|
1998-12-07 02:21:23 +08:00
|
|
|
struct protocol proto_static = {
|
1999-02-06 05:38:22 +08:00
|
|
|
name: "Static",
|
2000-01-17 19:52:50 +08:00
|
|
|
template: "static%d",
|
1999-02-06 05:38:22 +08:00
|
|
|
init: static_init,
|
|
|
|
dump: static_dump,
|
|
|
|
start: static_start,
|
2000-05-13 19:01:41 +08:00
|
|
|
shutdown: static_shutdown,
|
2000-01-17 19:52:50 +08:00
|
|
|
reconfigure: static_reconfigure,
|
1998-12-07 02:21:23 +08:00
|
|
|
};
|
1999-12-03 19:41:23 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
static_show_rt(struct static_route *r)
|
|
|
|
{
|
|
|
|
byte via[STD_ADDRESS_P_LENGTH + 16];
|
|
|
|
|
|
|
|
switch (r->dest)
|
|
|
|
{
|
|
|
|
case RTD_ROUTER: bsprintf(via, "via %I", r->via); break;
|
2010-02-27 23:00:07 +08:00
|
|
|
case RTD_DEVICE: bsprintf(via, "dev %s", r->if_name); break;
|
1999-12-03 19:41:23 +08:00
|
|
|
case RTD_BLACKHOLE: bsprintf(via, "blackhole"); break;
|
|
|
|
case RTD_UNREACHABLE: bsprintf(via, "unreachable"); break;
|
|
|
|
case RTD_PROHIBIT: bsprintf(via, "prohibited"); break;
|
|
|
|
default: bsprintf(via, "???");
|
|
|
|
}
|
|
|
|
cli_msg(-1009, "%I/%d %s%s", r->net, r->masklen, via, r->installed ? "" : " (dormant)");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
static_show(struct proto *P)
|
|
|
|
{
|
|
|
|
struct static_config *c = (void *) P->cf;
|
|
|
|
struct static_route *r;
|
|
|
|
|
|
|
|
WALK_LIST(r, c->other_routes)
|
|
|
|
static_show_rt(r);
|
|
|
|
WALK_LIST(r, c->iface_routes)
|
|
|
|
static_show_rt(r);
|
|
|
|
cli_msg(0, "");
|
|
|
|
}
|