2 * Server-side pipe management
4 * Copyright (C) 1998 Alexandre Julliard
5 * Copyright (C) 2001 Mike McCormack
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/port.h"
35 #include <sys/types.h>
36 #ifdef HAVE_SYS_SOCKET_H
37 #include <sys/socket.h>
46 #define WIN32_NO_STATUS
61 ps_disconnected_server
,
69 struct object obj
; /* object header */
70 struct fd
*fd
; /* pipe file descriptor */
71 struct list entry
; /* entry in named pipe servers list */
72 enum pipe_state state
; /* server state */
73 struct pipe_client
*client
; /* client that this server is connected to */
74 struct named_pipe
*pipe
;
75 struct timeout_user
*flush_poll
;
77 struct async_queue
*wait_q
; /* only a single one can be queued */
78 unsigned int options
; /* pipe options */
83 struct object obj
; /* object header */
84 struct fd
*fd
; /* pipe file descriptor */
85 struct pipe_server
*server
; /* server that this client is connected to */
86 unsigned int flags
; /* file flags */
91 struct object obj
; /* object header */
93 unsigned int maxinstances
;
97 unsigned int instances
;
98 struct list servers
; /* list of servers using this pipe */
99 struct async_queue
*waiters
; /* list of clients waiting to connect */
102 struct named_pipe_device
104 struct object obj
; /* object header */
105 struct fd
*fd
; /* pseudo-fd for ioctls */
106 struct namespace *pipes
; /* named pipe namespace */
109 static void named_pipe_dump( struct object
*obj
, int verbose
);
110 static unsigned int named_pipe_map_access( struct object
*obj
, unsigned int access
);
111 static struct object
*named_pipe_open_file( struct object
*obj
, unsigned int access
,
112 unsigned int sharing
, unsigned int options
);
113 static void named_pipe_destroy( struct object
*obj
);
115 static const struct object_ops named_pipe_ops
=
117 sizeof(struct named_pipe
), /* size */
118 named_pipe_dump
, /* dump */
119 no_add_queue
, /* add_queue */
120 NULL
, /* remove_queue */
122 NULL
, /* satisfied */
123 no_signal
, /* signal */
124 no_get_fd
, /* get_fd */
125 named_pipe_map_access
, /* map_access */
126 no_lookup_name
, /* lookup_name */
127 named_pipe_open_file
, /* open_file */
128 no_close_handle
, /* close_handle */
129 named_pipe_destroy
/* destroy */
132 /* functions common to server and client */
133 static unsigned int pipe_map_access( struct object
*obj
, unsigned int access
);
135 /* server end functions */
136 static void pipe_server_dump( struct object
*obj
, int verbose
);
137 static struct fd
*pipe_server_get_fd( struct object
*obj
);
138 static void pipe_server_destroy( struct object
*obj
);
139 static void pipe_server_flush( struct fd
*fd
, struct event
**event
);
140 static enum server_fd_type
pipe_server_get_fd_type( struct fd
*fd
);
142 static const struct object_ops pipe_server_ops
=
144 sizeof(struct pipe_server
), /* size */
145 pipe_server_dump
, /* dump */
146 add_queue
, /* add_queue */
147 remove_queue
, /* remove_queue */
148 default_fd_signaled
, /* signaled */
149 no_satisfied
, /* satisfied */
150 no_signal
, /* signal */
151 pipe_server_get_fd
, /* get_fd */
152 pipe_map_access
, /* map_access */
153 no_lookup_name
, /* lookup_name */
154 no_open_file
, /* open_file */
155 fd_close_handle
, /* close_handle */
156 pipe_server_destroy
/* destroy */
159 static const struct fd_ops pipe_server_fd_ops
=
161 default_fd_get_poll_events
, /* get_poll_events */
162 default_poll_event
, /* poll_event */
163 pipe_server_flush
, /* flush */
164 pipe_server_get_fd_type
, /* get_fd_type */
165 default_fd_queue_async
, /* queue_async */
166 default_fd_reselect_async
, /* reselect_async */
167 default_fd_cancel_async
, /* cancel_async */
170 /* client end functions */
171 static void pipe_client_dump( struct object
*obj
, int verbose
);
172 static struct fd
*pipe_client_get_fd( struct object
*obj
);
173 static void pipe_client_destroy( struct object
*obj
);
174 static void pipe_client_flush( struct fd
*fd
, struct event
**event
);
175 static enum server_fd_type
pipe_client_get_fd_type( struct fd
*fd
);
177 static const struct object_ops pipe_client_ops
=
179 sizeof(struct pipe_client
), /* size */
180 pipe_client_dump
, /* dump */
181 add_queue
, /* add_queue */
182 remove_queue
, /* remove_queue */
183 default_fd_signaled
, /* signaled */
184 no_satisfied
, /* satisfied */
185 no_signal
, /* signal */
186 pipe_client_get_fd
, /* get_fd */
187 pipe_map_access
, /* map_access */
188 no_lookup_name
, /* lookup_name */
189 no_open_file
, /* open_file */
190 fd_close_handle
, /* close_handle */
191 pipe_client_destroy
/* destroy */
194 static const struct fd_ops pipe_client_fd_ops
=
196 default_fd_get_poll_events
, /* get_poll_events */
197 default_poll_event
, /* poll_event */
198 pipe_client_flush
, /* flush */
199 pipe_client_get_fd_type
, /* get_fd_type */
200 default_fd_queue_async
, /* queue_async */
201 default_fd_reselect_async
, /* reselect_async */
202 default_fd_cancel_async
/* cancel_async */
205 static void named_pipe_device_dump( struct object
*obj
, int verbose
);
206 static struct fd
*named_pipe_device_get_fd( struct object
*obj
);
207 static struct object
*named_pipe_device_lookup_name( struct object
*obj
,
208 struct unicode_str
*name
, unsigned int attr
);
209 static struct object
*named_pipe_device_open_file( struct object
*obj
, unsigned int access
,
210 unsigned int sharing
, unsigned int options
);
211 static void named_pipe_device_destroy( struct object
*obj
);
212 static enum server_fd_type
named_pipe_device_get_fd_type( struct fd
*fd
);
214 static const struct object_ops named_pipe_device_ops
=
216 sizeof(struct named_pipe_device
), /* size */
217 named_pipe_device_dump
, /* dump */
218 no_add_queue
, /* add_queue */
219 NULL
, /* remove_queue */
221 no_satisfied
, /* satisfied */
222 no_signal
, /* signal */
223 named_pipe_device_get_fd
, /* get_fd */
224 pipe_map_access
, /* map_access */
225 named_pipe_device_lookup_name
, /* lookup_name */
226 named_pipe_device_open_file
, /* open_file */
227 fd_close_handle
, /* close_handle */
228 named_pipe_device_destroy
/* destroy */
231 static const struct fd_ops named_pipe_device_fd_ops
=
233 default_fd_get_poll_events
, /* get_poll_events */
234 default_poll_event
, /* poll_event */
235 no_flush
, /* flush */
236 named_pipe_device_get_fd_type
, /* get_fd_type */
237 default_fd_queue_async
, /* queue_async */
238 default_fd_reselect_async
, /* reselect_async */
239 default_fd_cancel_async
/* cancel_async */
242 static void named_pipe_dump( struct object
*obj
, int verbose
)
244 struct named_pipe
*pipe
= (struct named_pipe
*) obj
;
245 assert( obj
->ops
== &named_pipe_ops
);
246 fprintf( stderr
, "Named pipe " );
247 dump_object_name( &pipe
->obj
);
248 fprintf( stderr
, "\n" );
251 static unsigned int named_pipe_map_access( struct object
*obj
, unsigned int access
)
253 if (access
& GENERIC_READ
) access
|= STANDARD_RIGHTS_READ
;
254 if (access
& GENERIC_WRITE
) access
|= STANDARD_RIGHTS_WRITE
| FILE_CREATE_PIPE_INSTANCE
;
255 if (access
& GENERIC_EXECUTE
) access
|= STANDARD_RIGHTS_EXECUTE
;
256 if (access
& GENERIC_ALL
) access
|= STANDARD_RIGHTS_ALL
;
257 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
260 static void pipe_server_dump( struct object
*obj
, int verbose
)
262 struct pipe_server
*server
= (struct pipe_server
*) obj
;
263 assert( obj
->ops
== &pipe_server_ops
);
264 fprintf( stderr
, "Named pipe server pipe=%p state=%d\n", server
->pipe
, server
->state
);
267 static void pipe_client_dump( struct object
*obj
, int verbose
)
269 struct pipe_client
*client
= (struct pipe_client
*) obj
;
270 assert( obj
->ops
== &pipe_client_ops
);
271 fprintf( stderr
, "Named pipe client server=%p\n", client
->server
);
274 static void named_pipe_destroy( struct object
*obj
)
276 struct named_pipe
*pipe
= (struct named_pipe
*) obj
;
278 assert( list_empty( &pipe
->servers
) );
279 assert( !pipe
->instances
);
280 free_async_queue( pipe
->waiters
);
283 static struct fd
*pipe_client_get_fd( struct object
*obj
)
285 struct pipe_client
*client
= (struct pipe_client
*) obj
;
287 return (struct fd
*) grab_object( client
->fd
);
288 set_error( STATUS_PIPE_DISCONNECTED
);
292 static struct fd
*pipe_server_get_fd( struct object
*obj
)
294 struct pipe_server
*server
= (struct pipe_server
*) obj
;
296 switch(server
->state
)
298 case ps_connected_server
:
299 case ps_wait_disconnect
:
300 assert( server
->fd
);
301 return (struct fd
*) grab_object( server
->fd
);
305 set_error( STATUS_PIPE_LISTENING
);
308 case ps_disconnected_server
:
309 case ps_wait_connect
:
310 set_error( STATUS_PIPE_DISCONNECTED
);
317 static void notify_empty( struct pipe_server
*server
)
319 if (!server
->flush_poll
)
321 assert( server
->state
== ps_connected_server
);
322 assert( server
->event
);
323 remove_timeout_user( server
->flush_poll
);
324 server
->flush_poll
= NULL
;
325 set_event( server
->event
);
326 release_object( server
->event
);
327 server
->event
= NULL
;
330 static void do_disconnect( struct pipe_server
*server
)
332 /* we may only have a server fd, if the client disconnected */
335 assert( server
->client
->server
== server
);
336 assert( server
->client
->fd
);
337 release_object( server
->client
->fd
);
338 server
->client
->fd
= NULL
;
340 assert( server
->fd
);
341 shutdown( get_unix_fd( server
->fd
), SHUT_RDWR
);
342 release_object( server
->fd
);
346 static unsigned int pipe_map_access( struct object
*obj
, unsigned int access
)
348 if (access
& GENERIC_READ
) access
|= FILE_GENERIC_READ
;
349 if (access
& GENERIC_WRITE
) access
|= FILE_GENERIC_WRITE
;
350 if (access
& GENERIC_EXECUTE
) access
|= FILE_GENERIC_EXECUTE
;
351 if (access
& GENERIC_ALL
) access
|= FILE_ALL_ACCESS
;
352 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
355 static void pipe_server_destroy( struct object
*obj
)
357 struct pipe_server
*server
= (struct pipe_server
*)obj
;
359 assert( obj
->ops
== &pipe_server_ops
);
363 notify_empty( server
);
364 do_disconnect( server
);
369 server
->client
->server
= NULL
;
370 server
->client
= NULL
;
373 free_async_queue( server
->wait_q
);
375 assert( server
->pipe
->instances
);
376 server
->pipe
->instances
--;
378 list_remove( &server
->entry
);
379 release_object( server
->pipe
);
382 static void pipe_client_destroy( struct object
*obj
)
384 struct pipe_client
*client
= (struct pipe_client
*)obj
;
385 struct pipe_server
*server
= client
->server
;
387 assert( obj
->ops
== &pipe_client_ops
);
391 notify_empty( server
);
393 switch(server
->state
)
395 case ps_connected_server
:
396 /* Don't destroy the server's fd here as we can't
397 do a successful flush without it. */
398 server
->state
= ps_wait_disconnect
;
399 release_object( client
->fd
);
402 case ps_disconnected_server
:
403 server
->state
= ps_wait_connect
;
407 case ps_wait_disconnect
:
408 case ps_wait_connect
:
411 assert( server
->client
);
412 server
->client
= NULL
;
413 client
->server
= NULL
;
415 assert( !client
->fd
);
418 static void named_pipe_device_dump( struct object
*obj
, int verbose
)
420 assert( obj
->ops
== &named_pipe_device_ops
);
421 fprintf( stderr
, "Named pipe device\n" );
424 static struct fd
*named_pipe_device_get_fd( struct object
*obj
)
426 struct named_pipe_device
*device
= (struct named_pipe_device
*)obj
;
427 return (struct fd
*)grab_object( device
->fd
);
430 static struct object
*named_pipe_device_lookup_name( struct object
*obj
, struct unicode_str
*name
,
433 struct named_pipe_device
*device
= (struct named_pipe_device
*)obj
;
434 struct object
*found
;
436 assert( obj
->ops
== &named_pipe_device_ops
);
437 assert( device
->pipes
);
439 if ((found
= find_object( device
->pipes
, name
, attr
| OBJ_CASE_INSENSITIVE
)))
445 static struct object
*named_pipe_device_open_file( struct object
*obj
, unsigned int access
,
446 unsigned int sharing
, unsigned int options
)
448 return grab_object( obj
);
451 static void named_pipe_device_destroy( struct object
*obj
)
453 struct named_pipe_device
*device
= (struct named_pipe_device
*)obj
;
454 assert( obj
->ops
== &named_pipe_device_ops
);
455 if (device
->fd
) release_object( device
->fd
);
456 free( device
->pipes
);
459 static enum server_fd_type
named_pipe_device_get_fd_type( struct fd
*fd
)
461 return FD_TYPE_DEVICE
;
464 void create_named_pipe_device( struct directory
*root
, const struct unicode_str
*name
)
466 struct named_pipe_device
*dev
;
468 if ((dev
= create_named_object_dir( root
, name
, 0, &named_pipe_device_ops
)) &&
469 get_error() != STATUS_OBJECT_NAME_EXISTS
)
472 if (!(dev
->fd
= alloc_pseudo_fd( &named_pipe_device_fd_ops
, &dev
->obj
)) ||
473 !(dev
->pipes
= create_namespace( 7 )))
475 release_object( dev
);
479 if (dev
) make_object_static( &dev
->obj
);
482 static int pipe_data_remaining( struct pipe_server
*server
)
487 assert( server
->client
);
489 fd
= get_unix_fd( server
->client
->fd
);
496 if (0 > poll( &pfd
, 1, 0 ))
499 return pfd
.revents
&POLLIN
;
502 static void check_flushed( void *arg
)
504 struct pipe_server
*server
= (struct pipe_server
*) arg
;
506 assert( server
->event
);
507 if (pipe_data_remaining( server
))
509 struct timeval tv
= current_time
;
510 add_timeout( &tv
, 100 );
511 server
->flush_poll
= add_timeout_user( &tv
, check_flushed
, server
);
515 /* notify_empty( server ); */
516 server
->flush_poll
= NULL
;
517 set_event( server
->event
);
518 release_object( server
->event
);
519 server
->event
= NULL
;
523 static void pipe_server_flush( struct fd
*fd
, struct event
**event
)
525 struct pipe_server
*server
= get_fd_user( fd
);
527 if (!server
|| server
->state
!= ps_connected_server
) return;
529 /* FIXME: if multiple threads flush the same pipe,
530 maybe should create a list of processes to notify */
531 if (server
->flush_poll
) return;
533 if (pipe_data_remaining( server
))
535 struct timeval tv
= current_time
;
537 /* this kind of sux -
538 there's no unix way to be alerted when a pipe becomes empty */
539 server
->event
= create_event( NULL
, NULL
, 0, 0, 0 );
540 if (!server
->event
) return;
541 add_timeout( &tv
, 100 );
542 server
->flush_poll
= add_timeout_user( &tv
, check_flushed
, server
);
543 *event
= server
->event
;
547 static void pipe_client_flush( struct fd
*fd
, struct event
**event
)
549 /* FIXME: what do we have to do for this? */
552 static inline int is_overlapped( unsigned int options
)
554 return !(options
& (FILE_SYNCHRONOUS_IO_ALERT
| FILE_SYNCHRONOUS_IO_NONALERT
));
557 static enum server_fd_type
pipe_server_get_fd_type( struct fd
*fd
)
562 static enum server_fd_type
pipe_client_get_fd_type( struct fd
*fd
)
567 static struct named_pipe
*create_named_pipe( struct directory
*root
, const struct unicode_str
*name
,
571 struct named_pipe
*pipe
= NULL
;
572 struct unicode_str new_name
;
574 if (!name
|| !name
->len
) return alloc_object( &named_pipe_ops
);
576 if (!(obj
= find_object_dir( root
, name
, attr
, &new_name
)))
578 set_error( STATUS_OBJECT_NAME_INVALID
);
583 if (attr
& OBJ_OPENIF
&& obj
->ops
== &named_pipe_ops
)
584 set_error( STATUS_OBJECT_NAME_EXISTS
);
587 release_object( obj
);
589 if (attr
& OBJ_OPENIF
)
590 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
592 set_error( STATUS_OBJECT_NAME_COLLISION
);
594 return (struct named_pipe
*)obj
;
597 if (obj
->ops
!= &named_pipe_device_ops
)
598 set_error( STATUS_OBJECT_NAME_INVALID
);
601 struct named_pipe_device
*dev
= (struct named_pipe_device
*)obj
;
602 if ((pipe
= create_object( dev
->pipes
, &named_pipe_ops
, &new_name
, NULL
)))
606 release_object( obj
);
610 static struct pipe_server
*get_pipe_server_obj( struct process
*process
,
611 obj_handle_t handle
, unsigned int access
)
614 obj
= get_handle_obj( process
, handle
, access
, &pipe_server_ops
);
615 return (struct pipe_server
*) obj
;
618 static struct pipe_server
*create_pipe_server( struct named_pipe
*pipe
, unsigned int options
)
620 struct pipe_server
*server
;
622 server
= alloc_object( &pipe_server_ops
);
628 server
->state
= ps_idle_server
;
629 server
->client
= NULL
;
630 server
->flush_poll
= NULL
;
631 server
->options
= options
;
632 server
->wait_q
= create_async_queue( NULL
);
634 list_add_head( &pipe
->servers
, &server
->entry
);
640 static struct pipe_client
*create_pipe_client( unsigned int flags
)
642 struct pipe_client
*client
;
644 client
= alloc_object( &pipe_client_ops
);
649 client
->server
= NULL
;
650 client
->flags
= flags
;
655 static struct pipe_server
*find_available_server( struct named_pipe
*pipe
)
657 struct pipe_server
*server
;
659 LIST_FOR_EACH_ENTRY( server
, &pipe
->servers
, struct pipe_server
, entry
)
661 if (server
->state
== ps_idle_server
|| server
->state
== ps_wait_open
)
662 return (struct pipe_server
*)grab_object( server
);
667 static struct object
*named_pipe_open_file( struct object
*obj
, unsigned int access
,
668 unsigned int sharing
, unsigned int options
)
670 struct named_pipe
*pipe
= (struct named_pipe
*)obj
;
671 struct pipe_server
*server
;
672 struct pipe_client
*client
;
675 if (!(server
= find_available_server( pipe
)))
677 set_error( STATUS_PIPE_NOT_AVAILABLE
);
681 if ((client
= create_pipe_client( options
)))
683 if (!socketpair( PF_UNIX
, SOCK_STREAM
, 0, fds
))
687 assert( !client
->fd
);
688 assert( !server
->fd
);
690 /* for performance reasons, only set nonblocking mode when using
691 * overlapped I/O. Otherwise, we will be doing too much busy
693 if (is_overlapped( options
))
694 res
= fcntl( fds
[1], F_SETFL
, O_NONBLOCK
);
695 if ((res
!= -1) && is_overlapped( server
->options
))
696 res
= fcntl( fds
[0], F_SETFL
, O_NONBLOCK
);
700 setsockopt( fds
[0], SOL_SOCKET
, SO_RCVBUF
, &pipe
->insize
, sizeof(pipe
->insize
) );
701 setsockopt( fds
[1], SOL_SOCKET
, SO_RCVBUF
, &pipe
->insize
, sizeof(pipe
->insize
) );
705 setsockopt( fds
[0], SOL_SOCKET
, SO_SNDBUF
, &pipe
->outsize
, sizeof(pipe
->outsize
) );
706 setsockopt( fds
[1], SOL_SOCKET
, SO_SNDBUF
, &pipe
->outsize
, sizeof(pipe
->outsize
) );
709 client
->fd
= create_anonymous_fd( &pipe_client_fd_ops
, fds
[1], &client
->obj
, options
);
710 server
->fd
= create_anonymous_fd( &pipe_server_fd_ops
, fds
[0], &server
->obj
, server
->options
);
711 if (client
->fd
&& server
->fd
&& res
!= 1)
713 if (server
->state
== ps_wait_open
)
714 async_wake_up( server
->wait_q
, STATUS_SUCCESS
);
715 server
->state
= ps_connected_server
;
716 server
->client
= client
;
717 client
->server
= server
;
723 release_object( server
);
727 DECL_HANDLER(create_named_pipe
)
729 struct named_pipe
*pipe
;
730 struct pipe_server
*server
;
731 struct unicode_str name
;
732 struct directory
*root
= NULL
;
735 get_req_unicode_str( &name
);
736 if (req
->rootdir
&& !(root
= get_directory_obj( current
->process
, req
->rootdir
, 0 )))
739 pipe
= create_named_pipe( root
, &name
, req
->attributes
| OBJ_OPENIF
);
741 if (root
) release_object( root
);
744 if (get_error() != STATUS_OBJECT_NAME_EXISTS
)
746 /* initialize it if it didn't already exist */
748 pipe
->waiters
= NULL
;
749 list_init( &pipe
->servers
);
750 pipe
->insize
= req
->insize
;
751 pipe
->outsize
= req
->outsize
;
752 pipe
->maxinstances
= req
->maxinstances
;
753 pipe
->timeout
= req
->timeout
;
754 pipe
->flags
= req
->flags
;
758 if (pipe
->maxinstances
<= pipe
->instances
)
760 set_error( STATUS_INSTANCE_NOT_AVAILABLE
);
761 release_object( pipe
);
764 if ((pipe
->maxinstances
!= req
->maxinstances
) ||
765 (pipe
->timeout
!= req
->timeout
) ||
766 (pipe
->flags
!= req
->flags
))
768 set_error( STATUS_ACCESS_DENIED
);
769 release_object( pipe
);
772 clear_error(); /* clear the name collision */
775 server
= create_pipe_server( pipe
, req
->options
);
778 reply
->handle
= alloc_handle( current
->process
, server
, req
->access
, req
->attributes
);
779 server
->pipe
->instances
++;
780 release_object( server
);
783 release_object( pipe
);
786 DECL_HANDLER(connect_named_pipe
)
788 struct pipe_server
*server
;
791 server
= get_pipe_server_obj(current
->process
, req
->handle
, 0);
795 switch(server
->state
)
798 case ps_wait_connect
:
799 assert( !server
->fd
);
800 server
->state
= ps_wait_open
;
801 if ((async
= create_async( current
, server
->wait_q
, &req
->async
)))
803 if (server
->pipe
->waiters
) async_wake_up( server
->pipe
->waiters
, STATUS_SUCCESS
);
804 release_object( async
);
805 set_error( STATUS_PENDING
);
808 case ps_connected_server
:
809 assert( server
->fd
);
810 set_error( STATUS_PIPE_CONNECTED
);
812 case ps_disconnected_server
:
813 set_error( STATUS_PIPE_BUSY
);
815 case ps_wait_disconnect
:
816 set_error( STATUS_NO_DATA_DETECTED
);
819 set_error( STATUS_INVALID_HANDLE
);
823 release_object(server
);
826 DECL_HANDLER(wait_named_pipe
)
828 struct named_pipe_device
*device
;
829 struct named_pipe
*pipe
;
830 struct pipe_server
*server
;
831 struct unicode_str name
;
833 device
= (struct named_pipe_device
*)get_handle_obj( current
->process
, req
->handle
,
834 FILE_READ_ATTRIBUTES
, &named_pipe_device_ops
);
837 get_req_unicode_str( &name
);
838 pipe
= (struct named_pipe
*)find_object( device
->pipes
, &name
, OBJ_CASE_INSENSITIVE
);
839 release_object( device
);
842 set_error( STATUS_PIPE_NOT_AVAILABLE
);
845 server
= find_available_server( pipe
);
850 if (!pipe
->waiters
&& !(pipe
->waiters
= create_async_queue( NULL
)))
852 release_object( pipe
);
856 if ((async
= create_async( current
, pipe
->waiters
, &req
->async
)))
858 if (req
->timeout
!= NMPWAIT_WAIT_FOREVER
)
860 struct timeval when
= current_time
;
861 if (req
->timeout
== NMPWAIT_USE_DEFAULT_WAIT
) add_timeout( &when
, pipe
->timeout
);
862 else add_timeout( &when
, req
->timeout
);
863 async_set_timeout( async
, &when
, STATUS_TIMEOUT
);
865 release_object( async
);
866 set_error( STATUS_PENDING
);
869 else release_object( server
);
871 release_object( pipe
);
874 DECL_HANDLER(disconnect_named_pipe
)
876 struct pipe_server
*server
;
878 server
= get_pipe_server_obj( current
->process
, req
->handle
, 0 );
881 switch(server
->state
)
883 case ps_connected_server
:
884 assert( server
->fd
);
885 assert( server
->client
);
886 assert( server
->client
->fd
);
888 notify_empty( server
);
890 /* Dump the client and server fds, but keep the pointers
891 around - client loses all waiting data */
892 server
->state
= ps_disconnected_server
;
893 do_disconnect( server
);
896 case ps_wait_disconnect
:
897 assert( !server
->client
);
898 assert( server
->fd
);
899 do_disconnect( server
);
900 server
->state
= ps_wait_connect
;
905 case ps_disconnected_server
:
906 case ps_wait_connect
:
907 set_error( STATUS_PIPE_DISCONNECTED
);
910 release_object( server
);
913 DECL_HANDLER(get_named_pipe_info
)
915 struct pipe_server
*server
;
916 struct pipe_client
*client
= NULL
;
918 server
= get_pipe_server_obj( current
->process
, req
->handle
, FILE_READ_ATTRIBUTES
);
922 client
= (struct pipe_client
*)get_handle_obj( current
->process
, req
->handle
,
923 FILE_READ_ATTRIBUTES
, &pipe_client_ops
);
925 server
= client
->server
;
928 reply
->flags
= server
->pipe
->flags
;
929 reply
->maxinstances
= server
->pipe
->maxinstances
;
930 reply
->instances
= server
->pipe
->instances
;
931 reply
->insize
= server
->pipe
->insize
;
932 reply
->outsize
= server
->pipe
->outsize
;
935 release_object(client
);
938 reply
->flags
|= NAMED_PIPE_SERVER_END
;
939 release_object(server
);