]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Preexport: No route modification, no linpool needed
authorMaria Matejka <mq@jmq.cz>
Sun, 12 Apr 2020 19:54:20 +0000 (21:54 +0200)
committerMaria Matejka <mq@ucw.cz>
Sat, 20 Mar 2021 22:53:59 +0000 (23:53 +0100)
nest/protocol.h
nest/rt-show.c
nest/rt-table.c
proto/babel/babel.c
proto/bgp/attrs.c
proto/bgp/bgp.h
proto/ospf/ospf.c
proto/pipe/pipe.c
proto/radv/radv.c
sysdep/unix/krt.c

index 9dc7a085ed5866e46844fb4b576d034f6293ef83..216cd954411129ef52e080385875417be9b9c931 100644 (file)
@@ -197,10 +197,11 @@ struct proto {
    *      ifa_notify   Notify protocol about interface address changes.
    *      rt_notify    Notify protocol about routing table updates.
    *      neigh_notify Notify protocol about neighbor cache events.
-   *      preexport  Called as the first step of the route exporting process.
-   *                   It can construct a new rte, add private attributes and
-   *                   decide whether the route shall be exported: 1=yes, -1=no,
-   *                   0=process it through the export filter set by the user.
+   *      preexport    Called as the first step of the route exporting process.
+   *                   It can decide whether the route shall be exported:
+   *                     -1 = reject,
+   *                      0 = continue to export filter
+   *                      1 = accept immediately
    *      reload_routes   Request channel to reload all its routes to the core
    *                   (using rte_update()). Returns: 0=reload cannot be done,
    *                   1= reload is scheduled and will happen (asynchronously).
@@ -212,7 +213,7 @@ struct proto {
   void (*ifa_notify)(struct proto *, unsigned flags, struct ifa *a);
   void (*rt_notify)(struct channel *, struct rte_export *);
   void (*neigh_notify)(struct neighbor *neigh);
-  int (*preexport)(struct proto *, struct rte **rt, struct linpool *pool);
+  int (*preexport)(struct proto *, struct rte *rt);
   void (*reload_routes)(struct channel *);
   void (*feed_begin)(struct channel *, int initial);
   void (*feed_end)(struct channel *);
index b0bfa1c8b98579a53097a4ade5bd49e7c3e2392a..4a96ad3cab2fab0b97be3520d3e1be639c170004 100644 (file)
@@ -153,7 +153,7 @@ rt_show_net(struct cli *c, net *n, struct rt_show_data *d)
       else if (d->export_mode)
        {
          struct proto *ep = ec->proto;
-         int ic = ep->preexport ? ep->preexport(ep, &e, c->show_pool) : 0;
+         int ic = ep->preexport ? ep->preexport(ep, e) : 0;
 
          if (ec->ra_mode == RA_OPTIMAL || ec->ra_mode == RA_MERGED)
            pass = 1;
index b8f16a6927198070ab9cd4ed291ff6a6b7c65c82..21acad7708f3f93802c32d5529aa9b193795f6d5 100644 (file)
@@ -456,7 +456,7 @@ export_filter_(struct channel *c, rte *rt0, rte **rt_free, linpool *pool, int si
   if (silent && bmap_test(&c->export_reject_map, rt0->id))
     return NULL;
 
-  v = p->preexport ? p->preexport(p, &rt, pool) : 0;
+  v = p->preexport ? p->preexport(p, rt) : 0;
   if (v < 0)
     {
       if (silent)
index 824d066d25f5c7ba1a523ae069fff825e66d7071..8b0859b40ba06767d1c5677cc7bdbd3af73bd4d7 100644 (file)
@@ -2100,10 +2100,10 @@ babel_kick_timer(struct babel_proto *p)
 
 
 static int
-babel_preexport(struct proto *P, struct rte **new, struct linpool *pool UNUSED)
+babel_preexport(struct proto *P, struct rte *new)
 {
   /* Reject our own unreachable routes */
-  if (((*new)->attrs->dest == RTD_UNREACHABLE) && ((*new)->src->proto == P))
+  if ((new->attrs->dest == RTD_UNREACHABLE) && (new->src->proto == P))
     return -1;
 
   return 0;
index f254c940eb04017fb7bbaeace252451b72ae6658..11a64c1bb4070f61f1c7d016b90e4c3557dd91e1 100644 (file)
@@ -1661,9 +1661,8 @@ bgp_free_prefix(struct bgp_channel *c, struct bgp_prefix *px)
  */
 
 int
-bgp_preexport(struct proto *P, rte **new, struct linpool *pool UNUSED)
+bgp_preexport(struct proto *P, rte *e)
 {
-  rte *e = *new;
   struct proto *SRC = e->src->proto;
   struct bgp_proto *p = (struct bgp_proto *) P;
   struct bgp_proto *src = (SRC->proto == &proto_bgp) ? (struct bgp_proto *) SRC : NULL;
index 49cbc3efb632c3dfedd9236649676fa5175721da..70faf1de0b2fdf99bd1a6101194b623e1760eee0 100644 (file)
@@ -587,7 +587,7 @@ int bgp_rte_mergable(rte *pri, rte *sec);
 int bgp_rte_recalculate(rtable *table, net *net, rte *new, rte *old, rte *old_best);
 struct rte *bgp_rte_modify_stale(struct rte *r, struct linpool *pool);
 void bgp_rt_notify(struct channel *C, struct rte_export *e);
-int bgp_preexport(struct proto *, struct rte **, struct linpool *);
+int bgp_preexport(struct proto *, struct rte *);
 int bgp_get_attr(const struct eattr *e, byte *buf, int buflen);
 void bgp_get_route_info(struct rte *, byte *buf);
 int bgp_total_aigp_metric_(rte *e, u64 *metric, const struct adata **ad);
index 396f9ece23499911093f5690af34d73c360c36eb..f8d0115668b502e3f3aab029c6af361c5cb93b8c 100644 (file)
 #include <stdlib.h>
 #include "ospf.h"
 
-static int ospf_preexport(struct proto *P, rte **new, struct linpool *pool);
+static int ospf_preexport(struct proto *P, rte *new);
 static void ospf_reload_routes(struct channel *C);
 static int ospf_rte_better(struct rte *new, struct rte *old);
 static void ospf_disp(timer *timer);
@@ -471,11 +471,10 @@ ospf_disp(timer * timer)
  * import to the filters.
  */
 static int
-ospf_preexport(struct proto *P, rte **new, struct linpool *pool UNUSED)
+ospf_preexport(struct proto *P, rte *e)
 {
   struct ospf_proto *p = (struct ospf_proto *) P;
   struct ospf_area *oa = ospf_main_area(p);
-  rte *e = *new;
 
   /* Reject our own routes */
   if (e->src->proto == P)
index 7cf1524ade81085f33c184815bb1b78481768446..0e541eb0e8c0c7ee94767b19436536d3482f65ba 100644 (file)
@@ -89,9 +89,9 @@ pipe_rt_notify(struct channel *src_ch, struct rte_export *export)
 }
 
 static int
-pipe_preexport(struct proto *P, rte **ee, struct linpool *p UNUSED)
+pipe_preexport(struct proto *P, rte *e)
 {
-  struct proto *pp = (*ee)->sender->proto;
+  struct proto *pp = e->sender->proto;
 
   if (pp == P)
     return -1; /* Avoid local loops automatically */
index c924ef84f1f98a0d9f60c7ec665bcf7c8b99284a..524ff5af4c5b7be68acb6176e6abc7da2ea7d198 100644 (file)
@@ -391,12 +391,12 @@ radv_net_match_trigger(struct radv_config *cf, net_addr *n)
 }
 
 int
-radv_preexport(struct proto *P, rte **new, struct linpool *pool UNUSED)
+radv_preexport(struct proto *P, rte *new)
 {
   // struct radv_proto *p = (struct radv_proto *) P;
   struct radv_config *cf = (struct radv_config *) (P->cf);
 
-  if (radv_net_match_trigger(cf, (*new)->net->n.addr))
+  if (radv_net_match_trigger(cf, new->net->n.addr))
     return RIC_PROCESS;
 
   if (cf->propagate_routes)
index 00655213dad70bd2f7fdfbd28b15025b63487090..f39f6f10b82ca3d1f69fa494a8e5f9d3810641e7 100644 (file)
@@ -873,11 +873,9 @@ krt_scan_timer_kick(struct krt_proto *p)
  */
 
 static int
-krt_preexport(struct proto *P, rte **new, struct linpool *pool UNUSED)
+krt_preexport(struct proto *P, rte *e)
 {
   // struct krt_proto *p = (struct krt_proto *) P;
-  rte *e = *new;
-
   if (e->src->proto == P)
     return -1;