]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_rp.h
Merge pull request #5430 from taruta811/build-docker-centos
[mirror_frr.git] / pimd / pim_rp.h
1 /*
2 * PIM for Quagga
3 * Copyright (C) 2015 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20 #ifndef PIM_RP_H
21 #define PIM_RP_H
22
23 #include <zebra.h>
24 #include "prefix.h"
25 #include "vty.h"
26 #include "plist.h"
27 #include "pim_iface.h"
28 #include "pim_rpf.h"
29
30 enum rp_source {
31 RP_SRC_NONE = 0,
32 RP_SRC_STATIC,
33 RP_SRC_BSR
34 };
35
36 struct rp_info {
37 struct prefix group;
38 struct pim_rpf rp;
39 enum rp_source rp_src;
40 int i_am_rp;
41 char *plist;
42 };
43
44 void pim_rp_init(struct pim_instance *pim);
45 void pim_rp_free(struct pim_instance *pim);
46
47 void pim_rp_list_hash_clean(void *data);
48
49 int pim_rp_new_config(struct pim_instance *pim, const char *rp,
50 const char *group, const char *plist);
51 int pim_rp_new(struct pim_instance *pim, struct in_addr rp_addr,
52 struct prefix group, const char *plist,
53 enum rp_source rp_src_flag);
54 int pim_rp_del_config(struct pim_instance *pim, const char *rp,
55 const char *group, const char *plist);
56 int pim_rp_del(struct pim_instance *pim, struct in_addr rp_addr,
57 struct prefix group, const char *plist,
58 enum rp_source rp_src_flag);
59 int pim_rp_change(struct pim_instance *pim, struct in_addr new_rp_addr,
60 struct prefix group, enum rp_source rp_src_flag);
61 void pim_rp_prefix_list_update(struct pim_instance *pim,
62 struct prefix_list *plist);
63
64 int pim_rp_config_write(struct pim_instance *pim, struct vty *vty,
65 const char *spaces);
66
67 void pim_rp_setup(struct pim_instance *pim);
68
69 int pim_rp_i_am_rp(struct pim_instance *pim, struct in_addr group);
70 void pim_rp_check_on_if_add(struct pim_interface *pim_ifp);
71 void pim_i_am_rp_re_evaluate(struct pim_instance *pim);
72
73 bool pim_rp_check_is_my_ip_address(struct pim_instance *pim,
74 struct in_addr dest_addr);
75
76 int pim_rp_set_upstream_addr(struct pim_instance *pim, struct in_addr *up,
77 struct in_addr source, struct in_addr group);
78
79 struct pim_rpf *pim_rp_g(struct pim_instance *pim, struct in_addr group);
80
81 #define I_am_RP(P, G) pim_rp_i_am_rp ((P), (G))
82 #define RP(P, G) pim_rp_g ((P), (G))
83
84 void pim_rp_show_information(struct pim_instance *pim, struct vty *vty,
85 bool uj);
86 void pim_resolve_rp_nh(struct pim_instance *pim, struct pim_neighbor *nbr);
87 int pim_rp_list_cmp(void *v1, void *v2);
88 struct rp_info *pim_rp_find_match_group(struct pim_instance *pim,
89 const struct prefix *group);
90 void pim_upstream_update(struct pim_instance *pim, struct pim_upstream *up);
91 #endif