]> git.proxmox.com Git - mirror_frr.git/blobdiff - tools/permutations.c
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / tools / permutations.c
index 80441753e7a2b907e0da0f3cf522c0be87be05d3..f3883b107a9971c7186d66d0507ef7a432480072 100644 (file)
@@ -1,25 +1,14 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * Generates all possible matching inputs for a command string.
  * --
  * Copyright (C) 2016 Cumulus Networks, Inc.
- *
- * This file is part of GNU Zebra.
- *
- * GNU Zebra is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2, or (at your option) any
- * later version.
- *
- * GNU Zebra is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; see the file COPYING; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "command.h"
 #include "graph.h"
 #include "vector.h"
@@ -35,7 +24,8 @@ int main(int argc, char *argv[])
                fprintf(stdout, USAGE "\n");
                exit(EXIT_SUCCESS);
        }
-       struct cmd_element *cmd = calloc(1, sizeof(struct cmd_element));
+       struct cmd_element *cmd = XCALLOC(MTYPE_TMP,
+                                         sizeof(struct cmd_element));
        cmd->string = strdup(argv[1]);
 
        struct graph *graph = graph_new();
@@ -56,14 +46,26 @@ void permute(struct graph_node *start)
        struct cmd_token *stok = start->data;
        struct graph_node *gnn;
        struct listnode *ln;
+       bool is_neg = false;
 
        // recursive dfs
        listnode_add(position, start);
+
+       for (ALL_LIST_ELEMENTS_RO(position, ln, gnn)) {
+               struct cmd_token *tok = gnn->data;
+
+               if (tok->type == WORD_TKN && !strcmp(tok->text, "no")) {
+                       is_neg = true;
+                       break;
+               }
+               if (tok->type < SPECIAL_TKN)
+                       break;
+       }
+
        for (unsigned int i = 0; i < vector_active(start->to); i++) {
                struct graph_node *gn = vector_slot(start->to, i);
                struct cmd_token *tok = gn->data;
-               if (tok->attr == CMD_ATTR_HIDDEN
-                   || tok->attr == CMD_ATTR_DEPRECATED)
+               if (tok->attr & CMD_ATTR_HIDDEN)
                        continue;
                else if (tok->type == END_TKN || gn == start) {
                        fprintf(stdout, " ");
@@ -77,6 +79,9 @@ void permute(struct graph_node *start)
                        fprintf(stdout, "\n");
                } else {
                        bool skip = false;
+
+                       if (tok->type == NEG_ONLY_TKN && !is_neg)
+                               continue;
                        if (stok->type == FORK_TKN && tok->type != FORK_TKN)
                                for (ALL_LIST_ELEMENTS_RO(position, ln, gnn))
                                        if (gnn == gn) {