blob: 8a2d4fc8d8954cddf3dea70092df661052caba2e [file] [log] [blame]
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001/*
2 * Server-side request handling
3 *
4 * Copyright (C) 1998 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard767e6f61998-08-09 12:47:43 +000019 */
20
François Gouget14259412001-11-06 20:57:11 +000021#include "config.h"
Francois Gouget386cf6e2001-10-14 16:25:47 +000022#include "wine/port.h"
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000023
Alexandre Julliardaa0ebd01998-12-30 12:06:45 +000024#include <assert.h>
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000025#include <errno.h>
26#include <fcntl.h>
Steven Edwards037c8a12003-02-11 22:27:13 +000027#ifdef HAVE_PWD_H
Alexandre Julliard2fe57772000-01-25 01:40:27 +000028#include <pwd.h>
Steven Edwards037c8a12003-02-11 22:27:13 +000029#endif
Alexandre Julliard2fe57772000-01-25 01:40:27 +000030#include <signal.h>
Alexandre Julliard767e6f61998-08-09 12:47:43 +000031#include <stdio.h>
32#include <stdlib.h>
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000033#include <stdarg.h>
34#include <string.h>
Alexandre Julliard2fe57772000-01-25 01:40:27 +000035#include <sys/stat.h>
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000036#include <sys/time.h>
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000037#include <sys/types.h>
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000038#ifdef HAVE_SYS_SOCKET_H
39# include <sys/socket.h>
40#endif
Alexandre Julliard4144b5b2002-06-20 23:21:27 +000041#ifdef HAVE_SYS_WAIT_H
42# include <sys/wait.h>
43#endif
Steven Edwards037c8a12003-02-11 22:27:13 +000044#ifdef HAVE_SYS_UIO_H
Alexandre Julliard767e6f61998-08-09 12:47:43 +000045#include <sys/uio.h>
Steven Edwards037c8a12003-02-11 22:27:13 +000046#endif
47#ifdef HAVE_SYS_UN_H
Alexandre Julliard2fe57772000-01-25 01:40:27 +000048#include <sys/un.h>
Steven Edwards037c8a12003-02-11 22:27:13 +000049#endif
Alexandre Julliard767e6f61998-08-09 12:47:43 +000050#include <unistd.h>
Steven Edwards57279182005-03-04 12:38:36 +000051#ifdef HAVE_POLL_H
52#include <poll.h>
53#endif
Alexandre Julliard767e6f61998-08-09 12:47:43 +000054
Alexandre Julliard4ec9e112006-05-28 18:27:02 +020055#include "ntstatus.h"
56#define WIN32_NO_STATUS
Alexandre Julliard435e2e62002-12-10 22:56:43 +000057#include "windef.h"
Alexandre Julliard767e6f61998-08-09 12:47:43 +000058#include "winbase.h"
Alexandre Julliard4b461121999-01-31 19:04:30 +000059#include "wincon.h"
Alexandre Julliard4ec9e112006-05-28 18:27:02 +020060#include "winternl.h"
Alexandre Julliard4144b5b2002-06-20 23:21:27 +000061#include "wine/library.h"
62
Alexandre Julliard863637b2003-01-30 00:26:44 +000063#include "file.h"
Alexandre Julliard2fe57772000-01-25 01:40:27 +000064#include "process.h"
Alexandre Julliard5bc78081999-06-22 17:26:53 +000065#define WANT_REQUEST_HANDLERS
66#include "request.h"
Alexandre Julliard1dca5e22000-01-01 00:56:27 +000067
68/* Some versions of glibc don't define this */
69#ifndef SCM_RIGHTS
70#define SCM_RIGHTS 1
71#endif
72
Alexandre Julliard4144b5b2002-06-20 23:21:27 +000073/* path names for server master Unix socket */
74static const char * const server_socket_name = "socket"; /* name of the socket file */
75static const char * const server_lock_name = "lock"; /* name of the server lock file */
Alexandre Julliard2fe57772000-01-25 01:40:27 +000076
77struct master_socket
78{
Alexandre Julliarde66207e2003-02-19 00:33:32 +000079 struct object obj; /* object header */
80 struct fd *fd; /* file descriptor of the master socket */
Alexandre Julliardf5e0f0c2002-04-03 22:51:18 +000081 struct timeout_user *timeout; /* timeout on last process exit */
Alexandre Julliard2fe57772000-01-25 01:40:27 +000082};
83
84static void master_socket_dump( struct object *obj, int verbose );
Alexandre Julliarde66207e2003-02-19 00:33:32 +000085static void master_socket_destroy( struct object *obj );
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +000086static void master_socket_poll_event( struct fd *fd, int event );
Alexandre Julliard2fe57772000-01-25 01:40:27 +000087
88static const struct object_ops master_socket_ops =
89{
90 sizeof(struct master_socket), /* size */
91 master_socket_dump, /* dump */
Alexandre Julliard8382eb02007-12-05 18:16:42 +010092 no_get_type, /* get_type */
Alexandre Julliard2fe57772000-01-25 01:40:27 +000093 no_add_queue, /* add_queue */
94 NULL, /* remove_queue */
95 NULL, /* signaled */
96 NULL, /* satisfied */
Mike McCormackf92fff62005-04-24 17:35:52 +000097 no_signal, /* signal */
Alexandre Julliard863637b2003-01-30 00:26:44 +000098 no_get_fd, /* get_fd */
Alexandre Julliard28beba32005-12-12 14:57:40 +010099 no_map_access, /* map_access */
Rob Shearmanc1707d82007-10-03 13:10:37 +0100100 default_get_sd, /* get_sd */
101 default_set_sd, /* set_sd */
Vitaliy Margolenbaffcb92005-11-22 14:55:42 +0000102 no_lookup_name, /* lookup_name */
Alexandre Julliard7e71c1d2007-03-22 11:44:29 +0100103 no_open_file, /* open_file */
Alexandre Julliardb9b1ea92005-06-09 15:39:52 +0000104 no_close_handle, /* close_handle */
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000105 master_socket_destroy /* destroy */
Alexandre Julliard863637b2003-01-30 00:26:44 +0000106};
107
108static const struct fd_ops master_socket_fd_ops =
109{
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000110 NULL, /* get_poll_events */
111 master_socket_poll_event, /* poll_event */
Alexandre Julliard3f057592007-04-12 20:21:53 +0200112 NULL, /* flush */
113 NULL, /* get_fd_type */
Alexandre Julliard63571432007-04-16 14:45:03 +0200114 NULL, /* ioctl */
Alexandre Julliard3f057592007-04-12 20:21:53 +0200115 NULL, /* queue_async */
Alexandre Julliard72bff2e2007-04-10 17:07:27 +0200116 NULL, /* reselect_async */
Alexandre Julliard3f057592007-04-12 20:21:53 +0200117 NULL /* cancel_async */
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000118};
119
120
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000121struct thread *current = NULL; /* thread handling the current request */
Alexandre Julliard908464d2000-11-01 03:11:12 +0000122unsigned int global_error = 0; /* global error code for when no thread is current */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200123timeout_t server_start_time = 0; /* server startup time */
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000124
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000125static struct master_socket *master_socket; /* the master socket object */
Alexandre Julliard3a4c04d2006-08-14 20:40:31 +0200126static int force_shutdown;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000127
128/* socket communication static structures */
129static struct iovec myiovec;
Joerg Mayerabe635c2000-11-11 00:38:37 +0000130static struct msghdr msghdr;
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000131#ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000132struct cmsg_fd
133{
Alexandre Julliardcdf92942005-09-16 18:52:47 +0000134 struct
135 {
136 size_t len; /* size of structure */
137 int level; /* SOL_SOCKET */
138 int type; /* SCM_RIGHTS */
139 } header;
140 int fd; /* fd to pass */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000141};
Alexandre Julliardcdf92942005-09-16 18:52:47 +0000142static struct cmsg_fd cmsg = { { sizeof(cmsg.header) + sizeof(cmsg.fd), SOL_SOCKET, SCM_RIGHTS }, -1 };
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000143#endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000144
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000145/* complain about a protocol error and terminate the client connection */
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000146void fatal_protocol_error( struct thread *thread, const char *err, ... )
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000147{
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000148 va_list args;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000149
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000150 va_start( args, err );
Alexandre Julliard202ef692006-06-07 14:20:38 +0200151 fprintf( stderr, "Protocol error:%04x: ", thread->id );
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000152 vfprintf( stderr, err, args );
153 va_end( args );
Alexandre Julliard12f29b52000-03-17 15:16:57 +0000154 thread->exit_code = 1;
155 kill_thread( thread, 1 );
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000156}
157
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000158/* complain about a protocol error and terminate the client connection */
159void fatal_protocol_perror( struct thread *thread, const char *err, ... )
160{
161 va_list args;
162
163 va_start( args, err );
Alexandre Julliard202ef692006-06-07 14:20:38 +0200164 fprintf( stderr, "Protocol error:%04x: ", thread->id );
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000165 vfprintf( stderr, err, args );
166 perror( " " );
167 va_end( args );
168 thread->exit_code = 1;
169 kill_thread( thread, 1 );
170}
171
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000172/* die on a fatal error */
Alexandre Julliard6c8d9172000-08-26 04:40:07 +0000173void fatal_error( const char *err, ... )
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000174{
175 va_list args;
176
177 va_start( args, err );
178 fprintf( stderr, "wineserver: " );
179 vfprintf( stderr, err, args );
180 va_end( args );
181 exit(1);
182}
183
184/* die on a fatal error */
Alexandre Julliard6c8d9172000-08-26 04:40:07 +0000185void fatal_perror( const char *err, ... )
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000186{
187 va_list args;
188
189 va_start( args, err );
190 fprintf( stderr, "wineserver: " );
191 vfprintf( stderr, err, args );
192 perror( " " );
193 va_end( args );
194 exit(1);
195}
196
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000197/* allocate the reply data */
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200198void *set_reply_data_size( data_size_t size )
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000199{
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000200 assert( size <= get_reply_max_size() );
201 if (size && !(current->reply_data = mem_alloc( size ))) size = 0;
202 current->reply_size = size;
203 return current->reply_data;
204}
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000205
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000206/* write the remaining part of the reply */
207void write_reply( struct thread *thread )
208{
209 int ret;
Alexandre Julliard5bc78081999-06-22 17:26:53 +0000210
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000211 if ((ret = write( get_unix_fd( thread->reply_fd ),
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000212 (char *)thread->reply_data + thread->reply_size - thread->reply_towrite,
213 thread->reply_towrite )) >= 0)
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000214 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000215 if (!(thread->reply_towrite -= ret))
Alexandre Julliard67a74992001-02-27 02:09:16 +0000216 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000217 free( thread->reply_data );
218 thread->reply_data = NULL;
219 /* sent everything, can go back to waiting for requests */
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000220 set_fd_events( thread->request_fd, POLLIN );
221 set_fd_events( thread->reply_fd, 0 );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000222 }
223 return;
224 }
225 if (errno == EPIPE)
226 kill_thread( thread, 0 ); /* normal death */
227 else if (errno != EWOULDBLOCK && errno != EAGAIN)
228 fatal_protocol_perror( thread, "reply write" );
229}
230
231/* send a reply to the current thread */
232static void send_reply( union generic_reply *reply )
233{
234 int ret;
235
236 if (!current->reply_size)
237 {
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000238 if ((ret = write( get_unix_fd( current->reply_fd ),
239 reply, sizeof(*reply) )) != sizeof(*reply)) goto error;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000240 }
241 else
242 {
243 struct iovec vec[2];
244
Francois Gouget0763abf2002-04-01 21:08:16 +0000245 vec[0].iov_base = (void *)reply;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000246 vec[0].iov_len = sizeof(*reply);
247 vec[1].iov_base = current->reply_data;
248 vec[1].iov_len = current->reply_size;
249
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000250 if ((ret = writev( get_unix_fd( current->reply_fd ), vec, 2 )) < sizeof(*reply)) goto error;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000251
252 if ((current->reply_towrite = current->reply_size - (ret - sizeof(*reply))))
253 {
254 /* couldn't write it all, wait for POLLOUT */
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000255 set_fd_events( current->reply_fd, POLLOUT );
256 set_fd_events( current->request_fd, 0 );
Alexandre Julliard67a74992001-02-27 02:09:16 +0000257 return;
258 }
Alexandre Julliardd90e9642001-02-21 04:21:50 +0000259 }
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200260 free( current->reply_data );
261 current->reply_data = NULL;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000262 return;
263
264 error:
265 if (ret >= 0)
266 fatal_protocol_error( current, "partial write %d\n", ret );
267 else if (errno == EPIPE)
268 kill_thread( current, 0 ); /* normal death */
269 else
270 fatal_protocol_perror( current, "reply write" );
271}
272
273/* call a request handler */
274static void call_req_handler( struct thread *thread )
275{
276 union generic_reply reply;
277 enum request req = thread->req.request_header.req;
278
279 current = thread;
280 current->reply_size = 0;
281 clear_error();
282 memset( &reply, 0, sizeof(reply) );
283
284 if (debug_level) trace_request();
Alexandre Julliard67a74992001-02-27 02:09:16 +0000285
286 if (req < REQ_NB_REQUESTS)
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000287 req_handlers[req]( &current->req, &reply );
Alexandre Julliard4ec9e112006-05-28 18:27:02 +0200288 else
289 set_error( STATUS_NOT_IMPLEMENTED );
290
291 if (current)
292 {
293 if (current->reply_fd)
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000294 {
Alexandre Julliard4ec9e112006-05-28 18:27:02 +0200295 reply.reply_header.error = current->error;
296 reply.reply_header.reply_size = current->reply_size;
297 if (debug_level) trace_reply( req, &reply );
298 send_reply( &reply );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000299 }
Alexandre Julliard55586522006-06-08 10:26:02 +0200300 else
301 {
302 current->exit_code = 1;
303 kill_thread( current, 1 ); /* no way to continue without reply fd */
304 }
Alexandre Julliardebe29ef1999-06-26 08:43:26 +0000305 }
Alexandre Julliard4ec9e112006-05-28 18:27:02 +0200306 current = NULL;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000307}
308
Alexandre Julliard8859d772001-03-01 22:13:49 +0000309/* read a request from a thread */
310void read_request( struct thread *thread )
311{
Alexandre Julliard8859d772001-03-01 22:13:49 +0000312 int ret;
313
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000314 if (!thread->req_toread) /* no pending request */
Alexandre Julliard8859d772001-03-01 22:13:49 +0000315 {
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000316 if ((ret = read( get_unix_fd( thread->request_fd ), &thread->req,
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000317 sizeof(thread->req) )) != sizeof(thread->req)) goto error;
318 if (!(thread->req_toread = thread->req.request_header.request_size))
319 {
320 /* no data, handle request at once */
321 call_req_handler( thread );
322 return;
323 }
324 if (!(thread->req_data = malloc( thread->req_toread )))
Alexandre Julliard55224462006-07-27 14:39:33 +0200325 {
326 fatal_protocol_error( thread, "no memory for %u bytes request %d\n",
327 thread->req_toread, thread->req.request_header.req );
328 return;
329 }
Alexandre Julliard8859d772001-03-01 22:13:49 +0000330 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000331
332 /* read the variable sized data */
333 for (;;)
334 {
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000335 ret = read( get_unix_fd( thread->request_fd ),
336 (char *)thread->req_data + thread->req.request_header.request_size
337 - thread->req_toread,
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000338 thread->req_toread );
339 if (ret <= 0) break;
340 if (!(thread->req_toread -= ret))
341 {
342 call_req_handler( thread );
343 free( thread->req_data );
344 thread->req_data = NULL;
345 return;
346 }
347 }
348
349error:
Alexandre Julliard8859d772001-03-01 22:13:49 +0000350 if (!ret) /* closed pipe */
351 kill_thread( thread, 0 );
352 else if (ret > 0)
353 fatal_protocol_error( thread, "partial read %d\n", ret );
Alexandre Julliard4b29d662001-06-19 18:23:13 +0000354 else if (errno != EWOULDBLOCK && errno != EAGAIN)
Alexandre Julliard8859d772001-03-01 22:13:49 +0000355 fatal_protocol_perror( thread, "read" );
356}
357
Alexandre Julliardf5242402001-02-28 21:45:23 +0000358/* receive a file descriptor on the process socket */
359int receive_fd( struct process *process )
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000360{
Alexandre Julliardf5242402001-02-28 21:45:23 +0000361 struct send_fd data;
362 int fd, ret;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000363
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000364#ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000365 msghdr.msg_accrightslen = sizeof(int);
Alexandre Julliardf5242402001-02-28 21:45:23 +0000366 msghdr.msg_accrights = (void *)&fd;
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000367#else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000368 msghdr.msg_control = &cmsg;
Alexandre Julliardcdf92942005-09-16 18:52:47 +0000369 msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd);
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000370 cmsg.fd = -1;
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000371#endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000372
Francois Gouget0763abf2002-04-01 21:08:16 +0000373 myiovec.iov_base = (void *)&data;
Alexandre Julliardf5242402001-02-28 21:45:23 +0000374 myiovec.iov_len = sizeof(data);
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000375
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000376 ret = recvmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000377#ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
Alexandre Julliardf5242402001-02-28 21:45:23 +0000378 fd = cmsg.fd;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000379#endif
380
Alexandre Julliardf5242402001-02-28 21:45:23 +0000381 if (ret == sizeof(data))
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000382 {
Alexandre Julliard8859d772001-03-01 22:13:49 +0000383 struct thread *thread;
384
385 if (data.tid) thread = get_thread_from_id( data.tid );
Alexandre Julliard05026382005-03-01 10:56:18 +0000386 else thread = (struct thread *)grab_object( get_process_first_thread( process ));
Alexandre Julliard8859d772001-03-01 22:13:49 +0000387
Alexandre Julliard714156d2002-08-13 18:24:27 +0000388 if (!thread || thread->process != process || thread->state == TERMINATED)
Alexandre Julliardf5242402001-02-28 21:45:23 +0000389 {
390 if (debug_level)
Alexandre Julliard91befe12003-02-01 01:38:40 +0000391 fprintf( stderr, "%04x: *fd* %d <- %d bad thread id\n",
392 data.tid, data.fd, fd );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000393 close( fd );
394 }
395 else
396 {
397 if (debug_level)
Alexandre Julliard91befe12003-02-01 01:38:40 +0000398 fprintf( stderr, "%04x: *fd* %d <- %d\n",
399 thread->id, data.fd, fd );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000400 thread_add_inflight_fd( thread, data.fd, fd );
401 }
Alexandre Julliard8859d772001-03-01 22:13:49 +0000402 if (thread) release_object( thread );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000403 return 0;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000404 }
Alexandre Julliardf5242402001-02-28 21:45:23 +0000405
Alexandre Julliard0a364622006-03-27 12:14:24 +0200406 if (!ret)
Alexandre Julliardf5242402001-02-28 21:45:23 +0000407 {
Alexandre Julliard81977b72006-09-21 11:14:45 +0200408 kill_process( process, 0 );
Alexandre Julliard0a364622006-03-27 12:14:24 +0200409 }
410 else if (ret > 0)
411 {
Alexandre Julliard202ef692006-06-07 14:20:38 +0200412 fprintf( stderr, "Protocol error: process %04x: partial recvmsg %d for fd\n",
413 process->id, ret );
Alexandre Julliard81977b72006-09-21 11:14:45 +0200414 kill_process( process, 1 );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000415 }
Alexandre Julliard8859d772001-03-01 22:13:49 +0000416 else
Alexandre Julliardf5242402001-02-28 21:45:23 +0000417 {
418 if (errno != EWOULDBLOCK && errno != EAGAIN)
419 {
Alexandre Julliard202ef692006-06-07 14:20:38 +0200420 fprintf( stderr, "Protocol error: process %04x: ", process->id );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000421 perror( "recvmsg" );
Alexandre Julliard81977b72006-09-21 11:14:45 +0200422 kill_process( process, 1 );
Alexandre Julliardf5242402001-02-28 21:45:23 +0000423 }
424 }
425 return -1;
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000426}
427
Alexandre Julliardd549f692000-12-22 02:04:15 +0000428/* send an fd to a client */
Alexandre Julliard51885742002-05-30 20:12:58 +0000429int send_client_fd( struct process *process, int fd, obj_handle_t handle )
Alexandre Julliardd549f692000-12-22 02:04:15 +0000430{
431 int ret;
432
Alexandre Julliard63411db2000-12-22 21:12:36 +0000433 if (debug_level)
Alexandre Julliard91befe12003-02-01 01:38:40 +0000434 fprintf( stderr, "%04x: *fd* %p -> %d\n",
435 current ? current->id : process->id, handle, fd );
Alexandre Julliard63411db2000-12-22 21:12:36 +0000436
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000437#ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS
Alexandre Julliardd549f692000-12-22 02:04:15 +0000438 msghdr.msg_accrightslen = sizeof(fd);
439 msghdr.msg_accrights = (void *)&fd;
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000440#else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
Alexandre Julliardd549f692000-12-22 02:04:15 +0000441 msghdr.msg_control = &cmsg;
Alexandre Julliardcdf92942005-09-16 18:52:47 +0000442 msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd);
Alexandre Julliardd549f692000-12-22 02:04:15 +0000443 cmsg.fd = fd;
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000444#endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */
Alexandre Julliardd549f692000-12-22 02:04:15 +0000445
446 myiovec.iov_base = (void *)&handle;
447 myiovec.iov_len = sizeof(handle);
448
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000449 ret = sendmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 );
Alexandre Julliardd549f692000-12-22 02:04:15 +0000450
Alexandre Julliard8859d772001-03-01 22:13:49 +0000451 if (ret == sizeof(handle)) return 0;
452
453 if (ret >= 0)
Alexandre Julliardd549f692000-12-22 02:04:15 +0000454 {
Alexandre Julliard202ef692006-06-07 14:20:38 +0200455 fprintf( stderr, "Protocol error: process %04x: partial sendmsg %d\n", process->id, ret );
Alexandre Julliard81977b72006-09-21 11:14:45 +0200456 kill_process( process, 1 );
Alexandre Julliardd549f692000-12-22 02:04:15 +0000457 }
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000458 else if (errno == EPIPE)
459 {
Alexandre Julliard81977b72006-09-21 11:14:45 +0200460 kill_process( process, 0 );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000461 }
Alexandre Julliardd549f692000-12-22 02:04:15 +0000462 else
463 {
Alexandre Julliard202ef692006-06-07 14:20:38 +0200464 fprintf( stderr, "Protocol error: process %04x: ", process->id );
Alexandre Julliard8859d772001-03-01 22:13:49 +0000465 perror( "sendmsg" );
Alexandre Julliard81977b72006-09-21 11:14:45 +0200466 kill_process( process, 1 );
Alexandre Julliardd549f692000-12-22 02:04:15 +0000467 }
468 return -1;
469}
470
Alexandre Julliard516e40e2001-10-17 17:48:49 +0000471/* get current tick count to return to client */
472unsigned int get_tick_count(void)
473{
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200474 return (current_time - server_start_time) / 10000;
Alexandre Julliard516e40e2001-10-17 17:48:49 +0000475}
476
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000477static void master_socket_dump( struct object *obj, int verbose )
Alexandre Julliard338e7571998-12-27 15:28:54 +0000478{
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000479 struct master_socket *sock = (struct master_socket *)obj;
480 assert( obj->ops == &master_socket_ops );
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000481 fprintf( stderr, "Master socket fd=%p\n", sock->fd );
482}
483
484static void master_socket_destroy( struct object *obj )
485{
486 struct master_socket *sock = (struct master_socket *)obj;
487 assert( obj->ops == &master_socket_ops );
488 release_object( sock->fd );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000489}
490
491/* handle a socket event */
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000492static void master_socket_poll_event( struct fd *fd, int event )
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000493{
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +0000494 struct master_socket *sock = get_fd_user( fd );
495 assert( master_socket->obj.ops == &master_socket_ops );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000496
497 assert( sock == master_socket ); /* there is only one master socket */
498
499 if (event & (POLLERR | POLLHUP))
500 {
501 /* this is not supposed to happen */
502 fprintf( stderr, "wineserver: Error on master socket\n" );
Alexandre Julliard3a4c04d2006-08-14 20:40:31 +0200503 set_fd_events( sock->fd, -1 );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000504 }
505 else if (event & POLLIN)
506 {
507 struct sockaddr_un dummy;
Mike McCormacke659f1e2005-08-09 10:37:50 +0000508 unsigned int len = sizeof(dummy);
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000509 int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len );
Alexandre Julliard09cc91d2001-04-04 00:11:13 +0000510 if (client == -1) return;
Alexandre Julliardf5e0f0c2002-04-03 22:51:18 +0000511 if (sock->timeout)
512 {
513 remove_timeout_user( sock->timeout );
514 sock->timeout = NULL;
515 }
Alexandre Julliard09cc91d2001-04-04 00:11:13 +0000516 fcntl( client, F_SETFL, O_NONBLOCK );
Alexandre Julliardc316f0e2006-07-19 14:00:10 +0200517 create_process( client, NULL, 0 );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000518 }
519}
520
521/* remove the socket upon exit */
522static void socket_cleanup(void)
523{
Alexandre Julliardc10c9ef2000-08-11 21:16:53 +0000524 static int do_it_once;
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000525 if (!do_it_once++) unlink( server_socket_name );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000526}
527
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000528/* create a directory and check its permissions */
529static void create_dir( const char *name, struct stat *st )
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000530{
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000531 if (lstat( name, st ) == -1)
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000532 {
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000533 if (errno != ENOENT) fatal_perror( "lstat %s", name );
Francois Gouget10e3d962005-03-01 11:00:06 +0000534 if (mkdir( name, 0700 ) == -1 && errno != EEXIST) fatal_perror( "mkdir %s", name );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000535 if (lstat( name, st ) == -1) fatal_perror( "lstat %s", name );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000536 }
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000537 if (!S_ISDIR(st->st_mode)) fatal_error( "%s is not a directory\n", name );
538 if (st->st_uid != getuid()) fatal_error( "%s is not owned by you\n", name );
539 if (st->st_mode & 077) fatal_error( "%s must not be accessible by other users\n", name );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000540}
541
542/* create the server directory and chdir to it */
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200543static void create_server_dir( const char *dir )
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000544{
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000545 char *p, *server_dir;
546 struct stat st, st2;
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000547
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200548 if (!(server_dir = strdup( dir ))) fatal_error( "out of memory\n" );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000549
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000550 /* first create the base directory if needed */
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000551
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000552 p = strrchr( server_dir, '/' );
553 *p = 0;
554 create_dir( server_dir, &st );
Alexandre Julliardb8dd37d2001-08-09 21:22:33 +0000555
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000556 /* now create the server directory */
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000557
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000558 *p = '/';
559 create_dir( server_dir, &st );
560
561 if (chdir( server_dir ) == -1) fatal_perror( "chdir %s", server_dir );
562 if (stat( ".", &st2 ) == -1) fatal_perror( "stat %s", server_dir );
563 if (st.st_dev != st2.st_dev || st.st_ino != st2.st_ino)
564 fatal_error( "chdir did not end up in %s\n", server_dir );
565
566 free( server_dir );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000567}
568
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000569/* create the lock file and return its file descriptor */
570static int create_server_lock(void)
571{
572 struct stat st;
573 int fd;
574
575 if (lstat( server_lock_name, &st ) == -1)
576 {
577 if (errno != ENOENT)
578 fatal_perror( "lstat %s/%s", wine_get_server_dir(), server_lock_name );
579 }
580 else
581 {
582 if (!S_ISREG(st.st_mode))
583 fatal_error( "%s/%s is not a regular file\n", wine_get_server_dir(), server_lock_name );
584 }
585
586 if ((fd = open( server_lock_name, O_CREAT|O_TRUNC|O_WRONLY, 0600 )) == -1)
587 fatal_perror( "error creating %s/%s", wine_get_server_dir(), server_lock_name );
588 return fd;
589}
590
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000591/* wait for the server lock */
592int wait_for_lock(void)
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000593{
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200594 const char *server_dir = wine_get_server_dir();
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000595 int fd, r;
596 struct flock fl;
Alexandre Julliard0b6a79c2000-12-15 20:57:00 +0000597
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200598 if (!server_dir) return 0; /* no server dir, so no lock to wait on */
599
600 create_server_dir( server_dir );
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000601 fd = create_server_lock();
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000602
603 fl.l_type = F_WRLCK;
604 fl.l_whence = SEEK_SET;
605 fl.l_start = 0;
606 fl.l_len = 1;
607 r = fcntl( fd, F_SETLKW, &fl );
608 close(fd);
609
610 return r;
611}
612
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000613/* kill the wine server holding the lock */
614int kill_lock_owner( int sig )
615{
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200616 const char *server_dir = wine_get_server_dir();
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000617 int fd, i, ret = 0;
618 pid_t pid = 0;
619 struct flock fl;
620
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200621 if (!server_dir) return 0; /* no server dir, nothing to do */
622
623 create_server_dir( server_dir );
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000624 fd = create_server_lock();
625
626 for (i = 0; i < 10; i++)
627 {
628 fl.l_type = F_WRLCK;
629 fl.l_whence = SEEK_SET;
630 fl.l_start = 0;
631 fl.l_len = 1;
632 if (fcntl( fd, F_GETLK, &fl ) == -1) goto done;
633 if (fl.l_type != F_WRLCK) goto done; /* the file is not locked */
634 if (!pid) /* first time around */
635 {
636 if (!(pid = fl.l_pid)) goto done; /* shouldn't happen */
637 if (sig == -1)
638 {
639 if (kill( pid, SIGINT ) == -1) goto done;
640 kill( pid, SIGCONT );
641 ret = 1;
642 }
643 else /* just send the specified signal and return */
644 {
645 ret = (kill( pid, sig ) != -1);
646 goto done;
647 }
648 }
649 else if (fl.l_pid != pid) goto done; /* no longer the same process */
650 sleep( 1 );
651 }
652 /* waited long enough, now kill it */
653 kill( pid, SIGKILL );
654
655 done:
656 close( fd );
657 return ret;
658}
659
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000660/* acquire the main server lock */
661static void acquire_lock(void)
662{
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000663 struct sockaddr_un addr;
664 struct stat st;
665 struct flock fl;
666 int fd, slen, got_lock = 0;
667
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000668 fd = create_server_lock();
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000669
670 fl.l_type = F_WRLCK;
671 fl.l_whence = SEEK_SET;
672 fl.l_start = 0;
673 fl.l_len = 1;
674 if (fcntl( fd, F_SETLK, &fl ) != -1)
675 {
676 /* check for crashed server */
677 if (stat( server_socket_name, &st ) != -1 && /* there is a leftover socket */
678 stat( "core", &st ) != -1 && st.st_size) /* and there is a non-empty core file */
679 {
680 fprintf( stderr,
681 "Warning: a previous instance of the wine server seems to have crashed.\n"
682 "Please run 'gdb %s %s/core',\n"
683 "type 'backtrace' at the gdb prompt and report the results. Thanks.\n\n",
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000684 server_argv0, wine_get_server_dir() );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000685 }
686 unlink( server_socket_name ); /* we got the lock, we can safely remove the socket */
687 got_lock = 1;
688 /* in that case we reuse fd without closing it, this ensures
689 * that we hold the lock until the process exits */
690 }
691 else
692 {
693 switch(errno)
694 {
695 case ENOLCK:
696 break;
697 case EACCES:
698 /* check whether locks work at all on this file system */
699 if (fcntl( fd, F_GETLK, &fl ) == -1) break;
700 /* fall through */
701 case EAGAIN:
702 exit(2); /* we didn't get the lock, exit with special status */
703 default:
Alexandre Julliard40043ed2002-08-16 20:02:15 +0000704 fatal_perror( "fcntl %s/%s", wine_get_server_dir(), server_lock_name );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000705 }
706 /* it seems we can't use locks on this fs, so we will use the socket existence as lock */
707 close( fd );
708 }
709
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000710 if ((fd = socket( AF_UNIX, SOCK_STREAM, 0 )) == -1) fatal_perror( "socket" );
711 addr.sun_family = AF_UNIX;
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000712 strcpy( addr.sun_path, server_socket_name );
Juergen Lock2d33ab92000-02-13 16:03:29 +0000713 slen = sizeof(addr) - sizeof(addr.sun_path) + strlen(addr.sun_path) + 1;
Alexandre Julliard5537dbb2003-03-28 00:36:12 +0000714#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
Juergen Lock2d33ab92000-02-13 16:03:29 +0000715 addr.sun_len = slen;
716#endif
717 if (bind( fd, (struct sockaddr *)&addr, slen ) == -1)
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000718 {
719 if ((errno == EEXIST) || (errno == EADDRINUSE))
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000720 {
721 if (got_lock)
722 fatal_error( "couldn't bind to the socket even though we hold the lock\n" );
723 exit(2); /* we didn't get the lock, exit with special status */
724 }
725 fatal_perror( "bind" );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000726 }
727 atexit( socket_cleanup );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000728 chmod( server_socket_name, 0600 ); /* make sure no other user can connect */
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000729 if (listen( fd, 5 ) == -1) fatal_perror( "listen" );
730
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000731 if (!(master_socket = alloc_object( &master_socket_ops )) ||
Alexandre Julliardf85437c2007-04-10 22:25:07 +0200732 !(master_socket->fd = create_anonymous_fd( &master_socket_fd_ops, fd, &master_socket->obj, 0 )))
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000733 fatal_error( "out of memory\n" );
Alexandre Julliardf5e0f0c2002-04-03 22:51:18 +0000734 master_socket->timeout = NULL;
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000735 set_fd_events( master_socket->fd, POLLIN );
Alexandre Julliardb00fb172006-03-22 20:32:04 +0100736 make_object_static( &master_socket->obj );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000737}
738
739/* open the master server socket and start waiting for new clients */
740void open_master_socket(void)
741{
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200742 const char *server_dir = wine_get_server_dir();
Alexandre Julliard7ad5be92003-03-14 04:08:42 +0000743 int fd, pid, status, sync_pipe[2];
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000744 char dummy;
745
746 /* make sure no request is larger than the maximum size */
747 assert( sizeof(union generic_request) == sizeof(struct request_max_size) );
748 assert( sizeof(union generic_reply) == sizeof(struct request_max_size) );
749
Alexandre Julliardc5c599d2006-03-31 13:06:04 +0200750 if (!server_dir) fatal_error( "directory %s cannot be accessed\n", wine_get_config_dir() );
751 create_server_dir( server_dir );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000752
Alexandre Julliard7ad5be92003-03-14 04:08:42 +0000753 if (!foreground)
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000754 {
Alexandre Julliard7ad5be92003-03-14 04:08:42 +0000755 if (pipe( sync_pipe ) == -1) fatal_perror( "pipe" );
756 pid = fork();
757 switch( pid )
758 {
759 case 0: /* child */
760 setsid();
761 close( sync_pipe[0] );
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000762
Alexandre Julliard7ad5be92003-03-14 04:08:42 +0000763 acquire_lock();
764
765 /* close stdin and stdout */
766 if ((fd = open( "/dev/null", O_RDWR )) != -1)
767 {
768 dup2( fd, 0 );
769 dup2( fd, 1 );
770 close( fd );
771 }
772
773 /* signal parent */
Eric Pouech2e0b5332006-01-27 16:17:51 +0100774 dummy = 0;
Alexandre Julliard7ad5be92003-03-14 04:08:42 +0000775 write( sync_pipe[1], &dummy, 1 );
776 close( sync_pipe[1] );
777 break;
778
779 case -1:
780 fatal_perror( "fork" );
781 break;
782
783 default: /* parent */
784 close( sync_pipe[1] );
785
786 /* wait for child to signal us and then exit */
787 if (read( sync_pipe[0], &dummy, 1 ) == 1) _exit(0);
788
789 /* child terminated, propagate exit status */
790 wait4( pid, &status, 0, NULL );
791 if (WIFEXITED(status)) _exit( WEXITSTATUS(status) );
792 _exit(1);
793 }
794 }
795 else /* remain in the foreground */
796 {
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000797 acquire_lock();
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000798 }
Alexandre Julliardd8041112000-04-14 14:42:41 +0000799
Joerg Mayerabe635c2000-11-11 00:38:37 +0000800 /* setup msghdr structure constant fields */
801 msghdr.msg_name = NULL;
802 msghdr.msg_namelen = 0;
803 msghdr.msg_iov = &myiovec;
804 msghdr.msg_iovlen = 1;
805
Alexandre Julliardcd1c7fc2006-12-29 16:56:11 +0100806 /* init the process tracing mechanism */
807 init_tracing_mechanism();
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000808}
809
Alexandre Julliardf5e0f0c2002-04-03 22:51:18 +0000810/* master socket timer expiration handler */
811static void close_socket_timeout( void *arg )
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000812{
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000813 master_socket->timeout = NULL;
814 flush_registry();
815
Alexandre Julliardc10c9ef2000-08-11 21:16:53 +0000816 /* if a new client is waiting, we keep on running */
Alexandre Julliard3a4c04d2006-08-14 20:40:31 +0200817 if (!force_shutdown && check_fd_events( master_socket->fd, POLLIN )) return;
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000818
819 if (debug_level) fprintf( stderr, "wineserver: exiting (pid=%ld)\n", (long) getpid() );
820
821#ifdef DEBUG_OBJECTS
Alexandre Julliardb00fb172006-03-22 20:32:04 +0100822 close_objects(); /* shut down everything properly */
Alexandre Julliard4144b5b2002-06-20 23:21:27 +0000823#endif
Alexandre Julliard3a4c04d2006-08-14 20:40:31 +0200824 exit( force_shutdown );
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000825}
826
Alexandre Julliardf5e0f0c2002-04-03 22:51:18 +0000827/* close the master socket and stop waiting for new clients */
828void close_master_socket(void)
829{
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200830 if (master_socket_timeout == TIMEOUT_INFINITE) return; /* just keep running forever */
Alexandre Julliardf5e0f0c2002-04-03 22:51:18 +0000831
832 if (master_socket_timeout)
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200833 master_socket->timeout = add_timeout_user( master_socket_timeout, close_socket_timeout, NULL );
834 else
835 close_socket_timeout( NULL ); /* close it right away */
Alexandre Julliardf5e0f0c2002-04-03 22:51:18 +0000836}
837
Alexandre Julliard3a4c04d2006-08-14 20:40:31 +0200838/* forced shutdown, used for wineserver -k */
839void shutdown_master_socket(void)
Alexandre Julliard2fe57772000-01-25 01:40:27 +0000840{
Alexandre Julliard3a4c04d2006-08-14 20:40:31 +0200841 force_shutdown = 1;
842 master_socket_timeout = 0;
843 if (master_socket->timeout)
844 {
845 remove_timeout_user( master_socket->timeout );
846 close_socket_timeout( NULL );
847 }
848 set_fd_events( master_socket->fd, -1 ); /* stop waiting for new clients */
Alexandre Julliard338e7571998-12-27 15:28:54 +0000849}