datalink_mod.c revision 0dc974a9a2e66d676505db23524ebff105fb36a9
4e5b757fbcf21077677360be274461dcd9064106kupfer/*
4e5b757fbcf21077677360be274461dcd9064106kupfer * CDDL HEADER START
4e5b757fbcf21077677360be274461dcd9064106kupfer *
4e5b757fbcf21077677360be274461dcd9064106kupfer * The contents of this file are subject to the terms of the
4e5b757fbcf21077677360be274461dcd9064106kupfer * Common Development and Distribution License (the "License").
4e5b757fbcf21077677360be274461dcd9064106kupfer * You may not use this file except in compliance with the License.
4e5b757fbcf21077677360be274461dcd9064106kupfer *
4e5b757fbcf21077677360be274461dcd9064106kupfer * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4e5b757fbcf21077677360be274461dcd9064106kupfer * or http://www.opensolaris.org/os/licensing.
4e5b757fbcf21077677360be274461dcd9064106kupfer * See the License for the specific language governing permissions
4e5b757fbcf21077677360be274461dcd9064106kupfer * and limitations under the License.
4e5b757fbcf21077677360be274461dcd9064106kupfer *
4e5b757fbcf21077677360be274461dcd9064106kupfer * When distributing Covered Code, include this CDDL HEADER in each
4e5b757fbcf21077677360be274461dcd9064106kupfer * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4e5b757fbcf21077677360be274461dcd9064106kupfer * If applicable, add the following below this CDDL HEADER, with the
4e5b757fbcf21077677360be274461dcd9064106kupfer * fields enclosed by brackets "[]" replaced with your own identifying
4e5b757fbcf21077677360be274461dcd9064106kupfer * information: Portions Copyright [yyyy] [name of copyright owner]
4e5b757fbcf21077677360be274461dcd9064106kupfer *
4e5b757fbcf21077677360be274461dcd9064106kupfer * CDDL HEADER END
4e5b757fbcf21077677360be274461dcd9064106kupfer */
4e5b757fbcf21077677360be274461dcd9064106kupfer/*
4e5b757fbcf21077677360be274461dcd9064106kupfer * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
4e5b757fbcf21077677360be274461dcd9064106kupfer * Use is subject to license terms.
4e5b757fbcf21077677360be274461dcd9064106kupfer */
4e5b757fbcf21077677360be274461dcd9064106kupfer
4e5b757fbcf21077677360be274461dcd9064106kupfer/*
4e5b757fbcf21077677360be274461dcd9064106kupfer * datalink syseventd module.
4e5b757fbcf21077677360be274461dcd9064106kupfer *
4e5b757fbcf21077677360be274461dcd9064106kupfer * The purpose of this module is to identify all datalink related events,
4e5b757fbcf21077677360be274461dcd9064106kupfer * and react accordingly.
4e5b757fbcf21077677360be274461dcd9064106kupfer */
4e5b757fbcf21077677360be274461dcd9064106kupfer
#include <errno.h>
#include <sys/sysevent/eventdefs.h>
#include <string.h>
#include <libnvpair.h>
#include <librcm.h>
#include <libsysevent.h>
static rcm_handle_t *rcm_hdl = NULL;
/*ARGSUSED*/
static int
datalink_deliver_event(sysevent_t *ev, int unused)
{
const char *class = sysevent_get_class_name(ev);
const char *subclass = sysevent_get_subclass_name(ev);
nvlist_t *nvl;
int err = 0;
if (strcmp(class, EC_DATALINK) != 0 ||
strcmp(subclass, ESC_DATALINK_PHYS_ADD) != 0) {
return (0);
}
if (sysevent_get_attr_list(ev, &nvl) != 0)
return (EINVAL);
if (rcm_notify_event(rcm_hdl, RCM_RESOURCE_LINK_NEW, 0, nvl, NULL) !=
RCM_SUCCESS) {
err = EINVAL;
}
nvlist_free(nvl);
return (err);
}
static struct slm_mod_ops datalink_mod_ops = {
SE_MAJOR_VERSION,
SE_MINOR_VERSION,
SE_MAX_RETRY_LIMIT,
datalink_deliver_event
};
struct slm_mod_ops *
slm_init()
{
if (rcm_alloc_handle(NULL, 0, NULL, &rcm_hdl) != RCM_SUCCESS)
return (NULL);
return (&datalink_mod_ops);
}
void
slm_fini()
{
(void) rcm_free_handle(rcm_hdl);
rcm_hdl = NULL;
}