]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_pw.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / zebra / zebra_pw.h
1 /* Zebra PW code
2 * Copyright (C) 2016 Volta Networks, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; see the file COPYING; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
17 * MA 02110-1301 USA
18 */
19
20 #ifndef ZEBRA_PW_H_
21 #define ZEBRA_PW_H_
22
23 #include <net/if.h>
24 #include <netinet/in.h>
25
26 #include "lib/hook.h"
27 #include "lib/qobj.h"
28 #include "lib/pw.h"
29
30 #include "zebra/zebra_vrf.h"
31
32 #define PW_INSTALL_RETRY_INTERVAL 30
33
34 struct zebra_pw {
35 RB_ENTRY(zebra_pw) pw_entry, static_pw_entry;
36 vrf_id_t vrf_id;
37 char ifname[IF_NAMESIZE];
38 ifindex_t ifindex;
39 int type;
40 int af;
41 union g_addr nexthop;
42 uint32_t local_label;
43 uint32_t remote_label;
44 uint8_t flags;
45 union pw_protocol_fields data;
46 int enabled;
47 int status;
48 uint8_t protocol;
49 struct zserv *client;
50 struct rnh *rnh;
51 struct thread *install_retry_timer;
52 QOBJ_FIELDS
53 };
54 DECLARE_QOBJ_TYPE(zebra_pw)
55
56 RB_HEAD(zebra_pw_head, zebra_pw);
57 RB_PROTOTYPE(zebra_pw_head, zebra_pw, pw_entry, zebra_pw_compare);
58
59 RB_HEAD(zebra_static_pw_head, zebra_pw);
60 RB_PROTOTYPE(zebra_static_pw_head, zebra_pw, static_pw_entry, zebra_pw_compare);
61
62 DECLARE_HOOK(pw_install, (struct zebra_pw * pw), (pw))
63 DECLARE_HOOK(pw_uninstall, (struct zebra_pw * pw), (pw))
64
65 struct zebra_pw *zebra_pw_add(struct zebra_vrf *, const char *, uint8_t,
66 struct zserv *);
67 void zebra_pw_del(struct zebra_vrf *, struct zebra_pw *);
68 void zebra_pw_change(struct zebra_pw *, ifindex_t, int, int, union g_addr *,
69 uint32_t, uint32_t, uint8_t, union pw_protocol_fields *);
70 struct zebra_pw *zebra_pw_find(struct zebra_vrf *, const char *);
71 void zebra_pw_update(struct zebra_pw *);
72 void zebra_pw_install_failure(struct zebra_pw *);
73 void zebra_pw_init(struct zebra_vrf *);
74 void zebra_pw_exit(struct zebra_vrf *);
75 void zebra_pw_vty_init(void);
76
77 #endif /* ZEBRA_PW_H_ */