vscan_door.c revision 1843d056c3ae0950dec6c3453e589966ba280bee
/*
* 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
* 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.
*/
#include <sys/pathname.h>
#define VS_DOOR_RETRIES 3
/* max time (secs) to wait for door calls to complete during door_close */
#define VS_DOOR_CLOSE_TIMEOUT_DEFAULT 30
static kmutex_t vscan_door_mutex;
static kcondvar_t vscan_door_cv;
static int vscan_door_call_count = 0;
/*
* vscan_door_init
*/
int
vscan_door_init(void)
{
return (0);
}
/*
* vscan_door_fini
*/
void
vscan_door_fini(void)
{
}
/*
* vscan_door_open
*/
int
vscan_door_open(int door_id)
{
if (vscan_door_handle == NULL)
if (vscan_door_handle == NULL) {
"- failed to access vscan service daemon.");
return (-1);
}
return (0);
}
/*
* vscan_door_close
*/
void
vscan_door_close(void)
{
/* wait for any in-progress requests to complete */
while ((vscan_door_call_count > 0) && (time_left > 0)) {
}
if (time_left == -1)
if (vscan_door_handle) {
}
}
/*
* vscan_door_scan_file
*
* Returns: result returned in door response or VS_STATUS_ERROR
*/
int
{
int err;
int i;
if (!vscan_door_handle)
return (VS_STATUS_ERROR);
for (i = 0; i < VS_DOOR_RETRIES; ++i) {
break;
break;
}
if (err != 0) {
"- failed to send scan request to vscand", err);
}
return (result);
}