]> git.proxmox.com Git - mirror_frr.git/blame - lib/affinitymap.c
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / lib / affinitymap.c
CommitLineData
05a12619
LS
1/*
2 * Affinity map function.
3 *
4 * Copyright 2022 Hiroki Shirokura, LINE Corporation
5 * Copyright 2022 Masakazu Asama
6 * Copyright 2022 6WIND S.A.
7 *
8 * This file is part of Free Range Routing (FRR).
9 *
10 * FRR is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2, or (at your option) any
13 * later version.
14 *
15 * FRR is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; see the file COPYING; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25#include <zebra.h>
26
27#include "linklist.h"
28#include "memory.h"
29#include "command.h"
30#include "vector.h"
31#include "prefix.h"
32#include "vty.h"
33#include "affinitymap.h"
34#include "command.h"
35#include "log.h"
36#include "hash.h"
37#include "libfrr.h"
38#include "lib_errors.h"
39#include "table.h"
40#include "json.h"
41#include "jhash.h"
42
43DEFINE_MTYPE_STATIC(LIB, AFFINITY_MAP, "Affinity map");
44DEFINE_MTYPE(LIB, AFFINITY_MAP_NAME, "Affinity map name");
45DEFINE_MTYPE_STATIC(LIB, AFFINITY_MAP_INDEX, "Affinity map index");
46
47DEFINE_QOBJ_TYPE(affinity_maps);
48DEFINE_QOBJ_TYPE(affinity_map);
49
ae251b86 50struct affinity_maps affinity_map_master = {NULL, NULL, NULL, NULL};
05a12619
LS
51
52static void affinity_map_free(struct affinity_map *map)
53{
54 XFREE(MTYPE_AFFINITY_MAP, map);
55}
56
57void affinity_map_set(const char *name, int pos)
58{
59 struct listnode *node;
60 struct affinity_map *map;
61
62 if (!affinity_map_master.maps)
63 affinity_map_master.maps = list_new();
64
65 for (ALL_LIST_ELEMENTS_RO(affinity_map_master.maps, node, map)) {
66 if (strncmp(name, map->name, AFFINITY_NAME_SIZE) != 0)
67 continue;
68 map->bit_position = pos;
69 return;
70 }
71
72 map = XCALLOC(MTYPE_AFFINITY_MAP, sizeof(*map));
73 map->bit_position = pos;
74 snprintf(map->name, sizeof(map->name), "%s", name);
75 listnode_add(affinity_map_master.maps, map);
76}
77
78void affinity_map_unset(const char *name)
79{
80 struct listnode *node, *nnode;
81 struct affinity_map *map;
82
83 if (!affinity_map_master.maps)
84 return;
85
86 for (ALL_LIST_ELEMENTS(affinity_map_master.maps, node, nnode, map)) {
87 if (strncmp(name, map->name, AFFINITY_NAME_SIZE) != 0)
88 continue;
89 listnode_delete(affinity_map_master.maps, map);
90 affinity_map_free(map);
91 return;
92 }
93}
94
95struct affinity_map *affinity_map_get(const char *name)
96{
97 struct listnode *node;
98 struct affinity_map *map;
99
100 if (!affinity_map_master.maps)
101 return NULL;
102
103 for (ALL_LIST_ELEMENTS_RO(affinity_map_master.maps, node, map))
104 if (strncmp(name, map->name, AFFINITY_NAME_SIZE) == 0)
105 return map;
106 return NULL;
107}
108
109
110char *affinity_map_name_get(int pos)
111{
112 struct listnode *node;
113 struct affinity_map *map;
114
115 if (!affinity_map_master.maps)
116 return NULL;
117
118 for (ALL_LIST_ELEMENTS_RO(affinity_map_master.maps, node, map))
119 if (map->bit_position == pos)
120 return map->name;
121 return NULL;
122}
ae251b86
LS
123
124bool affinity_map_check_use_hook(const char *affmap_name)
125{
126 if (affinity_map_master.check_use_hook)
127 return (*affinity_map_master.check_use_hook)(affmap_name);
128 return false;
129}
130
131bool affinity_map_check_update_hook(const char *affmap_name, uint16_t new_pos)
132{
133 if (affinity_map_master.check_update_hook)
134 return (*affinity_map_master.check_update_hook)(affmap_name,
135 new_pos);
136 return true;
137}
138
139void affinity_map_update_hook(const char *affmap_name, uint16_t new_pos)
140{
141 struct affinity_map *map;
142
143 if (!affinity_map_master.update_hook)
144 return;
145
146 map = affinity_map_get(affmap_name);
147
148 if (!map)
149 /* Affinity-map creation */
150 return;
151
152 (*affinity_map_master.update_hook)(affmap_name, map->bit_position,
153 new_pos);
154}
155
156
157void affinity_map_set_check_use_hook(bool (*func)(const char *affmap_name))
158{
159 affinity_map_master.check_use_hook = func;
160}
161
162void affinity_map_set_check_update_hook(bool (*func)(const char *affmap_name,
163 uint16_t new_pos))
164{
165 affinity_map_master.check_update_hook = func;
166}
167
168void affinity_map_set_update_hook(void (*func)(const char *affmap_name,
169 uint16_t old_pos,
170 uint16_t new_pos))
171{
172 affinity_map_master.update_hook = func;
173}