Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Server-side request handling |
| 3 | * |
| 4 | * Copyright (C) 1998 Alexandre Julliard |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 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 |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
François Gouget | 1425941 | 2001-11-06 20:57:11 +0000 | [diff] [blame] | 21 | #include "config.h" |
Francois Gouget | 386cf6e | 2001-10-14 16:25:47 +0000 | [diff] [blame] | 22 | #include "wine/port.h" |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 23 | |
Alexandre Julliard | aa0ebd0 | 1998-12-30 12:06:45 +0000 | [diff] [blame] | 24 | #include <assert.h> |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 25 | #include <errno.h> |
| 26 | #include <fcntl.h> |
Steven Edwards | 037c8a1 | 2003-02-11 22:27:13 +0000 | [diff] [blame] | 27 | #ifdef HAVE_PWD_H |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 28 | #include <pwd.h> |
Steven Edwards | 037c8a1 | 2003-02-11 22:27:13 +0000 | [diff] [blame] | 29 | #endif |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 30 | #include <signal.h> |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 31 | #include <stdio.h> |
| 32 | #include <stdlib.h> |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 33 | #include <stdarg.h> |
| 34 | #include <string.h> |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 35 | #include <sys/stat.h> |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 36 | #include <sys/time.h> |
Alexandre Julliard | 85ed45e | 1998-08-22 19:03:56 +0000 | [diff] [blame] | 37 | #include <sys/types.h> |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 38 | #ifdef HAVE_SYS_SOCKET_H |
| 39 | # include <sys/socket.h> |
| 40 | #endif |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 41 | #ifdef HAVE_SYS_WAIT_H |
| 42 | # include <sys/wait.h> |
| 43 | #endif |
Steven Edwards | 037c8a1 | 2003-02-11 22:27:13 +0000 | [diff] [blame] | 44 | #ifdef HAVE_SYS_UIO_H |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 45 | #include <sys/uio.h> |
Steven Edwards | 037c8a1 | 2003-02-11 22:27:13 +0000 | [diff] [blame] | 46 | #endif |
| 47 | #ifdef HAVE_SYS_UN_H |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 48 | #include <sys/un.h> |
Steven Edwards | 037c8a1 | 2003-02-11 22:27:13 +0000 | [diff] [blame] | 49 | #endif |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 50 | #include <unistd.h> |
Steven Edwards | 5727918 | 2005-03-04 12:38:36 +0000 | [diff] [blame] | 51 | #ifdef HAVE_POLL_H |
| 52 | #include <poll.h> |
| 53 | #endif |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 54 | |
Alexandre Julliard | 4ec9e11 | 2006-05-28 18:27:02 +0200 | [diff] [blame] | 55 | #include "ntstatus.h" |
| 56 | #define WIN32_NO_STATUS |
Alexandre Julliard | 435e2e6 | 2002-12-10 22:56:43 +0000 | [diff] [blame] | 57 | #include "windef.h" |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 58 | #include "winbase.h" |
Alexandre Julliard | 4b46112 | 1999-01-31 19:04:30 +0000 | [diff] [blame] | 59 | #include "wincon.h" |
Alexandre Julliard | 4ec9e11 | 2006-05-28 18:27:02 +0200 | [diff] [blame] | 60 | #include "winternl.h" |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 61 | #include "wine/library.h" |
| 62 | |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 63 | #include "file.h" |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 64 | #include "process.h" |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 65 | #define WANT_REQUEST_HANDLERS |
| 66 | #include "request.h" |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 67 | |
| 68 | /* Some versions of glibc don't define this */ |
| 69 | #ifndef SCM_RIGHTS |
| 70 | #define SCM_RIGHTS 1 |
| 71 | #endif |
| 72 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 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 */ |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 76 | |
| 77 | struct master_socket |
| 78 | { |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 79 | struct object obj; /* object header */ |
| 80 | struct fd *fd; /* file descriptor of the master socket */ |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | static void master_socket_dump( struct object *obj, int verbose ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 84 | static void master_socket_destroy( struct object *obj ); |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 85 | static void master_socket_poll_event( struct fd *fd, int event ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 86 | |
| 87 | static const struct object_ops master_socket_ops = |
| 88 | { |
| 89 | sizeof(struct master_socket), /* size */ |
| 90 | master_socket_dump, /* dump */ |
Alexandre Julliard | 8382eb0 | 2007-12-05 18:16:42 +0100 | [diff] [blame] | 91 | no_get_type, /* get_type */ |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 92 | no_add_queue, /* add_queue */ |
| 93 | NULL, /* remove_queue */ |
| 94 | NULL, /* signaled */ |
| 95 | NULL, /* satisfied */ |
Mike McCormack | f92fff6 | 2005-04-24 17:35:52 +0000 | [diff] [blame] | 96 | no_signal, /* signal */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 97 | no_get_fd, /* get_fd */ |
Alexandre Julliard | 28beba3 | 2005-12-12 14:57:40 +0100 | [diff] [blame] | 98 | no_map_access, /* map_access */ |
Rob Shearman | c1707d8 | 2007-10-03 13:10:37 +0100 | [diff] [blame] | 99 | default_get_sd, /* get_sd */ |
| 100 | default_set_sd, /* set_sd */ |
Vitaliy Margolen | baffcb9 | 2005-11-22 14:55:42 +0000 | [diff] [blame] | 101 | no_lookup_name, /* lookup_name */ |
Alexandre Julliard | 7e71c1d | 2007-03-22 11:44:29 +0100 | [diff] [blame] | 102 | no_open_file, /* open_file */ |
Alexandre Julliard | b9b1ea9 | 2005-06-09 15:39:52 +0000 | [diff] [blame] | 103 | no_close_handle, /* close_handle */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 104 | master_socket_destroy /* destroy */ |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | static const struct fd_ops master_socket_fd_ops = |
| 108 | { |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 109 | NULL, /* get_poll_events */ |
| 110 | master_socket_poll_event, /* poll_event */ |
Alexandre Julliard | 3f05759 | 2007-04-12 20:21:53 +0200 | [diff] [blame] | 111 | NULL, /* flush */ |
| 112 | NULL, /* get_fd_type */ |
Alexandre Julliard | 6357143 | 2007-04-16 14:45:03 +0200 | [diff] [blame] | 113 | NULL, /* ioctl */ |
Alexandre Julliard | 3f05759 | 2007-04-12 20:21:53 +0200 | [diff] [blame] | 114 | NULL, /* queue_async */ |
Alexandre Julliard | 72bff2e | 2007-04-10 17:07:27 +0200 | [diff] [blame] | 115 | NULL, /* reselect_async */ |
Alexandre Julliard | 3f05759 | 2007-04-12 20:21:53 +0200 | [diff] [blame] | 116 | NULL /* cancel_async */ |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 117 | }; |
| 118 | |
| 119 | |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 120 | struct thread *current = NULL; /* thread handling the current request */ |
Alexandre Julliard | 908464d | 2000-11-01 03:11:12 +0000 | [diff] [blame] | 121 | unsigned int global_error = 0; /* global error code for when no thread is current */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 122 | timeout_t server_start_time = 0; /* server startup time */ |
Alexandre Julliard | 161160f | 2008-04-17 12:41:34 +0200 | [diff] [blame] | 123 | int server_dir_fd = -1; /* file descriptor for the server dir */ |
| 124 | int config_dir_fd = -1; /* file descriptor for the config dir */ |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 125 | |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 126 | static struct master_socket *master_socket; /* the master socket object */ |
Alexandre Julliard | af268c6 | 2008-01-02 16:16:00 +0100 | [diff] [blame] | 127 | static struct timeout_user *master_timeout; |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 128 | |
| 129 | /* socket communication static structures */ |
| 130 | static struct iovec myiovec; |
Joerg Mayer | abe635c | 2000-11-11 00:38:37 +0000 | [diff] [blame] | 131 | static struct msghdr msghdr; |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 132 | #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 133 | struct cmsg_fd |
| 134 | { |
Alexandre Julliard | cdf9294 | 2005-09-16 18:52:47 +0000 | [diff] [blame] | 135 | struct |
| 136 | { |
| 137 | size_t len; /* size of structure */ |
| 138 | int level; /* SOL_SOCKET */ |
| 139 | int type; /* SCM_RIGHTS */ |
| 140 | } header; |
| 141 | int fd; /* fd to pass */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 142 | }; |
Alexandre Julliard | cdf9294 | 2005-09-16 18:52:47 +0000 | [diff] [blame] | 143 | static struct cmsg_fd cmsg = { { sizeof(cmsg.header) + sizeof(cmsg.fd), SOL_SOCKET, SCM_RIGHTS }, -1 }; |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 144 | #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 145 | |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 146 | /* complain about a protocol error and terminate the client connection */ |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 147 | void fatal_protocol_error( struct thread *thread, const char *err, ... ) |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 148 | { |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 149 | va_list args; |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 150 | |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 151 | va_start( args, err ); |
Alexandre Julliard | 202ef69 | 2006-06-07 14:20:38 +0200 | [diff] [blame] | 152 | fprintf( stderr, "Protocol error:%04x: ", thread->id ); |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 153 | vfprintf( stderr, err, args ); |
| 154 | va_end( args ); |
Alexandre Julliard | 12f29b5 | 2000-03-17 15:16:57 +0000 | [diff] [blame] | 155 | thread->exit_code = 1; |
| 156 | kill_thread( thread, 1 ); |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Alexandre Julliard | d90e964 | 2001-02-21 04:21:50 +0000 | [diff] [blame] | 159 | /* complain about a protocol error and terminate the client connection */ |
| 160 | void fatal_protocol_perror( struct thread *thread, const char *err, ... ) |
| 161 | { |
| 162 | va_list args; |
| 163 | |
| 164 | va_start( args, err ); |
Alexandre Julliard | 202ef69 | 2006-06-07 14:20:38 +0200 | [diff] [blame] | 165 | fprintf( stderr, "Protocol error:%04x: ", thread->id ); |
Alexandre Julliard | d90e964 | 2001-02-21 04:21:50 +0000 | [diff] [blame] | 166 | vfprintf( stderr, err, args ); |
| 167 | perror( " " ); |
| 168 | va_end( args ); |
| 169 | thread->exit_code = 1; |
| 170 | kill_thread( thread, 1 ); |
| 171 | } |
| 172 | |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 173 | /* die on a fatal error */ |
Alexandre Julliard | 6c8d917 | 2000-08-26 04:40:07 +0000 | [diff] [blame] | 174 | void fatal_error( const char *err, ... ) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 175 | { |
| 176 | va_list args; |
| 177 | |
| 178 | va_start( args, err ); |
| 179 | fprintf( stderr, "wineserver: " ); |
| 180 | vfprintf( stderr, err, args ); |
| 181 | va_end( args ); |
| 182 | exit(1); |
| 183 | } |
| 184 | |
| 185 | /* die on a fatal error */ |
Alexandre Julliard | 6c8d917 | 2000-08-26 04:40:07 +0000 | [diff] [blame] | 186 | void fatal_perror( const char *err, ... ) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 187 | { |
| 188 | va_list args; |
| 189 | |
| 190 | va_start( args, err ); |
| 191 | fprintf( stderr, "wineserver: " ); |
| 192 | vfprintf( stderr, err, args ); |
| 193 | perror( " " ); |
| 194 | va_end( args ); |
| 195 | exit(1); |
| 196 | } |
| 197 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 198 | /* allocate the reply data */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 199 | void *set_reply_data_size( data_size_t size ) |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 200 | { |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 201 | assert( size <= get_reply_max_size() ); |
| 202 | if (size && !(current->reply_data = mem_alloc( size ))) size = 0; |
| 203 | current->reply_size = size; |
| 204 | return current->reply_data; |
| 205 | } |
Alexandre Julliard | d90e964 | 2001-02-21 04:21:50 +0000 | [diff] [blame] | 206 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 207 | /* write the remaining part of the reply */ |
| 208 | void write_reply( struct thread *thread ) |
| 209 | { |
| 210 | int ret; |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 211 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 212 | if ((ret = write( get_unix_fd( thread->reply_fd ), |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 213 | (char *)thread->reply_data + thread->reply_size - thread->reply_towrite, |
| 214 | thread->reply_towrite )) >= 0) |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 215 | { |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 216 | if (!(thread->reply_towrite -= ret)) |
Alexandre Julliard | 67a7499 | 2001-02-27 02:09:16 +0000 | [diff] [blame] | 217 | { |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 218 | free( thread->reply_data ); |
| 219 | thread->reply_data = NULL; |
| 220 | /* sent everything, can go back to waiting for requests */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 221 | set_fd_events( thread->request_fd, POLLIN ); |
| 222 | set_fd_events( thread->reply_fd, 0 ); |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 223 | } |
| 224 | return; |
| 225 | } |
| 226 | if (errno == EPIPE) |
| 227 | kill_thread( thread, 0 ); /* normal death */ |
| 228 | else if (errno != EWOULDBLOCK && errno != EAGAIN) |
| 229 | fatal_protocol_perror( thread, "reply write" ); |
| 230 | } |
| 231 | |
| 232 | /* send a reply to the current thread */ |
| 233 | static void send_reply( union generic_reply *reply ) |
| 234 | { |
| 235 | int ret; |
| 236 | |
| 237 | if (!current->reply_size) |
| 238 | { |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 239 | if ((ret = write( get_unix_fd( current->reply_fd ), |
| 240 | reply, sizeof(*reply) )) != sizeof(*reply)) goto error; |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 241 | } |
| 242 | else |
| 243 | { |
| 244 | struct iovec vec[2]; |
| 245 | |
Francois Gouget | 0763abf | 2002-04-01 21:08:16 +0000 | [diff] [blame] | 246 | vec[0].iov_base = (void *)reply; |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 247 | vec[0].iov_len = sizeof(*reply); |
| 248 | vec[1].iov_base = current->reply_data; |
| 249 | vec[1].iov_len = current->reply_size; |
| 250 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 251 | if ((ret = writev( get_unix_fd( current->reply_fd ), vec, 2 )) < sizeof(*reply)) goto error; |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 252 | |
| 253 | if ((current->reply_towrite = current->reply_size - (ret - sizeof(*reply)))) |
| 254 | { |
| 255 | /* couldn't write it all, wait for POLLOUT */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 256 | set_fd_events( current->reply_fd, POLLOUT ); |
| 257 | set_fd_events( current->request_fd, 0 ); |
Alexandre Julliard | 67a7499 | 2001-02-27 02:09:16 +0000 | [diff] [blame] | 258 | return; |
| 259 | } |
Alexandre Julliard | d90e964 | 2001-02-21 04:21:50 +0000 | [diff] [blame] | 260 | } |
Michael Stefaniuc | 5ceccec | 2006-10-09 23:34:36 +0200 | [diff] [blame] | 261 | free( current->reply_data ); |
| 262 | current->reply_data = NULL; |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 263 | return; |
| 264 | |
| 265 | error: |
| 266 | if (ret >= 0) |
| 267 | fatal_protocol_error( current, "partial write %d\n", ret ); |
| 268 | else if (errno == EPIPE) |
| 269 | kill_thread( current, 0 ); /* normal death */ |
| 270 | else |
| 271 | fatal_protocol_perror( current, "reply write" ); |
| 272 | } |
| 273 | |
| 274 | /* call a request handler */ |
| 275 | static void call_req_handler( struct thread *thread ) |
| 276 | { |
| 277 | union generic_reply reply; |
| 278 | enum request req = thread->req.request_header.req; |
| 279 | |
| 280 | current = thread; |
| 281 | current->reply_size = 0; |
| 282 | clear_error(); |
| 283 | memset( &reply, 0, sizeof(reply) ); |
| 284 | |
| 285 | if (debug_level) trace_request(); |
Alexandre Julliard | 67a7499 | 2001-02-27 02:09:16 +0000 | [diff] [blame] | 286 | |
| 287 | if (req < REQ_NB_REQUESTS) |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 288 | req_handlers[req]( ¤t->req, &reply ); |
Alexandre Julliard | 4ec9e11 | 2006-05-28 18:27:02 +0200 | [diff] [blame] | 289 | else |
| 290 | set_error( STATUS_NOT_IMPLEMENTED ); |
| 291 | |
| 292 | if (current) |
| 293 | { |
| 294 | if (current->reply_fd) |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 295 | { |
Alexandre Julliard | 4ec9e11 | 2006-05-28 18:27:02 +0200 | [diff] [blame] | 296 | reply.reply_header.error = current->error; |
| 297 | reply.reply_header.reply_size = current->reply_size; |
| 298 | if (debug_level) trace_reply( req, &reply ); |
| 299 | send_reply( &reply ); |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 300 | } |
Alexandre Julliard | 5558652 | 2006-06-08 10:26:02 +0200 | [diff] [blame] | 301 | else |
| 302 | { |
| 303 | current->exit_code = 1; |
| 304 | kill_thread( current, 1 ); /* no way to continue without reply fd */ |
| 305 | } |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 306 | } |
Alexandre Julliard | 4ec9e11 | 2006-05-28 18:27:02 +0200 | [diff] [blame] | 307 | current = NULL; |
Alexandre Julliard | 767e6f6 | 1998-08-09 12:47:43 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 310 | /* read a request from a thread */ |
| 311 | void read_request( struct thread *thread ) |
| 312 | { |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 313 | int ret; |
| 314 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 315 | if (!thread->req_toread) /* no pending request */ |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 316 | { |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 317 | if ((ret = read( get_unix_fd( thread->request_fd ), &thread->req, |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 318 | sizeof(thread->req) )) != sizeof(thread->req)) goto error; |
| 319 | if (!(thread->req_toread = thread->req.request_header.request_size)) |
| 320 | { |
| 321 | /* no data, handle request at once */ |
| 322 | call_req_handler( thread ); |
| 323 | return; |
| 324 | } |
| 325 | if (!(thread->req_data = malloc( thread->req_toread ))) |
Alexandre Julliard | 5522446 | 2006-07-27 14:39:33 +0200 | [diff] [blame] | 326 | { |
| 327 | fatal_protocol_error( thread, "no memory for %u bytes request %d\n", |
| 328 | thread->req_toread, thread->req.request_header.req ); |
| 329 | return; |
| 330 | } |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 331 | } |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 332 | |
| 333 | /* read the variable sized data */ |
| 334 | for (;;) |
| 335 | { |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 336 | ret = read( get_unix_fd( thread->request_fd ), |
| 337 | (char *)thread->req_data + thread->req.request_header.request_size |
| 338 | - thread->req_toread, |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 339 | thread->req_toread ); |
| 340 | if (ret <= 0) break; |
| 341 | if (!(thread->req_toread -= ret)) |
| 342 | { |
| 343 | call_req_handler( thread ); |
| 344 | free( thread->req_data ); |
| 345 | thread->req_data = NULL; |
| 346 | return; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | error: |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 351 | if (!ret) /* closed pipe */ |
| 352 | kill_thread( thread, 0 ); |
| 353 | else if (ret > 0) |
| 354 | fatal_protocol_error( thread, "partial read %d\n", ret ); |
Alexandre Julliard | 4b29d66 | 2001-06-19 18:23:13 +0000 | [diff] [blame] | 355 | else if (errno != EWOULDBLOCK && errno != EAGAIN) |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 356 | fatal_protocol_perror( thread, "read" ); |
| 357 | } |
| 358 | |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 359 | /* receive a file descriptor on the process socket */ |
| 360 | int receive_fd( struct process *process ) |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 361 | { |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 362 | struct send_fd data; |
| 363 | int fd, ret; |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 364 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 365 | #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 366 | msghdr.msg_accrightslen = sizeof(int); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 367 | msghdr.msg_accrights = (void *)&fd; |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 368 | #else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 369 | msghdr.msg_control = &cmsg; |
Alexandre Julliard | cdf9294 | 2005-09-16 18:52:47 +0000 | [diff] [blame] | 370 | msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd); |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 371 | cmsg.fd = -1; |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 372 | #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 373 | |
Francois Gouget | 0763abf | 2002-04-01 21:08:16 +0000 | [diff] [blame] | 374 | myiovec.iov_base = (void *)&data; |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 375 | myiovec.iov_len = sizeof(data); |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 376 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 377 | ret = recvmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 ); |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 378 | #ifndef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 379 | fd = cmsg.fd; |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 380 | #endif |
| 381 | |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 382 | if (ret == sizeof(data)) |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 383 | { |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 384 | struct thread *thread; |
| 385 | |
| 386 | if (data.tid) thread = get_thread_from_id( data.tid ); |
Alexandre Julliard | 0502638 | 2005-03-01 10:56:18 +0000 | [diff] [blame] | 387 | else thread = (struct thread *)grab_object( get_process_first_thread( process )); |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 388 | |
Alexandre Julliard | 714156d | 2002-08-13 18:24:27 +0000 | [diff] [blame] | 389 | if (!thread || thread->process != process || thread->state == TERMINATED) |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 390 | { |
| 391 | if (debug_level) |
Alexandre Julliard | 91befe1 | 2003-02-01 01:38:40 +0000 | [diff] [blame] | 392 | fprintf( stderr, "%04x: *fd* %d <- %d bad thread id\n", |
| 393 | data.tid, data.fd, fd ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 394 | close( fd ); |
| 395 | } |
| 396 | else |
| 397 | { |
| 398 | if (debug_level) |
Alexandre Julliard | 91befe1 | 2003-02-01 01:38:40 +0000 | [diff] [blame] | 399 | fprintf( stderr, "%04x: *fd* %d <- %d\n", |
| 400 | thread->id, data.fd, fd ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 401 | thread_add_inflight_fd( thread, data.fd, fd ); |
| 402 | } |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 403 | if (thread) release_object( thread ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 404 | return 0; |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 405 | } |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 406 | |
Alexandre Julliard | 0a36462 | 2006-03-27 12:14:24 +0200 | [diff] [blame] | 407 | if (!ret) |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 408 | { |
Alexandre Julliard | 81977b7 | 2006-09-21 11:14:45 +0200 | [diff] [blame] | 409 | kill_process( process, 0 ); |
Alexandre Julliard | 0a36462 | 2006-03-27 12:14:24 +0200 | [diff] [blame] | 410 | } |
| 411 | else if (ret > 0) |
| 412 | { |
Alexandre Julliard | 202ef69 | 2006-06-07 14:20:38 +0200 | [diff] [blame] | 413 | fprintf( stderr, "Protocol error: process %04x: partial recvmsg %d for fd\n", |
| 414 | process->id, ret ); |
Alexandre Julliard | 81977b7 | 2006-09-21 11:14:45 +0200 | [diff] [blame] | 415 | kill_process( process, 1 ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 416 | } |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 417 | else |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 418 | { |
| 419 | if (errno != EWOULDBLOCK && errno != EAGAIN) |
| 420 | { |
Alexandre Julliard | 202ef69 | 2006-06-07 14:20:38 +0200 | [diff] [blame] | 421 | fprintf( stderr, "Protocol error: process %04x: ", process->id ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 422 | perror( "recvmsg" ); |
Alexandre Julliard | 81977b7 | 2006-09-21 11:14:45 +0200 | [diff] [blame] | 423 | kill_process( process, 1 ); |
Alexandre Julliard | f524240 | 2001-02-28 21:45:23 +0000 | [diff] [blame] | 424 | } |
| 425 | } |
| 426 | return -1; |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 429 | /* send an fd to a client */ |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 430 | int send_client_fd( struct process *process, int fd, obj_handle_t handle ) |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 431 | { |
| 432 | int ret; |
| 433 | |
Alexandre Julliard | 63411db | 2000-12-22 21:12:36 +0000 | [diff] [blame] | 434 | if (debug_level) |
Alexandre Julliard | 0d3d456 | 2008-12-08 16:04:20 +0100 | [diff] [blame] | 435 | fprintf( stderr, "%04x: *fd* %04x -> %d\n", |
Alexandre Julliard | 91befe1 | 2003-02-01 01:38:40 +0000 | [diff] [blame] | 436 | current ? current->id : process->id, handle, fd ); |
Alexandre Julliard | 63411db | 2000-12-22 21:12:36 +0000 | [diff] [blame] | 437 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 438 | #ifdef HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 439 | msghdr.msg_accrightslen = sizeof(fd); |
| 440 | msghdr.msg_accrights = (void *)&fd; |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 441 | #else /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */ |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 442 | msghdr.msg_control = &cmsg; |
Alexandre Julliard | cdf9294 | 2005-09-16 18:52:47 +0000 | [diff] [blame] | 443 | msghdr.msg_controllen = sizeof(cmsg.header) + sizeof(fd); |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 444 | cmsg.fd = fd; |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 445 | #endif /* HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS */ |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 446 | |
| 447 | myiovec.iov_base = (void *)&handle; |
| 448 | myiovec.iov_len = sizeof(handle); |
| 449 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 450 | ret = sendmsg( get_unix_fd( process->msg_fd ), &msghdr, 0 ); |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 451 | |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 452 | if (ret == sizeof(handle)) return 0; |
| 453 | |
| 454 | if (ret >= 0) |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 455 | { |
Alexandre Julliard | 202ef69 | 2006-06-07 14:20:38 +0200 | [diff] [blame] | 456 | fprintf( stderr, "Protocol error: process %04x: partial sendmsg %d\n", process->id, ret ); |
Alexandre Julliard | 81977b7 | 2006-09-21 11:14:45 +0200 | [diff] [blame] | 457 | kill_process( process, 1 ); |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 458 | } |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 459 | else if (errno == EPIPE) |
| 460 | { |
Alexandre Julliard | 81977b7 | 2006-09-21 11:14:45 +0200 | [diff] [blame] | 461 | kill_process( process, 0 ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 462 | } |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 463 | else |
| 464 | { |
Alexandre Julliard | 202ef69 | 2006-06-07 14:20:38 +0200 | [diff] [blame] | 465 | fprintf( stderr, "Protocol error: process %04x: ", process->id ); |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 466 | perror( "sendmsg" ); |
Alexandre Julliard | 81977b7 | 2006-09-21 11:14:45 +0200 | [diff] [blame] | 467 | kill_process( process, 1 ); |
Alexandre Julliard | d549f69 | 2000-12-22 02:04:15 +0000 | [diff] [blame] | 468 | } |
| 469 | return -1; |
| 470 | } |
| 471 | |
Alexandre Julliard | 516e40e | 2001-10-17 17:48:49 +0000 | [diff] [blame] | 472 | /* get current tick count to return to client */ |
| 473 | unsigned int get_tick_count(void) |
| 474 | { |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 475 | return (current_time - server_start_time) / 10000; |
Alexandre Julliard | 516e40e | 2001-10-17 17:48:49 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 478 | static void master_socket_dump( struct object *obj, int verbose ) |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 479 | { |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 480 | struct master_socket *sock = (struct master_socket *)obj; |
| 481 | assert( obj->ops == &master_socket_ops ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 482 | fprintf( stderr, "Master socket fd=%p\n", sock->fd ); |
| 483 | } |
| 484 | |
| 485 | static void master_socket_destroy( struct object *obj ) |
| 486 | { |
| 487 | struct master_socket *sock = (struct master_socket *)obj; |
| 488 | assert( obj->ops == &master_socket_ops ); |
| 489 | release_object( sock->fd ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | /* handle a socket event */ |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 493 | static void master_socket_poll_event( struct fd *fd, int event ) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 494 | { |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 495 | struct master_socket *sock = get_fd_user( fd ); |
| 496 | assert( master_socket->obj.ops == &master_socket_ops ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 497 | |
| 498 | assert( sock == master_socket ); /* there is only one master socket */ |
| 499 | |
| 500 | if (event & (POLLERR | POLLHUP)) |
| 501 | { |
| 502 | /* this is not supposed to happen */ |
| 503 | fprintf( stderr, "wineserver: Error on master socket\n" ); |
Alexandre Julliard | 3a4c04d | 2006-08-14 20:40:31 +0200 | [diff] [blame] | 504 | set_fd_events( sock->fd, -1 ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 505 | } |
| 506 | else if (event & POLLIN) |
| 507 | { |
| 508 | struct sockaddr_un dummy; |
Mike McCormack | e659f1e | 2005-08-09 10:37:50 +0000 | [diff] [blame] | 509 | unsigned int len = sizeof(dummy); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 510 | int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len ); |
Alexandre Julliard | 09cc91d | 2001-04-04 00:11:13 +0000 | [diff] [blame] | 511 | if (client == -1) return; |
| 512 | fcntl( client, F_SETFL, O_NONBLOCK ); |
Alexandre Julliard | c316f0e | 2006-07-19 14:00:10 +0200 | [diff] [blame] | 513 | create_process( client, NULL, 0 ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 514 | } |
| 515 | } |
| 516 | |
| 517 | /* remove the socket upon exit */ |
| 518 | static void socket_cleanup(void) |
| 519 | { |
Alexandre Julliard | c10c9ef | 2000-08-11 21:16:53 +0000 | [diff] [blame] | 520 | static int do_it_once; |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 521 | if (!do_it_once++) unlink( server_socket_name ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 524 | /* create a directory and check its permissions */ |
| 525 | static void create_dir( const char *name, struct stat *st ) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 526 | { |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 527 | if (lstat( name, st ) == -1) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 528 | { |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 529 | if (errno != ENOENT) fatal_perror( "lstat %s", name ); |
Francois Gouget | 10e3d96 | 2005-03-01 11:00:06 +0000 | [diff] [blame] | 530 | if (mkdir( name, 0700 ) == -1 && errno != EEXIST) fatal_perror( "mkdir %s", name ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 531 | if (lstat( name, st ) == -1) fatal_perror( "lstat %s", name ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 532 | } |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 533 | if (!S_ISDIR(st->st_mode)) fatal_error( "%s is not a directory\n", name ); |
| 534 | if (st->st_uid != getuid()) fatal_error( "%s is not owned by you\n", name ); |
| 535 | if (st->st_mode & 077) fatal_error( "%s must not be accessible by other users\n", name ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | /* create the server directory and chdir to it */ |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 539 | static void create_server_dir( const char *dir ) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 540 | { |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 541 | char *p, *server_dir; |
| 542 | struct stat st, st2; |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 543 | |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 544 | if (!(server_dir = strdup( dir ))) fatal_error( "out of memory\n" ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 545 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 546 | /* first create the base directory if needed */ |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 547 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 548 | p = strrchr( server_dir, '/' ); |
| 549 | *p = 0; |
| 550 | create_dir( server_dir, &st ); |
Alexandre Julliard | b8dd37d | 2001-08-09 21:22:33 +0000 | [diff] [blame] | 551 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 552 | /* now create the server directory */ |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 553 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 554 | *p = '/'; |
| 555 | create_dir( server_dir, &st ); |
| 556 | |
| 557 | if (chdir( server_dir ) == -1) fatal_perror( "chdir %s", server_dir ); |
Alexandre Julliard | 161160f | 2008-04-17 12:41:34 +0200 | [diff] [blame] | 558 | if ((server_dir_fd = open( ".", O_RDONLY )) == -1) fatal_perror( "open %s", server_dir ); |
| 559 | if (fstat( server_dir_fd, &st2 ) == -1) fatal_perror( "stat %s", server_dir ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 560 | if (st.st_dev != st2.st_dev || st.st_ino != st2.st_ino) |
| 561 | fatal_error( "chdir did not end up in %s\n", server_dir ); |
| 562 | |
| 563 | free( server_dir ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 564 | } |
| 565 | |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 566 | /* create the lock file and return its file descriptor */ |
| 567 | static int create_server_lock(void) |
| 568 | { |
| 569 | struct stat st; |
| 570 | int fd; |
| 571 | |
| 572 | if (lstat( server_lock_name, &st ) == -1) |
| 573 | { |
| 574 | if (errno != ENOENT) |
| 575 | fatal_perror( "lstat %s/%s", wine_get_server_dir(), server_lock_name ); |
| 576 | } |
| 577 | else |
| 578 | { |
| 579 | if (!S_ISREG(st.st_mode)) |
| 580 | fatal_error( "%s/%s is not a regular file\n", wine_get_server_dir(), server_lock_name ); |
| 581 | } |
| 582 | |
| 583 | if ((fd = open( server_lock_name, O_CREAT|O_TRUNC|O_WRONLY, 0600 )) == -1) |
| 584 | fatal_perror( "error creating %s/%s", wine_get_server_dir(), server_lock_name ); |
| 585 | return fd; |
| 586 | } |
| 587 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 588 | /* wait for the server lock */ |
| 589 | int wait_for_lock(void) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 590 | { |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 591 | const char *server_dir = wine_get_server_dir(); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 592 | int fd, r; |
| 593 | struct flock fl; |
Alexandre Julliard | 0b6a79c | 2000-12-15 20:57:00 +0000 | [diff] [blame] | 594 | |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 595 | if (!server_dir) return 0; /* no server dir, so no lock to wait on */ |
| 596 | |
| 597 | create_server_dir( server_dir ); |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 598 | fd = create_server_lock(); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 599 | |
| 600 | fl.l_type = F_WRLCK; |
| 601 | fl.l_whence = SEEK_SET; |
| 602 | fl.l_start = 0; |
| 603 | fl.l_len = 1; |
| 604 | r = fcntl( fd, F_SETLKW, &fl ); |
| 605 | close(fd); |
| 606 | |
| 607 | return r; |
| 608 | } |
| 609 | |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 610 | /* kill the wine server holding the lock */ |
| 611 | int kill_lock_owner( int sig ) |
| 612 | { |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 613 | const char *server_dir = wine_get_server_dir(); |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 614 | int fd, i, ret = 0; |
| 615 | pid_t pid = 0; |
| 616 | struct flock fl; |
| 617 | |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 618 | if (!server_dir) return 0; /* no server dir, nothing to do */ |
| 619 | |
| 620 | create_server_dir( server_dir ); |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 621 | fd = create_server_lock(); |
| 622 | |
Alexandre Julliard | 307cb09 | 2008-01-02 16:13:08 +0100 | [diff] [blame] | 623 | for (i = 1; i <= 20; i++) |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 624 | { |
| 625 | fl.l_type = F_WRLCK; |
| 626 | fl.l_whence = SEEK_SET; |
| 627 | fl.l_start = 0; |
| 628 | fl.l_len = 1; |
| 629 | if (fcntl( fd, F_GETLK, &fl ) == -1) goto done; |
| 630 | if (fl.l_type != F_WRLCK) goto done; /* the file is not locked */ |
| 631 | if (!pid) /* first time around */ |
| 632 | { |
| 633 | if (!(pid = fl.l_pid)) goto done; /* shouldn't happen */ |
| 634 | if (sig == -1) |
| 635 | { |
| 636 | if (kill( pid, SIGINT ) == -1) goto done; |
| 637 | kill( pid, SIGCONT ); |
| 638 | ret = 1; |
| 639 | } |
| 640 | else /* just send the specified signal and return */ |
| 641 | { |
| 642 | ret = (kill( pid, sig ) != -1); |
| 643 | goto done; |
| 644 | } |
| 645 | } |
| 646 | else if (fl.l_pid != pid) goto done; /* no longer the same process */ |
Alexandre Julliard | 307cb09 | 2008-01-02 16:13:08 +0100 | [diff] [blame] | 647 | usleep( 50000 * i ); |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 648 | } |
| 649 | /* waited long enough, now kill it */ |
| 650 | kill( pid, SIGKILL ); |
| 651 | |
| 652 | done: |
| 653 | close( fd ); |
| 654 | return ret; |
| 655 | } |
| 656 | |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 657 | /* acquire the main server lock */ |
| 658 | static void acquire_lock(void) |
| 659 | { |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 660 | struct sockaddr_un addr; |
| 661 | struct stat st; |
| 662 | struct flock fl; |
| 663 | int fd, slen, got_lock = 0; |
| 664 | |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 665 | fd = create_server_lock(); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 666 | |
| 667 | fl.l_type = F_WRLCK; |
| 668 | fl.l_whence = SEEK_SET; |
| 669 | fl.l_start = 0; |
| 670 | fl.l_len = 1; |
| 671 | if (fcntl( fd, F_SETLK, &fl ) != -1) |
| 672 | { |
| 673 | /* check for crashed server */ |
| 674 | if (stat( server_socket_name, &st ) != -1 && /* there is a leftover socket */ |
| 675 | stat( "core", &st ) != -1 && st.st_size) /* and there is a non-empty core file */ |
| 676 | { |
| 677 | fprintf( stderr, |
| 678 | "Warning: a previous instance of the wine server seems to have crashed.\n" |
| 679 | "Please run 'gdb %s %s/core',\n" |
| 680 | "type 'backtrace' at the gdb prompt and report the results. Thanks.\n\n", |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 681 | server_argv0, wine_get_server_dir() ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 682 | } |
| 683 | unlink( server_socket_name ); /* we got the lock, we can safely remove the socket */ |
| 684 | got_lock = 1; |
| 685 | /* in that case we reuse fd without closing it, this ensures |
| 686 | * that we hold the lock until the process exits */ |
| 687 | } |
| 688 | else |
| 689 | { |
| 690 | switch(errno) |
| 691 | { |
| 692 | case ENOLCK: |
| 693 | break; |
| 694 | case EACCES: |
| 695 | /* check whether locks work at all on this file system */ |
| 696 | if (fcntl( fd, F_GETLK, &fl ) == -1) break; |
| 697 | /* fall through */ |
| 698 | case EAGAIN: |
| 699 | exit(2); /* we didn't get the lock, exit with special status */ |
| 700 | default: |
Alexandre Julliard | 40043ed | 2002-08-16 20:02:15 +0000 | [diff] [blame] | 701 | fatal_perror( "fcntl %s/%s", wine_get_server_dir(), server_lock_name ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 702 | } |
| 703 | /* it seems we can't use locks on this fs, so we will use the socket existence as lock */ |
| 704 | close( fd ); |
| 705 | } |
| 706 | |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 707 | if ((fd = socket( AF_UNIX, SOCK_STREAM, 0 )) == -1) fatal_perror( "socket" ); |
| 708 | addr.sun_family = AF_UNIX; |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 709 | strcpy( addr.sun_path, server_socket_name ); |
Juergen Lock | 2d33ab9 | 2000-02-13 16:03:29 +0000 | [diff] [blame] | 710 | slen = sizeof(addr) - sizeof(addr.sun_path) + strlen(addr.sun_path) + 1; |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 711 | #ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN |
Juergen Lock | 2d33ab9 | 2000-02-13 16:03:29 +0000 | [diff] [blame] | 712 | addr.sun_len = slen; |
| 713 | #endif |
| 714 | if (bind( fd, (struct sockaddr *)&addr, slen ) == -1) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 715 | { |
| 716 | if ((errno == EEXIST) || (errno == EADDRINUSE)) |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 717 | { |
| 718 | if (got_lock) |
| 719 | fatal_error( "couldn't bind to the socket even though we hold the lock\n" ); |
| 720 | exit(2); /* we didn't get the lock, exit with special status */ |
| 721 | } |
| 722 | fatal_perror( "bind" ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 723 | } |
| 724 | atexit( socket_cleanup ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 725 | chmod( server_socket_name, 0600 ); /* make sure no other user can connect */ |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 726 | if (listen( fd, 5 ) == -1) fatal_perror( "listen" ); |
| 727 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 728 | if (!(master_socket = alloc_object( &master_socket_ops )) || |
Alexandre Julliard | f85437c | 2007-04-10 22:25:07 +0200 | [diff] [blame] | 729 | !(master_socket->fd = create_anonymous_fd( &master_socket_fd_ops, fd, &master_socket->obj, 0 ))) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 730 | fatal_error( "out of memory\n" ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 731 | set_fd_events( master_socket->fd, POLLIN ); |
Alexandre Julliard | b00fb17 | 2006-03-22 20:32:04 +0100 | [diff] [blame] | 732 | make_object_static( &master_socket->obj ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | /* open the master server socket and start waiting for new clients */ |
| 736 | void open_master_socket(void) |
| 737 | { |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 738 | const char *server_dir = wine_get_server_dir(); |
Alexandre Julliard | 161160f | 2008-04-17 12:41:34 +0200 | [diff] [blame] | 739 | const char *config_dir = wine_get_config_dir(); |
Alexandre Julliard | 7ad5be9 | 2003-03-14 04:08:42 +0000 | [diff] [blame] | 740 | int fd, pid, status, sync_pipe[2]; |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 741 | char dummy; |
| 742 | |
| 743 | /* make sure no request is larger than the maximum size */ |
| 744 | assert( sizeof(union generic_request) == sizeof(struct request_max_size) ); |
| 745 | assert( sizeof(union generic_reply) == sizeof(struct request_max_size) ); |
| 746 | |
Alexandre Julliard | 161160f | 2008-04-17 12:41:34 +0200 | [diff] [blame] | 747 | if (!server_dir) fatal_error( "directory %s cannot be accessed\n", config_dir ); |
| 748 | if (chdir( config_dir ) == -1) fatal_perror( "chdir to %s", config_dir ); |
| 749 | if ((config_dir_fd = open( ".", O_RDONLY )) == -1) fatal_perror( "open %s", config_dir ); |
| 750 | |
Alexandre Julliard | c5c599d | 2006-03-31 13:06:04 +0200 | [diff] [blame] | 751 | create_server_dir( server_dir ); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 752 | |
Alexandre Julliard | 7ad5be9 | 2003-03-14 04:08:42 +0000 | [diff] [blame] | 753 | if (!foreground) |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 754 | { |
Alexandre Julliard | 7ad5be9 | 2003-03-14 04:08:42 +0000 | [diff] [blame] | 755 | 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 Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 762 | |
Alexandre Julliard | 7ad5be9 | 2003-03-14 04:08:42 +0000 | [diff] [blame] | 763 | 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 Pouech | 2e0b533 | 2006-01-27 16:17:51 +0100 | [diff] [blame] | 774 | dummy = 0; |
Alexandre Julliard | 7ad5be9 | 2003-03-14 04:08:42 +0000 | [diff] [blame] | 775 | 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 Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 797 | acquire_lock(); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 798 | } |
Alexandre Julliard | d804111 | 2000-04-14 14:42:41 +0000 | [diff] [blame] | 799 | |
Joerg Mayer | abe635c | 2000-11-11 00:38:37 +0000 | [diff] [blame] | 800 | /* 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 Julliard | cd1c7fc | 2006-12-29 16:56:11 +0100 | [diff] [blame] | 806 | /* init the process tracing mechanism */ |
| 807 | init_tracing_mechanism(); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 808 | } |
| 809 | |
Alexandre Julliard | f5e0f0c | 2002-04-03 22:51:18 +0000 | [diff] [blame] | 810 | /* master socket timer expiration handler */ |
| 811 | static void close_socket_timeout( void *arg ) |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 812 | { |
Alexandre Julliard | af268c6 | 2008-01-02 16:16:00 +0100 | [diff] [blame] | 813 | master_timeout = NULL; |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 814 | flush_registry(); |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 815 | if (debug_level) fprintf( stderr, "wineserver: exiting (pid=%ld)\n", (long) getpid() ); |
| 816 | |
| 817 | #ifdef DEBUG_OBJECTS |
Alexandre Julliard | b00fb17 | 2006-03-22 20:32:04 +0100 | [diff] [blame] | 818 | close_objects(); /* shut down everything properly */ |
Alexandre Julliard | 4144b5b | 2002-06-20 23:21:27 +0000 | [diff] [blame] | 819 | #endif |
Alexandre Julliard | af268c6 | 2008-01-02 16:16:00 +0100 | [diff] [blame] | 820 | exit( 0 ); |
Alexandre Julliard | 2fe5777 | 2000-01-25 01:40:27 +0000 | [diff] [blame] | 821 | } |
| 822 | |
Alexandre Julliard | f5e0f0c | 2002-04-03 22:51:18 +0000 | [diff] [blame] | 823 | /* close the master socket and stop waiting for new clients */ |
Alexandre Julliard | af268c6 | 2008-01-02 16:16:00 +0100 | [diff] [blame] | 824 | void close_master_socket( timeout_t timeout ) |
Alexandre Julliard | f5e0f0c | 2002-04-03 22:51:18 +0000 | [diff] [blame] | 825 | { |
Alexandre Julliard | af268c6 | 2008-01-02 16:16:00 +0100 | [diff] [blame] | 826 | if (master_socket) |
Alexandre Julliard | 3a4c04d | 2006-08-14 20:40:31 +0200 | [diff] [blame] | 827 | { |
Alexandre Julliard | af268c6 | 2008-01-02 16:16:00 +0100 | [diff] [blame] | 828 | release_object( master_socket ); |
| 829 | master_socket = NULL; |
Alexandre Julliard | 3a4c04d | 2006-08-14 20:40:31 +0200 | [diff] [blame] | 830 | } |
Alexandre Julliard | af268c6 | 2008-01-02 16:16:00 +0100 | [diff] [blame] | 831 | if (master_timeout) /* cancel previous timeout */ |
| 832 | remove_timeout_user( master_timeout ); |
| 833 | |
Alexandre Julliard | 2f1e73c | 2008-01-07 17:19:05 +0100 | [diff] [blame] | 834 | master_timeout = add_timeout_user( timeout, close_socket_timeout, NULL ); |
Alexandre Julliard | 338e757 | 1998-12-27 15:28:54 +0000 | [diff] [blame] | 835 | } |