2 * Client part of the client/server communication
4 * Copyright (C) 1998 Alexandre Julliard
11 #include <sys/types.h>
12 #include <sys/socket.h>
18 #include "server/request.h"
22 /* Some versions of glibc don't define this */
28 /***********************************************************************
29 * CLIENT_ProtocolError
31 void CLIENT_ProtocolError( const char *err
, ... )
33 THDB
*thdb
= THREAD_Current();
36 va_start( args
, err
);
37 fprintf( stderr
, "Client protocol error:%p: ", thdb
->server_tid
);
38 vfprintf( stderr
, err
, args
);
44 /***********************************************************************
45 * CLIENT_SendRequest_v
47 * Send a request to the server.
49 static void CLIENT_SendRequest_v( enum request req
, int pass_fd
,
50 struct iovec
*vec
, int veclen
)
52 THDB
*thdb
= THREAD_Current();
53 #ifndef HAVE_MSGHDR_ACCRIGHTS
54 struct cmsg_fd cmsg
= { sizeof(cmsg
), SOL_SOCKET
, SCM_RIGHTS
, pass_fd
};
56 struct msghdr msghdr
= { NULL
, 0, vec
, veclen
, };
61 vec
[0].iov_base
= &head
;
62 vec
[0].iov_len
= sizeof(head
);
63 for (i
= len
= 0; i
< veclen
; i
++) len
+= vec
[i
].iov_len
;
65 assert( len
<= MAX_MSG_LENGTH
);
68 head
.seq
= thdb
->seq
++;
70 if (pass_fd
!= -1) /* we have an fd to send */
72 #ifdef HAVE_MSGHDR_ACCRIGHTS
73 msghdr
.msg_accrights
= (void *)&pass_fd
;
74 msghdr
.msg_accrightslen
= sizeof(pass_fd
);
76 msghdr
.msg_control
= &cmsg
;
77 msghdr
.msg_controllen
= sizeof(cmsg
);
81 if ((ret
= sendmsg( thdb
->socket
, &msghdr
, 0 )) < len
)
83 if (ret
== -1) perror( "sendmsg" );
84 CLIENT_ProtocolError( "partial msg sent %d/%d\n", ret
, len
);
86 /* we passed the fd now we can close it */
87 if (pass_fd
!= -1) close( pass_fd
);
91 /***********************************************************************
94 * Send a request to the server.
96 void CLIENT_SendRequest( enum request req
, int pass_fd
,
97 int n
, ... /* arg_1, len_1, etc. */ )
103 n
++; /* for vec[0] */
106 for (i
= 1; i
< n
; i
++)
108 vec
[i
].iov_base
= va_arg( args
, void * );
109 vec
[i
].iov_len
= va_arg( args
, int );
112 return CLIENT_SendRequest_v( req
, pass_fd
, vec
, n
);
116 /***********************************************************************
119 * Wait for a reply from the server.
120 * Returns the error code (or 0 if OK).
122 static unsigned int CLIENT_WaitReply_v( int *len
, int *passed_fd
,
123 struct iovec
*vec
, int veclen
)
125 THDB
*thdb
= THREAD_Current();
127 #ifdef HAVE_MSGHDR_ACCRIGHTS
128 struct msghdr msghdr
= { NULL
, 0, vec
, veclen
, (void*)&pass_fd
, sizeof(int) };
130 struct cmsg_fd cmsg
= { sizeof(cmsg
), SOL_SOCKET
, SCM_RIGHTS
, -1 };
131 struct msghdr msghdr
= { NULL
, 0, vec
, veclen
, &cmsg
, sizeof(cmsg
), 0 };
136 assert( veclen
> 0 );
137 vec
[0].iov_base
= &head
;
138 vec
[0].iov_len
= sizeof(head
);
140 while ((ret
= recvmsg( thdb
->socket
, &msghdr
, 0 )) == -1)
142 if (errno
== EINTR
) continue;
144 CLIENT_ProtocolError( "recvmsg\n" );
146 if (!ret
) ExitThread(1); /* the server closed the connection; time to die... */
150 if (ret
< sizeof(head
))
151 CLIENT_ProtocolError( "partial header received %d/%d\n", ret
, sizeof(head
) );
153 if ((head
.len
< sizeof(head
)) || (head
.len
> MAX_MSG_LENGTH
))
154 CLIENT_ProtocolError( "header length %d\n", head
.len
);
156 if (head
.seq
!= thdb
->seq
++)
157 CLIENT_ProtocolError( "sequence %08x instead of %08x\n", head
.seq
, thdb
->seq
- 1 );
159 #ifndef HAVE_MSGHDR_ACCRIGHTS
163 if (head
.type
!= ERROR_SUCCESS
)
165 SetLastError( head
.type
);
169 *passed_fd
= pass_fd
;
173 if (len
) *len
= ret
- sizeof(head
);
174 if (pass_fd
!= -1) close( pass_fd
);
175 remaining
= head
.len
- ret
;
176 while (remaining
> 0) /* drop remaining data */
179 int len
= remaining
< sizeof(buffer
) ? remaining
: sizeof(buffer
);
180 if ((len
= recv( thdb
->socket
, buffer
, len
, 0 )) == -1)
183 CLIENT_ProtocolError( "recv\n" );
185 if (!len
) ExitThread(1); /* the server closed the connection; time to die... */
189 return head
.type
; /* error code */
193 /***********************************************************************
196 * Wait for a reply from the server.
198 unsigned int CLIENT_WaitReply( int *len
, int *passed_fd
,
199 int n
, ... /* arg_1, len_1, etc. */ )
201 struct iovec vec
[16];
205 n
++; /* for vec[0] */
208 for (i
= 1; i
< n
; i
++)
210 vec
[i
].iov_base
= va_arg( args
, void * );
211 vec
[i
].iov_len
= va_arg( args
, int );
214 return CLIENT_WaitReply_v( len
, passed_fd
, vec
, n
);
218 /***********************************************************************
221 * Send a new thread request.
223 int CLIENT_NewThread( THDB
*thdb
, int *thandle
, int *phandle
)
225 struct new_thread_request request
;
226 struct new_thread_reply reply
;
228 extern BOOL32 THREAD_InitDone
;
229 extern void server_init( int fd
);
230 extern void select_loop(void);
232 if (!THREAD_InitDone
) /* first thread -> start the server */
237 if (socketpair( AF_UNIX
, SOCK_STREAM
, 0, tmpfd
) == -1)
239 perror("socketpair");
249 sprintf( buffer
, "%d", tmpfd
[1] );
250 /*#define EXEC_SERVER*/
252 execlp( "wineserver", "wineserver", buffer
, NULL
);
253 execl( "/usr/local/bin/wineserver", "wineserver", buffer
, NULL
);
254 execl( "./server/wineserver", "wineserver", buffer
, NULL
);
256 server_init( tmpfd
[1] );
259 default: /* parent */
261 SET_CUR_THREAD( thdb
);
262 THREAD_InitDone
= TRUE
;
263 thdb
->socket
= tmpfd
[0];
268 if (socketpair( AF_UNIX
, SOCK_STREAM
, 0, fd
) == -1)
270 SetLastError( ERROR_TOO_MANY_OPEN_FILES
); /* FIXME */
274 request
.pid
= thdb
->process
->server_pid
;
275 CLIENT_SendRequest( REQ_NEW_THREAD
, fd
[1], 1, &request
, sizeof(request
) );
277 if (CLIENT_WaitReply( &len
, NULL
, 1, &reply
, sizeof(reply
) )) goto error
;
278 if (len
< sizeof(reply
)) goto error
;
279 thdb
->server_tid
= reply
.tid
;
280 thdb
->process
->server_pid
= reply
.pid
;
281 if (thdb
->socket
!= -1) close( thdb
->socket
);
282 thdb
->socket
= fd
[0];
283 thdb
->seq
= 0; /* reset the sequence number for the new fd */
285 /* we don't need the handles for now */
286 if (thandle
) *thandle
= reply
.thandle
;
287 else if (reply
.thandle
!= -1) CLIENT_CloseHandle( reply
.thandle
);
288 if (phandle
) *phandle
= reply
.phandle
;
289 else if (reply
.phandle
!= -1) CLIENT_CloseHandle( reply
.phandle
);
298 /***********************************************************************
301 * Send an init thread request. Return 0 if OK.
303 int CLIENT_InitThread(void)
305 THDB
*thdb
= THREAD_Current();
306 struct init_thread_request init
;
307 int len
= strlen( thdb
->process
->env_db
->cmd_line
);
309 init
.unix_pid
= getpid();
310 len
= MIN( len
, MAX_MSG_LENGTH
- sizeof(init
) );
312 CLIENT_SendRequest( REQ_INIT_THREAD
, -1, 2,
314 thdb
->process
->env_db
->cmd_line
, len
);
315 return CLIENT_WaitReply( NULL
, NULL
, 0 );
319 /***********************************************************************
322 * Send a set debug level request. Return 0 if OK.
324 int CLIENT_SetDebug( int level
)
326 CLIENT_SendRequest( REQ_SET_DEBUG
, -1, 1, &level
, sizeof(level
) );
327 return CLIENT_WaitReply( NULL
, NULL
, 0 );
330 /***********************************************************************
333 * Send a close handle request. Return 0 if OK.
335 int CLIENT_CloseHandle( int handle
)
337 CLIENT_SendRequest( REQ_CLOSE_HANDLE
, -1, 1, &handle
, sizeof(handle
) );
338 return CLIENT_WaitReply( NULL
, NULL
, 0 );
341 /***********************************************************************
342 * CLIENT_DuplicateHandle
344 * Send a duplicate handle request. Return 0 if OK.
346 int CLIENT_DuplicateHandle( int src_process
, int src_handle
, int dst_process
, int dst_handle
,
347 DWORD access
, BOOL32 inherit
, DWORD options
)
349 struct dup_handle_request req
;
350 struct dup_handle_reply reply
;
353 req
.src_process
= src_process
;
354 req
.src_handle
= src_handle
;
355 req
.dst_process
= dst_process
;
356 req
.dst_handle
= dst_handle
;
358 req
.inherit
= inherit
;
359 req
.options
= options
;
361 CLIENT_SendRequest( REQ_DUP_HANDLE
, -1, 1, &req
, sizeof(req
) );
362 CLIENT_WaitReply( &len
, NULL
, 1, &reply
, sizeof(reply
) );
363 CHECK_LEN( len
, sizeof(reply
) );
368 /***********************************************************************
369 * CLIENT_GetProcessInfo
371 * Send a get process info request. Return 0 if OK.
373 int CLIENT_GetProcessInfo( int handle
, struct get_process_info_reply
*reply
)
377 CLIENT_SendRequest( REQ_GET_PROCESS_INFO
, -1, 1, &handle
, sizeof(handle
) );
378 err
= CLIENT_WaitReply( &len
, NULL
, 1, reply
, sizeof(*reply
) );
379 CHECK_LEN( len
, sizeof(*reply
) );
384 /***********************************************************************
385 * CLIENT_GetThreadInfo
387 * Send a get thread info request. Return 0 if OK.
389 int CLIENT_GetThreadInfo( int handle
, struct get_thread_info_reply
*reply
)
393 CLIENT_SendRequest( REQ_GET_THREAD_INFO
, -1, 1, &handle
, sizeof(handle
) );
394 err
= CLIENT_WaitReply( &len
, NULL
, 1, reply
, sizeof(*reply
) );
395 CHECK_LEN( len
, sizeof(*reply
) );
400 /***********************************************************************
403 * Open a handle to a process.
405 int CLIENT_OpenProcess( void *pid
, DWORD access
, BOOL32 inherit
)
407 struct open_process_request req
;
408 struct open_process_reply reply
;
413 req
.inherit
= inherit
;
415 CLIENT_SendRequest( REQ_OPEN_PROCESS
, -1, 1, &req
, sizeof(req
) );
416 CLIENT_WaitReply( &len
, NULL
, 1, &reply
, sizeof(reply
) );
417 CHECK_LEN( len
, sizeof(reply
) );
422 /***********************************************************************
425 int CLIENT_Select( int count
, int *handles
, int flags
, int timeout
)
427 struct select_request req
;
428 struct select_reply reply
;
433 req
.timeout
= timeout
;
435 CLIENT_SendRequest( REQ_SELECT
, -1, 2,
437 handles
, count
* sizeof(int) );
438 CLIENT_WaitReply( &len
, NULL
, 1, &reply
, sizeof(reply
) );
439 CHECK_LEN( len
, sizeof(reply
) );
440 return reply
.signaled
;