shell32: tests for RunFileDlg
[wine/kumbayo.git] / server / request.c
blob7839de786bf2bd0aa57d2230910670d8c87e2294
1 /*
2 * Server-side request handling
4 * Copyright (C) 1998 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #ifdef HAVE_PWD_H
28 #include <pwd.h>
29 #endif
30 #include <signal.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <stdarg.h>
34 #include <string.h>
35 #include <sys/stat.h>
36 #include <sys/time.h>
37 #include <sys/types.h>
38 #ifdef HAVE_SYS_SOCKET_H
39 # include <sys/socket.h>
40 #endif
41 #ifdef HAVE_SYS_WAIT_H
42 # include <sys/wait.h>
43 #endif
44 #ifdef HAVE_SYS_UIO_H
45 #include <sys/uio.h>
46 #endif
47 #ifdef HAVE_SYS_UN_H
48 #include <sys/un.h>
49 #endif
50 #include <unistd.h>
51 #ifdef HAVE_POLL_H
52 #include <poll.h>
53 #endif
55 #include "ntstatus.h"
56 #define WIN32_NO_STATUS
57 #include "windef.h"
58 #include "winbase.h"
59 #include "wincon.h"
60 #include "winternl.h"
61 #include "wine/library.h"
63 #include "file.h"
64 #include "process.h"
65 #define WANT_REQUEST_HANDLERS
66 #include "request.h"
68 /* Some versions of glibc don't define this */
69 #ifndef SCM_RIGHTS
70 #define SCM_RIGHTS 1
71 #endif
73 /* path names for server master Unix socket */
74 static const char * const server_socket_name = "socket"; /* name of the socket file */
75 static const char * const server_lock_name = "lock"; /* name of the server lock file */
77 struct master_socket
79 struct object obj; /* object header */
80 struct fd *fd; /* file descriptor of the master socket */
83 static void master_socket_dump( struct object *obj, int verbose );
84 static void master_socket_destroy( struct object *obj );
85 static void master_socket_poll_event( struct fd *fd, int event );
87 static const struct object_ops master_socket_ops =
89 sizeof(struct master_socket), /* size */
90 master_socket_dump, /* dump */
91 no_get_type, /* get_type */
92 no_add_queue, /* add_queue */
93 NULL, /* remove_queue */
94 NULL, /* signaled */
95 NULL, /* satisfied */
96 no_signal, /* signal */
97 no_get_fd, /* get_fd */
98 no_map_access, /* map_access */
99 default_get_sd, /* get_sd */
100 default_set_sd, /* set_sd */
101 no_lookup_name, /* lookup_name */
102 no_open_file, /* open_file */
103 no_close_handle, /* close_handle */
104 master_socket_destroy /* destroy */
107 static const struct fd_ops master_socket_fd_ops =
109 NULL, /* get_poll_events */
110 master_socket_poll_event, /* poll_event */
111 NULL, /* flush */
112 NULL, /* get_fd_type */
113 NULL, /* ioctl */
114 NULL, /* queue_async */
115 NULL, /* reselect_async */
116 NULL /* cancel_async */
120 struct thread *current = NULL; /* thread handling the current request */
121 unsigned int global_error = 0; /* global error code for when no thread is current */
122 timeout_t server_start_time = 0; /* server startup time */
124 static struct master_socket *master_socket; /* the master socket object */
125 static struct timeout_user *master_timeout;
127 /* socket communication static structures */
128 static struct iovec myiovec;
129 static struct msghdr msghdr;
130 #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
131 struct cmsg_fd
133 struct
135 size_t len; /* size of structure */
136 int level; /* SOL_SOCKET */
137 int type; /* SCM_RIGHTS */
138 } header;
139 int fd; /* fd to pass */
141 static struct cmsg_fd cmsg = { { sizeof(cmsg.header) + sizeof(cmsg.fd), SOL_SOCKET, SCM_RIGHTS }, -1 };
142 #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
144 /* complain about a protocol error and terminate the client connection */
145 void fatal_protocol_error( struct thread *thread, const char *err, ... )
147 va_list args;
149 va_start( args, err );
150 fprintf( stderr, "Protocol error:%04x: ", thread->id );
151 vfprintf( stderr, err, args );
152 va_end( args );
153 thread->exit_code = 1;
154 kill_thread( thread, 1 );
157 /* complain about a protocol error and terminate the client connection */
158 void fatal_protocol_perror( struct thread *thread, const char *err, ... )
160 va_list args;
162 va_start( args, err );
163 fprintf( stderr, "Protocol error:%04x: ", thread->id );
164 vfprintf( stderr, err, args );
165 perror( " " );
166 va_end( args );
167 thread->exit_code = 1;
168 kill_thread( thread, 1 );
171 /* die on a fatal error */
172 void fatal_error( const char *err, ... )
174 va_list args;
176 va_start( args, err );
177 fprintf( stderr, "wineserver: " );
178 vfprintf( stderr, err, args );
179 va_end( args );
180 exit(1);
183 /* die on a fatal error */
184 void fatal_perror( const char *err, ... )
186 va_list args;
188 va_start( args, err );
189 fprintf( stderr, "wineserver: " );
190 vfprintf( stderr, err, args );
191 perror( " " );
192 va_end( args );
193 exit(1);
196 /* allocate the reply data */
197 void *set_reply_data_size( data_size_t size )
199 assert( size <= get_reply_max_size() );
200 if (size && !(current->reply_data = mem_alloc( size ))) size = 0;
201 current->reply_size = size;
202 return current->reply_data;
205 /* write the remaining part of the reply */
206 void write_reply( struct thread *thread )
208 int ret;
210 if ((ret = write( get_unix_fd( thread->reply_fd ),
211 (char *)thread->reply_data + thread->reply_size - thread->reply_towrite,
212 thread->reply_towrite )) >= 0)
214 if (!(thread->reply_towrite -= ret))
216 free( thread->reply_data );
217 thread->reply_data = NULL;
218 /* sent everything, can go back to waiting for requests */
219 set_fd_events( thread->request_fd, POLLIN );
220 set_fd_events( thread->reply_fd, 0 );
222 return;
224 if (errno == EPIPE)
225 kill_thread( thread, 0 ); /* normal death */
226 else if (errno != EWOULDBLOCK && errno != EAGAIN)
227 fatal_protocol_perror( thread, "reply write" );
230 /* send a reply to the current thread */
231 static void send_reply( union generic_reply *reply )
233 int ret;
235 if (!current->reply_size)
237 if ((ret = write( get_unix_fd( current->reply_fd ),
238 reply, sizeof(*reply) )) != sizeof(*reply)) goto error;
240 else
242 struct iovec vec[2];
244 vec[0].iov_base = (void *)reply;
245 vec[0].iov_len = sizeof(*reply);
246 vec[1].iov_base = current->reply_data;
247 vec[1].iov_len = current->reply_size;
249 if ((ret = writev( get_unix_fd( current->reply_fd ), vec, 2 )) < sizeof(*reply)) goto error;
251 if ((current->reply_towrite = current->reply_size - (ret - sizeof(*reply))))
253 /* couldn't write it all, wait for POLLOUT */
254 set_fd_events( current->reply_fd, POLLOUT );
255 set_fd_events( current->request_fd, 0 );
256 return;
259 free( current->reply_data );
260 current->reply_data = NULL;
261 return;
263 error:
264 if (ret >= 0)
265 fatal_protocol_error( current, "partial write %d\n", ret );
266 else if (errno == EPIPE)
267 kill_thread( current, 0 ); /* normal death */
268 else
269 fatal_protocol_perror( current, "reply write" );
272 /* call a request handler */
273 static void call_req_handler( struct thread *thread )
275 union generic_reply reply;
276 enum request req = thread->req.request_header.req;
278 current = thread;
279 current->reply_size = 0;
280 clear_error();
281 memset( &reply, 0, sizeof(reply) );
283 if (debug_level) trace_request();
285 if (req < REQ_NB_REQUESTS)
286 req_handlers[req]( &current->req, &reply );
287 else
288 set_error( STATUS_NOT_IMPLEMENTED );
290 if (current)
292 if (current->reply_fd)
294 reply.reply_header.error = current->error;
295 reply.reply_header.reply_size = current->reply_size;
296 if (debug_level) trace_reply( req, &reply );
297 send_reply( &reply );
299 else
301 current->exit_code = 1;
302 kill_thread( current, 1 ); /* no way to continue without reply fd */
305 current = NULL;
308 /* read a request from a thread */
309 void read_request( struct thread *thread )
311 int ret;
313 if (!thread->req_toread) /* no pending request */
315 if ((ret = read( get_unix_fd( thread->request_fd ), &thread->req,
316 sizeof(thread->req) )) != sizeof(thread->req)) goto error;
317 if (!(thread->req_toread = thread->req.request_header.request_size))
319 /* no data, handle request at once */
320 call_req_handler( thread );
321 return;
323 if (!(thread->req_data = malloc( thread->req_toread )))
325 fatal_protocol_error( thread, "no memory for %u bytes request %d\n",
326 thread->req_toread, thread->req.request_header.req );
327 return;
331 /* read the variable sized data */
332 for (;;)
334 ret = read( get_unix_fd( thread->request_fd ),
335 (char *)thread->req_data + thread->req.request_header.request_size
336 - thread->req_toread,
337 thread->req_toread );
338 if (ret <= 0) break;
339 if (!(thread->req_toread -= ret))
341 call_req_handler( thread );
342 free( thread->req_data );
343 thread->req_data = NULL;
344 return;
348 error:
349 if (!ret) /* closed pipe */
350 kill_thread( thread, 0 );
351 else if (ret > 0)
352 fatal_protocol_error( thread, "partial read %d\n", ret );
353 else if (errno != EWOULDBLOCK && errno != EAGAIN)
354 fatal_protocol_perror( thread, "read" );
357 /* receive a file descriptor on the process socket */
358 int receive_fd( struct process *process )
360 struct send_fd data;
361 int fd, ret;
363 #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
364 msghdr.msg_accrightslen = sizeof(int);
365 msghdr.msg_accrights = (void *)&fd;
366 #else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
367 msghdr.msg_control = &cmsg;
368 msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd);
369 cmsg.fd = -1;
370 #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
372 myiovec.iov_base = (void *)&data;
373 myiovec.iov_len = sizeof(data);
375 ret = recvmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
376 #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
377 fd = cmsg.fd;
378 #endif
380 if (ret == sizeof(data))
382 struct thread *thread;
384 if (data.tid) thread = get_thread_from_id( data.tid );
385 else thread = (struct thread *)grab_object( get_process_first_thread( process ));
387 if (!thread || thread->process != process || thread->state == TERMINATED)
389 if (debug_level)
390 fprintf( stderr, "%04x: *fd* %d <- %d bad thread id\n",
391 data.tid, data.fd, fd );
392 close( fd );
394 else
396 if (debug_level)
397 fprintf( stderr, "%04x: *fd* %d <- %d\n",
398 thread->id, data.fd, fd );
399 thread_add_inflight_fd( thread, data.fd, fd );
401 if (thread) release_object( thread );
402 return 0;
405 if (!ret)
407 kill_process( process, 0 );
409 else if (ret > 0)
411 fprintf( stderr, "Protocol error: process %04x: partial recvmsg %d for fd\n",
412 process->id, ret );
413 kill_process( process, 1 );
415 else
417 if (errno != EWOULDBLOCK && errno != EAGAIN)
419 fprintf( stderr, "Protocol error: process %04x: ", process->id );
420 perror( "recvmsg" );
421 kill_process( process, 1 );
424 return -1;
427 /* send an fd to a client */
428 int send_client_fd( struct process *process, int fd, obj_handle_t handle )
430 int ret;
432 if (debug_level)
433 fprintf( stderr, "%04x: *fd* %p -> %d\n",
434 current ? current->id : process->id, handle, fd );
436 #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
437 msghdr.msg_accrightslen = sizeof(fd);
438 msghdr.msg_accrights = (void *)&fd;
439 #else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
440 msghdr.msg_control = &cmsg;
441 msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd);
442 cmsg.fd = fd;
443 #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
445 myiovec.iov_base = (void *)&handle;
446 myiovec.iov_len = sizeof(handle);
448 ret = sendmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
450 if (ret == sizeof(handle)) return 0;
452 if (ret >= 0)
454 fprintf( stderr, "Protocol error: process %04x: partial sendmsg %d\n", process->id, ret );
455 kill_process( process, 1 );
457 else if (errno == EPIPE)
459 kill_process( process, 0 );
461 else
463 fprintf( stderr, "Protocol error: process %04x: ", process->id );
464 perror( "sendmsg" );
465 kill_process( process, 1 );
467 return -1;
470 /* get current tick count to return to client */
471 unsigned int get_tick_count(void)
473 return (current_time - server_start_time) / 10000;
476 static void master_socket_dump( struct object *obj, int verbose )
478 struct master_socket *sock = (struct master_socket *)obj;
479 assert( obj->ops == &master_socket_ops );
480 fprintf( stderr, "Master socket fd=%p\n", sock->fd );
483 static void master_socket_destroy( struct object *obj )
485 struct master_socket *sock = (struct master_socket *)obj;
486 assert( obj->ops == &master_socket_ops );
487 release_object( sock->fd );
490 /* handle a socket event */
491 static void master_socket_poll_event( struct fd *fd, int event )
493 struct master_socket *sock = get_fd_user( fd );
494 assert( master_socket->obj.ops == &master_socket_ops );
496 assert( sock == master_socket ); /* there is only one master socket */
498 if (event & (POLLERR | POLLHUP))
500 /* this is not supposed to happen */
501 fprintf( stderr, "wineserver: Error on master socket\n" );
502 set_fd_events( sock->fd, -1 );
504 else if (event & POLLIN)
506 struct sockaddr_un dummy;
507 unsigned int len = sizeof(dummy);
508 int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len );
509 if (client == -1) return;
510 fcntl( client, F_SETFL, O_NONBLOCK );
511 create_process( client, NULL, 0 );
515 /* remove the socket upon exit */
516 static void socket_cleanup(void)
518 static int do_it_once;
519 if (!do_it_once++) unlink( server_socket_name );
522 /* create a directory and check its permissions */
523 static void create_dir( const char *name, struct stat *st )
525 if (lstat( name, st ) == -1)
527 if (errno != ENOENT) fatal_perror( "lstat %s", name );
528 if (mkdir( name, 0700 ) == -1 && errno != EEXIST) fatal_perror( "mkdir %s", name );
529 if (lstat( name, st ) == -1) fatal_perror( "lstat %s", name );
531 if (!S_ISDIR(st->st_mode)) fatal_error( "%s is not a directory\n", name );
532 if (st->st_uid != getuid()) fatal_error( "%s is not owned by you\n", name );
533 if (st->st_mode & 077) fatal_error( "%s must not be accessible by other users\n", name );
536 /* create the server directory and chdir to it */
537 static void create_server_dir( const char *dir )
539 char *p, *server_dir;
540 struct stat st, st2;
542 if (!(server_dir = strdup( dir ))) fatal_error( "out of memory\n" );
544 /* first create the base directory if needed */
546 p = strrchr( server_dir, '/' );
547 *p = 0;
548 create_dir( server_dir, &st );
550 /* now create the server directory */
552 *p = '/';
553 create_dir( server_dir, &st );
555 if (chdir( server_dir ) == -1) fatal_perror( "chdir %s", server_dir );
556 if (stat( ".", &st2 ) == -1) fatal_perror( "stat %s", server_dir );
557 if (st.st_dev != st2.st_dev || st.st_ino != st2.st_ino)
558 fatal_error( "chdir did not end up in %s\n", server_dir );
560 free( server_dir );
563 /* create the lock file and return its file descriptor */
564 static int create_server_lock(void)
566 struct stat st;
567 int fd;
569 if (lstat( server_lock_name, &st ) == -1)
571 if (errno != ENOENT)
572 fatal_perror( "lstat %s/%s", wine_get_server_dir(), server_lock_name );
574 else
576 if (!S_ISREG(st.st_mode))
577 fatal_error( "%s/%s is not a regular file\n", wine_get_server_dir(), server_lock_name );
580 if ((fd = open( server_lock_name, O_CREAT|O_TRUNC|O_WRONLY, 0600 )) == -1)
581 fatal_perror( "error creating %s/%s", wine_get_server_dir(), server_lock_name );
582 return fd;
585 /* wait for the server lock */
586 int wait_for_lock(void)
588 const char *server_dir = wine_get_server_dir();
589 int fd, r;
590 struct flock fl;
592 if (!server_dir) return 0; /* no server dir, so no lock to wait on */
594 create_server_dir( server_dir );
595 fd = create_server_lock();
597 fl.l_type = F_WRLCK;
598 fl.l_whence = SEEK_SET;
599 fl.l_start = 0;
600 fl.l_len = 1;
601 r = fcntl( fd, F_SETLKW, &fl );
602 close(fd);
604 return r;
607 /* kill the wine server holding the lock */
608 int kill_lock_owner( int sig )
610 const char *server_dir = wine_get_server_dir();
611 int fd, i, ret = 0;
612 pid_t pid = 0;
613 struct flock fl;
615 if (!server_dir) return 0; /* no server dir, nothing to do */
617 create_server_dir( server_dir );
618 fd = create_server_lock();
620 for (i = 1; i <= 20; i++)
622 fl.l_type = F_WRLCK;
623 fl.l_whence = SEEK_SET;
624 fl.l_start = 0;
625 fl.l_len = 1;
626 if (fcntl( fd, F_GETLK, &fl ) == -1) goto done;
627 if (fl.l_type != F_WRLCK) goto done; /* the file is not locked */
628 if (!pid) /* first time around */
630 if (!(pid = fl.l_pid)) goto done; /* shouldn't happen */
631 if (sig == -1)
633 if (kill( pid, SIGINT ) == -1) goto done;
634 kill( pid, SIGCONT );
635 ret = 1;
637 else /* just send the specified signal and return */
639 ret = (kill( pid, sig ) != -1);
640 goto done;
643 else if (fl.l_pid != pid) goto done; /* no longer the same process */
644 usleep( 50000 * i );
646 /* waited long enough, now kill it */
647 kill( pid, SIGKILL );
649 done:
650 close( fd );
651 return ret;
654 /* acquire the main server lock */
655 static void acquire_lock(void)
657 struct sockaddr_un addr;
658 struct stat st;
659 struct flock fl;
660 int fd, slen, got_lock = 0;
662 fd = create_server_lock();
664 fl.l_type = F_WRLCK;
665 fl.l_whence = SEEK_SET;
666 fl.l_start = 0;
667 fl.l_len = 1;
668 if (fcntl( fd, F_SETLK, &fl ) != -1)
670 /* check for crashed server */
671 if (stat( server_socket_name, &st ) != -1 && /* there is a leftover socket */
672 stat( "core", &st ) != -1 && st.st_size) /* and there is a non-empty core file */
674 fprintf( stderr,
675 "Warning: a previous instance of the wine server seems to have crashed.\n"
676 "Please run 'gdb %s %s/core',\n"
677 "type 'backtrace' at the gdb prompt and report the results. Thanks.\n\n",
678 server_argv0, wine_get_server_dir() );
680 unlink( server_socket_name ); /* we got the lock, we can safely remove the socket */
681 got_lock = 1;
682 /* in that case we reuse fd without closing it, this ensures
683 * that we hold the lock until the process exits */
685 else
687 switch(errno)
689 case ENOLCK:
690 break;
691 case EACCES:
692 /* check whether locks work at all on this file system */
693 if (fcntl( fd, F_GETLK, &fl ) == -1) break;
694 /* fall through */
695 case EAGAIN:
696 exit(2); /* we didn't get the lock, exit with special status */
697 default:
698 fatal_perror( "fcntl %s/%s", wine_get_server_dir(), server_lock_name );
700 /* it seems we can't use locks on this fs, so we will use the socket existence as lock */
701 close( fd );
704 if ((fd = socket( AF_UNIX, SOCK_STREAM, 0 )) == -1) fatal_perror( "socket" );
705 addr.sun_family = AF_UNIX;
706 strcpy( addr.sun_path, server_socket_name );
707 slen = sizeof(addr) - sizeof(addr.sun_path) + strlen(addr.sun_path) + 1;
708 #ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
709 addr.sun_len = slen;
710 #endif
711 if (bind( fd, (struct sockaddr *)&addr, slen ) == -1)
713 if ((errno == EEXIST) || (errno == EADDRINUSE))
715 if (got_lock)
716 fatal_error( "couldn't bind to the socket even though we hold the lock\n" );
717 exit(2); /* we didn't get the lock, exit with special status */
719 fatal_perror( "bind" );
721 atexit( socket_cleanup );
722 chmod( server_socket_name, 0600 ); /* make sure no other user can connect */
723 if (listen( fd, 5 ) == -1) fatal_perror( "listen" );
725 if (!(master_socket = alloc_object( &master_socket_ops )) ||
726 !(master_socket->fd = create_anonymous_fd( &master_socket_fd_ops, fd, &master_socket->obj, 0 )))
727 fatal_error( "out of memory\n" );
728 set_fd_events( master_socket->fd, POLLIN );
729 make_object_static( &master_socket->obj );
732 /* open the master server socket and start waiting for new clients */
733 void open_master_socket(void)
735 const char *server_dir = wine_get_server_dir();
736 int fd, pid, status, sync_pipe[2];
737 char dummy;
739 /* make sure no request is larger than the maximum size */
740 assert( sizeof(union generic_request) == sizeof(struct request_max_size) );
741 assert( sizeof(union generic_reply) == sizeof(struct request_max_size) );
743 if (!server_dir) fatal_error( "directory %s cannot be accessed\n", wine_get_config_dir() );
744 create_server_dir( server_dir );
746 if (!foreground)
748 if (pipe( sync_pipe ) == -1) fatal_perror( "pipe" );
749 pid = fork();
750 switch( pid )
752 case 0: /* child */
753 setsid();
754 close( sync_pipe[0] );
756 acquire_lock();
758 /* close stdin and stdout */
759 if ((fd = open( "/dev/null", O_RDWR )) != -1)
761 dup2( fd, 0 );
762 dup2( fd, 1 );
763 close( fd );
766 /* signal parent */
767 dummy = 0;
768 write( sync_pipe[1], &dummy, 1 );
769 close( sync_pipe[1] );
770 break;
772 case -1:
773 fatal_perror( "fork" );
774 break;
776 default: /* parent */
777 close( sync_pipe[1] );
779 /* wait for child to signal us and then exit */
780 if (read( sync_pipe[0], &dummy, 1 ) == 1) _exit(0);
782 /* child terminated, propagate exit status */
783 wait4( pid, &status, 0, NULL );
784 if (WIFEXITED(status)) _exit( WEXITSTATUS(status) );
785 _exit(1);
788 else /* remain in the foreground */
790 acquire_lock();
793 /* setup msghdr structure constant fields */
794 msghdr.msg_name = NULL;
795 msghdr.msg_namelen = 0;
796 msghdr.msg_iov = &myiovec;
797 msghdr.msg_iovlen = 1;
799 /* init the process tracing mechanism */
800 init_tracing_mechanism();
803 /* master socket timer expiration handler */
804 static void close_socket_timeout( void *arg )
806 master_timeout = NULL;
807 flush_registry();
808 if (debug_level) fprintf( stderr, "wineserver: exiting (pid=%ld)\n", (long) getpid() );
810 #ifdef DEBUG_OBJECTS
811 close_objects(); /* shut down everything properly */
812 #endif
813 exit( 0 );
816 /* close the master socket and stop waiting for new clients */
817 void close_master_socket( timeout_t timeout )
819 if (master_socket)
821 release_object( master_socket );
822 master_socket = NULL;
824 if (master_timeout) /* cancel previous timeout */
825 remove_timeout_user( master_timeout );
827 if (timeout)
828 master_timeout = add_timeout_user( timeout, close_socket_timeout, NULL );
829 else /* close it right away */
830 close_socket_timeout( NULL );