RAdv: Some style nitpicks
This commit is contained in:
parent
ec7d6a506e
commit
08b6a617e8
4 changed files with 50 additions and 48 deletions
|
@ -3437,10 +3437,10 @@ dsc-iface
|
||||||
Default: 3 * <cf/max ra interval/, <cf/sensitive/ yes.
|
Default: 3 * <cf/max ra interval/, <cf/sensitive/ yes.
|
||||||
|
|
||||||
<tag><label id="radv-iface-linger-time">linger time <m/expr/</tag>
|
<tag><label id="radv-iface-linger-time">linger time <m/expr/</tag>
|
||||||
When a prefix disappears, it is advertised for some time with 0 lifetime,
|
When a prefix disappears, it is advertised for some time with 0
|
||||||
to inform clients the prefix is no longer usable. This sets the time for
|
lifetime, to inform clients the prefix is no longer usable. This option
|
||||||
how long it is advertised (in seconds). Maximum is 3600, 0 means
|
sets the time for how long it is advertised (in seconds). Maximum is
|
||||||
disable. Default 300.
|
3600, 0 means disabled. Default: 300.
|
||||||
|
|
||||||
<tag><label id="radv-iface-default-preference-low">default preference low|medium|high</tag>
|
<tag><label id="radv-iface-default-preference-low">default preference low|medium|high</tag>
|
||||||
This option specifies the Default Router Preference value to advertise
|
This option specifies the Default Router Preference value to advertise
|
||||||
|
|
|
@ -209,16 +209,16 @@ static int
|
||||||
radv_prepare_prefix(struct radv_iface *ifa, struct radv_prefix *prefix,
|
radv_prepare_prefix(struct radv_iface *ifa, struct radv_prefix *prefix,
|
||||||
char **buf, char *bufend)
|
char **buf, char *bufend)
|
||||||
{
|
{
|
||||||
struct radv_prefix_config *pc = prefix->config;
|
struct radv_prefix_config *pc = prefix->cf;
|
||||||
struct radv_opt_prefix *op = (void *) *buf;
|
|
||||||
|
|
||||||
if (*buf + sizeof(*op) > bufend)
|
if (*buf + sizeof(struct radv_opt_prefix) > bufend)
|
||||||
{
|
{
|
||||||
log(L_WARN "%s: Too many prefixes on interface %s", ifa->ra->p.name,
|
log(L_WARN "%s: Too many prefixes on interface %s",
|
||||||
ifa->iface->name);
|
ifa->ra->p.name, ifa->iface->name);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct radv_opt_prefix *op = (void *) *buf;
|
||||||
op->type = OPT_PREFIX;
|
op->type = OPT_PREFIX;
|
||||||
op->length = 4;
|
op->length = 4;
|
||||||
op->pxlen = prefix->len;
|
op->pxlen = prefix->len;
|
||||||
|
|
|
@ -51,13 +51,14 @@ radv_timer(timer *tm)
|
||||||
|
|
||||||
RADV_TRACE(D_EVENTS, "Timer fired on %s", ifa->iface->name);
|
RADV_TRACE(D_EVENTS, "Timer fired on %s", ifa->iface->name);
|
||||||
|
|
||||||
/* If some dead prefixes expired, regenerate the prefix list and the packet.
|
/*
|
||||||
|
* If some dead prefixes expired, regenerate the prefix list and the packet.
|
||||||
* We do so by pretending there was a change on the interface.
|
* We do so by pretending there was a change on the interface.
|
||||||
*
|
*
|
||||||
* This sets the timer, but we replace it just at the end of this function
|
* This sets the timer, but we replace it just at the end of this function
|
||||||
* (replacing a timer is fine).
|
* (replacing a timer is fine).
|
||||||
*/
|
*/
|
||||||
if (ifa->prefix_expires != 0 && ifa->prefix_expires <= now)
|
if (ifa->prefix_expires && (ifa->prefix_expires <= now))
|
||||||
radv_iface_notify(ifa, RA_EV_GC);
|
radv_iface_notify(ifa, RA_EV_GC);
|
||||||
|
|
||||||
radv_send_ra(ifa, 0);
|
radv_send_ra(ifa, 0);
|
||||||
|
@ -110,20 +111,20 @@ radv_prefix_match(struct radv_iface *ifa, struct ifa *a)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Go through the list of prefixes, compare them with configs and decide if we
|
* Go through the list of prefixes, compare them with configs and decide if we
|
||||||
* want them or not. */
|
* want them or not.
|
||||||
|
*/
|
||||||
static void
|
static void
|
||||||
prefixes_prepare(struct radv_iface *ifa)
|
radv_prepare_prefixes(struct radv_iface *ifa)
|
||||||
{
|
{
|
||||||
struct radv_proto *p = ifa->ra;
|
struct radv_proto *p = ifa->ra;
|
||||||
struct radv_iface_config *cf = ifa->cf;
|
struct radv_iface_config *cf = ifa->cf;
|
||||||
/* First mark all the prefixes as unused */
|
|
||||||
struct radv_prefix *pfx;
|
struct radv_prefix *pfx;
|
||||||
|
|
||||||
|
/* First mark all the prefixes as unused */
|
||||||
WALK_LIST(pfx, ifa->prefixes)
|
WALK_LIST(pfx, ifa->prefixes)
|
||||||
pfx->mark = 0;
|
pfx->mark = 0;
|
||||||
|
|
||||||
/* Now find all the prefixes we want to use and make sure they are in the
|
/* Find all the prefixes we want to use and make sure they are in the list. */
|
||||||
* list. */
|
|
||||||
struct ifa *addr;
|
struct ifa *addr;
|
||||||
WALK_LIST(addr, ifa->iface->addrs)
|
WALK_LIST(addr, ifa->iface->addrs)
|
||||||
{
|
{
|
||||||
|
@ -135,8 +136,7 @@ prefixes_prepare(struct radv_iface *ifa)
|
||||||
/* Do we have it already? */
|
/* Do we have it already? */
|
||||||
struct radv_prefix *existing = NULL;
|
struct radv_prefix *existing = NULL;
|
||||||
WALK_LIST(pfx, ifa->prefixes)
|
WALK_LIST(pfx, ifa->prefixes)
|
||||||
if (pfx->len == addr->pxlen &&
|
if ((pfx->len == addr->pxlen) && ipa_equal(pfx->prefix, addr->prefix))
|
||||||
memcmp(&pfx->prefix, &addr->prefix, sizeof pfx->prefix) == 0)
|
|
||||||
{
|
{
|
||||||
existing = pfx;
|
existing = pfx;
|
||||||
break;
|
break;
|
||||||
|
@ -144,20 +144,22 @@ prefixes_prepare(struct radv_iface *ifa)
|
||||||
|
|
||||||
if (!existing)
|
if (!existing)
|
||||||
{
|
{
|
||||||
RADV_TRACE(D_EVENTS, "Allocating new prefix %I on %s", addr->prefix,
|
RADV_TRACE(D_EVENTS, "Adding new prefix %I/%d on %s",
|
||||||
ifa->iface->name);
|
addr->prefix, addr->pxlen, ifa->iface->name);
|
||||||
|
|
||||||
existing = mb_allocz(ifa->pool, sizeof *existing);
|
existing = mb_allocz(ifa->pool, sizeof *existing);
|
||||||
existing->prefix = addr->prefix;
|
existing->prefix = addr->prefix;
|
||||||
existing->len = addr->pxlen;
|
existing->len = addr->pxlen;
|
||||||
add_tail(&ifa->prefixes, NODE existing);
|
add_tail(&ifa->prefixes, NODE existing);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Update the information (it may have changed, or even bring a prefix back
|
* Update the information (it may have changed, or even bring a prefix back
|
||||||
* to life).
|
* to life).
|
||||||
*/
|
*/
|
||||||
existing->alive = 1;
|
existing->alive = 1;
|
||||||
existing->mark = 1;
|
existing->mark = 1;
|
||||||
existing->config = pc;
|
existing->cf = pc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -165,37 +167,41 @@ prefixes_prepare(struct radv_iface *ifa)
|
||||||
* dropped just yet). If something is dead and rots there for long enough,
|
* dropped just yet). If something is dead and rots there for long enough,
|
||||||
* clean it up.
|
* clean it up.
|
||||||
*/
|
*/
|
||||||
bird_clock_t rotten = now + cf->linger_time;
|
bird_clock_t expires = now + cf->linger_time;
|
||||||
|
bird_clock_t expires_min = 0;
|
||||||
struct radv_prefix *next;
|
struct radv_prefix *next;
|
||||||
bird_clock_t expires_soonest = 0;
|
WALK_LIST_DELSAFE(pfx, next, ifa->prefixes)
|
||||||
WALK_LIST_DELSAFE(pfx, next, ifa->prefixes) {
|
{
|
||||||
if (pfx->alive && !pfx->mark)
|
if (pfx->alive && !pfx->mark)
|
||||||
{
|
{
|
||||||
RADV_TRACE(D_EVENTS, "Marking prefix %I on %s as dead", pfx->prefix,
|
RADV_TRACE(D_EVENTS, "Marking prefix %I/$d on %s as dead",
|
||||||
ifa->iface->name);
|
pfx->prefix, pfx->len, ifa->iface->name);
|
||||||
// It just died
|
|
||||||
pfx->alive = 0;
|
pfx->alive = 0;
|
||||||
pfx->expires = rotten;
|
pfx->expires = expires;
|
||||||
pfx->config = &dead_prefix;
|
pfx->cf = &dead_prefix;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!pfx->alive)
|
if (!pfx->alive)
|
||||||
|
{
|
||||||
if (pfx->expires <= now)
|
if (pfx->expires <= now)
|
||||||
{
|
{
|
||||||
RADV_TRACE(D_EVENTS, "Dropping long dead prefix %I on %s", pfx->prefix,
|
RADV_TRACE(D_EVENTS, "Removing prefix %I/%d on %s",
|
||||||
ifa->iface->name);
|
pfx->prefix, pfx->len, ifa->iface->name);
|
||||||
// It's dead and rotten, clean it up
|
|
||||||
rem_node(NODE pfx);
|
rem_node(NODE pfx);
|
||||||
mb_free(pfx);
|
mb_free(pfx);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ASSERT(pfx->expires != 0);
|
/* Find minimum expiration time */
|
||||||
// Let it rot for a while more, but look when it's ripe.
|
if (!expires_min || (pfx->expires < expires_min))
|
||||||
if (expires_soonest == 0 || pfx->expires < expires_soonest)
|
expires_min = pfx->expires;
|
||||||
expires_soonest = pfx->expires;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ifa->prefix_expires = expires_soonest;
|
}
|
||||||
|
|
||||||
|
ifa->prefix_expires = expires_min;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* ev_name[] = { NULL, "Init", "Change", "RS", "Garbage collect" };
|
static char* ev_name[] = { NULL, "Init", "Change", "RS", "Garbage collect" };
|
||||||
|
@ -223,7 +229,7 @@ radv_iface_notify(struct radv_iface *ifa, int event)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
prefixes_prepare(ifa);
|
radv_prepare_prefixes(ifa);
|
||||||
|
|
||||||
/* Update timer */
|
/* Update timer */
|
||||||
unsigned delta = now - ifa->last;
|
unsigned delta = now - ifa->last;
|
||||||
|
|
|
@ -130,16 +130,12 @@ struct radv_prefix /* One prefix we advertise */
|
||||||
node n;
|
node n;
|
||||||
ip_addr prefix;
|
ip_addr prefix;
|
||||||
u8 len;
|
u8 len;
|
||||||
/* Is the prefix alive? If not, we advertise it with 0 lifetime, so clients
|
u8 alive; /* Is the prefix alive? If not, we advertise it
|
||||||
* stop using it. */
|
with 0 lifetime, so clients stop using it */
|
||||||
u8 alive;
|
|
||||||
u8 mark; /* A temporary mark for processing */
|
u8 mark; /* A temporary mark for processing */
|
||||||
/* The (absolute) time when we drop this prefix from advertising. It is valid
|
bird_clock_t expires; /* The time when we drop this prefix from
|
||||||
* only if !alive. */
|
advertising. It is valid only if !alive. */
|
||||||
bird_clock_t expires;
|
struct radv_prefix_config *cf; /* The config tied to this prefix */
|
||||||
/* The config tied to this prefix. Always valid (we place a dummy config here
|
|
||||||
* when !alive). */
|
|
||||||
struct radv_prefix_config *config;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct radv_iface
|
struct radv_iface
|
||||||
|
@ -150,7 +146,7 @@ struct radv_iface
|
||||||
struct iface *iface;
|
struct iface *iface;
|
||||||
struct ifa *addr; /* Link-local address of iface */
|
struct ifa *addr; /* Link-local address of iface */
|
||||||
struct pool *pool; /* A pool for interface-specific things */
|
struct pool *pool; /* A pool for interface-specific things */
|
||||||
list prefixes; /* The prefixes we advertise */
|
list prefixes; /* The prefixes we advertise (struct radv_prefix) */
|
||||||
bird_clock_t prefix_expires; /* When the soonest prefix expires (0 = none dead) */
|
bird_clock_t prefix_expires; /* When the soonest prefix expires (0 = none dead) */
|
||||||
|
|
||||||
timer *timer;
|
timer *timer;
|
||||||
|
|
Loading…
Reference in a new issue