]> git.proxmox.com Git - mirror_frr.git/blame - sharpd/sharp_vty.c
isisd: Free up some memory allocated.
[mirror_frr.git] / sharpd / sharp_vty.c
CommitLineData
8a71d93d
DS
1/*
2 * SHARP - vty code
3 * Copyright (C) Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This file is part of FRR.
7 *
8 * FRR is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * FRR is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22#include <zebra.h>
23
24#include "vty.h"
25#include "command.h"
26#include "prefix.h"
27#include "nexthop.h"
28#include "log.h"
ab18a495
DS
29#include "vrf.h"
30#include "zclient.h"
8a71d93d
DS
31
32#include "sharpd/sharp_zebra.h"
33#include "sharpd/sharp_vty.h"
2e4c2296 34#ifndef VTYSH_EXTRACT_PL
8a71d93d 35#include "sharpd/sharp_vty_clippy.c"
2e4c2296 36#endif
8a71d93d
DS
37
38extern uint32_t total_routes;
39extern uint32_t installed_routes;
40extern uint32_t removed_routes;
41
42DEFPY (install_routes,
43 install_routes_cmd,
75239f4f
DS
44 "sharp install routes A.B.C.D$start nexthop A.B.C.D$nexthop (1-1000000)$routes",
45 "Sharp routing Protocol\n"
8a71d93d
DS
46 "install some routes\n"
47 "Routes to install\n"
48 "Address to start /32 generation at\n"
49 "Nexthop to use\n"
50 "Nexthop address\n"
51 "How many to create\n")
52{
53 int i;
54 struct prefix p;
55 struct nexthop nhop;
56 uint32_t temp;
57
58 total_routes = routes;
59 installed_routes = 0;
60
61 memset(&p, 0, sizeof(p));
62 memset(&nhop, 0, sizeof(nhop));
63
64 p.family = AF_INET;
65 p.prefixlen = 32;
66 p.u.prefix4 = start;
67
68 nhop.gate.ipv4 = nexthop;
69 nhop.type = NEXTHOP_TYPE_IPV4;
70
71 zlog_debug("Inserting %ld routes", routes);
72
73 temp = ntohl(p.u.prefix4.s_addr);
74 for (i = 0 ; i < routes ; i++) {
75 route_add(&p, &nhop);
76 p.u.prefix4.s_addr = htonl(++temp);
77 }
78
79 return CMD_SUCCESS;
80}
81
42567e00 82DEFPY(vrf_label, vrf_label_cmd,
75239f4f
DS
83 "sharp label vrf NAME$name label (0-100000)$label",
84 "Sharp Routing Protocol\n"
ab18a495
DS
85 "Give a vrf a label\n"
86 VRF_CMD_HELP_STR
42567e00 87 "The label to use, 0 specifies remove the label installed from previous\n"
ab18a495
DS
88 "Specified range to use\n")
89{
90 struct vrf *vrf;
91
92 if (strcmp(name, "default") == 0)
93 vrf = vrf_lookup_by_id(VRF_DEFAULT);
94 else
95 vrf = vrf_lookup_by_name(name);
96
97 if (!vrf) {
98 vty_out(vty, "Unable to find vrf you silly head");
99 return CMD_WARNING_CONFIG_FAILED;
100 }
101
42567e00
DS
102 if (label == 0)
103 label = MPLS_LABEL_NONE;
104
ab18a495
DS
105 vrf_label_add(vrf->vrf_id, label);
106 return CMD_SUCCESS;
107}
108
8a71d93d
DS
109DEFPY (remove_routes,
110 remove_routes_cmd,
75239f4f
DS
111 "sharp remove routes A.B.C.D$start (1-1000000)$routes",
112 "Sharp Routing Protocol\n"
8a71d93d
DS
113 "Remove some routes\n"
114 "Routes to remove\n"
115 "Starting spot\n"
116 "Routes to uniinstall\n")
117{
118 int i;
119 struct prefix p;
120 uint32_t temp;
121
122 total_routes = routes;
123 removed_routes = 0;
124
125 memset(&p, 0, sizeof(p));
126
127 p.family = AF_INET;
128 p.prefixlen = 32;
129 p.u.prefix4 = start;
130
131 zlog_debug("Removing %ld routes", routes);
132
133 temp = ntohl(p.u.prefix4.s_addr);
134 for (i = 0; i < routes ; i++) {
135 route_delete(&p);
136 p.u.prefix4.s_addr = htonl(++temp);
137 }
138
139 return CMD_SUCCESS;
140}
141
142void sharp_vty_init(void)
143{
144 install_element(ENABLE_NODE, &install_routes_cmd);
145 install_element(ENABLE_NODE, &remove_routes_cmd);
ab18a495 146 install_element(ENABLE_NODE, &vrf_label_cmd);
8a71d93d
DS
147 return;
148}