4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2013, Joyent, Inc. All rights reserved.
33 asru_short(fmd_log_t
*lp
, const fmd_log_record_t
*rp
, FILE *fp
)
37 fmdump_printf(fp
, "%-20s %-32s\n",
38 fmdump_date(buf
, sizeof (buf
), rp
), rp
->rec_class
);
45 asru_verb1(fmd_log_t
*lp
, const fmd_log_record_t
*rp
, FILE *fp
)
48 boolean_t f
= 0, u
= 0;
49 char buf
[32], state
[32];
51 (void) nvlist_lookup_string(rp
->rec_nvl
, FM_RSRC_ASRU_UUID
, &uuid
);
52 (void) nvlist_lookup_boolean_value(rp
->rec_nvl
,
53 FM_RSRC_ASRU_FAULTY
, &f
);
54 (void) nvlist_lookup_boolean_value(rp
->rec_nvl
,
55 FM_RSRC_ASRU_UNUSABLE
, &u
);
60 (void) strcat(state
, ",faulty");
62 (void) strcat(state
, ",unusable");
64 (void) strcat(state
, ",ok");
66 fmdump_printf(fp
, "%-20s %-36s %s\n",
67 fmdump_date(buf
, sizeof (buf
), rp
), uuid
, state
+ 1);
74 asru_verb23_cmn(fmd_log_t
*lp
, const fmd_log_record_t
*rp
, FILE *fp
,
78 boolean_t f
= 0, u
= 0;
79 char buf
[32], state
[32];
81 (void) nvlist_lookup_string(rp
->rec_nvl
, FM_RSRC_ASRU_UUID
, &uuid
);
82 (void) nvlist_lookup_boolean_value(rp
->rec_nvl
,
83 FM_RSRC_ASRU_FAULTY
, &f
);
84 (void) nvlist_lookup_boolean_value(rp
->rec_nvl
,
85 FM_RSRC_ASRU_UNUSABLE
, &u
);
90 (void) strcat(state
, ",faulty");
92 (void) strcat(state
, ",unusable");
94 (void) strcat(state
, ",ok");
96 fmdump_printf(fp
, "%-20s.%9.9llu %-36s %s\n",
97 fmdump_year(buf
, sizeof (buf
), rp
), rp
->rec_nsec
, uuid
, state
+ 1);
100 nvlist_prt(rp
->rec_nvl
, pctl
);
102 nvlist_print(fp
, rp
->rec_nvl
);
104 fmdump_printf(fp
, "\n");
110 asru_verb2(fmd_log_t
*lp
, const fmd_log_record_t
*rp
, FILE *fp
)
112 return (asru_verb23_cmn(lp
, rp
, fp
, NULL
));
116 asru_pretty(fmd_log_t
*lp
, const fmd_log_record_t
*rp
, FILE *fp
)
118 nvlist_prtctl_t pctl
;
121 if ((pctl
= nvlist_prtctl_alloc()) != NULL
) {
122 nvlist_prtctl_setdest(pctl
, fp
);
123 nvlist_prtctlop_nvlist(pctl
, fmdump_render_nvlist
, NULL
);
126 rc
= asru_verb23_cmn(lp
, rp
, fp
, pctl
);
128 nvlist_prtctl_free(pctl
);
132 const fmdump_ops_t fmdump_asru_ops
= {
136 (fmd_log_rec_f
*)asru_short
139 (fmd_log_rec_f
*)asru_verb1
142 (fmd_log_rec_f
*)asru_verb2
145 (fmd_log_rec_f
*)asru_pretty
150 (fmd_log_rec_f
*)fmdump_print_json