libhotplug_impl.h revision 269473047d747f7815af570197e4ef7322d3632c
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis/*
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * CDDL HEADER START
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis *
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * The contents of this file are subject to the terms of the
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * Common Development and Distribution License (the "License").
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * You may not use this file except in compliance with the License.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis *
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * or http://www.opensolaris.org/os/licensing.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * See the License for the specific language governing permissions
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * and limitations under the License.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis *
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * When distributing Covered Code, include this CDDL HEADER in each
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * If applicable, add the following below this CDDL HEADER, with the
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * fields enclosed by brackets "[]" replaced with your own identifying
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * information: Portions Copyright [yyyy] [name of copyright owner]
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis *
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * CDDL HEADER END
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis */
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis/*
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * Use is subject to license terms.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis */
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis#ifndef _LIBHOTPLUG_IMPL_H
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis#define _LIBHOTPLUG_IMPL_H
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis
ddc0e0b53c661f6e439e3b7072b3ef353eadb4afRichard Lowe#ifdef __cplusplus
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtisextern "C" {
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis#endif
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis#include <sys/param.h>
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis#include <libhotplug.h>
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis/*
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * Definition of a node in a hotplug information snapshot.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis */
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtisstruct hp_node {
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis int hp_type;
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis char *hp_name;
char *hp_usage;
char *hp_description;
char *hp_basepath;
int hp_state;
time_t hp_last_change;
hp_node_t hp_parent;
hp_node_t hp_child;
hp_node_t hp_sibling;
};
/*
* Definitions used for packing/unpacking snapshots.
*/
#define HP_INFO_BASE "hp_info.basepath"
#define HP_INFO_NODE "hp_info.node"
#define HP_INFO_BRANCH "hp_info.branch"
#define HP_INFO_TYPE "hp_info.type"
#define HP_INFO_NAME "hp_info.name"
#define HP_INFO_USAGE "hp_info.usage"
#define HP_INFO_STATE "hp_info.state"
#define HP_INFO_DESC "hp_info.description"
#define HP_INFO_TIME "hp_info.last_change"
/*
* Definitions for the door interface to hotplugd(1m).
*/
#define HOTPLUGD_PID "/var/run/hotplugd.pid"
#define HOTPLUGD_DOOR "/var/run/hotplugd_door"
typedef enum {
HP_CMD_NONE = 0,
HP_CMD_GETINFO,
HP_CMD_CHANGESTATE,
HP_CMD_SETPRIVATE,
HP_CMD_GETPRIVATE
} hp_cmd_t;
#define HPD_CMD "hp_door.cmd"
#define HPD_PATH "hp_door.path"
#define HPD_CONNECTION "hp_door.connection"
#define HPD_FLAGS "hp_door.flags"
#define HPD_STATE "hp_door.state"
#define HPD_OPTIONS "hp_door.options"
#define HPD_INFO "hp_door.info"
#define HPD_STATUS "hp_door.status"
#define HPD_SEQNUM "hp_door.seqnum"
/*
* Definition of macros to validate flags.
*/
#define HP_INIT_FLAGS_VALID(f) ((f & ~(HPINFOUSAGE)) == 0)
#define HP_SET_STATE_FLAGS_VALID(f) ((f & ~(HPFORCE | HPQUERY)) == 0)
/*
* Definition of global flag to enable debug.
*/
extern int libhotplug_debug;
#ifdef __cplusplus
}
#endif
#endif /* _LIBHOTPLUG_IMPL_H */