1999-01-19 17:31:32 +01:00
|
|
|
/*
|
|
|
|
* Server-side device management
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-01-19 17:31:32 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME:
|
|
|
|
* all this stuff is a simple hack to avoid breaking
|
|
|
|
* client-side device support.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
1999-02-09 16:49:39 +01:00
|
|
|
#include "winbase.h"
|
1999-05-15 12:48:19 +02:00
|
|
|
|
|
|
|
#include "handle.h"
|
|
|
|
#include "thread.h"
|
1999-06-22 19:26:53 +02:00
|
|
|
#include "request.h"
|
1999-01-19 17:31:32 +01:00
|
|
|
|
|
|
|
struct device
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
|
|
|
int id; /* client identifier */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void device_dump( struct object *obj, int verbose );
|
2002-01-09 21:30:51 +01:00
|
|
|
static int device_get_info( struct object *obj, struct get_file_info_reply *reply, int *flags );
|
1999-01-19 17:31:32 +01:00
|
|
|
|
|
|
|
static const struct object_ops device_ops =
|
|
|
|
{
|
2000-01-01 01:56:27 +01:00
|
|
|
sizeof(struct device), /* size */
|
|
|
|
device_dump, /* dump */
|
|
|
|
no_add_queue, /* add_queue */
|
|
|
|
NULL, /* remove_queue */
|
|
|
|
NULL, /* signaled */
|
|
|
|
NULL, /* satisfied */
|
2000-12-19 03:12:45 +01:00
|
|
|
no_get_fd, /* get_fd */
|
2000-01-01 01:56:27 +01:00
|
|
|
device_get_info, /* get_file_info */
|
|
|
|
no_destroy /* destroy */
|
1999-01-19 17:31:32 +01:00
|
|
|
};
|
|
|
|
|
1999-06-22 19:26:53 +02:00
|
|
|
static struct device *create_device( int id )
|
1999-01-19 17:31:32 +01:00
|
|
|
{
|
|
|
|
struct device *dev;
|
2000-01-01 01:56:27 +01:00
|
|
|
if ((dev = alloc_object( &device_ops, -1 )))
|
1999-06-22 19:26:53 +02:00
|
|
|
{
|
|
|
|
dev->id = id;
|
|
|
|
}
|
|
|
|
return dev;
|
1999-01-19 17:31:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void device_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
struct device *dev = (struct device *)obj;
|
|
|
|
assert( obj->ops == &device_ops );
|
|
|
|
fprintf( stderr, "Device id=%08x\n", dev->id );
|
|
|
|
}
|
|
|
|
|
2002-01-09 21:30:51 +01:00
|
|
|
static int device_get_info( struct object *obj, struct get_file_info_reply *reply, int *flags )
|
1999-01-19 17:31:32 +01:00
|
|
|
{
|
|
|
|
struct device *dev = (struct device *)obj;
|
|
|
|
assert( obj->ops == &device_ops );
|
2001-10-04 18:18:15 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
if (reply)
|
2001-10-04 18:18:15 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->type = FILE_TYPE_UNKNOWN;
|
|
|
|
reply->attr = dev->id; /* hack! */
|
|
|
|
reply->access_time = 0;
|
|
|
|
reply->write_time = 0;
|
|
|
|
reply->size_high = 0;
|
|
|
|
reply->size_low = 0;
|
|
|
|
reply->links = 0;
|
|
|
|
reply->index_high = 0;
|
|
|
|
reply->index_low = 0;
|
|
|
|
reply->serial = 0;
|
2001-10-04 18:18:15 +02:00
|
|
|
}
|
2002-01-09 21:30:51 +01:00
|
|
|
*flags = 0;
|
2001-10-04 18:18:15 +02:00
|
|
|
return FD_TYPE_DEFAULT;
|
1999-01-19 17:31:32 +01:00
|
|
|
}
|
|
|
|
|
1999-05-15 12:48:19 +02:00
|
|
|
/* create a device */
|
|
|
|
DECL_HANDLER(create_device)
|
|
|
|
{
|
1999-06-22 19:26:53 +02:00
|
|
|
struct device *dev;
|
1999-05-15 12:48:19 +02:00
|
|
|
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->handle = 0;
|
1999-06-22 19:26:53 +02:00
|
|
|
if ((dev = create_device( req->id )))
|
1999-05-15 12:48:19 +02:00
|
|
|
{
|
2001-11-30 19:46:42 +01:00
|
|
|
reply->handle = alloc_handle( current->process, dev, req->access, req->inherit );
|
1999-06-22 19:26:53 +02:00
|
|
|
release_object( dev );
|
1999-05-15 12:48:19 +02:00
|
|
|
}
|
|
|
|
}
|