]> git.proxmox.com Git - mirror_frr.git/blame - lib/if.c
lib: Adding GR capabilites encode and decode.
[mirror_frr.git] / lib / if.c
CommitLineData
d62a17ae 1/*
718e3744 2 * Interface functions.
3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
896014f4 6 *
718e3744 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 *
896014f4
DL
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
718e3744 20 */
21
22#include <zebra.h>
23
24#include "linklist.h"
25#include "vector.h"
4d43f68a 26#include "lib_errors.h"
718e3744 27#include "vty.h"
28#include "command.h"
8736158a 29#include "vrf.h"
718e3744 30#include "if.h"
31#include "sockunion.h"
32#include "prefix.h"
718e3744 33#include "memory.h"
34#include "table.h"
35#include "buffer.h"
718e3744 36#include "log.h"
8f90d89b
RW
37#include "northbound_cli.h"
38#ifndef VTYSH_EXTRACT_PL
39#include "lib/if_clippy.c"
40#endif
6b0655a2 41
eaf58ba9 42DEFINE_MTYPE_STATIC(LIB, IF, "Interface")
d62a17ae 43DEFINE_MTYPE_STATIC(LIB, CONNECTED, "Connected")
44DEFINE_MTYPE_STATIC(LIB, NBR_CONNECTED, "Neighbor Connected")
45DEFINE_MTYPE(LIB, CONNECTED_LABEL, "Connected interface label")
46DEFINE_MTYPE_STATIC(LIB, IF_LINK_PARAMS, "Informational Link Parameters")
4a1ab8e4 47
47b474b5
DD
48static struct interface *if_lookup_by_ifindex(ifindex_t ifindex,
49 vrf_id_t vrf_id);
f4e14fdb 50static int if_cmp_func(const struct interface *, const struct interface *);
ff880b78
RW
51static int if_cmp_index_func(const struct interface *ifp1,
52 const struct interface *ifp2);
f4e14fdb 53RB_GENERATE(if_name_head, interface, name_entry, if_cmp_func);
ff880b78 54RB_GENERATE(if_index_head, interface, index_entry, if_cmp_index_func);
f4e14fdb 55
e80e7cce
DL
56DEFINE_QOBJ_TYPE(interface)
57
996c9314
LB
58DEFINE_HOOK(if_add, (struct interface * ifp), (ifp))
59DEFINE_KOOH(if_del, (struct interface * ifp), (ifp))
ce19a04a 60
1b3e9a21 61static struct interface_master{
138c5a74
DS
62 int (*create_hook)(struct interface *ifp);
63 int (*up_hook)(struct interface *ifp);
64 int (*down_hook)(struct interface *ifp);
65 int (*destroy_hook)(struct interface *ifp);
66} ifp_master = { 0, };
67
3a0391a9 68/* Compare interface names, returning an integer greater than, equal to, or
69 * less than 0, (following the strcmp convention), according to the
70 * relationship between ifp1 and ifp2. Interface names consist of an
71 * alphabetic prefix and a numeric suffix. The primary sort key is
72 * lexicographic by name, and then numeric by number. No number sorts
73 * before all numbers. Examples: de0 < de1, de100 < fxp0 < xl0, devpty <
74 * devpty0, de0 < del0
d62a17ae 75 */
36de6e0e 76int if_cmp_name_func(const char *p1, const char *p2)
106d2fd5 77{
d62a17ae 78 unsigned int l1, l2;
79 long int x1, x2;
80 int res;
81
82 while (*p1 && *p2) {
83 /* look up to any number */
84 l1 = strcspn(p1, "0123456789");
85 l2 = strcspn(p2, "0123456789");
86
87 /* name lengths are different -> compare names */
88 if (l1 != l2)
89 return (strcmp(p1, p2));
90
91 /* Note that this relies on all numbers being less than all
92 * letters, so
93 * that de0 < del0.
94 */
95 res = strncmp(p1, p2, l1);
96
97 /* names are different -> compare them */
98 if (res)
99 return res;
100
101 /* with identical name part, go to numeric part */
102 p1 += l1;
103 p2 += l1;
104
c9cbbb40
RW
105 if (!*p1 && !*p2)
106 return 0;
d62a17ae 107 if (!*p1)
108 return -1;
109 if (!*p2)
110 return 1;
111
36de6e0e
A
112 x1 = strtol(p1, (char **)&p1, 10);
113 x2 = strtol(p2, (char **)&p2, 10);
d62a17ae 114
115 /* let's compare numbers now */
116 if (x1 < x2)
117 return -1;
118 if (x1 > x2)
119 return 1;
120
121 /* numbers were equal, lets do it again..
122 (it happens with name like "eth123.456:789") */
123 }
124 if (*p1)
125 return 1;
126 if (*p2)
127 return -1;
128 return 0;
106d2fd5 129}
130
f4e14fdb
RW
131static int if_cmp_func(const struct interface *ifp1,
132 const struct interface *ifp2)
974fc9d2 133{
36de6e0e 134 return if_cmp_name_func(ifp1->name, ifp2->name);
974fc9d2
DS
135}
136
ff880b78
RW
137static int if_cmp_index_func(const struct interface *ifp1,
138 const struct interface *ifp2)
139{
e33d7b6a
QY
140 if (ifp1->ifindex == ifp2->ifindex)
141 return 0;
142 else if (ifp1->ifindex > ifp2->ifindex)
143 return 1;
144 else
145 return -1;
ff880b78
RW
146}
147
721c0857
DS
148static void ifp_connected_free(void *arg)
149{
150 struct connected *c = arg;
151
152 connected_free(&c);
153}
154
718e3744 155/* Create new interface structure. */
d5c65bf1 156static struct interface *if_new(vrf_id_t vrf_id)
718e3744 157{
d62a17ae 158 struct interface *ifp;
d62a17ae 159
160 ifp = XCALLOC(MTYPE_IF, sizeof(struct interface));
ea7ec261 161
d5c65bf1
SW
162 ifp->ifindex = IFINDEX_INTERNAL;
163 ifp->name[0] = '\0';
ea7ec261 164
d5c65bf1 165 ifp->vrf_id = vrf_id;
ea7ec261 166
d62a17ae 167 ifp->connected = list_new();
721c0857 168 ifp->connected->del = ifp_connected_free;
d62a17ae 169
170 ifp->nbr_connected = list_new();
171 ifp->nbr_connected->del = (void (*)(void *))nbr_connected_free;
172
173 /* Enable Link-detection by default */
174 SET_FLAG(ifp->status, ZEBRA_INTERFACE_LINKDETECTION);
175
176 QOBJ_REG(ifp, interface);
d62a17ae 177 return ifp;
718e3744 178}
179
ef7bd2a3
DS
180void if_new_via_zapi(struct interface *ifp)
181{
182 if (ifp_master.create_hook)
183 (*ifp_master.create_hook)(ifp);
184}
185
3c3c3252
DS
186void if_destroy_via_zapi(struct interface *ifp)
187{
188 if (ifp_master.destroy_hook)
189 (*ifp_master.destroy_hook)(ifp);
190
191 if_set_index(ifp, IFINDEX_INTERNAL);
26f8f6fe 192 if (!ifp->configured)
f609709a 193 if_delete(&ifp);
3c3c3252
DS
194}
195
ddbf3e60
DS
196void if_up_via_zapi(struct interface *ifp)
197{
198 if (ifp_master.up_hook)
199 (*ifp_master.up_hook)(ifp);
200}
201
b0b69e59
DS
202void if_down_via_zapi(struct interface *ifp)
203{
204 if (ifp_master.down_hook)
205 (*ifp_master.down_hook)(ifp);
206}
207
d5c65bf1 208struct interface *if_create_name(const char *name, vrf_id_t vrf_id)
ea7ec261 209{
d5c65bf1
SW
210 struct interface *ifp;
211
212 ifp = if_new(vrf_id);
213
214 if_set_name(ifp, name);
215
216 hook_call(if_add, ifp);
217 return ifp;
ea7ec261
DD
218}
219
220struct interface *if_create_ifindex(ifindex_t ifindex, vrf_id_t vrf_id)
221{
d5c65bf1
SW
222 struct interface *ifp;
223
224 ifp = if_new(vrf_id);
225
226 if_set_index(ifp, ifindex);
227
228 hook_call(if_add, ifp);
229 return ifp;
ea7ec261
DD
230}
231
a36898e7
DS
232/* Create new interface structure. */
233void if_update_to_new_vrf(struct interface *ifp, vrf_id_t vrf_id)
f93e3f69 234{
a36898e7 235 struct vrf *old_vrf, *vrf;
d62a17ae 236
237 /* remove interface from old master vrf list */
a36898e7 238 old_vrf = vrf_lookup_by_id(ifp->vrf_id);
8f90d89b 239 if (old_vrf) {
9685b1e4
SW
240 if (ifp->name[0] != '\0')
241 IFNAME_RB_REMOVE(old_vrf, ifp);
242
ff880b78 243 if (ifp->ifindex != IFINDEX_INTERNAL)
8f90d89b 244 IFINDEX_RB_REMOVE(old_vrf, ifp);
ff880b78 245 }
d62a17ae 246
a36898e7
DS
247 ifp->vrf_id = vrf_id;
248 vrf = vrf_get(ifp->vrf_id, NULL);
ff880b78 249
9685b1e4
SW
250 if (ifp->name[0] != '\0')
251 IFNAME_RB_INSERT(vrf, ifp);
252
ff880b78
RW
253 if (ifp->ifindex != IFINDEX_INTERNAL)
254 IFINDEX_RB_INSERT(vrf, ifp);
8f90d89b
RW
255
256 /*
257 * HACK: Change the interface VRF in the running configuration directly,
258 * bypassing the northbound layer. This is necessary to avoid deleting
259 * the interface and readding it in the new VRF, which would have
260 * several implications.
261 */
262 if (yang_module_find("frr-interface")) {
263 struct lyd_node *if_dnode;
264
8685be73
RW
265 if_dnode = yang_dnode_get(
266 running_config->dnode,
267 "/frr-interface:lib/interface[name='%s'][vrf='%s']/vrf",
268 ifp->name, old_vrf->name);
269 if (if_dnode) {
ced28861 270 nb_running_unset_entry(if_dnode->parent);
8685be73 271 yang_dnode_change_leaf(if_dnode, vrf->name);
ced28861 272 nb_running_set_entry(if_dnode->parent, ifp);
8685be73 273 running_config->version++;
8f90d89b
RW
274 }
275 }
f93e3f69
DS
276}
277
8685be73 278
d2fc8896 279/* Delete interface structure. */
d62a17ae 280void if_delete_retain(struct interface *ifp)
718e3744 281{
996c9314 282 hook_call(if_del, ifp);
d62a17ae 283 QOBJ_UNREG(ifp);
e80e7cce 284
d62a17ae 285 /* Free connected address list */
286 list_delete_all_node(ifp->connected);
a80beece 287
d62a17ae 288 /* Free connected nbr address list */
289 list_delete_all_node(ifp->nbr_connected);
d2fc8896 290}
291
292/* Delete and free interface structure. */
f609709a 293void if_delete(struct interface **ifp)
d2fc8896 294{
f609709a 295 struct interface *ptr = *ifp;
a36898e7 296 struct vrf *vrf;
5b8524f5 297
f609709a 298 vrf = vrf_lookup_by_id(ptr->vrf_id);
5b8524f5 299 assert(vrf);
f4e14fdb 300
f609709a
DS
301 IFNAME_RB_REMOVE(vrf, ptr);
302 if (ptr->ifindex != IFINDEX_INTERNAL)
303 IFINDEX_RB_REMOVE(vrf, ptr);
d2fc8896 304
f609709a 305 if_delete_retain(ptr);
718e3744 306
f609709a
DS
307 list_delete(&ptr->connected);
308 list_delete(&ptr->nbr_connected);
2dd04c5d 309
f609709a 310 if_link_params_free(ptr);
16f1b9ee 311
f609709a 312 XFREE(MTYPE_TMP, ptr->desc);
c7974c0f 313
f609709a
DS
314 XFREE(MTYPE_IF, ptr);
315 *ifp = NULL;
718e3744 316}
317
47b474b5
DD
318/* Used only internally to check within VRF only */
319static struct interface *if_lookup_by_ifindex(ifindex_t ifindex,
320 vrf_id_t vrf_id)
718e3744 321{
5b8524f5 322 struct vrf *vrf;
ff880b78 323 struct interface if_tmp;
f4e14fdb 324
5b8524f5
RW
325 vrf = vrf_lookup_by_id(vrf_id);
326 if (!vrf)
327 return NULL;
328
ff880b78
RW
329 if_tmp.ifindex = ifindex;
330 return RB_FIND(if_index_head, &vrf->ifaces_by_index, &if_tmp);
718e3744 331}
332
47b474b5
DD
333/* Interface existance check by index. */
334struct interface *if_lookup_by_index(ifindex_t ifindex, vrf_id_t vrf_id)
335{
336 switch (vrf_get_backend()) {
337 case VRF_BACKEND_UNKNOWN:
338 case VRF_BACKEND_NETNS:
339 return(if_lookup_by_ifindex(ifindex, vrf_id));
340 case VRF_BACKEND_VRF_LITE:
341 return(if_lookup_by_index_all_vrf(ifindex));
342 }
343 return NULL;
344}
345
d62a17ae 346const char *ifindex2ifname(ifindex_t ifindex, vrf_id_t vrf_id)
718e3744 347{
d62a17ae 348 struct interface *ifp;
718e3744 349
d62a17ae 350 return ((ifp = if_lookup_by_index(ifindex, vrf_id)) != NULL)
351 ? ifp->name
352 : "unknown";
d2fc8896 353}
354
d62a17ae 355ifindex_t ifname2ifindex(const char *name, vrf_id_t vrf_id)
d2fc8896 356{
d62a17ae 357 struct interface *ifp;
d2fc8896 358
a36898e7 359 return ((ifp = if_lookup_by_name(name, vrf_id)) != NULL)
d62a17ae 360 ? ifp->ifindex
361 : IFINDEX_INTERNAL;
718e3744 362}
363
364/* Interface existance check by interface name. */
a36898e7 365struct interface *if_lookup_by_name(const char *name, vrf_id_t vrf_id)
718e3744 366{
a36898e7 367 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
f4e14fdb 368 struct interface if_tmp;
d62a17ae 369
5b8524f5
RW
370 if (!vrf || !name
371 || strnlen(name, INTERFACE_NAMSIZ) == INTERFACE_NAMSIZ)
bcc24579 372 return NULL;
f8962871 373
f4e14fdb
RW
374 strlcpy(if_tmp.name, name, sizeof(if_tmp.name));
375 return RB_FIND(if_name_head, &vrf->ifaces_by_name, &if_tmp);
f8962871
DS
376}
377
bcc24579 378struct interface *if_lookup_by_name_all_vrf(const char *name)
a349198f 379{
bcc24579 380 struct vrf *vrf;
d62a17ae 381 struct interface *ifp;
a349198f 382
bcc24579 383 if (!name || strnlen(name, INTERFACE_NAMSIZ) == INTERFACE_NAMSIZ)
d62a17ae 384 return NULL;
a349198f 385
bcc24579 386 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
a36898e7 387 ifp = if_lookup_by_name(name, vrf->vrf_id);
bcc24579 388 if (ifp)
d62a17ae 389 return ifp;
390 }
bcc24579 391
d62a17ae 392 return NULL;
a349198f 393}
394
ea7ec261
DD
395struct interface *if_lookup_by_index_all_vrf(ifindex_t ifindex)
396{
397 struct vrf *vrf;
398 struct interface *ifp;
399
400 if (ifindex == IFINDEX_INTERNAL)
401 return NULL;
402
403 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
47b474b5 404 ifp = if_lookup_by_ifindex(ifindex, vrf->vrf_id);
ea7ec261
DD
405 if (ifp)
406 return ifp;
407 }
408
409 return NULL;
410}
411
3923b6e3 412/* Lookup interface by IP address. */
d62a17ae 413struct interface *if_lookup_exact_address(void *src, int family,
414 vrf_id_t vrf_id)
718e3744 415{
f4e14fdb 416 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
d62a17ae 417 struct listnode *cnode;
418 struct interface *ifp;
419 struct prefix *p;
420 struct connected *c;
421
451fda4f 422 FOR_ALL_INTERFACES (vrf, ifp) {
d62a17ae 423 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
424 p = c->address;
425
426 if (p && (p->family == family)) {
427 if (family == AF_INET) {
428 if (IPV4_ADDR_SAME(
429 &p->u.prefix4,
430 (struct in_addr *)src))
431 return ifp;
432 } else if (family == AF_INET6) {
433 if (IPV6_ADDR_SAME(
434 &p->u.prefix6,
435 (struct in6_addr *)src))
436 return ifp;
437 }
438 }
0aabccc0 439 }
718e3744 440 }
d62a17ae 441 return NULL;
718e3744 442}
443
3923b6e3 444/* Lookup interface by IP address. */
d62a17ae 445struct connected *if_lookup_address(void *matchaddr, int family,
446 vrf_id_t vrf_id)
718e3744 447{
f4e14fdb 448 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
d62a17ae 449 struct prefix addr;
450 int bestlen = 0;
451 struct listnode *cnode;
452 struct interface *ifp;
453 struct connected *c;
454 struct connected *match;
455
456 if (family == AF_INET) {
457 addr.family = AF_INET;
458 addr.u.prefix4 = *((struct in_addr *)matchaddr);
459 addr.prefixlen = IPV4_MAX_BITLEN;
460 } else if (family == AF_INET6) {
461 addr.family = AF_INET6;
462 addr.u.prefix6 = *((struct in6_addr *)matchaddr);
463 addr.prefixlen = IPV6_MAX_BITLEN;
464 }
718e3744 465
d62a17ae 466 match = NULL;
718e3744 467
451fda4f 468 FOR_ALL_INTERFACES (vrf, ifp) {
d62a17ae 469 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
470 if (c->address && (c->address->family == AF_INET)
471 && prefix_match(CONNECTED_PREFIX(c), &addr)
472 && (c->address->prefixlen > bestlen)) {
473 bestlen = c->address->prefixlen;
474 match = c;
475 }
476 }
718e3744 477 }
d62a17ae 478 return match;
718e3744 479}
480
b81e97a8 481/* Lookup interface by prefix */
d62a17ae 482struct interface *if_lookup_prefix(struct prefix *prefix, vrf_id_t vrf_id)
b81e97a8 483{
f4e14fdb 484 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
d62a17ae 485 struct listnode *cnode;
486 struct interface *ifp;
487 struct connected *c;
488
451fda4f 489 FOR_ALL_INTERFACES (vrf, ifp) {
d62a17ae 490 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
491 if (prefix_cmp(c->address, prefix) == 0) {
492 return ifp;
493 }
494 }
495 }
496 return NULL;
b81e97a8
DD
497}
498
dad18a2f
QY
499size_t if_lookup_by_hwaddr(const uint8_t *hw_addr, size_t addrsz,
500 struct interface ***result, vrf_id_t vrf_id)
501{
502 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
503
504 struct list *rs = list_new();
505 struct interface *ifp;
506
507 FOR_ALL_INTERFACES (vrf, ifp) {
508 if (ifp->hw_addr_len == (int)addrsz
509 && !memcmp(hw_addr, ifp->hw_addr, addrsz))
510 listnode_add(rs, ifp);
511 }
512
513 if (rs->count) {
514 *result = XCALLOC(MTYPE_TMP,
515 sizeof(struct interface *) * rs->count);
516 list_to_array(rs, (void **)*result, rs->count);
517 }
518
519 int count = rs->count;
520
521 list_delete(&rs);
522
523 return count;
524}
525
526
718e3744 527/* Get interface by name if given name interface doesn't exist create
528 one. */
a36898e7 529struct interface *if_get_by_name(const char *name, vrf_id_t vrf_id)
718e3744 530{
8f90d89b 531 struct interface *ifp;
718e3744 532
8f90d89b 533 switch (vrf_get_backend()) {
b0b97a7f 534 case VRF_BACKEND_UNKNOWN:
8f90d89b 535 case VRF_BACKEND_NETNS:
a36898e7 536 ifp = if_lookup_by_name(name, vrf_id);
ee2f2c23
TC
537 if (ifp)
538 return ifp;
d5c65bf1 539 return if_create_name(name, vrf_id);
8f90d89b
RW
540 case VRF_BACKEND_VRF_LITE:
541 ifp = if_lookup_by_name_all_vrf(name);
542 if (ifp) {
a36898e7 543 if (ifp->vrf_id == vrf_id)
379eb245 544 return ifp;
8f90d89b
RW
545 /* If it came from the kernel or by way of zclient,
546 * believe it and update the ifp accordingly.
547 */
a36898e7 548 if_update_to_new_vrf(ifp, vrf_id);
8f90d89b 549 return ifp;
ee2f2c23 550 }
d5c65bf1 551 return if_create_name(name, vrf_id);
85f9da7f 552 }
8f90d89b
RW
553
554 return NULL;
8736158a
FL
555}
556
ea7ec261
DD
557struct interface *if_get_by_ifindex(ifindex_t ifindex, vrf_id_t vrf_id)
558{
559 struct interface *ifp;
560
561 switch (vrf_get_backend()) {
562 case VRF_BACKEND_UNKNOWN:
563 case VRF_BACKEND_NETNS:
47b474b5 564 ifp = if_lookup_by_ifindex(ifindex, vrf_id);
ea7ec261
DD
565 if (ifp)
566 return ifp;
567 return if_create_ifindex(ifindex, vrf_id);
568 case VRF_BACKEND_VRF_LITE:
569 ifp = if_lookup_by_index_all_vrf(ifindex);
570 if (ifp) {
571 if (ifp->vrf_id == vrf_id)
572 return ifp;
573 /* If it came from the kernel or by way of zclient,
574 * believe it and update the ifp accordingly.
575 */
576 if_update_to_new_vrf(ifp, vrf_id);
577 return ifp;
578 }
579 return if_create_ifindex(ifindex, vrf_id);
580 }
581
582 return NULL;
583}
584
ff880b78
RW
585void if_set_index(struct interface *ifp, ifindex_t ifindex)
586{
5b8524f5
RW
587 struct vrf *vrf;
588
d5c65bf1 589 vrf = vrf_get(ifp->vrf_id, NULL);
5b8524f5 590 assert(vrf);
ff880b78
RW
591
592 if (ifp->ifindex == ifindex)
593 return;
594
595 if (ifp->ifindex != IFINDEX_INTERNAL)
d5c65bf1 596 IFINDEX_RB_REMOVE(vrf, ifp);
ff880b78
RW
597
598 ifp->ifindex = ifindex;
599
600 if (ifp->ifindex != IFINDEX_INTERNAL)
601 IFINDEX_RB_INSERT(vrf, ifp)
602}
603
d5c65bf1
SW
604void if_set_name(struct interface *ifp, const char *name)
605{
606 struct vrf *vrf;
607
608 vrf = vrf_get(ifp->vrf_id, NULL);
609 assert(vrf);
610
611 if (if_cmp_name_func(ifp->name, name) == 0)
612 return;
613
614 if (ifp->name[0] != '\0')
615 IFNAME_RB_REMOVE(vrf, ifp);
616
617 strlcpy(ifp->name, name, sizeof(ifp->name));
618
619 if (ifp->name[0] != '\0')
620 IFNAME_RB_INSERT(vrf, ifp);
621}
622
718e3744 623/* Does interface up ? */
6339042c 624int if_is_up(const struct interface *ifp)
718e3744 625{
d62a17ae 626 return ifp->flags & IFF_UP;
718e3744 627}
628
2e3b2e47 629/* Is interface running? */
6339042c 630int if_is_running(const struct interface *ifp)
2e3b2e47 631{
d62a17ae 632 return ifp->flags & IFF_RUNNING;
2e3b2e47 633}
634
635/* Is the interface operative, eg. either UP & RUNNING
244c1cdc
DS
636 or UP & !ZEBRA_INTERFACE_LINK_DETECTION and
637 if ptm checking is enabled, then ptm check has passed */
6339042c 638int if_is_operative(const struct interface *ifp)
2e3b2e47 639{
d62a17ae 640 return ((ifp->flags & IFF_UP)
641 && (((ifp->flags & IFF_RUNNING)
642 && (ifp->ptm_status || !ifp->ptm_enable))
643 || !CHECK_FLAG(ifp->status,
644 ZEBRA_INTERFACE_LINKDETECTION)));
244c1cdc
DS
645}
646
647/* Is the interface operative, eg. either UP & RUNNING
648 or UP & !ZEBRA_INTERFACE_LINK_DETECTION, without PTM check */
6339042c 649int if_is_no_ptm_operative(const struct interface *ifp)
244c1cdc 650{
d62a17ae 651 return ((ifp->flags & IFF_UP)
652 && ((ifp->flags & IFF_RUNNING)
653 || !CHECK_FLAG(ifp->status,
654 ZEBRA_INTERFACE_LINKDETECTION)));
2e3b2e47 655}
656
718e3744 657/* Is this loopback interface ? */
6339042c 658int if_is_loopback(const struct interface *ifp)
718e3744 659{
d62a17ae 660 /* XXX: Do this better, eg what if IFF_WHATEVER means X on platform M
661 * but Y on platform N?
662 */
663 return (ifp->flags & (IFF_LOOPBACK | IFF_NOXMIT | IFF_VIRTUAL));
718e3744 664}
665
0c74bbe0 666/* Check interface is VRF */
6339042c 667int if_is_vrf(const struct interface *ifp)
0c74bbe0
CS
668{
669 return CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_VRF_LOOPBACK);
670}
671
6339042c 672bool if_is_loopback_or_vrf(const struct interface *ifp)
fec4ca19
DS
673{
674 if (if_is_loopback(ifp) || if_is_vrf(ifp))
675 return true;
676
677 return false;
678}
679
718e3744 680/* Does this interface support broadcast ? */
6339042c 681int if_is_broadcast(const struct interface *ifp)
718e3744 682{
d62a17ae 683 return ifp->flags & IFF_BROADCAST;
718e3744 684}
685
686/* Does this interface support broadcast ? */
6339042c 687int if_is_pointopoint(const struct interface *ifp)
718e3744 688{
d62a17ae 689 return ifp->flags & IFF_POINTOPOINT;
718e3744 690}
691
692/* Does this interface support multicast ? */
6339042c 693int if_is_multicast(const struct interface *ifp)
718e3744 694{
d62a17ae 695 return ifp->flags & IFF_MULTICAST;
718e3744 696}
697
698/* Printout flag information into log */
d62a17ae 699const char *if_flag_dump(unsigned long flag)
718e3744 700{
d62a17ae 701 int separator = 0;
702 static char logbuf[BUFSIZ];
703
704#define IFF_OUT_LOG(X, STR) \
705 if (flag & (X)) { \
706 if (separator) \
3393df5c 707 strlcat(logbuf, ",", sizeof(logbuf)); \
d62a17ae 708 else \
709 separator = 1; \
3393df5c 710 strlcat(logbuf, STR, sizeof(logbuf)); \
d62a17ae 711 }
718e3744 712
d62a17ae 713 strlcpy(logbuf, "<", BUFSIZ);
714 IFF_OUT_LOG(IFF_UP, "UP");
715 IFF_OUT_LOG(IFF_BROADCAST, "BROADCAST");
716 IFF_OUT_LOG(IFF_DEBUG, "DEBUG");
717 IFF_OUT_LOG(IFF_LOOPBACK, "LOOPBACK");
718 IFF_OUT_LOG(IFF_POINTOPOINT, "POINTOPOINT");
719 IFF_OUT_LOG(IFF_NOTRAILERS, "NOTRAILERS");
720 IFF_OUT_LOG(IFF_RUNNING, "RUNNING");
721 IFF_OUT_LOG(IFF_NOARP, "NOARP");
722 IFF_OUT_LOG(IFF_PROMISC, "PROMISC");
723 IFF_OUT_LOG(IFF_ALLMULTI, "ALLMULTI");
724 IFF_OUT_LOG(IFF_OACTIVE, "OACTIVE");
725 IFF_OUT_LOG(IFF_SIMPLEX, "SIMPLEX");
726 IFF_OUT_LOG(IFF_LINK0, "LINK0");
727 IFF_OUT_LOG(IFF_LINK1, "LINK1");
728 IFF_OUT_LOG(IFF_LINK2, "LINK2");
729 IFF_OUT_LOG(IFF_MULTICAST, "MULTICAST");
730 IFF_OUT_LOG(IFF_NOXMIT, "NOXMIT");
731 IFF_OUT_LOG(IFF_NORTEXCH, "NORTEXCH");
732 IFF_OUT_LOG(IFF_VIRTUAL, "VIRTUAL");
733 IFF_OUT_LOG(IFF_IPV4, "IPv4");
734 IFF_OUT_LOG(IFF_IPV6, "IPv6");
735
3393df5c 736 strlcat(logbuf, ">", sizeof(logbuf));
d62a17ae 737
738 return logbuf;
630c97ce 739#undef IFF_OUT_LOG
718e3744 740}
741
742/* For debugging */
d62a17ae 743static void if_dump(const struct interface *ifp)
718e3744 744{
d62a17ae 745 struct listnode *node;
746 struct connected *c __attribute__((unused));
747
748 for (ALL_LIST_ELEMENTS_RO(ifp->connected, node, c))
749 zlog_info(
750 "Interface %s vrf %u index %d metric %d mtu %d "
751 "mtu6 %d %s",
a36898e7 752 ifp->name, ifp->vrf_id, ifp->ifindex, ifp->metric,
d62a17ae 753 ifp->mtu, ifp->mtu6, if_flag_dump(ifp->flags));
718e3744 754}
755
756/* Interface printing for all interface. */
d62a17ae 757void if_dump_all(void)
718e3744 758{
d62a17ae 759 struct vrf *vrf;
f4e14fdb 760 void *ifp;
d62a17ae 761
a2addae8 762 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id)
451fda4f 763 FOR_ALL_INTERFACES (vrf, ifp)
f4e14fdb 764 if_dump(ifp);
718e3744 765}
766
98954844
PJ
767#ifdef SUNOS_5
768/* Need to handle upgrade from SUNWzebra to Quagga. SUNWzebra created
769 * a seperate struct interface for each logical interface, so config
770 * file may be full of 'interface fooX:Y'. Solaris however does not
771 * expose logical interfaces via PF_ROUTE, so trying to track logical
772 * interfaces can be fruitless, for that reason Quagga only tracks
773 * the primary IP interface.
774 *
775 * We try accomodate SUNWzebra by:
776 * - looking up the interface name, to see whether it exists, if so
777 * its useable
778 * - for protocol daemons, this could only because zebra told us of
779 * the interface
780 * - for zebra, only because it learnt from kernel
781 * - if not:
782 * - search the name to see if it contains a sub-ipif / logical interface
783 * seperator, the ':' char. If it does:
784 * - text up to that char must be the primary name - get that name.
785 * if not:
786 * - no idea, just get the name in its entirety.
787 */
a36898e7 788static struct interface *if_sunwzebra_get(const char *name, vrf_id_t vrf_id)
98954844 789{
d62a17ae 790 struct interface *ifp;
bcc24579 791 char *cp;
d62a17ae 792
a36898e7 793 if ((ifp = if_lookup_by_name(name, vrf_id)) != NULL)
d62a17ae 794 return ifp;
795
796 /* hunt the primary interface name... */
bcc24579
RW
797 cp = strchr(name, ':');
798 if (cp)
799 *cp = '\0';
d62a17ae 800
a36898e7 801 return if_get_by_name(name, vrf_id);
98954844
PJ
802}
803#endif /* SUNOS_5 */
6b0655a2 804
d7d73ffc 805#if 0
718e3744 806/* For debug purpose. */
807DEFUN (show_address,
808 show_address_cmd,
199d90a1 809 "show address [vrf NAME]",
718e3744 810 SHOW_STR
fcbee690
QY
811 "address\n"
812 VRF_CMD_HELP_STR)
718e3744 813{
abddf075 814 int idx_vrf = 3;
52dc7ee6 815 struct listnode *node;
718e3744 816 struct interface *ifp;
817 struct connected *ifc;
818 struct prefix *p;
8736158a 819 vrf_id_t vrf_id = VRF_DEFAULT;
718e3744 820
fcbee690 821 if (argc > 2)
58749582 822 VRF_GET_ID (vrf_id, argv[idx_vrf]->arg);
8736158a 823
451fda4f 824 FOR_ALL_INTERFACES (vrf, ifp)
718e3744 825 {
f4e14fdb 826 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, ifc))
718e3744 827 {
718e3744 828 p = ifc->address;
829
830 if (p->family == AF_INET)
55f70b67 831 vty_out (vty, "%s/%d\n", inet_ntoa (p->u.prefix4), p->prefixlen);
718e3744 832 }
833 }
834 return CMD_SUCCESS;
835}
836
8736158a
FL
837DEFUN (show_address_vrf_all,
838 show_address_vrf_all_cmd,
9ccf14f7 839 "show address vrf all",
8736158a
FL
840 SHOW_STR
841 "address\n"
842 VRF_ALL_CMD_HELP_STR)
843{
1a1a7065 844 struct vrf *vrf;
8736158a 845 struct listnode *node;
8736158a
FL
846 struct interface *ifp;
847 struct connected *ifc;
848 struct prefix *p;
8736158a 849
a62c4901 850 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name)
8736158a 851 {
f4e14fdb 852 if (RB_EMPTY (if_name_head, &vrf->ifaces_by_name))
8736158a
FL
853 continue;
854
55f70b67 855 vty_out (vty, "\nVRF %u\n\n", vrf->vrf_id);
8736158a 856
451fda4f 857 FOR_ALL_INTERFACES (vrf, ifp)
8736158a 858 {
f4e14fdb 859 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, ifc))
8736158a
FL
860 {
861 p = ifc->address;
862
863 if (p->family == AF_INET)
55f70b67 864 vty_out (vty, "%s/%d\n", inet_ntoa (p->u.prefix4), p->prefixlen);
8736158a
FL
865 }
866 }
867 }
868 return CMD_SUCCESS;
869}
d7d73ffc 870#endif
8736158a 871
718e3744 872/* Allocate connected structure. */
d62a17ae 873struct connected *connected_new(void)
718e3744 874{
d62a17ae 875 return XCALLOC(MTYPE_CONNECTED, sizeof(struct connected));
718e3744 876}
877
a80beece 878/* Allocate nbr connected structure. */
d62a17ae 879struct nbr_connected *nbr_connected_new(void)
a80beece 880{
d62a17ae 881 return XCALLOC(MTYPE_NBR_CONNECTED, sizeof(struct nbr_connected));
a80beece
DS
882}
883
718e3744 884/* Free connected structure. */
721c0857 885void connected_free(struct connected **connected)
718e3744 886{
721c0857
DS
887 struct connected *ptr = *connected;
888
889 if (ptr->address)
890 prefix_free(&ptr->address);
718e3744 891
721c0857
DS
892 if (ptr->destination)
893 prefix_free(&ptr->destination);
718e3744 894
721c0857 895 XFREE(MTYPE_CONNECTED_LABEL, ptr->label);
718e3744 896
721c0857
DS
897 XFREE(MTYPE_CONNECTED, ptr);
898 *connected = NULL;
718e3744 899}
900
a80beece 901/* Free nbr connected structure. */
d62a17ae 902void nbr_connected_free(struct nbr_connected *connected)
a80beece 903{
d62a17ae 904 if (connected->address)
63265b5c 905 prefix_free(&connected->address);
a80beece 906
d62a17ae 907 XFREE(MTYPE_NBR_CONNECTED, connected);
a80beece
DS
908}
909
910/* If same interface nbr address already exists... */
d62a17ae 911struct nbr_connected *nbr_connected_check(struct interface *ifp,
912 struct prefix *p)
a80beece 913{
d62a17ae 914 struct nbr_connected *ifc;
915 struct listnode *node;
a80beece 916
d62a17ae 917 for (ALL_LIST_ELEMENTS_RO(ifp->nbr_connected, node, ifc))
918 if (prefix_same(ifc->address, p))
919 return ifc;
a80beece 920
d62a17ae 921 return NULL;
a80beece
DS
922}
923
718e3744 924/* Print if_addr structure. */
d62a17ae 925static void __attribute__((unused))
926connected_log(struct connected *connected, char *str)
718e3744 927{
d62a17ae 928 struct prefix *p;
929 struct interface *ifp;
930 char logbuf[BUFSIZ];
931 char buf[BUFSIZ];
932
933 ifp = connected->ifp;
934 p = connected->address;
935
936 snprintf(logbuf, BUFSIZ, "%s interface %s vrf %u %s %s/%d ", str,
a36898e7 937 ifp->name, ifp->vrf_id, prefix_family_str(p),
d62a17ae 938 inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ), p->prefixlen);
939
940 p = connected->destination;
941 if (p) {
942 strncat(logbuf, inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ),
943 BUFSIZ - strlen(logbuf));
944 }
945 zlog_info("%s", logbuf);
718e3744 946}
947
a80beece 948/* Print if_addr structure. */
d62a17ae 949static void __attribute__((unused))
950nbr_connected_log(struct nbr_connected *connected, char *str)
a80beece 951{
d62a17ae 952 struct prefix *p;
953 struct interface *ifp;
954 char logbuf[BUFSIZ];
955 char buf[BUFSIZ];
a80beece 956
d62a17ae 957 ifp = connected->ifp;
958 p = connected->address;
a80beece 959
d62a17ae 960 snprintf(logbuf, BUFSIZ, "%s interface %s %s %s/%d ", str, ifp->name,
961 prefix_family_str(p),
962 inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ), p->prefixlen);
a80beece 963
d62a17ae 964 zlog_info("%s", logbuf);
a80beece
DS
965}
966
718e3744 967/* If two connected address has same prefix return 1. */
d62a17ae 968static int connected_same_prefix(struct prefix *p1, struct prefix *p2)
718e3744 969{
d62a17ae 970 if (p1->family == p2->family) {
971 if (p1->family == AF_INET
972 && IPV4_ADDR_SAME(&p1->u.prefix4, &p2->u.prefix4))
973 return 1;
974 if (p1->family == AF_INET6
975 && IPV6_ADDR_SAME(&p1->u.prefix6, &p2->u.prefix6))
976 return 1;
977 }
978 return 0;
718e3744 979}
980
457ea8d4
GN
981/* count the number of connected addresses that are in the given family */
982unsigned int connected_count_by_family(struct interface *ifp, int family)
983{
984 struct listnode *cnode;
985 struct connected *connected;
986 unsigned int cnt = 0;
987
988 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, connected))
989 if (connected->address->family == family)
990 cnt++;
991
992 return cnt;
993}
994
d62a17ae 995struct connected *connected_lookup_prefix_exact(struct interface *ifp,
996 struct prefix *p)
38485402 997{
d62a17ae 998 struct listnode *node;
999 struct listnode *next;
1000 struct connected *ifc;
38485402 1001
d62a17ae 1002 for (node = listhead(ifp->connected); node; node = next) {
1003 ifc = listgetdata(node);
1004 next = node->next;
38485402 1005
d62a17ae 1006 if (connected_same_prefix(ifc->address, p))
1007 return ifc;
1008 }
1009 return NULL;
38485402
DS
1010}
1011
d62a17ae 1012struct connected *connected_delete_by_prefix(struct interface *ifp,
1013 struct prefix *p)
718e3744 1014{
d62a17ae 1015 struct listnode *node;
1016 struct listnode *next;
1017 struct connected *ifc;
1018
1019 /* In case of same prefix come, replace it with new one. */
1020 for (node = listhead(ifp->connected); node; node = next) {
1021 ifc = listgetdata(node);
1022 next = node->next;
1023
1024 if (connected_same_prefix(ifc->address, p)) {
1025 listnode_delete(ifp->connected, ifc);
1026 return ifc;
1027 }
718e3744 1028 }
d62a17ae 1029 return NULL;
718e3744 1030}
1031
bd40c341 1032/* Find the address on our side that will be used when packets
727d104b 1033 are sent to dst. */
d62a17ae 1034struct connected *connected_lookup_prefix(struct interface *ifp,
1035 struct prefix *addr)
727d104b 1036{
d62a17ae 1037 struct listnode *cnode;
1038 struct connected *c;
1039 struct connected *match;
1040
1041 match = NULL;
1042
1043 for (ALL_LIST_ELEMENTS_RO(ifp->connected, cnode, c)) {
1044 if (c->address && (c->address->family == addr->family)
1045 && prefix_match(CONNECTED_PREFIX(c), addr)
1046 && (!match
1047 || (c->address->prefixlen > match->address->prefixlen)))
1048 match = c;
1049 }
1050 return match;
727d104b 1051}
1052
d62a17ae 1053struct connected *connected_add_by_prefix(struct interface *ifp,
1054 struct prefix *p,
1055 struct prefix *destination)
4a7aac1b 1056{
d62a17ae 1057 struct connected *ifc;
4a7aac1b 1058
d62a17ae 1059 /* Allocate new connected address. */
1060 ifc = connected_new();
1061 ifc->ifp = ifp;
4a7aac1b 1062
d62a17ae 1063 /* Fetch interface address */
1064 ifc->address = prefix_new();
1065 memcpy(ifc->address, p, sizeof(struct prefix));
4a7aac1b 1066
d62a17ae 1067 /* Fetch dest address */
1068 if (destination) {
1069 ifc->destination = prefix_new();
1070 memcpy(ifc->destination, destination, sizeof(struct prefix));
1071 }
4a7aac1b 1072
d62a17ae 1073 /* Add connected address to the interface. */
1074 listnode_add(ifp->connected, ifc);
1075 return ifc;
4a7aac1b 1076}
1077
667179ca
QY
1078struct connected *connected_get_linklocal(struct interface *ifp)
1079{
1080 struct listnode *n;
1081 struct connected *c = NULL;
1082
1083 for (ALL_LIST_ELEMENTS_RO(ifp->connected, n, c)) {
1084 if (c->address->family == AF_INET6
1085 && IN6_IS_ADDR_LINKLOCAL(&c->address->u.prefix6))
1086 break;
1087 }
1088 return c;
1089}
1090
d62a17ae 1091#if 0 /* this route_table of struct connected's is unused \
1092 * however, it would be good to use a route_table rather than \
1093 * a list.. \
1094 */
718e3744 1095/* Interface looking up by interface's address. */
718e3744 1096/* Interface's IPv4 address reverse lookup table. */
1097struct route_table *ifaddr_ipv4_table;
1098/* struct route_table *ifaddr_ipv6_table; */
1099
8cc4198f 1100static void
718e3744 1101ifaddr_ipv4_add (struct in_addr *ifaddr, struct interface *ifp)
1102{
1103 struct route_node *rn;
1104 struct prefix_ipv4 p;
1105
1106 p.family = AF_INET;
1107 p.prefixlen = IPV4_MAX_PREFIXLEN;
1108 p.prefix = *ifaddr;
1109
1110 rn = route_node_get (ifaddr_ipv4_table, (struct prefix *) &p);
1111 if (rn)
1112 {
1113 route_unlock_node (rn);
1114 zlog_info ("ifaddr_ipv4_add(): address %s is already added",
1115 inet_ntoa (*ifaddr));
1116 return;
1117 }
1118 rn->info = ifp;
1119}
1120
8cc4198f 1121static void
718e3744 1122ifaddr_ipv4_delete (struct in_addr *ifaddr, struct interface *ifp)
1123{
1124 struct route_node *rn;
1125 struct prefix_ipv4 p;
1126
1127 p.family = AF_INET;
1128 p.prefixlen = IPV4_MAX_PREFIXLEN;
1129 p.prefix = *ifaddr;
1130
1131 rn = route_node_lookup (ifaddr_ipv4_table, (struct prefix *) &p);
1132 if (! rn)
1133 {
1134 zlog_info ("ifaddr_ipv4_delete(): can't find address %s",
1135 inet_ntoa (*ifaddr));
1136 return;
1137 }
1138 rn->info = NULL;
1139 route_unlock_node (rn);
1140 route_unlock_node (rn);
1141}
1142
1143/* Lookup interface by interface's IP address or interface index. */
8cc4198f 1144static struct interface *
b892f1dd 1145ifaddr_ipv4_lookup (struct in_addr *addr, ifindex_t ifindex)
718e3744 1146{
1147 struct prefix_ipv4 p;
1148 struct route_node *rn;
1149 struct interface *ifp;
718e3744 1150
1151 if (addr)
1152 {
1153 p.family = AF_INET;
1154 p.prefixlen = IPV4_MAX_PREFIXLEN;
1155 p.prefix = *addr;
1156
1157 rn = route_node_lookup (ifaddr_ipv4_table, (struct prefix *) &p);
1158 if (! rn)
1159 return NULL;
55cd0f61 1160
718e3744 1161 ifp = rn->info;
1162 route_unlock_node (rn);
1163 return ifp;
1164 }
1165 else
7e2b7603 1166 return if_lookup_by_index(ifindex, VRF_DEFAULT);
718e3744 1167}
8cc4198f 1168#endif /* ifaddr_ipv4_table */
718e3744 1169
f4e14fdb 1170void if_terminate(struct vrf *vrf)
4bd045d5 1171{
f4e14fdb 1172 struct interface *ifp;
4bd045d5 1173
55cd0f61
DS
1174 while (!RB_EMPTY(if_name_head, &vrf->ifaces_by_name)) {
1175 ifp = RB_ROOT(if_name_head, &vrf->ifaces_by_name);
1176
d62a17ae 1177 if (ifp->node) {
1178 ifp->node->info = NULL;
1179 route_unlock_node(ifp->node);
1180 }
f609709a 1181 if_delete(&ifp);
d62a17ae 1182 }
4bd045d5 1183}
8ccc7e80 1184
d62a17ae 1185const char *if_link_type_str(enum zebra_link_type llt)
8ccc7e80 1186{
d62a17ae 1187 switch (llt) {
8ccc7e80 1188#define llts(T,S) case (T): return (S)
d62a17ae 1189 llts(ZEBRA_LLT_UNKNOWN, "Unknown");
1190 llts(ZEBRA_LLT_ETHER, "Ethernet");
1191 llts(ZEBRA_LLT_EETHER, "Experimental Ethernet");
1192 llts(ZEBRA_LLT_AX25, "AX.25 Level 2");
1193 llts(ZEBRA_LLT_PRONET, "PROnet token ring");
1194 llts(ZEBRA_LLT_IEEE802, "IEEE 802.2 Ethernet/TR/TB");
1195 llts(ZEBRA_LLT_ARCNET, "ARCnet");
1196 llts(ZEBRA_LLT_APPLETLK, "AppleTalk");
1197 llts(ZEBRA_LLT_DLCI, "Frame Relay DLCI");
1198 llts(ZEBRA_LLT_ATM, "ATM");
1199 llts(ZEBRA_LLT_METRICOM, "Metricom STRIP");
1200 llts(ZEBRA_LLT_IEEE1394, "IEEE 1394 IPv4");
1201 llts(ZEBRA_LLT_EUI64, "EUI-64");
1202 llts(ZEBRA_LLT_INFINIBAND, "InfiniBand");
1203 llts(ZEBRA_LLT_SLIP, "SLIP");
1204 llts(ZEBRA_LLT_CSLIP, "Compressed SLIP");
1205 llts(ZEBRA_LLT_SLIP6, "SLIPv6");
1206 llts(ZEBRA_LLT_CSLIP6, "Compressed SLIPv6");
1207 llts(ZEBRA_LLT_ROSE, "ROSE packet radio");
1208 llts(ZEBRA_LLT_X25, "CCITT X.25");
1209 llts(ZEBRA_LLT_PPP, "PPP");
1210 llts(ZEBRA_LLT_CHDLC, "Cisco HDLC");
1211 llts(ZEBRA_LLT_RAWHDLC, "Raw HDLC");
1212 llts(ZEBRA_LLT_LAPB, "LAPB");
1213 llts(ZEBRA_LLT_IPIP, "IPIP Tunnel");
1214 llts(ZEBRA_LLT_IPIP6, "IPIP6 Tunnel");
1215 llts(ZEBRA_LLT_FRAD, "FRAD");
1216 llts(ZEBRA_LLT_SKIP, "SKIP vif");
1217 llts(ZEBRA_LLT_LOOPBACK, "Loopback");
1218 llts(ZEBRA_LLT_LOCALTLK, "Localtalk");
1219 llts(ZEBRA_LLT_FDDI, "FDDI");
1220 llts(ZEBRA_LLT_SIT, "IPv6-in-IPv4 SIT");
1221 llts(ZEBRA_LLT_IPDDP, "IP-in-DDP tunnel");
1222 llts(ZEBRA_LLT_IPGRE, "GRE over IP");
1223 llts(ZEBRA_LLT_PIMREG, "PIMSM registration");
1224 llts(ZEBRA_LLT_HIPPI, "HiPPI");
1225 llts(ZEBRA_LLT_IRDA, "IrDA");
1226 llts(ZEBRA_LLT_FCPP, "Fibre-Channel PtP");
1227 llts(ZEBRA_LLT_FCAL, "Fibre-Channel Arbitrated Loop");
1228 llts(ZEBRA_LLT_FCPL, "Fibre-Channel Public Loop");
1229 llts(ZEBRA_LLT_FCFABRIC, "Fibre-Channel Fabric");
1230 llts(ZEBRA_LLT_IEEE802_TR, "IEEE 802.2 Token Ring");
1231 llts(ZEBRA_LLT_IEEE80211, "IEEE 802.11");
1232 llts(ZEBRA_LLT_IEEE80211_RADIOTAP, "IEEE 802.11 Radiotap");
1233 llts(ZEBRA_LLT_IEEE802154, "IEEE 802.15.4");
1234 llts(ZEBRA_LLT_IEEE802154_PHY, "IEEE 802.15.4 Phy");
1235 default:
450971aa 1236 flog_err(EC_LIB_DEVELOPMENT, "Unknown value %d", llt);
d62a17ae 1237 return "Unknown type!";
8ccc7e80 1238#undef llts
d62a17ae 1239 }
1240 return NULL;
8ccc7e80 1241}
16f1b9ee 1242
d62a17ae 1243struct if_link_params *if_link_params_get(struct interface *ifp)
16f1b9ee 1244{
d62a17ae 1245 int i;
16f1b9ee 1246
d62a17ae 1247 if (ifp->link_params != NULL)
1248 return ifp->link_params;
16f1b9ee 1249
d62a17ae 1250 struct if_link_params *iflp =
1251 XCALLOC(MTYPE_IF_LINK_PARAMS, sizeof(struct if_link_params));
1252 if (iflp == NULL)
1253 return NULL;
16f1b9ee 1254
d62a17ae 1255 /* Set TE metric equal to standard metric */
1256 iflp->te_metric = ifp->metric;
16f1b9ee 1257
d62a17ae 1258 /* Compute default bandwidth based on interface */
1259 iflp->default_bw =
1260 ((ifp->bandwidth ? ifp->bandwidth : DEFAULT_BANDWIDTH)
1261 * TE_KILO_BIT / TE_BYTE);
16f1b9ee 1262
d62a17ae 1263 /* Set Max, Reservable and Unreserved Bandwidth */
1264 iflp->max_bw = iflp->default_bw;
1265 iflp->max_rsv_bw = iflp->default_bw;
1266 for (i = 0; i < MAX_CLASS_TYPE; i++)
1267 iflp->unrsv_bw[i] = iflp->default_bw;
16f1b9ee 1268
d62a17ae 1269 /* Update Link parameters status */
1270 iflp->lp_status =
1271 LP_TE_METRIC | LP_MAX_BW | LP_MAX_RSV_BW | LP_UNRSV_BW;
16f1b9ee 1272
d62a17ae 1273 /* Finally attach newly created Link Parameters */
1274 ifp->link_params = iflp;
16f1b9ee 1275
d62a17ae 1276 return iflp;
16f1b9ee
OD
1277}
1278
d62a17ae 1279void if_link_params_free(struct interface *ifp)
16f1b9ee 1280{
d62a17ae 1281 if (ifp->link_params == NULL)
1282 return;
1283 XFREE(MTYPE_IF_LINK_PARAMS, ifp->link_params);
1284 ifp->link_params = NULL;
16f1b9ee 1285}
a4bed468 1286
8f90d89b
RW
1287/* ----------- CLI commands ----------- */
1288
1289/*
1290 * XPath: /frr-interface:lib/interface
1291 */
1292DEFPY_NOSH (interface,
1293 interface_cmd,
e429a2a0 1294 "interface IFNAME [vrf NAME$vrf_name]",
8f90d89b
RW
1295 "Select an interface to configure\n"
1296 "Interface's name\n"
1297 VRF_CMD_HELP_STR)
1298{
1299 char xpath_list[XPATH_MAXLEN];
a36898e7
DS
1300 vrf_id_t vrf_id;
1301 struct interface *ifp;
8f90d89b
RW
1302 int ret;
1303
e429a2a0
IR
1304 if (!vrf_name)
1305 vrf_name = VRF_DEFAULT_NAME;
8f90d89b
RW
1306
1307 /*
1308 * This command requires special handling to maintain backward
1309 * compatibility. If a VRF name is not specified, it means we're willing
1310 * to accept any interface with the given name on any VRF. If no
1311 * interface is found, then a new one should be created on the default
1312 * VRF.
1313 */
e429a2a0 1314 VRF_GET_ID(vrf_id, vrf_name, false);
a36898e7
DS
1315 ifp = if_lookup_by_name_all_vrf(ifname);
1316 if (ifp && ifp->vrf_id != vrf_id) {
1317 struct vrf *vrf;
1318
8f90d89b
RW
1319 /*
1320 * Special case 1: a VRF name was specified, but the found
1321 * interface is associated to different VRF. Reject the command.
1322 */
a36898e7 1323 if (vrf_id != VRF_DEFAULT) {
8f90d89b 1324 vty_out(vty, "%% interface %s not in %s vrf\n", ifname,
e429a2a0 1325 vrf_name);
8f90d89b
RW
1326 return CMD_WARNING_CONFIG_FAILED;
1327 }
1328
1329 /*
1330 * Special case 2: a VRF name was *not* specified, and the found
1331 * interface is associated to a VRF other than the default one.
e429a2a0 1332 * Update vrf_id and vrf_name to account for that.
8f90d89b 1333 */
a36898e7 1334 vrf = vrf_lookup_by_id(ifp->vrf_id);
8f90d89b 1335 assert(vrf);
a36898e7 1336 vrf_id = ifp->vrf_id;
e429a2a0 1337 vrf_name = vrf->name;
8f90d89b
RW
1338 }
1339
1340 snprintf(xpath_list, sizeof(xpath_list),
1341 "/frr-interface:lib/interface[name='%s'][vrf='%s']", ifname,
e429a2a0 1342 vrf_name);
8f90d89b 1343
a6233bfc
RW
1344 nb_cli_enqueue_change(vty, ".", NB_OP_CREATE, NULL);
1345 ret = nb_cli_apply_changes(vty, xpath_list);
8f90d89b
RW
1346 if (ret == CMD_SUCCESS) {
1347 VTY_PUSH_XPATH(INTERFACE_NODE, xpath_list);
1348
1349 /*
1350 * For backward compatibility with old commands we still need
1351 * to use the qobj infrastructure. This can be removed once
1352 * all interface-level commands are converted to the new
1353 * northbound model.
1354 */
a36898e7 1355 ifp = if_lookup_by_name(ifname, vrf_id);
8f90d89b
RW
1356 if (ifp)
1357 VTY_PUSH_CONTEXT(INTERFACE_NODE, ifp);
1358 }
1359
1360 return ret;
1361}
1362
1363DEFPY (no_interface,
1364 no_interface_cmd,
e429a2a0 1365 "no interface IFNAME [vrf NAME$vrf_name]",
8f90d89b
RW
1366 NO_STR
1367 "Delete a pseudo interface's configuration\n"
1368 "Interface's name\n"
1369 VRF_CMD_HELP_STR)
1370{
e429a2a0
IR
1371 if (!vrf_name)
1372 vrf_name = VRF_DEFAULT_NAME;
8f90d89b 1373
95ce849b 1374 nb_cli_enqueue_change(vty, ".", NB_OP_DESTROY, NULL);
8f90d89b 1375
a6233bfc
RW
1376 return nb_cli_apply_changes(
1377 vty, "/frr-interface:lib/interface[name='%s'][vrf='%s']",
e429a2a0 1378 ifname, vrf_name);
8f90d89b
RW
1379}
1380
1381static void cli_show_interface(struct vty *vty, struct lyd_node *dnode,
1382 bool show_defaults)
1383{
1384 const char *vrf;
1385
1386 vrf = yang_dnode_get_string(dnode, "./vrf");
1387
1388 vty_out(vty, "!\n");
1389 vty_out(vty, "interface %s", yang_dnode_get_string(dnode, "./name"));
1390 if (!strmatch(vrf, VRF_DEFAULT_NAME))
1391 vty_out(vty, " vrf %s", vrf);
1392 vty_out(vty, "\n");
1393}
1394
1395/*
1396 * XPath: /frr-interface:lib/interface/description
1397 */
1398DEFPY (interface_desc,
1399 interface_desc_cmd,
1400 "description LINE...",
1401 "Interface specific description\n"
1402 "Characters describing this interface\n")
1403{
8f90d89b
RW
1404 char *desc;
1405 int ret;
1406
1407 desc = argv_concat(argv, argc, 1);
a6233bfc
RW
1408 nb_cli_enqueue_change(vty, "./description", NB_OP_MODIFY, desc);
1409 ret = nb_cli_apply_changes(vty, NULL);
8f90d89b
RW
1410 XFREE(MTYPE_TMP, desc);
1411
1412 return ret;
1413}
1414
1415DEFPY (no_interface_desc,
1416 no_interface_desc_cmd,
1417 "no description",
1418 NO_STR
1419 "Interface specific description\n")
1420{
95ce849b 1421 nb_cli_enqueue_change(vty, "./description", NB_OP_DESTROY, NULL);
a6233bfc
RW
1422
1423 return nb_cli_apply_changes(vty, NULL);
8f90d89b
RW
1424}
1425
1426static void cli_show_interface_desc(struct vty *vty, struct lyd_node *dnode,
1427 bool show_defaults)
1428{
1429 vty_out(vty, " description %s\n", yang_dnode_get_string(dnode, NULL));
1430}
1431
1432/* Interface autocomplete. */
1433static void if_autocomplete(vector comps, struct cmd_token *token)
1434{
1435 struct interface *ifp;
1436 struct vrf *vrf;
1437
1438 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
1439 FOR_ALL_INTERFACES (vrf, ifp) {
1440 vector_set(comps, XSTRDUP(MTYPE_COMPLETION, ifp->name));
1441 }
1442 }
1443}
1444
1445static const struct cmd_variable_handler if_var_handlers[] = {
1446 {/* "interface NAME" */
1447 .varname = "interface",
1448 .completions = if_autocomplete},
1449 {.tokenname = "IFNAME", .completions = if_autocomplete},
1450 {.tokenname = "INTERFACE", .completions = if_autocomplete},
1451 {.completions = NULL}};
1452
1453void if_cmd_init(void)
1454{
1455 cmd_variable_handler_register(if_var_handlers);
1456
1457 install_element(CONFIG_NODE, &interface_cmd);
1458 install_element(CONFIG_NODE, &no_interface_cmd);
1459
1460 install_default(INTERFACE_NODE);
1461 install_element(INTERFACE_NODE, &interface_desc_cmd);
1462 install_element(INTERFACE_NODE, &no_interface_desc_cmd);
1463}
1464
138c5a74
DS
1465void if_zapi_callbacks(int (*create)(struct interface *ifp),
1466 int (*up)(struct interface *ifp),
1467 int (*down)(struct interface *ifp),
1468 int (*destroy)(struct interface *ifp))
1469{
1470 ifp_master.create_hook = create;
1471 ifp_master.up_hook = up;
1472 ifp_master.down_hook = down;
1473 ifp_master.destroy_hook = destroy;
1474}
1475
a4bed468
RW
1476/* ------- Northbound callbacks ------- */
1477
1478/*
1479 * XPath: /frr-interface:lib/interface
1480 */
1481static int lib_interface_create(enum nb_event event,
1482 const struct lyd_node *dnode,
1483 union nb_resource *resource)
1484{
8f90d89b
RW
1485 const char *ifname;
1486 const char *vrfname;
1487 struct vrf *vrf;
a36898e7 1488 struct interface *ifp;
8f90d89b
RW
1489
1490 ifname = yang_dnode_get_string(dnode, "./name");
1491 vrfname = yang_dnode_get_string(dnode, "./vrf");
1492
1493 switch (event) {
1494 case NB_EV_VALIDATE:
1495 vrf = vrf_lookup_by_name(vrfname);
1496 if (!vrf) {
1497 zlog_warn("%s: VRF %s doesn't exist", __func__,
1498 vrfname);
1499 return NB_ERR_VALIDATION;
1500 }
a36898e7
DS
1501 if (vrf->vrf_id == VRF_UNKNOWN) {
1502 zlog_warn("%s: VRF %s is not active", __func__,
1503 vrf->name);
1504 return NB_ERR_VALIDATION;
1505 }
72261ecd 1506
b0b97a7f
PG
1507 /* if VRF is netns or not yet known - init for instance
1508 * then assumption is that passed config is exact
1509 * then the user intent was not to use an other iface
1510 */
8f90d89b
RW
1511 if (vrf_get_backend() == VRF_BACKEND_VRF_LITE) {
1512 ifp = if_lookup_by_name_all_vrf(ifname);
a36898e7 1513 if (ifp && ifp->vrf_id != vrf->vrf_id) {
8f90d89b
RW
1514 zlog_warn(
1515 "%s: interface %s already exists in another VRF",
1516 __func__, ifp->name);
1517 return NB_ERR_VALIDATION;
1518 }
1519 }
1520 break;
1521 case NB_EV_PREPARE:
1522 case NB_EV_ABORT:
1523 break;
1524 case NB_EV_APPLY:
1525 vrf = vrf_lookup_by_name(vrfname);
1526 assert(vrf);
1527#ifdef SUNOS_5
a36898e7 1528 ifp = if_sunwzebra_get(ifname, vrf->vrf_id);
8f90d89b 1529#else
a36898e7 1530 ifp = if_get_by_name(ifname, vrf->vrf_id);
8f90d89b 1531#endif /* SUNOS_5 */
1d311a05
DS
1532
1533 ifp->configured = true;
ccd43ada 1534 nb_running_set_entry(dnode, ifp);
8f90d89b
RW
1535 break;
1536 }
1537
a4bed468
RW
1538 return NB_OK;
1539}
1540
6a3fdeec
RW
1541static int lib_interface_destroy(enum nb_event event,
1542 const struct lyd_node *dnode)
a4bed468 1543{
8f90d89b
RW
1544 struct interface *ifp;
1545
8f90d89b
RW
1546
1547 switch (event) {
1548 case NB_EV_VALIDATE:
ccd43ada 1549 ifp = nb_running_get_entry(dnode, NULL, true);
8f90d89b
RW
1550 if (CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_ACTIVE)) {
1551 zlog_warn("%s: only inactive interfaces can be deleted",
1552 __func__);
1553 return NB_ERR_VALIDATION;
1554 }
1555 break;
1556 case NB_EV_PREPARE:
1557 case NB_EV_ABORT:
1558 break;
1559 case NB_EV_APPLY:
ccd43ada 1560 ifp = nb_running_unset_entry(dnode);
1d311a05
DS
1561
1562 ifp->configured = false;
f609709a 1563 if_delete(&ifp);
8f90d89b
RW
1564 break;
1565 }
1566
a4bed468
RW
1567 return NB_OK;
1568}
1569
f88647ef
QY
1570/*
1571 * XPath: /frr-interface:lib/interface
1572 */
1573static const void *lib_interface_get_next(const void *parent_list_entry,
1574 const void *list_entry)
1575{
1576 struct vrf *vrf;
1577 struct interface *pif = (struct interface *)list_entry;
1578
1579 if (list_entry == NULL) {
1580 vrf = RB_MIN(vrf_name_head, &vrfs_by_name);
1581 assert(vrf);
1582 pif = RB_MIN(if_name_head, &vrf->ifaces_by_name);
1583 } else {
1584 vrf = vrf_lookup_by_id(pif->vrf_id);
1585 pif = RB_NEXT(if_name_head, pif);
1586 /* if no more interfaces, switch to next vrf */
1587 while (pif == NULL) {
1588 vrf = RB_NEXT(vrf_name_head, vrf);
1589 if (!vrf)
1590 return NULL;
1591 pif = RB_MIN(if_name_head, &vrf->ifaces_by_name);
1592 }
1593 }
1594
1595 return pif;
1596}
1597
1598static int lib_interface_get_keys(const void *list_entry,
1599 struct yang_list_keys *keys)
1600{
1601 const struct interface *ifp = list_entry;
1602
1603 struct vrf *vrf = vrf_lookup_by_id(ifp->vrf_id);
1604
1605 assert(vrf);
1606
1607 keys->num = 2;
1608 strlcpy(keys->key[0], ifp->name, sizeof(keys->key[0]));
1609 strlcpy(keys->key[1], vrf->name, sizeof(keys->key[1]));
1610
1611 return NB_OK;
1612}
1613
1614static const void *lib_interface_lookup_entry(const void *parent_list_entry,
1615 const struct yang_list_keys *keys)
1616{
1617 const char *ifname = keys->key[0];
1618 const char *vrfname = keys->key[1];
1619 struct vrf *vrf = vrf_lookup_by_name(vrfname);
1620
68a4422d 1621 return vrf ? if_lookup_by_name(ifname, vrf->vrf_id) : NULL;
f88647ef
QY
1622}
1623
a4bed468
RW
1624/*
1625 * XPath: /frr-interface:lib/interface/description
1626 */
1627static int lib_interface_description_modify(enum nb_event event,
1628 const struct lyd_node *dnode,
1629 union nb_resource *resource)
1630{
8f90d89b
RW
1631 struct interface *ifp;
1632 const char *description;
1633
1634 if (event != NB_EV_APPLY)
1635 return NB_OK;
1636
ccd43ada 1637 ifp = nb_running_get_entry(dnode, NULL, true);
0a22ddfb 1638 XFREE(MTYPE_TMP, ifp->desc);
8f90d89b
RW
1639 description = yang_dnode_get_string(dnode, NULL);
1640 ifp->desc = XSTRDUP(MTYPE_TMP, description);
1641
a4bed468
RW
1642 return NB_OK;
1643}
1644
6a3fdeec
RW
1645static int lib_interface_description_destroy(enum nb_event event,
1646 const struct lyd_node *dnode)
a4bed468 1647{
8f90d89b
RW
1648 struct interface *ifp;
1649
1650 if (event != NB_EV_APPLY)
1651 return NB_OK;
1652
ccd43ada 1653 ifp = nb_running_get_entry(dnode, NULL, true);
0a22ddfb 1654 XFREE(MTYPE_TMP, ifp->desc);
8f90d89b 1655
a4bed468
RW
1656 return NB_OK;
1657}
1658
1659/* clang-format off */
fa751d15
DL
1660
1661#if defined(__GNUC__) && ((__GNUC__ - 0) < 5) && !defined(__clang__)
1662/* gcc versions before 5.x miscalculate the size for structs with variable
1663 * length arrays (they just count it as size 0)
1664 */
1665struct frr_yang_module_info_size3 {
1666 /* YANG module name. */
1667 const char *name;
1668
1669 /* Northbound callbacks. */
1670 const struct {
1671 /* Data path of this YANG node. */
1672 const char *xpath;
1673
1674 /* Callbacks implemented for this node. */
1675 struct nb_callbacks cbs;
1676
1677 /* Priority - lower priorities are processed first. */
1678 uint32_t priority;
1679 } nodes[3];
1680};
1681
1682const struct frr_yang_module_info_size3 frr_interface_info_size3 asm("frr_interface_info") = {
1683#else
a4bed468 1684const struct frr_yang_module_info frr_interface_info = {
fa751d15 1685#endif
a4bed468
RW
1686 .name = "frr-interface",
1687 .nodes = {
1688 {
1689 .xpath = "/frr-interface:lib/interface",
53280f93
DL
1690 .cbs = {
1691 .create = lib_interface_create,
1692 .destroy = lib_interface_destroy,
1693 .cli_show = cli_show_interface,
f88647ef
QY
1694 .get_next = lib_interface_get_next,
1695 .get_keys = lib_interface_get_keys,
1696 .lookup_entry = lib_interface_lookup_entry,
53280f93 1697 },
a4bed468
RW
1698 },
1699 {
1700 .xpath = "/frr-interface:lib/interface/description",
53280f93
DL
1701 .cbs = {
1702 .modify = lib_interface_description_modify,
1703 .destroy = lib_interface_description_destroy,
1704 .cli_show = cli_show_interface_desc,
1705 },
a4bed468
RW
1706 },
1707 {
1708 .xpath = NULL,
1709 },
1710 }
1711};