-
Notifications
You must be signed in to change notification settings - Fork 4
/
leak_status.txt
264 lines (189 loc) · 6.92 KB
/
leak_status.txt
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
--------------------------------------------------------------------------------
cpath_new lib/cspf.c:44 Assigned to: rwgbsd
ryndia - gave up
cspf_topo1.test_cspf_topo1/r1.asan.sharpd
//../lib/cspf.h:
/* Constrained Path structure */
struct c_path {
struct pqueue_item q_itm; /* entry in the Priority Queue */
uint32_t weight; /* Weight to sort path in Priority Queue */
struct processed_item p_itm; /* entry in the Processed RB Tree */
uint64_t dst; /* Destination vertex key of this path */
struct list *edges; /* List of Edges that compose this path */
enum path_status status; /* status of the computed path */
};
--------------------------------------------------------------------------------
ecommunity_new bgpd/bgp_ecommunity.c:40
Someone else PR13918
--------------------------------------------------------------------------------
ecommunity_dup bgpd/bgp_ecommunity.c:252 Assigned to: logan
/* Extended Communities attribute. */
struct ecommunity {
/* Reference counter. */
unsigned long refcnt;
/* Size of Each Unit of Extended Communities attribute.
* to differentiate between IPv6 ext comm and ext comm
*/
uint8_t unit_size;
/* Size of Extended Communities attribute. */
uint32_t size;
/* Extended Communities value. */
uint8_t *val;
/* Human readable format string. */
char *str;
/* Disable IEEE floating-point encoding for extended community */
bool disable_ieee_floating;
};
--------------------------------------------------------------------------------
info_make bgpd/bgp_route.c:3955 Assigned to: Keelan
--------------------------------------------------------------------------------
list_new lib/linklist.c:49
cspf_topo1.test_cspf_topo1/r1.asan.sharpd
//../lib/linklist.h:
struct list {
struct listnode *head;
struct listnode *tail;
/* invariant: count is the number of listnodes in the list */
unsigned int count;
uint8_t flags;
/* Indicates that listnode memory is managed by the application and
* doesn't need to be freed by this library via listnode_delete etc.
*/
#define LINKLIST_FLAG_NODE_MEM_BY_APP (1 << 0)
/*
* Returns -1 if val1 < val2, 0 if equal?, 1 if val1 > val2.
* Used as definition of sorted for listnode_add_sort
*/
int (*cmp)(void *val1, void *val2);
/* callback to free user-owned data when listnode is deleted. supplying
* this callback is very much encouraged!
*/
void (*del)(void *val);
};
--------------------------------------------------------------------------------
ls_parse_prefix lib/link_state.c:1321
cspf_topo1.test_cspf_topo1/r1.asan.sharpd
//../lib/link_state.h:
/* Link State Prefix */
struct ls_prefix {
uint8_t flags; /* Flag for parameters validity */
struct ls_node_id adv; /* Adv. Router of this Link State */
struct prefix pref; /* IPv4 or IPv6 prefix */
uint8_t igp_flag; /* IGP Flags associated to the prefix */
uint32_t route_tag; /* IGP Route Tag */
uint64_t extended_tag; /* IGP Extended Route Tag */
uint32_t metric; /* Route metric for this prefix */
struct ls_sid {
uint32_t sid; /* Segment Routing ID */
uint8_t sid_flag; /* Segment Routing Flags */
uint8_t algo; /* Algorithm for Segment Routing */
} sr;
};
--------------------------------------------------------------------------------
nhrp_peer_create nhrpd/nhrp_peer.c:175 Assigned to: rwgbsd
nhrp_topo.test_nhrp_topo/r1.asan.nhrpd
nhrp_topo.test_nhrp_topo/r2.asan.nhrpd
//../nhrpd/nhrpd.h:
struct nhrp_peer {
unsigned int ref;
unsigned online : 1;
unsigned requested : 1;
unsigned fallback_requested : 1;
unsigned prio : 1;
struct notifier_list notifier_list;
struct interface *ifp;
struct nhrp_vc *vc;
struct event *t_fallback;
struct notifier_block vc_notifier, ifp_notifier;
struct event *t_timer;
};
--------------------------------------------------------------------------------
ospf6_lsa_alloc ospf6d/ospf6_lsa.c:710 Assigned To: ryndia
ospf6_gr_topo1.test_ospf6_gr_topo1/rt3.asan.ospf6d
//../ospf6d/ospf6_lsa.h:
struct ospf6_lsa {
char name[64]; /* dump string */
struct route_node *rn;
unsigned char lock; /* reference counter */
unsigned char flag; /* special meaning (e.g. floodback) */
struct timeval birth; /* tv_sec when LS age 0 */
struct timeval originated; /* used by MinLSInterval check */
struct timeval received; /* used by MinLSArrival check */
struct timeval installed;
struct event *expire;
struct event *refresh; /* For self-originated LSA */
int retrans_count;
struct ospf6_lsdb *lsdb;
in_addr_t external_lsa_id;
/* lsa instance */
struct ospf6_lsa_header *header;
/*For topo chg detection in HELPER role*/
bool tobe_acknowledged;
};
ospf_area_range_new ospfd/ospf_abr.c:43
ospf_tilfa_topo1.test_ospf_tilfa_topo1/rt2.asan.ospfd
//../ospf/ospf_abr.h
/* Area range. */
struct ospf_area_range {
/* Area range address. */
struct in_addr addr;
/* Area range masklen. */
uint8_t masklen;
/* Flags. */
uint8_t flags;
/* Number of more specific prefixes. */
int specifics;
/* Addr and masklen to substitute. */
struct in_addr subst_addr;
uint8_t subst_masklen;
/* Range cost. */
uint32_t cost;
/* Configured range cost. */
uint32_t cost_config;
};
ospf_external_aggregator_new ospfd/ospf_asbr.c:396
ospf_tilfa_topo1.test_ospf_tilfa_topo1/
//../ospfd/ospf_asbr.h
struct ospf_external_aggr_rt {
/* Prefix. */
struct prefix_ipv4 p;
/* Bit 1 : Dont advertise.
* Bit 2 : Originated as Type-5
*/
uint8_t flags;
/* Tag for summary route */
route_tag_t tag;
/* Action to be done at the delay
* timer expairy.
*/
enum ospf_aggr_action_t action;
/* Hash Table of external routes */
struct hash *match_extnl_hash;
};
ospf_lsa_new ospfd/ospf_lsa.c:186
ryndia - fix pending CI RUN
ospf_spf_vertex_parent_copy ospfd/ospf_spf.c:350
ryndia
ospf_tilfa_topo1.test_ospf_tilfa_topo1/
//../ospfd/ospf_spf.h
struct vertex_parent {
struct vertex_nexthop *nexthop; /* nexthop taken on the root node */
struct vertex_nexthop *local_nexthop; /* local nexthop of the parent */
struct vertex *parent; /* parent vertex */
int backlink; /* index back to parent for router-lsa's */
};
prefix_copy lib/prefix.c:346
vertex_parent_new ospfd/ospf_spf.c:157
ospf_tilfa_topo1.test_ospf_tilfa_topo1/
//../ospfd/ospf_spf.h
struct vertex_parent {
struct vertex_nexthop *nexthop; /* nexthop taken on the root node */
struct vertex_nexthop *local_nexthop; /* local nexthop of the parent */
struct vertex *parent; /* parent vertex */
int backlink; /* index back to parent for router-lsa's */
};
DONE:
evpn_configure_vrf_rd bgpd/bgp_evpn_vty.c:2297
Keelan - PR13925 - committed
nexthop_new lib/nexthop.c:358
Keelan - PR13927 - committed