]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Revert "Filter: Allow setting the 'onlink' route attribute in filters"
authorMaria Matejka <mq@ucw.cz>
Tue, 24 Jan 2023 08:20:36 +0000 (09:20 +0100)
committerMaria Matejka <mq@ucw.cz>
Tue, 24 Jan 2023 08:20:36 +0000 (09:20 +0100)
This reverts commit 7144c9ca46f092da33a4e051bbce8f973a3bd8c4.

The onlink attribute implementation collides with the nexthop attribute
behavior in v3; keeping it aside until finding out how to reimplement it
correctly.

doc/bird.sgml
filter/config.Y
filter/data.h
filter/f-inst.c

index 001fcbd40af6f785af91d23c74a9f9a8e7ce34ee..50657ebf872a69b86d8faee5c2d5cd2cdd203776 100644 (file)
@@ -1816,14 +1816,6 @@ Common route attributes are:
        creation/removal. Zero is returned for routes with undefined outgoing
        interfaces. Read-only.
 
-       <tag><label id="rta-onlink"><m/bool/ onlink</tag>
-       Onlink flag means that the specified nexthop is accessible on the
-       interface regardless of IP prefixes configured on the interface.
-       The attribute can be used to configure such next hops by first setting
-       <cf/onlink = true/ and <cf/ifname/, and then setting <cf/gw/. Possible
-       use case for setting this flag is to automatically build overlay IP-IP
-       networks on linux.
-
        <tag><label id="rta-weight"><m/int/ weight</tag>
        Multipath weight of route next hops. Valid values are 1-256. Reading
        returns the weight of the first next hop, setting it sets weights of all
index a1e5e9f17fd4bb31213b6ccdf3b063b009800d90..1d9d9aa970ee1b7734f727ef80ee334578537d09 100644 (file)
@@ -305,7 +305,7 @@ CF_KEYWORDS(FUNCTION, PRINT, PRINTN, UNSET, RETURN,
        IF, THEN, ELSE, CASE,
        FOR, IN, DO,
        TRUE, FALSE, RT, RO, UNKNOWN, GENERIC,
-       FROM, GW, NET, MASK, PROTO, SOURCE, SCOPE, DEST, IFNAME, IFINDEX, WEIGHT, GW_MPLS, ONLINK,
+       FROM, GW, NET, MASK, PROTO, SOURCE, SCOPE, DEST, IFNAME, IFINDEX, WEIGHT, GW_MPLS,
        PREFERENCE,
        ROA_CHECK, ASN, SRC, DST,
        IS_V4, IS_V6,
@@ -795,7 +795,6 @@ static_attr:
  | WEIGHT  { $$ = f_new_static_attr(T_INT,        SA_WEIGHT,   0); }
  | PREFERENCE { $$ = f_new_static_attr(T_INT,    SA_PREF,      0); }
  | GW_MPLS { $$ = f_new_static_attr(T_INT,        SA_GW_MPLS,  0); }
- | ONLINK  { $$ = f_new_static_attr(T_BOOL,       SA_ONLINK,   0); }
  ;
 
 term:
index b3767f7bc7d58df3150297923d0551f8cb6f88c1..700609e9de8cc2ef88aef2565281d9f41f07b64a 100644 (file)
@@ -102,7 +102,6 @@ enum f_sa_code {
   SA_WEIGHT,
   SA_PREF,
   SA_GW_MPLS,
-  SA_ONLINK,
 } PACKED;
 
 /* Static attribute definition (members of struct rta) */
index e4b47ff48499fed83a4a103b82ebe8d4a66812f8..2d2a30e4f7da5a2150e360086dddee76e9091409 100644 (file)
       case SA_WEIGHT:  RESULT(sa.f_type, i, rta->nh.weight + 1); break;
       case SA_PREF:    RESULT(sa.f_type, i, rta->pref); break;
       case SA_GW_MPLS: RESULT(sa.f_type, i, rta->nh.labels ? rta->nh.label[0] : MPLS_NULL); break;
-      case SA_ONLINK:  RESULT(sa.f_type, i, rta->nh.flags & RNF_ONLINK ? 1 : 0); break;
 
       default:
        bug("Invalid static attribute access (%u/%u)", sa.f_type, sa.sa_code);
       case SA_GW:
        {
          ip_addr ip = v1.val.ip;
-         struct iface *ifa = ipa_is_link_local(ip) || (rta->nh.flags & RNF_ONLINK) ? rta->nh.iface : NULL;
-         neighbor *n = neigh_find((*fs->rte)->src->proto, ip, ifa, (rta->nh.flags & RNF_ONLINK) ? NEF_ONLINK : 0);
+         struct iface *ifa = ipa_is_link_local(ip) ? rta->nh.iface : NULL;
+         neighbor *n = neigh_find((*fs->rte)->src->proto, ip, ifa, 0);
          if (!n || (n->scope == SCOPE_HOST))
            runtime( "Invalid gw address" );
 
        rta->pref = v1.val.i;
        break;
 
-      case SA_ONLINK:
-       {
-         if (v1.val.i)
-           rta->nh.flags |= RNF_ONLINK;
-         else
-           rta->nh.flags &= ~RNF_ONLINK;
-       }
-       break;
-
       default:
        bug("Invalid static attribute access (%u/%u)", sa.f_type, sa.sa_code);
       }