]> git.proxmox.com Git - mirror_frr.git/blob - isisd/isis_lsp.h
Merge pull request #5625 from qlyoung/fix-zapi-ipset-name-nullterm
[mirror_frr.git] / isisd / isis_lsp.h
1 /*
2 * IS-IS Rout(e)ing protocol - isis_lsp.h
3 * LSP processing
4 *
5 * Copyright (C) 2001,2002 Sampo Saaristo
6 * Tampere University of Technology
7 * Institute of Communications Engineering
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public Licenseas published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; see the file COPYING; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #ifndef _ZEBRA_ISIS_LSP_H
25 #define _ZEBRA_ISIS_LSP_H
26
27 #include "lib/typesafe.h"
28 #include "isisd/isis_pdu.h"
29
30 PREDECL_RBTREE_UNIQ(lspdb)
31
32 /* Structure for isis_lsp, this structure will only support the fixed
33 * System ID (Currently 6) (atleast for now). In order to support more
34 * We will have to split the header into two parts, and for readability
35 * sake it should better be avoided */
36 struct isis_lsp {
37 struct lspdb_item dbe;
38
39 struct isis_lsp_hdr hdr;
40 struct stream *pdu; /* full pdu lsp */
41 union {
42 struct list *frags;
43 struct isis_lsp *zero_lsp;
44 } lspu;
45 uint32_t SSNflags[ISIS_MAX_CIRCUITS];
46 int level; /* L1 or L2? */
47 int scheduled; /* scheduled for sending */
48 time_t installed;
49 time_t last_generated;
50 int own_lsp;
51 /* used for 60 second counting when rem_lifetime is zero */
52 int age_out;
53 struct isis_area *area;
54 struct isis_tlvs *tlvs;
55
56 time_t flooding_time;
57 struct list *flooding_neighbors[TX_LSP_CIRCUIT_SCOPED + 1];
58 char *flooding_interface;
59 bool flooding_circuit_scoped;
60 };
61
62 extern int lspdb_compare(const struct isis_lsp *a, const struct isis_lsp *b);
63 DECLARE_RBTREE_UNIQ(lspdb, struct isis_lsp, dbe, lspdb_compare)
64
65 void lsp_db_init(struct lspdb_head *head);
66 void lsp_db_fini(struct lspdb_head *head);
67 int lsp_tick(struct thread *thread);
68
69 int lsp_generate(struct isis_area *area, int level);
70 #define lsp_regenerate_schedule(area, level, all_pseudo) \
71 _lsp_regenerate_schedule((area), (level), (all_pseudo), true, \
72 __func__, __FILE__, __LINE__)
73 int _lsp_regenerate_schedule(struct isis_area *area, int level,
74 int all_pseudo, bool postpone,
75 const char *func, const char *file, int line);
76 int lsp_generate_pseudo(struct isis_circuit *circuit, int level);
77 int lsp_regenerate_schedule_pseudo(struct isis_circuit *circuit, int level);
78
79 struct isis_lsp *lsp_new(struct isis_area *area, uint8_t *lsp_id,
80 uint16_t rem_lifetime, uint32_t seq_num,
81 uint8_t lsp_bits, uint16_t checksum,
82 struct isis_lsp *lsp0, int level);
83 struct isis_lsp *lsp_new_from_recv(struct isis_lsp_hdr *hdr,
84 struct isis_tlvs *tlvs,
85 struct stream *stream, struct isis_lsp *lsp0,
86 struct isis_area *area, int level);
87 void lsp_insert(struct lspdb_head *head, struct isis_lsp *lsp);
88 struct isis_lsp *lsp_search(struct lspdb_head *head, const uint8_t *id);
89
90 void lsp_build_list(struct lspdb_head *head, const uint8_t *start_id,
91 const uint8_t *stop_id, uint8_t num_lsps,
92 struct list *list);
93 void lsp_build_list_nonzero_ht(struct lspdb_head *head,
94 const uint8_t *start_id,
95 const uint8_t *stop_id, struct list *list);
96 void lsp_search_and_destroy(struct lspdb_head *head, const uint8_t *id);
97 void lsp_purge_pseudo(uint8_t *id, struct isis_circuit *circuit, int level);
98 void lsp_purge_non_exist(int level, struct isis_lsp_hdr *hdr,
99 struct isis_area *area);
100
101 #define LSP_EQUAL 1
102 #define LSP_NEWER 2
103 #define LSP_OLDER 3
104
105 #define LSP_PSEUDO_ID(I) ((I)[ISIS_SYS_ID_LEN])
106 #define LSP_FRAGMENT(I) ((I)[ISIS_SYS_ID_LEN + 1])
107 #define OWNLSPID(I) \
108 memcpy((I), isis->sysid, ISIS_SYS_ID_LEN); \
109 (I)[ISIS_SYS_ID_LEN] = 0; \
110 (I)[ISIS_SYS_ID_LEN + 1] = 0
111 int lsp_id_cmp(uint8_t *id1, uint8_t *id2);
112 int lsp_compare(char *areatag, struct isis_lsp *lsp, uint32_t seqno,
113 uint16_t checksum, uint16_t rem_lifetime);
114 void lsp_update(struct isis_lsp *lsp, struct isis_lsp_hdr *hdr,
115 struct isis_tlvs *tlvs, struct stream *stream,
116 struct isis_area *area, int level, bool confusion);
117 void lsp_inc_seqno(struct isis_lsp *lsp, uint32_t seqno);
118 void lspid_print(uint8_t *lsp_id, char *dest, char dynhost, char frag);
119 void lsp_print(struct isis_lsp *lsp, struct vty *vty, char dynhost);
120 void lsp_print_detail(struct isis_lsp *lsp, struct vty *vty, char dynhost);
121 int lsp_print_all(struct vty *vty, struct lspdb_head *head, char detail,
122 char dynhost);
123 /* sets SRMflags for all active circuits of an lsp */
124 void lsp_set_all_srmflags(struct isis_lsp *lsp, bool set);
125
126 #define lsp_flood(lsp, circuit) \
127 _lsp_flood((lsp), (circuit), __func__, __FILE__, __LINE__)
128 void _lsp_flood(struct isis_lsp *lsp, struct isis_circuit *circuit,
129 const char *func, const char *file, int line);
130 void lsp_init(void);
131
132 #endif /* ISIS_LSP */