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
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "mpd_defs.h"
#include "mpd_tables.h"
/*
* Global list of phyints, phyint instances, phyint groups and the anonymous
* group; the latter is initialized in phyint_init().
*/
struct phyint *phyints = NULL;
struct phyint_instance *phyint_instances = NULL;
struct phyint_group *phyint_groups = NULL;
struct phyint_group *phyint_anongroup;
/*
* Grouplist signature; initialized in phyint_init().
*/
static uint64_t phyint_grouplistsig;
static void phyint_inst_insert(struct phyint_instance *pii);
static void phyint_inst_print(struct phyint_instance *pii);
static void phyint_insert(struct phyint *pi, struct phyint_group *pg);
static void phyint_delete(struct phyint *pi);
static void phyint_group_insert(struct phyint_group *pg);
static void phyint_group_delete(struct phyint_group *pg);
static struct phyint_group *phyint_group_lookup(const char *pg_name);
static struct phyint_group *phyint_group_create(const char *pg_name);
static void logint_print(struct logint *li);
static void logint_insert(struct phyint_instance *pii, struct logint *li);
static struct logint *logint_lookup(struct phyint_instance *pii, char *li_name);
static void target_print(struct target *tg);
static void target_insert(struct phyint_instance *pii, struct target *tg);
static struct target *target_first(struct phyint_instance *pii);
static struct target *target_select_best(struct phyint_instance *pii);
static void target_flush_hosts(struct phyint_group *pg);
static void reset_pii_probes(struct phyint_instance *pii, struct target *tg);
static boolean_t phyint_inst_v6_sockinit(struct phyint_instance *pii);
static boolean_t phyint_inst_v4_sockinit(struct phyint_instance *pii);
static void ip_index_to_mask_v6(uint_t masklen, struct in6_addr *bitmask);
static boolean_t prefix_equal(struct in6_addr p1, struct in6_addr p2,
int prefix_len);
static int phyint_state_event(struct phyint_group *pg, struct phyint *pi);
static int phyint_group_state_event(struct phyint_group *pg);
static int phyint_group_change_event(struct phyint_group *pg, ipmp_group_op_t);
static int phyint_group_member_event(struct phyint_group *pg, struct phyint *pi,
ipmp_if_op_t op);
static uint64_t gensig(void);
/* Initialize any per-file global state. Returns 0 on success, -1 on failure */
int
phyint_init(void)
{
phyint_grouplistsig = gensig();
if (track_all_phyints) {
phyint_anongroup = phyint_group_create("");
if (phyint_anongroup == NULL)
return (-1);
phyint_group_insert(phyint_anongroup);
}
return (0);
}
/* Return the phyint with the given name */
struct phyint *
phyint_lookup(const char *name)
{
struct phyint *pi;
if (debug & D_PHYINT)
logdebug("phyint_lookup(%s)\n", name);
for (pi = phyints; pi != NULL; pi = pi->pi_next) {
if (strncmp(pi->pi_name, name, sizeof (pi->pi_name)) == 0)
break;
}
return (pi);
}
/* Return the phyint instance with the given name and the given family */
struct phyint_instance *
phyint_inst_lookup(int af, char *name)
{
struct phyint *pi;
if (debug & D_PHYINT)
logdebug("phyint_inst_lookup(%s %s)\n", AF_STR(af), name);
assert(af == AF_INET || af == AF_INET6);
pi = phyint_lookup(name);
if (pi == NULL)
return (NULL);
return (PHYINT_INSTANCE(pi, af));
}
static struct phyint_group *
phyint_group_lookup(const char *pg_name)
{
struct phyint_group *pg;
if (debug & D_PHYINT)
logdebug("phyint_group_lookup(%s)\n", pg_name);
for (pg = phyint_groups; pg != NULL; pg = pg->pg_next) {
if (strncmp(pg->pg_name, pg_name, sizeof (pg->pg_name)) == 0)
break;
}
return (pg);
}
/*
* Insert the phyint in the linked list of all phyints. If the phyint belongs
* to some group, insert it in the phyint group list.
*/
static void
phyint_insert(struct phyint *pi, struct phyint_group *pg)
{
if (debug & D_PHYINT)
logdebug("phyint_insert(%s '%s')\n", pi->pi_name, pg->pg_name);
/* Insert the phyint at the head of the 'all phyints' list */
pi->pi_next = phyints;
pi->pi_prev = NULL;
if (phyints != NULL)
phyints->pi_prev = pi;
phyints = pi;
/*
* Insert the phyint at the head of the 'phyint_group members' list
* of the phyint group to which it belongs.
*/
pi->pi_pgnext = NULL;
pi->pi_pgprev = NULL;
pi->pi_group = pg;
pi->pi_pgnext = pg->pg_phyint;
if (pi->pi_pgnext != NULL)
pi->pi_pgnext->pi_pgprev = pi;
pg->pg_phyint = pi;
pg->pg_sig++;
(void) phyint_group_member_event(pg, pi, IPMP_IF_ADD);
}
/* Insert the phyint instance in the linked list of all phyint instances. */
static void
phyint_inst_insert(struct phyint_instance *pii)
{
if (debug & D_PHYINT) {
logdebug("phyint_inst_insert(%s %s)\n",
AF_STR(pii->pii_af), pii->pii_name);
}
/*
* Insert the phyint at the head of the 'all phyint instances' list.
*/
pii->pii_next = phyint_instances;
pii->pii_prev = NULL;
if (phyint_instances != NULL)
phyint_instances->pii_prev = pii;
phyint_instances = pii;
}
/*
* Create a new phyint with the given parameters. Also insert it into
* the list of all phyints and the list of phyint group members by calling
* phyint_insert().
*/
static struct phyint *
phyint_create(char *pi_name, struct phyint_group *pg, uint_t ifindex,
uint64_t flags)
{
struct phyint *pi;
pi = calloc(1, sizeof (struct phyint));
if (pi == NULL) {
logperror("phyint_create: calloc");
return (NULL);
}
/*
* Record the phyint values. Also insert the phyint into the
* phyint group by calling phyint_insert().
*/
(void) strncpy(pi->pi_name, pi_name, sizeof (pi->pi_name));
pi->pi_name[sizeof (pi->pi_name) - 1] = '\0';
pi->pi_ifindex = ifindex;
pi->pi_icmpid =
htons(((getpid() & 0xFF) << 8) | (pi->pi_ifindex & 0xFF));
/*
* We optimistically start in the PI_RUNNING state. Later (in
* process_link_state_changes()), we will readjust this to match the
* current state of the link. Further, if test addresses are
* subsequently assigned, we will transition to PI_NOTARGETS and then
* either PI_RUNNING or PI_FAILED, depending on the result of the test
* probes.
*/
pi->pi_state = PI_RUNNING;
pi->pi_flags = PHYINT_FLAGS(flags);
/*
* Initialise the link state. The link state is initialised to
* up, so that if the link is down when IPMP starts monitoring
* the interface, it will appear as though there has been a
* transition from the link up to link down. This avoids
* having to treat this situation as a special case.
*/
INIT_LINK_STATE(pi);
/*
* Insert the phyint in the list of all phyints, and the
* list of phyint group members
*/
phyint_insert(pi, pg);
/*
* If we are joining a failed group, mark the interface as
* failed.
*/
if (GROUP_FAILED(pg))
(void) change_lif_flags(pi, IFF_FAILED, _B_TRUE);
return (pi);
}
/*
* Create a new phyint instance belonging to the phyint 'pi' and address
* family 'af'. Also insert it into the list of all phyint instances by
* calling phyint_inst_insert().
*/
static struct phyint_instance *
phyint_inst_create(struct phyint *pi, int af)
{
struct phyint_instance *pii;
pii = calloc(1, sizeof (struct phyint_instance));
if (pii == NULL) {
logperror("phyint_inst_create: calloc");
return (NULL);
}
/*
* Attach the phyint instance to the phyint.
* Set the back pointers as well
*/
pii->pii_phyint = pi;
if (af == AF_INET)
pi->pi_v4 = pii;
else
pi->pi_v6 = pii;
pii->pii_in_use = 1;
pii->pii_probe_sock = -1;
pii->pii_snxt = 1;
pii->pii_af = af;
pii->pii_fd_hrtime = gethrtime() +
(FAILURE_DETECTION_QP * (hrtime_t)NANOSEC);
pii->pii_flags = pi->pi_flags;
/* Insert the phyint instance in the list of all phyint instances. */
phyint_inst_insert(pii);
return (pii);
}
/*
* Change the state of phyint `pi' to state `state'.
*/
void
phyint_chstate(struct phyint *pi, enum pi_state state)
{
/*
* To simplify things, some callers always set a given state
* regardless of the previous state of the phyint (e.g., setting
* PI_RUNNING when it's already set). We shouldn't bother
* generating an event or consuming a signature for these, since
* the actual state of the interface is unchanged.
*/
if (pi->pi_state == state)
return;
pi->pi_state = state;
pi->pi_group->pg_sig++;
(void) phyint_state_event(pi->pi_group, pi);
}
/*
* Note that the type of phyint `pi' has changed.
*/
void
phyint_newtype(struct phyint *pi)
{
pi->pi_group->pg_sig++;
(void) phyint_state_event(pi->pi_group, pi);
}
/*
* Insert the phyint group in the linked list of all phyint groups
* at the head of the list
*/
static void
phyint_group_insert(struct phyint_group *pg)
{
pg->pg_next = phyint_groups;
pg->pg_prev = NULL;
if (phyint_groups != NULL)
phyint_groups->pg_prev = pg;
phyint_groups = pg;
phyint_grouplistsig++;
(void) phyint_group_change_event(pg, IPMP_GROUP_ADD);
}
/*
* Create a new phyint group called 'name'.
*/
static struct phyint_group *
phyint_group_create(const char *name)
{
struct phyint_group *pg;
if (debug & D_PHYINT)
logdebug("phyint_group_create(%s)\n", name);
pg = calloc(1, sizeof (struct phyint_group));
if (pg == NULL) {
logperror("phyint_group_create: calloc");
return (NULL);
}
(void) strncpy(pg->pg_name, name, sizeof (pg->pg_name));
pg->pg_name[sizeof (pg->pg_name) - 1] = '\0';
pg->pg_sig = gensig();
pg->pg_fdt = user_failure_detection_time;
pg->pg_probeint = user_probe_interval;
return (pg);
}
/*
* Change the state of the phyint group `pg' to state `state'.
*/
void
phyint_group_chstate(struct phyint_group *pg, enum pg_state state)
{
assert(pg != phyint_anongroup);
switch (state) {
case PG_FAILED:
pg->pg_groupfailed = 1;
/*
* We can never know with certainty that a group has
* failed. It is possible that all known targets have
* failed simultaneously, and new targets have come up
* instead. If the targets are routers then router
* discovery will kick in, and we will see the new routers
* thru routing socket messages. But if the targets are
* hosts, we have to discover it by multicast. So flush
* all the host targets. The next probe will send out a
* multicast echo request. If this is a group failure, we
* will still not see any response, otherwise we will
* clear the pg_groupfailed flag after we get
* NUM_PROBE_REPAIRS consecutive unicast replies on any
* phyint.
*/
target_flush_hosts(pg);
break;
case PG_RUNNING:
pg->pg_groupfailed = 0;
break;
default:
logerr("phyint_group_chstate: invalid group state %d; "
"aborting\n", state);
abort();
}
pg->pg_sig++;
(void) phyint_group_state_event(pg);
}
/*
* Create a new phyint instance and initialize it from the values supplied by
* the kernel. Always check for ENXIO before logging any error, because the
* interface could have vanished after completion of SIOCGLIFCONF.
* Return values:
* pointer to the phyint instance on success
* NULL on failure Eg. if the phyint instance is not found in the kernel
*/
struct phyint_instance *
phyint_inst_init_from_k(int af, char *pi_name)
{
char pg_name[LIFNAMSIZ + 1];
int ifsock;
uint_t ifindex;
uint64_t flags;
struct lifreq lifr;
struct phyint *pi;
struct phyint_instance *pii;
boolean_t pg_created;
boolean_t pi_created;
struct phyint_group *pg;
retry:
pii = NULL;
pi = NULL;
pg = NULL;
pi_created = _B_FALSE;
pg_created = _B_FALSE;
if (debug & D_PHYINT) {
logdebug("phyint_inst_init_from_k(%s %s)\n",
AF_STR(af), pi_name);
}
assert(af == AF_INET || af == AF_INET6);
/* Get the socket for doing ioctls */
ifsock = (af == AF_INET) ? ifsock_v4 : ifsock_v6;
/*
* Get the interface flags. Ignore loopback and multipoint
* interfaces.
*/
(void) strncpy(lifr.lifr_name, pi_name, sizeof (lifr.lifr_name));
lifr.lifr_name[sizeof (lifr.lifr_name) - 1] = '\0';
if (ioctl(ifsock, SIOCGLIFFLAGS, (char *)&lifr) < 0) {
if (errno != ENXIO) {
logperror("phyint_inst_init_from_k:"
" ioctl (get flags)");
}
return (NULL);
}
flags = lifr.lifr_flags;
if (!(flags & IFF_MULTICAST) || (flags & IFF_LOOPBACK))
return (NULL);
/*
* Get the ifindex for recording later in our tables, in case we need
* to create a new phyint.
*/
if (ioctl(ifsock, SIOCGLIFINDEX, (char *)&lifr) < 0) {
if (errno != ENXIO) {
logperror("phyint_inst_init_from_k: "
" ioctl (get lifindex)");
}
return (NULL);
}
ifindex = lifr.lifr_index;
/*
* Get the phyint group name of this phyint, from the kernel.
*/
if (ioctl(ifsock, SIOCGLIFGROUPNAME, (char *)&lifr) < 0) {
if (errno != ENXIO) {
logperror("phyint_inst_init_from_k: "
"ioctl (get group name)");
}
return (NULL);
}
(void) strncpy(pg_name, lifr.lifr_groupname, sizeof (pg_name));
pg_name[sizeof (pg_name) - 1] = '\0';
/*
* If the phyint is not part of any group, pg_name is the
* null string. If 'track_all_phyints' is false, there is no
* need to create a phyint.
*/
if (pg_name[0] == '\0' && !track_all_phyints) {
/*
* If the IFF_FAILED or IFF_OFFLINE flags are set, reset
* them. These flags shouldn't be set if IPMP isn't
* tracking the interface.
*/
if ((flags & (IFF_FAILED | IFF_OFFLINE)) != 0) {
lifr.lifr_flags = flags & ~(IFF_FAILED | IFF_OFFLINE);
if (ioctl(ifsock, SIOCSLIFFLAGS, (char *)&lifr) < 0) {
if (errno != ENXIO) {
logperror("phyint_inst_init_from_k:"
" ioctl (set flags)");
}
}
}
return (NULL);
}
/*
* We need to create a new phyint instance. A phyint instance
* belongs to a phyint, and the phyint belongs to a phyint group.
* So we first lookup the 'parents' and if they don't exist then
* we create them.
*/
pg = phyint_group_lookup(pg_name);
if (pg == NULL) {
pg = phyint_group_create(pg_name);
if (pg == NULL) {
logerr("phyint_inst_init_from_k:"
" unable to create group %s\n", pg_name);
return (NULL);
}
phyint_group_insert(pg);
pg_created = _B_TRUE;
}
/*
* Lookup the phyint. If the phyint does not exist create it.
*/
pi = phyint_lookup(pi_name);
if (pi == NULL) {
pi = phyint_create(pi_name, pg, ifindex, flags);
if (pi == NULL) {
logerr("phyint_inst_init_from_k:"
" unable to create phyint %s\n", pi_name);
if (pg_created)
phyint_group_delete(pg);
return (NULL);
}
pi_created = _B_TRUE;
} else {
/* The phyint exists already. */
assert(pi_created == _B_FALSE);
/*
* Normally we should see consistent values for the IPv4 and
* IPv6 instances, for phyint properties. If we don't, it
* means things have changed underneath us, and we should
* resync our tables with the kernel. Check whether the
* interface index has changed. If so, it is most likely
* the interface has been unplumbed and replumbed,
* while we are yet to update our tables. Do it now.
*/
if (pi->pi_ifindex != ifindex) {
if (pg_created)
phyint_group_delete(pg);
phyint_inst_delete(PHYINT_INSTANCE(pi, AF_OTHER(af)));
goto retry;
}
assert(PHYINT_INSTANCE(pi, af) == NULL);
/*
* If the group name seen by the IPv4 and IPv6 instances
* are different, it is most likely the groupname has
* changed, while we are yet to update our tables. Do it now.
*/
if (strcmp(pi->pi_group->pg_name, pg_name) != 0) {
if (pg_created)
phyint_group_delete(pg);
restore_phyint(pi);
phyint_inst_delete(PHYINT_INSTANCE(pi,
AF_OTHER(af)));
goto retry;
}
}
/*
* Create a new phyint instance, corresponding to the 'af'
* passed in.
*/
pii = phyint_inst_create(pi, af);
if (pii == NULL) {
logerr("phyint_inst_init_from_k: unable to create"
"phyint inst %s\n", pi->pi_name);
if (pi_created) {
/*
* Deleting the phyint will delete the phyint group
* if this is the last phyint in the group.
*/
phyint_delete(pi);
}
return (NULL);
}
return (pii);
}
/*
* Bind the pii_probe_sock to the chosen IFF_NOFAILOVER address in
* pii_probe_logint. This socket will be used for sending and receiving
* ICMP/ICMPv6 probes to targets. Do the common part in this function, and
* complete the initializations by calling the protocol specific functions
* phyint_inst_v{4,6}_sockinit() respectively.
*
* Return values: _B_TRUE/_B_FALSE for success or failure respectively.
*/
boolean_t
phyint_inst_sockinit(struct phyint_instance *pii)
{
boolean_t success;
struct phyint_group *pg;
if (debug & D_PHYINT) {
logdebug("phyint_inst_sockinit(%s %s)\n",
AF_STR(pii->pii_af), pii->pii_name);
}
assert(pii->pii_probe_logint != NULL);
assert(pii->pii_probe_logint->li_flags & IFF_UP);
assert(SINGLETON_GROUP(pii->pii_phyint) ||
(pii->pii_probe_logint->li_flags & IFF_NOFAILOVER));
assert(pii->pii_af == AF_INET || pii->pii_af == AF_INET6);
/*
* If the socket is already bound, close pii_probe_sock
*/
if (pii->pii_probe_sock != -1)
close_probe_socket(pii, _B_TRUE);
/*
* If the phyint is not part of a named group and track_all_phyints is
* false, simply return.
*/
pg = pii->pii_phyint->pi_group;
if (pg == phyint_anongroup && !track_all_phyints) {
if (debug & D_PHYINT)
logdebug("phyint_inst_sockinit: no group\n");
return (_B_FALSE);
}
/*
* Initialize the socket by calling the protocol specific function.
* If it succeeds, add the socket to the poll list.
*/
if (pii->pii_af == AF_INET6)
success = phyint_inst_v6_sockinit(pii);
else
success = phyint_inst_v4_sockinit(pii);
if (success && (poll_add(pii->pii_probe_sock) == 0))
return (_B_TRUE);
/* Something failed, cleanup and return false */
if (pii->pii_probe_sock != -1)
close_probe_socket(pii, _B_FALSE);
return (_B_FALSE);
}
/*
* IPv6 specific part in initializing the pii_probe_sock. This socket is
* used to send/receive ICMPv6 probe packets.
*/
static boolean_t
phyint_inst_v6_sockinit(struct phyint_instance *pii)
{
icmp6_filter_t filter;
int hopcount = 1;
int int_op;
struct sockaddr_in6 testaddr;
/*
* Open a raw socket with ICMPv6 protocol.
*
* Use IPV6_DONTFAILOVER_IF to make sure that probes go out
* on the specified phyint only, and are not subject to load
* balancing. Bind to the src address chosen will ensure that
* the responses are received only on the specified phyint.
*
* Set the hopcount to 1 so that probe packets are not routed.
* Disable multicast loopback. Set the receive filter to
* receive only ICMPv6 echo replies.
*/
pii->pii_probe_sock = socket(pii->pii_af, SOCK_RAW, IPPROTO_ICMPV6);
if (pii->pii_probe_sock < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: socket");
return (_B_FALSE);
}
bzero(&testaddr, sizeof (testaddr));
testaddr.sin6_family = AF_INET6;
testaddr.sin6_port = 0;
testaddr.sin6_addr = pii->pii_probe_logint->li_addr;
if (bind(pii->pii_probe_sock, (struct sockaddr *)&testaddr,
sizeof (testaddr)) < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: IPv6 bind");
return (_B_FALSE);
}
/*
* IPV6_DONTFAILOVER_IF option takes precedence over setting
* IP_MULTICAST_IF. So we don't set IPV6_MULTICAST_IF again.
*/
if (setsockopt(pii->pii_probe_sock, IPPROTO_IPV6, IPV6_DONTFAILOVER_IF,
(char *)&pii->pii_ifindex, sizeof (uint_t)) < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: setsockopt"
" IPV6_DONTFAILOVER_IF");
return (_B_FALSE);
}
if (setsockopt(pii->pii_probe_sock, IPPROTO_IPV6, IPV6_UNICAST_HOPS,
(char *)&hopcount, sizeof (hopcount)) < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: setsockopt"
" IPV6_UNICAST_HOPS");
return (_B_FALSE);
}
if (setsockopt(pii->pii_probe_sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS,
(char *)&hopcount, sizeof (hopcount)) < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: setsockopt"
" IPV6_MULTICAST_HOPS");
return (_B_FALSE);
}
int_op = 0; /* used to turn off option */
if (setsockopt(pii->pii_probe_sock, IPPROTO_IPV6, IPV6_MULTICAST_LOOP,
(char *)&int_op, sizeof (int_op)) < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: setsockopt"
" IPV6_MULTICAST_LOOP");
return (_B_FALSE);
}
/*
* Filter out so that we only receive ICMP echo replies
*/
ICMP6_FILTER_SETBLOCKALL(&filter);
ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filter);
if (setsockopt(pii->pii_probe_sock, IPPROTO_ICMPV6, ICMP6_FILTER,
(char *)&filter, sizeof (filter)) < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: setsockopt"
" ICMP6_FILTER");
return (_B_FALSE);
}
/* Enable receipt of ancillary data */
int_op = 1;
if (setsockopt(pii->pii_probe_sock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT,
(char *)&int_op, sizeof (int_op)) < 0) {
logperror_pii(pii, "phyint_inst_v6_sockinit: setsockopt"
" IPV6_RECVHOPLIMIT");
return (_B_FALSE);
}
return (_B_TRUE);
}
/*
* IPv4 specific part in initializing the pii_probe_sock. This socket is
* used to send/receive ICMPv4 probe packets.
*/
static boolean_t
phyint_inst_v4_sockinit(struct phyint_instance *pii)
{
struct sockaddr_in testaddr;
char char_op;
int ttl = 1;
char char_ttl = 1;
/*
* Open a raw socket with ICMPv4 protocol.
*
* Use IP_DONTFAILOVER_IF to make sure that probes go out
* on the specified phyint only, and are not subject to load
* balancing. Bind to the src address chosen will ensure that
* the responses are received only on the specified phyint.
*
* Set the ttl to 1 so that probe packets are not routed.
* Disable multicast loopback.
*/
pii->pii_probe_sock = socket(pii->pii_af, SOCK_RAW, IPPROTO_ICMP);
if (pii->pii_probe_sock < 0) {
logperror_pii(pii, "phyint_inst_v4_sockinit: socket");
return (_B_FALSE);
}
bzero(&testaddr, sizeof (testaddr));
testaddr.sin_family = AF_INET;
testaddr.sin_port = 0;
IN6_V4MAPPED_TO_INADDR(&pii->pii_probe_logint->li_addr,
&testaddr.sin_addr);
if (bind(pii->pii_probe_sock, (struct sockaddr *)&testaddr,
sizeof (testaddr)) < 0) {
logperror_pii(pii, "phyint_inst_v4_sockinit: IPv4 bind");
return (_B_FALSE);
}
/*
* IP_DONTFAILOVER_IF option takes precedence over setting
* IP_MULTICAST_IF. So we don't set IP_MULTICAST_IF again.
*/
if (setsockopt(pii->pii_probe_sock, IPPROTO_IP, IP_DONTFAILOVER_IF,
(char *)&testaddr.sin_addr, sizeof (struct in_addr)) < 0) {
logperror_pii(pii, "phyint_inst_v4_sockinit: setsockopt"
" IP_DONTFAILOVER");
return (_B_FALSE);
}
if (setsockopt(pii->pii_probe_sock, IPPROTO_IP, IP_TTL,
(char *)&ttl, sizeof (ttl)) < 0) {
logperror_pii(pii, "phyint_inst_v4_sockinit: setsockopt"
" IP_TTL");
return (_B_FALSE);
}
char_op = 0; /* used to turn off option */
if (setsockopt(pii->pii_probe_sock, IPPROTO_IP, IP_MULTICAST_LOOP,
(char *)&char_op, sizeof (char_op)) == -1) {
logperror_pii(pii, "phyint_inst_v4_sockinit: setsockopt"
" IP_MULTICAST_LOOP");
return (_B_FALSE);
}
if (setsockopt(pii->pii_probe_sock, IPPROTO_IP, IP_MULTICAST_TTL,
(char *)&char_ttl, sizeof (char_ttl)) == -1) {
logperror_pii(pii, "phyint_inst_v4_sockinit: setsockopt"
" IP_MULTICAST_TTL");
return (_B_FALSE);
}
return (_B_TRUE);
}
/*
* Remove the phyint group from the list of 'all phyint groups'
* and free it.
*/
static void
phyint_group_delete(struct phyint_group *pg)
{
/*
* The anonymous group always exists, even when empty.
*/
if (pg == phyint_anongroup)
return;
if (debug & D_PHYINT)
logdebug("phyint_group_delete('%s')\n", pg->pg_name);
/*
* The phyint group must be empty, and must not have any phyints.
* The phyint group must be in the list of all phyint groups
*/
assert(pg->pg_phyint == NULL);
assert(phyint_groups == pg || pg->pg_prev != NULL);
if (pg->pg_prev != NULL)
pg->pg_prev->pg_next = pg->pg_next;
else
phyint_groups = pg->pg_next;
if (pg->pg_next != NULL)
pg->pg_next->pg_prev = pg->pg_prev;
pg->pg_next = NULL;
pg->pg_prev = NULL;
phyint_grouplistsig++;
(void) phyint_group_change_event(pg, IPMP_GROUP_REMOVE);
free(pg);
}
/*
* Extract information from the kernel about the desired phyint.
* Look only for properties of the phyint and not properties of logints.
* Take appropriate action on the changes.
* Return codes:
* PI_OK
* The phyint exists in the kernel and matches our knowledge
* of the phyint.
* PI_DELETED
* The phyint has vanished in the kernel.
* PI_IFINDEX_CHANGED
* The phyint's interface index has changed.
* Ask the caller to delete and recreate the phyint.
* PI_IOCTL_ERROR
* Some ioctl error. Don't change anything.
* PI_GROUP_CHANGED
* The phyint has changed group.
*/
int
phyint_inst_update_from_k(struct phyint_instance *pii)
{
struct lifreq lifr;
int ifsock;
struct phyint *pi;
pi = pii->pii_phyint;
if (debug & D_PHYINT) {
logdebug("phyint_inst_update_from_k(%s %s)\n",
AF_STR(pii->pii_af), pi->pi_name);
}
/*
* Get the ifindex from the kernel, for comparison with the
* value in our tables.
*/
(void) strncpy(lifr.lifr_name, pi->pi_name, sizeof (lifr.lifr_name));
lifr.lifr_name[sizeof (lifr.lifr_name) - 1] = '\0';
ifsock = (pii->pii_af == AF_INET) ? ifsock_v4 : ifsock_v6;
if (ioctl(ifsock, SIOCGLIFINDEX, &lifr) < 0) {
if (errno == ENXIO) {
return (PI_DELETED);
} else {
logperror_pii(pii, "phyint_inst_update_from_k:"
" ioctl (get lifindex)");
return (PI_IOCTL_ERROR);
}
}
if (lifr.lifr_index != pi->pi_ifindex) {
/*
* The index has changed. Most likely the interface has
* been unplumbed and replumbed. Ask the caller to take
* appropriate action.
*/
if (debug & D_PHYINT) {
logdebug("phyint_inst_update_from_k:"
" old index %d new index %d\n",
pi->pi_ifindex, lifr.lifr_index);
}
return (PI_IFINDEX_CHANGED);
}
/*
* Get the group name from the kernel, for comparison with
* the value in our tables.
*/
if (ioctl(ifsock, SIOCGLIFGROUPNAME, &lifr) < 0) {
if (errno == ENXIO) {
return (PI_DELETED);
} else {
logperror_pii(pii, "phyint_inst_update_from_k:"
" ioctl (get groupname)");
return (PI_IOCTL_ERROR);
}
}
/*
* If the phyint has changed group i.e. if the phyint group name
* returned by the kernel is different, ask the caller to delete
* and recreate the phyint in the right group
*/
if (strcmp(lifr.lifr_groupname, pi->pi_group->pg_name) != 0) {
/* Groupname has changed */
if (debug & D_PHYINT) {
logdebug("phyint_inst_update_from_k:"
" groupname change\n");
}
return (PI_GROUP_CHANGED);
}
/*
* Get the current phyint flags from the kernel, and determine what
* flags have changed by comparing against our tables. Note that the
* IFF_INACTIVE processing in initifs() relies on this call to ensure
* that IFF_INACTIVE is really still set on the interface.
*/
if (ioctl(ifsock, SIOCGLIFFLAGS, &lifr) < 0) {
if (errno == ENXIO) {
return (PI_DELETED);
} else {
logperror_pii(pii, "phyint_inst_update_from_k: "
" ioctl (get flags)");
return (PI_IOCTL_ERROR);
}
}
pi->pi_flags = PHYINT_FLAGS(lifr.lifr_flags);
if (pi->pi_v4 != NULL)
pi->pi_v4->pii_flags = pi->pi_flags;
if (pi->pi_v6 != NULL)
pi->pi_v6->pii_flags = pi->pi_flags;
if (pi->pi_flags & IFF_FAILED) {
/*
* If we are in the running and full state, we have
* completed failbacks successfully and we would have
* expected IFF_FAILED to have been clear. That it is
* set means there was a race condition. Some other
* process turned on the IFF_FAILED flag. Since the
* flag setting is not atomic, i.e. a get ioctl followed
* by a set ioctl, and since there is no way to set an
* individual flag bit, this could have occurred.
*/
if (pi->pi_state == PI_RUNNING && pi->pi_full)
(void) change_lif_flags(pi, IFF_FAILED, _B_FALSE);
} else {
/*
* If we are in the failed state, there was a race.
* we have completed failover successfully because our
* state is failed and empty. Some other process turned
* off the IFF_FAILED flag. Same comment as above
*/
if (pi->pi_state == PI_FAILED && pi->pi_empty)
(void) change_lif_flags(pi, IFF_FAILED, _B_TRUE);
}
/* No change in phyint status */
return (PI_OK);
}
/*
* Delete the phyint. Remove it from the list of all phyints, and the
* list of phyint group members. If the group becomes empty, delete the
* group also.
*/
static void
phyint_delete(struct phyint *pi)
{
struct phyint_group *pg = pi->pi_group;
if (debug & D_PHYINT)
logdebug("phyint_delete(%s)\n", pi->pi_name);
/* Both IPv4 and IPv6 phyint instances must have been deleted. */
assert(pi->pi_v4 == NULL && pi->pi_v6 == NULL);
/*
* The phyint must belong to a group.
*/
assert(pg->pg_phyint == pi || pi->pi_pgprev != NULL);
/* The phyint must be in the list of all phyints */
assert(phyints == pi || pi->pi_prev != NULL);
/* Remove the phyint from the phyint group list */
pg->pg_sig++;
(void) phyint_group_member_event(pg, pi, IPMP_IF_REMOVE);
if (pi->pi_pgprev == NULL) {
/* Phyint is the 1st in the phyint group list */
pg->pg_phyint = pi->pi_pgnext;
} else {
pi->pi_pgprev->pi_pgnext = pi->pi_pgnext;
}
if (pi->pi_pgnext != NULL)
pi->pi_pgnext->pi_pgprev = pi->pi_pgprev;
pi->pi_pgnext = NULL;
pi->pi_pgprev = NULL;
/* Remove the phyint from the global list of phyints */
if (pi->pi_prev == NULL) {
/* Phyint is the 1st in the list */
phyints = pi->pi_next;
} else {
pi->pi_prev->pi_next = pi->pi_next;
}
if (pi->pi_next != NULL)
pi->pi_next->pi_prev = pi->pi_prev;
pi->pi_next = NULL;
pi->pi_prev = NULL;
free(pi);
/* Delete the phyint_group if the last phyint has been deleted */
if (pg->pg_phyint == NULL)
phyint_group_delete(pg);
}
/*
* Delete (unlink and free), the phyint instance.
*/
void
phyint_inst_delete(struct phyint_instance *pii)
{
struct phyint *pi = pii->pii_phyint;
assert(pi != NULL);
if (debug & D_PHYINT) {
logdebug("phyint_inst_delete(%s %s)\n",
AF_STR(pii->pii_af), pi->pi_name);
}
/*
* If the phyint instance has associated probe targets
* delete all the targets
*/
while (pii->pii_targets != NULL)
target_delete(pii->pii_targets);
/*
* Delete all the logints associated with this phyint
* instance.
*/
while (pii->pii_logint != NULL)
logint_delete(pii->pii_logint);
/*
* Close the IFF_NOFAILOVER socket used to send probes to targets
* from this phyint.
*/
if (pii->pii_probe_sock != -1)
close_probe_socket(pii, _B_TRUE);
/*
* Phyint instance must be in the list of all phyint instances.
* Remove phyint instance from the global list of phyint instances.
*/
assert(phyint_instances == pii || pii->pii_prev != NULL);
if (pii->pii_prev == NULL) {
/* Phyint is the 1st in the list */
phyint_instances = pii->pii_next;
} else {
pii->pii_prev->pii_next = pii->pii_next;
}
if (pii->pii_next != NULL)
pii->pii_next->pii_prev = pii->pii_prev;
pii->pii_next = NULL;
pii->pii_prev = NULL;
/*
* Reset the phyint instance pointer in the phyint.
* If this is the last phyint instance (being deleted) on this
* phyint, then delete the phyint.
*/
if (pii->pii_af == AF_INET)
pi->pi_v4 = NULL;
else
pi->pi_v6 = NULL;
if (pi->pi_v4 == NULL && pi->pi_v6 == NULL)
phyint_delete(pi);
free(pii);
}
static void
phyint_inst_print(struct phyint_instance *pii)
{
struct logint *li;
struct target *tg;
char abuf[INET6_ADDRSTRLEN];
int most_recent;
int i;
if (pii->pii_phyint == NULL) {
logdebug("pii->pi_phyint NULL can't print\n");
return;
}
logdebug("\nPhyint instance: %s %s index %u state %x flags %llx "
"sock %x in_use %d empty %x full %x\n",
AF_STR(pii->pii_af), pii->pii_name, pii->pii_ifindex,
pii->pii_state, pii->pii_phyint->pi_flags, pii->pii_probe_sock,
pii->pii_in_use, pii->pii_phyint->pi_empty,
pii->pii_phyint->pi_full);
for (li = pii->pii_logint; li != NULL; li = li->li_next)
logint_print(li);
logdebug("\n");
for (tg = pii->pii_targets; tg != NULL; tg = tg->tg_next)
target_print(tg);
if (pii->pii_targets == NULL)
logdebug("pi_targets NULL\n");
if (pii->pii_target_next != NULL) {
logdebug("pi_target_next %s %s\n", AF_STR(pii->pii_af),
pr_addr(pii->pii_af, pii->pii_target_next->tg_address,
abuf, sizeof (abuf)));
} else {
logdebug("pi_target_next NULL\n");
}
if (pii->pii_rtt_target_next != NULL) {
logdebug("pi_rtt_target_next %s %s\n", AF_STR(pii->pii_af),
pr_addr(pii->pii_af, pii->pii_rtt_target_next->tg_address,
abuf, sizeof (abuf)));
} else {
logdebug("pi_rtt_target_next NULL\n");
}
if (pii->pii_targets != NULL) {
most_recent = PROBE_INDEX_PREV(pii->pii_probe_next);
i = most_recent;
do {
if (pii->pii_probes[i].pr_target != NULL) {
logdebug("#%d target %s ", i,
pr_addr(pii->pii_af,
pii->pii_probes[i].pr_target->tg_address,
abuf, sizeof (abuf)));
} else {
logdebug("#%d target NULL ", i);
}
logdebug("time_sent %u status %d time_ack/lost %u\n",
pii->pii_probes[i].pr_time_sent,
pii->pii_probes[i].pr_status,
pii->pii_probes[i].pr_time_lost);
i = PROBE_INDEX_PREV(i);
} while (i != most_recent);
}
}
/*
* Lookup a logint based on the logical interface name, on the given
* phyint instance.
*/
static struct logint *
logint_lookup(struct phyint_instance *pii, char *name)
{
struct logint *li;
if (debug & D_LOGINT) {
logdebug("logint_lookup(%s, %s)\n",
AF_STR(pii->pii_af), name);
}
for (li = pii->pii_logint; li != NULL; li = li->li_next) {
if (strncmp(name, li->li_name, sizeof (li->li_name)) == 0)
break;
}
return (li);
}
/*
* Insert a logint at the head of the list of logints of the given
* phyint instance
*/
static void
logint_insert(struct phyint_instance *pii, struct logint *li)
{
li->li_next = pii->pii_logint;
li->li_prev = NULL;
if (pii->pii_logint != NULL)
pii->pii_logint->li_prev = li;
pii->pii_logint = li;
li->li_phyint_inst = pii;
}
/*
* Create a new named logint, on the specified phyint instance.
*/
static struct logint *
logint_create(struct phyint_instance *pii, char *name)
{
struct logint *li;
if (debug & D_LOGINT) {
logdebug("logint_create(%s %s %s)\n",
AF_STR(pii->pii_af), pii->pii_name, name);
}
li = calloc(1, sizeof (struct logint));
if (li == NULL) {
logperror("logint_create: calloc");
return (NULL);
}
(void) strncpy(li->li_name, name, sizeof (li->li_name));
li->li_name[sizeof (li->li_name) - 1] = '\0';
logint_insert(pii, li);
return (li);
}
/*
* Initialize the logint based on the data returned by the kernel.
*/
void
logint_init_from_k(struct phyint_instance *pii, char *li_name)
{
int ifsock;
uint64_t flags;
uint64_t saved_flags;
struct logint *li;
struct lifreq lifr;
struct in6_addr test_subnet;
struct in6_addr test_subnet_mask;
struct in6_addr testaddr;
int test_subnet_len;
struct sockaddr_in6 *sin6;
struct sockaddr_in *sin;
char abuf[INET6_ADDRSTRLEN];
boolean_t ptp = _B_FALSE;
struct in6_addr tgaddr;
if (debug & D_LOGINT) {
logdebug("logint_init_from_k(%s %s)\n",
AF_STR(pii->pii_af), li_name);
}
/* Get the socket for doing ioctls */
ifsock = (pii->pii_af == AF_INET) ? ifsock_v4 : ifsock_v6;
/*
* Get the flags from the kernel. Also serves as a check whether
* the logical still exists. If it doesn't exist, no need to proceed
* any further. li_in_use will make the caller clean up the logint
*/
(void) strncpy(lifr.lifr_name, li_name, sizeof (lifr.lifr_name));
lifr.lifr_name[sizeof (lifr.lifr_name) - 1] = '\0';
if (ioctl(ifsock, SIOCGLIFFLAGS, (char *)&lifr) < 0) {
/* Interface may have vanished */
if (errno != ENXIO) {
logperror_pii(pii, "logint_init_from_k: "
"ioctl (get flags)");
}
return;
}
flags = lifr.lifr_flags;
/*
* Verified the logint exists. Now lookup the logint in our tables.
* If it does not exist, create a new logint.
*/
li = logint_lookup(pii, li_name);
if (li == NULL) {
li = logint_create(pii, li_name);
if (li == NULL) {
/*
* Pretend the interface does not exist
* in the kernel
*/
return;
}
}
/*
* Update li->li_flags with the new flags, after saving the old
* value. This is used later to check what flags has changed and
* take any action
*/
saved_flags = li->li_flags;
li->li_flags = flags;
/*
* Get the address, prefix, prefixlength and update the logint.
* Check if anything has changed. If the logint used for the
* test address has changed, take suitable action.
*/
if (ioctl(ifsock, SIOCGLIFADDR, (char *)&lifr) < 0) {
/* Interface may have vanished */
if (errno != ENXIO) {
logperror_li(li, "logint_init_from_k: (get addr)");
}
goto error;
}
if (pii->pii_af == AF_INET) {
sin = (struct sockaddr_in *)&lifr.lifr_addr;
IN6_INADDR_TO_V4MAPPED(&sin->sin_addr, &testaddr);
} else {
sin6 = (struct sockaddr_in6 *)&lifr.lifr_addr;
testaddr = sin6->sin6_addr;
}
if (pii->pii_phyint->pi_flags & IFF_POINTOPOINT) {
ptp = _B_TRUE;
if (ioctl(ifsock, SIOCGLIFDSTADDR, (char *)&lifr) < 0) {
if (errno != ENXIO) {
logperror_li(li, "logint_init_from_k:"
" (get dstaddr)");
}
goto error;
}
if (pii->pii_af == AF_INET) {
sin = (struct sockaddr_in *)&lifr.lifr_addr;
IN6_INADDR_TO_V4MAPPED(&sin->sin_addr, &tgaddr);
} else {
sin6 = (struct sockaddr_in6 *)&lifr.lifr_addr;
tgaddr = sin6->sin6_addr;
}
} else {
if (ioctl(ifsock, SIOCGLIFSUBNET, (char *)&lifr) < 0) {
/* Interface may have vanished */
if (errno != ENXIO) {
logperror_li(li, "logint_init_from_k:"
" (get subnet)");
}
goto error;
}
if (lifr.lifr_subnet.ss_family == AF_INET6) {
sin6 = (struct sockaddr_in6 *)&lifr.lifr_subnet;
test_subnet = sin6->sin6_addr;
test_subnet_len = lifr.lifr_addrlen;
} else {
sin = (struct sockaddr_in *)&lifr.lifr_subnet;
IN6_INADDR_TO_V4MAPPED(&sin->sin_addr, &test_subnet);
test_subnet_len = lifr.lifr_addrlen +
(IPV6_ABITS - IP_ABITS);
}
(void) ip_index_to_mask_v6(test_subnet_len, &test_subnet_mask);
}
/*
* Also record the OINDEX for completeness. This information is
* not used.
*/
if (ioctl(ifsock, SIOCGLIFOINDEX, (char *)&lifr) < 0) {
if (errno != ENXIO) {
logperror_li(li, "logint_init_from_k:"
" (get lifoindex)");
}
goto error;
}
/*
* If this is the logint corresponding to the test address used for
* sending probes, then if anything significant has changed we need to
* determine the test address again. We ignore changes to the
* IFF_FAILED and IFF_RUNNING flags since those happen as a matter of
* course.
*/
if (pii->pii_probe_logint == li) {
if (((li->li_flags ^ saved_flags) &
~(IFF_FAILED | IFF_RUNNING)) != 0 ||
!IN6_ARE_ADDR_EQUAL(&testaddr, &li->li_addr) ||
(!ptp && !IN6_ARE_ADDR_EQUAL(&test_subnet,
&li->li_subnet)) ||
(!ptp && test_subnet_len != li->li_subnet_len) ||
(ptp && !IN6_ARE_ADDR_EQUAL(&tgaddr, &li->li_dstaddr))) {
/*
* Something significant that affects the testaddress
* has changed. Redo the testaddress selection later on
* in select_test_ifs(). For now do the cleanup and
* set pii_probe_logint to NULL.
*/
if (pii->pii_probe_sock != -1)
close_probe_socket(pii, _B_TRUE);
pii->pii_probe_logint = NULL;
}
}
/* Update the logint with the values obtained from the kernel. */
li->li_addr = testaddr;
li->li_in_use = 1;
li->li_oifindex = lifr.lifr_index;
if (ptp) {
li->li_dstaddr = tgaddr;
li->li_subnet_len = (pii->pii_af == AF_INET) ?
IP_ABITS : IPV6_ABITS;
} else {
li->li_subnet = test_subnet;
li->li_subnet_len = test_subnet_len;
}
if (debug & D_LOGINT)
logint_print(li);
return;
error:
logerr("logint_init_from_k: IGNORED %s %s %s addr %s\n",
AF_STR(pii->pii_af), pii->pii_name, li->li_name,
pr_addr(pii->pii_af, testaddr, abuf, sizeof (abuf)));
logint_delete(li);
}
/*
* Delete (unlink and free) a logint.
*/
void
logint_delete(struct logint *li)
{
struct phyint_instance *pii;
pii = li->li_phyint_inst;
assert(pii != NULL);
if (debug & D_LOGINT) {
int af;
char abuf[INET6_ADDRSTRLEN];
af = pii->pii_af;
logdebug("logint_delete(%s %s %s/%u)\n",
AF_STR(af), li->li_name,
pr_addr(af, li->li_addr, abuf, sizeof (abuf)),
li->li_subnet_len);
}
/* logint must be in the list of logints */
assert(pii->pii_logint == li || li->li_prev != NULL);
/* Remove the logint from the list of logints */
if (li->li_prev == NULL) {
/* logint is the 1st in the list */
pii->pii_logint = li->li_next;
} else {
li->li_prev->li_next = li->li_next;
}
if (li->li_next != NULL)
li->li_next->li_prev = li->li_prev;
li->li_next = NULL;
li->li_prev = NULL;
/*
* If this logint corresponds to the IFF_NOFAILOVER testaddress of
* this phyint, then close the associated socket, if it exists
*/
if (pii->pii_probe_logint == li) {
if (pii->pii_probe_sock != -1)
close_probe_socket(pii, _B_TRUE);
pii->pii_probe_logint = NULL;
}
free(li);
}
static void
logint_print(struct logint *li)
{
char abuf[INET6_ADDRSTRLEN];
int af;
af = li->li_phyint_inst->pii_af;
logdebug("logint: %s %s addr %s/%u", AF_STR(af), li->li_name,
pr_addr(af, li->li_addr, abuf, sizeof (abuf)), li->li_subnet_len);
logdebug("\tFlags: %llx in_use %d oifindex %d\n",
li->li_flags, li->li_in_use, li->li_oifindex);
}
char *
pr_addr(int af, struct in6_addr addr, char *abuf, int len)
{
struct in_addr addr_v4;
if (af == AF_INET) {
IN6_V4MAPPED_TO_INADDR(&addr, &addr_v4);
(void) inet_ntop(AF_INET, (void *)&addr_v4, abuf, len);
} else {
(void) inet_ntop(AF_INET6, (void *)&addr, abuf, len);
}
return (abuf);
}
/* Lookup target on its address */
struct target *
target_lookup(struct phyint_instance *pii, struct in6_addr addr)
{
struct target *tg;
if (debug & D_TARGET) {
char abuf[INET6_ADDRSTRLEN];
logdebug("target_lookup(%s %s): addr %s\n",
AF_STR(pii->pii_af), pii->pii_name,
pr_addr(pii->pii_af, addr, abuf, sizeof (abuf)));
}
for (tg = pii->pii_targets; tg != NULL; tg = tg->tg_next) {
if (IN6_ARE_ADDR_EQUAL(&tg->tg_address, &addr))
break;
}
return (tg);
}
/*
* Find and return the next active target, for the next probe.
* If no active targets are available, return NULL.
*/
struct target *
target_next(struct target *tg)
{
struct phyint_instance *pii = tg->tg_phyint_inst;
struct target *marker = tg;
hrtime_t now;
now = gethrtime();
/*
* Target must be in the list of targets for this phyint
* instance.
*/
assert(pii->pii_targets == tg || tg->tg_prev != NULL);
assert(pii->pii_targets != NULL);
/* Return the next active target */
do {
/*
* Go to the next target. If we hit the end,
* reset the ptr to the head
*/
tg = tg->tg_next;
if (tg == NULL)
tg = pii->pii_targets;
assert(TG_STATUS_VALID(tg->tg_status));
switch (tg->tg_status) {
case TG_ACTIVE:
return (tg);
case TG_UNUSED:
assert(pii->pii_targets_are_routers);
if (pii->pii_ntargets < MAX_PROBE_TARGETS) {
/*
* Bubble up the unused target to active
*/
tg->tg_status = TG_ACTIVE;
pii->pii_ntargets++;
return (tg);
}
break;
case TG_SLOW:
assert(pii->pii_targets_are_routers);
if (tg->tg_latime + MIN_RECOVERY_TIME < now) {
/*
* Bubble up the slow target to unused
*/
tg->tg_status = TG_UNUSED;
}
break;
case TG_DEAD:
assert(pii->pii_targets_are_routers);
if (tg->tg_latime + MIN_RECOVERY_TIME < now) {
/*
* Bubble up the dead target to slow
*/
tg->tg_status = TG_SLOW;
tg->tg_latime = now;
}
break;
}
} while (tg != marker);
return (NULL);
}
/*
* Select the best available target, that is not already TG_ACTIVE,
* for the caller. The caller will determine whether it wants to
* make the returned target TG_ACTIVE.
* The selection order is as follows.
* 1. pick a TG_UNSED target, if it exists.
* 2. else pick a TG_SLOW target that has recovered, if it exists
* 3. else pick any TG_SLOW target, if it exists
* 4. else pick a TG_DEAD target that has recovered, if it exists
* 5. else pick any TG_DEAD target, if it exists
* 6. else return null
*/
static struct target *
target_select_best(struct phyint_instance *pii)
{
struct target *tg;
struct target *slow = NULL;
struct target *dead = NULL;
struct target *slow_recovered = NULL;
struct target *dead_recovered = NULL;
hrtime_t now;
now = gethrtime();
for (tg = pii->pii_targets; tg != NULL; tg = tg->tg_next) {
assert(TG_STATUS_VALID(tg->tg_status));
switch (tg->tg_status) {
case TG_UNUSED:
return (tg);
case TG_SLOW:
if (tg->tg_latime + MIN_RECOVERY_TIME < now) {
slow_recovered = tg;
/*
* Promote the slow_recoverd to unused
*/
tg->tg_status = TG_UNUSED;
} else {
slow = tg;
}
break;
case TG_DEAD:
if (tg->tg_latime + MIN_RECOVERY_TIME < now) {
dead_recovered = tg;
/*
* Promote the dead_recoverd to slow
*/
tg->tg_status = TG_SLOW;
tg->tg_latime = now;
} else {
dead = tg;
}
break;
default:
break;
}
}
if (slow_recovered != NULL)
return (slow_recovered);
else if (slow != NULL)
return (slow);
else if (dead_recovered != NULL)
return (dead_recovered);
else
return (dead);
}
/*
* Some target was deleted. If we don't have even MIN_PROBE_TARGETS
* that are active, pick the next best below.
*/
static void
target_activate_all(struct phyint_instance *pii)
{
struct target *tg;
assert(pii->pii_ntargets == 0);
assert(pii->pii_target_next == NULL);
assert(pii->pii_rtt_target_next == NULL);
assert(pii->pii_targets_are_routers);
while (pii->pii_ntargets < MIN_PROBE_TARGETS) {
tg = target_select_best(pii);
if (tg == NULL) {
/* We are out of targets */
return;
}
assert(TG_STATUS_VALID(tg->tg_status));
assert(tg->tg_status != TG_ACTIVE);
tg->tg_status = TG_ACTIVE;
pii->pii_ntargets++;
if (pii->pii_target_next == NULL) {
pii->pii_target_next = tg;
pii->pii_rtt_target_next = tg;
}
}
}
static struct target *
target_first(struct phyint_instance *pii)
{
struct target *tg;
for (tg = pii->pii_targets; tg != NULL; tg = tg->tg_next) {
assert(TG_STATUS_VALID(tg->tg_status));
if (tg->tg_status == TG_ACTIVE)
break;
}
return (tg);
}
/*
* Create a default target entry.
*/
void
target_create(struct phyint_instance *pii, struct in6_addr addr,
boolean_t is_router)
{
struct target *tg;
struct phyint *pi;
struct logint *li;
if (debug & D_TARGET) {
char abuf[INET6_ADDRSTRLEN];
logdebug("target_create(%s %s, %s)\n",
AF_STR(pii->pii_af), pii->pii_name,
pr_addr(pii->pii_af, addr, abuf, sizeof (abuf)));
}
/*
* If the test address is not yet initialized, do not add
* any target, since we cannot determine whether the target
* belongs to the same subnet as the test address.
*/
li = pii->pii_probe_logint;
if (li == NULL)
return;
/*
* If there are multiple subnets associated with an interface, then
* add the target to this phyint instance, only if it belongs to the
* same subnet as the test address. The reason is that interface
* routes derived from non-test-addresses i.e. non-IFF_NOFAILOVER
* addresses, will disappear after failover, and the targets will not
* be reachable from this interface.
*/
if (!prefix_equal(li->li_subnet, addr, li->li_subnet_len))
return;
if (pii->pii_targets != NULL) {
assert(pii->pii_ntargets <= MAX_PROBE_TARGETS);
if (is_router) {
if (!pii->pii_targets_are_routers) {
/*
* Prefer router over hosts. Using hosts is a
* fallback mechanism, hence delete all host
* targets.
*/
while (pii->pii_targets != NULL)
target_delete(pii->pii_targets);
}
} else {
/*
* Routers take precedence over hosts. If this
* is a router list and we are trying to add a
* host, just return. If this is a host list
* and if we have sufficient targets, just return
*/
if (pii->pii_targets_are_routers ||
pii->pii_ntargets == MAX_PROBE_TARGETS)
return;
}
}
tg = calloc(1, sizeof (struct target));
if (tg == NULL) {
logperror("target_create: calloc");
return;
}
tg->tg_phyint_inst = pii;
tg->tg_address = addr;
tg->tg_in_use = 1;
tg->tg_rtt_sa = -1;
tg->tg_num_deferred = 0;
/*
* If this is the first target, set 'pii_targets_are_routers'
* The list of targets is either a list of hosts or list or
* routers, but not a mix.
*/
if (pii->pii_targets == NULL) {
assert(pii->pii_ntargets == 0);
assert(pii->pii_target_next == NULL);
assert(pii->pii_rtt_target_next == NULL);
pii->pii_targets_are_routers = is_router ? 1 : 0;
}
if (pii->pii_ntargets == MAX_PROBE_TARGETS) {
assert(pii->pii_targets_are_routers);
assert(pii->pii_target_next != NULL);
assert(pii->pii_rtt_target_next != NULL);
tg->tg_status = TG_UNUSED;
} else {
if (pii->pii_ntargets == 0) {
assert(pii->pii_target_next == NULL);
pii->pii_target_next = tg;
pii->pii_rtt_target_next = tg;
}
pii->pii_ntargets++;
tg->tg_status = TG_ACTIVE;
}
target_insert(pii, tg);
/*
* Change to running state, if this phyint instance is capable of
* sending and receiving probes. i.e if we know of at least 1 target,
* and this phyint instance socket is bound to the IFF_NOFAILOVER
* address. More details in phyint state diagram in probe.c.
*/
pi = pii->pii_phyint;
if (pi->pi_state == PI_NOTARGETS && PROBE_CAPABLE(pii)) {
if (pi->pi_flags & IFF_FAILED)
phyint_chstate(pi, PI_FAILED);
else
phyint_chstate(pi, PI_RUNNING);
}
}
/*
* Add the target address named by `addr' to phyint instance `pii' if it does
* not already exist. If the target is a router, `is_router' should be set to
* B_TRUE.
*/
void
target_add(struct phyint_instance *pii, struct in6_addr addr,
boolean_t is_router)
{
struct target *tg;
if (pii == NULL)
return;
tg = target_lookup(pii, addr);
/*
* If the target does not exist, create it; target_create() will set
* tg_in_use to true. If it exists already, and it is a router
* target, set tg_in_use to to true, so that init_router_targets()
* won't delete it
*/
if (tg == NULL)
target_create(pii, addr, is_router);
else if (is_router)
tg->tg_in_use = 1;
}
/*
* Insert target at head of linked list of targets for the associated
* phyint instance
*/
static void
target_insert(struct phyint_instance *pii, struct target *tg)
{
tg->tg_next = pii->pii_targets;
tg->tg_prev = NULL;
if (tg->tg_next != NULL)
tg->tg_next->tg_prev = tg;
pii->pii_targets = tg;
}
/*
* Delete a target (unlink and free).
*/
void
target_delete(struct target *tg)
{
int af;
struct phyint_instance *pii;
struct phyint_instance *pii_other;
pii = tg->tg_phyint_inst;
af = pii->pii_af;
if (debug & D_TARGET) {
char abuf[INET6_ADDRSTRLEN];
logdebug("target_delete(%s %s, %s)\n",
AF_STR(af), pii->pii_name,
pr_addr(af, tg->tg_address, abuf, sizeof (abuf)));
}
/*
* Target must be in the list of targets for this phyint
* instance.
*/
assert(pii->pii_targets == tg || tg->tg_prev != NULL);
/*
* Reset all references to 'tg' in the probe information
* for this phyint.
*/
reset_pii_probes(pii, tg);
/*
* Remove this target from the list of targets of this
* phyint instance.
*/
if (tg->tg_prev == NULL) {
pii->pii_targets = tg->tg_next;
} else {
tg->tg_prev->tg_next = tg->tg_next;
}
if (tg->tg_next != NULL)
tg->tg_next->tg_prev = tg->tg_prev;
tg->tg_next = NULL;
tg->tg_prev = NULL;
if (tg->tg_status == TG_ACTIVE)
pii->pii_ntargets--;
/*
* Adjust the next target to probe, if it points to
* to the currently deleted target.
*/
if (pii->pii_target_next == tg)
pii->pii_target_next = target_first(pii);
if (pii->pii_rtt_target_next == tg)
pii->pii_rtt_target_next = target_first(pii);
free(tg);
/*
* The number of active targets pii_ntargets == 0 iff
* the next active target pii->pii_target_next == NULL
*/
if (pii->pii_ntargets != 0) {
assert(pii->pii_target_next != NULL);
assert(pii->pii_rtt_target_next != NULL);
assert(pii->pii_target_next->tg_status == TG_ACTIVE);
assert(pii->pii_rtt_target_next->tg_status == TG_ACTIVE);
return;
}
/* At this point, we don't have any active targets. */
assert(pii->pii_target_next == NULL);
assert(pii->pii_rtt_target_next == NULL);
if (pii->pii_targets_are_routers) {
/*
* Activate any TG_SLOW or TG_DEAD router targets,
* since we don't have any other targets
*/
target_activate_all(pii);
if (pii->pii_ntargets != 0) {
assert(pii->pii_target_next != NULL);
assert(pii->pii_rtt_target_next != NULL);
assert(pii->pii_target_next->tg_status == TG_ACTIVE);
assert(pii->pii_rtt_target_next->tg_status ==
TG_ACTIVE);
return;
}
}
/*
* If we still don't have any active targets, the list must
* must be really empty. There aren't even TG_SLOW or TG_DEAD
* targets. Zero out the probe stats since it will not be
* relevant any longer.
*/
assert(pii->pii_targets == NULL);
clear_pii_probe_stats(pii);
pii_other = phyint_inst_other(pii);
/*
* If there are no targets on both instances,
* go back to PI_NOTARGETS state, since we cannot
* probe this phyint any more. For more details,
* please see phyint state diagram in mpd_probe.c.
*/
if (!PROBE_CAPABLE(pii_other))
phyint_chstate(pii->pii_phyint, PI_NOTARGETS);
}
/*
* Flush the target list of every phyint in the group, if the list
* is a host target list. This is called if group failure is suspected.
* If all targets have failed, multicast will subsequently discover new
* targets. Else it is a group failure.
* Note: This function is a no-op if the list is a router target list.
*/
static void
target_flush_hosts(struct phyint_group *pg)
{
struct phyint *pi;
struct phyint_instance *pii;
if (debug & D_TARGET)
logdebug("target_flush_hosts(%s)\n", pg->pg_name);
for (pi = pg->pg_phyint; pi != NULL; pi = pi->pi_pgnext) {
pii = pi->pi_v4;
if (pii != NULL && !pii->pii_targets_are_routers) {
/*
* Delete all the targets. When the list becomes
* empty, target_delete() will set pii->pii_targets
* to NULL.
*/
while (pii->pii_targets != NULL)
target_delete(pii->pii_targets);
}
pii = pi->pi_v6;
if (pii != NULL && !pii->pii_targets_are_routers) {
/*
* Delete all the targets. When the list becomes
* empty, target_delete() will set pii->pii_targets
* to NULL.
*/
while (pii->pii_targets != NULL)
target_delete(pii->pii_targets);
}
}
}
/*
* Reset all references to 'target' in the probe info, as this target is
* being deleted. The pr_target field is guaranteed to be non-null if
* pr_status is PR_UNACKED. So we change the pr_status to PR_LOST, so that
* pr_target will not be accessed unconditionally.
*/
static void
reset_pii_probes(struct phyint_instance *pii, struct target *tg)
{
int i;
for (i = 0; i < PROBE_STATS_COUNT; i++) {
if (pii->pii_probes[i].pr_target == tg) {
pii->pii_probes[i].pr_target = NULL;
if (pii->pii_probes[i].pr_status == PR_UNACKED)
pii->pii_probes[i].pr_status = PR_LOST;
}
}
}
/*
* Clear the probe statistics array.
*/
void
clear_pii_probe_stats(struct phyint_instance *pii)
{
bzero(pii->pii_probes, sizeof (struct probe_stats) * PROBE_STATS_COUNT);
/* Reset the next probe index in the probe stats array */
pii->pii_probe_next = 0;
}
static void
target_print(struct target *tg)
{
char abuf[INET6_ADDRSTRLEN];
char buf[128];
char buf2[128];
int af;
int i;
af = tg->tg_phyint_inst->pii_af;
logdebug("Target on %s %s addr %s\n"
"status %d rtt_sa %d rtt_sd %d crtt %d tg_in_use %d\n",
AF_STR(af), tg->tg_phyint_inst->pii_name,
pr_addr(af, tg->tg_address, abuf, sizeof (abuf)),
tg->tg_status, tg->tg_rtt_sa, tg->tg_rtt_sd,
tg->tg_crtt, tg->tg_in_use);
buf[0] = '\0';
for (i = 0; i < tg->tg_num_deferred; i++) {
(void) snprintf(buf2, sizeof (buf2), " %dms",
tg->tg_deferred[i]);
(void) strlcat(buf, buf2, sizeof (buf));
}
logdebug("deferred rtts:%s\n", buf);
}
void
phyint_inst_print_all(void)
{
struct phyint_instance *pii;
for (pii = phyint_instances; pii != NULL; pii = pii->pii_next) {
phyint_inst_print(pii);
}
}
/*
* Convert length for a mask to the mask.
*/
static void
ip_index_to_mask_v6(uint_t masklen, struct in6_addr *bitmask)
{
int j;
assert(masklen <= IPV6_ABITS);
bzero((char *)bitmask, sizeof (*bitmask));
/* Make the 'masklen' leftmost bits one */
for (j = 0; masklen > 8; masklen -= 8, j++)
bitmask->s6_addr[j] = 0xff;
bitmask->s6_addr[j] = 0xff << (8 - masklen);
}
/*
* Compare two prefixes that have the same prefix length.
* Fails if the prefix length is unreasonable.
*/
static boolean_t
prefix_equal(struct in6_addr p1, struct in6_addr p2, int prefix_len)
{
uchar_t mask;
int j;
if (prefix_len < 0 || prefix_len > IPV6_ABITS)
return (_B_FALSE);
for (j = 0; prefix_len > 8; prefix_len -= 8, j++)
if (p1.s6_addr[j] != p2.s6_addr[j])
return (_B_FALSE);
/* Make the N leftmost bits one */
mask = 0xff << (8 - prefix_len);
if ((p1.s6_addr[j] & mask) != (p2.s6_addr[j] & mask))
return (_B_FALSE);
return (_B_TRUE);
}
/*
* Get the number of UP logints (excluding IFF_NOFAILOVERs), on both
* IPv4 and IPv6 put together. The phyint with the least such number
* will be used as the failover destination, if no standby interface is
* available
*/
int
logint_upcount(struct phyint *pi)
{
struct logint *li;
struct phyint_instance *pii;
int count = 0;
pii = pi->pi_v4;
if (pii != NULL) {
for (li = pii->pii_logint; li != NULL; li = li->li_next) {
if ((li->li_flags &
(IFF_UP | IFF_NOFAILOVER)) == IFF_UP) {
count++;
}
}
}
pii = pi->pi_v6;
if (pii != NULL) {
for (li = pii->pii_logint; li != NULL; li = li->li_next) {
if ((li->li_flags &
(IFF_UP | IFF_NOFAILOVER)) == IFF_UP) {
count++;
}
}
}
return (count);
}
/*
* Get the phyint instance with the other (IPv4 / IPv6) protocol
*/
struct phyint_instance *
phyint_inst_other(struct phyint_instance *pii)
{
if (pii->pii_af == AF_INET)
return (pii->pii_phyint->pi_v6);
else
return (pii->pii_phyint->pi_v4);
}
/*
* Post an EC_IPMP sysevent of subclass `subclass' and attributes `nvl'.
* Before sending the event, it prepends the current version of the IPMP
* sysevent API. Returns 0 on success, -1 on failure (in either case,
* `nvl' is freed).
*/
static int
post_event(const char *subclass, nvlist_t *nvl)
{
sysevent_id_t eid;
errno = nvlist_add_uint32(nvl, IPMP_EVENT_VERSION,
IPMP_EVENT_CUR_VERSION);
if (errno != 0) {
logerr("cannot create `%s' event: %s", subclass,
strerror(errno));
goto failed;
}
if (sysevent_post_event(EC_IPMP, (char *)subclass, SUNW_VENDOR,
"in.mpathd", nvl, &eid) == -1) {
logerr("cannot send `%s' event: %s\n", subclass,
strerror(errno));
goto failed;
}
nvlist_free(nvl);
return (0);
failed:
nvlist_free(nvl);
return (-1);
}
/*
* Return the external IPMP state associated with phyint `pi'.
*/
static ipmp_if_state_t
ifstate(struct phyint *pi)
{
switch (pi->pi_state) {
case PI_NOTARGETS:
return (IPMP_IF_UNKNOWN);
case PI_OFFLINE:
return (IPMP_IF_OFFLINE);
case PI_FAILED:
return (IPMP_IF_FAILED);
case PI_RUNNING:
return (IPMP_IF_OK);
}
logerr("ifstate: unknown state %d; aborting\n", pi->pi_state);
abort();
/* NOTREACHED */
}
/*
* Return the external IPMP interface type associated with phyint `pi'.
*/
static ipmp_if_type_t
iftype(struct phyint *pi)
{
if (pi->pi_flags & IFF_STANDBY)
return (IPMP_IF_STANDBY);
else
return (IPMP_IF_NORMAL);
}
/*
* Return the external IPMP group state associated with phyint group `pg'.
*/
static ipmp_group_state_t
groupstate(struct phyint_group *pg)
{
return (GROUP_FAILED(pg) ? IPMP_GROUP_FAILED : IPMP_GROUP_OK);
}
/*
* Generate an ESC_IPMP_GROUP_STATE sysevent for phyint group `pg'.
* Returns 0 on success, -1 on failure.
*/
static int
phyint_group_state_event(struct phyint_group *pg)
{
nvlist_t *nvl;
errno = nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0);
if (errno != 0) {
logperror("cannot create `group state change' event");
return (-1);
}
errno = nvlist_add_string(nvl, IPMP_GROUP_NAME, pg->pg_name);
if (errno != 0)
goto failed;
errno = nvlist_add_uint64(nvl, IPMP_GROUP_SIGNATURE, pg->pg_sig);
if (errno != 0)
goto failed;
errno = nvlist_add_uint32(nvl, IPMP_GROUP_STATE, groupstate(pg));
if (errno != 0)
goto failed;
return (post_event(ESC_IPMP_GROUP_STATE, nvl));
failed:
logperror("cannot create `group state change' event");
nvlist_free(nvl);
return (-1);
}
/*
* Generate an ESC_IPMP_GROUP_CHANGE sysevent of type `op' for phyint group
* `pg'. Returns 0 on success, -1 on failure.
*/
static int
phyint_group_change_event(struct phyint_group *pg, ipmp_group_op_t op)
{
nvlist_t *nvl;
errno = nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0);
if (errno != 0) {
logperror("cannot create `group change' event");
return (-1);
}
errno = nvlist_add_string(nvl, IPMP_GROUP_NAME, pg->pg_name);
if (errno != 0)
goto failed;
errno = nvlist_add_uint64(nvl, IPMP_GROUP_SIGNATURE, pg->pg_sig);
if (errno != 0)
goto failed;
errno = nvlist_add_uint64(nvl, IPMP_GROUPLIST_SIGNATURE,
phyint_grouplistsig);
if (errno != 0)
goto failed;
errno = nvlist_add_uint32(nvl, IPMP_GROUP_OPERATION, op);
if (errno != 0)
goto failed;
return (post_event(ESC_IPMP_GROUP_CHANGE, nvl));
failed:
logperror("cannot create `group change' event");
nvlist_free(nvl);
return (-1);
}
/*
* Generate an ESC_IPMP_GROUP_MEMBER_CHANGE sysevent for phyint `pi' in
* group `pg'. Returns 0 on success, -1 on failure.
*/
static int
phyint_group_member_event(struct phyint_group *pg, struct phyint *pi,
ipmp_if_op_t op)
{
nvlist_t *nvl;
errno = nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0);
if (errno != 0) {
logperror("cannot create `group member change' event");
return (-1);
}
errno = nvlist_add_string(nvl, IPMP_GROUP_NAME, pg->pg_name);
if (errno != 0)
goto failed;
errno = nvlist_add_uint64(nvl, IPMP_GROUP_SIGNATURE, pg->pg_sig);
if (errno != 0)
goto failed;
errno = nvlist_add_uint32(nvl, IPMP_IF_OPERATION, op);
if (errno != 0)
goto failed;
errno = nvlist_add_string(nvl, IPMP_IF_NAME, pi->pi_name);
if (errno != 0)
goto failed;
errno = nvlist_add_uint32(nvl, IPMP_IF_TYPE, iftype(pi));
if (errno != 0)
goto failed;
errno = nvlist_add_uint32(nvl, IPMP_IF_STATE, ifstate(pi));
if (errno != 0)
goto failed;
return (post_event(ESC_IPMP_GROUP_MEMBER_CHANGE, nvl));
failed:
logperror("cannot create `group member change' event");
nvlist_free(nvl);
return (-1);
}
/*
* Generate an ESC_IPMP_IF_CHANGE sysevent for phyint `pi' in group `pg'.
* Returns 0 on success, -1 on failure.
*/
static int
phyint_state_event(struct phyint_group *pg, struct phyint *pi)
{
nvlist_t *nvl;
errno = nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0);
if (errno != 0) {
logperror("cannot create `interface change' event");
return (-1);
}
errno = nvlist_add_string(nvl, IPMP_GROUP_NAME, pg->pg_name);
if (errno != 0)
goto failed;
errno = nvlist_add_uint64(nvl, IPMP_GROUP_SIGNATURE, pg->pg_sig);
if (errno != 0)
goto failed;
errno = nvlist_add_string(nvl, IPMP_IF_NAME, pi->pi_name);
if (errno != 0)
goto failed;
errno = nvlist_add_uint32(nvl, IPMP_IF_TYPE, iftype(pi));
if (errno != 0)
goto failed;
errno = nvlist_add_uint32(nvl, IPMP_IF_STATE, ifstate(pi));
if (errno != 0)
goto failed;
return (post_event(ESC_IPMP_IF_CHANGE, nvl));
failed:
logperror("cannot create `interface change' event");
nvlist_free(nvl);
return (-1);
}
/*
* Generate a signature for use. The signature is conceptually divided
* into two pieces: a random 16-bit "generation number" and a 48-bit
* monotonically increasing integer. The generation number protects
* against stale updates to entities (e.g., IPMP groups) that have been
* deleted and since recreated.
*/
static uint64_t
gensig(void)
{
static int seeded = 0;
if (seeded == 0) {
srand48((long)gethrtime());
seeded++;
}
return ((uint64_t)lrand48() << 48 | 1);
}
/*
* Store the information associated with group `grname' into a dynamically
* allocated structure pointed to by `*grinfopp'. Returns an IPMP error code.
*/
unsigned int
getgroupinfo(const char *grname, ipmp_groupinfo_t **grinfopp)
{
struct phyint_group *pg;
struct phyint *pi;
char (*ifs)[LIFNAMSIZ];
unsigned int nif, i;
pg = phyint_group_lookup(grname);
if (pg == NULL)
return (IPMP_EUNKGROUP);
/*
* Tally up the number of interfaces, allocate an array to hold them,
* and insert their names into the array.
*/
for (nif = 0, pi = pg->pg_phyint; pi != NULL; pi = pi->pi_pgnext)
nif++;
ifs = alloca(nif * sizeof (*ifs));
for (i = 0, pi = pg->pg_phyint; pi != NULL; pi = pi->pi_pgnext, i++) {
assert(i < nif);
(void) strlcpy(ifs[i], pi->pi_name, LIFNAMSIZ);
}
assert(i == nif);
*grinfopp = ipmp_groupinfo_create(pg->pg_name, pg->pg_sig,
groupstate(pg), nif, ifs);
return (*grinfopp == NULL ? IPMP_ENOMEM : IPMP_SUCCESS);
}
/*
* Store the information associated with interface `ifname' into a dynamically
* allocated structure pointed to by `*ifinfopp'. Returns an IPMP error code.
*/
unsigned int
getifinfo(const char *ifname, ipmp_ifinfo_t **ifinfopp)
{
struct phyint *pi;
pi = phyint_lookup(ifname);
if (pi == NULL)
return (IPMP_EUNKIF);
*ifinfopp = ipmp_ifinfo_create(pi->pi_name, pi->pi_group->pg_name,
ifstate(pi), iftype(pi));
return (*ifinfopp == NULL ? IPMP_ENOMEM : IPMP_SUCCESS);
}
/*
* Store the current list of IPMP groups into a dynamically allocated
* structure pointed to by `*grlistpp'. Returns an IPMP error code.
*/
unsigned int
getgrouplist(ipmp_grouplist_t **grlistpp)
{
struct phyint_group *pg;
char (*groups)[LIFGRNAMSIZ];
unsigned int i, ngroup;
/*
* Tally up the number of groups, allocate an array to hold them, and
* insert their names into the array.
*/
for (ngroup = 0, pg = phyint_groups; pg != NULL; pg = pg->pg_next)
ngroup++;
groups = alloca(ngroup * sizeof (*groups));
for (i = 0, pg = phyint_groups; pg != NULL; pg = pg->pg_next, i++) {
assert(i < ngroup);
(void) strlcpy(groups[i], pg->pg_name, LIFGRNAMSIZ);
}
assert(i == ngroup);
*grlistpp = ipmp_grouplist_create(phyint_grouplistsig, ngroup, groups);
return (*grlistpp == NULL ? IPMP_ENOMEM : IPMP_SUCCESS);
}
/*
* Store a snapshot of the IPMP subsystem into a dynamically allocated
* structure pointed to by `*snapp'. Returns an IPMP error code.
*/
unsigned int
getsnap(ipmp_snap_t **snapp)
{
ipmp_grouplist_t *grlistp;
ipmp_groupinfo_t *grinfop;
ipmp_ifinfo_t *ifinfop;
ipmp_snap_t *snap;
struct phyint *pi;
unsigned int i;
int retval;
snap = ipmp_snap_create();
if (snap == NULL)
return (IPMP_ENOMEM);
/*
* Add group list.
*/
retval = getgrouplist(&snap->sn_grlistp);
if (retval != IPMP_SUCCESS) {
ipmp_snap_free(snap);
return (retval);
}
/*
* Add information for each group in the list.
*/
grlistp = snap->sn_grlistp;
for (i = 0; i < grlistp->gl_ngroup; i++) {
retval = getgroupinfo(grlistp->gl_groups[i], &grinfop);
if (retval != IPMP_SUCCESS) {
ipmp_snap_free(snap);
return (retval);
}
retval = ipmp_snap_addgroupinfo(snap, grinfop);
if (retval != IPMP_SUCCESS) {
ipmp_freegroupinfo(grinfop);
ipmp_snap_free(snap);
return (retval);
}
}
/*
* Add information for each configured phyint.
*/
for (pi = phyints; pi != NULL; pi = pi->pi_next) {
retval = getifinfo(pi->pi_name, &ifinfop);
if (retval != IPMP_SUCCESS) {
ipmp_snap_free(snap);
return (retval);
}
retval = ipmp_snap_addifinfo(snap, ifinfop);
if (retval != IPMP_SUCCESS) {
ipmp_freeifinfo(ifinfop);
ipmp_snap_free(snap);
return (retval);
}
}
*snapp = snap;
return (IPMP_SUCCESS);
}
|