include: Add IPreviewHandler* interfaces.
[wine.git] / server / request.c
blob2691e0c7cff80519226e5f92dee5d66557987fdc
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"
23 #include <assert.h>
24 #include <errno.h>
25 #include <fcntl.h>
26 #ifdef HAVE_PWD_H
27 #include <pwd.h>
28 #endif
29 #include <signal.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <stdarg.h>
33 #include <string.h>
34 #include <sys/stat.h>
35 #include <sys/time.h>
36 #include <sys/types.h>
37 #include <sys/socket.h>
38 #include <sys/wait.h>
39 #ifdef HAVE_SYS_UIO_H
40 #include <sys/uio.h>
41 #endif
42 #ifdef HAVE_SYS_UN_H
43 #include <sys/un.h>
44 #endif
45 #include <unistd.h>
46 #include <poll.h>
47 #ifdef __APPLE__
48 # include <mach/mach_time.h>
49 #endif
51 #include "ntstatus.h"
52 #define WIN32_NO_STATUS
53 #include "windef.h"
54 #include "winbase.h"
55 #include "wincon.h"
56 #include "winternl.h"
58 #include "file.h"
59 #include "process.h"
60 #include "thread.h"
61 #include "security.h"
62 #include "handle.h"
63 #define WANT_REQUEST_HANDLERS
64 #include "request.h"
66 /* Some versions of glibc don't define this */
67 #ifndef SCM_RIGHTS
68 #define SCM_RIGHTS 1
69 #endif
71 /* path names for server master Unix socket */
72 static const char * const server_socket_name = "socket"; /* name of the socket file */
73 static const char * const server_lock_name = "lock"; /* name of the server lock file */
75 struct master_socket
77 struct object obj; /* object header */
78 struct fd *fd; /* file descriptor of the master socket */
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 );
85 static const struct object_ops master_socket_ops =
87 sizeof(struct master_socket), /* size */
88 &no_type, /* type */
89 master_socket_dump, /* dump */
90 no_add_queue, /* add_queue */
91 NULL, /* remove_queue */
92 NULL, /* signaled */
93 NULL, /* satisfied */
94 no_signal, /* signal */
95 no_get_fd, /* get_fd */
96 default_map_access, /* map_access */
97 default_get_sd, /* get_sd */
98 default_set_sd, /* set_sd */
99 no_get_full_name, /* get_full_name */
100 no_lookup_name, /* lookup_name */
101 no_link_name, /* link_name */
102 NULL, /* unlink_name */
103 no_open_file, /* open_file */
104 no_kernel_obj_list, /* get_kernel_obj_list */
105 no_close_handle, /* close_handle */
106 master_socket_destroy /* destroy */
109 static const struct fd_ops master_socket_fd_ops =
111 NULL, /* get_poll_events */
112 master_socket_poll_event, /* poll_event */
113 NULL, /* flush */
114 NULL, /* get_fd_type */
115 NULL, /* ioctl */
116 NULL, /* queue_async */
117 NULL /* reselect_async */
121 struct thread *current = NULL; /* thread handling the current request */
122 unsigned int global_error = 0; /* global error code for when no thread is current */
123 timeout_t server_start_time = 0; /* server startup time */
124 char *server_dir = NULL; /* server directory */
125 int server_dir_fd = -1; /* file descriptor for the server dir */
126 int config_dir_fd = -1; /* file descriptor for the config dir */
128 static struct master_socket *master_socket; /* the master socket object */
129 static struct timeout_user *master_timeout;
131 /* complain about a protocol error and terminate the client connection */
132 void fatal_protocol_error( struct thread *thread, const char *err, ... )
134 va_list args;
136 va_start( args, err );
137 fprintf( stderr, "Protocol error:%04x: ", thread->id );
138 vfprintf( stderr, err, args );
139 va_end( args );
140 thread->exit_code = 1;
141 kill_thread( thread, 1 );
144 /* die on a fatal error */
145 void fatal_error( const char *err, ... )
147 va_list args;
149 va_start( args, err );
150 fprintf( stderr, "wineserver: " );
151 vfprintf( stderr, err, args );
152 va_end( args );
153 exit(1);
156 /* allocate the reply data */
157 void *set_reply_data_size( data_size_t size )
159 assert( size <= get_reply_max_size() );
160 if (size && !(current->reply_data = mem_alloc( size ))) size = 0;
161 current->reply_size = size;
162 return current->reply_data;
165 static const struct object_attributes empty_attributes;
167 /* return object attributes from the current request */
168 const struct object_attributes *get_req_object_attributes( const struct security_descriptor **sd,
169 struct unicode_str *name,
170 struct object **root )
172 const struct object_attributes *attr = get_req_data();
173 data_size_t size = get_req_data_size();
175 if (root) *root = NULL;
177 if (!size)
179 *sd = NULL;
180 name->len = 0;
181 return &empty_attributes;
184 if ((size < sizeof(*attr)) || (size - sizeof(*attr) < attr->sd_len) ||
185 (size - sizeof(*attr) - attr->sd_len < attr->name_len))
187 set_error( STATUS_ACCESS_VIOLATION );
188 return NULL;
190 if (attr->sd_len && !sd_is_valid( (const struct security_descriptor *)(attr + 1), attr->sd_len ))
192 set_error( STATUS_INVALID_SECURITY_DESCR );
193 return NULL;
195 if ((attr->name_len & (sizeof(WCHAR) - 1)) || attr->name_len >= 65534)
197 set_error( STATUS_OBJECT_NAME_INVALID );
198 return NULL;
200 if (root && attr->rootdir && attr->name_len)
202 if (!(*root = get_handle_obj( current->process, attr->rootdir, 0, NULL ))) return NULL;
204 *sd = attr->sd_len ? (const struct security_descriptor *)(attr + 1) : NULL;
205 name->len = attr->name_len;
206 name->str = (const WCHAR *)(attr + 1) + attr->sd_len / sizeof(WCHAR);
207 return attr;
210 /* return a pointer to the request data following an object attributes structure */
211 const void *get_req_data_after_objattr( const struct object_attributes *attr, data_size_t *len )
213 data_size_t size = (sizeof(*attr) + (attr->sd_len & ~1) + (attr->name_len & ~1) + 3) & ~3;
215 if (attr == &empty_attributes || size >= get_req_data_size())
217 *len = 0;
218 return NULL;
220 *len = get_req_data_size() - size;
221 return (const char *)get_req_data() + size;
224 /* write the remaining part of the reply */
225 void write_reply( struct thread *thread )
227 int ret;
229 if ((ret = write( get_unix_fd( thread->reply_fd ),
230 (char *)thread->reply_data + thread->reply_size - thread->reply_towrite,
231 thread->reply_towrite )) >= 0)
233 if (!(thread->reply_towrite -= ret))
235 free( thread->reply_data );
236 thread->reply_data = NULL;
237 /* sent everything, can go back to waiting for requests */
238 set_fd_events( thread->request_fd, POLLIN );
239 set_fd_events( thread->reply_fd, 0 );
241 return;
243 if (errno == EPIPE)
244 kill_thread( thread, 0 ); /* normal death */
245 else if (errno != EWOULDBLOCK && (EWOULDBLOCK == EAGAIN || errno != EAGAIN))
246 fatal_protocol_error( thread, "reply write: %s\n", strerror( errno ));
249 /* send a reply to the current thread */
250 static void send_reply( union generic_reply *reply )
252 int ret;
254 if (!current->reply_size)
256 if ((ret = write( get_unix_fd( current->reply_fd ),
257 reply, sizeof(*reply) )) != sizeof(*reply)) goto error;
259 else
261 struct iovec vec[2];
263 vec[0].iov_base = (void *)reply;
264 vec[0].iov_len = sizeof(*reply);
265 vec[1].iov_base = current->reply_data;
266 vec[1].iov_len = current->reply_size;
268 if ((ret = writev( get_unix_fd( current->reply_fd ), vec, 2 )) < sizeof(*reply)) goto error;
270 if ((current->reply_towrite = current->reply_size - (ret - sizeof(*reply))))
272 /* couldn't write it all, wait for POLLOUT */
273 set_fd_events( current->reply_fd, POLLOUT );
274 set_fd_events( current->request_fd, 0 );
275 return;
278 free( current->reply_data );
279 current->reply_data = NULL;
280 return;
282 error:
283 if (ret >= 0)
284 fatal_protocol_error( current, "partial write %d\n", ret );
285 else if (errno == EPIPE)
286 kill_thread( current, 0 ); /* normal death */
287 else
288 fatal_protocol_error( current, "reply write: %s\n", strerror( errno ));
291 /* call a request handler */
292 static void call_req_handler( struct thread *thread )
294 union generic_reply reply;
295 enum request req = thread->req.request_header.req;
297 current = thread;
298 current->reply_size = 0;
299 clear_error();
300 memset( &reply, 0, sizeof(reply) );
302 if (debug_level) trace_request();
304 if (req < REQ_NB_REQUESTS)
305 req_handlers[req]( &current->req, &reply );
306 else
307 set_error( STATUS_NOT_IMPLEMENTED );
309 if (current)
311 if (current->reply_fd)
313 reply.reply_header.error = current->error;
314 reply.reply_header.reply_size = current->reply_size;
315 if (debug_level) trace_reply( req, &reply );
316 send_reply( &reply );
318 else
320 current->exit_code = 1;
321 kill_thread( current, 1 ); /* no way to continue without reply fd */
324 current = NULL;
327 /* read a request from a thread */
328 void read_request( struct thread *thread )
330 int ret;
332 if (!thread->req_toread) /* no pending request */
334 if ((ret = read( get_unix_fd( thread->request_fd ), &thread->req,
335 sizeof(thread->req) )) != sizeof(thread->req)) goto error;
336 if (!(thread->req_toread = thread->req.request_header.request_size))
338 /* no data, handle request at once */
339 call_req_handler( thread );
340 return;
342 if (!(thread->req_data = malloc( thread->req_toread )))
344 fatal_protocol_error( thread, "no memory for %u bytes request %d\n",
345 thread->req_toread, thread->req.request_header.req );
346 return;
350 /* read the variable sized data */
351 for (;;)
353 ret = read( get_unix_fd( thread->request_fd ),
354 (char *)thread->req_data + thread->req.request_header.request_size
355 - thread->req_toread,
356 thread->req_toread );
357 if (ret <= 0) break;
358 if (!(thread->req_toread -= ret))
360 call_req_handler( thread );
361 free( thread->req_data );
362 thread->req_data = NULL;
363 return;
367 error:
368 if (!ret) /* closed pipe */
369 kill_thread( thread, 0 );
370 else if (ret > 0)
371 fatal_protocol_error( thread, "partial read %d\n", ret );
372 else if (errno != EWOULDBLOCK && (EWOULDBLOCK == EAGAIN || errno != EAGAIN))
373 fatal_protocol_error( thread, "read: %s\n", strerror( errno ));
376 /* receive a file descriptor on the process socket */
377 int receive_fd( struct process *process )
379 struct iovec vec;
380 struct send_fd data;
381 struct msghdr msghdr;
382 char cmsg_buffer[256];
383 int fd = -1, ret;
385 msghdr.msg_name = NULL;
386 msghdr.msg_namelen = 0;
387 msghdr.msg_iov = &vec;
388 msghdr.msg_iovlen = 1;
389 msghdr.msg_control = cmsg_buffer;
390 msghdr.msg_controllen = sizeof(cmsg_buffer);
391 msghdr.msg_flags = 0;
393 vec.iov_base = (void *)&data;
394 vec.iov_len = sizeof(data);
396 ret = recvmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
398 if (ret > 0)
400 struct cmsghdr *cmsg;
401 for (cmsg = CMSG_FIRSTHDR( &msghdr ); cmsg; cmsg = CMSG_NXTHDR( &msghdr, cmsg ))
403 if (cmsg->cmsg_level != SOL_SOCKET) continue;
404 if (cmsg->cmsg_type == SCM_RIGHTS) fd = *(int *)CMSG_DATA(cmsg);
408 if (ret == sizeof(data))
410 struct thread *thread;
412 if (data.tid) thread = get_thread_from_id( data.tid );
413 else thread = (struct thread *)grab_object( get_process_first_thread( process ));
415 if (!thread || thread->process != process || thread->state == TERMINATED)
417 if (debug_level)
418 fprintf( stderr, "%04x: *fd* %d <- %d bad thread id\n",
419 data.tid, data.fd, fd );
420 close( fd );
422 else
424 if (debug_level)
425 fprintf( stderr, "%04x: *fd* %d <- %d\n",
426 thread->id, data.fd, fd );
427 thread_add_inflight_fd( thread, data.fd, fd );
429 if (thread) release_object( thread );
430 return 0;
433 if (!ret)
435 kill_process( process, 0 );
437 else if (ret > 0)
439 fprintf( stderr, "Protocol error: process %04x: partial recvmsg %d for fd\n",
440 process->id, ret );
441 if (fd != -1) close( fd );
442 kill_process( process, 1 );
444 else
446 if (errno != EWOULDBLOCK && (EWOULDBLOCK == EAGAIN || errno != EAGAIN))
448 fprintf( stderr, "Protocol error: process %04x: ", process->id );
449 perror( "recvmsg" );
450 kill_process( process, 1 );
453 return -1;
456 /* send an fd to a client */
457 int send_client_fd( struct process *process, int fd, obj_handle_t handle )
459 struct iovec vec;
460 struct msghdr msghdr;
461 char cmsg_buffer[256];
462 struct cmsghdr *cmsg;
463 int ret;
465 msghdr.msg_name = NULL;
466 msghdr.msg_namelen = 0;
467 msghdr.msg_iov = &vec;
468 msghdr.msg_iovlen = 1;
469 msghdr.msg_control = cmsg_buffer;
470 msghdr.msg_controllen = sizeof(cmsg_buffer);
471 msghdr.msg_flags = 0;
473 vec.iov_base = (void *)&handle;
474 vec.iov_len = sizeof(handle);
476 cmsg = CMSG_FIRSTHDR( &msghdr );
477 cmsg->cmsg_len = CMSG_LEN( sizeof(fd) );
478 cmsg->cmsg_level = SOL_SOCKET;
479 cmsg->cmsg_type = SCM_RIGHTS;
480 *(int *)CMSG_DATA(cmsg) = fd;
481 msghdr.msg_controllen = cmsg->cmsg_len;
483 if (debug_level)
484 fprintf( stderr, "%04x: *fd* %04x -> %d\n", current ? current->id : process->id, handle, fd );
486 ret = sendmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
488 if (ret == sizeof(handle)) return 0;
490 if (ret >= 0)
492 fprintf( stderr, "Protocol error: process %04x: partial sendmsg %d\n", process->id, ret );
493 kill_process( process, 1 );
495 else if (errno == EPIPE)
497 kill_process( process, 0 );
499 else
501 fprintf( stderr, "Protocol error: process %04x: ", process->id );
502 perror( "sendmsg" );
503 kill_process( process, 1 );
505 return -1;
508 /* return a monotonic time counter */
509 timeout_t monotonic_counter(void)
511 #ifdef __APPLE__
512 static mach_timebase_info_data_t timebase;
514 if (!timebase.denom) mach_timebase_info( &timebase );
515 #ifdef HAVE_MACH_CONTINUOUS_TIME
516 if (&mach_continuous_time != NULL)
517 return mach_continuous_time() * timebase.numer / timebase.denom / 100;
518 #endif
519 return mach_absolute_time() * timebase.numer / timebase.denom / 100;
520 #elif defined(HAVE_CLOCK_GETTIME)
521 struct timespec ts;
522 #ifdef CLOCK_MONOTONIC_RAW
523 if (!clock_gettime( CLOCK_MONOTONIC_RAW, &ts ))
524 return (timeout_t)ts.tv_sec * TICKS_PER_SEC + ts.tv_nsec / 100;
525 #endif
526 if (!clock_gettime( CLOCK_MONOTONIC, &ts ))
527 return (timeout_t)ts.tv_sec * TICKS_PER_SEC + ts.tv_nsec / 100;
528 #endif
529 return current_time - server_start_time;
532 static void master_socket_dump( struct object *obj, int verbose )
534 struct master_socket *sock = (struct master_socket *)obj;
535 assert( obj->ops == &master_socket_ops );
536 fprintf( stderr, "Master socket fd=%p\n", sock->fd );
539 static void master_socket_destroy( struct object *obj )
541 struct master_socket *sock = (struct master_socket *)obj;
542 assert( obj->ops == &master_socket_ops );
543 release_object( sock->fd );
546 /* handle a socket event */
547 static void master_socket_poll_event( struct fd *fd, int event )
549 struct master_socket *sock = get_fd_user( fd );
550 assert( master_socket->obj.ops == &master_socket_ops );
552 assert( sock == master_socket ); /* there is only one master socket */
554 if (event & (POLLERR | POLLHUP))
556 /* this is not supposed to happen */
557 fprintf( stderr, "wineserver: Error on master socket\n" );
558 set_fd_events( sock->fd, -1 );
560 else if (event & POLLIN)
562 struct process *process;
563 struct sockaddr_un dummy;
564 socklen_t len = sizeof(dummy);
565 int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len );
566 if (client == -1) return;
567 fcntl( client, F_SETFL, O_NONBLOCK );
568 if ((process = create_process( client, NULL, 0, NULL, NULL, NULL, 0, NULL )))
570 create_thread( -1, process, NULL );
571 release_object( process );
576 /* remove the socket upon exit */
577 static void socket_cleanup(void)
579 static int do_it_once;
580 if (!do_it_once++) unlink( server_socket_name );
583 /* create a directory and check its permissions */
584 static void create_dir( const char *name, struct stat *st )
586 if (lstat( name, st ) == -1)
588 if (errno != ENOENT)
589 fatal_error( "lstat %s: %s\n", name, strerror( errno ));
590 if (mkdir( name, 0700 ) == -1 && errno != EEXIST)
591 fatal_error( "mkdir %s: %s\n", name, strerror( errno ));
592 if (lstat( name, st ) == -1)
593 fatal_error( "lstat %s: %s\n", name, strerror( errno ));
595 if (!S_ISDIR(st->st_mode)) fatal_error( "%s is not a directory\n", name );
596 if (st->st_uid != getuid()) fatal_error( "%s is not owned by you\n", name );
597 if (st->st_mode & 077) fatal_error( "%s must not be accessible by other users\n", name );
600 /* create the server directory and chdir to it */
601 static char *create_server_dir( int force )
603 const char *prefix = getenv( "WINEPREFIX" );
604 char *p, *config_dir, *base_dir;
605 struct stat st, st2;
607 /* open the configuration directory */
609 if (prefix)
611 if (!(config_dir = strdup( prefix ))) fatal_error( "out of memory\n" );
612 for (p = config_dir + strlen(config_dir); p > config_dir; p--) if (p[-1] != '/') break;
613 if (p > config_dir) *p = 0;
614 if (config_dir[0] != '/')
615 fatal_error( "invalid directory %s in WINEPREFIX: not an absolute path\n", prefix );
617 else
619 const char *home = getenv( "HOME" );
620 if (!home)
622 struct passwd *pwd = getpwuid( getuid() );
623 if (pwd) home = pwd->pw_dir;
625 if (!home) fatal_error( "could not determine your home directory\n" );
626 if (home[0] != '/') fatal_error( "your home directory %s is not an absolute path\n", home );
627 if (!(config_dir = malloc( strlen(home) + sizeof("/.wine") ))) fatal_error( "out of memory\n" );
628 strcpy( config_dir, home );
629 for (p = config_dir + strlen(config_dir); p > config_dir; p--) if (p[-1] != '/') break;
630 strcpy( p, "/.wine" );
633 if (chdir( config_dir ) == -1)
635 if (errno != ENOENT || force) fatal_error( "chdir to %s: %s\n", config_dir, strerror( errno ));
636 return NULL;
638 if ((config_dir_fd = open( ".", O_RDONLY )) == -1)
639 fatal_error( "open %s: %s\n", config_dir, strerror( errno ));
640 if (fstat( config_dir_fd, &st ) == -1)
641 fatal_error( "stat %s: %s\n", config_dir, strerror( errno ));
642 if (st.st_uid != getuid())
643 fatal_error( "%s is not owned by you\n", config_dir );
645 /* create the base directory if needed */
647 #ifdef __ANDROID__ /* there's no /tmp dir on Android */
648 if (asprintf( &base_dir, "%s/.wineserver", config_dir ) == -1)
649 fatal_error( "out of memory\n" );
650 #else
651 if (asprintf( &base_dir, "/tmp/.wine-%u", getuid() ) == -1)
652 fatal_error( "out of memory\n" );
653 #endif
654 create_dir( base_dir, &st2 );
656 /* now create the server directory */
658 if (asprintf( &server_dir, "%s/server-%llx-%llx", base_dir,
659 (unsigned long long)st.st_dev, (unsigned long long)st.st_ino ) == -1)
660 fatal_error( "out of memory\n" );
662 create_dir( server_dir, &st );
664 if (chdir( server_dir ) == -1)
665 fatal_error( "chdir %s: %s\n", server_dir, strerror( errno ));
666 if ((server_dir_fd = open( ".", O_RDONLY )) == -1)
667 fatal_error( "open %s: %s\n", server_dir, strerror( errno ));
668 if (fstat( server_dir_fd, &st2 ) == -1)
669 fatal_error( "stat %s: %s\n", server_dir, strerror( errno ));
670 if (st.st_dev != st2.st_dev || st.st_ino != st2.st_ino)
671 fatal_error( "chdir did not end up in %s\n", server_dir );
673 free( base_dir );
674 free( config_dir );
675 return server_dir;
678 /* create the lock file and return its file descriptor */
679 static int create_server_lock(void)
681 struct stat st;
682 int fd;
684 if (lstat( server_lock_name, &st ) == -1)
686 if (errno != ENOENT)
687 fatal_error( "lstat %s/%s: %s\n", server_dir, server_lock_name, strerror( errno ));
689 else
691 if (!S_ISREG(st.st_mode))
692 fatal_error( "%s/%s is not a regular file\n", server_dir, server_lock_name );
695 if ((fd = open( server_lock_name, O_CREAT|O_TRUNC|O_WRONLY, 0600 )) == -1)
696 fatal_error( "error creating %s/%s: %s\n", server_dir, server_lock_name, strerror( errno ));
697 return fd;
700 /* wait for the server lock */
701 int wait_for_lock(void)
703 int fd, r;
704 struct flock fl;
706 server_dir = create_server_dir( 0 );
707 if (!server_dir) return 0; /* no server dir, so no lock to wait on */
709 fd = create_server_lock();
711 fl.l_type = F_WRLCK;
712 fl.l_whence = SEEK_SET;
713 fl.l_start = 0;
714 fl.l_len = 1;
715 r = fcntl( fd, F_SETLKW, &fl );
716 close(fd);
718 return r;
721 /* kill the wine server holding the lock */
722 int kill_lock_owner( int sig )
724 int fd, i, ret = 0;
725 pid_t pid = 0;
726 struct flock fl;
728 server_dir = create_server_dir( 0 );
729 if (!server_dir) return 0; /* no server dir, nothing to do */
731 fd = create_server_lock();
733 for (i = 1; i <= 20; i++)
735 fl.l_type = F_WRLCK;
736 fl.l_whence = SEEK_SET;
737 fl.l_start = 0;
738 fl.l_len = 1;
739 if (fcntl( fd, F_GETLK, &fl ) == -1) goto done;
740 if (fl.l_type != F_WRLCK) goto done; /* the file is not locked */
741 if (!pid) /* first time around */
743 if (!(pid = fl.l_pid)) goto done; /* shouldn't happen */
744 if (sig == -1)
746 if (kill( pid, SIGINT ) == -1) goto done;
747 kill( pid, SIGCONT );
748 ret = 1;
750 else /* just send the specified signal and return */
752 ret = (kill( pid, sig ) != -1);
753 goto done;
756 else if (fl.l_pid != pid) goto done; /* no longer the same process */
757 usleep( 50000 * i );
759 /* waited long enough, now kill it */
760 kill( pid, SIGKILL );
762 done:
763 close( fd );
764 return ret;
767 /* acquire the main server lock */
768 static void acquire_lock(void)
770 struct sockaddr_un addr;
771 struct stat st;
772 struct flock fl;
773 int fd, slen, got_lock = 0;
775 fd = create_server_lock();
777 fl.l_type = F_WRLCK;
778 fl.l_whence = SEEK_SET;
779 fl.l_start = 0;
780 fl.l_len = 1;
781 if (fcntl( fd, F_SETLK, &fl ) != -1)
783 /* check for crashed server */
784 if (stat( server_socket_name, &st ) != -1 && /* there is a leftover socket */
785 stat( "core", &st ) != -1 && st.st_size) /* and there is a non-empty core file */
787 fprintf( stderr,
788 "Warning: a previous instance of the wine server seems to have crashed.\n"
789 "Please run 'gdb %s %s/core',\n"
790 "type 'backtrace' at the gdb prompt and report the results. Thanks.\n\n",
791 server_argv0, server_dir );
793 unlink( server_socket_name ); /* we got the lock, we can safely remove the socket */
794 got_lock = 1;
795 /* in that case we reuse fd without closing it, this ensures
796 * that we hold the lock until the process exits */
798 else
800 switch(errno)
802 case ENOLCK:
803 break;
804 case EACCES:
805 /* check whether locks work at all on this file system */
806 if (fcntl( fd, F_GETLK, &fl ) == -1) break;
807 /* fall through */
808 case EAGAIN:
809 exit(2); /* we didn't get the lock, exit with special status */
810 default:
811 fatal_error( "fcntl %s/%s: %s\n", server_dir, server_lock_name, strerror( errno ));
813 /* it seems we can't use locks on this fs, so we will use the socket existence as lock */
814 close( fd );
817 if ((fd = socket( AF_UNIX, SOCK_STREAM, 0 )) == -1) fatal_error( "socket: %s\n", strerror( errno ));
818 addr.sun_family = AF_UNIX;
819 strcpy( addr.sun_path, server_socket_name );
820 slen = sizeof(addr) - sizeof(addr.sun_path) + strlen(addr.sun_path) + 1;
821 #ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
822 addr.sun_len = slen;
823 #endif
824 if (bind( fd, (struct sockaddr *)&addr, slen ) == -1)
826 if ((errno == EEXIST) || (errno == EADDRINUSE))
828 if (got_lock)
829 fatal_error( "couldn't bind to the socket even though we hold the lock\n" );
830 exit(2); /* we didn't get the lock, exit with special status */
832 fatal_error( "bind: %s\n", strerror( errno ));
834 atexit( socket_cleanup );
835 chmod( server_socket_name, 0600 ); /* make sure no other user can connect */
836 if (listen( fd, 5 ) == -1) fatal_error( "listen: %s\n", strerror( errno ));
838 if (!(master_socket = alloc_object( &master_socket_ops )) ||
839 !(master_socket->fd = create_anonymous_fd( &master_socket_fd_ops, fd, &master_socket->obj, 0 )))
840 fatal_error( "out of memory\n" );
841 set_fd_events( master_socket->fd, POLLIN );
842 make_object_permanent( &master_socket->obj );
845 /* open the master server socket and start waiting for new clients */
846 void open_master_socket(void)
848 int fd, pid, status, sync_pipe[2];
849 char dummy;
851 /* make sure no request is larger than the maximum size */
852 assert( sizeof(union generic_request) == sizeof(struct request_max_size) );
853 assert( sizeof(union generic_reply) == sizeof(struct request_max_size) );
855 /* make sure the stdio fds are open */
856 fd = open( "/dev/null", O_RDWR );
857 while (fd >= 0 && fd <= 2) fd = dup( fd );
859 server_dir = create_server_dir( 1 );
861 if (!foreground)
863 if (pipe( sync_pipe ) == -1) fatal_error( "pipe: %s\n", strerror( errno ));
864 pid = fork();
865 switch( pid )
867 case 0: /* child */
868 setsid();
869 close( sync_pipe[0] );
871 acquire_lock();
873 /* close stdin and stdout */
874 dup2( fd, 0 );
875 dup2( fd, 1 );
877 /* signal parent */
878 dummy = 0;
879 write( sync_pipe[1], &dummy, 1 );
880 close( sync_pipe[1] );
881 break;
883 case -1:
884 fatal_error( "fork: %s\n", strerror( errno ));
885 break;
887 default: /* parent */
888 close( sync_pipe[1] );
890 /* wait for child to signal us and then exit */
891 if (read( sync_pipe[0], &dummy, 1 ) == 1) _exit(0);
893 /* child terminated, propagate exit status */
894 waitpid( pid, &status, 0 );
895 if (WIFEXITED(status)) _exit( WEXITSTATUS(status) );
896 _exit(1);
899 else /* remain in the foreground */
901 acquire_lock();
904 /* init the process tracing mechanism */
905 init_tracing_mechanism();
906 close( fd );
909 /* master socket timer expiration handler */
910 static void close_socket_timeout( void *arg )
912 master_timeout = NULL;
913 flush_registry();
914 if (debug_level) fprintf( stderr, "wineserver: exiting (pid=%ld)\n", (long) getpid() );
916 #ifdef DEBUG_OBJECTS
917 close_objects(); /* shut down everything properly */
918 #endif
919 exit( 0 );
922 /* close the master socket and stop waiting for new clients */
923 void close_master_socket( timeout_t timeout )
925 if (master_socket)
927 release_object( master_socket );
928 master_socket = NULL;
930 if (master_timeout) /* cancel previous timeout */
931 remove_timeout_user( master_timeout );
933 master_timeout = add_timeout_user( timeout, close_socket_timeout, NULL );