wined3d: Move a checkGLcall to it's gl call inside an "if".
[wine/hacks.git] / server / request.c
bloba78916ec4f01c69cda8771ede7c6f5ad498cbeac
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 */
81 struct timeout_user *timeout; /* timeout on last process exit */
84 static void master_socket_dump( struct object *obj, int verbose );
85 static void master_socket_destroy( struct object *obj );
86 static void master_socket_poll_event( struct fd *fd, int event );
88 static const struct object_ops master_socket_ops =
90 sizeof(struct master_socket), /* size */
91 master_socket_dump, /* dump */
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 no_lookup_name, /* lookup_name */
100 no_close_handle, /* close_handle */
101 master_socket_destroy /* destroy */
104 static const struct fd_ops master_socket_fd_ops =
106 NULL, /* get_poll_events */
107 master_socket_poll_event, /* poll_event */
108 no_flush, /* flush */
109 no_get_file_info, /* get_file_info */
110 no_queue_async, /* queue_async */
111 no_cancel_async /* cancel_async */
115 struct thread *current = NULL; /* thread handling the current request */
116 unsigned int global_error = 0; /* global error code for when no thread is current */
117 time_t server_start_time = 0; /* server startup time */
119 static struct master_socket *master_socket; /* the master socket object */
121 /* socket communication static structures */
122 static struct iovec myiovec;
123 static struct msghdr msghdr;
124 #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
125 struct cmsg_fd
127 struct
129 size_t len; /* size of structure */
130 int level; /* SOL_SOCKET */
131 int type; /* SCM_RIGHTS */
132 } header;
133 int fd; /* fd to pass */
135 static struct cmsg_fd cmsg = { { sizeof(cmsg.header) + sizeof(cmsg.fd), SOL_SOCKET, SCM_RIGHTS }, -1 };
136 #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
138 /* complain about a protocol error and terminate the client connection */
139 void fatal_protocol_error( struct thread *thread, const char *err, ... )
141 va_list args;
143 va_start( args, err );
144 fprintf( stderr, "Protocol error:%04x: ", thread->id );
145 vfprintf( stderr, err, args );
146 va_end( args );
147 thread->exit_code = 1;
148 kill_thread( thread, 1 );
151 /* complain about a protocol error and terminate the client connection */
152 void fatal_protocol_perror( struct thread *thread, const char *err, ... )
154 va_list args;
156 va_start( args, err );
157 fprintf( stderr, "Protocol error:%04x: ", thread->id );
158 vfprintf( stderr, err, args );
159 perror( " " );
160 va_end( args );
161 thread->exit_code = 1;
162 kill_thread( thread, 1 );
165 /* die on a fatal error */
166 void fatal_error( const char *err, ... )
168 va_list args;
170 va_start( args, err );
171 fprintf( stderr, "wineserver: " );
172 vfprintf( stderr, err, args );
173 va_end( args );
174 exit(1);
177 /* die on a fatal error */
178 void fatal_perror( const char *err, ... )
180 va_list args;
182 va_start( args, err );
183 fprintf( stderr, "wineserver: " );
184 vfprintf( stderr, err, args );
185 perror( " " );
186 va_end( args );
187 exit(1);
190 /* allocate the reply data */
191 void *set_reply_data_size( size_t size )
193 assert( size <= get_reply_max_size() );
194 if (size && !(current->reply_data = mem_alloc( size ))) size = 0;
195 current->reply_size = size;
196 return current->reply_data;
199 /* write the remaining part of the reply */
200 void write_reply( struct thread *thread )
202 int ret;
204 if ((ret = write( get_unix_fd( thread->reply_fd ),
205 (char *)thread->reply_data + thread->reply_size - thread->reply_towrite,
206 thread->reply_towrite )) >= 0)
208 if (!(thread->reply_towrite -= ret))
210 free( thread->reply_data );
211 thread->reply_data = NULL;
212 /* sent everything, can go back to waiting for requests */
213 set_fd_events( thread->request_fd, POLLIN );
214 set_fd_events( thread->reply_fd, 0 );
216 return;
218 if (errno == EPIPE)
219 kill_thread( thread, 0 ); /* normal death */
220 else if (errno != EWOULDBLOCK && errno != EAGAIN)
221 fatal_protocol_perror( thread, "reply write" );
224 /* send a reply to the current thread */
225 static void send_reply( union generic_reply *reply )
227 int ret;
229 if (!current->reply_size)
231 if ((ret = write( get_unix_fd( current->reply_fd ),
232 reply, sizeof(*reply) )) != sizeof(*reply)) goto error;
234 else
236 struct iovec vec[2];
238 vec[0].iov_base = (void *)reply;
239 vec[0].iov_len = sizeof(*reply);
240 vec[1].iov_base = current->reply_data;
241 vec[1].iov_len = current->reply_size;
243 if ((ret = writev( get_unix_fd( current->reply_fd ), vec, 2 )) < sizeof(*reply)) goto error;
245 if ((current->reply_towrite = current->reply_size - (ret - sizeof(*reply))))
247 /* couldn't write it all, wait for POLLOUT */
248 set_fd_events( current->reply_fd, POLLOUT );
249 set_fd_events( current->request_fd, 0 );
250 return;
253 if (current->reply_data)
255 free( current->reply_data );
256 current->reply_data = NULL;
258 return;
260 error:
261 if (ret >= 0)
262 fatal_protocol_error( current, "partial write %d\n", ret );
263 else if (errno == EPIPE)
264 kill_thread( current, 0 ); /* normal death */
265 else
266 fatal_protocol_perror( current, "reply write" );
269 /* call a request handler */
270 static void call_req_handler( struct thread *thread )
272 union generic_reply reply;
273 enum request req = thread->req.request_header.req;
275 current = thread;
276 current->reply_size = 0;
277 clear_error();
278 memset( &reply, 0, sizeof(reply) );
280 if (debug_level) trace_request();
282 if (req < REQ_NB_REQUESTS)
283 req_handlers[req]( &current->req, &reply );
284 else
285 set_error( STATUS_NOT_IMPLEMENTED );
287 if (current)
289 if (current->reply_fd)
291 reply.reply_header.error = current->error;
292 reply.reply_header.reply_size = current->reply_size;
293 if (debug_level) trace_reply( req, &reply );
294 send_reply( &reply );
296 else
298 current->exit_code = 1;
299 kill_thread( current, 1 ); /* no way to continue without reply fd */
302 current = NULL;
305 /* read a request from a thread */
306 void read_request( struct thread *thread )
308 int ret;
310 if (!thread->req_toread) /* no pending request */
312 if ((ret = read( get_unix_fd( thread->request_fd ), &thread->req,
313 sizeof(thread->req) )) != sizeof(thread->req)) goto error;
314 if (!(thread->req_toread = thread->req.request_header.request_size))
316 /* no data, handle request at once */
317 call_req_handler( thread );
318 return;
320 if (!(thread->req_data = malloc( thread->req_toread )))
321 fatal_protocol_error( thread, "no memory for %d bytes request\n", thread->req_toread );
324 /* read the variable sized data */
325 for (;;)
327 ret = read( get_unix_fd( thread->request_fd ),
328 (char *)thread->req_data + thread->req.request_header.request_size
329 - thread->req_toread,
330 thread->req_toread );
331 if (ret <= 0) break;
332 if (!(thread->req_toread -= ret))
334 call_req_handler( thread );
335 free( thread->req_data );
336 thread->req_data = NULL;
337 return;
341 error:
342 if (!ret) /* closed pipe */
343 kill_thread( thread, 0 );
344 else if (ret > 0)
345 fatal_protocol_error( thread, "partial read %d\n", ret );
346 else if (errno != EWOULDBLOCK && errno != EAGAIN)
347 fatal_protocol_perror( thread, "read" );
350 /* receive a file descriptor on the process socket */
351 int receive_fd( struct process *process )
353 struct send_fd data;
354 int fd, ret;
356 #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
357 msghdr.msg_accrightslen = sizeof(int);
358 msghdr.msg_accrights = (void *)&fd;
359 #else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
360 msghdr.msg_control = &cmsg;
361 msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd);
362 cmsg.fd = -1;
363 #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
365 myiovec.iov_base = (void *)&data;
366 myiovec.iov_len = sizeof(data);
368 ret = recvmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
369 #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
370 fd = cmsg.fd;
371 #endif
373 if (ret == sizeof(data))
375 struct thread *thread;
377 if (data.tid) thread = get_thread_from_id( data.tid );
378 else thread = (struct thread *)grab_object( get_process_first_thread( process ));
380 if (!thread || thread->process != process || thread->state == TERMINATED)
382 if (debug_level)
383 fprintf( stderr, "%04x: *fd* %d <- %d bad thread id\n",
384 data.tid, data.fd, fd );
385 close( fd );
387 else
389 if (debug_level)
390 fprintf( stderr, "%04x: *fd* %d <- %d\n",
391 thread->id, data.fd, fd );
392 thread_add_inflight_fd( thread, data.fd, fd );
394 if (thread) release_object( thread );
395 return 0;
398 if (!ret)
400 kill_process( process, NULL, 0 );
402 else if (ret > 0)
404 fprintf( stderr, "Protocol error: process %04x: partial recvmsg %d for fd\n",
405 process->id, ret );
406 kill_process( process, NULL, 1 );
408 else
410 if (errno != EWOULDBLOCK && errno != EAGAIN)
412 fprintf( stderr, "Protocol error: process %04x: ", process->id );
413 perror( "recvmsg" );
414 kill_process( process, NULL, 1 );
417 return -1;
420 /* send an fd to a client */
421 int send_client_fd( struct process *process, int fd, obj_handle_t handle )
423 int ret;
425 if (debug_level)
426 fprintf( stderr, "%04x: *fd* %p -> %d\n",
427 current ? current->id : process->id, handle, fd );
429 #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
430 msghdr.msg_accrightslen = sizeof(fd);
431 msghdr.msg_accrights = (void *)&fd;
432 #else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
433 msghdr.msg_control = &cmsg;
434 msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd);
435 cmsg.fd = fd;
436 #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
438 myiovec.iov_base = (void *)&handle;
439 myiovec.iov_len = sizeof(handle);
441 ret = sendmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
443 if (ret == sizeof(handle)) return 0;
445 if (ret >= 0)
447 fprintf( stderr, "Protocol error: process %04x: partial sendmsg %d\n", process->id, ret );
448 kill_process( process, NULL, 1 );
450 else if (errno == EPIPE)
452 kill_process( process, NULL, 0 );
454 else
456 fprintf( stderr, "Protocol error: process %04x: ", process->id );
457 perror( "sendmsg" );
458 kill_process( process, NULL, 1 );
460 return -1;
463 /* get current tick count to return to client */
464 unsigned int get_tick_count(void)
466 struct timeval t;
467 gettimeofday( &t, NULL );
468 return ((t.tv_sec - server_start_time) * 1000) + (t.tv_usec / 1000);
471 static void master_socket_dump( struct object *obj, int verbose )
473 struct master_socket *sock = (struct master_socket *)obj;
474 assert( obj->ops == &master_socket_ops );
475 fprintf( stderr, "Master socket fd=%p\n", sock->fd );
478 static void master_socket_destroy( struct object *obj )
480 struct master_socket *sock = (struct master_socket *)obj;
481 assert( obj->ops == &master_socket_ops );
482 release_object( sock->fd );
485 /* handle a socket event */
486 static void master_socket_poll_event( struct fd *fd, int event )
488 struct master_socket *sock = get_fd_user( fd );
489 assert( master_socket->obj.ops == &master_socket_ops );
491 assert( sock == master_socket ); /* there is only one master socket */
493 if (event & (POLLERR | POLLHUP))
495 /* this is not supposed to happen */
496 fprintf( stderr, "wineserver: Error on master socket\n" );
497 release_object( sock );
499 else if (event & POLLIN)
501 struct sockaddr_un dummy;
502 unsigned int len = sizeof(dummy);
503 int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len );
504 if (client == -1) return;
505 if (sock->timeout)
507 remove_timeout_user( sock->timeout );
508 sock->timeout = NULL;
510 fcntl( client, F_SETFL, O_NONBLOCK );
511 create_process( client );
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 = 0; i < 10; 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 sleep( 1 );
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 )))
727 fatal_error( "out of memory\n" );
728 master_socket->timeout = NULL;
729 set_fd_events( master_socket->fd, POLLIN );
730 make_object_static( &master_socket->obj );
733 /* open the master server socket and start waiting for new clients */
734 void open_master_socket(void)
736 const char *server_dir = wine_get_server_dir();
737 int fd, pid, status, sync_pipe[2];
738 char dummy;
740 /* make sure no request is larger than the maximum size */
741 assert( sizeof(union generic_request) == sizeof(struct request_max_size) );
742 assert( sizeof(union generic_reply) == sizeof(struct request_max_size) );
744 if (!server_dir) fatal_error( "directory %s cannot be accessed\n", wine_get_config_dir() );
745 create_server_dir( server_dir );
747 if (!foreground)
749 if (pipe( sync_pipe ) == -1) fatal_perror( "pipe" );
750 pid = fork();
751 switch( pid )
753 case 0: /* child */
754 setsid();
755 close( sync_pipe[0] );
757 acquire_lock();
759 /* close stdin and stdout */
760 if ((fd = open( "/dev/null", O_RDWR )) != -1)
762 dup2( fd, 0 );
763 dup2( fd, 1 );
764 close( fd );
767 /* signal parent */
768 dummy = 0;
769 write( sync_pipe[1], &dummy, 1 );
770 close( sync_pipe[1] );
771 break;
773 case -1:
774 fatal_perror( "fork" );
775 break;
777 default: /* parent */
778 close( sync_pipe[1] );
780 /* wait for child to signal us and then exit */
781 if (read( sync_pipe[0], &dummy, 1 ) == 1) _exit(0);
783 /* child terminated, propagate exit status */
784 wait4( pid, &status, 0, NULL );
785 if (WIFEXITED(status)) _exit( WEXITSTATUS(status) );
786 _exit(1);
789 else /* remain in the foreground */
791 acquire_lock();
794 /* setup msghdr structure constant fields */
795 msghdr.msg_name = NULL;
796 msghdr.msg_namelen = 0;
797 msghdr.msg_iov = &myiovec;
798 msghdr.msg_iovlen = 1;
800 /* init startup time */
801 server_start_time = time(NULL);
804 /* master socket timer expiration handler */
805 static void close_socket_timeout( void *arg )
807 master_socket->timeout = NULL;
808 flush_registry();
810 /* if a new client is waiting, we keep on running */
811 if (check_fd_events( master_socket->fd, POLLIN )) return;
813 if (debug_level) fprintf( stderr, "wineserver: exiting (pid=%ld)\n", (long) getpid() );
815 #ifdef DEBUG_OBJECTS
816 close_objects(); /* shut down everything properly */
817 #endif
818 exit(0);
821 /* close the master socket and stop waiting for new clients */
822 void close_master_socket(void)
824 struct timeval when;
826 if (master_socket_timeout == -1) return; /* just keep running forever */
828 if (master_socket_timeout)
830 gettimeofday( &when, NULL );
831 add_timeout( &when, master_socket_timeout * 1000 );
832 master_socket->timeout = add_timeout_user( &when, close_socket_timeout, NULL );
834 else close_socket_timeout( NULL ); /* close it right away */
837 /* lock/unlock the master socket to stop accepting new clients */
838 void lock_master_socket( int locked )
840 set_fd_events( master_socket->fd, locked ? 0 : POLLIN );