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.
|
|
|
|
*
|
2010-12-08 06:34:36 +08:00
|
|
|
* Multipath routes are tricky. Because these routes depends on
|
|
|
|
* several neighbors we need to integrate that to the neighbor
|
|
|
|
* notification handling, we use dummy static_route nodes, one for
|
|
|
|
* each nexthop. Therefore, a multipath route consists of a master
|
|
|
|
* static_route node (of dest RTD_MULTIPATH), which specifies prefix
|
|
|
|
* and is used in most circumstances, and a list of dummy static_route
|
|
|
|
* nodes (of dest RTD_NONE), which stores info about nexthops and are
|
|
|
|
* connected to neighbor entries and neighbor notifications. Dummy
|
|
|
|
* nodes are chained using mp_next, they aren't in other_routes list,
|
|
|
|
* and abuse some fields (masklen, if_name) for other purposes.
|
|
|
|
*
|
2000-06-05 00:15:37 +08:00
|
|
|
* 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"
|
2015-07-20 17:12:02 +08:00
|
|
|
#include "filter/filter.h"
|
1999-12-03 19:41:23 +08:00
|
|
|
#include "lib/string.h"
|
2010-12-08 06:34:36 +08:00
|
|
|
#include "lib/alloca.h"
|
1998-12-07 02:21:23 +08:00
|
|
|
|
|
|
|
#include "static.h"
|
|
|
|
|
2015-07-20 17:12:02 +08:00
|
|
|
static linpool *static_lp;
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
static inline rtable *
|
|
|
|
p_igp_table(struct proto *p)
|
|
|
|
{
|
|
|
|
struct static_config *cf = (void *) p->cf;
|
|
|
|
return cf->igp_table ? cf->igp_table->table : p->table;
|
|
|
|
}
|
|
|
|
|
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;
|
2015-07-20 17:12:02 +08:00
|
|
|
rta a;
|
1998-12-07 07:13:31 +08:00
|
|
|
rte *e;
|
|
|
|
|
2014-02-26 20:25:39 +08:00
|
|
|
if (r->installed > 0)
|
2000-01-17 20:38:50 +08:00
|
|
|
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));
|
2012-08-14 22:25:22 +08:00
|
|
|
a.src = p->main_source;
|
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;
|
|
|
|
|
2010-12-08 06:34:36 +08:00
|
|
|
if (r->dest == RTD_MULTIPATH)
|
|
|
|
{
|
|
|
|
struct static_route *r2;
|
|
|
|
struct mpnh *nhs = NULL;
|
|
|
|
|
|
|
|
for (r2 = r->mp_next; r2; r2 = r2->mp_next)
|
|
|
|
if (r2->installed)
|
|
|
|
{
|
|
|
|
struct mpnh *nh = alloca(sizeof(struct mpnh));
|
|
|
|
nh->gw = r2->via;
|
|
|
|
nh->iface = r2->neigh->iface;
|
|
|
|
nh->weight = r2->masklen; /* really */
|
2016-08-30 23:17:27 +08:00
|
|
|
mpnh_insert(&nhs, nh);
|
2010-12-08 06:34:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* There is at least one nexthop */
|
|
|
|
if (!nhs->next)
|
|
|
|
{
|
|
|
|
/* Fallback to unipath route for exactly one nexthop */
|
|
|
|
a.dest = RTD_ROUTER;
|
|
|
|
a.gw = nhs->gw;
|
|
|
|
a.iface = nhs->iface;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
a.nexthops = nhs;
|
|
|
|
}
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
if (r->dest == RTDX_RECURSIVE)
|
|
|
|
rta_set_recursive_next_hop(p->table, &a, p_igp_table(p), &r->via, &r->via);
|
|
|
|
|
2015-07-20 17:12:02 +08:00
|
|
|
/* We skip rta_lookup() here */
|
|
|
|
|
1999-04-13 02:01:07 +08:00
|
|
|
n = net_get(p->table, r->net, r->masklen);
|
2015-07-20 17:12:02 +08:00
|
|
|
e = rte_get_temp(&a);
|
1998-12-07 07:13:31 +08:00
|
|
|
e->net = n;
|
|
|
|
e->pflags = 0;
|
2015-07-20 17:12:02 +08:00
|
|
|
|
|
|
|
if (r->cmds)
|
|
|
|
f_eval_rte(r->cmds, &e, static_lp);
|
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
rte_update(p, n, e);
|
1999-12-03 19:41:23 +08:00
|
|
|
r->installed = 1;
|
2015-07-20 17:12:02 +08:00
|
|
|
|
|
|
|
if (r->cmds)
|
|
|
|
lp_flush(static_lp);
|
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;
|
|
|
|
|
2014-02-26 20:25:39 +08:00
|
|
|
DBG("Removing static route %I/%d via %I\n", r->net, r->masklen, r->via);
|
1999-04-13 02:01:07 +08:00
|
|
|
n = net_find(p->table, r->net, r->masklen);
|
2012-08-14 22:25:22 +08:00
|
|
|
rte_update(p, n, NULL);
|
1999-12-03 19:41:23 +08:00
|
|
|
r->installed = 0;
|
1998-12-07 07:13:31 +08:00
|
|
|
}
|
|
|
|
|
2015-07-25 00:02:07 +08:00
|
|
|
static void
|
|
|
|
static_bfd_notify(struct bfd_request *req);
|
|
|
|
|
|
|
|
static void
|
|
|
|
static_update_bfd(struct proto *p, struct static_route *r)
|
|
|
|
{
|
|
|
|
struct neighbor *nb = r->neigh;
|
|
|
|
int bfd_up = (nb->scope > 0) && r->use_bfd;
|
|
|
|
|
|
|
|
if (bfd_up && !r->bfd_req)
|
|
|
|
{
|
|
|
|
// ip_addr local = ipa_nonzero(r->local) ? r->local : nb->ifa->ip;
|
|
|
|
r->bfd_req = bfd_request_session(p->pool, r->via, nb->ifa->ip, nb->iface,
|
|
|
|
static_bfd_notify, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bfd_up && r->bfd_req)
|
|
|
|
{
|
|
|
|
rfree(r->bfd_req);
|
|
|
|
r->bfd_req = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-08 06:34:36 +08:00
|
|
|
static int
|
|
|
|
static_decide(struct static_config *cf, struct static_route *r)
|
|
|
|
{
|
|
|
|
/* r->dest != RTD_MULTIPATH, but may be RTD_NONE (part of multipath route)
|
|
|
|
the route also have to be valid (r->neigh != NULL) */
|
|
|
|
|
2012-01-01 19:02:20 +08:00
|
|
|
if (r->neigh->scope < 0)
|
2010-12-08 06:34:36 +08:00
|
|
|
return 0;
|
|
|
|
|
2012-01-01 19:02:20 +08:00
|
|
|
if (cf->check_link && !(r->neigh->iface->flags & IF_LINK_UP))
|
2010-12-08 06:34:36 +08:00
|
|
|
return 0;
|
|
|
|
|
2015-07-25 00:02:07 +08:00
|
|
|
if (r->bfd_req && r->bfd_req->state != BFD_STATE_UP)
|
|
|
|
return 0;
|
|
|
|
|
2010-12-08 06:34:36 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
static void
|
2010-11-11 19:24:27 +08:00
|
|
|
static_add(struct proto *p, struct static_config *cf, struct static_route *r)
|
2000-01-17 20:38:50 +08:00
|
|
|
{
|
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:
|
|
|
|
{
|
2012-01-01 19:02:20 +08:00
|
|
|
struct neighbor *n = neigh_find2(p, &r->via, r->via_if, NEF_STICKY);
|
2000-01-17 20:38:50 +08:00
|
|
|
if (n)
|
|
|
|
{
|
|
|
|
r->chain = n->data;
|
|
|
|
n->data = r;
|
|
|
|
r->neigh = n;
|
2015-07-25 00:02:07 +08:00
|
|
|
|
|
|
|
static_update_bfd(p, r);
|
2010-11-11 19:24:27 +08:00
|
|
|
if (static_decide(cf, r))
|
2000-01-17 20:38:50 +08:00
|
|
|
static_install(p, r, n->iface);
|
2010-11-11 19:24:27 +08:00
|
|
|
else
|
|
|
|
static_remove(p, r);
|
2000-01-17 20:38:50 +08:00
|
|
|
}
|
|
|
|
else
|
2010-12-08 06:34:36 +08:00
|
|
|
{
|
|
|
|
log(L_ERR "Static route destination %I is invalid. Ignoring.", r->via);
|
|
|
|
static_remove(p, r);
|
|
|
|
}
|
2000-01-17 20:38:50 +08:00
|
|
|
break;
|
|
|
|
}
|
2010-12-08 06:34:36 +08:00
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
case RTD_DEVICE:
|
|
|
|
break;
|
2010-12-08 06:34:36 +08:00
|
|
|
|
|
|
|
case RTD_MULTIPATH:
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
struct static_route *r2;
|
|
|
|
|
|
|
|
for (r2 = r->mp_next; r2; r2 = r2->mp_next)
|
|
|
|
{
|
2012-01-01 19:02:20 +08:00
|
|
|
struct neighbor *n = neigh_find2(p, &r2->via, r2->via_if, NEF_STICKY);
|
2010-12-08 06:34:36 +08:00
|
|
|
if (n)
|
|
|
|
{
|
|
|
|
r2->chain = n->data;
|
|
|
|
n->data = r2;
|
|
|
|
r2->neigh = n;
|
2015-07-25 00:02:07 +08:00
|
|
|
|
|
|
|
static_update_bfd(p, r2);
|
2010-12-08 06:34:36 +08:00
|
|
|
r2->installed = static_decide(cf, r2);
|
|
|
|
count += r2->installed;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
log(L_ERR "Static route destination %I is invalid. Ignoring.", r2->via);
|
|
|
|
r2->installed = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count)
|
|
|
|
static_install(p, r, NULL);
|
|
|
|
else
|
|
|
|
static_remove(p, r);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
default:
|
|
|
|
static_install(p, r, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-25 00:02:07 +08:00
|
|
|
static void
|
2016-10-14 21:37:04 +08:00
|
|
|
static_rte_cleanup(struct proto *p UNUSED, struct static_route *r)
|
2015-07-25 00:02:07 +08:00
|
|
|
{
|
|
|
|
struct static_route *r2;
|
|
|
|
|
|
|
|
if (r->bfd_req)
|
|
|
|
{
|
|
|
|
rfree(r->bfd_req);
|
|
|
|
r->bfd_req = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r->dest == RTD_MULTIPATH)
|
|
|
|
for (r2 = r->mp_next; r2; r2 = r2->mp_next)
|
|
|
|
if (r2->bfd_req)
|
|
|
|
{
|
|
|
|
rfree(r2->bfd_req);
|
|
|
|
r2->bfd_req = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-02-06 05:38:22 +08:00
|
|
|
static int
|
|
|
|
static_start(struct proto *p)
|
1998-12-07 02:21:23 +08:00
|
|
|
{
|
2011-09-24 08:21:52 +08:00
|
|
|
struct static_config *cf = (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");
|
2011-09-24 08:21:52 +08:00
|
|
|
|
2015-07-20 17:12:02 +08:00
|
|
|
if (!static_lp)
|
|
|
|
static_lp = lp_new(&root_pool, 1008);
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
if (cf->igp_table)
|
|
|
|
rt_lock_table(cf->igp_table->table);
|
|
|
|
|
2012-04-15 21:13:12 +08:00
|
|
|
/* We have to go UP before routes could be installed */
|
|
|
|
proto_notify_state(p, PS_UP);
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
WALK_LIST(r, cf->other_routes)
|
|
|
|
static_add(p, cf, 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)
|
|
|
|
{
|
2011-09-24 08:21:52 +08:00
|
|
|
struct static_config *cf = (void *) p->cf;
|
2000-05-13 19:01:41 +08:00
|
|
|
struct static_route *r;
|
|
|
|
|
2010-02-27 23:00:07 +08:00
|
|
|
/* Just reset the flag, the routes will be flushed by the nest */
|
2011-09-24 08:21:52 +08:00
|
|
|
WALK_LIST(r, cf->iface_routes)
|
2010-02-27 23:00:07 +08:00
|
|
|
r->installed = 0;
|
2011-09-24 08:21:52 +08:00
|
|
|
WALK_LIST(r, cf->other_routes)
|
2015-07-25 00:02:07 +08:00
|
|
|
{
|
|
|
|
static_rte_cleanup(p, r);
|
2010-02-27 23:00:07 +08:00
|
|
|
r->installed = 0;
|
2015-07-25 00:02:07 +08:00
|
|
|
}
|
2010-02-27 23:00:07 +08:00
|
|
|
|
2000-05-13 19:01:41 +08:00
|
|
|
return PS_DOWN;
|
|
|
|
}
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
static void
|
|
|
|
static_cleanup(struct proto *p)
|
|
|
|
{
|
|
|
|
struct static_config *cf = (void *) p->cf;
|
|
|
|
|
|
|
|
if (cf->igp_table)
|
|
|
|
rt_unlock_table(cf->igp_table->table);
|
|
|
|
}
|
|
|
|
|
2015-07-25 00:02:07 +08:00
|
|
|
static void
|
|
|
|
static_update_rte(struct proto *p, struct static_route *r)
|
|
|
|
{
|
|
|
|
switch (r->dest)
|
|
|
|
{
|
|
|
|
case RTD_ROUTER:
|
|
|
|
if (static_decide((struct static_config *) p->cf, r))
|
|
|
|
static_install(p, r, r->neigh->iface);
|
|
|
|
else
|
|
|
|
static_remove(p, r);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RTD_NONE: /* a part of multipath route */
|
|
|
|
{
|
|
|
|
int decision = static_decide((struct static_config *) p->cf, r);
|
|
|
|
if (decision == r->installed)
|
|
|
|
break; /* no change */
|
|
|
|
r->installed = decision;
|
|
|
|
|
|
|
|
struct static_route *r1, *r2;
|
|
|
|
int count = 0;
|
|
|
|
r1 = (void *) r->if_name; /* really */
|
|
|
|
for (r2 = r1->mp_next; r2; r2 = r2->mp_next)
|
|
|
|
count += r2->installed;
|
|
|
|
|
|
|
|
if (count)
|
|
|
|
{
|
|
|
|
/* Set of nexthops changed - force reinstall */
|
|
|
|
r1->installed = 0;
|
|
|
|
static_install(p, r1, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
static_remove(p, r1);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-24 08:21:52 +08:00
|
|
|
|
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;
|
|
|
|
|
2011-04-01 18:21:18 +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)
|
2015-07-25 00:02:07 +08:00
|
|
|
{
|
|
|
|
static_update_bfd(p, r);
|
|
|
|
static_update_rte(p, r);
|
|
|
|
}
|
|
|
|
}
|
2010-12-08 06:34:36 +08:00
|
|
|
|
2015-07-25 00:02:07 +08:00
|
|
|
static void
|
|
|
|
static_bfd_notify(struct bfd_request *req)
|
|
|
|
{
|
|
|
|
struct static_route *r = req->data;
|
|
|
|
struct proto *p = r->neigh->proto;
|
2010-12-08 06:34:36 +08:00
|
|
|
|
2015-07-25 00:02:07 +08:00
|
|
|
// if (req->down) TRACE(D_EVENTS, "BFD session down for nbr %I on %s", XXXX);
|
|
|
|
|
|
|
|
static_update_rte(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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 08:20:43 +08:00
|
|
|
int
|
2016-10-14 21:37:04 +08:00
|
|
|
static_rte_mergable(rte *pri UNUSED, rte *sec UNUSED)
|
2015-06-08 08:20:43 +08:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
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;
|
2015-06-08 08:20:43 +08:00
|
|
|
p->rte_mergable = static_rte_mergable;
|
2012-08-14 22:25:22 +08:00
|
|
|
|
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)
|
|
|
|
{
|
2010-12-08 06:34:36 +08:00
|
|
|
if (x->dest != y->dest)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (x->dest)
|
|
|
|
{
|
|
|
|
case RTD_ROUTER:
|
2012-01-01 19:02:20 +08:00
|
|
|
return ipa_equal(x->via, y->via) && (x->via_if == y->via_if);
|
2010-12-08 06:34:36 +08:00
|
|
|
|
|
|
|
case RTD_DEVICE:
|
|
|
|
return !strcmp(x->if_name, y->if_name);
|
|
|
|
|
|
|
|
case RTD_MULTIPATH:
|
|
|
|
for (x = x->mp_next, y = y->mp_next;
|
|
|
|
x && y;
|
|
|
|
x = x->mp_next, y = y->mp_next)
|
2015-07-25 00:02:07 +08:00
|
|
|
if (!ipa_equal(x->via, y->via) || (x->via_if != y->via_if) || (x->use_bfd != y->use_bfd))
|
2010-12-08 06:34:36 +08:00
|
|
|
return 0;
|
|
|
|
return !x && !y;
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
case RTDX_RECURSIVE:
|
|
|
|
return ipa_equal(x->via, y->via);
|
|
|
|
|
2010-12-08 06:34:36 +08:00
|
|
|
default:
|
|
|
|
return 1;
|
|
|
|
}
|
2000-01-17 20:38:50 +08:00
|
|
|
}
|
|
|
|
|
2015-07-20 17:12:02 +08:00
|
|
|
static inline int
|
|
|
|
static_same_rte(struct static_route *x, struct static_route *y)
|
|
|
|
{
|
2017-02-18 05:54:06 +08:00
|
|
|
/* Note that i_same() requires arguments in (new, old) order */
|
|
|
|
return static_same_dest(x, y) && i_same(y->cmds, x->cmds);
|
2015-07-20 17:12:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2014-02-26 20:25:39 +08:00
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
WALK_LIST(t, n->iface_routes)
|
2010-05-16 17:03:59 +08:00
|
|
|
if (static_same_net(r, t))
|
2014-02-26 20:25:39 +08:00
|
|
|
goto found;
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
WALK_LIST(t, n->other_routes)
|
2010-05-16 17:03:59 +08:00
|
|
|
if (static_same_net(r, t))
|
2014-02-26 20:25:39 +08:00
|
|
|
goto found;
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
static_remove(p, r);
|
2014-02-26 20:25:39 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
found:
|
|
|
|
/* If destination is different, force reinstall */
|
2015-07-20 17:12:02 +08:00
|
|
|
if ((r->installed > 0) && !static_same_rte(r, t))
|
2014-02-26 20:25:39 +08:00
|
|
|
t->installed = -1;
|
|
|
|
else
|
|
|
|
t->installed = r->installed;
|
2000-01-17 20:38:50 +08:00
|
|
|
}
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
static inline rtable *
|
|
|
|
cf_igp_table(struct static_config *cf)
|
|
|
|
{
|
|
|
|
return cf->igp_table ? cf->igp_table->table : NULL;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2011-09-24 08:21:52 +08:00
|
|
|
if (cf_igp_table(o) != cf_igp_table(n))
|
|
|
|
return 0;
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
/* 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;
|
2013-02-09 07:53:04 +08:00
|
|
|
if ((ifa = if_find_by_name(r->if_name)) && (ifa->flags & IF_UP))
|
2000-01-17 20:38:50 +08:00
|
|
|
static_install(p, r, ifa);
|
|
|
|
}
|
|
|
|
WALK_LIST(r, n->other_routes)
|
2010-11-11 19:24:27 +08:00
|
|
|
static_add(p, n, r);
|
2000-01-17 20:38:50 +08:00
|
|
|
|
2015-07-25 00:02:07 +08:00
|
|
|
WALK_LIST(r, o->other_routes)
|
|
|
|
static_rte_cleanup(p, r);
|
|
|
|
|
2000-01-17 20:38:50 +08:00
|
|
|
return 1;
|
2000-01-17 19:52:50 +08:00
|
|
|
}
|
|
|
|
|
2011-11-07 07:31:23 +08:00
|
|
|
static void
|
|
|
|
static_copy_routes(list *dlst, list *slst)
|
|
|
|
{
|
|
|
|
struct static_route *dr, *sr;
|
|
|
|
|
|
|
|
init_list(dlst);
|
|
|
|
WALK_LIST(sr, *slst)
|
|
|
|
{
|
|
|
|
/* copy one route */
|
|
|
|
dr = cfg_alloc(sizeof(struct static_route));
|
|
|
|
memcpy(dr, sr, sizeof(struct static_route));
|
|
|
|
|
|
|
|
/* This fn is supposed to be called on fresh src routes, which have 'live'
|
|
|
|
fields (like .chain, .neigh or .installed) zero, so no need to zero them */
|
|
|
|
|
|
|
|
/* We need to copy multipath chain, because there are backptrs in 'if_name' */
|
|
|
|
if (dr->dest == RTD_MULTIPATH)
|
|
|
|
{
|
|
|
|
struct static_route *md, *ms, **mp_last;
|
|
|
|
|
|
|
|
mp_last = &(dr->mp_next);
|
|
|
|
for (ms = sr->mp_next; ms; ms = ms->mp_next)
|
|
|
|
{
|
|
|
|
md = cfg_alloc(sizeof(struct static_route));
|
|
|
|
memcpy(md, ms, sizeof(struct static_route));
|
|
|
|
md->if_name = (void *) dr; /* really */
|
|
|
|
|
|
|
|
*mp_last = md;
|
|
|
|
mp_last = &(md->mp_next);
|
|
|
|
}
|
|
|
|
*mp_last = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_tail(dlst, (node *) dr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
static_copy_config(struct proto_config *dest, struct proto_config *src)
|
|
|
|
{
|
|
|
|
struct static_config *d = (struct static_config *) dest;
|
|
|
|
struct static_config *s = (struct static_config *) src;
|
|
|
|
|
|
|
|
/* Shallow copy of everything */
|
|
|
|
proto_copy_rest(dest, src, sizeof(struct static_config));
|
|
|
|
|
|
|
|
/* Copy route lists */
|
|
|
|
static_copy_routes(&d->iface_routes, &s->iface_routes);
|
|
|
|
static_copy_routes(&d->other_routes, &s->other_routes);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-07 02:21:23 +08:00
|
|
|
struct protocol proto_static = {
|
2014-12-03 17:10:34 +08:00
|
|
|
.name = "Static",
|
|
|
|
.template = "static%d",
|
|
|
|
.preference = DEF_PREF_STATIC,
|
2015-02-22 04:08:23 +08:00
|
|
|
.config_size = sizeof(struct static_config),
|
2014-12-03 17:10:34 +08:00
|
|
|
.init = static_init,
|
|
|
|
.dump = static_dump,
|
|
|
|
.start = static_start,
|
|
|
|
.shutdown = static_shutdown,
|
|
|
|
.cleanup = static_cleanup,
|
|
|
|
.reconfigure = static_reconfigure,
|
|
|
|
.copy_config = static_copy_config
|
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)
|
|
|
|
{
|
2012-01-09 10:20:52 +08:00
|
|
|
case RTD_ROUTER: bsprintf(via, "via %I%J", r->via, r->via_if); 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;
|
2010-12-08 06:34:36 +08:00
|
|
|
case RTD_UNREACHABLE: bsprintf(via, "unreachable"); break;
|
1999-12-03 19:41:23 +08:00
|
|
|
case RTD_PROHIBIT: bsprintf(via, "prohibited"); break;
|
2010-12-08 06:34:36 +08:00
|
|
|
case RTD_MULTIPATH: bsprintf(via, "multipath"); break;
|
2011-09-24 08:21:52 +08:00
|
|
|
case RTDX_RECURSIVE: bsprintf(via, "recursive %I", r->via); break;
|
1999-12-03 19:41:23 +08:00
|
|
|
default: bsprintf(via, "???");
|
|
|
|
}
|
2015-07-25 00:02:07 +08:00
|
|
|
cli_msg(-1009, "%I/%d %s%s%s", r->net, r->masklen, via,
|
|
|
|
r->bfd_req ? " (bfd)" : "", r->installed ? "" : " (dormant)");
|
2010-12-08 06:34:36 +08:00
|
|
|
|
|
|
|
struct static_route *r2;
|
|
|
|
if (r->dest == RTD_MULTIPATH)
|
|
|
|
for (r2 = r->mp_next; r2; r2 = r2->mp_next)
|
2015-07-25 00:02:07 +08:00
|
|
|
cli_msg(-1009, "\tvia %I%J weight %d%s%s", r2->via, r2->via_if, r2->masklen + 1, /* really */
|
|
|
|
r2->bfd_req ? " (bfd)" : "", r2->installed ? "" : " (dormant)");
|
1999-12-03 19:41:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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, "");
|
|
|
|
}
|