summaryrefslogtreecommitdiffstats
path: root/nest/rt-table.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2003-08-13 22:04:39 +0200
committerMartin Mares <mj@ucw.cz>2003-08-13 22:04:39 +0200
commit13b75bacf7221eb655dcbed54e3c3605bea5169e (patch)
treea02f6ef77ae2611618208190f40abfc18029719d /nest/rt-table.c
parent2adab6ae9cc586871a8854e51452839cb1dd1db0 (diff)
downloadbird-13b75bacf7221eb655dcbed54e3c3605bea5169e.tar
bird-13b75bacf7221eb655dcbed54e3c3605bea5169e.zip
protocol->import_control() could potentially call rte_cow() as well.
AFAIK it doesn't happen in any of our protocol, but better be sure.
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index 7d8894d..06236b6 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -168,22 +168,19 @@ do_rte_announce(struct announce_hook *a, net *net, rte *new, rte *old, ea_list *
if (new)
{
+ char *drop_reason = NULL;
if ((class & IADDR_SCOPE_MASK) < p->min_scope)
- {
- rte_trace_out(D_FILTERS, p, new, "out of scope");
- new = NULL;
- }
+ drop_reason = "out of scope";
else if ((ok = p->import_control ? p->import_control(p, &new, &tmpa, rte_update_pool) : 0) < 0)
- {
- rte_trace_out(D_FILTERS, p, new, "rejected by protocol");
- new = NULL;
- }
+ drop_reason = "rejected by protocol";
else if (ok)
rte_trace_out(D_FILTERS, p, new, "forced accept by protocol");
else if (p->out_filter == FILTER_REJECT ||
p->out_filter && f_run(p->out_filter, &new, &tmpa, rte_update_pool, FF_FORCE_TMPATTR) > F_ACCEPT)
+ drop_reason = "filtered out";
+ if (drop_reason)
{
- rte_trace_out(D_FILTERS, p, new, "filtered out");
+ rte_trace_out(D_FILTERS, p, new, drop_reason);
if (new != new0)
rte_free(new);
new = NULL;
@@ -198,7 +195,11 @@ do_rte_announce(struct announce_hook *a, net *net, rte *new, rte *old, ea_list *
ea_list *tmpb = p->make_tmp_attrs ? p->make_tmp_attrs(old, rte_update_pool) : NULL;
ok = p->import_control ? p->import_control(p, &old, &tmpb, rte_update_pool) : 0;
if (ok < 0 || (!ok && f_run(p->out_filter, &old, &tmpb, rte_update_pool, FF_FORCE_TMPATTR) > F_ACCEPT))
- old = NULL;
+ {
+ if (old != old0)
+ rte_free(old);
+ old = NULL;
+ }
}
}
if (p->debug & D_ROUTES)