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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
*/
/*
* FMD Transport Subsystem
*
* A transport module uses some underlying mechanism to transport events.
* This mechanism may use any underlying link-layer protocol and may support
* additional link-layer packets unrelated to FMA. Some appropriate link-
* layer mechanism to create the underlying connection is expected to be
* called prior to calling fmd_xprt_open() itself. Alternatively, a transport
* may be created in the suspended state by specifying the FMD_XPRT_SUSPENDED
* flag as part of the call to fmd_xprt_open(), and then may be resumed later.
* The underlying transport mechanism is *required* to provide ordering: that
* is, the sequences of bytes written across the transport must be read by
* the remote peer in the order that they are written, even across separate
* calls to fmdo_send(). As an example, the Internet TCP protocol would be
* a valid transport as it guarantees ordering, whereas the Internet UDP
* protocol would not because UDP datagrams may be delivered in any order
* as a result of delays introduced when datagrams pass through routers.
*
* Similar to sending events, a transport module receives events that are from
* its peer remote endpoint using some transport-specific mechanism that is
* unknown to FMD. As each event is received, the transport module is
* responsible for constructing a valid nvlist_t object from the data and then
* calling fmd_xprt_post() to post the event to the containing FMD's dispatch
* queue, making it available to all local modules that are not transport
* modules that have subscribed to the event.
*
* The following state machine is used for each transport. The initial state
* is either SYN, ACK, or RUN, depending on the flags specified to xprt_create.
*
* FMD_XPRT_ACCEPT !FMD_XPRT_ACCEPT
* | |
* waiting +--v--+ +--v--+ waiting
* for syn | SYN |--+ --+| ACK | for ack
* event +-----+ \ / +-----+ event
* | \ / |
* drop all +--v--+ X +--v--+ send subscriptions,
* events | ERR |<---+ +--->| SUB | recv subscriptions,
* +-----+ +-----+ wait for run event
* ^ |
* | +-----+ |
* +-----| RUN |<----+
* +--^--+
* |
* FMD_XPRT_RDONLY
*
* When fmd_xprt_open() is called without FMD_XPRT_ACCEPT, the Common Transport
* Layer enqueues a "syn" event for the module in its event queue and sets the
* state to ACK. In state ACK, we are waiting for the transport to get an
* "ack" event and call fmd_xprt_post() on this event. Other events will be
* discarded. If an "ack" is received, we transition to state SUB. If a
* configurable timeout occurs or if the "ack" is invalid (e.g. invalid version
* exchange), we transition to state ERR. Once in state ERR, no further
* operations are valid except fmd_xprt_close() and fmd_xprt_error() will
* return a non-zero value to the caller indicating the transport has failed.
*
* When fmd_xprt_open() is called with FMD_XPRT_ACCEPT, the Common Transport
* Layer assumes this transport is being used to accept a virtual connection
* from a remote peer that is sending a "syn", and sets the initial state to
* SYN. In this state, the transport waits for a "syn" event, validates it,
* and then transitions to state SUB if it is valid or state ERR if it is not.
*
* Once in state SUB, the transport module is expected to receive a sequence of
* zero or more "subscribe" events from the remote peer, followed by a "run"
* event. Once in state RUN, the transport is active and any events can be
* sent or received. The transport module is free to call fmd_xprt_close()
* from any state. The fmd_xprt_error() function will return zero if the
* transport is not in the ERR state, or non-zero if it is in the ERR state.
*
* Once the state machine reaches RUN, other FMA protocol events can be sent
* and received across the transport in addition to the various control events.
*
* Table of Common Transport Layer Control Events
* ==============================================
*
* FMA Class Payload
* --------- -------
* resource.fm.xprt.uuclose string (uuid of case)
* resource.fm.xprt.uuresolved string (uuid of case)
* resource.fm.xprt.updated string (uuid of case)
* resource.fm.xprt.subscribe string (class pattern)
* resource.fm.xprt.unsubscribe string (class pattern)
* resource.fm.xprt.unsuback string (class pattern)
* resource.fm.xprt.syn version information
* resource.fm.xprt.ack version information
* resource.fm.xprt.run version information
*
* Control events are used to add and delete proxy subscriptions on the remote
* transport peer module, and to set up connections. When a "syn" event is
* sent, FMD will include in the payload the highest version of the FMA event
* protocol that is supported by the sender. When a "syn" event is received,
* the receiving FMD will use the minimum of this version and its version of
* the protocol, and reply with this new minimum version in the "ack" event.
* The receiver will then use this new minimum for subsequent event semantics.
*/
#include <sys/fm/protocol.h>
#include <strings.h>
#include <limits.h>
#include <fmd_alloc.h>
#include <fmd_error.h>
#include <fmd_conf.h>
#include <fmd_subr.h>
#include <fmd_string.h>
#include <fmd_protocol.h>
#include <fmd_thread.h>
#include <fmd_eventq.h>
#include <fmd_dispq.h>
#include <fmd_ctl.h>
#include <fmd_log.h>
#include <fmd_ustat.h>
#include <fmd_case.h>
#include <fmd_api.h>
#include <fmd_fmri.h>
#include <fmd_asru.h>
#include <fmd_xprt.h>
#include <fmd.h>
/*
* The states shown above in the transport state machine diagram are encoded
* using arrays of class patterns and a corresponding action function. These
* arrays are then passed to fmd_xprt_transition() to change transport states.
*/
const fmd_xprt_rule_t _fmd_xprt_state_syn[] = {
{ "resource.fm.xprt.syn", fmd_xprt_event_syn },
{ "*", fmd_xprt_event_error },
{ NULL, NULL }
};
const fmd_xprt_rule_t _fmd_xprt_state_ack[] = {
{ "resource.fm.xprt.ack", fmd_xprt_event_ack },
{ "*", fmd_xprt_event_error },
};
const fmd_xprt_rule_t _fmd_xprt_state_err[] = {
{ "*", fmd_xprt_event_drop },
{ NULL, NULL }
};
const fmd_xprt_rule_t _fmd_xprt_state_sub[] = {
{ "resource.fm.xprt.subscribe", fmd_xprt_event_sub },
{ "resource.fm.xprt.run", fmd_xprt_event_run },
{ "resource.fm.xprt.*", fmd_xprt_event_error },
{ "*", fmd_xprt_event_drop },
{ NULL, NULL }
};
const fmd_xprt_rule_t _fmd_xprt_state_run[] = {
{ "resource.fm.xprt.subscribe", fmd_xprt_event_sub },
{ "resource.fm.xprt.unsubscribe", fmd_xprt_event_unsub },
{ "resource.fm.xprt.unsuback", fmd_xprt_event_unsuback },
{ "resource.fm.xprt.uuclose", fmd_xprt_event_uuclose },
{ "resource.fm.xprt.uuresolved", fmd_xprt_event_uuresolved },
{ "resource.fm.xprt.updated", fmd_xprt_event_updated },
{ "resource.fm.xprt.*", fmd_xprt_event_error },
{ NULL, NULL }
};
/*
* Template for per-transport statistics installed by fmd on behalf of each
* transport. These are used to initialize the per-transport xi_stats. For
* each statistic, the name is prepended with "fmd.xprt.%u", where %u is the
* transport ID (xi_id) and then are inserted into the per-module stats hash.
* The values in this array must match fmd_xprt_stat_t from <fmd_xprt.h>.
*/
static const fmd_xprt_stat_t _fmd_xprt_stat_tmpl = {
{
{ "dispatched", FMD_TYPE_UINT64, "total events dispatched to transport" },
{ "dequeued", FMD_TYPE_UINT64, "total events dequeued by transport" },
{ "prdequeued", FMD_TYPE_UINT64, "protocol events dequeued by transport" },
{ "dropped", FMD_TYPE_UINT64, "total events dropped on queue overflow" },
{ "wcnt", FMD_TYPE_UINT32, "count of events waiting on queue" },
{ "wtime", FMD_TYPE_TIME, "total wait time on queue" },
{ "wlentime", FMD_TYPE_TIME, "total wait length * time product" },
{ "wlastupdate", FMD_TYPE_TIME, "hrtime of last wait queue update" },
{ "dtime", FMD_TYPE_TIME, "total processing time after dequeue" },
{ "dlastupdate", FMD_TYPE_TIME, "hrtime of last event dequeue completion" },
},
{ "module", FMD_TYPE_STRING, "module that owns this transport" },
{ "authority", FMD_TYPE_STRING, "authority associated with this transport" },
{ "state", FMD_TYPE_STRING, "current transport state" },
{ "received", FMD_TYPE_UINT64, "events received by transport" },
{ "discarded", FMD_TYPE_UINT64, "bad events discarded by transport" },
{ "retried", FMD_TYPE_UINT64, "retries requested of transport" },
{ "replayed", FMD_TYPE_UINT64, "events replayed by transport" },
{ "lost", FMD_TYPE_UINT64, "events lost by transport" },
{ "timeouts", FMD_TYPE_UINT64, "events received by transport with ttl=0" },
{ "subscriptions", FMD_TYPE_UINT64, "subscriptions registered to transport" },
};
static void
fmd_xprt_class_hash_create(fmd_xprt_class_hash_t *xch, fmd_eventq_t *eq)
{
uint_t hashlen = fmd.d_str_buckets;
xch->xch_queue = eq;
xch->xch_hashlen = hashlen;
xch->xch_hash = fmd_zalloc(sizeof (void *) * hashlen, FMD_SLEEP);
}
static void
fmd_xprt_class_hash_destroy(fmd_xprt_class_hash_t *xch)
{
fmd_eventq_t *eq = xch->xch_queue;
fmd_xprt_class_t *xcp, *ncp;
uint_t i;
for (i = 0; i < xch->xch_hashlen; i++) {
for (xcp = xch->xch_hash[i]; xcp != NULL; xcp = ncp) {
ncp = xcp->xc_next;
if (eq != NULL)
fmd_dispq_delete(fmd.d_disp, eq, xcp->xc_class);
fmd_strfree(xcp->xc_class);
fmd_free(xcp, sizeof (fmd_xprt_class_t));
}
}
fmd_free(xch->xch_hash, sizeof (void *) * xch->xch_hashlen);
}
/*
* Insert the specified class into the specified class hash, and return the
* reference count. A return value of one indicates this is the first insert.
* If an eventq is associated with the hash, insert a dispq subscription for it.
*/
static uint_t
fmd_xprt_class_hash_insert(fmd_xprt_impl_t *xip,
fmd_xprt_class_hash_t *xch, const char *class)
{
uint_t h = fmd_strhash(class) % xch->xch_hashlen;
fmd_xprt_class_t *xcp;
ASSERT(MUTEX_HELD(&xip->xi_lock));
for (xcp = xch->xch_hash[h]; xcp != NULL; xcp = xcp->xc_next) {
if (strcmp(class, xcp->xc_class) == 0)
return (++xcp->xc_refs);
}
xcp = fmd_alloc(sizeof (fmd_xprt_class_t), FMD_SLEEP);
xcp->xc_class = fmd_strdup(class, FMD_SLEEP);
xcp->xc_next = xch->xch_hash[h];
xcp->xc_refs = 1;
xch->xch_hash[h] = xcp;
if (xch->xch_queue != NULL)
fmd_dispq_insert(fmd.d_disp, xch->xch_queue, class);
return (xcp->xc_refs);
}
/*
* Delete the specified class from the specified class hash, and return the
* reference count. A return value of zero indicates the class was deleted.
* If an eventq is associated with the hash, delete the dispq subscription.
*/
static uint_t
fmd_xprt_class_hash_delete(fmd_xprt_impl_t *xip,
fmd_xprt_class_hash_t *xch, const char *class)
{
uint_t h = fmd_strhash(class) % xch->xch_hashlen;
fmd_xprt_class_t *xcp, **pp;
ASSERT(MUTEX_HELD(&xip->xi_lock));
pp = &xch->xch_hash[h];
for (xcp = *pp; xcp != NULL; xcp = xcp->xc_next) {
if (strcmp(class, xcp->xc_class) == 0)
break;
else
pp = &xcp->xc_next;
}
if (xcp == NULL)
return (-1U); /* explicitly permit an invalid delete */
if (--xcp->xc_refs != 0)
return (xcp->xc_refs);
ASSERT(xcp->xc_refs == 0);
*pp = xcp->xc_next;
fmd_strfree(xcp->xc_class);
fmd_free(xcp, sizeof (fmd_xprt_class_t));
if (xch->xch_queue != NULL)
fmd_dispq_delete(fmd.d_disp, xch->xch_queue, class);
return (0);
}
/*
* Queue subscribe events for the specified transport corresponding to all of
* the active module subscriptions. This is an extremely heavyweight operation
* that we expect to take place rarely (i.e. when loading a transport module
* or when it establishes a connection). We lock all of the known modules to
* prevent them from adding or deleting subscriptions, then snapshot their
* subscriptions, and then unlock all of the modules. We hold the modhash
* lock for the duration of this operation to prevent new modules from loading.
*/
static void
fmd_xprt_subscribe_modhash(fmd_xprt_impl_t *xip, fmd_modhash_t *mhp)
{
fmd_xprt_t *xp = (fmd_xprt_t *)xip;
const fmd_conf_path_t *pap;
fmd_module_t *mp;
uint_t i, j;
(void) pthread_rwlock_rdlock(&mhp->mh_lock);
for (i = 0; i < mhp->mh_hashlen; i++) {
for (mp = mhp->mh_hash[i]; mp != NULL; mp = mp->mod_next)
fmd_module_lock(mp);
}
(void) pthread_mutex_lock(&xip->xi_lock);
ASSERT(!(xip->xi_flags & FMD_XPRT_SUBSCRIBER));
xip->xi_flags |= FMD_XPRT_SUBSCRIBER;
(void) pthread_mutex_unlock(&xip->xi_lock);
for (i = 0; i < mhp->mh_hashlen; i++) {
for (mp = mhp->mh_hash[i]; mp != NULL; mp = mp->mod_next) {
(void) fmd_conf_getprop(mp->mod_conf,
FMD_PROP_SUBSCRIPTIONS, &pap);
for (j = 0; j < pap->cpa_argc; j++)
fmd_xprt_subscribe(xp, pap->cpa_argv[j]);
}
}
for (i = 0; i < mhp->mh_hashlen; i++) {
for (mp = mhp->mh_hash[i]; mp != NULL; mp = mp->mod_next)
fmd_module_unlock(mp);
}
(void) pthread_rwlock_unlock(&mhp->mh_lock);
}
static void
fmd_xprt_transition(fmd_xprt_impl_t *xip,
const fmd_xprt_rule_t *state, const char *tag)
{
fmd_xprt_t *xp = (fmd_xprt_t *)xip;
fmd_event_t *e;
nvlist_t *nvl;
char *s;
TRACE((FMD_DBG_XPRT, "xprt %u -> %s\n", xip->xi_id, tag));
xip->xi_state = state;
s = fmd_strdup(tag, FMD_SLEEP);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
fmd_strfree(xip->xi_stats->xs_state.fmds_value.str);
xip->xi_stats->xs_state.fmds_value.str = s;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
/*
* If we've reached the SUB state, take out the big hammer and snapshot
* all of the subscriptions of all of the loaded modules. Then queue a
* run event for our remote peer indicating that it can enter RUN.
*/
if (state == _fmd_xprt_state_sub) {
fmd_xprt_subscribe_modhash(xip, fmd.d_mod_hash);
/*
* For read-write transports, we always want to set up remote
* subscriptions to the bultin list.* events, regardless of
* whether any agents have subscribed to them.
*/
if (xip->xi_flags & FMD_XPRT_RDWR) {
fmd_xprt_subscribe(xp, FM_LIST_SUSPECT_CLASS);
fmd_xprt_subscribe(xp, FM_LIST_ISOLATED_CLASS);
fmd_xprt_subscribe(xp, FM_LIST_UPDATED_CLASS);
fmd_xprt_subscribe(xp, FM_LIST_RESOLVED_CLASS);
fmd_xprt_subscribe(xp, FM_LIST_REPAIRED_CLASS);
}
nvl = fmd_protocol_xprt_ctl(xip->xi_queue->eq_mod,
"resource.fm.xprt.run", xip->xi_version);
(void) nvlist_lookup_string(nvl, FM_CLASS, &s);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, s);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
}
static void
fmd_xprt_authupdate(fmd_xprt_impl_t *xip)
{
char *s = fmd_fmri_auth2str(xip->xi_auth);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
fmd_strfree(xip->xi_stats->xs_authority.fmds_value.str);
xip->xi_stats->xs_authority.fmds_value.str = s;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
}
static int
fmd_xprt_vmismatch(fmd_xprt_impl_t *xip, nvlist_t *nvl, uint_t *rversionp)
{
uint8_t rversion;
if (nvlist_lookup_uint8(nvl, FM_VERSION, &rversion) != 0) {
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_discarded.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
fmd_xprt_transition(xip, _fmd_xprt_state_err, "ERR");
return (1);
}
if (rversion > xip->xi_version) {
fmd_dprintf(FMD_DBG_XPRT, "xprt %u protocol mismatch: %u>%u\n",
xip->xi_id, rversion, xip->xi_version);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_discarded.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
fmd_xprt_transition(xip, _fmd_xprt_state_err, "ERR");
return (1);
}
if (rversionp != NULL)
*rversionp = rversion;
return (0);
}
void
fmd_xprt_event_syn(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
fmd_event_t *e;
uint_t vers;
char *class;
if (fmd_xprt_vmismatch(xip, nvl, &vers))
return; /* transitioned to error state */
/*
* If the transport module didn't specify an authority, extract the
* one that is passed along with the xprt.syn event and use that.
*/
if (xip->xi_auth == NULL &&
nvlist_lookup_nvlist(nvl, FM_RSRC_RESOURCE, &nvl) == 0 &&
nvlist_lookup_nvlist(nvl, FM_FMRI_AUTHORITY, &nvl) == 0) {
(void) nvlist_xdup(nvl, &xip->xi_auth, &fmd.d_nva);
fmd_xprt_authupdate(xip);
}
nvl = fmd_protocol_xprt_ctl(xip->xi_queue->eq_mod,
"resource.fm.xprt.ack", xip->xi_version);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, class);
fmd_eventq_insert_at_time(xip->xi_queue, e);
xip->xi_version = MIN(FM_RSRC_XPRT_VERSION, vers);
fmd_xprt_transition(xip, _fmd_xprt_state_sub, "SUB");
}
void
fmd_xprt_event_ack(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
uint_t vers;
if (fmd_xprt_vmismatch(xip, nvl, &vers))
return; /* transitioned to error state */
/*
* If the transport module didn't specify an authority, extract the
* one that is passed along with the xprt.syn event and use that.
*/
if (xip->xi_auth == NULL &&
nvlist_lookup_nvlist(nvl, FM_RSRC_RESOURCE, &nvl) == 0 &&
nvlist_lookup_nvlist(nvl, FM_FMRI_AUTHORITY, &nvl) == 0) {
(void) nvlist_xdup(nvl, &xip->xi_auth, &fmd.d_nva);
fmd_xprt_authupdate(xip);
}
xip->xi_version = MIN(FM_RSRC_XPRT_VERSION, vers);
fmd_xprt_transition(xip, _fmd_xprt_state_sub, "SUB");
}
/*
* Upon transition to RUN, we take every solved case and resend a list.suspect
* event for it to our remote peer. If a case transitions from solved to a
* future state (CLOSE_WAIT, CLOSED, or REPAIRED) while we are iterating over
* the case hash, we will get it as part of examining the resource cache, next.
*/
static void
fmd_xprt_send_case(fmd_case_t *cp, void *arg)
{
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
fmd_xprt_impl_t *xip = arg;
fmd_event_t *e;
nvlist_t *nvl;
char *class;
if (cip->ci_state == FMD_CASE_UNSOLVED)
return;
nvl = fmd_case_mkevent(cp, FM_LIST_SUSPECT_CLASS);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, class);
fmd_dprintf(FMD_DBG_XPRT, "re-send %s for %s to transport %u\n",
FM_LIST_SUSPECT_CLASS, cip->ci_uuid, xip->xi_id);
fmd_dispq_dispatch_gid(fmd.d_disp, e, class, xip->xi_queue->eq_sgid);
}
/*
* Similar to the above function, but for use with readonly transport. Puts
* the event on the module's queue such that it's fmdo_recv function can pick
* it up and send it if appropriate.
*/
static void
fmd_xprt_send_case_ro(fmd_case_t *cp, void *arg)
{
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
fmd_module_t *mp = arg;
fmd_event_t *e;
nvlist_t *nvl;
char *class;
if (cip->ci_state == FMD_CASE_UNSOLVED)
return;
nvl = fmd_case_mkevent(cp, FM_LIST_SUSPECT_CLASS);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, class);
fmd_dprintf(FMD_DBG_XPRT, "re-send %s for %s to rdonly transport %s\n",
FM_LIST_SUSPECT_CLASS, cip->ci_uuid, mp->mod_name);
fmd_dispq_dispatch_gid(fmd.d_disp, e, class, mp->mod_queue->eq_sgid);
}
void
fmd_xprt_event_run(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
if (!fmd_xprt_vmismatch(xip, nvl, NULL)) {
fmd_xprt_transition(xip, _fmd_xprt_state_run, "RUN");
fmd_case_hash_apply(fmd.d_cases, fmd_xprt_send_case, xip);
}
}
void
fmd_xprt_event_sub(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
char *class;
if (fmd_xprt_vmismatch(xip, nvl, NULL))
return; /* transitioned to error state */
if (nvlist_lookup_string(nvl, FM_RSRC_XPRT_SUBCLASS, &class) != 0)
return; /* malformed protocol event */
(void) pthread_mutex_lock(&xip->xi_lock);
(void) fmd_xprt_class_hash_insert(xip, &xip->xi_lsub, class);
(void) pthread_mutex_unlock(&xip->xi_lock);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_subscriptions.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
}
void
fmd_xprt_event_unsub(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
fmd_event_t *e;
char *class;
if (fmd_xprt_vmismatch(xip, nvl, NULL))
return; /* transitioned to error state */
if (nvlist_lookup_string(nvl, FM_RSRC_XPRT_SUBCLASS, &class) != 0)
return; /* malformed protocol event */
(void) pthread_mutex_lock(&xip->xi_lock);
(void) fmd_xprt_class_hash_delete(xip, &xip->xi_lsub, class);
(void) pthread_mutex_unlock(&xip->xi_lock);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_subscriptions.fmds_value.ui64--;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
nvl = fmd_protocol_xprt_sub(xip->xi_queue->eq_mod,
"resource.fm.xprt.unsuback", xip->xi_version, class);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, class);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
void
fmd_xprt_event_unsuback(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
char *class;
if (fmd_xprt_vmismatch(xip, nvl, NULL))
return; /* transitioned to error state */
if (nvlist_lookup_string(nvl, FM_RSRC_XPRT_SUBCLASS, &class) != 0)
return; /* malformed protocol event */
(void) pthread_mutex_lock(&xip->xi_lock);
(void) fmd_xprt_class_hash_delete(xip, &xip->xi_usub, class);
(void) pthread_mutex_unlock(&xip->xi_lock);
}
/*
* on diagnosing side, receive a uuclose from the proxy.
*/
void
fmd_xprt_event_uuclose(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
fmd_case_t *cp;
char *uuid;
if (fmd_xprt_vmismatch(xip, nvl, NULL))
return; /* transitioned to error state */
if (nvlist_lookup_string(nvl, FM_RSRC_XPRT_UUID, &uuid) == 0 &&
(cp = fmd_case_hash_lookup(fmd.d_cases, uuid)) != NULL) {
/*
* update resource cache status and transition case
*/
fmd_case_close_status(cp);
fmd_case_transition(cp, FMD_CASE_CLOSE_WAIT, FMD_CF_ISOLATED);
fmd_case_rele(cp);
}
}
/*
* on diagnosing side, receive a uuresolved from the proxy.
*/
void
fmd_xprt_event_uuresolved(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
fmd_case_t *cp;
char *uuid;
if (fmd_xprt_vmismatch(xip, nvl, NULL))
return; /* transitioned to error state */
if (nvlist_lookup_string(nvl, FM_RSRC_XPRT_UUID, &uuid) == 0 &&
(cp = fmd_case_hash_lookup(fmd.d_cases, uuid)) != NULL) {
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
fmd_case_transition(cp, (cip->ci_state == FMD_CASE_REPAIRED) ?
FMD_CASE_RESOLVED : (cip->ci_state == FMD_CASE_CLOSED) ?
FMD_CASE_REPAIRED : FMD_CASE_CLOSE_WAIT, FMD_CF_RESOLVED);
fmd_case_rele(cp);
}
}
/*
* on diagnosing side, receive a repair/acquit from the proxy.
*/
void
fmd_xprt_event_updated(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
fmd_case_t *cp;
char *uuid;
if (fmd_xprt_vmismatch(xip, nvl, NULL))
return; /* transitioned to error state */
if (nvlist_lookup_string(nvl, FM_RSRC_XPRT_UUID, &uuid) == 0 &&
(cp = fmd_case_hash_lookup(fmd.d_cases, uuid)) != NULL) {
uint8_t *statusp, *proxy_asrup = NULL;
uint_t nelem = 0;
/*
* Only update status with new repairs if "no remote repair"
* is not set. Do the case_update anyway though (as this will
* refresh the status on the proxy side).
*/
if (!(xip->xi_flags & FMD_XPRT_NO_REMOTE_REPAIR)) {
if (nvlist_lookup_uint8_array(nvl,
FM_RSRC_XPRT_FAULT_STATUS, &statusp, &nelem) == 0 &&
nelem != 0) {
(void) nvlist_lookup_uint8_array(nvl,
FM_RSRC_XPRT_FAULT_HAS_ASRU, &proxy_asrup,
&nelem);
fmd_case_update_status(cp, statusp,
proxy_asrup, NULL);
}
fmd_case_update_containees(cp);
}
fmd_case_update(cp);
fmd_case_rele(cp);
}
}
void
fmd_xprt_event_error(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
char *class = "<unknown>";
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_discarded.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
TRACE((FMD_DBG_XPRT, "xprt %u bad event %s\n", xip->xi_id, class));
fmd_xprt_transition(xip, _fmd_xprt_state_err, "ERR");
}
void
fmd_xprt_event_drop(fmd_xprt_impl_t *xip, nvlist_t *nvl)
{
char *class = "<unknown>";
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_discarded.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
TRACE((FMD_DBG_XPRT, "xprt %u drop event %s\n", xip->xi_id, class));
}
fmd_xprt_t *
fmd_xprt_create(fmd_module_t *mp, uint_t flags, nvlist_t *auth, void *data)
{
fmd_xprt_impl_t *xip = fmd_zalloc(sizeof (fmd_xprt_impl_t), FMD_SLEEP);
fmd_stat_t *statv;
uint_t i, statc;
char buf[PATH_MAX];
fmd_event_t *e;
nvlist_t *nvl;
char *s;
(void) pthread_mutex_init(&xip->xi_lock, NULL);
(void) pthread_cond_init(&xip->xi_cv, NULL);
(void) pthread_mutex_init(&xip->xi_stats_lock, NULL);
xip->xi_auth = auth;
xip->xi_data = data;
xip->xi_version = FM_RSRC_XPRT_VERSION;
xip->xi_flags = flags;
/*
* Grab fmd.d_xprt_lock to block fmd_xprt_suspend_all() and then create
* a transport ID and make it visible in fmd.d_xprt_ids. If transports
* were previously suspended, set the FMD_XPRT_DSUSPENDED flag on us to
* ensure that this transport will not run until fmd_xprt_resume_all().
*/
(void) pthread_mutex_lock(&fmd.d_xprt_lock);
xip->xi_id = fmd_idspace_alloc(fmd.d_xprt_ids, xip);
if (fmd.d_xprt_suspend != 0)
xip->xi_flags |= FMD_XPRT_DSUSPENDED;
(void) pthread_mutex_unlock(&fmd.d_xprt_lock);
/*
* If the module has not yet finished _fmd_init(), set the ISUSPENDED
* bit so that fmdo_send() is not called until _fmd_init() completes.
*/
if (!(mp->mod_flags & FMD_MOD_INIT))
xip->xi_flags |= FMD_XPRT_ISUSPENDED;
/*
* Initialize the transport statistics that we keep on behalf of fmd.
* These are set up using a template defined at the top of this file.
* We rename each statistic with a prefix ensuring its uniqueness.
*/
statc = sizeof (_fmd_xprt_stat_tmpl) / sizeof (fmd_stat_t);
statv = fmd_alloc(sizeof (_fmd_xprt_stat_tmpl), FMD_SLEEP);
bcopy(&_fmd_xprt_stat_tmpl, statv, sizeof (_fmd_xprt_stat_tmpl));
for (i = 0; i < statc; i++) {
(void) snprintf(statv[i].fmds_name,
sizeof (statv[i].fmds_name), "fmd.xprt.%u.%s", xip->xi_id,
((fmd_stat_t *)&_fmd_xprt_stat_tmpl + i)->fmds_name);
}
xip->xi_stats = (fmd_xprt_stat_t *)fmd_ustat_insert(
mp->mod_ustat, FMD_USTAT_NOALLOC, statc, statv, NULL);
if (xip->xi_stats == NULL)
fmd_panic("failed to create xi_stats (%p)\n", (void *)statv);
xip->xi_stats->xs_module.fmds_value.str =
fmd_strdup(mp->mod_name, FMD_SLEEP);
if (xip->xi_auth != NULL)
fmd_xprt_authupdate(xip);
/*
* Create the outbound eventq for this transport and link to its stats.
* If any suspend bits were set above, suspend the eventq immediately.
*/
xip->xi_queue = fmd_eventq_create(mp, &xip->xi_stats->xs_evqstat,
&xip->xi_stats_lock, mp->mod_stats->ms_xprtqlimit.fmds_value.ui32);
if (xip->xi_flags & FMD_XPRT_SMASK)
fmd_eventq_suspend(xip->xi_queue);
/*
* Create our subscription hashes: local subscriptions go to xi_queue,
* remote subscriptions are tracked only for protocol requests, and
* pending unsubscriptions are associated with the /dev/null eventq.
*/
fmd_xprt_class_hash_create(&xip->xi_lsub, xip->xi_queue);
fmd_xprt_class_hash_create(&xip->xi_rsub, NULL);
fmd_xprt_class_hash_create(&xip->xi_usub, fmd.d_rmod->mod_queue);
/*
* Determine our initial state based upon the creation flags. If we're
* read-only, go directly to RUN. If we're accepting a new connection,
* wait for a SYN. Otherwise send a SYN and wait for an ACK.
*/
if ((flags & FMD_XPRT_RDWR) == FMD_XPRT_RDONLY) {
/*
* Send the list.suspects across here for readonly transports.
* For read-write transport they will be sent on transition to
* RUN state in fmd_xprt_event_run().
*/
fmd_case_hash_apply(fmd.d_cases, fmd_xprt_send_case_ro, mp);
fmd_xprt_transition(xip, _fmd_xprt_state_run, "RUN");
} else if (flags & FMD_XPRT_ACCEPT)
fmd_xprt_transition(xip, _fmd_xprt_state_syn, "SYN");
else
fmd_xprt_transition(xip, _fmd_xprt_state_ack, "ACK");
/*
* If client.xprtlog is set to TRUE, create a debugging log for the
* events received by the transport in var/fm/fmd/xprt/.
*/
(void) fmd_conf_getprop(fmd.d_conf, "client.xprtlog", &i);
(void) fmd_conf_getprop(fmd.d_conf, "log.xprt", &s);
if (i) {
(void) snprintf(buf, sizeof (buf), "%s/%u.log", s, xip->xi_id);
xip->xi_log = fmd_log_open(fmd.d_rootdir, buf, FMD_LOG_XPRT);
}
ASSERT(fmd_module_locked(mp));
fmd_list_append(&mp->mod_transports, xip);
(void) pthread_mutex_lock(&mp->mod_stats_lock);
mp->mod_stats->ms_xprtopen.fmds_value.ui32++;
(void) pthread_mutex_unlock(&mp->mod_stats_lock);
/*
* If this is a read-only transport, return without creating a send
* queue thread and setting up any connection events in our queue.
*/
if ((flags & FMD_XPRT_RDWR) == FMD_XPRT_RDONLY)
goto out;
/*
* Once the transport is fully initialized, create a send queue thread
* and start any connect events flowing to complete our initialization.
*/
if ((xip->xi_thread = fmd_thread_create(mp,
(fmd_thread_f *)fmd_xprt_send, xip)) == NULL) {
fmd_error(EFMD_XPRT_THR,
"failed to create thread for transport %u", xip->xi_id);
fmd_xprt_destroy((fmd_xprt_t *)xip);
(void) fmd_set_errno(EFMD_XPRT_THR);
return (NULL);
}
/*
* If the transport is not being opened to accept an inbound connect,
* start an outbound connection by enqueuing a SYN event for our peer.
*/
if (!(flags & FMD_XPRT_ACCEPT)) {
nvl = fmd_protocol_xprt_ctl(mp,
"resource.fm.xprt.syn", FM_RSRC_XPRT_VERSION);
(void) nvlist_lookup_string(nvl, FM_CLASS, &s);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, s);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
out:
fmd_dprintf(FMD_DBG_XPRT, "opened transport %u\n", xip->xi_id);
return ((fmd_xprt_t *)xip);
}
void
fmd_xprt_destroy(fmd_xprt_t *xp)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
fmd_module_t *mp = xip->xi_queue->eq_mod;
uint_t id = xip->xi_id;
fmd_case_impl_t *cip, *nip;
fmd_stat_t *sp;
uint_t i, n;
ASSERT(fmd_module_locked(mp));
fmd_list_delete(&mp->mod_transports, xip);
(void) pthread_mutex_lock(&mp->mod_stats_lock);
mp->mod_stats->ms_xprtopen.fmds_value.ui32--;
(void) pthread_mutex_unlock(&mp->mod_stats_lock);
(void) pthread_mutex_lock(&xip->xi_lock);
while (xip->xi_busy != 0)
(void) pthread_cond_wait(&xip->xi_cv, &xip->xi_lock);
/*
* Remove the transport from global visibility, cancel its send-side
* thread, join with it, and then remove the transport from module
* visibility. Once all this is done, destroy and free the transport.
*/
(void) fmd_idspace_free(fmd.d_xprt_ids, xip->xi_id);
if (xip->xi_thread != NULL) {
fmd_eventq_abort(xip->xi_queue);
fmd_module_unlock(mp);
fmd_thread_destroy(xip->xi_thread, FMD_THREAD_JOIN);
fmd_module_lock(mp);
}
if (xip->xi_log != NULL)
fmd_log_rele(xip->xi_log);
/*
* Release every case handle in the module that was cached by this
* transport. This will result in these cases disappearing from the
* local case hash so that fmd_case_uuclose() and fmd_case_repaired()
* etc can no longer be used.
*/
for (cip = fmd_list_next(&mp->mod_cases); cip != NULL; cip = nip) {
nip = fmd_list_next(cip);
if (cip->ci_xprt == xp)
fmd_case_discard((fmd_case_t *)cip, B_TRUE);
}
/*
* Destroy every class in the various subscription hashes and remove
* any corresponding subscriptions from the event dispatch queue.
*/
fmd_xprt_class_hash_destroy(&xip->xi_lsub);
fmd_xprt_class_hash_destroy(&xip->xi_rsub);
fmd_xprt_class_hash_destroy(&xip->xi_usub);
/*
* Uniquify the stat names exactly as was done in fmd_xprt_create()
* before calling fmd_ustat_insert(), otherwise fmd_ustat_delete()
* won't find the entries in the hash table.
*/
n = sizeof (_fmd_xprt_stat_tmpl) / sizeof (fmd_stat_t);
sp = fmd_alloc(sizeof (_fmd_xprt_stat_tmpl), FMD_SLEEP);
bcopy(&_fmd_xprt_stat_tmpl, sp, sizeof (_fmd_xprt_stat_tmpl));
for (i = 0; i < n; i++) {
(void) snprintf(sp[i].fmds_name,
sizeof (sp[i].fmds_name), "fmd.xprt.%u.%s", xip->xi_id,
((fmd_stat_t *)&_fmd_xprt_stat_tmpl + i)->fmds_name);
}
fmd_ustat_delete(mp->mod_ustat, n, sp);
fmd_free(sp, sizeof (_fmd_xprt_stat_tmpl));
fmd_free(xip->xi_stats, sizeof (fmd_xprt_stat_t));
fmd_eventq_destroy(xip->xi_queue);
nvlist_free(xip->xi_auth);
fmd_free(xip, sizeof (fmd_xprt_impl_t));
fmd_dprintf(FMD_DBG_XPRT, "closed transport %u\n", id);
}
void
fmd_xprt_xsuspend(fmd_xprt_t *xp, uint_t flags)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
uint_t oflags;
ASSERT((flags & ~FMD_XPRT_SMASK) == 0);
(void) pthread_mutex_lock(&xip->xi_lock);
oflags = xip->xi_flags;
xip->xi_flags |= flags;
if (!(oflags & FMD_XPRT_SMASK) && (xip->xi_flags & FMD_XPRT_SMASK) != 0)
fmd_eventq_suspend(xip->xi_queue);
(void) pthread_cond_broadcast(&xip->xi_cv);
while (xip->xi_busy != 0)
(void) pthread_cond_wait(&xip->xi_cv, &xip->xi_lock);
(void) pthread_mutex_unlock(&xip->xi_lock);
}
void
fmd_xprt_xresume(fmd_xprt_t *xp, uint_t flags)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
uint_t oflags;
ASSERT((flags & ~FMD_XPRT_SMASK) == 0);
(void) pthread_mutex_lock(&xip->xi_lock);
oflags = xip->xi_flags;
xip->xi_flags &= ~flags;
if ((oflags & FMD_XPRT_SMASK) != 0 && !(xip->xi_flags & FMD_XPRT_SMASK))
fmd_eventq_resume(xip->xi_queue);
(void) pthread_cond_broadcast(&xip->xi_cv);
(void) pthread_mutex_unlock(&xip->xi_lock);
}
void
fmd_xprt_send(fmd_xprt_t *xp)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
fmd_module_t *mp = xip->xi_queue->eq_mod;
fmd_event_t *ep;
int err;
while ((ep = fmd_eventq_delete(xip->xi_queue)) != NULL) {
if (FMD_EVENT_TTL(ep) == 0) {
fmd_event_rele(ep);
continue;
}
fmd_dprintf(FMD_DBG_XPRT, "xprt %u sending %s\n",
xip->xi_id, (char *)FMD_EVENT_DATA(ep));
err = mp->mod_ops->mop_transport(mp, xp, ep);
fmd_eventq_done(xip->xi_queue);
if (err == FMD_SEND_RETRY) {
fmd_eventq_insert_at_time(xip->xi_queue, ep);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_retried.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
}
if (err != FMD_SEND_SUCCESS && err != FMD_SEND_RETRY) {
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_lost.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
}
fmd_event_rele(ep);
}
}
/*
* This function creates a local suspect list. This is used when a suspect list
* is created directly by an external source like fminject.
*/
static void
fmd_xprt_list_suspect_local(fmd_xprt_t *xp, nvlist_t *nvl)
{
nvlist_t **nvlp;
nvlist_t *de_fmri, *de_fmri_dup = NULL;
int64_t *diag_time;
char *code = NULL;
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
fmd_case_t *cp;
uint_t nelem = 0, nelem2 = 0, i;
boolean_t injected;
fmd_module_lock(xip->xi_queue->eq_mod);
cp = fmd_case_create(xip->xi_queue->eq_mod, NULL, NULL);
if (cp == NULL) {
fmd_module_unlock(xip->xi_queue->eq_mod);
return;
}
/*
* copy diag_code if present
*/
(void) nvlist_lookup_string(nvl, FM_SUSPECT_DIAG_CODE, &code);
if (code != NULL) {
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
cip->ci_precanned = 1;
fmd_case_setcode(cp, code);
}
/*
* copy suspects
*/
(void) nvlist_lookup_nvlist_array(nvl, FM_SUSPECT_FAULT_LIST, &nvlp,
&nelem);
for (i = 0; i < nelem; i++) {
nvlist_t *flt_copy, *asru = NULL, *fru = NULL, *rsrc = NULL;
topo_hdl_t *thp;
char *loc = NULL;
int err;
thp = fmd_fmri_topo_hold(TOPO_VERSION);
(void) nvlist_xdup(nvlp[i], &flt_copy, &fmd.d_nva);
(void) nvlist_lookup_nvlist(nvlp[i], FM_FAULT_RESOURCE, &rsrc);
/*
* If no fru specified, get it from topo
*/
if (nvlist_lookup_nvlist(nvlp[i], FM_FAULT_FRU, &fru) != 0 &&
rsrc && topo_fmri_fru(thp, rsrc, &fru, &err) == 0)
(void) nvlist_add_nvlist(flt_copy, FM_FAULT_FRU, fru);
/*
* If no asru specified, get it from topo
*/
if (nvlist_lookup_nvlist(nvlp[i], FM_FAULT_ASRU, &asru) != 0 &&
rsrc && topo_fmri_asru(thp, rsrc, &asru, &err) == 0)
(void) nvlist_add_nvlist(flt_copy, FM_FAULT_ASRU, asru);
/*
* If no location specified, get it from topo
*/
if (nvlist_lookup_string(nvlp[i], FM_FAULT_LOCATION,
&loc) != 0) {
if (fru && topo_fmri_label(thp, fru, &loc, &err) == 0)
(void) nvlist_add_string(flt_copy,
FM_FAULT_LOCATION, loc);
else if (rsrc && topo_fmri_label(thp, rsrc, &loc,
&err) == 0)
(void) nvlist_add_string(flt_copy,
FM_FAULT_LOCATION, loc);
if (loc)
topo_hdl_strfree(thp, loc);
}
if (fru)
nvlist_free(fru);
if (asru)
nvlist_free(asru);
if (rsrc)
nvlist_free(rsrc);
fmd_fmri_topo_rele(thp);
fmd_case_insert_suspect(cp, flt_copy);
}
/*
* copy diag_time if present
*/
if (nvlist_lookup_int64_array(nvl, FM_SUSPECT_DIAG_TIME, &diag_time,
&nelem2) == 0 && nelem2 >= 2)
fmd_case_settime(cp, diag_time[0], diag_time[1]);
/*
* copy DE fmri if present
*/
if (nvlist_lookup_nvlist(nvl, FM_SUSPECT_DE, &de_fmri) == 0) {
(void) nvlist_xdup(de_fmri, &de_fmri_dup, &fmd.d_nva);
fmd_case_set_de_fmri(cp, de_fmri_dup);
}
/*
* copy injected if present
*/
if (nvlist_lookup_boolean_value(nvl, FM_SUSPECT_INJECTED,
&injected) == 0 && injected)
fmd_case_set_injected(cp);
fmd_case_transition(cp, FMD_CASE_SOLVED, FMD_CF_SOLVED);
fmd_module_unlock(xip->xi_queue->eq_mod);
}
/*
* This function is called to create a proxy case on receipt of a list.suspect
* from the diagnosing side of the transport.
*/
static void
fmd_xprt_list_suspect(fmd_xprt_t *xp, nvlist_t *nvl)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
nvlist_t **nvlp;
uint_t nelem = 0, nelem2 = 0, i;
int64_t *diag_time;
topo_hdl_t *thp;
char *class;
nvlist_t *rsrc, *asru, *de_fmri, *de_fmri_dup = NULL;
nvlist_t *flt_copy;
int err;
nvlist_t **asrua;
uint8_t *proxy_asru = NULL;
int got_proxy_asru = 0;
int got_hc_rsrc = 0;
int got_hc_asru = 0;
int got_present_rsrc = 0;
uint8_t *diag_asru = NULL;
char *scheme;
uint8_t *statusp;
char *uuid, *code;
fmd_case_t *cp;
fmd_case_impl_t *cip;
int need_update = 0;
boolean_t injected;
if (nvlist_lookup_string(nvl, FM_SUSPECT_UUID, &uuid) != 0)
return;
if (nvlist_lookup_string(nvl, FM_SUSPECT_DIAG_CODE, &code) != 0)
return;
(void) nvlist_lookup_nvlist_array(nvl, FM_SUSPECT_FAULT_LIST, &nvlp,
&nelem);
/*
* In order to implement FMD_XPRT_HCONLY and FMD_XPRT_HC_PRESENT_ONLY
* etc we first scan the suspects to see if
* - there was an asru in the received fault
* - there was an hc-scheme resource in the received fault
* - any hc-scheme resource in the received fault is present in the
* local topology
* - any hc-scheme resource in the received fault has an asru in the
* local topology
*/
if (nelem > 0) {
asrua = fmd_zalloc(sizeof (nvlist_t *) * nelem, FMD_SLEEP);
proxy_asru = fmd_zalloc(sizeof (uint8_t) * nelem, FMD_SLEEP);
diag_asru = fmd_zalloc(sizeof (uint8_t) * nelem, FMD_SLEEP);
thp = fmd_fmri_topo_hold(TOPO_VERSION);
for (i = 0; i < nelem; i++) {
if (nvlist_lookup_nvlist(nvlp[i], FM_FAULT_ASRU,
&asru) == 0 && asru != NULL)
diag_asru[i] = 1;
if (nvlist_lookup_string(nvlp[i], FM_CLASS,
&class) != 0 || strncmp(class, "fault", 5) != 0)
continue;
/*
* If there is an hc-scheme asru, use that to find the
* real asru. Otherwise if there is an hc-scheme
* resource, work out the old asru from that.
* This order is to allow a two stage evaluation
* of the asru where a fault in the diagnosing side
* is in a component not visible to the proxy side,
* but prevents a component that is visible from
* working. So the diagnosing side sets the asru to
* the latter component (in hc-scheme as the diagnosing
* side doesn't know about the proxy side's virtual
* schemes), and then the proxy side can convert that
* to a suitable virtual scheme asru.
*/
if (nvlist_lookup_nvlist(nvlp[i], FM_FAULT_ASRU,
&asru) == 0 && asru != NULL &&
nvlist_lookup_string(asru, FM_FMRI_SCHEME,
&scheme) == 0 &&
strcmp(scheme, FM_FMRI_SCHEME_HC) == 0) {
got_hc_asru = 1;
if (xip->xi_flags & FMD_XPRT_EXTERNAL)
continue;
if (topo_fmri_present(thp, asru, &err) != 0)
got_present_rsrc = 1;
if (topo_fmri_asru(thp, asru, &asrua[i],
&err) == 0) {
proxy_asru[i] =
FMD_PROXY_ASRU_FROM_ASRU;
got_proxy_asru = 1;
}
} else if (nvlist_lookup_nvlist(nvlp[i],
FM_FAULT_RESOURCE, &rsrc) == 0 && rsrc != NULL &&
nvlist_lookup_string(rsrc, FM_FMRI_SCHEME,
&scheme) == 0 &&
strcmp(scheme, FM_FMRI_SCHEME_HC) == 0) {
got_hc_rsrc = 1;
if (xip->xi_flags & FMD_XPRT_EXTERNAL)
continue;
if (topo_fmri_present(thp, rsrc, &err) != 0)
got_present_rsrc = 1;
if (topo_fmri_asru(thp, rsrc, &asrua[i],
&err) == 0) {
proxy_asru[i] =
FMD_PROXY_ASRU_FROM_RSRC;
got_proxy_asru = 1;
}
}
}
fmd_fmri_topo_rele(thp);
}
/*
* If we're set up only to report hc-scheme faults, and
* there aren't any, then just drop the event.
*/
if (got_hc_rsrc == 0 && got_hc_asru == 0 &&
(xip->xi_flags & FMD_XPRT_HCONLY)) {
if (nelem > 0) {
fmd_free(proxy_asru, sizeof (uint8_t) * nelem);
fmd_free(diag_asru, sizeof (uint8_t) * nelem);
fmd_free(asrua, sizeof (nvlist_t *) * nelem);
}
return;
}
/*
* If we're set up only to report locally present hc-scheme
* faults, and there aren't any, then just drop the event.
*/
if (got_present_rsrc == 0 &&
(xip->xi_flags & FMD_XPRT_HC_PRESENT_ONLY)) {
if (nelem > 0) {
for (i = 0; i < nelem; i++)
if (asrua[i])
nvlist_free(asrua[i]);
fmd_free(proxy_asru, sizeof (uint8_t) * nelem);
fmd_free(diag_asru, sizeof (uint8_t) * nelem);
fmd_free(asrua, sizeof (nvlist_t *) * nelem);
}
return;
}
/*
* If fmd_case_recreate() returns NULL, UUID is already known.
*/
fmd_module_lock(xip->xi_queue->eq_mod);
if ((cp = fmd_case_recreate(xip->xi_queue->eq_mod, xp,
FMD_CASE_UNSOLVED, uuid, code)) == NULL) {
if (nelem > 0) {
for (i = 0; i < nelem; i++)
if (asrua[i])
nvlist_free(asrua[i]);
fmd_free(proxy_asru, sizeof (uint8_t) * nelem);
fmd_free(diag_asru, sizeof (uint8_t) * nelem);
fmd_free(asrua, sizeof (nvlist_t *) * nelem);
}
fmd_module_unlock(xip->xi_queue->eq_mod);
return;
}
cip = (fmd_case_impl_t *)cp;
cip->ci_diag_asru = diag_asru;
cip->ci_proxy_asru = proxy_asru;
for (i = 0; i < nelem; i++) {
(void) nvlist_xdup(nvlp[i], &flt_copy, &fmd.d_nva);
if (proxy_asru[i] != FMD_PROXY_ASRU_NOT_NEEDED) {
/*
* Copy suspects, but remove/replace asru first. Also if
* the original asru was hc-scheme use that as resource.
*/
if (proxy_asru[i] == FMD_PROXY_ASRU_FROM_ASRU) {
(void) nvlist_remove(flt_copy,
FM_FAULT_RESOURCE, DATA_TYPE_NVLIST);
(void) nvlist_lookup_nvlist(flt_copy,
FM_FAULT_ASRU, &asru);
(void) nvlist_add_nvlist(flt_copy,
FM_FAULT_RESOURCE, asru);
}
(void) nvlist_remove(flt_copy, FM_FAULT_ASRU,
DATA_TYPE_NVLIST);
(void) nvlist_add_nvlist(flt_copy, FM_FAULT_ASRU,
asrua[i]);
nvlist_free(asrua[i]);
} else if (got_hc_asru == 0 &&
nvlist_lookup_nvlist(flt_copy, FM_FAULT_ASRU,
&asru) == 0 && asru != NULL) {
/*
* If we have an asru from diag side, but it's not
* in hc scheme, then we can't be sure what it
* represents, so mark as no retire.
*/
(void) nvlist_add_boolean_value(flt_copy,
FM_SUSPECT_RETIRE, B_FALSE);
}
fmd_case_insert_suspect(cp, flt_copy);
}
/*
* copy diag_time
*/
if (nvlist_lookup_int64_array(nvl, FM_SUSPECT_DIAG_TIME, &diag_time,
&nelem2) == 0 && nelem2 >= 2)
fmd_case_settime(cp, diag_time[0], diag_time[1]);
/*
* copy DE fmri
*/
if (nvlist_lookup_nvlist(nvl, FM_SUSPECT_DE, &de_fmri) == 0) {
(void) nvlist_xdup(de_fmri, &de_fmri_dup, &fmd.d_nva);
fmd_case_set_de_fmri(cp, de_fmri_dup);
}
/*
* copy injected if present
*/
if (nvlist_lookup_boolean_value(nvl, FM_SUSPECT_INJECTED,
&injected) == 0 && injected)
fmd_case_set_injected(cp);
/*
* Transition to solved. This will log the suspect list and create
* the resource cache entries.
*/
fmd_case_transition(cp, FMD_CASE_SOLVED, FMD_CF_SOLVED);
/*
* Update status if it is not simply "all faulty" (can happen if
* list.suspects are being re-sent when the transport has reconnected).
*/
(void) nvlist_lookup_uint8_array(nvl, FM_SUSPECT_FAULT_STATUS, &statusp,
&nelem);
for (i = 0; i < nelem; i++) {
if ((statusp[i] & (FM_SUSPECT_FAULTY | FM_SUSPECT_UNUSABLE |
FM_SUSPECT_NOT_PRESENT | FM_SUSPECT_DEGRADED)) !=
FM_SUSPECT_FAULTY)
need_update = 1;
}
if (need_update) {
fmd_case_update_status(cp, statusp, cip->ci_proxy_asru,
cip->ci_diag_asru);
fmd_case_update_containees(cp);
fmd_case_update(cp);
}
/*
* if asru on proxy side, send an update back to the diagnosing side to
* update UNUSABLE/DEGRADED.
*/
if (got_proxy_asru)
fmd_case_xprt_updated(cp);
if (nelem > 0)
fmd_free(asrua, sizeof (nvlist_t *) * nelem);
fmd_module_unlock(xip->xi_queue->eq_mod);
}
void
fmd_xprt_recv(fmd_xprt_t *xp, nvlist_t *nvl, hrtime_t hrt, boolean_t logonly)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
const fmd_xprt_rule_t *xrp;
fmd_t *dp = &fmd;
fmd_event_t *e;
char *class, *uuid;
boolean_t isproto, isereport, isireport, ishvireport, issysevent;
uint64_t *tod;
uint8_t ttl;
uint_t n;
fmd_case_t *cp;
/*
* Grab the transport lock and set the busy flag to indicate we are
* busy receiving an event. If [DI]SUSPEND is pending, wait until fmd
* resumes the transport before continuing on with the receive.
*/
(void) pthread_mutex_lock(&xip->xi_lock);
while (xip->xi_flags & (FMD_XPRT_DSUSPENDED | FMD_XPRT_ISUSPENDED)) {
if (fmd.d_signal != 0) {
(void) pthread_mutex_unlock(&xip->xi_lock);
return; /* fmd_destroy() is in progress */
}
(void) pthread_cond_wait(&xip->xi_cv, &xip->xi_lock);
}
xip->xi_busy++;
ASSERT(xip->xi_busy != 0);
(void) pthread_mutex_unlock(&xip->xi_lock);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_received.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
if (nvlist_lookup_string(nvl, FM_CLASS, &class) != 0) {
fmd_error(EFMD_XPRT_PAYLOAD, "discarding nvlist %p: missing "
"required \"%s\" payload element", (void *)nvl, FM_CLASS);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_discarded.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
nvlist_free(nvl);
goto done;
}
fmd_dprintf(FMD_DBG_XPRT, "xprt %u %s %s\n", xip->xi_id,
((logonly == FMD_B_TRUE) ? "logging" : "posting"), class);
isereport = (strncmp(class, FM_EREPORT_CLASS ".",
sizeof (FM_EREPORT_CLASS)) == 0) ? FMD_B_TRUE : FMD_B_FALSE;
isireport = (strncmp(class, FM_IREPORT_CLASS ".",
sizeof (FM_IREPORT_CLASS)) == 0) ? FMD_B_TRUE : FMD_B_FALSE;
issysevent = (strncmp(class, SYSEVENT_RSRC_CLASS,
sizeof (SYSEVENT_RSRC_CLASS) - 1)) == 0 ? FMD_B_TRUE : FMD_B_FALSE;
if (isireport) {
char *pri;
if (nvlist_lookup_string(nvl, FM_IREPORT_PRIORITY, &pri) == 0 &&
strncmp(pri, "high", 5) == 0) {
ishvireport = 1;
} else {
ishvireport = 0;
}
}
/*
* The logonly flag should only be set for ereports.
*/
if (logonly == FMD_B_TRUE && isereport == FMD_B_FALSE) {
fmd_error(EFMD_XPRT_INVAL, "discarding nvlist %p: "
"logonly flag is not valid for class %s",
(void *)nvl, class);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_discarded.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
nvlist_free(nvl);
goto done;
}
/*
* If a time-to-live value is present in the event and is zero, drop
* the event and bump xs_timeouts. Otherwise decrement the TTL value.
*/
if (nvlist_lookup_uint8(nvl, FMD_EVN_TTL, &ttl) == 0) {
if (ttl == 0) {
fmd_dprintf(FMD_DBG_XPRT, "xprt %u nvlist %p (%s) "
"timeout: event received with ttl=0\n",
xip->xi_id, (void *)nvl, class);
(void) pthread_mutex_lock(&xip->xi_stats_lock);
xip->xi_stats->xs_timeouts.fmds_value.ui64++;
(void) pthread_mutex_unlock(&xip->xi_stats_lock);
nvlist_free(nvl);
goto done;
}
(void) nvlist_remove(nvl, FMD_EVN_TTL, DATA_TYPE_UINT8);
(void) nvlist_add_uint8(nvl, FMD_EVN_TTL, ttl - 1);
}
/*
* If we are using the native system clock, the underlying transport
* code can provide a tighter event time bound by telling us when the
* event was enqueued. If we're using simulated clocks, this time
* has no meaning to us, so just reset the value to use HRT_NOW.
*/
if (dp->d_clockops != &fmd_timeops_native)
hrt = FMD_HRT_NOW;
/*
* If an event's class is in the FMD_CTL_CLASS family, then create a
* control event. If a FMD_EVN_TOD member is found, create a protocol
* event using this time. Otherwise create a protocol event using hrt.
*/
isproto = (strncmp(class, FMD_CTL_CLASS, FMD_CTL_CLASS_LEN) == 0) ?
FMD_B_FALSE : FMD_B_TRUE;
if (isproto == FMD_B_FALSE)
e = fmd_event_create(FMD_EVT_CTL, hrt, nvl, fmd_ctl_init(nvl));
else if (nvlist_lookup_uint64_array(nvl, FMD_EVN_TOD, &tod, &n) != 0)
e = fmd_event_create(FMD_EVT_PROTOCOL, hrt, nvl, class);
else {
e = fmd_event_recreate(FMD_EVT_PROTOCOL,
NULL, nvl, class, NULL, 0, 0);
}
/*
* If the debug log is enabled, create a temporary event, log it to the
* debug log, and then reset the underlying state of the event.
*/
if (xip->xi_log != NULL) {
fmd_event_impl_t *ep = (fmd_event_impl_t *)e;
fmd_log_append(xip->xi_log, e, NULL);
ep->ev_flags |= FMD_EVF_VOLATILE;
ep->ev_off = 0;
ep->ev_len = 0;
if (ep->ev_log != NULL) {
fmd_log_rele(ep->ev_log);
ep->ev_log = NULL;
}
}
/*
* Iterate over the rules for the current state trying to match the
* event class to one of our special rules. If a rule is matched, the
* event is consumed and not dispatched to other modules. If the rule
* set ends without matching an event, we fall through to dispatching.
*/
for (xrp = xip->xi_state; xrp->xr_class != NULL; xrp++) {
if (fmd_event_match(e, FMD_EVT_PROTOCOL, xrp->xr_class)) {
fmd_event_hold(e);
xrp->xr_func(xip, nvl);
fmd_event_rele(e);
goto done;
}
}
/*
* Record ereports and ireports in the log. This code will
* be replaced later with a per-transport intent log instead.
*/
if (isereport == FMD_B_TRUE || isireport == FMD_B_TRUE ||
issysevent == B_TRUE) {
pthread_rwlock_t *lockp;
fmd_log_t *lp;
if (isereport == FMD_B_TRUE) {
lp = fmd.d_errlog;
lockp = &fmd.d_log_lock;
} else {
if (ishvireport || issysevent) {
lp = fmd.d_hvilog;
lockp = &fmd.d_hvilog_lock;
} else {
lp = fmd.d_ilog;
lockp = &fmd.d_ilog_lock;
}
}
(void) pthread_rwlock_rdlock(lockp);
fmd_log_append(lp, e, NULL);
(void) pthread_rwlock_unlock(lockp);
}
/*
* If a list.suspect event is received, create a case for the specified
* UUID in the case hash, with the transport module as its owner.
*/
if (fmd_event_match(e, FMD_EVT_PROTOCOL, FM_LIST_SUSPECT_CLASS)) {
if (xip->xi_flags & FMD_XPRT_CACHE_AS_LOCAL)
fmd_xprt_list_suspect_local(xp, nvl);
else
fmd_xprt_list_suspect(xp, nvl);
fmd_event_hold(e);
fmd_event_rele(e);
goto done;
}
/*
* If a list.updated or list.repaired event is received, update the
* resource cache status and the local case.
*/
if (fmd_event_match(e, FMD_EVT_PROTOCOL, FM_LIST_REPAIRED_CLASS) ||
fmd_event_match(e, FMD_EVT_PROTOCOL, FM_LIST_UPDATED_CLASS)) {
uint8_t *statusp;
uint_t nelem = 0;
(void) nvlist_lookup_uint8_array(nvl, FM_SUSPECT_FAULT_STATUS,
&statusp, &nelem);
fmd_module_lock(xip->xi_queue->eq_mod);
if (nvlist_lookup_string(nvl, FM_SUSPECT_UUID, &uuid) == 0 &&
(cp = fmd_case_hash_lookup(fmd.d_cases, uuid)) != NULL) {
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
if (cip->ci_xprt != NULL) {
fmd_case_update_status(cp, statusp,
cip->ci_proxy_asru, cip->ci_diag_asru);
fmd_case_update_containees(cp);
fmd_case_update(cp);
}
fmd_case_rele(cp);
}
fmd_module_unlock(xip->xi_queue->eq_mod);
fmd_event_hold(e);
fmd_event_rele(e);
goto done;
}
/*
* If a list.isolated event is received, update resource cache status
*/
if (fmd_event_match(e, FMD_EVT_PROTOCOL, FM_LIST_ISOLATED_CLASS)) {
uint8_t *statusp;
uint_t nelem = 0;
(void) nvlist_lookup_uint8_array(nvl, FM_SUSPECT_FAULT_STATUS,
&statusp, &nelem);
fmd_module_lock(xip->xi_queue->eq_mod);
if (nvlist_lookup_string(nvl, FM_SUSPECT_UUID, &uuid) == 0 &&
(cp = fmd_case_hash_lookup(fmd.d_cases, uuid)) != NULL) {
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
if (cip->ci_xprt != NULL)
fmd_case_update_status(cp, statusp,
cip->ci_proxy_asru, cip->ci_diag_asru);
fmd_case_rele(cp);
}
fmd_module_unlock(xip->xi_queue->eq_mod);
fmd_event_hold(e);
fmd_event_rele(e);
goto done;
}
/*
* If a list.resolved event is received, resolve the local case.
*/
if (fmd_event_match(e, FMD_EVT_PROTOCOL, FM_LIST_RESOLVED_CLASS)) {
fmd_module_lock(xip->xi_queue->eq_mod);
if (nvlist_lookup_string(nvl, FM_SUSPECT_UUID, &uuid) == 0 &&
(cp = fmd_case_hash_lookup(fmd.d_cases, uuid)) != NULL) {
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
if (cip->ci_xprt != NULL)
fmd_case_transition(cp, (cip->ci_state ==
FMD_CASE_REPAIRED) ? FMD_CASE_RESOLVED :
(cip->ci_state == FMD_CASE_CLOSED) ?
FMD_CASE_REPAIRED : FMD_CASE_CLOSE_WAIT,
FMD_CF_RESOLVED);
fmd_case_rele(cp);
}
fmd_module_unlock(xip->xi_queue->eq_mod);
fmd_event_hold(e);
fmd_event_rele(e);
goto done;
}
if (logonly == FMD_B_TRUE || (xip->xi_flags & FMD_XPRT_EXTERNAL)) {
/*
* Don't proxy ereports on an EXTERNAL transport - we won't
* know how to diagnose them with the wrong topology. Note
* that here (and above) we have to hold/release the event in
* order for it to be freed.
*/
fmd_event_hold(e);
fmd_event_rele(e);
} else if (isproto == FMD_B_TRUE)
fmd_dispq_dispatch(dp->d_disp, e, class);
else
fmd_modhash_dispatch(dp->d_mod_hash, e);
done:
(void) pthread_mutex_lock(&xip->xi_lock);
ASSERT(xip->xi_busy != 0);
xip->xi_busy--;
(void) pthread_cond_broadcast(&xip->xi_cv);
(void) pthread_mutex_unlock(&xip->xi_lock);
}
void
fmd_xprt_uuclose(fmd_xprt_t *xp, const char *uuid)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
fmd_event_t *e;
nvlist_t *nvl;
char *s;
if ((xip->xi_flags & FMD_XPRT_RDWR) == FMD_XPRT_RDONLY)
return; /* read-only transports do not proxy uuclose */
TRACE((FMD_DBG_XPRT, "xprt %u closing case %s\n", xip->xi_id, uuid));
nvl = fmd_protocol_xprt_uuclose(xip->xi_queue->eq_mod,
"resource.fm.xprt.uuclose", xip->xi_version, uuid);
(void) nvlist_lookup_string(nvl, FM_CLASS, &s);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, s);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
/*
* On proxy side, send back uuresolved request to diagnosing side
*/
void
fmd_xprt_uuresolved(fmd_xprt_t *xp, const char *uuid)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
fmd_event_t *e;
nvlist_t *nvl;
char *s;
if ((xip->xi_flags & FMD_XPRT_RDWR) == FMD_XPRT_RDONLY)
return; /* read-only transports do not proxy uuresolved */
TRACE((FMD_DBG_XPRT, "xprt %u resolving case %s\n", xip->xi_id, uuid));
nvl = fmd_protocol_xprt_uuresolved(xip->xi_queue->eq_mod,
"resource.fm.xprt.uuresolved", xip->xi_version, uuid);
(void) nvlist_lookup_string(nvl, FM_CLASS, &s);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, s);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
/*
* On proxy side, send back repair/acquit/etc request to diagnosing side
*/
void
fmd_xprt_updated(fmd_xprt_t *xp, const char *uuid, uint8_t *statusp,
uint8_t *has_asrup, uint_t nelem)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
fmd_event_t *e;
nvlist_t *nvl;
char *s;
if ((xip->xi_flags & FMD_XPRT_RDWR) == FMD_XPRT_RDONLY)
return; /* read-only transports do not support remote repairs */
TRACE((FMD_DBG_XPRT, "xprt %u updating case %s\n", xip->xi_id, uuid));
nvl = fmd_protocol_xprt_updated(xip->xi_queue->eq_mod,
"resource.fm.xprt.updated", xip->xi_version, uuid, statusp,
has_asrup, nelem);
(void) nvlist_lookup_string(nvl, FM_CLASS, &s);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, s);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
/*
* Insert the specified class into our remote subscription hash. If the class
* is already present, bump the reference count; otherwise add it to the hash
* and then enqueue an event for our remote peer to proxy our subscription.
*/
void
fmd_xprt_subscribe(fmd_xprt_t *xp, const char *class)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
uint_t refs;
nvlist_t *nvl;
fmd_event_t *e;
char *s;
if ((xip->xi_flags & FMD_XPRT_RDWR) == FMD_XPRT_RDONLY)
return; /* read-only transports do not proxy subscriptions */
if (!(xip->xi_flags & FMD_XPRT_SUBSCRIBER))
return; /* transport is not yet an active subscriber */
(void) pthread_mutex_lock(&xip->xi_lock);
refs = fmd_xprt_class_hash_insert(xip, &xip->xi_rsub, class);
(void) pthread_mutex_unlock(&xip->xi_lock);
if (refs > 1)
return; /* we've already asked our peer for this subscription */
fmd_dprintf(FMD_DBG_XPRT,
"xprt %u subscribing to %s\n", xip->xi_id, class);
nvl = fmd_protocol_xprt_sub(xip->xi_queue->eq_mod,
"resource.fm.xprt.subscribe", xip->xi_version, class);
(void) nvlist_lookup_string(nvl, FM_CLASS, &s);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, s);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
/*
* Delete the specified class from the remote subscription hash. If the
* reference count drops to zero, ask our remote peer to unsubscribe by proxy.
*/
void
fmd_xprt_unsubscribe(fmd_xprt_t *xp, const char *class)
{
fmd_xprt_impl_t *xip = (fmd_xprt_impl_t *)xp;
uint_t refs;
nvlist_t *nvl;
fmd_event_t *e;
char *s;
if ((xip->xi_flags & FMD_XPRT_RDWR) == FMD_XPRT_RDONLY)
return; /* read-only transports do not proxy subscriptions */
if (!(xip->xi_flags & FMD_XPRT_SUBSCRIBER))
return; /* transport is not yet an active subscriber */
/*
* If the subscription reference count drops to zero in xi_rsub, insert
* an entry into the xi_usub hash indicating we await an unsuback event.
*/
(void) pthread_mutex_lock(&xip->xi_lock);
if ((refs = fmd_xprt_class_hash_delete(xip, &xip->xi_rsub, class)) == 0)
(void) fmd_xprt_class_hash_insert(xip, &xip->xi_usub, class);
(void) pthread_mutex_unlock(&xip->xi_lock);
if (refs != 0)
return; /* other subscriptions for this class still active */
fmd_dprintf(FMD_DBG_XPRT,
"xprt %u unsubscribing from %s\n", xip->xi_id, class);
nvl = fmd_protocol_xprt_sub(xip->xi_queue->eq_mod,
"resource.fm.xprt.unsubscribe", xip->xi_version, class);
(void) nvlist_lookup_string(nvl, FM_CLASS, &s);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, s);
fmd_eventq_insert_at_time(xip->xi_queue, e);
}
static void
fmd_xprt_subscribe_xid(fmd_idspace_t *ids, id_t id, void *class)
{
fmd_xprt_t *xp;
if ((xp = fmd_idspace_hold(ids, id)) != NULL) {
fmd_xprt_subscribe(xp, class);
fmd_idspace_rele(ids, id);
}
}
void
fmd_xprt_subscribe_all(const char *class)
{
fmd_idspace_t *ids = fmd.d_xprt_ids;
if (ids->ids_count != 0)
fmd_idspace_apply(ids, fmd_xprt_subscribe_xid, (void *)class);
}
static void
fmd_xprt_unsubscribe_xid(fmd_idspace_t *ids, id_t id, void *class)
{
fmd_xprt_t *xp;
if ((xp = fmd_idspace_hold(ids, id)) != NULL) {
fmd_xprt_unsubscribe(xp, class);
fmd_idspace_rele(ids, id);
}
}
void
fmd_xprt_unsubscribe_all(const char *class)
{
fmd_idspace_t *ids = fmd.d_xprt_ids;
if (ids->ids_count != 0)
fmd_idspace_apply(ids, fmd_xprt_unsubscribe_xid, (void *)class);
}
/*ARGSUSED*/
static void
fmd_xprt_suspend_xid(fmd_idspace_t *ids, id_t id, void *arg)
{
fmd_xprt_t *xp;
if ((xp = fmd_idspace_hold(ids, id)) != NULL) {
fmd_xprt_xsuspend(xp, FMD_XPRT_DSUSPENDED);
fmd_idspace_rele(ids, id);
}
}
void
fmd_xprt_suspend_all(void)
{
fmd_idspace_t *ids = fmd.d_xprt_ids;
(void) pthread_mutex_lock(&fmd.d_xprt_lock);
if (fmd.d_xprt_suspend++ != 0) {
(void) pthread_mutex_unlock(&fmd.d_xprt_lock);
return; /* already suspended */
}
if (ids->ids_count != 0)
fmd_idspace_apply(ids, fmd_xprt_suspend_xid, NULL);
(void) pthread_mutex_unlock(&fmd.d_xprt_lock);
}
/*ARGSUSED*/
static void
fmd_xprt_resume_xid(fmd_idspace_t *ids, id_t id, void *arg)
{
fmd_xprt_t *xp;
if ((xp = fmd_idspace_hold(ids, id)) != NULL) {
fmd_xprt_xresume(xp, FMD_XPRT_DSUSPENDED);
fmd_idspace_rele(ids, id);
}
}
void
fmd_xprt_resume_all(void)
{
fmd_idspace_t *ids = fmd.d_xprt_ids;
(void) pthread_mutex_lock(&fmd.d_xprt_lock);
if (fmd.d_xprt_suspend == 0)
fmd_panic("fmd_xprt_suspend/resume_all mismatch\n");
if (--fmd.d_xprt_suspend != 0) {
(void) pthread_mutex_unlock(&fmd.d_xprt_lock);
return; /* not ready to be resumed */
}
if (ids->ids_count != 0)
fmd_idspace_apply(ids, fmd_xprt_resume_xid, NULL);
(void) pthread_mutex_unlock(&fmd.d_xprt_lock);
}
|