]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrp_interface.c
Merge pull request #5175 from opensourcerouting/debug-nb-yang
[mirror_frr.git] / eigrpd / eigrp_interface.c
1 /*
2 * EIGRP Interface Functions.
3 * Copyright (C) 2013-2016
4 * Authors:
5 * Donnie Savage
6 * Jan Janovic
7 * Matej Perina
8 * Peter Orsag
9 * Peter Paluch
10 * Frantisek Gazo
11 * Tomas Hvorkovy
12 * Martin Kontsek
13 * Lukas Koribsky
14 *
15 * This file is part of GNU Zebra.
16 *
17 * GNU Zebra is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the
19 * Free Software Foundation; either version 2, or (at your option) any
20 * later version.
21 *
22 * GNU Zebra is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License along
28 * with this program; see the file COPYING; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 */
31
32 #include <zebra.h>
33
34 #include "thread.h"
35 #include "linklist.h"
36 #include "prefix.h"
37 #include "if.h"
38 #include "table.h"
39 #include "memory.h"
40 #include "command.h"
41 #include "stream.h"
42 #include "log.h"
43 #include "keychain.h"
44 #include "vrf.h"
45
46 #include "eigrpd/eigrp_structs.h"
47 #include "eigrpd/eigrpd.h"
48 #include "eigrpd/eigrp_interface.h"
49 #include "eigrpd/eigrp_neighbor.h"
50 #include "eigrpd/eigrp_packet.h"
51 #include "eigrpd/eigrp_zebra.h"
52 #include "eigrpd/eigrp_vty.h"
53 #include "eigrpd/eigrp_network.h"
54 #include "eigrpd/eigrp_topology.h"
55 #include "eigrpd/eigrp_memory.h"
56 #include "eigrpd/eigrp_fsm.h"
57 #include "eigrpd/eigrp_dump.h"
58
59 struct eigrp_interface *eigrp_if_new(struct eigrp *eigrp, struct interface *ifp,
60 struct prefix *p)
61 {
62 struct eigrp_interface *ei = ifp->info;
63 int i;
64
65 if (ei)
66 return ei;
67
68 ei = XCALLOC(MTYPE_EIGRP_IF, sizeof(struct eigrp_interface));
69
70 /* Set zebra interface pointer. */
71 ei->ifp = ifp;
72 prefix_copy(&ei->address, p);
73
74 ifp->info = ei;
75 listnode_add(eigrp->eiflist, ei);
76
77 ei->type = EIGRP_IFTYPE_BROADCAST;
78
79 /* Initialize neighbor list. */
80 ei->nbrs = list_new();
81
82 ei->crypt_seqnum = time(NULL);
83
84 /* Initialize lists */
85 for (i = 0; i < EIGRP_FILTER_MAX; i++) {
86 ei->list[i] = NULL;
87 ei->prefix[i] = NULL;
88 ei->routemap[i] = NULL;
89 }
90
91 ei->eigrp = eigrp;
92
93 ei->params.v_hello = EIGRP_HELLO_INTERVAL_DEFAULT;
94 ei->params.v_wait = EIGRP_HOLD_INTERVAL_DEFAULT;
95 ei->params.bandwidth = EIGRP_BANDWIDTH_DEFAULT;
96 ei->params.delay = EIGRP_DELAY_DEFAULT;
97 ei->params.reliability = EIGRP_RELIABILITY_DEFAULT;
98 ei->params.load = EIGRP_LOAD_DEFAULT;
99 ei->params.auth_type = EIGRP_AUTH_TYPE_NONE;
100 ei->params.auth_keychain = NULL;
101
102 return ei;
103 }
104
105 int eigrp_if_delete_hook(struct interface *ifp)
106 {
107 struct eigrp_interface *ei = ifp->info;
108 struct eigrp *eigrp;
109
110 if (!ei)
111 return 0;
112
113 list_delete(&ei->nbrs);
114
115 eigrp = ei->eigrp;
116 listnode_delete(eigrp->eiflist, ei);
117
118 eigrp_fifo_free(ei->obuf);
119
120 XFREE(MTYPE_EIGRP_IF_INFO, ifp->info);
121 ifp->info = NULL;
122
123 return 0;
124 }
125
126 static int eigrp_ifp_create(struct interface *ifp)
127 {
128 struct eigrp_interface *ei = ifp->info;
129
130 if (!ei)
131 return 0;
132
133 ei->params.type = eigrp_default_iftype(ifp);
134
135 eigrp_if_update(ifp);
136
137 return 0;
138 }
139
140 static int eigrp_ifp_up(struct interface *ifp)
141 {
142 /* Interface is already up. */
143 if (if_is_operative(ifp)) {
144 /* Temporarily keep ifp values. */
145 struct interface if_tmp;
146 memcpy(&if_tmp, ifp, sizeof(struct interface));
147
148 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
149 zlog_debug("Zebra: Interface[%s] state update.",
150 ifp->name);
151
152 if (if_tmp.bandwidth != ifp->bandwidth) {
153 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
154 zlog_debug(
155 "Zebra: Interface[%s] bandwidth change %d -> %d.",
156 ifp->name, if_tmp.bandwidth,
157 ifp->bandwidth);
158
159 // eigrp_if_recalculate_output_cost (ifp);
160 }
161
162 if (if_tmp.mtu != ifp->mtu) {
163 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
164 zlog_debug(
165 "Zebra: Interface[%s] MTU change %u -> %u.",
166 ifp->name, if_tmp.mtu, ifp->mtu);
167
168 /* Must reset the interface (simulate down/up) when MTU
169 * changes. */
170 eigrp_if_reset(ifp);
171 }
172 return 0;
173 }
174
175 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
176 zlog_debug("Zebra: Interface[%s] state change to up.",
177 ifp->name);
178
179 if (ifp->info)
180 eigrp_if_up(ifp->info);
181
182 return 0;
183 }
184
185 static int eigrp_ifp_down(struct interface *ifp)
186 {
187 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
188 zlog_debug("Zebra: Interface[%s] state change to down.",
189 ifp->name);
190
191 if (ifp->info)
192 eigrp_if_down(ifp->info);
193
194 return 0;
195 }
196
197 static int eigrp_ifp_destroy(struct interface *ifp)
198 {
199 if (if_is_up(ifp))
200 zlog_warn("Zebra: got delete of %s, but interface is still up",
201 ifp->name);
202
203 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
204 zlog_debug(
205 "Zebra: interface delete %s index %d flags %llx metric %d mtu %d",
206 ifp->name, ifp->ifindex, (unsigned long long)ifp->flags,
207 ifp->metric, ifp->mtu);
208
209 if (ifp->info)
210 eigrp_if_free(ifp->info, INTERFACE_DOWN_BY_ZEBRA);
211
212 return 0;
213 }
214
215 struct list *eigrp_iflist;
216
217 void eigrp_if_init(void)
218 {
219 if_zapi_callbacks(eigrp_ifp_create, eigrp_ifp_up,
220 eigrp_ifp_down, eigrp_ifp_destroy);
221 /* Initialize Zebra interface data structure. */
222 // hook_register_prio(if_add, 0, eigrp_if_new);
223 hook_register_prio(if_del, 0, eigrp_if_delete_hook);
224 }
225
226
227 void eigrp_del_if_params(struct eigrp_if_params *eip)
228 {
229 if (eip->auth_keychain)
230 free(eip->auth_keychain);
231 }
232
233 int eigrp_if_up(struct eigrp_interface *ei)
234 {
235 struct eigrp_prefix_entry *pe;
236 struct eigrp_nexthop_entry *ne;
237 struct eigrp_metrics metric;
238 struct eigrp_interface *ei2;
239 struct listnode *node, *nnode;
240 struct eigrp *eigrp;
241
242 if (ei == NULL)
243 return 0;
244
245 eigrp = ei->eigrp;
246 eigrp_adjust_sndbuflen(eigrp, ei->ifp->mtu);
247
248 eigrp_if_stream_set(ei);
249
250 /* Set multicast memberships appropriately for new state. */
251 eigrp_if_set_multicast(ei);
252
253 thread_add_event(master, eigrp_hello_timer, ei, (1), NULL);
254
255 /*Prepare metrics*/
256 metric.bandwidth = eigrp_bandwidth_to_scaled(ei->params.bandwidth);
257 metric.delay = eigrp_delay_to_scaled(ei->params.delay);
258 metric.load = ei->params.load;
259 metric.reliability = ei->params.reliability;
260 metric.mtu[0] = 0xDC;
261 metric.mtu[1] = 0x05;
262 metric.mtu[2] = 0x00;
263 metric.hop_count = 0;
264 metric.flags = 0;
265 metric.tag = 0;
266
267 /*Add connected entry to topology table*/
268
269 ne = eigrp_nexthop_entry_new();
270 ne->ei = ei;
271 ne->reported_metric = metric;
272 ne->total_metric = metric;
273 ne->distance = eigrp_calculate_metrics(eigrp, metric);
274 ne->reported_distance = 0;
275 ne->adv_router = eigrp->neighbor_self;
276 ne->flags = EIGRP_NEXTHOP_ENTRY_SUCCESSOR_FLAG;
277
278 struct prefix dest_addr;
279
280 dest_addr = ei->address;
281 apply_mask(&dest_addr);
282 pe = eigrp_topology_table_lookup_ipv4(eigrp->topology_table,
283 &dest_addr);
284
285 if (pe == NULL) {
286 pe = eigrp_prefix_entry_new();
287 pe->serno = eigrp->serno;
288 pe->destination = (struct prefix *)prefix_ipv4_new();
289 prefix_copy(pe->destination, &dest_addr);
290 pe->af = AF_INET;
291 pe->nt = EIGRP_TOPOLOGY_TYPE_CONNECTED;
292
293 ne->prefix = pe;
294 pe->reported_metric = metric;
295 pe->state = EIGRP_FSM_STATE_PASSIVE;
296 pe->fdistance = eigrp_calculate_metrics(eigrp, metric);
297 pe->req_action |= EIGRP_FSM_NEED_UPDATE;
298 eigrp_prefix_entry_add(eigrp->topology_table, pe);
299 listnode_add(eigrp->topology_changes_internalIPV4, pe);
300
301 eigrp_nexthop_entry_add(eigrp, pe, ne);
302
303 for (ALL_LIST_ELEMENTS(eigrp->eiflist, node, nnode, ei2)) {
304 eigrp_update_send(ei2);
305 }
306
307 pe->req_action &= ~EIGRP_FSM_NEED_UPDATE;
308 listnode_delete(eigrp->topology_changes_internalIPV4, pe);
309 } else {
310 struct eigrp_fsm_action_message msg;
311
312 ne->prefix = pe;
313 eigrp_nexthop_entry_add(eigrp, pe, ne);
314
315 msg.packet_type = EIGRP_OPC_UPDATE;
316 msg.eigrp = eigrp;
317 msg.data_type = EIGRP_CONNECTED;
318 msg.adv_router = NULL;
319 msg.entry = ne;
320 msg.prefix = pe;
321
322 eigrp_fsm_event(&msg);
323 }
324
325 return 1;
326 }
327
328 int eigrp_if_down(struct eigrp_interface *ei)
329 {
330 struct listnode *node, *nnode;
331 struct eigrp_neighbor *nbr;
332
333 if (ei == NULL)
334 return 0;
335
336 /* Shutdown packet reception and sending */
337 if (ei->t_hello)
338 THREAD_OFF(ei->t_hello);
339
340 eigrp_if_stream_unset(ei);
341
342 /*Set infinite metrics to routes learned by this interface and start
343 * query process*/
344 for (ALL_LIST_ELEMENTS(ei->nbrs, node, nnode, nbr)) {
345 eigrp_nbr_delete(nbr);
346 }
347
348 return 1;
349 }
350
351 void eigrp_if_stream_set(struct eigrp_interface *ei)
352 {
353 /* set output fifo queue. */
354 if (ei->obuf == NULL)
355 ei->obuf = eigrp_fifo_new();
356 }
357
358 void eigrp_if_stream_unset(struct eigrp_interface *ei)
359 {
360 struct eigrp *eigrp = ei->eigrp;
361
362 if (ei->on_write_q) {
363 listnode_delete(eigrp->oi_write_q, ei);
364 if (list_isempty(eigrp->oi_write_q))
365 thread_cancel(eigrp->t_write);
366 ei->on_write_q = 0;
367 }
368 }
369
370 bool eigrp_if_is_passive(struct eigrp_interface *ei)
371 {
372 if (ei->params.passive_interface == EIGRP_IF_ACTIVE)
373 return false;
374
375 if (ei->eigrp->passive_interface_default == EIGRP_IF_ACTIVE)
376 return false;
377
378 return true;
379 }
380
381 void eigrp_if_set_multicast(struct eigrp_interface *ei)
382 {
383 if (!eigrp_if_is_passive(ei)) {
384 /* The interface should belong to the EIGRP-all-routers group.
385 */
386 if (!ei->member_allrouters
387 && (eigrp_if_add_allspfrouters(ei->eigrp, &ei->address,
388 ei->ifp->ifindex)
389 >= 0))
390 /* Set the flag only if the system call to join
391 * succeeded. */
392 ei->member_allrouters = true;
393 } else {
394 /* The interface should NOT belong to the EIGRP-all-routers
395 * group. */
396 if (ei->member_allrouters) {
397 /* Only actually drop if this is the last reference */
398 eigrp_if_drop_allspfrouters(ei->eigrp, &ei->address,
399 ei->ifp->ifindex);
400 /* Unset the flag regardless of whether the system call
401 to leave
402 the group succeeded, since it's much safer to assume
403 that
404 we are not a member. */
405 ei->member_allrouters = false;
406 }
407 }
408 }
409
410 uint8_t eigrp_default_iftype(struct interface *ifp)
411 {
412 if (if_is_pointopoint(ifp))
413 return EIGRP_IFTYPE_POINTOPOINT;
414 else if (if_is_loopback(ifp))
415 return EIGRP_IFTYPE_LOOPBACK;
416 else
417 return EIGRP_IFTYPE_BROADCAST;
418 }
419
420 void eigrp_if_free(struct eigrp_interface *ei, int source)
421 {
422 struct prefix dest_addr;
423 struct eigrp_prefix_entry *pe;
424 struct eigrp *eigrp = ei->eigrp;
425
426 if (source == INTERFACE_DOWN_BY_VTY) {
427 THREAD_OFF(ei->t_hello);
428 eigrp_hello_send(ei, EIGRP_HELLO_GRACEFUL_SHUTDOWN, NULL);
429 }
430
431 dest_addr = ei->address;
432 apply_mask(&dest_addr);
433 pe = eigrp_topology_table_lookup_ipv4(eigrp->topology_table,
434 &dest_addr);
435 if (pe)
436 eigrp_prefix_entry_delete(eigrp, eigrp->topology_table, pe);
437
438 eigrp_if_down(ei);
439
440 listnode_delete(ei->eigrp->eiflist, ei);
441 }
442
443 /* Simulate down/up on the interface. This is needed, for example, when
444 the MTU changes. */
445 void eigrp_if_reset(struct interface *ifp)
446 {
447 struct eigrp_interface *ei = ifp->info;
448
449 if (!ei)
450 return;
451
452 eigrp_if_down(ei);
453 eigrp_if_up(ei);
454 }
455
456 struct eigrp_interface *eigrp_if_lookup_by_local_addr(struct eigrp *eigrp,
457 struct interface *ifp,
458 struct in_addr address)
459 {
460 struct listnode *node;
461 struct eigrp_interface *ei;
462
463 for (ALL_LIST_ELEMENTS_RO(eigrp->eiflist, node, ei)) {
464 if (ifp && ei->ifp != ifp)
465 continue;
466
467 if (IPV4_ADDR_SAME(&address, &ei->address.u.prefix4))
468 return ei;
469 }
470
471 return NULL;
472 }
473
474 /**
475 * @fn eigrp_if_lookup_by_name
476 *
477 * @param[in] eigrp EIGRP process
478 * @param[in] if_name Name of the interface
479 *
480 * @return struct eigrp_interface *
481 *
482 * @par
483 * Function is used for lookup interface by name.
484 */
485 struct eigrp_interface *eigrp_if_lookup_by_name(struct eigrp *eigrp,
486 const char *if_name)
487 {
488 struct eigrp_interface *ei;
489 struct listnode *node;
490
491 /* iterate over all eigrp interfaces */
492 for (ALL_LIST_ELEMENTS_RO(eigrp->eiflist, node, ei)) {
493 /* compare int name with eigrp interface's name */
494 if (strcmp(ei->ifp->name, if_name) == 0) {
495 return ei;
496 }
497 }
498
499 return NULL;
500 }
501
502 uint32_t eigrp_bandwidth_to_scaled(uint32_t bandwidth)
503 {
504 uint64_t temp_bandwidth = (256ull * 10000000) / bandwidth;
505
506 temp_bandwidth = temp_bandwidth < EIGRP_MAX_METRIC ? temp_bandwidth
507 : EIGRP_MAX_METRIC;
508
509 return (uint32_t)temp_bandwidth;
510 }
511
512 uint32_t eigrp_scaled_to_bandwidth(uint32_t scaled)
513 {
514 uint64_t temp_scaled = scaled * (256ull * 10000000);
515
516 temp_scaled =
517 temp_scaled < EIGRP_MAX_METRIC ? temp_scaled : EIGRP_MAX_METRIC;
518
519 return (uint32_t)temp_scaled;
520 }
521
522 uint32_t eigrp_delay_to_scaled(uint32_t delay)
523 {
524 return delay * 256;
525 }
526
527 uint32_t eigrp_scaled_to_delay(uint32_t scaled)
528 {
529 return scaled / 256;
530 }