]> git.proxmox.com Git - mirror_frr.git/blob - lib/if.c
Merge pull request #3069 from donaldsharp/bgp_nexthop_address
[mirror_frr.git] / lib / if.c
1 /*
2 * Interface functions.
3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #include <zebra.h>
23
24 #include "linklist.h"
25 #include "vector.h"
26 #include "lib_errors.h"
27 #include "vty.h"
28 #include "command.h"
29 #include "vrf.h"
30 #include "if.h"
31 #include "sockunion.h"
32 #include "prefix.h"
33 #include "memory.h"
34 #include "table.h"
35 #include "buffer.h"
36 #include "log.h"
37
38 DEFINE_MTYPE(LIB, IF, "Interface")
39 DEFINE_MTYPE_STATIC(LIB, CONNECTED, "Connected")
40 DEFINE_MTYPE_STATIC(LIB, NBR_CONNECTED, "Neighbor Connected")
41 DEFINE_MTYPE(LIB, CONNECTED_LABEL, "Connected interface label")
42 DEFINE_MTYPE_STATIC(LIB, IF_LINK_PARAMS, "Informational Link Parameters")
43
44 static int if_cmp_func(const struct interface *, const struct interface *);
45 static int if_cmp_index_func(const struct interface *ifp1,
46 const struct interface *ifp2);
47 RB_GENERATE(if_name_head, interface, name_entry, if_cmp_func);
48 RB_GENERATE(if_index_head, interface, index_entry, if_cmp_index_func);
49
50 DEFINE_QOBJ_TYPE(interface)
51
52 DEFINE_HOOK(if_add, (struct interface * ifp), (ifp))
53 DEFINE_KOOH(if_del, (struct interface * ifp), (ifp))
54
55 /* List of interfaces in only the default VRF */
56 int ptm_enable = 0;
57
58 /* Compare interface names, returning an integer greater than, equal to, or
59 * less than 0, (following the strcmp convention), according to the
60 * relationship between ifp1 and ifp2. Interface names consist of an
61 * alphabetic prefix and a numeric suffix. The primary sort key is
62 * lexicographic by name, and then numeric by number. No number sorts
63 * before all numbers. Examples: de0 < de1, de100 < fxp0 < xl0, devpty <
64 * devpty0, de0 < del0
65 */
66 int if_cmp_name_func(const char *p1, const char *p2)
67 {
68 unsigned int l1, l2;
69 long int x1, x2;
70 int res;
71
72 while (*p1 && *p2) {
73 /* look up to any number */
74 l1 = strcspn(p1, "0123456789");
75 l2 = strcspn(p2, "0123456789");
76
77 /* name lengths are different -> compare names */
78 if (l1 != l2)
79 return (strcmp(p1, p2));
80
81 /* Note that this relies on all numbers being less than all
82 * letters, so
83 * that de0 < del0.
84 */
85 res = strncmp(p1, p2, l1);
86
87 /* names are different -> compare them */
88 if (res)
89 return res;
90
91 /* with identical name part, go to numeric part */
92 p1 += l1;
93 p2 += l1;
94
95 if (!*p1 && !*p2)
96 return 0;
97 if (!*p1)
98 return -1;
99 if (!*p2)
100 return 1;
101
102 x1 = strtol(p1, (char **)&p1, 10);
103 x2 = strtol(p2, (char **)&p2, 10);
104
105 /* let's compare numbers now */
106 if (x1 < x2)
107 return -1;
108 if (x1 > x2)
109 return 1;
110
111 /* numbers were equal, lets do it again..
112 (it happens with name like "eth123.456:789") */
113 }
114 if (*p1)
115 return 1;
116 if (*p2)
117 return -1;
118 return 0;
119 }
120
121 static int if_cmp_func(const struct interface *ifp1,
122 const struct interface *ifp2)
123 {
124 return if_cmp_name_func(ifp1->name, ifp2->name);
125 }
126
127 static int if_cmp_index_func(const struct interface *ifp1,
128 const struct interface *ifp2)
129 {
130 return ifp1->ifindex - ifp2->ifindex;
131 }
132
133 /* Create new interface structure. */
134 struct interface *if_create(const char *name, vrf_id_t vrf_id)
135 {
136 struct vrf *vrf = vrf_get(vrf_id, NULL);
137 struct interface *ifp;
138
139 ifp = XCALLOC(MTYPE_IF, sizeof(struct interface));
140 ifp->ifindex = IFINDEX_INTERNAL;
141
142 assert(name);
143 strlcpy(ifp->name, name, sizeof(ifp->name));
144 ifp->vrf_id = vrf_id;
145 IFNAME_RB_INSERT(vrf, ifp);
146 ifp->connected = list_new();
147 ifp->connected->del = (void (*)(void *))connected_free;
148
149 ifp->nbr_connected = list_new();
150 ifp->nbr_connected->del = (void (*)(void *))nbr_connected_free;
151
152 /* Enable Link-detection by default */
153 SET_FLAG(ifp->status, ZEBRA_INTERFACE_LINKDETECTION);
154
155 QOBJ_REG(ifp, interface);
156 hook_call(if_add, ifp);
157 return ifp;
158 }
159
160 /* Create new interface structure. */
161 void if_update_to_new_vrf(struct interface *ifp, vrf_id_t vrf_id)
162 {
163 struct vrf *vrf;
164
165 /* remove interface from old master vrf list */
166 vrf = vrf_lookup_by_id(ifp->vrf_id);
167 if (vrf) {
168 IFNAME_RB_REMOVE(vrf, ifp);
169 if (ifp->ifindex != IFINDEX_INTERNAL)
170 IFINDEX_RB_REMOVE(vrf, ifp);
171 }
172
173 ifp->vrf_id = vrf_id;
174 vrf = vrf_get(ifp->vrf_id, NULL);
175
176 IFNAME_RB_INSERT(vrf, ifp);
177 if (ifp->ifindex != IFINDEX_INTERNAL)
178 IFINDEX_RB_INSERT(vrf, ifp);
179 }
180
181
182 /* Delete interface structure. */
183 void if_delete_retain(struct interface *ifp)
184 {
185 hook_call(if_del, ifp);
186 QOBJ_UNREG(ifp);
187
188 /* Free connected address list */
189 list_delete_all_node(ifp->connected);
190
191 /* Free connected nbr address list */
192 list_delete_all_node(ifp->nbr_connected);
193 }
194
195 /* Delete and free interface structure. */
196 void if_delete(struct interface *ifp)
197 {
198 struct vrf *vrf;
199
200 vrf = vrf_lookup_by_id(ifp->vrf_id);
201 assert(vrf);
202
203 IFNAME_RB_REMOVE(vrf, ifp);
204 if (ifp->ifindex != IFINDEX_INTERNAL)
205 IFINDEX_RB_REMOVE(vrf, ifp);
206
207 if_delete_retain(ifp);
208
209 list_delete_and_null(&ifp->connected);
210 list_delete_and_null(&ifp->nbr_connected);
211
212 if_link_params_free(ifp);
213
214 if (ifp->desc)
215 XFREE(MTYPE_TMP, ifp->desc);
216
217 XFREE(MTYPE_IF, ifp);
218 }
219
220 /* Interface existance check by index. */
221 struct interface *if_lookup_by_index(ifindex_t ifindex, vrf_id_t vrf_id)
222 {
223 struct vrf *vrf;
224 struct interface if_tmp;
225
226 vrf = vrf_lookup_by_id(vrf_id);
227 if (!vrf)
228 return NULL;
229
230 if_tmp.ifindex = ifindex;
231 return RB_FIND(if_index_head, &vrf->ifaces_by_index, &if_tmp);
232 }
233
234 const char *ifindex2ifname(ifindex_t ifindex, vrf_id_t vrf_id)
235 {
236 struct interface *ifp;
237
238 return ((ifp = if_lookup_by_index(ifindex, vrf_id)) != NULL)
239 ? ifp->name
240 : "unknown";
241 }
242
243 ifindex_t ifname2ifindex(const char *name, vrf_id_t vrf_id)
244 {
245 struct interface *ifp;
246
247 return ((ifp = if_lookup_by_name(name, vrf_id)) != NULL)
248 ? ifp->ifindex
249 : IFINDEX_INTERNAL;
250 }
251
252 /* Interface existance check by interface name. */
253 struct interface *if_lookup_by_name(const char *name, vrf_id_t vrf_id)
254 {
255 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
256 struct interface if_tmp;
257
258 if (!vrf || !name
259 || strnlen(name, INTERFACE_NAMSIZ) == INTERFACE_NAMSIZ)
260 return NULL;
261
262 strlcpy(if_tmp.name, name, sizeof(if_tmp.name));
263 return RB_FIND(if_name_head, &vrf->ifaces_by_name, &if_tmp);
264 }
265
266 struct interface *if_lookup_by_name_all_vrf(const char *name)
267 {
268 struct vrf *vrf;
269 struct interface *ifp;
270
271 if (!name || strnlen(name, INTERFACE_NAMSIZ) == INTERFACE_NAMSIZ)
272 return NULL;
273
274 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
275 ifp = if_lookup_by_name(name, vrf->vrf_id);
276 if (ifp)
277 return ifp;
278 }
279
280 return NULL;
281 }
282
283 /* Lookup interface by IPv4 address. */
284 struct interface *if_lookup_exact_address(void *src, int family,
285 vrf_id_t vrf_id)
286 {
287 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
288 struct listnode *cnode;
289 struct interface *ifp;
290 struct prefix *p;
291 struct connected *c;
292
293 FOR_ALL_INTERFACES (vrf, ifp) {
294 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
295 p = c->address;
296
297 if (p && (p->family == family)) {
298 if (family == AF_INET) {
299 if (IPV4_ADDR_SAME(
300 &p->u.prefix4,
301 (struct in_addr *)src))
302 return ifp;
303 } else if (family == AF_INET6) {
304 if (IPV6_ADDR_SAME(
305 &p->u.prefix6,
306 (struct in6_addr *)src))
307 return ifp;
308 }
309 }
310 }
311 }
312 return NULL;
313 }
314
315 /* Lookup interface by IPv4 address. */
316 struct connected *if_lookup_address(void *matchaddr, int family,
317 vrf_id_t vrf_id)
318 {
319 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
320 struct prefix addr;
321 int bestlen = 0;
322 struct listnode *cnode;
323 struct interface *ifp;
324 struct connected *c;
325 struct connected *match;
326
327 if (family == AF_INET) {
328 addr.family = AF_INET;
329 addr.u.prefix4 = *((struct in_addr *)matchaddr);
330 addr.prefixlen = IPV4_MAX_BITLEN;
331 } else if (family == AF_INET6) {
332 addr.family = AF_INET6;
333 addr.u.prefix6 = *((struct in6_addr *)matchaddr);
334 addr.prefixlen = IPV6_MAX_BITLEN;
335 }
336
337 match = NULL;
338
339 FOR_ALL_INTERFACES (vrf, ifp) {
340 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
341 if (c->address && (c->address->family == AF_INET)
342 && prefix_match(CONNECTED_PREFIX(c), &addr)
343 && (c->address->prefixlen > bestlen)) {
344 bestlen = c->address->prefixlen;
345 match = c;
346 }
347 }
348 }
349 return match;
350 }
351
352 /* Lookup interface by prefix */
353 struct interface *if_lookup_prefix(struct prefix *prefix, vrf_id_t vrf_id)
354 {
355 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
356 struct listnode *cnode;
357 struct interface *ifp;
358 struct connected *c;
359
360 FOR_ALL_INTERFACES (vrf, ifp) {
361 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
362 if (prefix_cmp(c->address, prefix) == 0) {
363 return ifp;
364 }
365 }
366 }
367 return NULL;
368 }
369
370 /* Get interface by name if given name interface doesn't exist create
371 one. */
372 struct interface *if_get_by_name(const char *name, vrf_id_t vrf_id, int vty)
373 {
374 struct interface *ifp = NULL;
375
376 if (vrf_is_mapped_on_netns(vrf_lookup_by_id(vrf_id))) {
377 ifp = if_lookup_by_name(name, vrf_id);
378 if (ifp)
379 return ifp;
380 if (vty) {
381 /* If the interface command was entered in vty without a
382 * VRF (passed as VRF_DEFAULT), search an interface with
383 * this name in all VRs
384 */
385 if (vrf_id == VRF_DEFAULT)
386 return if_lookup_by_name_all_vrf(name);
387 return NULL;
388 }
389 return if_create(name, vrf_id);
390 }
391 /* vrf is based on vrf-lite */
392 ifp = if_lookup_by_name_all_vrf(name);
393 if (ifp) {
394 if (ifp->vrf_id == vrf_id)
395 return ifp;
396 /* Found a match on a different VRF. If the interface command
397 * was entered in vty without a VRF (passed as VRF_DEFAULT),
398 * accept the ifp we found. If a vrf was entered and there is a
399 * mismatch, reject it if from vty. If it came from the kernel
400 * or by way of zclient, believe it and update the ifp
401 * accordingly.
402 */
403 if (vty) {
404 if (vrf_id == VRF_DEFAULT)
405 return ifp;
406 return NULL;
407 }
408 /* If it came from the kernel or by way of zclient, believe it
409 * and update the ifp accordingly.
410 */
411 if_update_to_new_vrf(ifp, vrf_id);
412 return ifp;
413 }
414 return if_create(name, vrf_id);
415 }
416
417 void if_set_index(struct interface *ifp, ifindex_t ifindex)
418 {
419 struct vrf *vrf;
420
421 vrf = vrf_lookup_by_id(ifp->vrf_id);
422 assert(vrf);
423
424 if (ifp->ifindex == ifindex)
425 return;
426
427 if (ifp->ifindex != IFINDEX_INTERNAL)
428 IFINDEX_RB_REMOVE(vrf, ifp)
429
430 ifp->ifindex = ifindex;
431
432 if (ifp->ifindex != IFINDEX_INTERNAL)
433 IFINDEX_RB_INSERT(vrf, ifp)
434 }
435
436 /* Does interface up ? */
437 int if_is_up(struct interface *ifp)
438 {
439 return ifp->flags & IFF_UP;
440 }
441
442 /* Is interface running? */
443 int if_is_running(struct interface *ifp)
444 {
445 return ifp->flags & IFF_RUNNING;
446 }
447
448 /* Is the interface operative, eg. either UP & RUNNING
449 or UP & !ZEBRA_INTERFACE_LINK_DETECTION and
450 if ptm checking is enabled, then ptm check has passed */
451 int if_is_operative(struct interface *ifp)
452 {
453 return ((ifp->flags & IFF_UP)
454 && (((ifp->flags & IFF_RUNNING)
455 && (ifp->ptm_status || !ifp->ptm_enable))
456 || !CHECK_FLAG(ifp->status,
457 ZEBRA_INTERFACE_LINKDETECTION)));
458 }
459
460 /* Is the interface operative, eg. either UP & RUNNING
461 or UP & !ZEBRA_INTERFACE_LINK_DETECTION, without PTM check */
462 int if_is_no_ptm_operative(struct interface *ifp)
463 {
464 return ((ifp->flags & IFF_UP)
465 && ((ifp->flags & IFF_RUNNING)
466 || !CHECK_FLAG(ifp->status,
467 ZEBRA_INTERFACE_LINKDETECTION)));
468 }
469
470 /* Is this loopback interface ? */
471 int if_is_loopback(struct interface *ifp)
472 {
473 /* XXX: Do this better, eg what if IFF_WHATEVER means X on platform M
474 * but Y on platform N?
475 */
476 return (ifp->flags & (IFF_LOOPBACK | IFF_NOXMIT | IFF_VIRTUAL));
477 }
478
479 /* Check interface is VRF */
480 int if_is_vrf(struct interface *ifp)
481 {
482 return CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_VRF_LOOPBACK);
483 }
484
485 bool if_is_loopback_or_vrf(struct interface *ifp)
486 {
487 if (if_is_loopback(ifp) || if_is_vrf(ifp))
488 return true;
489
490 return false;
491 }
492
493 /* Does this interface support broadcast ? */
494 int if_is_broadcast(struct interface *ifp)
495 {
496 return ifp->flags & IFF_BROADCAST;
497 }
498
499 /* Does this interface support broadcast ? */
500 int if_is_pointopoint(struct interface *ifp)
501 {
502 return ifp->flags & IFF_POINTOPOINT;
503 }
504
505 /* Does this interface support multicast ? */
506 int if_is_multicast(struct interface *ifp)
507 {
508 return ifp->flags & IFF_MULTICAST;
509 }
510
511 /* Printout flag information into log */
512 const char *if_flag_dump(unsigned long flag)
513 {
514 int separator = 0;
515 static char logbuf[BUFSIZ];
516
517 #define IFF_OUT_LOG(X, STR) \
518 if (flag & (X)) { \
519 if (separator) \
520 strlcat(logbuf, ",", BUFSIZ); \
521 else \
522 separator = 1; \
523 strlcat(logbuf, STR, BUFSIZ); \
524 }
525
526 strlcpy(logbuf, "<", BUFSIZ);
527 IFF_OUT_LOG(IFF_UP, "UP");
528 IFF_OUT_LOG(IFF_BROADCAST, "BROADCAST");
529 IFF_OUT_LOG(IFF_DEBUG, "DEBUG");
530 IFF_OUT_LOG(IFF_LOOPBACK, "LOOPBACK");
531 IFF_OUT_LOG(IFF_POINTOPOINT, "POINTOPOINT");
532 IFF_OUT_LOG(IFF_NOTRAILERS, "NOTRAILERS");
533 IFF_OUT_LOG(IFF_RUNNING, "RUNNING");
534 IFF_OUT_LOG(IFF_NOARP, "NOARP");
535 IFF_OUT_LOG(IFF_PROMISC, "PROMISC");
536 IFF_OUT_LOG(IFF_ALLMULTI, "ALLMULTI");
537 IFF_OUT_LOG(IFF_OACTIVE, "OACTIVE");
538 IFF_OUT_LOG(IFF_SIMPLEX, "SIMPLEX");
539 IFF_OUT_LOG(IFF_LINK0, "LINK0");
540 IFF_OUT_LOG(IFF_LINK1, "LINK1");
541 IFF_OUT_LOG(IFF_LINK2, "LINK2");
542 IFF_OUT_LOG(IFF_MULTICAST, "MULTICAST");
543 IFF_OUT_LOG(IFF_NOXMIT, "NOXMIT");
544 IFF_OUT_LOG(IFF_NORTEXCH, "NORTEXCH");
545 IFF_OUT_LOG(IFF_VIRTUAL, "VIRTUAL");
546 IFF_OUT_LOG(IFF_IPV4, "IPv4");
547 IFF_OUT_LOG(IFF_IPV6, "IPv6");
548
549 strlcat(logbuf, ">", BUFSIZ);
550
551 return logbuf;
552 #undef IFF_OUT_LOG
553 }
554
555 /* For debugging */
556 static void if_dump(const struct interface *ifp)
557 {
558 struct listnode *node;
559 struct connected *c __attribute__((unused));
560
561 for (ALL_LIST_ELEMENTS_RO(ifp->connected, node, c))
562 zlog_info(
563 "Interface %s vrf %u index %d metric %d mtu %d "
564 "mtu6 %d %s",
565 ifp->name, ifp->vrf_id, ifp->ifindex, ifp->metric,
566 ifp->mtu, ifp->mtu6, if_flag_dump(ifp->flags));
567 }
568
569 /* Interface printing for all interface. */
570 void if_dump_all(void)
571 {
572 struct vrf *vrf;
573 void *ifp;
574
575 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id)
576 FOR_ALL_INTERFACES (vrf, ifp)
577 if_dump(ifp);
578 }
579
580 DEFUN (interface_desc,
581 interface_desc_cmd,
582 "description LINE...",
583 "Interface specific description\n"
584 "Characters describing this interface\n")
585 {
586 int idx_line = 1;
587 VTY_DECLVAR_CONTEXT(interface, ifp);
588
589 if (ifp->desc)
590 XFREE(MTYPE_TMP, ifp->desc);
591 ifp->desc = argv_concat(argv, argc, idx_line);
592
593 return CMD_SUCCESS;
594 }
595
596 DEFUN (no_interface_desc,
597 no_interface_desc_cmd,
598 "no description",
599 NO_STR
600 "Interface specific description\n")
601 {
602 VTY_DECLVAR_CONTEXT(interface, ifp);
603
604 if (ifp->desc)
605 XFREE(MTYPE_TMP, ifp->desc);
606 ifp->desc = NULL;
607
608 return CMD_SUCCESS;
609 }
610
611 #ifdef SUNOS_5
612 /* Need to handle upgrade from SUNWzebra to Quagga. SUNWzebra created
613 * a seperate struct interface for each logical interface, so config
614 * file may be full of 'interface fooX:Y'. Solaris however does not
615 * expose logical interfaces via PF_ROUTE, so trying to track logical
616 * interfaces can be fruitless, for that reason Quagga only tracks
617 * the primary IP interface.
618 *
619 * We try accomodate SUNWzebra by:
620 * - looking up the interface name, to see whether it exists, if so
621 * its useable
622 * - for protocol daemons, this could only because zebra told us of
623 * the interface
624 * - for zebra, only because it learnt from kernel
625 * - if not:
626 * - search the name to see if it contains a sub-ipif / logical interface
627 * seperator, the ':' char. If it does:
628 * - text up to that char must be the primary name - get that name.
629 * if not:
630 * - no idea, just get the name in its entirety.
631 */
632 static struct interface *if_sunwzebra_get(const char *name, vrf_id_t vrf_id)
633 {
634 struct interface *ifp;
635 char *cp;
636
637 if ((ifp = if_lookup_by_name(name, vrf_id)) != NULL)
638 return ifp;
639
640 /* hunt the primary interface name... */
641 cp = strchr(name, ':');
642 if (cp)
643 *cp = '\0';
644
645 return if_get_by_name(name, vrf_id, 1);
646 }
647 #endif /* SUNOS_5 */
648
649 DEFUN_NOSH (interface,
650 interface_cmd,
651 "interface IFNAME [vrf NAME]",
652 "Select an interface to configure\n"
653 "Interface's name\n"
654 VRF_CMD_HELP_STR)
655 {
656 int idx_ifname = 1;
657 int idx_vrf = 3;
658 const char *ifname = argv[idx_ifname]->arg;
659 const char *vrfname =
660 (argc > 2) ? argv[idx_vrf]->arg : VRF_DEFAULT_NAME;
661
662 struct interface *ifp;
663 vrf_id_t vrf_id = VRF_DEFAULT;
664
665 if (strlen(ifname) > INTERFACE_NAMSIZ) {
666 vty_out(vty,
667 "%% Interface name %s is invalid: length exceeds "
668 "%d characters\n",
669 ifname, INTERFACE_NAMSIZ);
670 return CMD_WARNING_CONFIG_FAILED;
671 }
672
673 /*Pending: need proper vrf name based lookup/(possible creation of VRF)
674 Imagine forward reference of a vrf by name in this interface config */
675 if (vrfname)
676 VRF_GET_ID(vrf_id, vrfname, false);
677
678 #ifdef SUNOS_5
679 ifp = if_sunwzebra_get(ifname, vrf_id);
680 #else
681 ifp = if_get_by_name(ifname, vrf_id, 1);
682 #endif /* SUNOS_5 */
683
684 if (!ifp) {
685 vty_out(vty, "%% interface %s not in %s vrf\n", ifname,
686 vrfname);
687 return CMD_WARNING_CONFIG_FAILED;
688 }
689 VTY_PUSH_CONTEXT(INTERFACE_NODE, ifp);
690
691 return CMD_SUCCESS;
692 }
693
694 DEFUN (no_interface,
695 no_interface_cmd,
696 "no interface IFNAME [vrf NAME]",
697 NO_STR
698 "Delete a pseudo interface's configuration\n"
699 "Interface's name\n"
700 VRF_CMD_HELP_STR)
701 {
702 int idx_vrf = 4;
703 const char *ifname = argv[2]->arg;
704 const char *vrfname = (argc > 3) ? argv[idx_vrf]->arg : NULL;
705
706 // deleting interface
707 struct interface *ifp;
708 vrf_id_t vrf_id = VRF_DEFAULT;
709
710 if (argc > 3)
711 VRF_GET_ID(vrf_id, vrfname, false);
712
713 ifp = if_lookup_by_name(ifname, vrf_id);
714
715 if (ifp == NULL) {
716 vty_out(vty, "%% Interface %s does not exist\n", ifname);
717 return CMD_WARNING_CONFIG_FAILED;
718 }
719
720 if (CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_ACTIVE)) {
721 vty_out(vty, "%% Only inactive interfaces can be deleted\n");
722 return CMD_WARNING_CONFIG_FAILED;
723 }
724
725 if_delete(ifp);
726
727 return CMD_SUCCESS;
728 }
729
730 static void if_autocomplete(vector comps, struct cmd_token *token)
731 {
732 struct interface *ifp;
733 struct vrf *vrf = NULL;
734
735 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
736 FOR_ALL_INTERFACES (vrf, ifp) {
737 vector_set(comps, XSTRDUP(MTYPE_COMPLETION, ifp->name));
738 }
739 }
740 }
741
742 static const struct cmd_variable_handler if_var_handlers[] = {
743 {/* "interface NAME" */
744 .varname = "interface",
745 .completions = if_autocomplete},
746 {.tokenname = "IFNAME", .completions = if_autocomplete},
747 {.tokenname = "INTERFACE", .completions = if_autocomplete},
748 {.completions = NULL}};
749
750 void if_cmd_init(void)
751 {
752 cmd_variable_handler_register(if_var_handlers);
753
754 install_element(CONFIG_NODE, &interface_cmd);
755 install_element(CONFIG_NODE, &no_interface_cmd);
756
757 install_default(INTERFACE_NODE);
758 install_element(INTERFACE_NODE, &interface_desc_cmd);
759 install_element(INTERFACE_NODE, &no_interface_desc_cmd);
760 }
761
762 #if 0
763 /* For debug purpose. */
764 DEFUN (show_address,
765 show_address_cmd,
766 "show address [vrf NAME]",
767 SHOW_STR
768 "address\n"
769 VRF_CMD_HELP_STR)
770 {
771 int idx_vrf = 3;
772 struct listnode *node;
773 struct interface *ifp;
774 struct connected *ifc;
775 struct prefix *p;
776 vrf_id_t vrf_id = VRF_DEFAULT;
777
778 if (argc > 2)
779 VRF_GET_ID (vrf_id, argv[idx_vrf]->arg);
780
781 FOR_ALL_INTERFACES (vrf, ifp)
782 {
783 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, ifc))
784 {
785 p = ifc->address;
786
787 if (p->family == AF_INET)
788 vty_out (vty, "%s/%d\n", inet_ntoa (p->u.prefix4), p->prefixlen);
789 }
790 }
791 return CMD_SUCCESS;
792 }
793
794 DEFUN (show_address_vrf_all,
795 show_address_vrf_all_cmd,
796 "show address vrf all",
797 SHOW_STR
798 "address\n"
799 VRF_ALL_CMD_HELP_STR)
800 {
801 struct vrf *vrf;
802 struct listnode *node;
803 struct interface *ifp;
804 struct connected *ifc;
805 struct prefix *p;
806
807 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name)
808 {
809 if (RB_EMPTY (if_name_head, &vrf->ifaces_by_name))
810 continue;
811
812 vty_out (vty, "\nVRF %u\n\n", vrf->vrf_id);
813
814 FOR_ALL_INTERFACES (vrf, ifp)
815 {
816 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, ifc))
817 {
818 p = ifc->address;
819
820 if (p->family == AF_INET)
821 vty_out (vty, "%s/%d\n", inet_ntoa (p->u.prefix4), p->prefixlen);
822 }
823 }
824 }
825 return CMD_SUCCESS;
826 }
827 #endif
828
829 /* Allocate connected structure. */
830 struct connected *connected_new(void)
831 {
832 return XCALLOC(MTYPE_CONNECTED, sizeof(struct connected));
833 }
834
835 /* Allocate nbr connected structure. */
836 struct nbr_connected *nbr_connected_new(void)
837 {
838 return XCALLOC(MTYPE_NBR_CONNECTED, sizeof(struct nbr_connected));
839 }
840
841 /* Free connected structure. */
842 void connected_free(struct connected *connected)
843 {
844 if (connected->address)
845 prefix_free(connected->address);
846
847 if (connected->destination)
848 prefix_free(connected->destination);
849
850 if (connected->label)
851 XFREE(MTYPE_CONNECTED_LABEL, connected->label);
852
853 XFREE(MTYPE_CONNECTED, connected);
854 }
855
856 /* Free nbr connected structure. */
857 void nbr_connected_free(struct nbr_connected *connected)
858 {
859 if (connected->address)
860 prefix_free(connected->address);
861
862 XFREE(MTYPE_NBR_CONNECTED, connected);
863 }
864
865 /* If same interface nbr address already exists... */
866 struct nbr_connected *nbr_connected_check(struct interface *ifp,
867 struct prefix *p)
868 {
869 struct nbr_connected *ifc;
870 struct listnode *node;
871
872 for (ALL_LIST_ELEMENTS_RO(ifp->nbr_connected, node, ifc))
873 if (prefix_same(ifc->address, p))
874 return ifc;
875
876 return NULL;
877 }
878
879 /* Print if_addr structure. */
880 static void __attribute__((unused))
881 connected_log(struct connected *connected, char *str)
882 {
883 struct prefix *p;
884 struct interface *ifp;
885 char logbuf[BUFSIZ];
886 char buf[BUFSIZ];
887
888 ifp = connected->ifp;
889 p = connected->address;
890
891 snprintf(logbuf, BUFSIZ, "%s interface %s vrf %u %s %s/%d ", str,
892 ifp->name, ifp->vrf_id, prefix_family_str(p),
893 inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ), p->prefixlen);
894
895 p = connected->destination;
896 if (p) {
897 strncat(logbuf, inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ),
898 BUFSIZ - strlen(logbuf));
899 }
900 zlog_info("%s", logbuf);
901 }
902
903 /* Print if_addr structure. */
904 static void __attribute__((unused))
905 nbr_connected_log(struct nbr_connected *connected, char *str)
906 {
907 struct prefix *p;
908 struct interface *ifp;
909 char logbuf[BUFSIZ];
910 char buf[BUFSIZ];
911
912 ifp = connected->ifp;
913 p = connected->address;
914
915 snprintf(logbuf, BUFSIZ, "%s interface %s %s %s/%d ", str, ifp->name,
916 prefix_family_str(p),
917 inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ), p->prefixlen);
918
919 zlog_info("%s", logbuf);
920 }
921
922 /* If two connected address has same prefix return 1. */
923 static int connected_same_prefix(struct prefix *p1, struct prefix *p2)
924 {
925 if (p1->family == p2->family) {
926 if (p1->family == AF_INET
927 && IPV4_ADDR_SAME(&p1->u.prefix4, &p2->u.prefix4))
928 return 1;
929 if (p1->family == AF_INET6
930 && IPV6_ADDR_SAME(&p1->u.prefix6, &p2->u.prefix6))
931 return 1;
932 }
933 return 0;
934 }
935
936 struct connected *connected_lookup_prefix_exact(struct interface *ifp,
937 struct prefix *p)
938 {
939 struct listnode *node;
940 struct listnode *next;
941 struct connected *ifc;
942
943 for (node = listhead(ifp->connected); node; node = next) {
944 ifc = listgetdata(node);
945 next = node->next;
946
947 if (connected_same_prefix(ifc->address, p))
948 return ifc;
949 }
950 return NULL;
951 }
952
953 struct connected *connected_delete_by_prefix(struct interface *ifp,
954 struct prefix *p)
955 {
956 struct listnode *node;
957 struct listnode *next;
958 struct connected *ifc;
959
960 /* In case of same prefix come, replace it with new one. */
961 for (node = listhead(ifp->connected); node; node = next) {
962 ifc = listgetdata(node);
963 next = node->next;
964
965 if (connected_same_prefix(ifc->address, p)) {
966 listnode_delete(ifp->connected, ifc);
967 return ifc;
968 }
969 }
970 return NULL;
971 }
972
973 /* Find the address on our side that will be used when packets
974 are sent to dst. */
975 struct connected *connected_lookup_prefix(struct interface *ifp,
976 struct prefix *addr)
977 {
978 struct listnode *cnode;
979 struct connected *c;
980 struct connected *match;
981
982 match = NULL;
983
984 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
985 if (c->address && (c->address->family == addr->family)
986 && prefix_match(CONNECTED_PREFIX(c), addr)
987 && (!match
988 || (c->address->prefixlen > match->address->prefixlen)))
989 match = c;
990 }
991 return match;
992 }
993
994 struct connected *connected_add_by_prefix(struct interface *ifp,
995 struct prefix *p,
996 struct prefix *destination)
997 {
998 struct connected *ifc;
999
1000 /* Allocate new connected address. */
1001 ifc = connected_new();
1002 ifc->ifp = ifp;
1003
1004 /* Fetch interface address */
1005 ifc->address = prefix_new();
1006 memcpy(ifc->address, p, sizeof(struct prefix));
1007
1008 /* Fetch dest address */
1009 if (destination) {
1010 ifc->destination = prefix_new();
1011 memcpy(ifc->destination, destination, sizeof(struct prefix));
1012 }
1013
1014 /* Add connected address to the interface. */
1015 listnode_add(ifp->connected, ifc);
1016 return ifc;
1017 }
1018
1019 #if 0 /* this route_table of struct connected's is unused \
1020 * however, it would be good to use a route_table rather than \
1021 * a list.. \
1022 */
1023 /* Interface looking up by interface's address. */
1024 /* Interface's IPv4 address reverse lookup table. */
1025 struct route_table *ifaddr_ipv4_table;
1026 /* struct route_table *ifaddr_ipv6_table; */
1027
1028 static void
1029 ifaddr_ipv4_add (struct in_addr *ifaddr, struct interface *ifp)
1030 {
1031 struct route_node *rn;
1032 struct prefix_ipv4 p;
1033
1034 p.family = AF_INET;
1035 p.prefixlen = IPV4_MAX_PREFIXLEN;
1036 p.prefix = *ifaddr;
1037
1038 rn = route_node_get (ifaddr_ipv4_table, (struct prefix *) &p);
1039 if (rn)
1040 {
1041 route_unlock_node (rn);
1042 zlog_info ("ifaddr_ipv4_add(): address %s is already added",
1043 inet_ntoa (*ifaddr));
1044 return;
1045 }
1046 rn->info = ifp;
1047 }
1048
1049 static void
1050 ifaddr_ipv4_delete (struct in_addr *ifaddr, struct interface *ifp)
1051 {
1052 struct route_node *rn;
1053 struct prefix_ipv4 p;
1054
1055 p.family = AF_INET;
1056 p.prefixlen = IPV4_MAX_PREFIXLEN;
1057 p.prefix = *ifaddr;
1058
1059 rn = route_node_lookup (ifaddr_ipv4_table, (struct prefix *) &p);
1060 if (! rn)
1061 {
1062 zlog_info ("ifaddr_ipv4_delete(): can't find address %s",
1063 inet_ntoa (*ifaddr));
1064 return;
1065 }
1066 rn->info = NULL;
1067 route_unlock_node (rn);
1068 route_unlock_node (rn);
1069 }
1070
1071 /* Lookup interface by interface's IP address or interface index. */
1072 static struct interface *
1073 ifaddr_ipv4_lookup (struct in_addr *addr, ifindex_t ifindex)
1074 {
1075 struct prefix_ipv4 p;
1076 struct route_node *rn;
1077 struct interface *ifp;
1078
1079 if (addr)
1080 {
1081 p.family = AF_INET;
1082 p.prefixlen = IPV4_MAX_PREFIXLEN;
1083 p.prefix = *addr;
1084
1085 rn = route_node_lookup (ifaddr_ipv4_table, (struct prefix *) &p);
1086 if (! rn)
1087 return NULL;
1088
1089 ifp = rn->info;
1090 route_unlock_node (rn);
1091 return ifp;
1092 }
1093 else
1094 return if_lookup_by_index(ifindex, VRF_DEFAULT);
1095 }
1096 #endif /* ifaddr_ipv4_table */
1097
1098 void if_terminate(struct vrf *vrf)
1099 {
1100 struct interface *ifp;
1101
1102 while (!RB_EMPTY(if_name_head, &vrf->ifaces_by_name)) {
1103 ifp = RB_ROOT(if_name_head, &vrf->ifaces_by_name);
1104
1105 if (ifp->node) {
1106 ifp->node->info = NULL;
1107 route_unlock_node(ifp->node);
1108 }
1109 if_delete(ifp);
1110 }
1111 }
1112
1113 const char *if_link_type_str(enum zebra_link_type llt)
1114 {
1115 switch (llt) {
1116 #define llts(T,S) case (T): return (S)
1117 llts(ZEBRA_LLT_UNKNOWN, "Unknown");
1118 llts(ZEBRA_LLT_ETHER, "Ethernet");
1119 llts(ZEBRA_LLT_EETHER, "Experimental Ethernet");
1120 llts(ZEBRA_LLT_AX25, "AX.25 Level 2");
1121 llts(ZEBRA_LLT_PRONET, "PROnet token ring");
1122 llts(ZEBRA_LLT_IEEE802, "IEEE 802.2 Ethernet/TR/TB");
1123 llts(ZEBRA_LLT_ARCNET, "ARCnet");
1124 llts(ZEBRA_LLT_APPLETLK, "AppleTalk");
1125 llts(ZEBRA_LLT_DLCI, "Frame Relay DLCI");
1126 llts(ZEBRA_LLT_ATM, "ATM");
1127 llts(ZEBRA_LLT_METRICOM, "Metricom STRIP");
1128 llts(ZEBRA_LLT_IEEE1394, "IEEE 1394 IPv4");
1129 llts(ZEBRA_LLT_EUI64, "EUI-64");
1130 llts(ZEBRA_LLT_INFINIBAND, "InfiniBand");
1131 llts(ZEBRA_LLT_SLIP, "SLIP");
1132 llts(ZEBRA_LLT_CSLIP, "Compressed SLIP");
1133 llts(ZEBRA_LLT_SLIP6, "SLIPv6");
1134 llts(ZEBRA_LLT_CSLIP6, "Compressed SLIPv6");
1135 llts(ZEBRA_LLT_ROSE, "ROSE packet radio");
1136 llts(ZEBRA_LLT_X25, "CCITT X.25");
1137 llts(ZEBRA_LLT_PPP, "PPP");
1138 llts(ZEBRA_LLT_CHDLC, "Cisco HDLC");
1139 llts(ZEBRA_LLT_RAWHDLC, "Raw HDLC");
1140 llts(ZEBRA_LLT_LAPB, "LAPB");
1141 llts(ZEBRA_LLT_IPIP, "IPIP Tunnel");
1142 llts(ZEBRA_LLT_IPIP6, "IPIP6 Tunnel");
1143 llts(ZEBRA_LLT_FRAD, "FRAD");
1144 llts(ZEBRA_LLT_SKIP, "SKIP vif");
1145 llts(ZEBRA_LLT_LOOPBACK, "Loopback");
1146 llts(ZEBRA_LLT_LOCALTLK, "Localtalk");
1147 llts(ZEBRA_LLT_FDDI, "FDDI");
1148 llts(ZEBRA_LLT_SIT, "IPv6-in-IPv4 SIT");
1149 llts(ZEBRA_LLT_IPDDP, "IP-in-DDP tunnel");
1150 llts(ZEBRA_LLT_IPGRE, "GRE over IP");
1151 llts(ZEBRA_LLT_PIMREG, "PIMSM registration");
1152 llts(ZEBRA_LLT_HIPPI, "HiPPI");
1153 llts(ZEBRA_LLT_IRDA, "IrDA");
1154 llts(ZEBRA_LLT_FCPP, "Fibre-Channel PtP");
1155 llts(ZEBRA_LLT_FCAL, "Fibre-Channel Arbitrated Loop");
1156 llts(ZEBRA_LLT_FCPL, "Fibre-Channel Public Loop");
1157 llts(ZEBRA_LLT_FCFABRIC, "Fibre-Channel Fabric");
1158 llts(ZEBRA_LLT_IEEE802_TR, "IEEE 802.2 Token Ring");
1159 llts(ZEBRA_LLT_IEEE80211, "IEEE 802.11");
1160 llts(ZEBRA_LLT_IEEE80211_RADIOTAP, "IEEE 802.11 Radiotap");
1161 llts(ZEBRA_LLT_IEEE802154, "IEEE 802.15.4");
1162 llts(ZEBRA_LLT_IEEE802154_PHY, "IEEE 802.15.4 Phy");
1163 default:
1164 flog_err(EC_LIB_DEVELOPMENT, "Unknown value %d", llt);
1165 return "Unknown type!";
1166 #undef llts
1167 }
1168 return NULL;
1169 }
1170
1171 struct if_link_params *if_link_params_get(struct interface *ifp)
1172 {
1173 int i;
1174
1175 if (ifp->link_params != NULL)
1176 return ifp->link_params;
1177
1178 struct if_link_params *iflp =
1179 XCALLOC(MTYPE_IF_LINK_PARAMS, sizeof(struct if_link_params));
1180 if (iflp == NULL)
1181 return NULL;
1182
1183 /* Set TE metric equal to standard metric */
1184 iflp->te_metric = ifp->metric;
1185
1186 /* Compute default bandwidth based on interface */
1187 iflp->default_bw =
1188 ((ifp->bandwidth ? ifp->bandwidth : DEFAULT_BANDWIDTH)
1189 * TE_KILO_BIT / TE_BYTE);
1190
1191 /* Set Max, Reservable and Unreserved Bandwidth */
1192 iflp->max_bw = iflp->default_bw;
1193 iflp->max_rsv_bw = iflp->default_bw;
1194 for (i = 0; i < MAX_CLASS_TYPE; i++)
1195 iflp->unrsv_bw[i] = iflp->default_bw;
1196
1197 /* Update Link parameters status */
1198 iflp->lp_status =
1199 LP_TE_METRIC | LP_MAX_BW | LP_MAX_RSV_BW | LP_UNRSV_BW;
1200
1201 /* Finally attach newly created Link Parameters */
1202 ifp->link_params = iflp;
1203
1204 return iflp;
1205 }
1206
1207 void if_link_params_free(struct interface *ifp)
1208 {
1209 if (ifp->link_params == NULL)
1210 return;
1211 XFREE(MTYPE_IF_LINK_PARAMS, ifp->link_params);
1212 ifp->link_params = NULL;
1213 }