]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_srte.h
Merge pull request #8643 from icosahedral/master
[mirror_frr.git] / zebra / zebra_srte.h
CommitLineData
31f937fb
SM
1/* Zebra's client header.
2 * Copyright (C) 2020 Netdef, Inc.
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * GNU Zebra 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
21#ifndef _ZEBRA_SRTE_H
22#define _ZEBRA_SRTE_H
23
24#include "zebra/zebra_mpls.h"
25
26#include "lib/zclient.h"
27#include "lib/srte.h"
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33enum zebra_sr_policy_update_label_mode {
34 ZEBRA_SR_POLICY_LABEL_CREATED = 1,
35 ZEBRA_SR_POLICY_LABEL_UPDATED = 2,
36 ZEBRA_SR_POLICY_LABEL_REMOVED = 3,
37};
38
39struct zebra_sr_policy {
40 RB_ENTRY(zebra_sr_policy) entry;
41 uint32_t color;
42 struct ipaddr endpoint;
43 char name[SRTE_POLICY_NAME_MAX_LENGTH];
44 enum zebra_sr_policy_status status;
45 struct zapi_srte_tunnel segment_list;
46 zebra_lsp_t *lsp;
47 struct zebra_vrf *zvrf;
48};
49RB_HEAD(zebra_sr_policy_instance_head, zebra_sr_policy);
50RB_PROTOTYPE(zebra_sr_policy_instance_head, zebra_sr_policy, entry,
51 zebra_sr_policy_instance_compare)
52
53extern struct zebra_sr_policy_instance_head zebra_sr_policy_instances;
54
55struct zebra_sr_policy *
56zebra_sr_policy_add(uint32_t color, struct ipaddr *endpoint, char *name);
57void zebra_sr_policy_del(struct zebra_sr_policy *policy);
58struct zebra_sr_policy *zebra_sr_policy_find(uint32_t color,
59 struct ipaddr *endpoint);
60struct zebra_sr_policy *zebra_sr_policy_find_by_name(char *name);
61int zebra_sr_policy_validate(struct zebra_sr_policy *policy,
62 struct zapi_srte_tunnel *new_tunnel);
63int zebra_sr_policy_bsid_install(struct zebra_sr_policy *policy);
64void zebra_sr_policy_bsid_uninstall(struct zebra_sr_policy *policy,
65 mpls_label_t old_bsid);
66void zebra_srte_init(void);
67int zebra_sr_policy_label_update(mpls_label_t label,
68 enum zebra_sr_policy_update_label_mode mode);
69
70#ifdef __cplusplus
71}
72#endif
73
74#endif /* _ZEBRA_SRTE_H */