2 * Client part of the client/server communication
4 * Copyright (C) 1998 Alexandre Julliard
17 #include <sys/types.h>
18 #ifdef HAVE_SYS_SOCKET_H
19 # include <sys/socket.h>
21 #ifdef HAVE_SYS_WAIT_H
25 #ifdef HAVE_SYS_MMAN_H
33 #include "wine/port.h"
39 /* Some versions of glibc don't define this */
44 #define CONFDIR "/.wine" /* directory for Wine config relative to $HOME */
45 #define SERVERDIR "/wineserver-" /* server socket directory (hostname appended) */
46 #define SOCKETNAME "socket" /* name of the socket file */
48 #undef server_alloc_req
50 /* data structure used to pass an fd with sendmsg/recvmsg */
53 int len
; /* sizeof structure */
54 int level
; /* SOL_SOCKET */
55 int type
; /* SCM_RIGHTS */
56 int fd
; /* fd to pass */
59 static void *boot_thread_id
;
62 /* die on a fatal error; use only during initialization */
63 static void fatal_error( const char *err
, ... ) WINE_NORETURN
;
64 static void fatal_error( const char *err
, ... )
68 va_start( args
, err
);
69 fprintf( stderr
, "wine: " );
70 vfprintf( stderr
, err
, args
);
75 /* die on a fatal error; use only during initialization */
76 static void fatal_perror( const char *err
, ... ) WINE_NORETURN
;
77 static void fatal_perror( const char *err
, ... )
81 va_start( args
, err
);
82 fprintf( stderr
, "wine: " );
83 vfprintf( stderr
, err
, args
);
89 /***********************************************************************
90 * server_protocol_error
92 void server_protocol_error( const char *err
, ... )
96 va_start( args
, err
);
97 fprintf( stderr
, "Client protocol error:%p: ", NtCurrentTeb()->tid
);
98 vfprintf( stderr
, err
, args
);
100 SYSDEPS_ExitThread(1);
104 /***********************************************************************
107 static void server_perror( const char *err
)
109 fprintf( stderr
, "Client protocol error:%p: ", NtCurrentTeb()->tid
);
111 SYSDEPS_ExitThread(1);
115 /***********************************************************************
116 * __wine_server_exception_handler
118 DWORD
__wine_server_exception_handler( PEXCEPTION_RECORD record
, EXCEPTION_FRAME
*frame
,
119 CONTEXT
*context
, EXCEPTION_FRAME
**pdispatcher
)
121 struct __server_exception_frame
*server_frame
= (struct __server_exception_frame
*)frame
;
122 if ((record
->ExceptionFlags
& (EH_UNWINDING
| EH_EXIT_UNWIND
)))
123 *NtCurrentTeb()->buffer_info
= server_frame
->info
;
124 return ExceptionContinueSearch
;
128 /***********************************************************************
129 * wine_server_alloc_req
131 void *wine_server_alloc_req( size_t fixed_size
, size_t var_size
)
133 unsigned int pos
= NtCurrentTeb()->buffer_info
->cur_pos
;
134 union generic_request
*req
= (union generic_request
*)((char *)NtCurrentTeb()->buffer
+ pos
);
135 size_t size
= sizeof(*req
) + var_size
;
137 assert( fixed_size
<= sizeof(*req
) );
138 assert( var_size
<= REQUEST_MAX_VAR_SIZE
);
140 if ((char *)req
+ size
> (char *)NtCurrentTeb()->buffer_info
)
141 server_protocol_error( "buffer overflow %d bytes\n",
142 (char *)req
+ size
- (char *)NtCurrentTeb()->buffer_info
);
143 NtCurrentTeb()->buffer_info
->cur_pos
= pos
+ size
;
144 req
->header
.fixed_size
= fixed_size
;
145 req
->header
.var_size
= var_size
;
150 /***********************************************************************
153 * Send a request to the server.
155 static void send_request( enum request req
, struct request_header
*header
)
158 NtCurrentTeb()->buffer_info
->cur_req
= (char *)header
- (char *)NtCurrentTeb()->buffer
;
159 /* write a single byte; the value is ignored anyway */
160 if (write( NtCurrentTeb()->request_fd
, header
, 1 ) == -1)
162 if (errno
== EPIPE
) SYSDEPS_ExitThread(0);
163 server_perror( "sendmsg" );
167 /***********************************************************************
170 * Send a request to the server, passing a file descriptor.
172 static void send_request_fd( enum request req
, struct request_header
*header
, int fd
)
174 #ifndef HAVE_MSGHDR_ACCRIGHTS
177 struct msghdr msghdr
;
180 /* write a single byte; the value is ignored anyway */
181 vec
.iov_base
= (void *)header
;
184 msghdr
.msg_name
= NULL
;
185 msghdr
.msg_namelen
= 0;
186 msghdr
.msg_iov
= &vec
;
187 msghdr
.msg_iovlen
= 1;
189 #ifdef HAVE_MSGHDR_ACCRIGHTS
190 msghdr
.msg_accrights
= (void *)&fd
;
191 msghdr
.msg_accrightslen
= sizeof(fd
);
192 #else /* HAVE_MSGHDR_ACCRIGHTS */
193 cmsg
.len
= sizeof(cmsg
);
194 cmsg
.level
= SOL_SOCKET
;
195 cmsg
.type
= SCM_RIGHTS
;
197 msghdr
.msg_control
= &cmsg
;
198 msghdr
.msg_controllen
= sizeof(cmsg
);
199 msghdr
.msg_flags
= 0;
200 #endif /* HAVE_MSGHDR_ACCRIGHTS */
204 if (sendmsg( NtCurrentTeb()->socket
, &msghdr
, 0 ) == -1)
206 if (errno
== EPIPE
) SYSDEPS_ExitThread(0);
207 server_perror( "sendmsg" );
211 /***********************************************************************
214 * Wait for a reply from the server.
216 static void wait_reply(void)
223 if ((ret
= read( NtCurrentTeb()->reply_fd
, dummy
, 1 )) > 0) return;
225 if (errno
== EINTR
) continue;
226 if (errno
== EPIPE
) break;
227 server_perror("read");
229 /* the server closed the connection; time to die... */
230 SYSDEPS_ExitThread(0);
234 /***********************************************************************
237 * Perform a server call.
239 unsigned int wine_server_call( enum request req
)
241 void *req_ptr
= get_req_buffer();
242 send_request( req
, req_ptr
);
244 return ((struct request_header
*)req_ptr
)->error
;
248 /***********************************************************************
251 * Perform a server call, passing a file descriptor.
253 unsigned int server_call_fd( enum request req
, int fd_out
)
256 void *req_ptr
= get_req_buffer();
258 send_request_fd( req
, req_ptr
, fd_out
);
261 if ((res
= ((struct request_header
*)req_ptr
)->error
))
262 SetLastError( RtlNtStatusToDosError(res
) );
263 return res
; /* error code */
267 /***********************************************************************
270 * Store the fd for a given handle in the server
272 static int set_handle_fd( int handle
, int fd
)
276 struct set_handle_info_request
*req
= wine_server_alloc_req( sizeof(*req
), 0 );
277 req
->handle
= handle
;
281 if (!server_call( REQ_SET_HANDLE_INFO
))
283 if (req
->cur_fd
!= fd
)
285 /* someone was here before us */
289 else fcntl( fd
, F_SETFD
, 1 ); /* set close on exec flag */
302 /***********************************************************************
303 * wine_server_recv_fd
305 * Receive a file descriptor passed from the server.
306 * The file descriptor must be closed after use.
308 int wine_server_recv_fd( int handle
, int cache
)
311 int ret
, fd
, server_handle
;
313 #ifdef HAVE_MSGHDR_ACCRIGHTS
314 struct msghdr msghdr
;
317 msghdr
.msg_accrights
= (void *)&fd
;
318 msghdr
.msg_accrightslen
= sizeof(fd
);
319 #else /* HAVE_MSGHDR_ACCRIGHTS */
320 struct msghdr msghdr
;
323 cmsg
.len
= sizeof(cmsg
);
324 cmsg
.level
= SOL_SOCKET
;
325 cmsg
.type
= SCM_RIGHTS
;
327 msghdr
.msg_control
= &cmsg
;
328 msghdr
.msg_controllen
= sizeof(cmsg
);
329 msghdr
.msg_flags
= 0;
330 #endif /* HAVE_MSGHDR_ACCRIGHTS */
332 msghdr
.msg_name
= NULL
;
333 msghdr
.msg_namelen
= 0;
334 msghdr
.msg_iov
= &vec
;
335 msghdr
.msg_iovlen
= 1;
336 vec
.iov_base
= (void *)&server_handle
;
337 vec
.iov_len
= sizeof(server_handle
);
341 if ((ret
= recvmsg( NtCurrentTeb()->socket
, &msghdr
, 0 )) > 0)
343 #ifndef HAVE_MSGHDR_ACCRIGHTS
346 if (handle
!= server_handle
)
347 server_protocol_error( "recv_fd: got handle %d, expected %d\n",
348 server_handle
, handle
);
351 fd
= set_handle_fd( handle
, fd
);
352 if (fd
!= -1) fd
= dup(fd
);
357 if (errno
== EINTR
) continue;
358 if (errno
== EPIPE
) break;
359 server_perror("recvmsg");
361 /* the server closed the connection; time to die... */
362 SYSDEPS_ExitThread(0);
366 /***********************************************************************
369 * Return the configuration directory ($WINEPREFIX or $HOME/.wine)
371 const char *get_config_dir(void)
373 static char *confdir
;
376 const char *prefix
= getenv( "WINEPREFIX" );
379 int len
= strlen(prefix
);
380 if (!(confdir
= strdup( prefix
))) fatal_error( "out of memory\n" );
381 if (len
> 1 && confdir
[len
-1] == '/') confdir
[len
-1] = 0;
385 const char *home
= getenv( "HOME" );
388 struct passwd
*pwd
= getpwuid( getuid() );
389 if (!pwd
) fatal_error( "could not find your home directory\n" );
392 if (!(confdir
= malloc( strlen(home
) + strlen(CONFDIR
) + 1 )))
393 fatal_error( "out of memory\n" );
394 strcpy( confdir
, home
);
395 strcat( confdir
, CONFDIR
);
397 mkdir( confdir
, 0755 ); /* just in case */
403 /***********************************************************************
406 * Start a new wine server.
408 static void start_server( const char *oldcwd
)
410 static int started
; /* we only try once */
416 if (pid
== -1) fatal_perror( "fork" );
419 /* if server is explicitly specified, use this */
420 if ((p
= getenv("WINESERVER")))
422 execl( p
, "wineserver", NULL
);
423 fatal_perror( "could not exec the server '%s'\n"
424 " specified in the WINESERVER environment variable", p
);
427 /* first try the installation dir */
428 execl( BINDIR
"/wineserver", "wineserver", NULL
);
430 /* now try the dir we were launched from */
433 if (!(path
= malloc( strlen(full_argv0
) + 20 )))
434 fatal_error( "out of memory\n" );
435 if ((p
= strrchr( strcpy( path
, full_argv0
), '/' )))
437 strcpy( p
, "/wineserver" );
438 execl( path
, "wineserver", NULL
);
439 strcpy( p
, "/server/wineserver" );
440 execl( path
, "wineserver", NULL
);
445 /* now try the path */
446 execlp( "wineserver", "wineserver", NULL
);
448 /* and finally the current dir */
449 if (!(path
= malloc( strlen(oldcwd
) + 20 )))
450 fatal_error( "out of memory\n" );
451 p
= strcpy( path
, oldcwd
) + strlen( oldcwd
);
452 strcpy( p
, "/wineserver" );
453 execl( path
, "wineserver", NULL
);
454 strcpy( p
, "/server/wineserver" );
455 execl( path
, "wineserver", NULL
);
457 fatal_error( "could not exec wineserver\n" );
460 waitpid( pid
, &status
, 0 );
461 status
= WIFEXITED(status
) ? WEXITSTATUS(status
) : 1;
462 if (status
) exit(status
); /* server failed */
466 /***********************************************************************
469 * Attempt to connect to an existing server socket.
470 * We need to be in the server directory already.
472 static int server_connect( const char *oldcwd
, const char *serverdir
)
474 struct sockaddr_un addr
;
478 /* chdir to the server directory */
479 if (chdir( serverdir
) == -1)
481 if (errno
!= ENOENT
) fatal_perror( "chdir to %s", serverdir
);
483 if (chdir( serverdir
) == -1) fatal_perror( "chdir to %s", serverdir
);
486 /* make sure we are at the right place */
487 if (stat( ".", &st
) == -1) fatal_perror( "stat %s", serverdir
);
488 if (st
.st_uid
!= getuid()) fatal_error( "'%s' is not owned by you\n", serverdir
);
489 if (st
.st_mode
& 077) fatal_error( "'%s' must not be accessible by other users\n", serverdir
);
491 for (retry
= 0; retry
< 3; retry
++)
493 /* if not the first try, wait a bit to leave the server time to exit */
494 if (retry
) usleep( 100000 * retry
* retry
);
496 /* check for an existing socket */
497 if (lstat( SOCKETNAME
, &st
) == -1)
499 if (errno
!= ENOENT
) fatal_perror( "lstat %s/%s", serverdir
, SOCKETNAME
);
500 start_server( oldcwd
);
501 if (lstat( SOCKETNAME
, &st
) == -1) fatal_perror( "lstat %s/%s", serverdir
, SOCKETNAME
);
504 /* make sure the socket is sane (ISFIFO needed for Solaris) */
505 if (!S_ISSOCK(st
.st_mode
) && !S_ISFIFO(st
.st_mode
))
506 fatal_error( "'%s/%s' is not a socket\n", serverdir
, SOCKETNAME
);
507 if (st
.st_uid
!= getuid())
508 fatal_error( "'%s/%s' is not owned by you\n", serverdir
, SOCKETNAME
);
510 /* try to connect to it */
511 addr
.sun_family
= AF_UNIX
;
512 strcpy( addr
.sun_path
, SOCKETNAME
);
513 slen
= sizeof(addr
) - sizeof(addr
.sun_path
) + strlen(addr
.sun_path
) + 1;
514 #ifdef HAVE_SOCKADDR_SUN_LEN
517 if ((s
= socket( AF_UNIX
, SOCK_STREAM
, 0 )) == -1) fatal_perror( "socket" );
518 if (connect( s
, (struct sockaddr
*)&addr
, slen
) != -1)
520 fcntl( s
, F_SETFD
, 1 ); /* set close on exec flag */
525 fatal_error( "file '%s/%s' exists,\n"
526 " but I cannot connect to it; maybe the server has crashed?\n"
527 " If this is the case, you should remove this socket file and try again.\n",
528 serverdir
, SOCKETNAME
);
532 /***********************************************************************
535 * Start the server and create the initial socket pair.
537 int CLIENT_InitServer(void)
541 char *oldcwd
, *serverdir
;
542 const char *configdir
;
544 /* retrieve the current directory */
545 for (size
= 512; ; size
*= 2)
547 if (!(oldcwd
= malloc( size
))) break;
548 if (getcwd( oldcwd
, size
)) break;
550 if (errno
== ERANGE
) continue;
555 /* if argv[0] is a relative path, make it absolute */
557 if (oldcwd
&& argv0
[0] != '/' && strchr( argv0
, '/' ))
559 char *new_argv0
= malloc( strlen(oldcwd
) + strlen(argv0
) + 2 );
562 strcpy( new_argv0
, oldcwd
);
563 strcat( new_argv0
, "/" );
564 strcat( new_argv0
, argv0
);
565 full_argv0
= new_argv0
;
569 /* get the server directory name */
570 if (gethostname( hostname
, sizeof(hostname
) ) == -1) fatal_perror( "gethostname" );
571 configdir
= get_config_dir();
572 serverdir
= malloc( strlen(configdir
) + strlen(SERVERDIR
) + strlen(hostname
) + 1 );
573 if (!serverdir
) fatal_error( "out of memory\n" );
574 strcpy( serverdir
, configdir
);
575 strcat( serverdir
, SERVERDIR
);
576 strcat( serverdir
, hostname
);
578 /* connect to the server */
579 fd
= server_connect( oldcwd
, serverdir
);
581 /* switch back to the starting directory */
591 /***********************************************************************
594 * Send an init thread request. Return 0 if OK.
596 int CLIENT_InitThread(void)
598 struct get_thread_buffer_request
*req
;
599 TEB
*teb
= NtCurrentTeb();
602 /* ignore SIGPIPE so that we get a EPIPE error instead */
603 signal( SIGPIPE
, SIG_IGN
);
605 teb
->request_fd
= wine_server_recv_fd( -1, 0 );
606 if (teb
->request_fd
== -1) server_protocol_error( "no request fd passed on first request\n" );
607 fcntl( teb
->request_fd
, F_SETFD
, 1 ); /* set close on exec flag */
609 teb
->reply_fd
= wine_server_recv_fd( -1, 0 );
610 if (teb
->reply_fd
== -1) server_protocol_error( "no reply fd passed on first request\n" );
611 fcntl( teb
->reply_fd
, F_SETFD
, 1 ); /* set close on exec flag */
613 fd
= wine_server_recv_fd( -1, 0 );
614 if (fd
== -1) server_protocol_error( "no fd received for thread buffer\n" );
616 if ((size
= lseek( fd
, 0, SEEK_END
)) == -1) server_perror( "lseek" );
617 teb
->buffer
= mmap( 0, size
, PROT_READ
| PROT_WRITE
, MAP_SHARED
, fd
, 0 );
619 if (teb
->buffer
== (void*)-1) server_perror( "mmap" );
620 teb
->buffer_info
= (struct server_buffer_info
*)((char *)teb
->buffer
+ size
) - 1;
624 req
= (struct get_thread_buffer_request
*)teb
->buffer
;
627 if (req
->version
!= SERVER_PROTOCOL_VERSION
)
628 server_protocol_error( "version mismatch %d/%d.\n"
629 "Your %s binary was not upgraded correctly,\n"
630 "or you have an older one somewhere in your PATH.\n",
631 req
->version
, SERVER_PROTOCOL_VERSION
,
632 (req
->version
> SERVER_PROTOCOL_VERSION
) ? "wine" : "wineserver" );
633 if (req
->boot
) boot_thread_id
= teb
->tid
;
634 else if (boot_thread_id
== teb
->tid
) boot_thread_id
= 0;
638 struct init_thread_request
*req
= wine_server_alloc_req( sizeof(*req
), 0 );
639 req
->unix_pid
= getpid();
641 req
->entry
= teb
->entry_point
;
642 ret
= wine_server_call( REQ_INIT_THREAD
);
649 /***********************************************************************
652 * Signal that we have finished booting, and set debug level.
654 int CLIENT_BootDone( int debug_level
)
659 struct boot_done_request
*req
= wine_server_alloc_req( sizeof(*req
), 0 );
660 req
->debug_level
= debug_level
;
661 ret
= server_call( REQ_BOOT_DONE
);
668 /***********************************************************************
669 * CLIENT_IsBootThread
671 * Return TRUE if current thread is the boot thread.
673 int CLIENT_IsBootThread(void)
675 return (GetCurrentThreadId() == (DWORD
)boot_thread_id
);