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
|
/*
* 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 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <sys/fm/protocol.h>
#include <uuid/uuid.h>
#include <dirent.h>
#include <limits.h>
#include <unistd.h>
#include <alloca.h>
#include <stddef.h>
#include <fm/libtopo.h>
#include <fmd_alloc.h>
#include <fmd_string.h>
#include <fmd_error.h>
#include <fmd_subr.h>
#include <fmd_protocol.h>
#include <fmd_event.h>
#include <fmd_conf.h>
#include <fmd_fmri.h>
#include <fmd_dispq.h>
#include <fmd_case.h>
#include <fmd_module.h>
#include <fmd_asru.h>
#include <fmd.h>
static const char *const _fmd_asru_events[] = {
FMD_RSRC_CLASS "asru.ok", /* UNUSABLE=0 FAULTED=0 */
FMD_RSRC_CLASS "asru.degraded", /* UNUSABLE=0 FAULTED=1 */
FMD_RSRC_CLASS "asru.unknown", /* UNUSABLE=1 FAULTED=0 */
FMD_RSRC_CLASS "asru.faulted" /* UNUSABLE=1 FAULTED=1 */
};
static const char *const _fmd_asru_snames[] = {
"uf", "uF", "Uf", "UF" /* same order as above */
};
volatile uint32_t fmd_asru_fake_not_present = 0;
static uint_t
fmd_asru_strhash(fmd_asru_hash_t *ahp, const char *val)
{
return (topo_fmri_strhash(ahp->ah_topo->ft_hdl, val) % ahp->ah_hashlen);
}
static boolean_t
fmd_asru_strcmp(fmd_asru_hash_t *ahp, const char *a, const char *b)
{
return (topo_fmri_strcmp(ahp->ah_topo->ft_hdl, a, b));
}
static fmd_asru_t *
fmd_asru_create(fmd_asru_hash_t *ahp, const char *uuid,
const char *name, nvlist_t *fmri)
{
fmd_asru_t *ap = fmd_zalloc(sizeof (fmd_asru_t), FMD_SLEEP);
char *s;
(void) pthread_mutex_init(&ap->asru_lock, NULL);
(void) pthread_cond_init(&ap->asru_cv, NULL);
ap->asru_name = fmd_strdup(name, FMD_SLEEP);
if (fmri)
(void) nvlist_xdup(fmri, &ap->asru_fmri, &fmd.d_nva);
ap->asru_root = fmd_strdup(ahp->ah_dirpath, FMD_SLEEP);
ap->asru_uuid = fmd_strdup(uuid, FMD_SLEEP);
ap->asru_uuidlen = ap->asru_uuid ? strlen(ap->asru_uuid) : 0;
ap->asru_refs = 1;
if (fmri && nvlist_lookup_string(fmri, FM_FMRI_SCHEME, &s) == 0 &&
strcmp(s, FM_FMRI_SCHEME_FMD) == 0)
ap->asru_flags |= FMD_ASRU_INTERNAL;
return (ap);
}
static void
fmd_asru_destroy(fmd_asru_t *ap)
{
ASSERT(MUTEX_HELD(&ap->asru_lock));
ASSERT(ap->asru_refs == 0);
nvlist_free(ap->asru_event);
fmd_strfree(ap->asru_name);
nvlist_free(ap->asru_fmri);
fmd_strfree(ap->asru_root);
fmd_free(ap->asru_uuid, ap->asru_uuidlen + 1);
fmd_free(ap, sizeof (fmd_asru_t));
}
static void
fmd_asru_hash_insert(fmd_asru_hash_t *ahp, fmd_asru_t *ap)
{
uint_t h = fmd_asru_strhash(ahp, ap->asru_name);
ASSERT(RW_WRITE_HELD(&ahp->ah_lock));
ap->asru_next = ahp->ah_hash[h];
ahp->ah_hash[h] = ap;
ahp->ah_count++;
}
static fmd_asru_t *
fmd_asru_hold(fmd_asru_t *ap)
{
(void) pthread_mutex_lock(&ap->asru_lock);
ap->asru_refs++;
ASSERT(ap->asru_refs != 0);
(void) pthread_mutex_unlock(&ap->asru_lock);
return (ap);
}
/*
* Lookup an asru in the hash by name and place a hold on it. If the asru is
* not found, no entry is created and NULL is returned. This internal function
* is for callers who have the ah_lock held and is used by lookup_name below.
*/
fmd_asru_t *
fmd_asru_hash_lookup(fmd_asru_hash_t *ahp, const char *name)
{
fmd_asru_t *ap;
uint_t h;
ASSERT(RW_LOCK_HELD(&ahp->ah_lock));
h = fmd_asru_strhash(ahp, name);
for (ap = ahp->ah_hash[h]; ap != NULL; ap = ap->asru_next) {
if (fmd_asru_strcmp(ahp, ap->asru_name, name))
break;
}
if (ap != NULL)
(void) fmd_asru_hold(ap);
else
(void) fmd_set_errno(EFMD_ASRU_NOENT);
return (ap);
}
static int
fmd_asru_is_present(nvlist_t *event)
{
int ps = -1;
nvlist_t *asru, *fru, *rsrc;
/*
* Check if there is evidence that this object is no longer present.
* In general fmd_fmri_present() should be supported on resources and/or
* frus, as those are the things that are physically present or not
* present - an asru can be spread over a number of frus some of which
* are present and some not, so fmd_fmri_present() is not generally
* meaningful. However retain a check for asru first for compatibility.
* If we have checked all three and we still get -1 then nothing knows
* whether it's present or not, so err on the safe side and treat it
* as still present.
*/
if (fmd_asru_fake_not_present)
ps = 0;
if (ps == -1 && nvlist_lookup_nvlist(event, FM_FAULT_ASRU, &asru) == 0)
ps = fmd_fmri_present(asru);
if (ps == -1 && nvlist_lookup_nvlist(event, FM_FAULT_RESOURCE,
&rsrc) == 0)
ps = fmd_fmri_present(rsrc);
if (ps == -1 && nvlist_lookup_nvlist(event, FM_FAULT_FRU, &fru) == 0)
ps = fmd_fmri_present(fru);
if (ps == -1)
ps = 1;
return (ps);
}
static void
fmd_asru_asru_hash_insert(fmd_asru_hash_t *ahp, fmd_asru_link_t *alp,
char *name)
{
uint_t h = fmd_asru_strhash(ahp, name);
ASSERT(RW_WRITE_HELD(&ahp->ah_lock));
alp->al_asru_next = ahp->ah_asru_hash[h];
ahp->ah_asru_hash[h] = alp;
ahp->ah_al_count++;
}
static void
fmd_asru_case_hash_insert(fmd_asru_hash_t *ahp, fmd_asru_link_t *alp,
char *name)
{
uint_t h = fmd_asru_strhash(ahp, name);
ASSERT(RW_WRITE_HELD(&ahp->ah_lock));
alp->al_case_next = ahp->ah_case_hash[h];
ahp->ah_case_hash[h] = alp;
}
static void
fmd_asru_fru_hash_insert(fmd_asru_hash_t *ahp, fmd_asru_link_t *alp, char *name)
{
uint_t h = fmd_asru_strhash(ahp, name);
ASSERT(RW_WRITE_HELD(&ahp->ah_lock));
alp->al_fru_next = ahp->ah_fru_hash[h];
ahp->ah_fru_hash[h] = alp;
}
static void
fmd_asru_label_hash_insert(fmd_asru_hash_t *ahp, fmd_asru_link_t *alp,
char *name)
{
uint_t h = fmd_asru_strhash(ahp, name);
ASSERT(RW_WRITE_HELD(&ahp->ah_lock));
alp->al_label_next = ahp->ah_label_hash[h];
ahp->ah_label_hash[h] = alp;
}
static void
fmd_asru_rsrc_hash_insert(fmd_asru_hash_t *ahp, fmd_asru_link_t *alp,
char *name)
{
uint_t h = fmd_asru_strhash(ahp, name);
ASSERT(RW_WRITE_HELD(&ahp->ah_lock));
alp->al_rsrc_next = ahp->ah_rsrc_hash[h];
ahp->ah_rsrc_hash[h] = alp;
}
static void
fmd_asru_al_destroy(fmd_asru_link_t *alp)
{
ASSERT(alp->al_refs == 0);
ASSERT(MUTEX_HELD(&alp->al_asru->asru_lock));
if (alp->al_log != NULL)
fmd_log_rele(alp->al_log);
fmd_free(alp->al_uuid, alp->al_uuidlen + 1);
nvlist_free(alp->al_event);
fmd_strfree(alp->al_rsrc_name);
fmd_strfree(alp->al_case_uuid);
fmd_strfree(alp->al_fru_name);
fmd_strfree(alp->al_asru_name);
fmd_strfree(alp->al_label);
nvlist_free(alp->al_asru_fmri);
fmd_free(alp, sizeof (fmd_asru_link_t));
}
static fmd_asru_link_t *
fmd_asru_al_hold(fmd_asru_link_t *alp)
{
fmd_asru_t *ap = alp->al_asru;
(void) pthread_mutex_lock(&ap->asru_lock);
ap->asru_refs++;
alp->al_refs++;
ASSERT(alp->al_refs != 0);
(void) pthread_mutex_unlock(&ap->asru_lock);
return (alp);
}
static void fmd_asru_destroy(fmd_asru_t *ap);
/*ARGSUSED*/
static void
fmd_asru_al_hash_release(fmd_asru_hash_t *ahp, fmd_asru_link_t *alp)
{
fmd_asru_t *ap = alp->al_asru;
(void) pthread_mutex_lock(&ap->asru_lock);
ASSERT(alp->al_refs != 0);
if (--alp->al_refs == 0)
fmd_asru_al_destroy(alp);
ASSERT(ap->asru_refs != 0);
if (--ap->asru_refs == 0)
fmd_asru_destroy(ap);
else
(void) pthread_mutex_unlock(&ap->asru_lock);
}
static int
fmd_asru_get_namestr(nvlist_t *nvl, char **name, ssize_t *namelen)
{
if ((*namelen = fmd_fmri_nvl2str(nvl, NULL, 0)) == -1)
return (EFMD_ASRU_FMRI);
*name = fmd_alloc(*namelen + 1, FMD_SLEEP);
if (fmd_fmri_nvl2str(nvl, *name, *namelen + 1) == -1) {
if (*name != NULL)
fmd_free(*name, *namelen + 1);
return (EFMD_ASRU_FMRI);
}
return (0);
}
static fmd_asru_link_t *
fmd_asru_al_create(fmd_asru_hash_t *ahp, nvlist_t *nvl, fmd_case_t *cp,
const char *al_uuid)
{
nvlist_t *asru = NULL, *fru, *rsrc;
int got_rsrc = 0, got_asru = 0, got_fru = 0;
ssize_t fru_namelen, rsrc_namelen, asru_namelen;
char *asru_name, *rsrc_name, *fru_name, *name, *label;
fmd_asru_link_t *alp;
fmd_asru_t *ap;
boolean_t msg;
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
if (nvlist_lookup_nvlist(nvl, FM_FAULT_ASRU, &asru) == 0 &&
fmd_asru_get_namestr(asru, &asru_name, &asru_namelen) == 0)
got_asru = 1;
if (nvlist_lookup_nvlist(nvl, FM_FAULT_FRU, &fru) == 0 &&
fmd_asru_get_namestr(fru, &fru_name, &fru_namelen) == 0)
got_fru = 1;
if (nvlist_lookup_nvlist(nvl, FM_FAULT_RESOURCE, &rsrc) == 0 &&
fmd_asru_get_namestr(rsrc, &rsrc_name, &rsrc_namelen) == 0)
got_rsrc = 1;
if (nvlist_lookup_string(nvl, FM_FAULT_LOCATION, &label) != 0)
label = "";
/*
* Grab the rwlock as a writer; Then create and insert the asru with
* ahp->ah_lock held and hash it in. We'll then drop the rwlock and
* proceed to initializing the asru.
*/
(void) pthread_rwlock_wrlock(&ahp->ah_lock);
/*
* Create and initialise the per-fault "link" structure.
*/
alp = fmd_zalloc(sizeof (fmd_asru_link_t), FMD_SLEEP);
if (got_asru)
(void) nvlist_xdup(asru, &alp->al_asru_fmri, &fmd.d_nva);
alp->al_uuid = fmd_strdup(al_uuid, FMD_SLEEP);
alp->al_uuidlen = strlen(alp->al_uuid);
alp->al_refs = 1;
/*
* If this is the first fault for this asru, then create the per-asru
* structure and link into the hash.
*/
name = got_asru ? asru_name : "";
if ((ap = fmd_asru_hash_lookup(ahp, name)) == NULL) {
ap = fmd_asru_create(ahp, al_uuid, name, got_asru ? asru :
NULL);
fmd_asru_hash_insert(ahp, ap);
} else
nvlist_free(ap->asru_event);
(void) nvlist_xdup(nvl, &ap->asru_event, &fmd.d_nva);
/*
* Put the link structure on the list associated with the per-asru
* structure. Then put the link structure on the various hashes.
*/
fmd_list_append(&ap->asru_list, (fmd_list_t *)alp);
alp->al_asru = ap;
alp->al_asru_name = got_asru ? asru_name : fmd_strdup("", FMD_SLEEP);
fmd_asru_asru_hash_insert(ahp, alp, alp->al_asru_name);
alp->al_fru_name = got_fru ? fru_name : fmd_strdup("", FMD_SLEEP);
fmd_asru_fru_hash_insert(ahp, alp, alp->al_fru_name);
alp->al_rsrc_name = got_rsrc ? rsrc_name : fmd_strdup("", FMD_SLEEP);
fmd_asru_rsrc_hash_insert(ahp, alp, alp->al_rsrc_name);
alp->al_label = fmd_strdup(label, FMD_SLEEP);
fmd_asru_label_hash_insert(ahp, alp, label);
alp->al_case_uuid = fmd_strdup(cip->ci_uuid, FMD_SLEEP);
fmd_asru_case_hash_insert(ahp, alp, cip->ci_uuid);
(void) pthread_mutex_lock(&ap->asru_lock);
(void) pthread_rwlock_unlock(&ahp->ah_lock);
ap->asru_case = alp->al_case = cp;
if (nvlist_lookup_boolean_value(nvl, FM_SUSPECT_MESSAGE, &msg) == 0 &&
msg == B_FALSE)
ap->asru_flags |= FMD_ASRU_INVISIBLE;
(void) nvlist_xdup(nvl, &alp->al_event, &fmd.d_nva);
ap->asru_flags |= FMD_ASRU_VALID;
(void) pthread_cond_broadcast(&ap->asru_cv);
(void) pthread_mutex_unlock(&ap->asru_lock);
return (alp);
}
static void
fmd_asru_hash_recreate(fmd_log_t *lp, fmd_event_t *ep, fmd_asru_hash_t *ahp)
{
nvlist_t *nvl = FMD_EVENT_NVL(ep);
boolean_t f, u, ps, us;
nvlist_t *flt, *flt_copy, *asru;
char *case_uuid = NULL, *case_code = NULL;
fmd_asru_t *ap;
fmd_asru_link_t *alp;
fmd_case_t *cp;
int64_t *diag_time;
uint_t nelem;
/*
* Extract the most recent values of 'faulty' from the event log.
*/
if (nvlist_lookup_boolean_value(nvl, FM_RSRC_ASRU_FAULTY, &f) != 0) {
fmd_error(EFMD_ASRU_EVENT, "failed to reload asru %s: "
"invalid event log record\n", lp->log_name);
ahp->ah_error = EFMD_ASRU_EVENT;
return;
}
if (nvlist_lookup_nvlist(nvl, FM_RSRC_ASRU_EVENT, &flt) != 0) {
fmd_error(EFMD_ASRU_EVENT, "failed to reload asru %s: "
"invalid event log record\n", lp->log_name);
ahp->ah_error = EFMD_ASRU_EVENT;
return;
}
(void) nvlist_lookup_string(nvl, FM_RSRC_ASRU_UUID, &case_uuid);
(void) nvlist_lookup_string(nvl, FM_RSRC_ASRU_CODE, &case_code);
/*
* Attempt to recreate the case in the CLOSED state.
* If the case is already present, fmd_case_recreate() will return it.
* If not, we'll create a new orphaned case. Either way, we use the
* ASRU event to insert a suspect into the partially-restored case.
*/
fmd_module_lock(fmd.d_rmod);
cp = fmd_case_recreate(fmd.d_rmod, NULL, FMD_CASE_CLOSED, case_uuid,
case_code);
fmd_case_hold(cp);
fmd_module_unlock(fmd.d_rmod);
if (nvlist_lookup_int64_array(nvl, FM_SUSPECT_DIAG_TIME, &diag_time,
&nelem) == 0 && nelem >= 2)
fmd_case_settime(cp, diag_time[0], diag_time[1]);
else
fmd_case_settime(cp, lp->log_stat.st_ctime, 0);
(void) nvlist_xdup(flt, &flt_copy, &fmd.d_nva);
fmd_case_recreate_suspect(cp, flt_copy);
/*
* Now create the resource cache entries.
*/
alp = fmd_asru_al_create(ahp, flt, cp, fmd_strbasename(lp->log_name));
ap = alp->al_asru;
/*
* Check to see if the resource is still present in the system. If
* so, then update the value of the unusable bit based on the current
* system configuration. If not, then consider unusable.
*/
ps = fmd_asru_is_present(flt);
if (ps) {
if (nvlist_lookup_nvlist(flt, FM_FAULT_ASRU, &asru) != 0)
u = FMD_B_FALSE;
else if ((us = fmd_fmri_unusable(asru)) == -1) {
fmd_error(EFMD_ASRU_FMRI, "failed to update "
"status of asru %s", lp->log_name);
u = FMD_B_FALSE;
} else
u = us != 0;
} else
u = FMD_B_TRUE; /* not present; set unusable */
ap->asru_flags |= FMD_ASRU_RECREATED;
if (ps)
ap->asru_flags |= FMD_ASRU_PRESENT;
if (f) {
alp->al_flags |= FMD_ASRU_FAULTY;
ap->asru_flags |= FMD_ASRU_FAULTY;
}
if (u) {
alp->al_flags |= FMD_ASRU_UNUSABLE;
ap->asru_flags |= FMD_ASRU_UNUSABLE;
}
TRACE((FMD_DBG_ASRU, "asru %s recreated as %p (%s)", alp->al_uuid,
(void *)ap, _fmd_asru_snames[ap->asru_flags & FMD_ASRU_STATE]));
}
static void
fmd_asru_hash_discard(fmd_asru_hash_t *ahp, const char *uuid, int err)
{
char src[PATH_MAX], dst[PATH_MAX];
(void) snprintf(src, PATH_MAX, "%s/%s", ahp->ah_dirpath, uuid);
(void) snprintf(dst, PATH_MAX, "%s/%s-", ahp->ah_dirpath, uuid);
if (err != 0)
err = rename(src, dst);
else
err = unlink(src);
if (err != 0 && errno != ENOENT)
fmd_error(EFMD_ASRU_EVENT, "failed to rename log %s", src);
}
/*
* Open a saved log file and restore it into the ASRU hash. If we can't even
* open the log, rename the log file to <uuid>- to indicate it is corrupt. If
* fmd_log_replay() fails, we either delete the file (if it has reached the
* upper limit on cache age) or rename it for debugging if it was corrupted.
*/
static void
fmd_asru_hash_logopen(fmd_asru_hash_t *ahp, const char *uuid)
{
fmd_log_t *lp = fmd_log_tryopen(ahp->ah_dirpath, uuid, FMD_LOG_ASRU);
uint_t n;
if (lp == NULL) {
fmd_asru_hash_discard(ahp, uuid, errno);
return;
}
ahp->ah_error = 0;
n = ahp->ah_al_count;
fmd_log_replay(lp, (fmd_log_f *)fmd_asru_hash_recreate, ahp);
fmd_log_rele(lp);
if (ahp->ah_al_count == n)
fmd_asru_hash_discard(ahp, uuid, ahp->ah_error);
}
void
fmd_asru_hash_refresh(fmd_asru_hash_t *ahp)
{
struct dirent *dp;
DIR *dirp;
int zero;
if ((dirp = opendir(ahp->ah_dirpath)) == NULL) {
fmd_error(EFMD_ASRU_NODIR,
"failed to open asru cache directory %s", ahp->ah_dirpath);
return;
}
(void) fmd_conf_getprop(fmd.d_conf, "rsrc.zero", &zero);
(void) pthread_rwlock_wrlock(&ahp->ah_lock);
while ((dp = readdir(dirp)) != NULL) {
if (dp->d_name[0] == '.')
continue; /* skip "." and ".." */
if (zero)
fmd_asru_hash_discard(ahp, dp->d_name, 0);
else if (!fmd_strmatch(dp->d_name, "*-"))
fmd_asru_hash_logopen(ahp, dp->d_name);
}
(void) pthread_rwlock_unlock(&ahp->ah_lock);
(void) closedir(dirp);
}
/*
* If the resource is present and faulty but not unusable, replay the fault
* event that caused it be marked faulty. This will cause the agent
* subscribing to this fault class to again disable the resource.
*/
/*ARGSUSED*/
static void
fmd_asru_hash_replay_asru(fmd_asru_t *ap, void *data)
{
fmd_event_t *e;
nvlist_t *nvl;
char *class;
if (ap->asru_event != NULL && (ap->asru_flags & (FMD_ASRU_STATE |
FMD_ASRU_PRESENT)) == (FMD_ASRU_FAULTY | FMD_ASRU_PRESENT)) {
fmd_dprintf(FMD_DBG_ASRU,
"replaying fault event for %s", ap->asru_name);
(void) nvlist_xdup(ap->asru_event, &nvl, &fmd.d_nva);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
(void) nvlist_add_string(nvl, FMD_EVN_UUID,
((fmd_case_impl_t *)ap->asru_case)->ci_uuid);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, class);
fmd_dispq_dispatch(fmd.d_disp, e, class);
}
}
void
fmd_asru_hash_replay(fmd_asru_hash_t *ahp)
{
fmd_asru_hash_apply(ahp, fmd_asru_hash_replay_asru, NULL);
}
/*
* Check if the resource is still present. If not, and if the rsrc.age time
* has expired, then do an implicit repair on the resource.
*/
static void
fmd_asru_repair_if_aged(fmd_asru_link_t *alp, void *er)
{
struct timeval tv;
fmd_log_t *lp;
hrtime_t hrt;
if (fmd_asru_is_present(alp->al_event))
return;
fmd_time_gettimeofday(&tv);
lp = fmd_log_open(alp->al_asru->asru_root, alp->al_uuid, FMD_LOG_ASRU);
hrt = (hrtime_t)(tv.tv_sec - lp->log_stat.st_mtime);
fmd_log_rele(lp);
if (hrt * NANOSEC >= fmd.d_asrus->ah_lifetime)
fmd_asru_repair(alp, er);
}
void
fmd_asru_clear_aged_rsrcs()
{
int err;
fmd_asru_al_hash_apply(fmd.d_asrus, fmd_asru_repair_if_aged, &err);
}
fmd_asru_hash_t *
fmd_asru_hash_create(const char *root, const char *dir)
{
fmd_asru_hash_t *ahp;
char path[PATH_MAX];
ahp = fmd_alloc(sizeof (fmd_asru_hash_t), FMD_SLEEP);
(void) pthread_rwlock_init(&ahp->ah_lock, NULL);
ahp->ah_hashlen = fmd.d_str_buckets;
ahp->ah_hash = fmd_zalloc(sizeof (void *) * ahp->ah_hashlen, FMD_SLEEP);
ahp->ah_asru_hash = fmd_zalloc(sizeof (void *) * ahp->ah_hashlen,
FMD_SLEEP);
ahp->ah_case_hash = fmd_zalloc(sizeof (void *) * ahp->ah_hashlen,
FMD_SLEEP);
ahp->ah_fru_hash = fmd_zalloc(sizeof (void *) * ahp->ah_hashlen,
FMD_SLEEP);
ahp->ah_label_hash = fmd_zalloc(sizeof (void *) * ahp->ah_hashlen,
FMD_SLEEP);
ahp->ah_rsrc_hash = fmd_zalloc(sizeof (void *) * ahp->ah_hashlen,
FMD_SLEEP);
(void) snprintf(path, sizeof (path), "%s/%s", root, dir);
ahp->ah_dirpath = fmd_strdup(path, FMD_SLEEP);
(void) fmd_conf_getprop(fmd.d_conf, "rsrc.age", &ahp->ah_lifetime);
(void) fmd_conf_getprop(fmd.d_conf, "fakenotpresent",
(uint32_t *)&fmd_asru_fake_not_present);
ahp->ah_al_count = 0;
ahp->ah_count = 0;
ahp->ah_error = 0;
ahp->ah_topo = fmd_topo_hold();
return (ahp);
}
void
fmd_asru_hash_destroy(fmd_asru_hash_t *ahp)
{
fmd_asru_link_t *alp, *np;
uint_t i;
for (i = 0; i < ahp->ah_hashlen; i++) {
for (alp = ahp->ah_case_hash[i]; alp != NULL; alp = np) {
np = alp->al_case_next;
alp->al_case_next = NULL;
fmd_case_rele(alp->al_case);
alp->al_case = NULL;
fmd_asru_al_hash_release(ahp, alp);
}
}
fmd_strfree(ahp->ah_dirpath);
fmd_free(ahp->ah_hash, sizeof (void *) * ahp->ah_hashlen);
fmd_free(ahp->ah_asru_hash, sizeof (void *) * ahp->ah_hashlen);
fmd_free(ahp->ah_case_hash, sizeof (void *) * ahp->ah_hashlen);
fmd_free(ahp->ah_fru_hash, sizeof (void *) * ahp->ah_hashlen);
fmd_free(ahp->ah_label_hash, sizeof (void *) * ahp->ah_hashlen);
fmd_free(ahp->ah_rsrc_hash, sizeof (void *) * ahp->ah_hashlen);
fmd_topo_rele(ahp->ah_topo);
fmd_free(ahp, sizeof (fmd_asru_hash_t));
}
/*
* Take a snapshot of the ASRU database by placing an additional hold on each
* member in an auxiliary array, and then call 'func' for each ASRU.
*/
void
fmd_asru_hash_apply(fmd_asru_hash_t *ahp,
void (*func)(fmd_asru_t *, void *), void *arg)
{
fmd_asru_t *ap, **aps, **app;
uint_t apc, i;
(void) pthread_rwlock_rdlock(&ahp->ah_lock);
aps = app = fmd_alloc(ahp->ah_count * sizeof (fmd_asru_t *), FMD_SLEEP);
apc = ahp->ah_count;
for (i = 0; i < ahp->ah_hashlen; i++) {
for (ap = ahp->ah_hash[i]; ap != NULL; ap = ap->asru_next)
*app++ = fmd_asru_hold(ap);
}
ASSERT(app == aps + apc);
(void) pthread_rwlock_unlock(&ahp->ah_lock);
for (i = 0; i < apc; i++) {
if (aps[i]->asru_fmri != NULL)
func(aps[i], arg);
fmd_asru_hash_release(ahp, aps[i]);
}
fmd_free(aps, apc * sizeof (fmd_asru_t *));
}
void
fmd_asru_al_hash_apply(fmd_asru_hash_t *ahp,
void (*func)(fmd_asru_link_t *, void *), void *arg)
{
fmd_asru_link_t *alp, **alps, **alpp;
uint_t alpc, i;
(void) pthread_rwlock_rdlock(&ahp->ah_lock);
alps = alpp = fmd_alloc(ahp->ah_al_count * sizeof (fmd_asru_link_t *),
FMD_SLEEP);
alpc = ahp->ah_al_count;
for (i = 0; i < ahp->ah_hashlen; i++) {
for (alp = ahp->ah_case_hash[i]; alp != NULL;
alp = alp->al_case_next)
*alpp++ = fmd_asru_al_hold(alp);
}
ASSERT(alpp == alps + alpc);
(void) pthread_rwlock_unlock(&ahp->ah_lock);
for (i = 0; i < alpc; i++) {
func(alps[i], arg);
fmd_asru_al_hash_release(ahp, alps[i]);
}
fmd_free(alps, alpc * sizeof (fmd_asru_link_t *));
}
static void
fmd_asru_do_hash_apply(fmd_asru_hash_t *ahp, char *name,
void (*func)(fmd_asru_link_t *, void *), void *arg,
fmd_asru_link_t **hash, size_t match_offset, size_t next_offset)
{
fmd_asru_link_t *alp, **alps, **alpp;
uint_t alpc = 0, i;
uint_t h;
(void) pthread_rwlock_rdlock(&ahp->ah_lock);
h = fmd_asru_strhash(ahp, name);
for (alp = hash[h]; alp != NULL; alp =
/* LINTED pointer alignment */
FMD_ASRU_AL_HASH_NEXT(alp, next_offset))
if (fmd_asru_strcmp(ahp,
/* LINTED pointer alignment */
FMD_ASRU_AL_HASH_NAME(alp, match_offset), name))
alpc++;
alps = alpp = fmd_alloc(alpc * sizeof (fmd_asru_link_t *), FMD_SLEEP);
for (alp = hash[h]; alp != NULL; alp =
/* LINTED pointer alignment */
FMD_ASRU_AL_HASH_NEXT(alp, next_offset))
if (fmd_asru_strcmp(ahp,
/* LINTED pointer alignment */
FMD_ASRU_AL_HASH_NAME(alp, match_offset), name))
*alpp++ = fmd_asru_al_hold(alp);
ASSERT(alpp == alps + alpc);
(void) pthread_rwlock_unlock(&ahp->ah_lock);
for (i = 0; i < alpc; i++) {
func(alps[i], arg);
fmd_asru_al_hash_release(ahp, alps[i]);
}
fmd_free(alps, alpc * sizeof (fmd_asru_link_t *));
}
void
fmd_asru_hash_apply_by_asru(fmd_asru_hash_t *ahp, char *name,
void (*func)(fmd_asru_link_t *, void *), void *arg)
{
fmd_asru_do_hash_apply(ahp, name, func, arg, ahp->ah_asru_hash,
offsetof(fmd_asru_link_t, al_asru_name),
offsetof(fmd_asru_link_t, al_asru_next));
}
void
fmd_asru_hash_apply_by_case(fmd_asru_hash_t *ahp, fmd_case_t *cp,
void (*func)(fmd_asru_link_t *, void *), void *arg)
{
fmd_asru_do_hash_apply(ahp, ((fmd_case_impl_t *)cp)->ci_uuid, func, arg,
ahp->ah_case_hash, offsetof(fmd_asru_link_t, al_case_uuid),
offsetof(fmd_asru_link_t, al_case_next));
}
void
fmd_asru_hash_apply_by_fru(fmd_asru_hash_t *ahp, char *name,
void (*func)(fmd_asru_link_t *, void *), void *arg)
{
fmd_asru_do_hash_apply(ahp, name, func, arg, ahp->ah_fru_hash,
offsetof(fmd_asru_link_t, al_fru_name),
offsetof(fmd_asru_link_t, al_fru_next));
}
void
fmd_asru_hash_apply_by_rsrc(fmd_asru_hash_t *ahp, char *name,
void (*func)(fmd_asru_link_t *, void *), void *arg)
{
fmd_asru_do_hash_apply(ahp, name, func, arg, ahp->ah_rsrc_hash,
offsetof(fmd_asru_link_t, al_rsrc_name),
offsetof(fmd_asru_link_t, al_rsrc_next));
}
void
fmd_asru_hash_apply_by_label(fmd_asru_hash_t *ahp, char *name,
void (*func)(fmd_asru_link_t *, void *), void *arg)
{
fmd_asru_do_hash_apply(ahp, name, func, arg, ahp->ah_label_hash,
offsetof(fmd_asru_link_t, al_label),
offsetof(fmd_asru_link_t, al_label_next));
}
/*
* Lookup an asru in the hash by name and place a hold on it. If the asru is
* not found, no entry is created and NULL is returned.
*/
fmd_asru_t *
fmd_asru_hash_lookup_name(fmd_asru_hash_t *ahp, const char *name)
{
fmd_asru_t *ap;
(void) pthread_rwlock_rdlock(&ahp->ah_lock);
ap = fmd_asru_hash_lookup(ahp, name);
(void) pthread_rwlock_unlock(&ahp->ah_lock);
return (ap);
}
/*
* Lookup an asru in the hash and place a hold on it.
*/
fmd_asru_t *
fmd_asru_hash_lookup_nvl(fmd_asru_hash_t *ahp, nvlist_t *fmri)
{
fmd_asru_t *ap;
char *name = NULL;
ssize_t namelen;
if (fmd_asru_get_namestr(fmri, &name, &namelen) != 0)
return (NULL);
(void) pthread_rwlock_rdlock(&ahp->ah_lock);
ap = fmd_asru_hash_lookup(ahp, name);
(void) pthread_rwlock_unlock(&ahp->ah_lock);
fmd_free(name, namelen + 1);
return (ap);
}
/*
* Create a resource cache entry using the fault event "nvl" for one of the
* suspects from the case "cp".
*
* The fault event can have the following components : FM_FAULT_ASRU,
* FM_FAULT_FRU, FM_FAULT_RESOURCE. These should be set by the Diagnosis Engine
* when calling fmd_nvl_create_fault(). In the general case, these are all
* optional and an entry will always be added into the cache even if one or all
* of these fields is missing.
*
* However, for hardware faults the recommended practice is that the fault
* event should always have the FM_FAULT_RESOURCE field present and that this
* should be represented in hc-scheme.
*
* Currently the DE should also add the FM_FAULT_ASRU and FM_FAULT_FRU fields
* where known, though at some future stage fmd might be able to fill these
* in automatically from the topology.
*/
fmd_asru_link_t *
fmd_asru_hash_create_entry(fmd_asru_hash_t *ahp, fmd_case_t *cp, nvlist_t *nvl)
{
char *parsed_uuid;
uuid_t uuid;
int uuidlen;
fmd_asru_link_t *alp;
/*
* Generate a UUID for the ASRU. libuuid cleverly gives us no
* interface for specifying or learning the buffer size. Sigh.
* The spec says 36 bytes but we use a tunable just to be safe.
*/
(void) fmd_conf_getprop(fmd.d_conf, "uuidlen", &uuidlen);
parsed_uuid = fmd_zalloc(uuidlen + 1, FMD_SLEEP);
uuid_generate(uuid);
uuid_unparse(uuid, parsed_uuid);
/*
* Now create the resource cache entries.
*/
fmd_case_hold_locked(cp);
alp = fmd_asru_al_create(ahp, nvl, cp, parsed_uuid);
TRACE((FMD_DBG_ASRU, "asru %s created as %p",
alp->al_uuid, (void *)alp->al_asru));
fmd_free(parsed_uuid, uuidlen + 1);
return (alp);
}
/*
* Release the reference count on an asru obtained using fmd_asru_hash_lookup.
* We take 'ahp' for symmetry and in case we need to use it in future work.
*/
/*ARGSUSED*/
void
fmd_asru_hash_release(fmd_asru_hash_t *ahp, fmd_asru_t *ap)
{
(void) pthread_mutex_lock(&ap->asru_lock);
ASSERT(ap->asru_refs != 0);
if (--ap->asru_refs == 0)
fmd_asru_destroy(ap);
else
(void) pthread_mutex_unlock(&ap->asru_lock);
}
static void
fmd_asru_do_delete_entry(fmd_asru_hash_t *ahp, fmd_case_t *cp,
fmd_asru_link_t **hash, size_t next_offset, char *name)
{
uint_t h;
fmd_asru_link_t *alp, **pp, *alpnext, **alpnextp;
(void) pthread_rwlock_wrlock(&ahp->ah_lock);
h = fmd_asru_strhash(ahp, name);
pp = &hash[h];
for (alp = *pp; alp != NULL; alp = alpnext) {
/* LINTED pointer alignment */
alpnextp = FMD_ASRU_AL_HASH_NEXTP(alp, next_offset);
alpnext = *alpnextp;
if (alp->al_case == cp) {
*pp = *alpnextp;
*alpnextp = NULL;
} else
pp = alpnextp;
}
(void) pthread_rwlock_unlock(&ahp->ah_lock);
}
static void
fmd_asru_do_hash_delete(fmd_asru_hash_t *ahp, fmd_case_susp_t *cis,
fmd_case_t *cp, fmd_asru_link_t **hash, size_t next_offset, char *nvname)
{
nvlist_t *nvl;
char *name = NULL;
ssize_t namelen;
if (nvlist_lookup_nvlist(cis->cis_nvl, nvname, &nvl) == 0 &&
(namelen = fmd_fmri_nvl2str(nvl, NULL, 0)) != -1 &&
(name = fmd_alloc(namelen + 1, FMD_SLEEP)) != NULL) {
if (fmd_fmri_nvl2str(nvl, name, namelen + 1) != -1)
fmd_asru_do_delete_entry(ahp, cp, hash, next_offset,
name);
fmd_free(name, namelen + 1);
} else
fmd_asru_do_delete_entry(ahp, cp, hash, next_offset, "");
}
void
fmd_asru_hash_delete_case(fmd_asru_hash_t *ahp, fmd_case_t *cp)
{
fmd_case_impl_t *cip = (fmd_case_impl_t *)cp;
fmd_case_susp_t *cis;
fmd_asru_link_t *alp, **plp, *alpnext;
fmd_asru_t *ap;
char path[PATH_MAX];
char *label;
uint_t h;
/*
* first delete hash entries for each suspect
*/
for (cis = cip->ci_suspects; cis != NULL; cis = cis->cis_next) {
fmd_asru_do_hash_delete(ahp, cis, cp, ahp->ah_fru_hash,
offsetof(fmd_asru_link_t, al_fru_next), FM_FAULT_FRU);
fmd_asru_do_hash_delete(ahp, cis, cp, ahp->ah_rsrc_hash,
offsetof(fmd_asru_link_t, al_rsrc_next), FM_FAULT_RESOURCE);
if (nvlist_lookup_string(cis->cis_nvl, FM_FAULT_LOCATION,
&label) != 0)
label = "";
fmd_asru_do_delete_entry(ahp, cp, ahp->ah_label_hash,
offsetof(fmd_asru_link_t, al_label_next), label);
fmd_asru_do_hash_delete(ahp, cis, cp, ahp->ah_asru_hash,
offsetof(fmd_asru_link_t, al_asru_next), FM_FAULT_ASRU);
}
/*
* then delete associated case hash entries
*/
(void) pthread_rwlock_wrlock(&ahp->ah_lock);
h = fmd_asru_strhash(ahp, cip->ci_uuid);
plp = &ahp->ah_case_hash[h];
for (alp = *plp; alp != NULL; alp = alpnext) {
alpnext = alp->al_case_next;
if (alp->al_case == cp) {
*plp = alp->al_case_next;
alp->al_case_next = NULL;
ASSERT(ahp->ah_al_count != 0);
ahp->ah_al_count--;
/*
* decrement case ref.
*/
fmd_case_rele_locked(cp);
alp->al_case = NULL;
/*
* If we found a matching ASRU, unlink its log file and
* then release the hash entry. Note that it may still
* be referenced if another thread is manipulating it;
* this is ok because once we unlink, the log file will
* not be restored, and the log data will be freed when
* all of the referencing threads release their
* respective references.
*/
(void) snprintf(path, sizeof (path), "%s/%s",
ahp->ah_dirpath, alp->al_uuid);
if (unlink(path) != 0)
fmd_error(EFMD_ASRU_UNLINK,
"failed to unlink asru %s", path);
/*
* Now unlink from the global per-resource cache
* and if this is the last link then remove that from
* it's own hash too.
*/
ap = alp->al_asru;
(void) pthread_mutex_lock(&ap->asru_lock);
fmd_list_delete(&ap->asru_list, alp);
if (ap->asru_list.l_next == NULL) {
uint_t h;
fmd_asru_t *ap2, **pp;
fmd_asru_t *apnext, **apnextp;
ASSERT(ahp->ah_count != 0);
ahp->ah_count--;
h = fmd_asru_strhash(ahp, ap->asru_name);
pp = &ahp->ah_hash[h];
for (ap2 = *pp; ap2 != NULL; ap2 = apnext) {
apnextp = &ap2->asru_next;
apnext = *apnextp;
if (ap2 == ap) {
*pp = *apnextp;
*apnextp = NULL;
} else
pp = apnextp;
}
}
(void) pthread_mutex_unlock(&ap->asru_lock);
fmd_asru_al_hash_release(ahp, alp);
} else
plp = &alp->al_case_next;
}
(void) pthread_rwlock_unlock(&ahp->ah_lock);
}
static void
fmd_asru_repair_containee(fmd_asru_link_t *alp, void *er)
{
if (er && alp->al_asru_fmri && fmd_fmri_contains(er,
alp->al_asru_fmri) > 0 && fmd_asru_clrflags(alp, FMD_ASRU_FAULTY))
fmd_case_update(alp->al_case);
}
void
fmd_asru_repair(fmd_asru_link_t *alp, void *er)
{
int flags;
int rval;
/*
* repair this asru cache entry
*/
rval = fmd_asru_clrflags(alp, FMD_ASRU_FAULTY);
/*
* now check if all entries associated with this asru are repaired and
* if so repair containees
*/
(void) pthread_mutex_lock(&alp->al_asru->asru_lock);
flags = alp->al_asru->asru_flags;
(void) pthread_mutex_unlock(&alp->al_asru->asru_lock);
if (!(flags & FMD_ASRU_FAULTY))
fmd_asru_al_hash_apply(fmd.d_asrus, fmd_asru_repair_containee,
alp->al_asru_fmri);
/*
* if called from fmd_adm_repair() and we really did clear the bit then
* we need to do a case update to see if the associated case can be
* repaired. No need to do this if called from fmd_case_repair() (ie
* when er is NULL) as the case will be explicitly repaired anyway.
*/
if (er) {
*(int *)er = 0;
if (rval)
fmd_case_update(alp->al_case);
}
}
static void
fmd_asru_logevent(fmd_asru_link_t *alp)
{
fmd_asru_t *ap = alp->al_asru;
boolean_t f = (ap->asru_flags & FMD_ASRU_FAULTY) != 0;
boolean_t u = (ap->asru_flags & FMD_ASRU_UNUSABLE) != 0;
boolean_t m = (ap->asru_flags & FMD_ASRU_INVISIBLE) == 0;
fmd_case_impl_t *cip;
fmd_event_t *e;
fmd_log_t *lp;
nvlist_t *nvl;
char *class;
ASSERT(MUTEX_HELD(&ap->asru_lock));
cip = (fmd_case_impl_t *)alp->al_case;
ASSERT(cip != NULL);
if ((lp = alp->al_log) == NULL)
lp = fmd_log_open(ap->asru_root, alp->al_uuid, FMD_LOG_ASRU);
if (lp == NULL)
return; /* can't log events if we can't open the log */
nvl = fmd_protocol_rsrc_asru(_fmd_asru_events[f | (u << 1)],
alp->al_asru_fmri, cip->ci_uuid, cip->ci_code, f, u, m,
alp->al_event, &cip->ci_tv);
(void) nvlist_lookup_string(nvl, FM_CLASS, &class);
e = fmd_event_create(FMD_EVT_PROTOCOL, FMD_HRT_NOW, nvl, class);
fmd_event_hold(e);
fmd_log_append(lp, e, NULL);
fmd_event_rele(e);
/*
* For now, we close the log file after every update to conserve file
* descriptors and daemon overhead. If this becomes a performance
* issue this code can change to keep a fixed-size LRU cache of logs.
*/
fmd_log_rele(lp);
alp->al_log = NULL;
}
int
fmd_asru_setflags(fmd_asru_link_t *alp, uint_t sflag)
{
fmd_asru_t *ap = alp->al_asru;
uint_t nstate, ostate;
ASSERT(!(sflag & ~FMD_ASRU_STATE));
ASSERT(sflag != FMD_ASRU_STATE);
(void) pthread_mutex_lock(&ap->asru_lock);
ostate = alp->al_flags & FMD_ASRU_STATE;
alp->al_flags |= sflag;
nstate = alp->al_flags & FMD_ASRU_STATE;
if (nstate == ostate) {
(void) pthread_mutex_unlock(&ap->asru_lock);
return (0);
}
ap->asru_flags |= sflag;
TRACE((FMD_DBG_ASRU, "asru %s %s->%s", alp->al_uuid,
_fmd_asru_snames[ostate], _fmd_asru_snames[nstate]));
fmd_asru_logevent(alp);
(void) pthread_cond_broadcast(&ap->asru_cv);
(void) pthread_mutex_unlock(&ap->asru_lock);
return (1);
}
int
fmd_asru_clrflags(fmd_asru_link_t *alp, uint_t sflag)
{
fmd_asru_t *ap = alp->al_asru;
fmd_asru_link_t *nalp;
uint_t nstate, ostate, flags = 0;
ASSERT(!(sflag & ~FMD_ASRU_STATE));
ASSERT(sflag != FMD_ASRU_STATE);
(void) pthread_mutex_lock(&ap->asru_lock);
ostate = alp->al_flags & FMD_ASRU_STATE;
alp->al_flags &= ~sflag;
nstate = alp->al_flags & FMD_ASRU_STATE;
if (nstate == ostate) {
(void) pthread_mutex_unlock(&ap->asru_lock);
return (0);
}
if (sflag == FMD_ASRU_UNUSABLE)
ap->asru_flags &= ~sflag;
else if (sflag == FMD_ASRU_FAULTY) {
/*
* only clear the faulty bit if all links are clear
*/
for (nalp = fmd_list_next(&ap->asru_list); nalp != NULL;
nalp = fmd_list_next(nalp))
flags |= nalp->al_flags;
if (!(flags & FMD_ASRU_FAULTY))
ap->asru_flags &= ~sflag;
}
TRACE((FMD_DBG_ASRU, "asru %s %s->%s", alp->al_uuid,
_fmd_asru_snames[ostate], _fmd_asru_snames[nstate]));
fmd_asru_logevent(alp);
(void) pthread_cond_broadcast(&ap->asru_cv);
(void) pthread_mutex_unlock(&ap->asru_lock);
return (1);
}
/*
* Report the current known state of the link entry (ie this particular fault
* affecting this particular ASRU).
*/
int
fmd_asru_al_getstate(fmd_asru_link_t *alp)
{
int us, st;
nvlist_t *asru;
if (fmd_asru_is_present(alp->al_event) == 0)
return ((alp->al_flags & FMD_ASRU_FAULTY) | FMD_ASRU_UNUSABLE);
if (nvlist_lookup_nvlist(alp->al_event, FM_FAULT_ASRU, &asru) == 0)
us = fmd_fmri_unusable(asru);
else
us = (alp->al_flags & FMD_ASRU_UNUSABLE);
st = (alp->al_flags & FMD_ASRU_STATE) | FMD_ASRU_PRESENT;
if (us > 0)
st |= FMD_ASRU_UNUSABLE;
else if (us == 0)
st &= ~FMD_ASRU_UNUSABLE;
return (st);
}
/*
* Report the current known state of the ASRU by refreshing its unusable status
* based upon the routines provided by the scheme module. If the unusable bit
* is different, we do *not* generate a state change here because that change
* may be unrelated to fmd activities and therefore we have no case or event.
* The absence of the transition is harmless as this function is only provided
* for RPC observability and fmd's clients are only concerned with ASRU_FAULTY.
*/
int
fmd_asru_getstate(fmd_asru_t *ap)
{
int us, st;
if (!(ap->asru_flags & FMD_ASRU_INTERNAL) &&
(fmd_asru_fake_not_present || fmd_fmri_present(ap->asru_fmri) <= 0))
return (0); /* do not report non-fmd non-present resources */
us = fmd_fmri_unusable(ap->asru_fmri);
st = ap->asru_flags & FMD_ASRU_STATE;
if (us > 0)
st |= FMD_ASRU_UNUSABLE;
else if (us == 0)
st &= ~FMD_ASRU_UNUSABLE;
return (st);
}
|