2007-09-17 22:00:45 +02:00
|
|
|
/*
|
|
|
|
* Server-side IO completion ports implementation
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Andrey Turkin
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* FIXMEs:
|
|
|
|
* - built-in wait queues used which means:
|
|
|
|
* + threads are awaken FIFO and not LIFO as native does
|
|
|
|
* + "max concurrent active threads" parameter not used
|
|
|
|
* + completion handle is waitable, while native isn't
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2007-09-26 21:16:23 +02:00
|
|
|
#include <stdarg.h>
|
2007-09-17 22:00:45 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winternl.h"
|
|
|
|
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "object.h"
|
2007-09-27 22:03:39 +02:00
|
|
|
#include "file.h"
|
2007-09-17 22:00:45 +02:00
|
|
|
#include "handle.h"
|
|
|
|
#include "request.h"
|
|
|
|
|
|
|
|
|
|
|
|
struct completion
|
|
|
|
{
|
|
|
|
struct object obj;
|
|
|
|
struct list queue;
|
|
|
|
unsigned int depth;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void completion_dump( struct object*, int );
|
2007-12-05 18:16:42 +01:00
|
|
|
static struct object_type *completion_get_type( struct object *obj );
|
2013-08-26 11:55:04 +02:00
|
|
|
static int completion_signaled( struct object *obj, struct wait_queue_entry *entry );
|
2012-04-17 10:02:19 +02:00
|
|
|
static unsigned int completion_map_access( struct object *obj, unsigned int access );
|
2007-09-17 22:00:45 +02:00
|
|
|
static void completion_destroy( struct object * );
|
|
|
|
|
|
|
|
static const struct object_ops completion_ops =
|
|
|
|
{
|
|
|
|
sizeof(struct completion), /* size */
|
|
|
|
completion_dump, /* dump */
|
2007-12-05 18:16:42 +01:00
|
|
|
completion_get_type, /* get_type */
|
2007-09-17 22:00:45 +02:00
|
|
|
add_queue, /* add_queue */
|
|
|
|
remove_queue, /* remove_queue */
|
|
|
|
completion_signaled, /* signaled */
|
|
|
|
no_satisfied, /* satisfied */
|
|
|
|
no_signal, /* signal */
|
|
|
|
no_get_fd, /* get_fd */
|
2012-04-17 10:02:19 +02:00
|
|
|
completion_map_access, /* map_access */
|
2007-10-03 14:10:37 +02:00
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
2007-09-17 22:00:45 +02:00
|
|
|
no_lookup_name, /* lookup_name */
|
2016-02-04 13:08:02 +01:00
|
|
|
directory_link_name, /* link_name */
|
|
|
|
default_unlink_name, /* unlink_name */
|
2007-09-17 22:00:45 +02:00
|
|
|
no_open_file, /* open_file */
|
|
|
|
no_close_handle, /* close_handle */
|
|
|
|
completion_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct comp_msg
|
|
|
|
{
|
|
|
|
struct list queue_entry;
|
2008-12-15 13:29:38 +01:00
|
|
|
apc_param_t ckey;
|
|
|
|
apc_param_t cvalue;
|
2013-08-23 12:37:51 +02:00
|
|
|
apc_param_t information;
|
2007-09-17 22:00:45 +02:00
|
|
|
unsigned int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void completion_destroy( struct object *obj)
|
|
|
|
{
|
|
|
|
struct completion *completion = (struct completion *) obj;
|
|
|
|
struct comp_msg *tmp, *next;
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE( tmp, next, &completion->queue, struct comp_msg, queue_entry )
|
|
|
|
{
|
|
|
|
free( tmp );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void completion_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
struct completion *completion = (struct completion *) obj;
|
|
|
|
|
|
|
|
assert( obj->ops == &completion_ops );
|
2016-04-26 00:06:52 +02:00
|
|
|
fprintf( stderr, "Completion depth=%u\n", completion->depth );
|
2007-09-17 22:00:45 +02:00
|
|
|
}
|
|
|
|
|
2007-12-05 18:16:42 +01:00
|
|
|
static struct object_type *completion_get_type( struct object *obj )
|
|
|
|
{
|
2015-06-02 16:10:14 +02:00
|
|
|
static const WCHAR name[] = {'I','o','C','o','m','p','l','e','t','i','o','n'};
|
2007-12-05 18:16:42 +01:00
|
|
|
static const struct unicode_str str = { name, sizeof(name) };
|
|
|
|
return get_object_type( &str );
|
|
|
|
}
|
|
|
|
|
2013-08-26 11:55:04 +02:00
|
|
|
static int completion_signaled( struct object *obj, struct wait_queue_entry *entry )
|
2007-09-17 22:00:45 +02:00
|
|
|
{
|
|
|
|
struct completion *completion = (struct completion *)obj;
|
|
|
|
|
|
|
|
return !list_empty( &completion->queue );
|
|
|
|
}
|
|
|
|
|
2012-04-17 10:02:19 +02:00
|
|
|
static unsigned int completion_map_access( struct object *obj, unsigned int access )
|
|
|
|
{
|
|
|
|
if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SYNCHRONIZE | IO_COMPLETION_QUERY_STATE;
|
|
|
|
if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE;
|
|
|
|
if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE;
|
|
|
|
if (access & GENERIC_ALL) access |= STANDARD_RIGHTS_ALL | IO_COMPLETION_ALL_ACCESS;
|
|
|
|
return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
|
|
|
|
}
|
|
|
|
|
2016-02-12 13:00:41 +01:00
|
|
|
static struct completion *create_completion( struct object *root, const struct unicode_str *name,
|
2016-01-15 12:49:38 +01:00
|
|
|
unsigned int attr, unsigned int concurrent,
|
|
|
|
const struct security_descriptor *sd )
|
2007-09-17 22:00:45 +02:00
|
|
|
{
|
|
|
|
struct completion *completion;
|
|
|
|
|
2016-02-12 14:57:33 +01:00
|
|
|
if ((completion = create_named_object( root, &completion_ops, name, attr, sd )))
|
2007-09-17 22:00:45 +02:00
|
|
|
{
|
|
|
|
if (get_error() != STATUS_OBJECT_NAME_EXISTS)
|
|
|
|
{
|
|
|
|
list_init( &completion->queue );
|
|
|
|
completion->depth = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return completion;
|
|
|
|
}
|
|
|
|
|
2007-09-27 22:03:39 +02:00
|
|
|
struct completion *get_completion_obj( struct process *process, obj_handle_t handle, unsigned int access )
|
2007-09-17 22:00:45 +02:00
|
|
|
{
|
|
|
|
return (struct completion *) get_handle_obj( process, handle, access, &completion_ops );
|
|
|
|
}
|
|
|
|
|
2008-12-15 13:29:38 +01:00
|
|
|
void add_completion( struct completion *completion, apc_param_t ckey, apc_param_t cvalue,
|
2013-08-23 12:37:51 +02:00
|
|
|
unsigned int status, apc_param_t information )
|
2007-09-17 22:00:45 +02:00
|
|
|
{
|
|
|
|
struct comp_msg *msg = mem_alloc( sizeof( *msg ) );
|
|
|
|
|
|
|
|
if (!msg)
|
|
|
|
return;
|
|
|
|
|
|
|
|
msg->ckey = ckey;
|
|
|
|
msg->cvalue = cvalue;
|
|
|
|
msg->status = status;
|
|
|
|
msg->information = information;
|
|
|
|
|
|
|
|
list_add_tail( &completion->queue, &msg->queue_entry );
|
|
|
|
completion->depth++;
|
|
|
|
wake_up( &completion->obj, 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create a completion */
|
|
|
|
DECL_HANDLER(create_completion)
|
|
|
|
{
|
|
|
|
struct completion *completion;
|
|
|
|
struct unicode_str name;
|
2016-02-12 13:00:41 +01:00
|
|
|
struct object *root;
|
2016-01-15 12:49:38 +01:00
|
|
|
const struct security_descriptor *sd;
|
2016-02-01 06:57:37 +01:00
|
|
|
const struct object_attributes *objattr = get_req_object_attributes( &sd, &name, &root );
|
2007-09-17 22:00:45 +02:00
|
|
|
|
2016-01-15 12:49:38 +01:00
|
|
|
if (!objattr) return;
|
2007-09-17 22:00:45 +02:00
|
|
|
|
2016-01-15 12:49:38 +01:00
|
|
|
if ((completion = create_completion( root, &name, objattr->attributes, req->concurrent, sd )))
|
2007-09-17 22:00:45 +02:00
|
|
|
{
|
2016-01-15 12:49:38 +01:00
|
|
|
reply->handle = alloc_handle( current->process, completion, req->access, objattr->attributes );
|
2007-09-17 22:00:45 +02:00
|
|
|
release_object( completion );
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root) release_object( root );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* open a completion */
|
|
|
|
DECL_HANDLER(open_completion)
|
|
|
|
{
|
2016-01-29 08:36:45 +01:00
|
|
|
struct unicode_str name = get_req_unicode_str();
|
2007-09-17 22:00:45 +02:00
|
|
|
|
2016-01-29 08:23:29 +01:00
|
|
|
reply->handle = open_object( current->process, req->rootdir, req->access,
|
|
|
|
&completion_ops, &name, req->attributes );
|
2007-09-17 22:00:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* add completion to completion port */
|
|
|
|
DECL_HANDLER(add_completion)
|
|
|
|
{
|
|
|
|
struct completion* completion = get_completion_obj( current->process, req->handle, IO_COMPLETION_MODIFY_STATE );
|
|
|
|
|
|
|
|
if (!completion) return;
|
|
|
|
|
|
|
|
add_completion( completion, req->ckey, req->cvalue, req->status, req->information );
|
|
|
|
|
|
|
|
release_object( completion );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get completion from completion port */
|
|
|
|
DECL_HANDLER(remove_completion)
|
|
|
|
{
|
|
|
|
struct completion* completion = get_completion_obj( current->process, req->handle, IO_COMPLETION_MODIFY_STATE );
|
|
|
|
struct list *entry;
|
|
|
|
struct comp_msg *msg;
|
|
|
|
|
|
|
|
if (!completion) return;
|
|
|
|
|
|
|
|
entry = list_head( &completion->queue );
|
|
|
|
if (!entry)
|
|
|
|
set_error( STATUS_PENDING );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
list_remove( entry );
|
|
|
|
completion->depth--;
|
|
|
|
msg = LIST_ENTRY( entry, struct comp_msg, queue_entry );
|
|
|
|
reply->ckey = msg->ckey;
|
|
|
|
reply->cvalue = msg->cvalue;
|
|
|
|
reply->status = msg->status;
|
|
|
|
reply->information = msg->information;
|
|
|
|
free( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
release_object( completion );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get queue depth for completion port */
|
|
|
|
DECL_HANDLER(query_completion)
|
|
|
|
{
|
|
|
|
struct completion* completion = get_completion_obj( current->process, req->handle, IO_COMPLETION_QUERY_STATE );
|
|
|
|
|
|
|
|
if (!completion) return;
|
|
|
|
|
|
|
|
reply->depth = completion->depth;
|
|
|
|
|
|
|
|
release_object( completion );
|
|
|
|
}
|