1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* PBR - vrf code
* Copyright (C) 2019 Cumulus Networks, Inc.
* Stephen Worley
*/
#include <zebra.h>
#include "vrf.h"
#include "pbr_vrf.h"
#include "pbr_memory.h"
#include "pbr_map.h"
#include "pbr_debug.h"
#include "pbr_nht.h"
#include "pbr_zebra.h"
DEFINE_MTYPE_STATIC(PBRD, PBR_MAP_VRF, "PBR Map VRF");
static struct pbr_vrf *pbr_vrf_alloc(void)
{
struct pbr_vrf *pbr_vrf;
pbr_vrf = XCALLOC(MTYPE_PBR_MAP_VRF, sizeof(struct pbr_vrf));
return pbr_vrf;
}
static void pbr_vrf_free(struct pbr_vrf *pbr_vrf)
{
XFREE(MTYPE_PBR_MAP_VRF, pbr_vrf);
}
static int pbr_vrf_new(struct vrf *vrf)
{
struct pbr_vrf *pbr_vrf;
DEBUGD(&pbr_dbg_event, "%s: %u (%s)", __func__, vrf->vrf_id, vrf->name);
pbr_vrf = pbr_vrf_alloc();
vrf->info = pbr_vrf;
pbr_vrf->vrf = vrf;
return 0;
}
static int pbr_vrf_enable(struct vrf *vrf)
{
DEBUGD(&pbr_dbg_event, "%s: %u (%s)", __func__, vrf->vrf_id, vrf->name);
pbr_nht_vrf_update(vrf->info);
pbr_map_vrf_update(vrf->info);
return 0;
}
static int pbr_vrf_disable(struct vrf *vrf)
{
DEBUGD(&pbr_dbg_event, "%s: %u (%s)", __func__, vrf->vrf_id, vrf->name);
pbr_map_vrf_update(vrf->info);
return 0;
}
static int pbr_vrf_delete(struct vrf *vrf)
{
DEBUGD(&pbr_dbg_event, "%s: %u (%s)", __func__, vrf->vrf_id, vrf->name);
/*
* Make sure vrf is always marked disabled first so we handle
* pbr rules using it.
*/
assert(!vrf_is_enabled(vrf));
pbr_vrf_free(vrf->info);
vrf->info = NULL;
return 0;
}
struct pbr_vrf *pbr_vrf_lookup_by_name(const char *name)
{
struct vrf *vrf;
if (!name)
name = VRF_DEFAULT_NAME;
vrf = vrf_lookup_by_name(name);
if (vrf)
return ((struct pbr_vrf *)vrf->info);
return NULL;
}
bool pbr_vrf_is_enabled(const struct pbr_vrf *pbr_vrf)
{
return vrf_is_enabled(pbr_vrf->vrf) ? true : false;
}
bool pbr_vrf_is_valid(const struct pbr_vrf *pbr_vrf)
{
if (vrf_is_backend_netns())
return false;
if (!pbr_vrf->vrf)
return false;
return pbr_vrf_is_enabled(pbr_vrf);
}
void pbr_vrf_init(void)
{
vrf_init(pbr_vrf_new, pbr_vrf_enable, pbr_vrf_disable, pbr_vrf_delete);
}
void pbr_vrf_terminate(void)
{
struct vrf *vrf;
struct interface *ifp;
RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
FOR_ALL_INTERFACES (vrf, ifp)
pbr_if_del(ifp);
}
}
|