]>
Commit | Line | Data |
---|---|---|
50261279 PG |
1 | /* zebra table Manager for routing table identifier management |
2 | * Copyright (C) 2018 6WIND | |
3 | * | |
4 | * This program is free software; you can redistribute it and/or modify it | |
5 | * under the terms of the GNU General Public License as published by the Free | |
6 | * Software Foundation; either version 2 of the License, or (at your option) | |
7 | * any later version. | |
8 | * | |
9 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
12 | * more details. | |
13 | * | |
14 | * You should have received a copy of the GNU General Public License along | |
15 | * with this program; see the file COPYING; if not, write to the Free Software | |
16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
17 | */ | |
18 | ||
19 | #ifndef _TABLE_MANAGER_H | |
20 | #define _TABLE_MANAGER_H | |
21 | ||
22 | #include <stdint.h> | |
23 | ||
24 | #include "lib/linklist.h" | |
25 | #include "lib/thread.h" | |
bf094f69 QY |
26 | #include "lib/ns.h" |
27 | ||
28 | #include "zebra/zserv.h" | |
50261279 PG |
29 | |
30 | /* | |
31 | * Table chunk struct | |
32 | * Client daemon which the chunk belongs to can be identified by either | |
33 | * proto (daemon protocol) + instance + VRF. | |
34 | * If the client then passes a non-empty value to keep field when it requests | |
35 | * for chunks, the chunks won't be garbage collected and the client will be | |
36 | * responsible of its release. | |
37 | * Otherwise, if the keep field is not set (value 0) for the chunk, it will be | |
38 | * automatically released when the client disconnects or when it reconnects | |
39 | * (in case it died unexpectedly, we can know it's the same because it will have | |
40 | * the same proto and instance values) | |
41 | */ | |
42 | struct table_manager_chunk { | |
43 | vrf_id_t vrf_id; | |
44 | uint8_t proto; | |
45 | uint16_t instance; | |
46 | uint32_t start; /* First table RT ID of the chunk */ | |
47 | uint32_t end; /* Last table RT ID of the chunk */ | |
48 | }; | |
49 | ||
50 | /* | |
51 | * Main table manager struct | |
52 | * Holds a linked list of table chunks. | |
53 | */ | |
54 | struct table_manager { | |
55 | struct list *lc_list; | |
56 | }; | |
57 | ||
58 | void table_manager_enable(ns_id_t ns_id); | |
59 | struct table_manager_chunk *assign_table_chunk(uint8_t proto, uint16_t instance, | |
60 | uint32_t size); | |
61 | int release_table_chunk(uint8_t proto, uint16_t instance, uint32_t start, | |
62 | uint32_t end); | |
63 | int release_daemon_table_chunks(uint8_t proto, uint16_t instance); | |
64 | void table_manager_disable(ns_id_t ns_id); | |
65 | ||
66 | #endif /* _TABLE_MANAGER_H */ |