1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Interface functions.
* Copyright (C) 1997, 98 Kunihiro Ishiguro
*/
#include <zebra.h>
#include <net/if.h>
#ifdef GNU_LINUX
#include <linux/if.h>
#endif /* GNU_LINUX */
#include "linklist.h"
#include "vector.h"
#include "lib_errors.h"
#include "vty.h"
#include "command.h"
#include "vrf.h"
#include "if.h"
#include "sockunion.h"
#include "prefix.h"
#include "memory.h"
#include "table.h"
#include "buffer.h"
#include "log.h"
#include "northbound_cli.h"
#include "admin_group.h"
#include "lib/if_clippy.c"
/* Set by the owner (zebra). */
bool if_notify_oper_changes;
DEFINE_MTYPE_STATIC(LIB, IF, "Interface");
DEFINE_MTYPE_STATIC(LIB, IFDESC, "Intf Desc");
DEFINE_MTYPE_STATIC(LIB, CONNECTED, "Connected");
DEFINE_MTYPE_STATIC(LIB, NBR_CONNECTED, "Neighbor Connected");
DEFINE_MTYPE(LIB, CONNECTED_LABEL, "Connected interface label");
DEFINE_MTYPE_STATIC(LIB, IF_LINK_PARAMS, "Informational Link Parameters");
static void if_set_name(struct interface *ifp, const char *name);
static struct interface *if_lookup_by_ifindex(ifindex_t ifindex,
vrf_id_t vrf_id);
static struct interface *if_lookup_by_index_all_vrf(ifindex_t ifindex);
static int if_cmp_index_func(const struct interface *ifp1,
const struct interface *ifp2);
RB_GENERATE(if_name_head, interface, name_entry, if_cmp_func);
RB_GENERATE(if_index_head, interface, index_entry, if_cmp_index_func);
DEFINE_QOBJ_TYPE(interface);
DEFINE_HOOK(if_add, (struct interface *ifp), (ifp));
DEFINE_KOOH(if_del, (struct interface *ifp), (ifp));
DEFINE_HOOK(if_real, (struct interface *ifp), (ifp));
DEFINE_KOOH(if_unreal, (struct interface *ifp), (ifp));
DEFINE_HOOK(if_up, (struct interface *ifp), (ifp));
DEFINE_KOOH(if_down, (struct interface *ifp), (ifp));
/* Compare interface names, returning an integer greater than, equal to, or
* less than 0, (following the strcmp convention), according to the
* relationship between ifp1 and ifp2. Interface names consist of an
* alphabetic prefix and a numeric suffix. The primary sort key is
* lexicographic by name, and then numeric by number. No number sorts
* before all numbers. Examples: de0 < de1, de100 < fxp0 < xl0, devpty <
* devpty0, de0 < del0
*/
int if_cmp_name_func(const char *p1, const char *p2)
{
unsigned int l1, l2;
long int x1, x2;
int res;
while (*p1 && *p2) {
char *tmp1, *tmp2;
/* look up to any number */
l1 = strcspn(p1, "0123456789");
l2 = strcspn(p2, "0123456789");
/* name lengths are different -> compare names */
if (l1 != l2)
return (strcmp(p1, p2));
/* Note that this relies on all numbers being less than all
* letters, so
* that de0 < del0.
*/
res = strncmp(p1, p2, l1);
/* names are different -> compare them */
if (res)
return res;
/* with identical name part, go to numeric part */
p1 += l1;
p2 += l1;
if (!*p1 && !*p2)
return 0;
if (!*p1)
return -1;
if (!*p2)
return 1;
x1 = strtol(p1, &tmp1, 10);
x2 = strtol(p2, &tmp2, 10);
/* let's compare numbers now */
if (x1 < x2)
return -1;
if (x1 > x2)
return 1;
/* Compare string if numbers are equal (distinguish foo-1 from foo-001) */
l1 = strspn(p1, "0123456789");
l2 = strspn(p2, "0123456789");
if (l1 != l2)
return (strcmp(p1, p2));
/* Continue to parse the rest of the string */
p1 = (const char *)tmp1;
p2 = (const char *)tmp2;
/* numbers were equal, lets do it again..
(it happens with name like "eth123.456:789") */
}
if (*p1)
return 1;
if (*p2)
return -1;
return 0;
}
int if_cmp_func(const struct interface *ifp1, const struct interface *ifp2)
{
return if_cmp_name_func(ifp1->name, ifp2->name);
}
static int if_cmp_index_func(const struct interface *ifp1,
const struct interface *ifp2)
{
if (ifp1->ifindex == ifp2->ifindex)
return 0;
else if (ifp1->ifindex > ifp2->ifindex)
return 1;
else
return -1;
}
static void ifp_connected_free(void *arg)
{
struct connected *c = arg;
connected_free(&c);
}
/* Create new interface structure. */
static struct interface *if_new(struct vrf *vrf)
{
struct interface *ifp;
assert(vrf);
ifp = XCALLOC(MTYPE_IF, sizeof(struct interface));
ifp->ifindex = IFINDEX_INTERNAL;
ifp->name[0] = '\0';
ifp->vrf = vrf;
if_connected_init(ifp->connected);
ifp->nbr_connected = list_new();
ifp->nbr_connected->del = (void (*)(void *))nbr_connected_free;
/* Enable Link-detection by default */
SET_FLAG(ifp->status, ZEBRA_INTERFACE_LINKDETECTION);
QOBJ_REG(ifp, interface);
return ifp;
}
void if_new_via_zapi(struct interface *ifp)
{
hook_call(if_real, ifp);
}
void if_destroy_via_zapi(struct interface *ifp)
{
hook_call(if_unreal, ifp);
ifp->oldifindex = ifp->ifindex;
if_set_index(ifp, IFINDEX_INTERNAL);
if (!ifp->configured)
if_delete(&ifp);
}
void if_up_via_zapi(struct interface *ifp)
{
hook_call(if_up, ifp);
}
void if_down_via_zapi(struct interface *ifp)
{
hook_call(if_down, ifp);
}
void if_update_state_metric(struct interface *ifp, uint32_t metric)
{
if (ifp->metric == metric)
return;
ifp->metric = metric;
if (ifp->state && if_notify_oper_changes)
nb_op_updatef(ifp->state, "metric", "%u", ifp->metric);
}
void if_update_state_mtu(struct interface *ifp, uint mtu)
{
if (ifp->mtu == mtu)
return;
ifp->mtu = mtu;
if (ifp->state && if_notify_oper_changes)
nb_op_updatef(ifp->state, "mtu", "%u", ifp->mtu);
}
void if_update_state_mtu6(struct interface *ifp, uint mtu)
{
if (ifp->mtu6 == mtu)
return;
ifp->mtu6 = mtu;
if (ifp->state && if_notify_oper_changes)
nb_op_updatef(ifp->state, "mtu6", "%u", ifp->mtu);
}
void if_update_state_hw_addr(struct interface *ifp, const uint8_t *hw_addr, uint len)
{
if (len == (uint)ifp->hw_addr_len && (len == 0 || !memcmp(hw_addr, ifp->hw_addr, len)))
return;
memcpy(ifp->hw_addr, hw_addr, len);
ifp->hw_addr_len = len;
if (ifp->state && if_notify_oper_changes)
nb_op_updatef(ifp->state, "phy-address", "%pEA", (struct ethaddr *)ifp->hw_addr);
}
void if_update_state_speed(struct interface *ifp, uint32_t speed)
{
if (ifp->speed == speed)
return;
ifp->speed = speed;
if (ifp->state && if_notify_oper_changes)
nb_op_updatef(ifp->state, "speed", "%u", ifp->speed);
}
void if_update_state(struct interface *ifp)
{
struct lyd_node *state = ifp->state;
if (!state || !if_notify_oper_changes)
return;
/*
* Remove top level container update when we have patch support, for now
* this keeps us from generating 6 separate REPLACE messages though.
*/
// nb_op_update(state, ".", NULL);
nb_op_updatef(state, "if-index", "%d", ifp->ifindex);
nb_op_updatef(state, "mtu", "%u", ifp->mtu);
nb_op_updatef(state, "mtu6", "%u", ifp->mtu);
nb_op_updatef(state, "speed", "%u", ifp->speed);
nb_op_updatef(state, "metric", "%u", ifp->metric);
nb_op_updatef(state, "phy-address", "%pEA", (struct ethaddr *)ifp->hw_addr);
}
static void if_update_state_remove(struct interface *ifp)
{
if (!if_notify_oper_changes || ifp->name[0] == 0)
return;
if (vrf_is_backend_netns())
nb_op_update_delete_pathf(NULL, "/frr-interface:lib/interface[name=\"%s:%s\"]/state",
ifp->vrf->name, ifp->name);
else
nb_op_update_delete_pathf(NULL, "/frr-interface:lib/interface[name=\"%s\"]/state",
ifp->name);
if (ifp->state) {
lyd_free_all(ifp->state);
ifp->state = NULL;
}
}
static void if_update_state_add(struct interface *ifp)
{
if (!if_notify_oper_changes || ifp->name[0] == 0)
return;
if (vrf_is_backend_netns())
ifp->state = nb_op_update_pathf(NULL,
"/frr-interface:lib/interface[name=\"%s:%s\"]/state",
NULL, ifp->vrf->name, ifp->name);
else
ifp->state = nb_op_update_pathf(NULL,
"/frr-interface:lib/interface[name=\"%s\"]/state",
NULL, ifp->name);
}
static struct interface *if_create_name(const char *name, struct vrf *vrf)
{
struct interface *ifp;
ifp = if_new(vrf);
if_set_name(ifp, name);
if (if_notify_oper_changes && ifp->state)
if_update_state(ifp);
hook_call(if_add, ifp);
return ifp;
}
/* Create new interface structure. */
void if_update_to_new_vrf(struct interface *ifp, vrf_id_t vrf_id)
{
struct vrf *old_vrf, *vrf;
/* remove interface from old master vrf list */
old_vrf = ifp->vrf;
if (ifp->name[0] != '\0') {
IFNAME_RB_REMOVE(old_vrf, ifp);
if_update_state_remove(ifp);
}
if (ifp->ifindex != IFINDEX_INTERNAL)
IFINDEX_RB_REMOVE(old_vrf, ifp);
vrf = vrf_get(vrf_id, NULL);
ifp->vrf = vrf;
if (ifp->name[0] != '\0') {
IFNAME_RB_INSERT(vrf, ifp);
if_update_state_add(ifp);
if_update_state(ifp);
}
if (ifp->ifindex != IFINDEX_INTERNAL)
IFINDEX_RB_INSERT(vrf, ifp);
}
/* Delete interface structure. */
void if_delete_retain(struct interface *ifp)
{
struct connected *ifc;
hook_call(if_del, ifp);
QOBJ_UNREG(ifp);
/* Free connected address list */
while ((ifc = if_connected_pop(ifp->connected)))
ifp_connected_free(ifc);
/* Free connected nbr address list */
list_delete_all_node(ifp->nbr_connected);
}
/* Delete and free interface structure. */
void if_delete(struct interface **ifp)
{
struct interface *ptr = *ifp;
struct vrf *vrf = ptr->vrf;
IFNAME_RB_REMOVE(vrf, ptr);
if (ptr->ifindex != IFINDEX_INTERNAL)
IFINDEX_RB_REMOVE(vrf, ptr);
if_delete_retain(ptr);
if_connected_fini(ptr->connected);
list_delete(&ptr->nbr_connected);
if_link_params_free(ptr);
XFREE(MTYPE_IFDESC, ptr->desc);
if_update_state_remove(ptr);
XFREE(MTYPE_IF, ptr);
*ifp = NULL;
}
/* Used only internally to check within VRF only */
static struct interface *if_lookup_by_ifindex(ifindex_t ifindex,
vrf_id_t vrf_id)
{
struct vrf *vrf;
struct interface if_tmp;
vrf = vrf_lookup_by_id(vrf_id);
if (!vrf)
return NULL;
if_tmp.ifindex = ifindex;
return RB_FIND(if_index_head, &vrf->ifaces_by_index, &if_tmp);
}
/* Interface existence check by index. */
struct interface *if_lookup_by_index(ifindex_t ifindex, vrf_id_t vrf_id)
{
switch (vrf_get_backend()) {
case VRF_BACKEND_NETNS:
return(if_lookup_by_ifindex(ifindex, vrf_id));
case VRF_BACKEND_VRF_LITE:
return(if_lookup_by_index_all_vrf(ifindex));
}
return NULL;
}
/* Interface existence check by index. */
struct interface *if_vrf_lookup_by_index_next(ifindex_t ifindex,
vrf_id_t vrf_id)
{
struct vrf *vrf = vrf_lookup_by_id(vrf_id);
struct interface *tmp_ifp;
bool found = false;
if (!vrf)
return NULL;
if (ifindex == 0) {
tmp_ifp = RB_MIN(if_index_head, &vrf->ifaces_by_index);
/* skip the vrf interface */
if (tmp_ifp && if_is_vrf(tmp_ifp))
ifindex = tmp_ifp->ifindex;
else
return tmp_ifp;
}
RB_FOREACH (tmp_ifp, if_index_head, &vrf->ifaces_by_index) {
if (found) {
/* skip the vrf interface */
if (tmp_ifp && if_is_vrf(tmp_ifp))
continue;
else
return tmp_ifp;
}
if (tmp_ifp->ifindex == ifindex)
found = true;
}
return NULL;
}
const char *ifindex2ifname(ifindex_t ifindex, vrf_id_t vrf_id)
{
struct interface *ifp;
return ((ifp = if_lookup_by_index(ifindex, vrf_id)) != NULL)
? ifp->name
: "unknown";
}
ifindex_t ifname2ifindex(const char *name, vrf_id_t vrf_id)
{
struct interface *ifp;
return ((ifp = if_lookup_by_name(name, vrf_id)) != NULL)
? ifp->ifindex
: IFINDEX_INTERNAL;
}
/* Interface existence check by interface name. */
struct interface *if_lookup_by_name(const char *name, vrf_id_t vrf_id)
{
struct vrf *vrf = vrf_lookup_by_id(vrf_id);
struct interface if_tmp;
if (!vrf || !name || strnlen(name, IFNAMSIZ) == IFNAMSIZ)
return NULL;
strlcpy(if_tmp.name, name, sizeof(if_tmp.name));
return RB_FIND(if_name_head, &vrf->ifaces_by_name, &if_tmp);
}
struct interface *if_lookup_by_name_vrf(const char *name, struct vrf *vrf)
{
struct interface if_tmp;
if (!name || strnlen(name, IFNAMSIZ) == IFNAMSIZ)
return NULL;
strlcpy(if_tmp.name, name, sizeof(if_tmp.name));
return RB_FIND(if_name_head, &vrf->ifaces_by_name, &if_tmp);
}
static struct interface *if_lookup_by_name_all_vrf(const char *name)
{
struct vrf *vrf;
struct interface *ifp;
if (!name || strnlen(name, IFNAMSIZ) == IFNAMSIZ)
return NULL;
RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
ifp = if_lookup_by_name_vrf(name, vrf);
if (ifp)
return ifp;
}
return NULL;
}
static struct interface *if_lookup_by_index_all_vrf(ifindex_t ifindex)
{
struct vrf *vrf;
struct interface *ifp;
if (ifindex == IFINDEX_INTERNAL)
return NULL;
RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
ifp = if_lookup_by_ifindex(ifindex, vrf->vrf_id);
if (ifp)
return ifp;
}
return NULL;
}
/* Lookup interface by IP address.
*
* supersedes if_lookup_exact_address(), which didn't care about up/down
* state. but all users we have either only care if the address is local
* (=> use if_address_is_local() please), or care about UP interfaces before
* anything else
*
* to accept only UP interfaces, check if_is_up() on the returned ifp.
*/
struct interface *if_lookup_address_local(const void *src, int family,
vrf_id_t vrf_id)
{
struct vrf *vrf = vrf_lookup_by_id(vrf_id);
struct interface *ifp, *best_down = NULL;
struct prefix *p;
struct connected *c;
if (family != AF_INET && family != AF_INET6)
return NULL;
FOR_ALL_INTERFACES (vrf, ifp) {
frr_each (if_connected, ifp->connected, c) {
p = c->address;
if (!p || p->family != family)
continue;
if (family == AF_INET) {
if (!IPV4_ADDR_SAME(&p->u.prefix4,
(struct in_addr *)src))
continue;
} else if (family == AF_INET6) {
if (!IPV6_ADDR_SAME(&p->u.prefix6,
(struct in6_addr *)src))
continue;
}
if (if_is_up(ifp))
return ifp;
if (!best_down)
best_down = ifp;
}
}
return best_down;
}
/* Lookup interface by IP address. */
struct connected *if_lookup_address(const void *matchaddr, int family,
vrf_id_t vrf_id)
{
struct vrf *vrf = vrf_lookup_by_id(vrf_id);
struct prefix addr;
int bestlen = 0;
struct interface *ifp;
struct connected *c;
struct connected *match;
if (family == AF_INET) {
addr.family = AF_INET;
addr.u.prefix4 = *((struct in_addr *)matchaddr);
addr.prefixlen = IPV4_MAX_BITLEN;
} else if (family == AF_INET6) {
addr.family = AF_INET6;
addr.u.prefix6 = *((struct in6_addr *)matchaddr);
addr.prefixlen = IPV6_MAX_BITLEN;
} else
assert(!"Attempted lookup of family not supported");
match = NULL;
FOR_ALL_INTERFACES (vrf, ifp) {
frr_each (if_connected, ifp->connected, c) {
if (c->address && (c->address->family == AF_INET)
&& prefix_match(CONNECTED_PREFIX(c), &addr)
&& (c->address->prefixlen > bestlen)) {
bestlen = c->address->prefixlen;
match = c;
}
}
}
return match;
}
/* Lookup interface by prefix */
struct interface *if_lookup_prefix(const struct prefix *prefix, vrf_id_t vrf_id)
{
struct vrf *vrf = vrf_lookup_by_id(vrf_id);
struct interface *ifp;
struct connected *c;
FOR_ALL_INTERFACES (vrf, ifp) {
frr_each (if_connected, ifp->connected, c) {
if (prefix_cmp(c->address, prefix) == 0) {
return ifp;
}
}
}
return NULL;
}
size_t if_lookup_by_hwaddr(const uint8_t *hw_addr, size_t addrsz,
struct interface ***result, vrf_id_t vrf_id)
{
struct vrf *vrf = vrf_lookup_by_id(vrf_id);
struct list *rs = list_new();
struct interface *ifp;
FOR_ALL_INTERFACES (vrf, ifp) {
if (ifp->hw_addr_len == (int)addrsz
&& !memcmp(hw_addr, ifp->hw_addr, addrsz))
listnode_add(rs, ifp);
}
if (rs->count) {
*result = XCALLOC(MTYPE_TMP,
sizeof(struct interface *) * rs->count);
list_to_array(rs, (void **)*result, rs->count);
}
int count = rs->count;
list_delete(&rs);
return count;
}
/* Get the VRF loopback interface, i.e. the loopback on the default VRF
* or the VRF interface.
*/
struct interface *if_get_vrf_loopback(vrf_id_t vrf_id)
{
struct interface *ifp = NULL;
struct vrf *vrf = vrf_lookup_by_id(vrf_id);
FOR_ALL_INTERFACES (vrf, ifp)
if (if_is_loopback(ifp))
return ifp;
return NULL;
}
/* Get interface by name if given name interface doesn't exist create
one. */
struct interface *if_get_by_name(const char *name, vrf_id_t vrf_id,
const char *vrf_name)
{
struct interface *ifp = NULL;
struct vrf *vrf;
switch (vrf_get_backend()) {
case VRF_BACKEND_NETNS:
vrf = vrf_get(vrf_id, vrf_name);
assert(vrf);
ifp = if_lookup_by_name_vrf(name, vrf);
if (ifp) {
/* If it came from the kernel or by way of zclient,
* believe it and update the ifp accordingly.
*/
if (ifp->vrf->vrf_id != vrf_id && vrf_id != VRF_UNKNOWN)
if_update_to_new_vrf(ifp, vrf_id);
return ifp;
}
break;
case VRF_BACKEND_VRF_LITE:
ifp = if_lookup_by_name_all_vrf(name);
if (ifp) {
/* If it came from the kernel or by way of zclient,
* believe it and update the ifp accordingly.
*/
if (ifp->vrf->vrf_id != vrf_id && vrf_id != VRF_UNKNOWN)
if_update_to_new_vrf(ifp, vrf_id);
return ifp;
}
vrf = vrf_get(vrf_id, vrf_name);
assert(vrf);
break;
default:
return NULL;
}
return if_create_name(name, vrf);
}
int if_set_index(struct interface *ifp, ifindex_t ifindex)
{
if (ifp->ifindex == ifindex)
return 0;
/*
* If there is already an interface with this ifindex, we will collide
* on insertion, so don't even try.
*/
if (if_lookup_by_ifindex(ifindex, ifp->vrf->vrf_id))
return -1;
if (ifp->ifindex != IFINDEX_INTERNAL)
IFINDEX_RB_REMOVE(ifp->vrf, ifp);
ifp->ifindex = ifindex;
if (if_notify_oper_changes)
nb_op_updatef(ifp->state, "if-index", "%d", ifp->ifindex);
if (ifp->ifindex != IFINDEX_INTERNAL) {
/*
* This should never happen, since we checked if there was
* already an interface with the desired ifindex at the top of
* the function. Nevertheless.
*/
if (IFINDEX_RB_INSERT(ifp->vrf, ifp))
return -1;
}
return 0;
}
static void if_set_name(struct interface *ifp, const char *name)
{
if (if_cmp_name_func(ifp->name, name) == 0)
return;
if (ifp->name[0] != '\0') {
IFNAME_RB_REMOVE(ifp->vrf, ifp);
if_update_state_remove(ifp);
}
strlcpy(ifp->name, name, sizeof(ifp->name));
if (ifp->name[0] != '\0') {
IFNAME_RB_INSERT(ifp->vrf, ifp);
if_update_state_add(ifp);
}
}
/* Does interface up ? */
int if_is_up(const struct interface *ifp)
{
return ifp->flags & IFF_UP;
}
/* Is interface running? */
int if_is_running(const struct interface *ifp)
{
return ifp->flags & IFF_RUNNING;
}
/* Is the interface operative, eg. either UP & RUNNING
or UP & !ZEBRA_INTERFACE_LINK_DETECTION and
if ptm checking is enabled, then ptm check has passed */
int if_is_operative(const struct interface *ifp)
{
return ((ifp->flags & IFF_UP) &&
(((ifp->flags & IFF_RUNNING)
#ifdef IFF_LOWER_UP
&& (ifp->flags & IFF_LOWER_UP)
#endif /* IFF_LOWER_UP */
&& (ifp->ptm_status || !ifp->ptm_enable)) ||
!CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_LINKDETECTION)));
}
/* Is the interface operative, eg. either UP & RUNNING
or UP & !ZEBRA_INTERFACE_LINK_DETECTION, without PTM check */
int if_is_no_ptm_operative(const struct interface *ifp)
{
return ((ifp->flags & IFF_UP) &&
(((ifp->flags & IFF_RUNNING)
#ifdef IFF_LOWER_UP
&& (ifp->flags & IFF_LOWER_UP)
#endif /* IFF_LOWER_UP */
) ||
!CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_LINKDETECTION)));
}
/* Is this loopback interface ? */
int if_is_loopback_exact(const struct interface *ifp)
{
/* XXX: Do this better, eg what if IFF_WHATEVER means X on platform M
* but Y on platform N?
*/
return (ifp->flags & (IFF_LOOPBACK | IFF_NOXMIT | IFF_VIRTUAL));
}
/* Check interface is VRF */
int if_is_vrf(const struct interface *ifp)
{
return CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_VRF_LOOPBACK);
}
/* Should this interface be treated as a loopback? */
bool if_is_loopback(const struct interface *ifp)
{
if (if_is_loopback_exact(ifp) || if_is_vrf(ifp))
return true;
return false;
}
/* Does this interface support broadcast ? */
int if_is_broadcast(const struct interface *ifp)
{
return ifp->flags & IFF_BROADCAST;
}
/* Does this interface support pointopoint ? */
int if_is_pointopoint(const struct interface *ifp)
{
return ifp->flags & IFF_POINTOPOINT;
}
/* Does this interface support multicast ? */
int if_is_multicast(const struct interface *ifp)
{
return ifp->flags & IFF_MULTICAST;
}
/* Printout flag information into log */
const char *if_flag_dump(unsigned long flag)
{
int separator = 0;
static char logbuf[BUFSIZ];
#define IFF_OUT_LOG(X, STR) \
if (flag & (X)) { \
if (separator) \
strlcat(logbuf, ",", sizeof(logbuf)); \
else \
separator = 1; \
strlcat(logbuf, STR, sizeof(logbuf)); \
}
strlcpy(logbuf, "<", BUFSIZ);
IFF_OUT_LOG(IFF_UP, "UP");
#ifdef IFF_LOWER_UP
IFF_OUT_LOG(IFF_LOWER_UP, "LOWER_UP");
#endif /* IFF_LOWER_UP */
IFF_OUT_LOG(IFF_BROADCAST, "BROADCAST");
IFF_OUT_LOG(IFF_DEBUG, "DEBUG");
IFF_OUT_LOG(IFF_LOOPBACK, "LOOPBACK");
IFF_OUT_LOG(IFF_POINTOPOINT, "POINTOPOINT");
IFF_OUT_LOG(IFF_NOTRAILERS, "NOTRAILERS");
IFF_OUT_LOG(IFF_RUNNING, "RUNNING");
IFF_OUT_LOG(IFF_NOARP, "NOARP");
IFF_OUT_LOG(IFF_PROMISC, "PROMISC");
IFF_OUT_LOG(IFF_ALLMULTI, "ALLMULTI");
IFF_OUT_LOG(IFF_OACTIVE, "OACTIVE");
IFF_OUT_LOG(IFF_SIMPLEX, "SIMPLEX");
IFF_OUT_LOG(IFF_LINK0, "LINK0");
IFF_OUT_LOG(IFF_LINK1, "LINK1");
IFF_OUT_LOG(IFF_LINK2, "LINK2");
IFF_OUT_LOG(IFF_MULTICAST, "MULTICAST");
IFF_OUT_LOG(IFF_NOXMIT, "NOXMIT");
IFF_OUT_LOG(IFF_NORTEXCH, "NORTEXCH");
IFF_OUT_LOG(IFF_VIRTUAL, "VIRTUAL");
IFF_OUT_LOG(IFF_IPV4, "IPv4");
IFF_OUT_LOG(IFF_IPV6, "IPv6");
strlcat(logbuf, ">", sizeof(logbuf));
return logbuf;
#undef IFF_OUT_LOG
}
/* For debugging */
static void if_dump(const struct interface *ifp)
{
const struct connected *c;
frr_each (if_connected_const, ifp->connected, c)
zlog_info(
"Interface %s vrf %s(%u) index %d metric %d mtu %d mtu6 %d %s",
ifp->name, ifp->vrf->name, ifp->vrf->vrf_id,
ifp->ifindex, ifp->metric, ifp->mtu, ifp->mtu6,
if_flag_dump(ifp->flags));
}
/* Interface printing for all interface. */
void if_dump_all(void)
{
struct vrf *vrf;
void *ifp;
RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id)
FOR_ALL_INTERFACES (vrf, ifp)
if_dump(ifp);
}
/* Allocate connected structure. */
struct connected *connected_new(void)
{
return XCALLOC(MTYPE_CONNECTED, sizeof(struct connected));
}
/* Allocate nbr connected structure. */
struct nbr_connected *nbr_connected_new(void)
{
return XCALLOC(MTYPE_NBR_CONNECTED, sizeof(struct nbr_connected));
}
/* Free connected structure. */
void connected_free(struct connected **connected)
{
struct connected *ptr = *connected;
prefix_free(&ptr->address);
prefix_free(&ptr->destination);
XFREE(MTYPE_CONNECTED_LABEL, ptr->label);
XFREE(MTYPE_CONNECTED, ptr);
*connected = NULL;
}
/* Free nbr connected structure. */
void nbr_connected_free(struct nbr_connected *connected)
{
if (connected->address)
prefix_free(&connected->address);
XFREE(MTYPE_NBR_CONNECTED, connected);
}
/* If same interface nbr address already exists... */
struct nbr_connected *nbr_connected_check(struct interface *ifp,
struct prefix *p)
{
struct nbr_connected *ifc;
struct listnode *node;
for (ALL_LIST_ELEMENTS_RO(ifp->nbr_connected, node, ifc))
if (prefix_same(ifc->address, p))
return ifc;
return NULL;
}
/* count the number of connected addresses that are in the given family */
unsigned int connected_count_by_family(struct interface *ifp, int family)
{
struct connected *connected;
unsigned int cnt = 0;
frr_each (if_connected, ifp->connected, connected)
if (connected->address->family == family)
cnt++;
return cnt;
}
struct connected *connected_lookup_prefix_exact(struct interface *ifp,
const struct prefix *p)
{
struct connected *ifc;
frr_each (if_connected, ifp->connected, ifc) {
if (prefix_same(ifc->address, p))
return ifc;
}
return NULL;
}
struct connected *connected_delete_by_prefix(struct interface *ifp,
struct prefix *p)
{
struct connected *ifc;
/* In case of same prefix come, replace it with new one. */
frr_each_safe (if_connected, ifp->connected, ifc) {
if (prefix_same(ifc->address, p)) {
if_connected_del(ifp->connected, ifc);
return ifc;
}
}
return NULL;
}
/* Find the address on our side that will be used when packets
are sent to dst. */
struct connected *connected_lookup_prefix(struct interface *ifp,
const struct prefix *addr)
{
struct connected *c;
struct connected *match;
match = NULL;
frr_each (if_connected, ifp->connected, c) {
if (c->address && (c->address->family == addr->family)
&& prefix_match(CONNECTED_PREFIX(c), addr)
&& (!match
|| (c->address->prefixlen > match->address->prefixlen)))
match = c;
}
return match;
}
struct connected *connected_add_by_prefix(struct interface *ifp,
struct prefix *p,
struct prefix *destination)
{
struct connected *ifc;
/* Allocate new connected address. */
ifc = connected_new();
ifc->ifp = ifp;
/* Fetch interface address */
ifc->address = prefix_new();
memcpy(ifc->address, p, sizeof(struct prefix));
/* Fetch dest address */
if (destination) {
ifc->destination = prefix_new();
memcpy(ifc->destination, destination, sizeof(struct prefix));
}
/* Add connected address to the interface. */
if_connected_add_tail(ifp->connected, ifc);
return ifc;
}
struct connected *connected_get_linklocal(struct interface *ifp)
{
struct connected *c = NULL;
frr_each (if_connected, ifp->connected, c) {
if (c->address->family == AF_INET6
&& IN6_IS_ADDR_LINKLOCAL(&c->address->u.prefix6))
break;
}
return c;
}
void if_terminate(struct vrf *vrf)
{
struct interface *ifp;
while (!RB_EMPTY(if_name_head, &vrf->ifaces_by_name)) {
ifp = RB_ROOT(if_name_head, &vrf->ifaces_by_name);
if_delete(&ifp);
}
}
const char *if_link_type_str(enum zebra_link_type llt)
{
switch (llt) {
#define llts(T,S) case (T): return (S)
llts(ZEBRA_LLT_UNKNOWN, "Unknown");
llts(ZEBRA_LLT_ETHER, "Ethernet");
llts(ZEBRA_LLT_EETHER, "Experimental Ethernet");
llts(ZEBRA_LLT_AX25, "AX.25 Level 2");
llts(ZEBRA_LLT_PRONET, "PROnet token ring");
llts(ZEBRA_LLT_IEEE802, "IEEE 802.2 Ethernet/TR/TB");
llts(ZEBRA_LLT_ARCNET, "ARCnet");
llts(ZEBRA_LLT_APPLETLK, "AppleTalk");
llts(ZEBRA_LLT_DLCI, "Frame Relay DLCI");
llts(ZEBRA_LLT_ATM, "ATM");
llts(ZEBRA_LLT_METRICOM, "Metricom STRIP");
llts(ZEBRA_LLT_IEEE1394, "IEEE 1394 IPv4");
llts(ZEBRA_LLT_EUI64, "EUI-64");
llts(ZEBRA_LLT_INFINIBAND, "InfiniBand");
llts(ZEBRA_LLT_SLIP, "SLIP");
llts(ZEBRA_LLT_CSLIP, "Compressed SLIP");
llts(ZEBRA_LLT_SLIP6, "SLIPv6");
llts(ZEBRA_LLT_CSLIP6, "Compressed SLIPv6");
llts(ZEBRA_LLT_RSRVD, "Reserved");
llts(ZEBRA_LLT_ADAPT, "Adapt");
llts(ZEBRA_LLT_ROSE, "ROSE packet radio");
llts(ZEBRA_LLT_X25, "CCITT X.25");
llts(ZEBRA_LLT_PPP, "PPP");
llts(ZEBRA_LLT_CHDLC, "Cisco HDLC");
llts(ZEBRA_LLT_RAWHDLC, "Raw HDLC");
llts(ZEBRA_LLT_LAPB, "LAPB");
llts(ZEBRA_LLT_IPIP, "IPIP Tunnel");
llts(ZEBRA_LLT_IPIP6, "IPIP6 Tunnel");
llts(ZEBRA_LLT_FRAD, "FRAD");
llts(ZEBRA_LLT_SKIP, "SKIP vif");
llts(ZEBRA_LLT_LOOPBACK, "Loopback");
llts(ZEBRA_LLT_LOCALTLK, "Localtalk");
llts(ZEBRA_LLT_FDDI, "FDDI");
llts(ZEBRA_LLT_SIT, "IPv6-in-IPv4 SIT");
llts(ZEBRA_LLT_IPDDP, "IP-in-DDP tunnel");
llts(ZEBRA_LLT_IPGRE, "GRE over IP");
llts(ZEBRA_LLT_IP6GRE, "GRE over IPv6");
llts(ZEBRA_LLT_PIMREG, "PIMSM registration");
llts(ZEBRA_LLT_HIPPI, "HiPPI");
llts(ZEBRA_LLT_ECONET, "Acorn Econet");
llts(ZEBRA_LLT_IRDA, "IrDA");
llts(ZEBRA_LLT_FCPP, "Fibre-Channel PtP");
llts(ZEBRA_LLT_FCAL, "Fibre-Channel Arbitrated Loop");
llts(ZEBRA_LLT_FCPL, "Fibre-Channel Public Loop");
llts(ZEBRA_LLT_FCFABRIC, "Fibre-Channel Fabric");
llts(ZEBRA_LLT_IEEE802_TR, "IEEE 802.2 Token Ring");
llts(ZEBRA_LLT_IEEE80211, "IEEE 802.11");
llts(ZEBRA_LLT_IEEE80211_RADIOTAP, "IEEE 802.11 Radiotap");
llts(ZEBRA_LLT_IEEE802154, "IEEE 802.15.4");
llts(ZEBRA_LLT_IEEE802154_PHY, "IEEE 802.15.4 Phy");
#undef llts
}
return NULL;
}
bool if_link_params_cmp(struct if_link_params *iflp1,
struct if_link_params *iflp2)
{
struct if_link_params iflp1_copy, iflp2_copy;
/* Extended admin-groups in if_link_params contain pointers.
* They cannot be compared with memcpy.
* Make copies of if_link_params without ext. admin-groups
* and compare separately the ext. admin-groups.
*/
memcpy(&iflp1_copy, iflp1, sizeof(struct if_link_params));
memset(&iflp1_copy.ext_admin_grp, 0, sizeof(struct admin_group));
memcpy(&iflp2_copy, iflp2, sizeof(struct if_link_params));
memset(&iflp2_copy.ext_admin_grp, 0, sizeof(struct admin_group));
if (memcmp(&iflp1_copy, &iflp2_copy, sizeof(struct if_link_params)))
return false;
if (!admin_group_cmp(&iflp1->ext_admin_grp, &iflp2->ext_admin_grp))
return false;
return true;
}
void if_link_params_copy(struct if_link_params *dst, struct if_link_params *src)
{
struct admin_group dst_ag;
/* backup the admin_group structure that contains a pointer */
memcpy(&dst_ag, &dst->ext_admin_grp, sizeof(struct admin_group));
/* copy the if_link_params structure */
memcpy(dst, src, sizeof(struct if_link_params));
/* restore the admin_group structure */
memcpy(&dst->ext_admin_grp, &dst_ag, sizeof(struct admin_group));
/* copy src->ext_admin_grp data to dst->ext_admin_grp data memory */
admin_group_copy(&dst->ext_admin_grp, &src->ext_admin_grp);
}
struct if_link_params *if_link_params_get(struct interface *ifp)
{
return ifp->link_params;
}
struct if_link_params *if_link_params_enable(struct interface *ifp)
{
struct if_link_params *iflp;
int i;
iflp = if_link_params_init(ifp);
/* Compute default bandwidth based on interface */
iflp->default_bw =
((ifp->bandwidth ? ifp->bandwidth : DEFAULT_BANDWIDTH)
* TE_MEGA_BIT / TE_BYTE);
/* Set Max, Reservable and Unreserved Bandwidth */
iflp->max_bw = iflp->default_bw;
iflp->max_rsv_bw = iflp->default_bw;
for (i = 0; i < MAX_CLASS_TYPE; i++)
iflp->unrsv_bw[i] = iflp->default_bw;
/* Update Link parameters status */
iflp->lp_status = LP_MAX_BW | LP_MAX_RSV_BW | LP_UNRSV_BW;
/* Set TE metric equal to standard metric only if it is set */
if (ifp->metric != 0) {
iflp->te_metric = ifp->metric;
iflp->lp_status |= LP_TE_METRIC;
}
/* Finally attach newly created Link Parameters */
ifp->link_params = iflp;
return iflp;
}
struct if_link_params *if_link_params_init(struct interface *ifp)
{
struct if_link_params *iflp = if_link_params_get(ifp);
if (iflp)
return iflp;
iflp = XCALLOC(MTYPE_IF_LINK_PARAMS, sizeof(struct if_link_params));
admin_group_init(&iflp->ext_admin_grp);
ifp->link_params = iflp;
return iflp;
}
void if_link_params_free(struct interface *ifp)
{
if (!ifp->link_params)
return;
admin_group_term(&ifp->link_params->ext_admin_grp);
XFREE(MTYPE_IF_LINK_PARAMS, ifp->link_params);
}
/* ----------- CLI commands ----------- */
/* Guess the VRF of an interface. */
static int vrfname_by_ifname(const char *ifname, const char **vrfname)
{
struct vrf *vrf;
struct interface *ifp;
int count = 0;
RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
FOR_ALL_INTERFACES (vrf, ifp) {
if (strmatch(ifp->name, ifname)) {
*vrfname = vrf->name;
count++;
}
}
}
return count;
}
/*
* XPath: /frr-interface:lib/interface
*/
DEFPY_YANG_NOSH (interface,
interface_cmd,
"interface IFNAME [vrf NAME$vrf_name]",
"Select an interface to configure\n"
"Interface's name\n"
VRF_CMD_HELP_STR)
{
char xpath_list[XPATH_MAXLEN];
struct interface *ifp;
struct vrf *vrf;
int ret, count;
if (vrf_is_backend_netns()) {
/*
* For backward compatibility, if the VRF name is not specified
* and there is exactly one interface with this name in the
* system, use its VRF. Otherwise fallback to the default VRF.
*/
if (!vrf_name) {
count = vrfname_by_ifname(ifname, &vrf_name);
if (count != 1)
vrf_name = VRF_DEFAULT_NAME;
}
snprintf(xpath_list, XPATH_MAXLEN,
"/frr-interface:lib/interface[name='%s:%s']", vrf_name,
ifname);
} else {
snprintf(xpath_list, XPATH_MAXLEN,
"/frr-interface:lib/interface[name='%s']", ifname);
}
nb_cli_enqueue_change(vty, ".", NB_OP_CREATE, NULL);
ret = nb_cli_apply_changes_clear_pending(vty, "%s", xpath_list);
if (ret == CMD_SUCCESS) {
VTY_PUSH_XPATH(INTERFACE_NODE, xpath_list);
/*
* For backward compatibility with old commands we still need
* to use the qobj infrastructure. This can be removed once
* all interface-level commands are converted to the new
* northbound model.
*/
if (vrf_is_backend_netns()) {
vrf = vrf_lookup_by_name(vrf_name);
if (vrf)
ifp = if_lookup_by_name_vrf(ifname, vrf);
else
ifp = NULL;
} else {
ifp = if_lookup_by_name_all_vrf(ifname);
}
if (ifp)
VTY_PUSH_CONTEXT(INTERFACE_NODE, ifp);
}
return ret;
}
DEFPY_YANG (no_interface,
no_interface_cmd,
"no interface IFNAME [vrf NAME$vrf_name]",
NO_STR
"Delete a pseudo interface's configuration\n"
"Interface's name\n"
VRF_CMD_HELP_STR)
{
char xpath_list[XPATH_MAXLEN];
int count;
if (vrf_is_backend_netns()) {
/*
* For backward compatibility, if the VRF name is not specified
* and there is exactly one interface with this name in the
* system, use its VRF. Otherwise fallback to the default VRF.
*/
if (!vrf_name) {
count = vrfname_by_ifname(ifname, &vrf_name);
if (count != 1)
vrf_name = VRF_DEFAULT_NAME;
}
snprintf(xpath_list, XPATH_MAXLEN,
"/frr-interface:lib/interface[name='%s:%s']", vrf_name,
ifname);
} else {
snprintf(xpath_list, XPATH_MAXLEN,
"/frr-interface:lib/interface[name='%s']", ifname);
}
nb_cli_enqueue_change(vty, ".", NB_OP_DESTROY, NULL);
return nb_cli_apply_changes(vty, "%s", xpath_list);
}
static void netns_ifname_split(const char *xpath, char *ifname, char *vrfname)
{
char *delim;
int len;
assert(vrf_is_backend_netns());
delim = strchr(xpath, ':');
assert(delim);
len = delim - xpath;
memcpy(vrfname, xpath, len);
vrfname[len] = 0;
strlcpy(ifname, delim + 1, XPATH_MAXLEN);
}
static void cli_show_interface(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults)
{
vty_out(vty, "!\n");
if (vrf_is_backend_netns()) {
char ifname[XPATH_MAXLEN];
char vrfname[XPATH_MAXLEN];
netns_ifname_split(yang_dnode_get_string(dnode, "name"),
ifname, vrfname);
vty_out(vty, "interface %s", ifname);
if (!strmatch(vrfname, VRF_DEFAULT_NAME))
vty_out(vty, " vrf %s", vrfname);
} else {
const char *ifname = yang_dnode_get_string(dnode, "name");
vty_out(vty, "interface %s", ifname);
}
vty_out(vty, "\n");
}
static void cli_show_interface_end(struct vty *vty,
const struct lyd_node *dnode)
{
vty_out(vty, "exit\n");
}
static int cli_cmp_interface(const struct lyd_node *dnode1,
const struct lyd_node *dnode2)
{
const char *ifname1 = yang_dnode_get_string(dnode1, "name");
const char *ifname2 = yang_dnode_get_string(dnode2, "name");
return if_cmp_name_func(ifname1, ifname2);
}
void if_vty_config_start(struct vty *vty, struct interface *ifp)
{
vty_frame(vty, "!\n");
vty_frame(vty, "interface %s", ifp->name);
if (vrf_is_backend_netns() && strcmp(ifp->vrf->name, VRF_DEFAULT_NAME))
vty_frame(vty, " vrf %s", ifp->vrf->name);
vty_frame(vty, "\n");
}
void if_vty_config_end(struct vty *vty)
{
vty_endframe(vty, "exit\n!\n");
}
/*
* XPath: /frr-interface:lib/interface/description
*/
DEFPY_YANG (interface_desc,
interface_desc_cmd,
"description LINE...",
"Interface specific description\n"
"Characters describing this interface\n")
{
char *desc;
int ret;
desc = argv_concat(argv, argc, 1);
nb_cli_enqueue_change(vty, "./description", NB_OP_MODIFY, desc);
ret = nb_cli_apply_changes(vty, NULL);
XFREE(MTYPE_TMP, desc);
return ret;
}
DEFPY_YANG (no_interface_desc,
no_interface_desc_cmd,
"no description",
NO_STR
"Interface specific description\n")
{
nb_cli_enqueue_change(vty, "./description", NB_OP_DESTROY, NULL);
return nb_cli_apply_changes(vty, NULL);
}
static void cli_show_interface_desc(struct vty *vty,
const struct lyd_node *dnode,
bool show_defaults)
{
vty_out(vty, " description %s\n", yang_dnode_get_string(dnode, NULL));
}
/* Interface autocomplete. */
static void if_autocomplete(vector comps, struct cmd_token *token)
{
struct interface *ifp;
struct vrf *vrf;
RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
FOR_ALL_INTERFACES (vrf, ifp) {
vector_set(comps, XSTRDUP(MTYPE_COMPLETION, ifp->name));
}
}
}
static const struct cmd_variable_handler if_var_handlers[] = {
{/* "interface NAME" */
.varname = "interface",
.completions = if_autocomplete},
{.tokenname = "IFNAME", .completions = if_autocomplete},
{.tokenname = "INTERFACE", .completions = if_autocomplete},
{.completions = NULL}};
static struct cmd_node interface_node = {
.name = "interface",
.node = INTERFACE_NODE,
.parent_node = CONFIG_NODE,
.prompt = "%s(config-if)# ",
};
static int if_config_write_single(const struct lyd_node *dnode, void *arg)
{
nb_cli_show_dnode_cmds(arg, dnode, false);
return YANG_ITER_CONTINUE;
}
static int if_nb_config_write(struct vty *vty)
{
yang_dnode_iterate(if_config_write_single, vty, running_config->dnode,
"/frr-interface:lib/interface");
return 1;
}
void if_cmd_init(int (*config_write)(struct vty *))
{
cmd_variable_handler_register(if_var_handlers);
interface_node.config_write = config_write;
install_node(&interface_node);
install_element(CONFIG_NODE, &interface_cmd);
install_element(CONFIG_NODE, &no_interface_cmd);
install_default(INTERFACE_NODE);
install_element(INTERFACE_NODE, &interface_desc_cmd);
install_element(INTERFACE_NODE, &no_interface_desc_cmd);
}
void if_cmd_init_default(void)
{
if_cmd_init(if_nb_config_write);
}
/* ------- Northbound callbacks ------- */
/*
* XPath: /frr-interface:lib/interface
*/
static int lib_interface_create(struct nb_cb_create_args *args)
{
const char *ifname;
struct interface *ifp;
ifname = yang_dnode_get_string(args->dnode, "name");
switch (args->event) {
case NB_EV_VALIDATE:
if (vrf_is_backend_netns()) {
char ifname_ns[XPATH_MAXLEN];
char vrfname_ns[XPATH_MAXLEN];
netns_ifname_split(ifname, ifname_ns, vrfname_ns);
if (strlen(ifname_ns) > 16) {
snprintf(
args->errmsg, args->errmsg_len,
"Maximum interface name length is 16 characters");
return NB_ERR_VALIDATION;
}
if (strlen(vrfname_ns) > 36) {
snprintf(
args->errmsg, args->errmsg_len,
"Maximum VRF name length is 36 characters");
return NB_ERR_VALIDATION;
}
} else {
if (strlen(ifname) > 16) {
snprintf(
args->errmsg, args->errmsg_len,
"Maximum interface name length is 16 characters");
return NB_ERR_VALIDATION;
}
}
break;
case NB_EV_PREPARE:
case NB_EV_ABORT:
break;
case NB_EV_APPLY:
if (vrf_is_backend_netns()) {
char ifname_ns[XPATH_MAXLEN];
char vrfname_ns[XPATH_MAXLEN];
netns_ifname_split(ifname, ifname_ns, vrfname_ns);
ifp = if_get_by_name(ifname_ns, VRF_UNKNOWN,
vrfname_ns);
} else {
ifp = if_get_by_name(ifname, VRF_UNKNOWN,
VRF_DEFAULT_NAME);
}
ifp->configured = true;
nb_running_set_entry(args->dnode, ifp);
break;
}
return NB_OK;
}
static int lib_interface_destroy(struct nb_cb_destroy_args *args)
{
struct interface *ifp;
struct vrf *vrf;
switch (args->event) {
case NB_EV_VALIDATE:
ifp = nb_running_get_entry(args->dnode, NULL, true);
if (CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_ACTIVE)) {
snprintf(args->errmsg, args->errmsg_len,
"only inactive interfaces can be deleted");
return NB_ERR_VALIDATION;
}
break;
case NB_EV_PREPARE:
case NB_EV_ABORT:
break;
case NB_EV_APPLY:
ifp = nb_running_unset_entry(args->dnode);
vrf = ifp->vrf;
ifp->configured = false;
if_delete(&ifp);
if (!vrf_is_enabled(vrf))
vrf_delete(vrf);
break;
}
return NB_OK;
}
/*
* XPath: /frr-interface:lib/interface
*/
static const void *lib_interface_get_next(struct nb_cb_get_next_args *args)
{
struct vrf *vrf;
struct interface *pif = (struct interface *)args->list_entry;
if (args->list_entry == NULL) {
vrf = RB_MIN(vrf_name_head, &vrfs_by_name);
assert(vrf);
pif = RB_MIN(if_name_head, &vrf->ifaces_by_name);
} else {
vrf = pif->vrf;
pif = RB_NEXT(if_name_head, pif);
/* if no more interfaces, switch to next vrf */
while (pif == NULL) {
vrf = RB_NEXT(vrf_name_head, vrf);
if (!vrf)
return NULL;
pif = RB_MIN(if_name_head, &vrf->ifaces_by_name);
}
}
return pif;
}
static int lib_interface_get_keys(struct nb_cb_get_keys_args *args)
{
const struct interface *ifp = args->list_entry;
args->keys->num = 1;
if (vrf_is_backend_netns())
snprintf(args->keys->key[0], sizeof(args->keys->key[0]),
"%s:%s", ifp->vrf->name, ifp->name);
else
snprintf(args->keys->key[0], sizeof(args->keys->key[0]), "%s",
ifp->name);
return NB_OK;
}
static const void *
lib_interface_lookup_entry(struct nb_cb_lookup_entry_args *args)
{
if (vrf_is_backend_netns()) {
char ifname[XPATH_MAXLEN];
char vrfname[XPATH_MAXLEN];
struct vrf *vrf;
netns_ifname_split(args->keys->key[0], ifname, vrfname);
vrf = vrf_lookup_by_name(vrfname);
return vrf ? if_lookup_by_name(ifname, vrf->vrf_id) : NULL;
} else {
return if_lookup_by_name_all_vrf(args->keys->key[0]);
}
}
/*
* XPath: /frr-interface:lib/interface/description
*/
static int lib_interface_description_modify(struct nb_cb_modify_args *args)
{
struct interface *ifp;
const char *description;
if (args->event != NB_EV_APPLY)
return NB_OK;
ifp = nb_running_get_entry(args->dnode, NULL, true);
XFREE(MTYPE_IFDESC, ifp->desc);
description = yang_dnode_get_string(args->dnode, NULL);
ifp->desc = XSTRDUP(MTYPE_IFDESC, description);
return NB_OK;
}
static int lib_interface_description_destroy(struct nb_cb_destroy_args *args)
{
struct interface *ifp;
if (args->event != NB_EV_APPLY)
return NB_OK;
ifp = nb_running_get_entry(args->dnode, NULL, true);
XFREE(MTYPE_IFDESC, ifp->desc);
return NB_OK;
}
static enum nb_error __return_ok(const struct nb_node *nb_node, const void *list_entry,
struct lyd_node *parent)
{
return NB_OK;
}
/*
* XPath: /frr-interface:lib/interface/vrf
*/
static enum nb_error lib_interface_vrf_get(const struct nb_node *nb_node, const void *list_entry,
struct lyd_node *parent)
{
const struct lysc_node *snode = nb_node->snode;
const struct interface *ifp = list_entry;
if (lyd_new_term(parent, snode->module, snode->name, ifp->vrf->name, LYD_NEW_PATH_UPDATE,
NULL))
return NB_ERR_RESOURCE;
return NB_OK;
}
/*
* XPath: /frr-interface:lib/interface/state/if-index
*/
static enum nb_error lib_interface_state_if_index_get(const struct nb_node *nb_node,
const void *list_entry,
struct lyd_node *parent)
{
const struct lysc_node *snode = nb_node->snode;
const struct interface *ifp = list_entry;
int32_t value = ifp->ifindex;
if (lyd_new_term_bin(parent, snode->module, snode->name, &value, sizeof(value),
LYD_NEW_PATH_UPDATE, NULL))
return NB_ERR_RESOURCE;
return NB_OK;
}
/*
* XPath: /frr-interface:lib/interface/state/mtu[6]
*/
static enum nb_error lib_interface_state_mtu_get(const struct nb_node *nb_node,
const void *list_entry, struct lyd_node *parent)
{
const struct lysc_node *snode = nb_node->snode;
const struct interface *ifp = list_entry;
uint32_t value = ifp->mtu;
if (lyd_new_term_bin(parent, snode->module, snode->name, &value, sizeof(value),
LYD_NEW_PATH_UPDATE, NULL))
return NB_ERR_RESOURCE;
return NB_OK;
}
/*
* XPath: /frr-interface:lib/interface/state/speed
*/
static enum nb_error lib_interface_state_speed_get(const struct nb_node *nb_node,
const void *list_entry, struct lyd_node *parent)
{
const struct lysc_node *snode = nb_node->snode;
const struct interface *ifp = list_entry;
uint32_t value = ifp->speed;
if (lyd_new_term_bin(parent, snode->module, snode->name, &value, sizeof(value),
LYD_NEW_PATH_UPDATE, NULL))
return NB_ERR_RESOURCE;
return NB_OK;
}
/*
* XPath: /frr-interface:lib/interface/state/metric
*/
static enum nb_error lib_interface_state_metric_get(const struct nb_node *nb_node,
const void *list_entry, struct lyd_node *parent)
{
const struct lysc_node *snode = nb_node->snode;
const struct interface *ifp = list_entry;
uint32_t value = ifp->metric;
if (lyd_new_term_bin(parent, snode->module, snode->name, &value, sizeof(value),
LYD_NEW_PATH_UPDATE, NULL))
return NB_ERR_RESOURCE;
return NB_OK;
}
/*
* XPath: /frr-interface:lib/interface/state/phy-address
*/
static struct yang_data *
lib_interface_state_phy_address_get_elem(struct nb_cb_get_elem_args *args)
{
const struct interface *ifp = args->list_entry;
struct ethaddr macaddr;
memcpy(&macaddr.octet, ifp->hw_addr, ETH_ALEN);
return yang_data_new_mac(args->xpath, &macaddr);
}
/* clang-format off */
/* cli_show callbacks are kept here for daemons not yet converted to mgmtd */
const struct frr_yang_module_info frr_interface_info = {
.name = "frr-interface",
.nodes = {
{
.xpath = "/frr-interface:lib/interface",
.cbs = {
.create = lib_interface_create,
.destroy = lib_interface_destroy,
.cli_show = cli_show_interface,
.cli_show_end = cli_show_interface_end,
.cli_cmp = cli_cmp_interface,
.get_next = lib_interface_get_next,
.get_keys = lib_interface_get_keys,
.lookup_entry = lib_interface_lookup_entry,
},
},
{
.xpath = "/frr-interface:lib/interface/description",
.cbs = {
.modify = lib_interface_description_modify,
.destroy = lib_interface_description_destroy,
.cli_show = cli_show_interface_desc,
},
},
{
.xpath = "/frr-interface:lib/interface/vrf",
.cbs = {
.get = lib_interface_vrf_get,
}
},
{
.xpath = "/frr-interface:lib/interface/state/if-index",
.cbs = {
.get = lib_interface_state_if_index_get,
}
},
{
.xpath = "/frr-interface:lib/interface/state/mtu",
.cbs = {
.get = lib_interface_state_mtu_get,
}
},
{
.xpath = "/frr-interface:lib/interface/state/mtu6",
.cbs = {
.get = lib_interface_state_mtu_get,
}
},
{
.xpath = "/frr-interface:lib/interface/state/speed",
.cbs = {
.get = lib_interface_state_speed_get,
}
},
{
.xpath = "/frr-interface:lib/interface/state/metric",
.cbs = {
.get = lib_interface_state_metric_get,
}
},
{
.xpath = "/frr-interface:lib/interface/state/flags",
.cbs = {
.get = __return_ok,
}
},
{
.xpath = "/frr-interface:lib/interface/state/type",
.cbs = {
.get = __return_ok,
}
},
{
.xpath = "/frr-interface:lib/interface/state/phy-address",
.cbs = {
.get_elem = lib_interface_state_phy_address_get_elem,
}
},
{
.xpath = NULL,
},
}
};
const struct frr_yang_module_info frr_interface_cli_info = {
.name = "frr-interface",
.ignore_cfg_cbs = true,
.nodes = {
{
.xpath = "/frr-interface:lib/interface",
.cbs = {
.cli_show = cli_show_interface,
.cli_show_end = cli_show_interface_end,
.cli_cmp = cli_cmp_interface,
},
},
{
.xpath = "/frr-interface:lib/interface/description",
.cbs = {
.cli_show = cli_show_interface_desc,
},
},
{
.xpath = NULL,
},
}
};
|