2005-03-30 21:02:15 +02:00
|
|
|
/*
|
|
|
|
* Server-side mailslot management
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Alexandre Julliard
|
|
|
|
* Copyright (C) 2005 Mike McCormack
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
2005-11-28 17:32:54 +01:00
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
2005-03-30 21:02:15 +02:00
|
|
|
#include "wine/unicode.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
2005-05-07 14:14:18 +02:00
|
|
|
#ifdef HAVE_SYS_FILIO_H
|
|
|
|
#include <sys/filio.h>
|
|
|
|
#endif
|
2005-03-30 21:02:15 +02:00
|
|
|
#include "windef.h"
|
2005-10-27 20:30:37 +02:00
|
|
|
#include "winternl.h"
|
2005-03-30 21:02:15 +02:00
|
|
|
|
|
|
|
#include "file.h"
|
|
|
|
#include "handle.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include "request.h"
|
|
|
|
|
|
|
|
struct mailslot
|
|
|
|
{
|
|
|
|
struct object obj;
|
|
|
|
struct fd *fd;
|
|
|
|
struct fd *write_fd;
|
|
|
|
unsigned int max_msgsize;
|
2005-11-21 16:23:49 +01:00
|
|
|
int read_timeout;
|
2005-03-30 21:02:15 +02:00
|
|
|
struct list writers;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* mailslot functions */
|
|
|
|
static void mailslot_dump( struct object*, int );
|
|
|
|
static struct fd *mailslot_get_fd( struct object * );
|
|
|
|
static void mailslot_destroy( struct object * );
|
|
|
|
|
|
|
|
static const struct object_ops mailslot_ops =
|
|
|
|
{
|
|
|
|
sizeof(struct mailslot), /* size */
|
|
|
|
mailslot_dump, /* dump */
|
|
|
|
default_fd_add_queue, /* add_queue */
|
|
|
|
default_fd_remove_queue, /* remove_queue */
|
|
|
|
default_fd_signaled, /* signaled */
|
|
|
|
no_satisfied, /* satisfied */
|
2005-04-24 19:35:52 +02:00
|
|
|
no_signal, /* signal */
|
2005-03-30 21:02:15 +02:00
|
|
|
mailslot_get_fd, /* get_fd */
|
2005-11-22 15:55:42 +01:00
|
|
|
no_lookup_name, /* lookup_name */
|
2005-06-09 17:39:52 +02:00
|
|
|
no_close_handle, /* close_handle */
|
2005-03-30 21:02:15 +02:00
|
|
|
mailslot_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int mailslot_get_info( struct fd * );
|
|
|
|
static void mailslot_queue_async( struct fd *, void*, void*, void*, int, int );
|
|
|
|
|
|
|
|
static const struct fd_ops mailslot_fd_ops =
|
|
|
|
{
|
2005-07-14 14:18:05 +02:00
|
|
|
default_fd_get_poll_events, /* get_poll_events */
|
|
|
|
default_poll_event, /* poll_event */
|
|
|
|
no_flush, /* flush */
|
|
|
|
mailslot_get_info, /* get_file_info */
|
|
|
|
mailslot_queue_async, /* queue_async */
|
|
|
|
default_fd_cancel_async /* cancel_async */
|
2005-03-30 21:02:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mail_writer
|
|
|
|
{
|
|
|
|
struct object obj;
|
|
|
|
struct mailslot *mailslot;
|
|
|
|
struct list entry;
|
|
|
|
int access;
|
|
|
|
int sharing;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void mail_writer_dump( struct object *obj, int verbose );
|
|
|
|
static struct fd *mail_writer_get_fd( struct object *obj );
|
|
|
|
static void mail_writer_destroy( struct object *obj);
|
|
|
|
|
|
|
|
static const struct object_ops mail_writer_ops =
|
|
|
|
{
|
|
|
|
sizeof(struct mail_writer), /* size */
|
|
|
|
mail_writer_dump, /* dump */
|
|
|
|
no_add_queue, /* add_queue */
|
|
|
|
NULL, /* remove_queue */
|
|
|
|
NULL, /* signaled */
|
|
|
|
NULL, /* satisfied */
|
2005-04-24 19:35:52 +02:00
|
|
|
no_signal, /* signal */
|
2005-03-30 21:02:15 +02:00
|
|
|
mail_writer_get_fd, /* get_fd */
|
2005-11-22 15:55:42 +01:00
|
|
|
no_lookup_name, /* lookup_name */
|
2005-06-09 17:39:52 +02:00
|
|
|
no_close_handle, /* close_handle */
|
2005-03-30 21:02:15 +02:00
|
|
|
mail_writer_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int mail_writer_get_info( struct fd *fd );
|
|
|
|
|
|
|
|
static const struct fd_ops mail_writer_fd_ops =
|
|
|
|
{
|
|
|
|
NULL, /* get_poll_events */
|
|
|
|
NULL, /* poll_event */
|
|
|
|
no_flush, /* flush */
|
|
|
|
mail_writer_get_info, /* get_file_info */
|
|
|
|
no_queue_async, /* queue_async */
|
|
|
|
NULL /* cancel_async */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void mailslot_destroy( struct object *obj)
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot = (struct mailslot *) obj;
|
|
|
|
|
|
|
|
assert( mailslot->fd );
|
|
|
|
assert( mailslot->write_fd );
|
|
|
|
|
|
|
|
release_object( mailslot->fd );
|
|
|
|
release_object( mailslot->write_fd );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mailslot_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot = (struct mailslot *) obj;
|
|
|
|
|
|
|
|
assert( obj->ops == &mailslot_ops );
|
|
|
|
fprintf( stderr, "Mailslot max_msgsize=%d read_timeout=%d\n",
|
|
|
|
mailslot->max_msgsize, mailslot->read_timeout );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mailslot_message_count(struct mailslot *mailslot)
|
|
|
|
{
|
|
|
|
struct pollfd pfd;
|
|
|
|
|
|
|
|
/* poll the socket to see if there's any messages */
|
|
|
|
pfd.fd = get_unix_fd( mailslot->fd );
|
|
|
|
pfd.events = POLLIN;
|
|
|
|
pfd.revents = 0;
|
|
|
|
return (poll( &pfd, 1, 0 ) == 1) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2005-04-11 18:11:32 +02:00
|
|
|
static int mailslot_next_msg_size( struct mailslot *mailslot )
|
|
|
|
{
|
|
|
|
int size, fd;
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
fd = get_unix_fd( mailslot->fd );
|
|
|
|
ioctl( fd, FIONREAD, &size );
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2005-03-30 21:02:15 +02:00
|
|
|
static int mailslot_get_info( struct fd *fd )
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot = get_fd_user( fd );
|
|
|
|
assert( mailslot->obj.ops == &mailslot_ops );
|
|
|
|
return FD_FLAG_TIMEOUT | FD_FLAG_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct fd *mailslot_get_fd( struct object *obj )
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot = (struct mailslot *) obj;
|
|
|
|
|
|
|
|
return (struct fd *)grab_object( mailslot->fd );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mailslot_queue_async( struct fd *fd, void *apc, void *user,
|
|
|
|
void *iosb, int type, int count )
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot = get_fd_user( fd );
|
2005-07-14 14:18:05 +02:00
|
|
|
int *timeout = NULL;
|
2005-03-30 21:02:15 +02:00
|
|
|
|
|
|
|
assert(mailslot->obj.ops == &mailslot_ops);
|
|
|
|
|
2005-06-10 21:54:46 +02:00
|
|
|
if (type != ASYNC_TYPE_READ)
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
set_error(STATUS_INVALID_PARAMETER);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-06-10 21:54:46 +02:00
|
|
|
if (list_empty( &mailslot->writers ) ||
|
2005-03-30 21:02:15 +02:00
|
|
|
!mailslot_message_count( mailslot ))
|
|
|
|
{
|
|
|
|
set_error(STATUS_IO_TIMEOUT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-21 16:23:49 +01:00
|
|
|
if (mailslot->read_timeout != -1) timeout = &mailslot->read_timeout;
|
2005-03-30 21:02:15 +02:00
|
|
|
|
2005-07-14 14:18:05 +02:00
|
|
|
fd_queue_async_timeout( fd, apc, user, iosb, type, count, timeout );
|
2005-03-30 21:02:15 +02:00
|
|
|
}
|
|
|
|
|
2005-11-18 17:31:18 +01:00
|
|
|
static struct mailslot *create_mailslot( const struct unicode_str *name, unsigned int attr,
|
2005-10-29 14:38:23 +02:00
|
|
|
int max_msgsize, int read_timeout )
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mailslot *mailslot;
|
|
|
|
int fds[2];
|
2005-11-18 17:31:18 +01:00
|
|
|
static const WCHAR slot[] = {'m','a','i','l','s','l','o','t','\\'};
|
2005-03-30 21:02:15 +02:00
|
|
|
|
2005-11-18 17:31:18 +01:00
|
|
|
if ((name->len <= sizeof(slot)) || strncmpiW( slot, name->str, sizeof(slot)/sizeof(WCHAR) ))
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
set_error( STATUS_OBJECT_NAME_INVALID );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-11-18 17:31:18 +01:00
|
|
|
mailslot = create_named_object( sync_namespace, &mailslot_ops, name, attr );
|
2005-06-10 21:54:46 +02:00
|
|
|
if (!mailslot)
|
2005-03-30 21:02:15 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* it already exists - there can only be one mailslot to read from */
|
2005-11-21 17:27:03 +01:00
|
|
|
if (get_error() == STATUS_OBJECT_NAME_EXISTS)
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
release_object( mailslot );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mailslot->fd = NULL;
|
|
|
|
mailslot->write_fd = NULL;
|
|
|
|
mailslot->max_msgsize = max_msgsize;
|
|
|
|
mailslot->read_timeout = read_timeout;
|
|
|
|
list_init( &mailslot->writers );
|
|
|
|
|
2005-06-10 21:54:46 +02:00
|
|
|
if (!socketpair( PF_UNIX, SOCK_DGRAM, 0, fds ))
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
fcntl( fds[0], F_SETFL, O_NONBLOCK );
|
|
|
|
fcntl( fds[1], F_SETFL, O_NONBLOCK );
|
|
|
|
mailslot->fd = create_anonymous_fd( &mailslot_fd_ops,
|
|
|
|
fds[1], &mailslot->obj );
|
|
|
|
mailslot->write_fd = create_anonymous_fd( &mail_writer_fd_ops,
|
|
|
|
fds[0], &mailslot->obj );
|
2005-06-10 21:54:46 +02:00
|
|
|
if (mailslot->fd && mailslot->write_fd) return mailslot;
|
2005-03-30 21:02:15 +02:00
|
|
|
}
|
|
|
|
else file_set_error();
|
|
|
|
|
|
|
|
release_object( mailslot );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-11-18 17:31:18 +01:00
|
|
|
static struct mailslot *open_mailslot( const struct unicode_str *name, unsigned int attr )
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct object *obj;
|
|
|
|
|
2005-11-18 17:31:18 +01:00
|
|
|
obj = find_object( sync_namespace, name, attr );
|
2005-03-30 21:02:15 +02:00
|
|
|
if (obj)
|
|
|
|
{
|
|
|
|
if (obj->ops == &mailslot_ops)
|
|
|
|
return (struct mailslot *)obj;
|
|
|
|
release_object( obj );
|
|
|
|
set_error( STATUS_OBJECT_TYPE_MISMATCH );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
set_error( STATUS_OBJECT_NAME_NOT_FOUND );
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mail_writer_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Mailslot writer\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mail_writer_destroy( struct object *obj)
|
|
|
|
{
|
|
|
|
struct mail_writer *writer = (struct mail_writer *) obj;
|
|
|
|
|
|
|
|
list_remove( &writer->entry );
|
|
|
|
release_object( writer->mailslot );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mail_writer_get_info( struct fd *fd )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct fd *mail_writer_get_fd( struct object *obj )
|
|
|
|
{
|
|
|
|
struct mail_writer *writer = (struct mail_writer *) obj;
|
|
|
|
|
|
|
|
return (struct fd *)grab_object( writer->mailslot->write_fd );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Readers and writers cannot be mixed.
|
|
|
|
* If there's more than one writer, all writers must open with FILE_SHARE_WRITE
|
|
|
|
*/
|
|
|
|
static struct mail_writer *create_mail_writer( struct mailslot *mailslot, unsigned int access,
|
|
|
|
unsigned int sharing )
|
|
|
|
{
|
|
|
|
struct mail_writer *writer;
|
|
|
|
|
|
|
|
if (!list_empty( &mailslot->writers ))
|
|
|
|
{
|
|
|
|
writer = LIST_ENTRY( list_head(&mailslot->writers), struct mail_writer, entry );
|
|
|
|
|
|
|
|
if (((access & GENERIC_WRITE) || (writer->access & GENERIC_WRITE)) &&
|
|
|
|
!((sharing & FILE_SHARE_WRITE) && (writer->sharing & FILE_SHARE_WRITE)))
|
|
|
|
{
|
|
|
|
set_error( STATUS_SHARING_VIOLATION );
|
2005-05-25 20:41:09 +02:00
|
|
|
return NULL;
|
2005-03-30 21:02:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
writer = alloc_object( &mail_writer_ops );
|
|
|
|
if (!writer)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
grab_object( mailslot );
|
|
|
|
writer->mailslot = mailslot;
|
|
|
|
writer->access = access;
|
|
|
|
writer->sharing = sharing;
|
|
|
|
|
|
|
|
list_add_head( &mailslot->writers, &writer->entry );
|
|
|
|
|
|
|
|
return writer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct mailslot *get_mailslot_obj( struct process *process, obj_handle_t handle,
|
|
|
|
unsigned int access )
|
|
|
|
{
|
|
|
|
struct object *obj;
|
|
|
|
obj = get_handle_obj( process, handle, access, &mailslot_ops );
|
|
|
|
return (struct mailslot *) obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* create a mailslot */
|
|
|
|
DECL_HANDLER(create_mailslot)
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot;
|
2005-11-18 17:31:18 +01:00
|
|
|
struct unicode_str name;
|
2005-03-30 21:02:15 +02:00
|
|
|
|
|
|
|
reply->handle = 0;
|
2005-11-18 17:31:18 +01:00
|
|
|
get_req_unicode_str( &name );
|
|
|
|
mailslot = create_mailslot( &name, req->attributes, req->max_msgsize, req->read_timeout );
|
2005-06-10 21:54:46 +02:00
|
|
|
if (mailslot)
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
reply->handle = alloc_handle( current->process, mailslot,
|
2005-10-27 20:30:37 +02:00
|
|
|
req->access, req->attributes & OBJ_INHERIT );
|
2005-03-30 21:02:15 +02:00
|
|
|
release_object( mailslot );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* open an existing mailslot */
|
|
|
|
DECL_HANDLER(open_mailslot)
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot;
|
2005-11-18 17:31:18 +01:00
|
|
|
struct unicode_str name;
|
2005-03-30 21:02:15 +02:00
|
|
|
|
|
|
|
reply->handle = 0;
|
2005-11-18 17:31:18 +01:00
|
|
|
get_req_unicode_str( &name );
|
2005-03-30 21:02:15 +02:00
|
|
|
|
2005-06-10 21:54:46 +02:00
|
|
|
if (!(req->sharing & FILE_SHARE_READ))
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
set_error( STATUS_SHARING_VIOLATION );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-18 17:31:18 +01:00
|
|
|
mailslot = open_mailslot( &name, req->attributes );
|
2005-06-10 21:54:46 +02:00
|
|
|
if (mailslot)
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mail_writer *writer;
|
|
|
|
|
|
|
|
writer = create_mail_writer( mailslot, req->access, req->sharing );
|
2005-06-10 21:54:46 +02:00
|
|
|
if (writer)
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
|
|
|
reply->handle = alloc_handle( current->process, writer,
|
2005-10-27 20:30:37 +02:00
|
|
|
req->access, req->attributes & OBJ_INHERIT );
|
2005-03-30 21:02:15 +02:00
|
|
|
release_object( writer );
|
|
|
|
}
|
|
|
|
release_object( mailslot );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
set_error( STATUS_NO_SUCH_FILE );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* set mailslot information */
|
|
|
|
DECL_HANDLER(set_mailslot_info)
|
|
|
|
{
|
|
|
|
struct mailslot *mailslot = get_mailslot_obj( current->process, req->handle, 0 );
|
|
|
|
|
2005-06-10 21:54:46 +02:00
|
|
|
if (mailslot)
|
2005-03-30 21:02:15 +02:00
|
|
|
{
|
2005-06-10 21:54:46 +02:00
|
|
|
if (req->flags & MAILSLOT_SET_READ_TIMEOUT)
|
2005-03-30 21:02:15 +02:00
|
|
|
mailslot->read_timeout = req->read_timeout;
|
|
|
|
reply->max_msgsize = mailslot->max_msgsize;
|
|
|
|
reply->read_timeout = mailslot->read_timeout;
|
|
|
|
reply->msg_count = mailslot_message_count(mailslot);
|
|
|
|
|
|
|
|
/* get the size of the next message */
|
2005-06-10 21:54:46 +02:00
|
|
|
if (reply->msg_count)
|
2005-04-11 18:11:32 +02:00
|
|
|
reply->next_msgsize = mailslot_next_msg_size(mailslot);
|
2005-03-30 21:02:15 +02:00
|
|
|
else
|
2005-04-11 18:11:32 +02:00
|
|
|
reply->next_msgsize = MAILSLOT_NO_MESSAGE;
|
2005-03-30 21:02:15 +02:00
|
|
|
|
|
|
|
release_object( mailslot );
|
|
|
|
}
|
|
|
|
}
|