17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5b7d3956bSstephh * Common Development and Distribution License (the "License"). 6b7d3956bSstephh * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22*705e9f42SStephen Hanson * Copyright 2010 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #include <fm/fmd_fmri.h> 27b7d3956bSstephh #include <fm/libtopo.h> 28b7d3956bSstephh #include <strings.h> 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate ssize_t 317c478bd9Sstevel@tonic-gate fmd_fmri_nvl2str(nvlist_t *nvl, char *buf, size_t buflen) 327c478bd9Sstevel@tonic-gate { 337c478bd9Sstevel@tonic-gate int err; 34b7d3956bSstephh ssize_t len; 35b7d3956bSstephh topo_hdl_t *thp; 36b7d3956bSstephh char *str; 377c478bd9Sstevel@tonic-gate 38b7d3956bSstephh if ((thp = fmd_fmri_topo_hold(TOPO_VERSION)) == NULL) 397c478bd9Sstevel@tonic-gate return (fmd_fmri_set_errno(EINVAL)); 407c478bd9Sstevel@tonic-gate 41b7d3956bSstephh if (topo_fmri_nvl2str(thp, nvl, &str, &err) != 0) { 42b7d3956bSstephh fmd_fmri_topo_rele(thp); 437c478bd9Sstevel@tonic-gate return (fmd_fmri_set_errno(EINVAL)); 447c478bd9Sstevel@tonic-gate } 457c478bd9Sstevel@tonic-gate 46b7d3956bSstephh if (buf != NULL) 47b7d3956bSstephh len = snprintf(buf, buflen, "%s", str); 48b7d3956bSstephh else 49b7d3956bSstephh len = strlen(str); 507c478bd9Sstevel@tonic-gate 51b7d3956bSstephh topo_hdl_strfree(thp, str); 52b7d3956bSstephh fmd_fmri_topo_rele(thp); 537c478bd9Sstevel@tonic-gate 54b7d3956bSstephh return (len); 557c478bd9Sstevel@tonic-gate } 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate /* 58*705e9f42SStephen Hanson * fmd_fmri_present() is called by fmadm to determine if a faulty resource 59*705e9f42SStephen Hanson * is still present in the system. We just return true by default, as we have no 607c478bd9Sstevel@tonic-gate * real way to look up the component in the system configuration. 617c478bd9Sstevel@tonic-gate */ 627c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 637c478bd9Sstevel@tonic-gate int 647c478bd9Sstevel@tonic-gate fmd_fmri_present(nvlist_t *nvl) 657c478bd9Sstevel@tonic-gate { 667c478bd9Sstevel@tonic-gate return (1); 677c478bd9Sstevel@tonic-gate } 687c478bd9Sstevel@tonic-gate 69*705e9f42SStephen Hanson /*ARGSUSED*/ 70*705e9f42SStephen Hanson int 71*705e9f42SStephen Hanson fmd_fmri_replaced(nvlist_t *nvl) 72*705e9f42SStephen Hanson { 73*705e9f42SStephen Hanson return (FMD_OBJ_STATE_UNKNOWN); 74*705e9f42SStephen Hanson } 75*705e9f42SStephen Hanson 767c478bd9Sstevel@tonic-gate /* 777c478bd9Sstevel@tonic-gate * fmd_fmri_unusable() is called by fmadm to determine if a faulty ASRU 787c478bd9Sstevel@tonic-gate * is usable. In general we don't expect to get ASRUs in this scheme, 797c478bd9Sstevel@tonic-gate * so it's unlikely this routine will get called. In case it does, 807c478bd9Sstevel@tonic-gate * though, we just return false by default, as we have no real way to 817c478bd9Sstevel@tonic-gate * find the component or determine the component's usability. 827c478bd9Sstevel@tonic-gate */ 837c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 847c478bd9Sstevel@tonic-gate int 857c478bd9Sstevel@tonic-gate fmd_fmri_unusable(nvlist_t *nvl) 867c478bd9Sstevel@tonic-gate { 877c478bd9Sstevel@tonic-gate return (0); 887c478bd9Sstevel@tonic-gate } 89