]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_instance.h
Merge pull request #797 from donaldsharp/PIM_VRF
[mirror_frr.git] / pimd / pim_instance.h
1 /*
2 * PIM for FRR - PIM Instance
3 * Copyright (C) 2017 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
17 * along with this program; see the file COPYING; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21 #ifndef __PIM_INSTANCE_H__
22 #define __PIM_INSTANCE_H__
23
24 #include "pim_str.h"
25 #include "pim_msdp.h"
26
27 #if defined(HAVE_LINUX_MROUTE_H)
28 #include <linux/mroute.h>
29 #else
30 /*
31 Below: from <linux/mroute.h>
32 */
33
34 #ifndef MAXVIFS
35 #define MAXVIFS (256)
36 #endif
37 #endif
38 extern struct pim_instance *pimg; // Pim Global Instance
39
40 enum pim_spt_switchover {
41 PIM_SPT_IMMEDIATE,
42 PIM_SPT_INFINITY,
43 };
44
45 /* Per VRF PIM DB */
46 struct pim_instance {
47 vrf_id_t vrf_id;
48 struct vrf *vrf;
49
50 struct {
51 enum pim_spt_switchover switchover;
52 char *plist;
53 } spt;
54
55 struct hash *rpf_hash;
56
57 void *ssm_info; /* per-vrf SSM configuration */
58
59 int send_v6_secondary;
60
61 struct thread *thread;
62 int mroute_socket;
63 int64_t mroute_socket_creation;
64 int64_t mroute_add_events;
65 int64_t mroute_add_last;
66 int64_t mroute_del_events;
67 int64_t mroute_del_last;
68
69 struct interface *regiface;
70
71 // List of static routes;
72 struct list *static_routes;
73
74 // Upstream vrf specific information
75 struct list *upstream_list;
76 struct hash *upstream_hash;
77 struct timer_wheel *upstream_sg_wheel;
78
79 struct list *rp_list;
80
81 int iface_vif_index[MAXVIFS];
82
83 struct list *channel_oil_list;
84 struct hash *channel_oil_hash;
85
86 struct pim_msdp msdp;
87
88 struct list *ssmpingd_list;
89 struct in_addr ssmpingd_group_addr;
90
91 unsigned int keep_alive_time;
92 unsigned int rp_keep_alive_time;
93 };
94
95 void pim_vrf_init(void);
96 void pim_vrf_terminate(void);
97
98 struct pim_instance *pim_get_pim_instance(vrf_id_t vrf_id);
99
100 #endif