mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-05 15:10:38 +00:00
zebra: add support for static pseudowires
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
This commit is contained in:
parent
b4fcca6bf2
commit
2dd0d72624
@ -110,6 +110,7 @@ const char *node_names[] = {
|
||||
"forwarding", // FORWARDING_NODE,
|
||||
"protocol", // PROTOCOL_NODE,
|
||||
"mpls", // MPLS_NODE,
|
||||
"pw", // PW_NODE,
|
||||
"vty", // VTY_NODE,
|
||||
"link-params", // LINK_PARAMS_NODE,
|
||||
"bgp evpn vni", // BGP_EVPN_VNI_NODE,
|
||||
@ -1253,6 +1254,7 @@ void cmd_exit(struct vty *vty)
|
||||
vty_config_unlock(vty);
|
||||
break;
|
||||
case INTERFACE_NODE:
|
||||
case PW_NODE:
|
||||
case NS_NODE:
|
||||
case VRF_NODE:
|
||||
case ZEBRA_NODE:
|
||||
@ -1338,6 +1340,7 @@ DEFUN (config_end,
|
||||
break;
|
||||
case CONFIG_NODE:
|
||||
case INTERFACE_NODE:
|
||||
case PW_NODE:
|
||||
case NS_NODE:
|
||||
case VRF_NODE:
|
||||
case ZEBRA_NODE:
|
||||
|
@ -132,6 +132,7 @@ enum node_type {
|
||||
FORWARDING_NODE, /* IP forwarding node. */
|
||||
PROTOCOL_NODE, /* protocol filtering node */
|
||||
MPLS_NODE, /* MPLS config node */
|
||||
PW_NODE, /* Pseudowire config node */
|
||||
VTY_NODE, /* Vty node. */
|
||||
LINK_PARAMS_NODE, /* Link-parameters node */
|
||||
BGP_EVPN_VNI_NODE, /* BGP EVPN VNI */
|
||||
|
@ -684,6 +684,7 @@ static void vty_end_config(struct vty *vty)
|
||||
break;
|
||||
case CONFIG_NODE:
|
||||
case INTERFACE_NODE:
|
||||
case PW_NODE:
|
||||
case ZEBRA_NODE:
|
||||
case RIP_NODE:
|
||||
case RIPNG_NODE:
|
||||
@ -1094,6 +1095,7 @@ static void vty_stop_input(struct vty *vty)
|
||||
break;
|
||||
case CONFIG_NODE:
|
||||
case INTERFACE_NODE:
|
||||
case PW_NODE:
|
||||
case ZEBRA_NODE:
|
||||
case RIP_NODE:
|
||||
case RIPNG_NODE:
|
||||
|
@ -147,6 +147,7 @@ vtysh_cmd_FILES = $(vtysh_scan) \
|
||||
$(top_srcdir)/zebra/zebra_fpm.c \
|
||||
$(top_srcdir)/zebra/zebra_ptm.c \
|
||||
$(top_srcdir)/zebra/zebra_mpls_vty.c \
|
||||
$(top_srcdir)/zebra/zebra_pw.c \
|
||||
$(top_srcdir)/watchfrr/watchfrr_vty.c \
|
||||
$(BGP_VNC_RFAPI_SRC) $(BGP_VNC_RFP_SRC)
|
||||
|
||||
|
@ -923,6 +923,10 @@ static struct cmd_node interface_node = {
|
||||
INTERFACE_NODE, "%s(config-if)# ",
|
||||
};
|
||||
|
||||
static struct cmd_node pw_node = {
|
||||
PW_NODE, "%s(config-pw)# ",
|
||||
};
|
||||
|
||||
static struct cmd_node ns_node = {
|
||||
NS_NODE, "%s(config-logical-router)# ",
|
||||
};
|
||||
@ -1418,6 +1422,7 @@ static int vtysh_exit(struct vty *vty)
|
||||
vty->node = ENABLE_NODE;
|
||||
break;
|
||||
case INTERFACE_NODE:
|
||||
case PW_NODE:
|
||||
case NS_NODE:
|
||||
case VRF_NODE:
|
||||
case ZEBRA_NODE:
|
||||
@ -1671,6 +1676,15 @@ DEFUNSH(VTYSH_INTERFACE, vtysh_interface, vtysh_interface_cmd,
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
DEFUNSH(VTYSH_ZEBRA, vtysh_pseudowire, vtysh_pseudowire_cmd,
|
||||
"pseudowire IFNAME",
|
||||
"Static pseudowire configuration\n"
|
||||
"Pseudowire name\n")
|
||||
{
|
||||
vty->node = PW_NODE;
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
/* TODO Implement "no interface command in isisd. */
|
||||
DEFSH(VTYSH_ZEBRA | VTYSH_RIPD | VTYSH_RIPNGD | VTYSH_OSPFD | VTYSH_OSPF6D
|
||||
| VTYSH_EIGRPD,
|
||||
@ -2921,6 +2935,7 @@ void vtysh_init_vty(void)
|
||||
install_node(&bgp_node, NULL);
|
||||
install_node(&rip_node, NULL);
|
||||
install_node(&interface_node, NULL);
|
||||
install_node(&pw_node, NULL);
|
||||
install_node(&link_params_node, NULL);
|
||||
install_node(&ns_node, NULL);
|
||||
install_node(&vrf_node, NULL);
|
||||
@ -3093,6 +3108,10 @@ void vtysh_init_vty(void)
|
||||
install_element(LINK_PARAMS_NODE, &vtysh_exit_interface_cmd);
|
||||
install_element(INTERFACE_NODE, &vtysh_quit_interface_cmd);
|
||||
|
||||
install_element(PW_NODE, &vtysh_end_all_cmd);
|
||||
install_element(PW_NODE, &vtysh_exit_interface_cmd);
|
||||
install_element(PW_NODE, &vtysh_quit_interface_cmd);
|
||||
|
||||
install_element(NS_NODE, &vtysh_end_all_cmd);
|
||||
|
||||
install_element(CONFIG_NODE, &vtysh_ns_cmd);
|
||||
@ -3168,6 +3187,7 @@ void vtysh_init_vty(void)
|
||||
install_element(CONFIG_NODE, &vtysh_interface_cmd);
|
||||
install_element(CONFIG_NODE, &vtysh_no_interface_cmd);
|
||||
install_element(CONFIG_NODE, &vtysh_no_interface_vrf_cmd);
|
||||
install_element(CONFIG_NODE, &vtysh_pseudowire_cmd);
|
||||
install_element(INTERFACE_NODE, &vtysh_link_params_cmd);
|
||||
install_element(ENABLE_NODE, &vtysh_show_running_config_cmd);
|
||||
install_element(ENABLE_NODE, &vtysh_copy_running_config_cmd);
|
||||
|
@ -181,6 +181,8 @@ void vtysh_config_parse_line(void *arg, const char *line)
|
||||
default:
|
||||
if (strncmp(line, "interface", strlen("interface")) == 0)
|
||||
config = config_get(INTERFACE_NODE, line);
|
||||
else if (strncmp(line, "pseudowire", strlen("pseudowire")) == 0)
|
||||
config = config_get(PW_NODE, line);
|
||||
else if (strncmp(line, "logical-router", strlen("ns")) == 0)
|
||||
config = config_get(NS_NODE, line);
|
||||
else if (strncmp(line, "vrf", strlen("vrf")) == 0)
|
||||
|
@ -299,6 +299,7 @@ int main(int argc, char **argv)
|
||||
|
||||
zebra_mpls_init();
|
||||
zebra_mpls_vty_init();
|
||||
zebra_pw_vty_init();
|
||||
|
||||
/* For debug purpose. */
|
||||
/* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
|
||||
|
267
zebra/zebra_pw.c
267
zebra/zebra_pw.c
@ -22,6 +22,7 @@
|
||||
#include "log.h"
|
||||
#include "memory.h"
|
||||
#include "thread.h"
|
||||
#include "command.h"
|
||||
#include "vrf.h"
|
||||
|
||||
#include "zebra/debug.h"
|
||||
@ -33,11 +34,14 @@
|
||||
|
||||
DEFINE_MTYPE_STATIC(LIB, PW, "Pseudowire")
|
||||
|
||||
DEFINE_QOBJ_TYPE(zebra_pw)
|
||||
|
||||
DEFINE_HOOK(pw_install, (struct zebra_pw * pw), (pw))
|
||||
DEFINE_HOOK(pw_uninstall, (struct zebra_pw * pw), (pw))
|
||||
|
||||
extern struct zebra_t zebrad;
|
||||
|
||||
static int zebra_pw_enabled(struct zebra_pw *);
|
||||
static void zebra_pw_install(struct zebra_pw *);
|
||||
static void zebra_pw_uninstall(struct zebra_pw *);
|
||||
static int zebra_pw_install_retry(struct thread *);
|
||||
@ -50,7 +54,8 @@ static inline int zebra_pw_compare(const struct zebra_pw *a,
|
||||
return (strcmp(a->ifname, b->ifname));
|
||||
}
|
||||
|
||||
RB_GENERATE(zebra_pw_head, zebra_pw, entry, zebra_pw_compare)
|
||||
RB_GENERATE(zebra_pw_head, zebra_pw, pw_entry, zebra_pw_compare)
|
||||
RB_GENERATE(zebra_static_pw_head, zebra_pw, static_pw_entry, zebra_pw_compare)
|
||||
|
||||
struct zebra_pw *zebra_pw_add(struct zebra_vrf *zvrf, const char *ifname,
|
||||
uint8_t protocol, struct zserv *client)
|
||||
@ -67,8 +72,15 @@ struct zebra_pw *zebra_pw_add(struct zebra_vrf *zvrf, const char *ifname,
|
||||
pw->vrf_id = zvrf_id(zvrf);
|
||||
pw->client = client;
|
||||
pw->status = PW_STATUS_UP;
|
||||
pw->local_label = MPLS_NO_LABEL;
|
||||
pw->remote_label = MPLS_NO_LABEL;
|
||||
pw->flags = F_PSEUDOWIRE_CWORD;
|
||||
|
||||
RB_INSERT(zebra_pw_head, &zvrf->pseudowires, pw);
|
||||
if (pw->protocol == ZEBRA_ROUTE_STATIC) {
|
||||
RB_INSERT(zebra_static_pw_head, &zvrf->static_pseudowires, pw);
|
||||
QOBJ_REG(pw, zebra_pw);
|
||||
}
|
||||
|
||||
return pw;
|
||||
}
|
||||
@ -90,6 +102,8 @@ void zebra_pw_del(struct zebra_vrf *zvrf, struct zebra_pw *pw)
|
||||
|
||||
/* unlink and release memory */
|
||||
RB_REMOVE(zebra_pw_head, &zvrf->pseudowires, pw);
|
||||
if (pw->protocol == ZEBRA_ROUTE_STATIC)
|
||||
RB_REMOVE(zebra_static_pw_head, &zvrf->static_pseudowires, pw);
|
||||
XFREE(MTYPE_PW, pw);
|
||||
}
|
||||
|
||||
@ -109,7 +123,7 @@ void zebra_pw_change(struct zebra_pw *pw, ifindex_t ifindex, int type, int af,
|
||||
pw->flags = flags;
|
||||
pw->data = *data;
|
||||
|
||||
if (pw->enabled)
|
||||
if (zebra_pw_enabled(pw))
|
||||
zebra_register_rnh_pseudowire(pw->vrf_id, pw);
|
||||
else
|
||||
zebra_pw_uninstall(pw);
|
||||
@ -122,6 +136,17 @@ struct zebra_pw *zebra_pw_find(struct zebra_vrf *zvrf, const char *ifname)
|
||||
return (RB_FIND(zebra_pw_head, &zvrf->pseudowires, &pw));
|
||||
}
|
||||
|
||||
static int zebra_pw_enabled(struct zebra_pw *pw)
|
||||
{
|
||||
if (pw->protocol == ZEBRA_ROUTE_STATIC) {
|
||||
if (pw->local_label == MPLS_NO_LABEL
|
||||
|| pw->remote_label == MPLS_NO_LABEL || pw->af == AF_UNSPEC)
|
||||
return 0;
|
||||
return 1;
|
||||
} else
|
||||
return pw->enabled;
|
||||
}
|
||||
|
||||
void zebra_pw_update(struct zebra_pw *pw)
|
||||
{
|
||||
if (zebra_pw_check_reachability(pw) < 0) {
|
||||
@ -165,7 +190,7 @@ static void zebra_pw_uninstall(struct zebra_pw *pw)
|
||||
/* ignore any possible error */
|
||||
hook_call(pw_uninstall, pw);
|
||||
|
||||
if (pw->enabled)
|
||||
if (zebra_pw_enabled(pw))
|
||||
zebra_pw_update_status(pw, PW_STATUS_DOWN);
|
||||
}
|
||||
|
||||
@ -264,6 +289,7 @@ void zebra_pw_client_close(struct zserv *client)
|
||||
void zebra_pw_init(struct zebra_vrf *zvrf)
|
||||
{
|
||||
RB_INIT(&zvrf->pseudowires);
|
||||
RB_INIT(&zvrf->static_pseudowires);
|
||||
}
|
||||
|
||||
void zebra_pw_exit(struct zebra_vrf *zvrf)
|
||||
@ -273,3 +299,238 @@ void zebra_pw_exit(struct zebra_vrf *zvrf)
|
||||
while ((pw = RB_ROOT(&zvrf->pseudowires)) != NULL)
|
||||
zebra_pw_del(zvrf, pw);
|
||||
}
|
||||
|
||||
DEFUN_NOSH (pseudowire_if,
|
||||
pseudowire_if_cmd,
|
||||
"[no] pseudowire IFNAME",
|
||||
NO_STR
|
||||
"Static pseudowire configuration\n"
|
||||
"Pseudowire name\n")
|
||||
{
|
||||
struct zebra_vrf *zvrf;
|
||||
struct zebra_pw *pw;
|
||||
int idx = 0;
|
||||
const char *ifname;
|
||||
|
||||
zvrf = vrf_info_lookup(VRF_DEFAULT);
|
||||
if (!zvrf)
|
||||
return CMD_WARNING;
|
||||
|
||||
argv_find(argv, argc, "IFNAME", &idx);
|
||||
ifname = argv[idx]->arg;
|
||||
pw = zebra_pw_find(zvrf, ifname);
|
||||
if (pw && pw->protocol != ZEBRA_ROUTE_STATIC) {
|
||||
vty_out(vty, "%% Pseudowire is not static%s", VTY_NEWLINE);
|
||||
return CMD_WARNING;
|
||||
}
|
||||
|
||||
if (argv_find(argv, argc, "no", &idx)) {
|
||||
if (!pw)
|
||||
return CMD_SUCCESS;
|
||||
zebra_pw_del(zvrf, pw);
|
||||
}
|
||||
|
||||
if (!pw)
|
||||
pw = zebra_pw_add(zvrf, ifname, ZEBRA_ROUTE_STATIC, NULL);
|
||||
VTY_PUSH_CONTEXT(PW_NODE, pw);
|
||||
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
DEFUN (pseudowire_labels,
|
||||
pseudowire_labels_cmd,
|
||||
"[no] mpls label local (16-1048575) remote (16-1048575)",
|
||||
NO_STR
|
||||
"MPLS L2VPN PW command\n"
|
||||
"MPLS L2VPN static labels\n"
|
||||
"Local pseudowire label\n"
|
||||
"Local pseudowire label\n"
|
||||
"Remote pseudowire label\n"
|
||||
"Remote pseudowire label\n")
|
||||
{
|
||||
VTY_DECLVAR_CONTEXT(zebra_pw, pw);
|
||||
int idx = 0;
|
||||
mpls_label_t local_label, remote_label;
|
||||
|
||||
if (argv_find(argv, argc, "no", &idx)) {
|
||||
local_label = MPLS_NO_LABEL;
|
||||
remote_label = MPLS_NO_LABEL;
|
||||
} else {
|
||||
argv_find(argv, argc, "local", &idx);
|
||||
local_label = atoi(argv[idx + 1]->arg);
|
||||
argv_find(argv, argc, "remote", &idx);
|
||||
remote_label = atoi(argv[idx + 1]->arg);
|
||||
}
|
||||
|
||||
zebra_pw_change(pw, pw->ifindex, pw->type, pw->af, &pw->nexthop,
|
||||
local_label, remote_label, pw->flags, &pw->data);
|
||||
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
DEFUN (pseudowire_neighbor,
|
||||
pseudowire_neighbor_cmd,
|
||||
"[no] neighbor <A.B.C.D|X:X::X:X>",
|
||||
NO_STR
|
||||
"Specify the IPv4 or IPv6 address of the remote endpoint\n"
|
||||
"IPv4 address\n"
|
||||
"IPv6 address\n")
|
||||
{
|
||||
VTY_DECLVAR_CONTEXT(zebra_pw, pw);
|
||||
int idx = 0;
|
||||
const char *address;
|
||||
int af;
|
||||
union g_addr nexthop;
|
||||
|
||||
af = AF_UNSPEC;
|
||||
memset(&nexthop, 0, sizeof(nexthop));
|
||||
|
||||
if (!argv_find(argv, argc, "no", &idx)) {
|
||||
argv_find(argv, argc, "neighbor", &idx);
|
||||
address = argv[idx + 1]->arg;
|
||||
|
||||
if (inet_pton(AF_INET, address, &nexthop.ipv4) == 1)
|
||||
af = AF_INET;
|
||||
else if (inet_pton(AF_INET6, address, &nexthop.ipv6) == 1)
|
||||
af = AF_INET6;
|
||||
else {
|
||||
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
|
||||
return CMD_WARNING;
|
||||
}
|
||||
}
|
||||
|
||||
zebra_pw_change(pw, pw->ifindex, pw->type, af, &nexthop,
|
||||
pw->local_label, pw->remote_label, pw->flags,
|
||||
&pw->data);
|
||||
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
DEFUN (pseudowire_control_word,
|
||||
pseudowire_control_word_cmd,
|
||||
"[no] control-word <exclude|include>",
|
||||
NO_STR
|
||||
"Control-word options\n"
|
||||
"Exclude control-word in pseudowire packets\n"
|
||||
"Include control-word in pseudowire packets\n")
|
||||
{
|
||||
VTY_DECLVAR_CONTEXT(zebra_pw, pw);
|
||||
int idx = 0;
|
||||
uint8_t flags = 0;
|
||||
|
||||
if (argv_find(argv, argc, "no", &idx))
|
||||
flags = F_PSEUDOWIRE_CWORD;
|
||||
else {
|
||||
argv_find(argv, argc, "control-word", &idx);
|
||||
if (argv[idx + 1]->text[0] == 'i')
|
||||
flags = F_PSEUDOWIRE_CWORD;
|
||||
}
|
||||
|
||||
zebra_pw_change(pw, pw->ifindex, pw->type, pw->af, &pw->nexthop,
|
||||
pw->local_label, pw->remote_label, flags, &pw->data);
|
||||
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
DEFUN (show_pseudowires,
|
||||
show_pseudowires_cmd,
|
||||
"show pseudowires",
|
||||
SHOW_STR
|
||||
"Pseudowires")
|
||||
{
|
||||
struct zebra_vrf *zvrf;
|
||||
struct zebra_pw *pw;
|
||||
|
||||
zvrf = vrf_info_lookup(VRF_DEFAULT);
|
||||
if (!zvrf)
|
||||
return 0;
|
||||
|
||||
vty_out(vty, "%-16s %-24s %-12s %-8s %-10s%s", "Interface", "Neighbor",
|
||||
"Labels", "Protocol", "Status", VTY_NEWLINE);
|
||||
|
||||
RB_FOREACH(pw, zebra_pw_head, &zvrf->pseudowires)
|
||||
{
|
||||
char buf_nbr[INET6_ADDRSTRLEN];
|
||||
char buf_labels[64];
|
||||
|
||||
inet_ntop(pw->af, &pw->nexthop, buf_nbr, sizeof(buf_nbr));
|
||||
|
||||
if (pw->local_label != MPLS_NO_LABEL
|
||||
&& pw->remote_label != MPLS_NO_LABEL)
|
||||
snprintf(buf_labels, sizeof(buf_labels), "%u/%u",
|
||||
pw->local_label, pw->remote_label);
|
||||
else
|
||||
snprintf(buf_labels, sizeof(buf_labels), "-");
|
||||
|
||||
vty_out(vty, "%-16s %-24s %-12s %-8s %-10s%s", pw->ifname,
|
||||
(pw->af != AF_UNSPEC) ? buf_nbr : "-", buf_labels,
|
||||
zebra_route_string(pw->protocol),
|
||||
(zebra_pw_enabled(pw) && pw->status == PW_STATUS_UP)
|
||||
? "UP"
|
||||
: "DOWN",
|
||||
VTY_NEWLINE);
|
||||
}
|
||||
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
/* Pseudowire configuration write function. */
|
||||
static int zebra_pw_config(struct vty *vty)
|
||||
{
|
||||
int write = 0;
|
||||
struct zebra_vrf *zvrf;
|
||||
struct zebra_pw *pw;
|
||||
|
||||
zvrf = vrf_info_lookup(VRF_DEFAULT);
|
||||
if (!zvrf)
|
||||
return 0;
|
||||
|
||||
RB_FOREACH(pw, zebra_static_pw_head, &zvrf->static_pseudowires)
|
||||
{
|
||||
vty_out(vty, "pseudowire %s%s", pw->ifname, VTY_NEWLINE);
|
||||
if (pw->local_label != MPLS_NO_LABEL
|
||||
&& pw->remote_label != MPLS_NO_LABEL)
|
||||
vty_out(vty, " mpls label local %u remote %u%s",
|
||||
pw->local_label, pw->remote_label, VTY_NEWLINE);
|
||||
else
|
||||
vty_out(vty,
|
||||
" ! Incomplete config, specify the static "
|
||||
"MPLS labels%s",
|
||||
VTY_NEWLINE);
|
||||
|
||||
if (pw->af != AF_UNSPEC) {
|
||||
char buf[INET6_ADDRSTRLEN];
|
||||
inet_ntop(pw->af, &pw->nexthop, buf, sizeof(buf));
|
||||
vty_out(vty, " neighbor %s%s", buf, VTY_NEWLINE);
|
||||
} else
|
||||
vty_out(vty,
|
||||
" ! Incomplete config, specify a neighbor "
|
||||
"address%s",
|
||||
VTY_NEWLINE);
|
||||
|
||||
if (!(pw->flags & F_PSEUDOWIRE_CWORD))
|
||||
vty_out(vty, " control-word exclude%s", VTY_NEWLINE);
|
||||
|
||||
vty_out(vty, "!%s", VTY_NEWLINE);
|
||||
write = 1;
|
||||
}
|
||||
|
||||
return write;
|
||||
}
|
||||
|
||||
static struct cmd_node pw_node = {
|
||||
PW_NODE, "%s(config-pw)# ", 1,
|
||||
};
|
||||
|
||||
void zebra_pw_vty_init(void)
|
||||
{
|
||||
install_node(&pw_node, zebra_pw_config);
|
||||
install_default(PW_NODE);
|
||||
|
||||
install_element(CONFIG_NODE, &pseudowire_if_cmd);
|
||||
install_element(PW_NODE, &pseudowire_labels_cmd);
|
||||
install_element(PW_NODE, &pseudowire_neighbor_cmd);
|
||||
install_element(PW_NODE, &pseudowire_control_word_cmd);
|
||||
|
||||
install_element(VIEW_NODE, &show_pseudowires_cmd);
|
||||
}
|
||||
|
@ -24,11 +24,12 @@
|
||||
#include <netinet/in.h>
|
||||
|
||||
#include "hook.h"
|
||||
#include "qobj.h"
|
||||
|
||||
#define PW_INSTALL_RETRY_INTERVAL 30
|
||||
|
||||
struct zebra_pw {
|
||||
RB_ENTRY(zebra_pw) entry;
|
||||
RB_ENTRY(zebra_pw) pw_entry, static_pw_entry;
|
||||
vrf_id_t vrf_id;
|
||||
char ifname[IF_NAMESIZE];
|
||||
ifindex_t ifindex;
|
||||
@ -45,10 +46,15 @@ struct zebra_pw {
|
||||
struct zserv *client;
|
||||
struct rnh *rnh;
|
||||
struct thread *install_retry_timer;
|
||||
QOBJ_FIELDS
|
||||
};
|
||||
DECLARE_QOBJ_TYPE(zebra_pw)
|
||||
|
||||
RB_HEAD(zebra_pw_head, zebra_pw);
|
||||
RB_PROTOTYPE(zebra_pw_head, zebra_pw, entry, zebra_pw_compare);
|
||||
RB_PROTOTYPE(zebra_pw_head, zebra_pw, pw_entry, zebra_pw_compare);
|
||||
|
||||
RB_HEAD(zebra_static_pw_head, zebra_pw);
|
||||
RB_PROTOTYPE(zebra_static_pw_head, zebra_pw, static_pw_entry, zebra_pw_compare);
|
||||
|
||||
DECLARE_HOOK(pw_install, (struct zebra_pw * pw), (pw))
|
||||
DECLARE_HOOK(pw_uninstall, (struct zebra_pw * pw), (pw))
|
||||
@ -64,5 +70,6 @@ void zebra_pw_install_failure(struct zebra_pw *);
|
||||
void zebra_pw_client_close(struct zserv *);
|
||||
void zebra_pw_init(struct zebra_vrf *);
|
||||
void zebra_pw_exit(struct zebra_vrf *);
|
||||
void zebra_pw_vty_init(void);
|
||||
|
||||
#endif /* ZEBRA_PW_H_ */
|
||||
|
@ -92,6 +92,7 @@ struct zebra_vrf {
|
||||
|
||||
/* Pseudowires. */
|
||||
struct zebra_pw_head pseudowires;
|
||||
struct zebra_static_pw_head static_pseudowires;
|
||||
|
||||
/* MPLS processing flags */
|
||||
u_int16_t mpls_flags;
|
||||
|
Loading…
Reference in New Issue
Block a user