Do a protocol error instead of crashing if the reply fd has not been
[wine] / server / request.c
1 /*
2  * Server-side request handling
3  *
4  * Copyright (C) 1998 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
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
52 #include "windef.h"
53 #include "winbase.h"
54 #include "wincon.h"
55 #include "wine/library.h"
56
57 #include "file.h"
58 #include "handle.h"
59 #include "thread.h"
60 #include "process.h"
61 #include "user.h"
62 #define WANT_REQUEST_HANDLERS
63 #include "request.h"
64
65 /* Some versions of glibc don't define this */
66 #ifndef SCM_RIGHTS
67 #define SCM_RIGHTS 1
68 #endif
69
70 /* path names for server master Unix socket */
71 static const char * const server_socket_name = "socket";   /* name of the socket file */
72 static const char * const server_lock_name = "lock";       /* name of the server lock file */
73
74 struct master_socket
75 {
76     struct object        obj;        /* object header */
77     struct fd           *fd;         /* file descriptor of the master socket */
78     struct timeout_user *timeout;    /* timeout on last process exit */
79 };
80
81 static void master_socket_dump( struct object *obj, int verbose );
82 static void master_socket_destroy( struct object *obj );
83 static void master_socket_poll_event( struct fd *fd, int event );
84
85 static const struct object_ops master_socket_ops =
86 {
87     sizeof(struct master_socket),  /* size */
88     master_socket_dump,            /* dump */
89     no_add_queue,                  /* add_queue */
90     NULL,                          /* remove_queue */
91     NULL,                          /* signaled */
92     NULL,                          /* satisfied */
93     no_get_fd,                     /* get_fd */
94     master_socket_destroy          /* destroy */
95 };
96
97 static const struct fd_ops master_socket_fd_ops =
98 {
99     NULL,                          /* get_poll_events */
100     master_socket_poll_event,      /* poll_event */
101     no_flush,                      /* flush */
102     no_get_file_info,              /* get_file_info */
103     no_queue_async                 /* queue_async */
104 };
105
106
107 struct thread *current = NULL;  /* thread handling the current request */
108 unsigned int global_error = 0;  /* global error code for when no thread is current */
109 unsigned int server_start_ticks = 0;  /* tick count offset from server startup */
110
111 static struct master_socket *master_socket;  /* the master socket object */
112
113 /* socket communication static structures */
114 static struct iovec myiovec;
115 static struct msghdr msghdr;
116 #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
117 struct cmsg_fd
118 {
119     int len;   /* size of structure */
120     int level; /* SOL_SOCKET */
121     int type;  /* SCM_RIGHTS */
122     int fd;    /* fd to pass */
123 };
124 static struct cmsg_fd cmsg = { sizeof(cmsg), SOL_SOCKET, SCM_RIGHTS, -1 };
125 #endif  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
126
127 /* complain about a protocol error and terminate the client connection */
128 void fatal_protocol_error( struct thread *thread, const char *err, ... )
129 {
130     va_list args;
131
132     va_start( args, err );
133     fprintf( stderr, "Protocol error:%p: ", thread );
134     vfprintf( stderr, err, args );
135     va_end( args );
136     thread->exit_code = 1;
137     kill_thread( thread, 1 );
138 }
139
140 /* complain about a protocol error and terminate the client connection */
141 void fatal_protocol_perror( struct thread *thread, const char *err, ... )
142 {
143     va_list args;
144
145     va_start( args, err );
146     fprintf( stderr, "Protocol error:%p: ", thread );
147     vfprintf( stderr, err, args );
148     perror( " " );
149     va_end( args );
150     thread->exit_code = 1;
151     kill_thread( thread, 1 );
152 }
153
154 /* die on a fatal error */
155 void fatal_error( const char *err, ... )
156 {
157     va_list args;
158
159     va_start( args, err );
160     fprintf( stderr, "wineserver: " );
161     vfprintf( stderr, err, args );
162     va_end( args );
163     exit(1);
164 }
165
166 /* die on a fatal error */
167 void fatal_perror( const char *err, ... )
168 {
169     va_list args;
170
171     va_start( args, err );
172     fprintf( stderr, "wineserver: " );
173     vfprintf( stderr, err, args );
174     perror( " " );
175     va_end( args );
176     exit(1);
177 }
178
179 /* allocate the reply data */
180 void *set_reply_data_size( size_t size )
181 {
182     assert( size <= get_reply_max_size() );
183     if (size && !(current->reply_data = mem_alloc( size ))) size = 0;
184     current->reply_size = size;
185     return current->reply_data;
186 }
187
188 /* write the remaining part of the reply */
189 void write_reply( struct thread *thread )
190 {
191     int ret;
192
193     if ((ret = write( get_unix_fd( thread->reply_fd ),
194                       (char *)thread->reply_data + thread->reply_size - thread->reply_towrite,
195                       thread->reply_towrite )) >= 0)
196     {
197         if (!(thread->reply_towrite -= ret))
198         {
199             free( thread->reply_data );
200             thread->reply_data = NULL;
201             /* sent everything, can go back to waiting for requests */
202             set_fd_events( thread->request_fd, POLLIN );
203             set_fd_events( thread->reply_fd, 0 );
204         }
205         return;
206     }
207     if (errno == EPIPE)
208         kill_thread( thread, 0 );  /* normal death */
209     else if (errno != EWOULDBLOCK && errno != EAGAIN)
210         fatal_protocol_perror( thread, "reply write" );
211 }
212
213 /* send a reply to the current thread */
214 static void send_reply( union generic_reply *reply )
215 {
216     int ret;
217
218     if (!current->reply_size)
219     {
220         if ((ret = write( get_unix_fd( current->reply_fd ),
221                           reply, sizeof(*reply) )) != sizeof(*reply)) goto error;
222     }
223     else
224     {
225         struct iovec vec[2];
226
227         vec[0].iov_base = (void *)reply;
228         vec[0].iov_len  = sizeof(*reply);
229         vec[1].iov_base = current->reply_data;
230         vec[1].iov_len  = current->reply_size;
231
232         if ((ret = writev( get_unix_fd( current->reply_fd ), vec, 2 )) < sizeof(*reply)) goto error;
233
234         if ((current->reply_towrite = current->reply_size - (ret - sizeof(*reply))))
235         {
236             /* couldn't write it all, wait for POLLOUT */
237             set_fd_events( current->reply_fd, POLLOUT );
238             set_fd_events( current->request_fd, 0 );
239             return;
240         }
241     }
242     if (current->reply_data)
243     {
244         free( current->reply_data );
245         current->reply_data = NULL;
246     }
247     return;
248
249  error:
250     if (ret >= 0)
251         fatal_protocol_error( current, "partial write %d\n", ret );
252     else if (errno == EPIPE)
253         kill_thread( current, 0 );  /* normal death */
254     else
255         fatal_protocol_perror( current, "reply write" );
256 }
257
258 /* call a request handler */
259 static void call_req_handler( struct thread *thread )
260 {
261     union generic_reply reply;
262     enum request req = thread->req.request_header.req;
263
264     current = thread;
265     current->reply_size = 0;
266     clear_error();
267     memset( &reply, 0, sizeof(reply) );
268
269     if (debug_level) trace_request();
270
271     if (req < REQ_NB_REQUESTS)
272     {
273         req_handlers[req]( &current->req, &reply );
274         if (current)
275         {
276             if (current->reply_fd)
277             {
278                 reply.reply_header.error = current->error;
279                 reply.reply_header.reply_size = current->reply_size;
280                 if (debug_level) trace_reply( req, &reply );
281                 send_reply( &reply );
282             }
283             else fatal_protocol_error( current, "no reply fd for request %d\n", req );
284         }
285         current = NULL;
286         return;
287     }
288     fatal_protocol_error( current, "bad request %d\n", req );
289 }
290
291 /* read a request from a thread */
292 void read_request( struct thread *thread )
293 {
294     int ret;
295
296     if (!thread->req_toread)  /* no pending request */
297     {
298         if ((ret = read( get_unix_fd( thread->request_fd ), &thread->req,
299                          sizeof(thread->req) )) != sizeof(thread->req)) goto error;
300         if (!(thread->req_toread = thread->req.request_header.request_size))
301         {
302             /* no data, handle request at once */
303             call_req_handler( thread );
304             return;
305         }
306         if (!(thread->req_data = malloc( thread->req_toread )))
307             fatal_protocol_error( thread, "no memory for %d bytes request\n", thread->req_toread );
308     }
309
310     /* read the variable sized data */
311     for (;;)
312     {
313         ret = read( get_unix_fd( thread->request_fd ),
314                     (char *)thread->req_data + thread->req.request_header.request_size
315                       - thread->req_toread,
316                     thread->req_toread );
317         if (ret <= 0) break;
318         if (!(thread->req_toread -= ret))
319         {
320             call_req_handler( thread );
321             free( thread->req_data );
322             thread->req_data = NULL;
323             return;
324         }
325     }
326
327 error:
328     if (!ret)  /* closed pipe */
329         kill_thread( thread, 0 );
330     else if (ret > 0)
331         fatal_protocol_error( thread, "partial read %d\n", ret );
332     else if (errno != EWOULDBLOCK && errno != EAGAIN)
333         fatal_protocol_perror( thread, "read" );
334 }
335
336 /* receive a file descriptor on the process socket */
337 int receive_fd( struct process *process )
338 {
339     struct send_fd data;
340     int fd, ret;
341
342 #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
343     msghdr.msg_accrightslen = sizeof(int);
344     msghdr.msg_accrights = (void *)&fd;
345 #else  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
346     msghdr.msg_control    = &cmsg;
347     msghdr.msg_controllen = sizeof(cmsg);
348     cmsg.fd = -1;
349 #endif  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
350
351     myiovec.iov_base = (void *)&data;
352     myiovec.iov_len  = sizeof(data);
353
354     ret = recvmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
355 #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
356     fd = cmsg.fd;
357 #endif
358
359     if (ret == sizeof(data))
360     {
361         struct thread *thread;
362
363         if (data.tid) thread = get_thread_from_id( data.tid );
364         else thread = (struct thread *)grab_object( process->thread_list );
365
366         if (!thread || thread->process != process || thread->state == TERMINATED)
367         {
368             if (debug_level)
369                 fprintf( stderr, "%04x: *fd* %d <- %d bad thread id\n",
370                          data.tid, data.fd, fd );
371             close( fd );
372         }
373         else
374         {
375             if (debug_level)
376                 fprintf( stderr, "%04x: *fd* %d <- %d\n",
377                          thread->id, data.fd, fd );
378             thread_add_inflight_fd( thread, data.fd, fd );
379         }
380         if (thread) release_object( thread );
381         return 0;
382     }
383
384     if (ret >= 0)
385     {
386         if (ret > 0)
387             fprintf( stderr, "Protocol error: process %p: partial recvmsg %d for fd\n",
388                      process, ret );
389         kill_process( process, NULL, 1 );
390     }
391     else
392     {
393         if (errno != EWOULDBLOCK && errno != EAGAIN)
394         {
395             fprintf( stderr, "Protocol error: process %p: ", process );
396             perror( "recvmsg" );
397             kill_process( process, NULL, 1 );
398         }
399     }
400     return -1;
401 }
402
403 /* send an fd to a client */
404 int send_client_fd( struct process *process, int fd, obj_handle_t handle )
405 {
406     int ret;
407
408     if (debug_level)
409         fprintf( stderr, "%04x: *fd* %p -> %d\n",
410                  current ? current->id : process->id, handle, fd );
411
412 #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
413     msghdr.msg_accrightslen = sizeof(fd);
414     msghdr.msg_accrights = (void *)&fd;
415 #else  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
416     msghdr.msg_control    = &cmsg;
417     msghdr.msg_controllen = sizeof(cmsg);
418     cmsg.fd = fd;
419 #endif  /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
420
421     myiovec.iov_base = (void *)&handle;
422     myiovec.iov_len  = sizeof(handle);
423
424     ret = sendmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
425
426     if (ret == sizeof(handle)) return 0;
427
428     if (ret >= 0)
429     {
430         fprintf( stderr, "Protocol error: process %p: partial sendmsg %d\n", process, ret );
431         kill_process( process, NULL, 1 );
432     }
433     else if (errno == EPIPE)
434     {
435         kill_process( process, NULL, 0 );
436     }
437     else
438     {
439         fprintf( stderr, "Protocol error: process %p: ", process );
440         perror( "sendmsg" );
441         kill_process( process, NULL, 1 );
442     }
443     return -1;
444 }
445
446 /* get current tick count to return to client */
447 unsigned int get_tick_count(void)
448 {
449     struct timeval t;
450     gettimeofday( &t, NULL );
451     return (t.tv_sec * 1000) + (t.tv_usec / 1000) - server_start_ticks;
452 }
453
454 static void master_socket_dump( struct object *obj, int verbose )
455 {
456     struct master_socket *sock = (struct master_socket *)obj;
457     assert( obj->ops == &master_socket_ops );
458     fprintf( stderr, "Master socket fd=%p\n", sock->fd );
459 }
460
461 static void master_socket_destroy( struct object *obj )
462 {
463     struct master_socket *sock = (struct master_socket *)obj;
464     assert( obj->ops == &master_socket_ops );
465     release_object( sock->fd );
466 }
467
468 /* handle a socket event */
469 static void master_socket_poll_event( struct fd *fd, int event )
470 {
471     struct master_socket *sock = get_fd_user( fd );
472     assert( master_socket->obj.ops == &master_socket_ops );
473
474     assert( sock == master_socket );  /* there is only one master socket */
475
476     if (event & (POLLERR | POLLHUP))
477     {
478         /* this is not supposed to happen */
479         fprintf( stderr, "wineserver: Error on master socket\n" );
480         release_object( sock );
481     }
482     else if (event & POLLIN)
483     {
484         struct sockaddr_un dummy;
485         int len = sizeof(dummy);
486         int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len );
487         if (client == -1) return;
488         if (sock->timeout)
489         {
490             remove_timeout_user( sock->timeout );
491             sock->timeout = NULL;
492         }
493         fcntl( client, F_SETFL, O_NONBLOCK );
494         create_process( client );
495     }
496 }
497
498 /* remove the socket upon exit */
499 static void socket_cleanup(void)
500 {
501     static int do_it_once;
502     if (!do_it_once++) unlink( server_socket_name );
503 }
504
505 /* create a directory and check its permissions */
506 static void create_dir( const char *name, struct stat *st )
507 {
508     if (lstat( name, st ) == -1)
509     {
510         if (errno != ENOENT) fatal_perror( "lstat %s", name );
511         if (mkdir( name, 0700 ) == -1) fatal_perror( "mkdir %s", name );
512         if (lstat( name, st ) == -1) fatal_perror( "lstat %s", name );
513     }
514     if (!S_ISDIR(st->st_mode)) fatal_error( "%s is not a directory\n", name );
515     if (st->st_uid != getuid()) fatal_error( "%s is not owned by you\n", name );
516     if (st->st_mode & 077) fatal_error( "%s must not be accessible by other users\n", name );
517 }
518
519 /* create the server directory and chdir to it */
520 static void create_server_dir(void)
521 {
522     char *p, *server_dir;
523     struct stat st, st2;
524
525     if (!(server_dir = strdup( wine_get_server_dir() ))) fatal_error( "out of memory\n" );
526
527     /* first create the base directory if needed */
528
529     p = strrchr( server_dir, '/' );
530     *p = 0;
531     create_dir( server_dir, &st );
532
533     /* now create the server directory */
534
535     *p = '/';
536     create_dir( server_dir, &st );
537
538     if (chdir( server_dir ) == -1) fatal_perror( "chdir %s", server_dir );
539     if (stat( ".", &st2 ) == -1) fatal_perror( "stat %s", server_dir );
540     if (st.st_dev != st2.st_dev || st.st_ino != st2.st_ino)
541         fatal_error( "chdir did not end up in %s\n", server_dir );
542
543     free( server_dir );
544 }
545
546 /* create the lock file and return its file descriptor */
547 static int create_server_lock(void)
548 {
549     struct stat st;
550     int fd;
551
552     if (lstat( server_lock_name, &st ) == -1)
553     {
554         if (errno != ENOENT)
555             fatal_perror( "lstat %s/%s", wine_get_server_dir(), server_lock_name );
556     }
557     else
558     {
559         if (!S_ISREG(st.st_mode))
560             fatal_error( "%s/%s is not a regular file\n", wine_get_server_dir(), server_lock_name );
561     }
562
563     if ((fd = open( server_lock_name, O_CREAT|O_TRUNC|O_WRONLY, 0600 )) == -1)
564         fatal_perror( "error creating %s/%s", wine_get_server_dir(), server_lock_name );
565     return fd;
566 }
567
568 /* wait for the server lock */
569 int wait_for_lock(void)
570 {
571     int fd, r;
572     struct flock fl;
573
574     create_server_dir();
575     fd = create_server_lock();
576
577     fl.l_type   = F_WRLCK;
578     fl.l_whence = SEEK_SET;
579     fl.l_start  = 0;
580     fl.l_len    = 1;
581     r = fcntl( fd, F_SETLKW, &fl );
582     close(fd);
583
584     return r;
585 }
586
587 /* kill the wine server holding the lock */
588 int kill_lock_owner( int sig )
589 {
590     int fd, i, ret = 0;
591     pid_t pid = 0;
592     struct flock fl;
593
594     create_server_dir();
595     fd = create_server_lock();
596
597     for (i = 0; i < 10; i++)
598     {
599         fl.l_type   = F_WRLCK;
600         fl.l_whence = SEEK_SET;
601         fl.l_start  = 0;
602         fl.l_len    = 1;
603         if (fcntl( fd, F_GETLK, &fl ) == -1) goto done;
604         if (fl.l_type != F_WRLCK) goto done;  /* the file is not locked */
605         if (!pid)  /* first time around */
606         {
607             if (!(pid = fl.l_pid)) goto done;  /* shouldn't happen */
608             if (sig == -1)
609             {
610                 if (kill( pid, SIGINT ) == -1) goto done;
611                 kill( pid, SIGCONT );
612                 ret = 1;
613             }
614             else  /* just send the specified signal and return */
615             {
616                 ret = (kill( pid, sig ) != -1);
617                 goto done;
618             }
619         }
620         else if (fl.l_pid != pid) goto done;  /* no longer the same process */
621         sleep( 1 );
622     }
623     /* waited long enough, now kill it */
624     kill( pid, SIGKILL );
625
626  done:
627     close( fd );
628     return ret;
629 }
630
631 /* acquire the main server lock */
632 static void acquire_lock(void)
633 {
634     struct sockaddr_un addr;
635     struct stat st;
636     struct flock fl;
637     int fd, slen, got_lock = 0;
638
639     fd = create_server_lock();
640
641     fl.l_type   = F_WRLCK;
642     fl.l_whence = SEEK_SET;
643     fl.l_start  = 0;
644     fl.l_len    = 1;
645     if (fcntl( fd, F_SETLK, &fl ) != -1)
646     {
647         /* check for crashed server */
648         if (stat( server_socket_name, &st ) != -1 &&   /* there is a leftover socket */
649             stat( "core", &st ) != -1 && st.st_size)   /* and there is a non-empty core file */
650         {
651             fprintf( stderr,
652                      "Warning: a previous instance of the wine server seems to have crashed.\n"
653                      "Please run 'gdb %s %s/core',\n"
654                      "type 'backtrace' at the gdb prompt and report the results. Thanks.\n\n",
655                      server_argv0, wine_get_server_dir() );
656         }
657         unlink( server_socket_name ); /* we got the lock, we can safely remove the socket */
658         got_lock = 1;
659         /* in that case we reuse fd without closing it, this ensures
660          * that we hold the lock until the process exits */
661     }
662     else
663     {
664         switch(errno)
665         {
666         case ENOLCK:
667             break;
668         case EACCES:
669             /* check whether locks work at all on this file system */
670             if (fcntl( fd, F_GETLK, &fl ) == -1) break;
671             /* fall through */
672         case EAGAIN:
673             exit(2); /* we didn't get the lock, exit with special status */
674         default:
675             fatal_perror( "fcntl %s/%s", wine_get_server_dir(), server_lock_name );
676         }
677         /* it seems we can't use locks on this fs, so we will use the socket existence as lock */
678         close( fd );
679     }
680
681     if ((fd = socket( AF_UNIX, SOCK_STREAM, 0 )) == -1) fatal_perror( "socket" );
682     addr.sun_family = AF_UNIX;
683     strcpy( addr.sun_path, server_socket_name );
684     slen = sizeof(addr) - sizeof(addr.sun_path) + strlen(addr.sun_path) + 1;
685 #ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
686     addr.sun_len = slen;
687 #endif
688     if (bind( fd, (struct sockaddr *)&addr, slen ) == -1)
689     {
690         if ((errno == EEXIST) || (errno == EADDRINUSE))
691         {
692             if (got_lock)
693                 fatal_error( "couldn't bind to the socket even though we hold the lock\n" );
694             exit(2); /* we didn't get the lock, exit with special status */
695         }
696         fatal_perror( "bind" );
697     }
698     atexit( socket_cleanup );
699     chmod( server_socket_name, 0600 );  /* make sure no other user can connect */
700     if (listen( fd, 5 ) == -1) fatal_perror( "listen" );
701
702     if (!(master_socket = alloc_object( &master_socket_ops )) ||
703         !(master_socket->fd = create_anonymous_fd( &master_socket_fd_ops, fd, &master_socket->obj )))
704         fatal_error( "out of memory\n" );
705     master_socket->timeout = NULL;
706     set_fd_events( master_socket->fd, POLLIN );
707 }
708
709 /* open the master server socket and start waiting for new clients */
710 void open_master_socket(void)
711 {
712     int fd, pid, status, sync_pipe[2];
713     char dummy;
714
715     /* make sure no request is larger than the maximum size */
716     assert( sizeof(union generic_request) == sizeof(struct request_max_size) );
717     assert( sizeof(union generic_reply) == sizeof(struct request_max_size) );
718
719     create_server_dir();
720
721     if (!foreground)
722     {
723         if (pipe( sync_pipe ) == -1) fatal_perror( "pipe" );
724         pid = fork();
725         switch( pid )
726         {
727         case 0:  /* child */
728             setsid();
729             close( sync_pipe[0] );
730
731             acquire_lock();
732
733             /* close stdin and stdout */
734             if ((fd = open( "/dev/null", O_RDWR )) != -1)
735             {
736                 dup2( fd, 0 );
737                 dup2( fd, 1 );
738                 close( fd );
739             }
740
741             /* signal parent */
742             write( sync_pipe[1], &dummy, 1 );
743             close( sync_pipe[1] );
744             break;
745
746         case -1:
747             fatal_perror( "fork" );
748             break;
749
750         default:  /* parent */
751             close( sync_pipe[1] );
752
753             /* wait for child to signal us and then exit */
754             if (read( sync_pipe[0], &dummy, 1 ) == 1) _exit(0);
755
756             /* child terminated, propagate exit status */
757             wait4( pid, &status, 0, NULL );
758             if (WIFEXITED(status)) _exit( WEXITSTATUS(status) );
759             _exit(1);
760         }
761     }
762     else  /* remain in the foreground */
763     {
764         acquire_lock();
765     }
766
767     /* setup msghdr structure constant fields */
768     msghdr.msg_name    = NULL;
769     msghdr.msg_namelen = 0;
770     msghdr.msg_iov     = &myiovec;
771     msghdr.msg_iovlen  = 1;
772
773     /* init startup ticks */
774     server_start_ticks = get_tick_count();
775 }
776
777 /* master socket timer expiration handler */
778 static void close_socket_timeout( void *arg )
779 {
780     master_socket->timeout = NULL;
781     flush_registry();
782
783     /* if a new client is waiting, we keep on running */
784     if (check_fd_events( master_socket->fd, POLLIN )) return;
785
786     if (debug_level) fprintf( stderr, "wineserver: exiting (pid=%ld)\n", (long) getpid() );
787
788 #ifdef DEBUG_OBJECTS
789     /* shut down everything properly */
790     release_object( master_socket );
791     close_signals();
792     close_global_hooks();
793     close_global_handles();
794     close_registry();
795     close_atom_table();
796 #else
797     exit(0);
798 #endif
799 }
800
801 /* close the master socket and stop waiting for new clients */
802 void close_master_socket(void)
803 {
804     struct timeval when;
805
806     if (master_socket_timeout == -1) return;  /* just keep running forever */
807
808     if (master_socket_timeout)
809     {
810         gettimeofday( &when, 0 );
811         add_timeout( &when, master_socket_timeout * 1000 );
812         master_socket->timeout = add_timeout_user( &when, close_socket_timeout, NULL );
813     }
814     else close_socket_timeout( NULL );  /* close it right away */
815 }
816
817 /* lock/unlock the master socket to stop accepting new clients */
818 void lock_master_socket( int locked )
819 {
820     set_fd_events( master_socket->fd, locked ? 0 : POLLIN );
821 }