]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Add `.maxlen' operator to all ROA prefixes in filters
authorPavel Tvrdik <pawel.tvrdik@gmail.com>
Wed, 29 Jun 2016 10:21:43 +0000 (12:21 +0200)
committerJan Moskyto Matejka <mq@ucw.cz>
Wed, 7 Dec 2016 08:35:24 +0000 (09:35 +0100)
Example:
  bird> eval (1.2.0.0/16 max 20 as 1234).maxlen
  20

Todo: Should be described in user docs

filter/config.Y
filter/filter.c

index 6783ea10547225b67cd12717186da1208f091f68..79247ac9608cc58b2cf0884c04df9cdb5f7f5fd2 100644 (file)
@@ -279,7 +279,7 @@ CF_KEYWORDS(FUNCTION, PRINT, PRINTN, UNSET, RETURN,
        FROM, GW, NET, MASK, PROTO, SOURCE, SCOPE, CAST, DEST, IFNAME, IFINDEX,
        PREFERENCE,
        ROA_CHECK, ASN,
-       LEN,
+       LEN, MAXLEN,
        DEFINED,
        ADD, DELETE, CONTAINS, RESET,
        PREPEND, FIRST, LAST, LAST_NONAGGREGATED, MATCH,
@@ -740,6 +740,7 @@ term:
 
  | term '.' IP { $$ = f_new_inst(); $$->code = P('c','p'); $$->a1.p = $1; $$->aux = T_IP; }
  | term '.' LEN { $$ = f_new_inst(); $$->code = 'L'; $$->a1.p = $1; }
+ | term '.' MAXLEN { $$ = f_new_inst(); $$->code = P('R','m'); $$->a1.p = $1; }
  | term '.' ASN { $$ = f_new_inst(); $$->code = P('R','a'); $$->a1.p = $1; }
  | term '.' MASK '(' term ')' { $$ = f_new_inst(); $$->code = P('i','M'); $$->a1.p = $1; $$->a2.p = $5; }
  | term '.' FIRST { $$ = f_new_inst(); $$->code = P('a','f'); $$->a1.p = $1; }
index ba1ba75377a29cc3ac67413ddf3fd118d9afb39e..ebdd02f2b127a059b60c020c2aea6e78fb5a9762 100644 (file)
@@ -1029,6 +1029,16 @@ interpret(struct f_inst *what)
     default: runtime( "Prefix, path, clist or eclist expected" );
     }
     break;
+  case P('R','m'):     /* Get ROA max prefix length */
+    ONEARG;
+    if (v1.type != T_NET || !net_is_roa(v1.val.net))
+      runtime( "ROA expected" );
+
+    res.type = T_INT;
+    res.val.i = (v1.val.net->type == NET_ROA4) ?
+      ((net_addr_roa4 *) v1.val.net)->max_pxlen :
+      ((net_addr_roa6 *) v1.val.net)->max_pxlen;
+    break;
   case P('R','a'):     /* Get ROA ASN */
     ONEARG;
     if (v1.type != T_NET || !net_is_roa(v1.val.net))