Commit d16319ce authored by Alexandre Julliard's avatar Alexandre Julliard

Store all object names as Unicode in the server.

parent 705686e2
...@@ -278,7 +278,7 @@ struct create_event_request ...@@ -278,7 +278,7 @@ struct create_event_request
IN int initial_state; /* initial state of the event */ IN int initial_state; /* initial state of the event */
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
OUT int handle; /* handle to the event */ OUT int handle; /* handle to the event */
IN char name[1]; /* event name */ IN WCHAR name[1]; /* event name */
}; };
/* Event operation */ /* Event operation */
...@@ -296,7 +296,7 @@ struct open_event_request ...@@ -296,7 +296,7 @@ struct open_event_request
IN unsigned int access; /* wanted access rights */ IN unsigned int access; /* wanted access rights */
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
OUT int handle; /* handle to the event */ OUT int handle; /* handle to the event */
IN char name[1]; /* object name */ IN WCHAR name[1]; /* object name */
}; };
...@@ -306,7 +306,7 @@ struct create_mutex_request ...@@ -306,7 +306,7 @@ struct create_mutex_request
IN int owned; /* initially owned? */ IN int owned; /* initially owned? */
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
OUT int handle; /* handle to the mutex */ OUT int handle; /* handle to the mutex */
IN char name[1]; /* mutex name */ IN WCHAR name[1]; /* mutex name */
}; };
...@@ -323,7 +323,7 @@ struct open_mutex_request ...@@ -323,7 +323,7 @@ struct open_mutex_request
IN unsigned int access; /* wanted access rights */ IN unsigned int access; /* wanted access rights */
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
OUT int handle; /* handle to the mutex */ OUT int handle; /* handle to the mutex */
IN char name[1]; /* object name */ IN WCHAR name[1]; /* object name */
}; };
...@@ -334,7 +334,7 @@ struct create_semaphore_request ...@@ -334,7 +334,7 @@ struct create_semaphore_request
IN unsigned int max; /* maximum count */ IN unsigned int max; /* maximum count */
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
OUT int handle; /* handle to the semaphore */ OUT int handle; /* handle to the semaphore */
IN char name[1]; /* semaphore name */ IN WCHAR name[1]; /* semaphore name */
}; };
...@@ -353,7 +353,7 @@ struct open_semaphore_request ...@@ -353,7 +353,7 @@ struct open_semaphore_request
IN unsigned int access; /* wanted access rights */ IN unsigned int access; /* wanted access rights */
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
OUT int handle; /* handle to the semaphore */ OUT int handle; /* handle to the semaphore */
IN char name[1]; /* object name */ IN WCHAR name[1]; /* object name */
}; };
...@@ -642,7 +642,7 @@ struct create_mapping_request ...@@ -642,7 +642,7 @@ struct create_mapping_request
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
IN int file_handle; /* file handle */ IN int file_handle; /* file handle */
OUT int handle; /* handle to the mapping */ OUT int handle; /* handle to the mapping */
IN char name[1]; /* object name */ IN WCHAR name[1]; /* object name */
}; };
/* protection flags */ /* protection flags */
#define VPROT_READ 0x01 #define VPROT_READ 0x01
...@@ -660,7 +660,7 @@ struct open_mapping_request ...@@ -660,7 +660,7 @@ struct open_mapping_request
IN unsigned int access; /* wanted access rights */ IN unsigned int access; /* wanted access rights */
IN int inherit; /* inherit flag */ IN int inherit; /* inherit flag */
OUT int handle; /* handle to the mapping */ OUT int handle; /* handle to the mapping */
IN char name[1]; /* object name */ IN WCHAR name[1]; /* object name */
}; };
...@@ -1097,6 +1097,28 @@ static inline int server_call( enum request req ) ...@@ -1097,6 +1097,28 @@ static inline int server_call( enum request req )
return res; return res;
} }
/* copy a Unicode string to the server buffer */
static inline void server_strcpyW( WCHAR *dst, const WCHAR *src )
{
if (src)
{
WCHAR *end = (WCHAR *)((char *)NtCurrentTeb()->buffer + NtCurrentTeb()->buffer_size) - 1;
while ((dst < end) && *src) *dst++ = *src++;
}
*dst = 0;
}
/* copy and convert an ASCII string to the server buffer */
static inline void server_strcpyAtoW( WCHAR *dst, const char *src )
{
if (src)
{
WCHAR *end = (WCHAR *)((char *)NtCurrentTeb()->buffer + NtCurrentTeb()->buffer_size) - 1;
while ((dst < end) && *src) *dst++ = (WCHAR)(unsigned char)*src++;
}
*dst = 0;
}
extern int CLIENT_InitServer(void); extern int CLIENT_InitServer(void);
extern int CLIENT_SetDebug( int level ); extern int CLIENT_SetDebug( int level );
extern int CLIENT_DebuggerRequest( int op ); extern int CLIENT_DebuggerRequest( int op );
......
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
#include "winbase.h" #include "winbase.h"
#include "winerror.h" #include "winerror.h"
#include "file.h" #include "file.h"
#include "heap.h"
#include "process.h" #include "process.h"
#include "xmalloc.h" #include "xmalloc.h"
#include "global.h" #include "global.h"
...@@ -1090,7 +1089,7 @@ HANDLE WINAPI CreateFileMappingA( ...@@ -1090,7 +1089,7 @@ HANDLE WINAPI CreateFileMappingA(
req->size_low = size_low; req->size_low = size_low;
req->protect = vprot; req->protect = vprot;
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle); req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
SetLastError(0); SetLastError(0);
server_call( REQ_CREATE_MAPPING ); server_call( REQ_CREATE_MAPPING );
if (req->handle == -1) return 0; if (req->handle == -1) return 0;
...@@ -1102,15 +1101,42 @@ HANDLE WINAPI CreateFileMappingA( ...@@ -1102,15 +1101,42 @@ HANDLE WINAPI CreateFileMappingA(
* CreateFileMapping32W (KERNEL32.47) * CreateFileMapping32W (KERNEL32.47)
* See CreateFileMapping32A * See CreateFileMapping32A
*/ */
HANDLE WINAPI CreateFileMappingW( HFILE hFile, LPSECURITY_ATTRIBUTES attr, HANDLE WINAPI CreateFileMappingW( HFILE hFile, LPSECURITY_ATTRIBUTES sa,
DWORD protect, DWORD size_high, DWORD protect, DWORD size_high,
DWORD size_low, LPCWSTR name ) DWORD size_low, LPCWSTR name )
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct create_mapping_request *req = get_req_buffer();
HANDLE ret = CreateFileMappingA( hFile, attr, protect, BYTE vprot;
size_high, size_low, nameA );
HeapFree( GetProcessHeap(), 0, nameA ); /* Check parameters */
return ret;
TRACE("(%x,%p,%08lx,%08lx%08lx,%s)\n",
hFile, sa, protect, size_high, size_low, debugstr_w(name) );
vprot = VIRTUAL_GetProt( protect );
if (protect & SEC_RESERVE)
{
if (hFile != INVALID_HANDLE_VALUE)
{
SetLastError( ERROR_INVALID_PARAMETER );
return 0;
}
}
else vprot |= VPROT_COMMITTED;
if (protect & SEC_NOCACHE) vprot |= VPROT_NOCACHE;
/* Create the server object */
req->file_handle = hFile;
req->size_high = size_high;
req->size_low = size_low;
req->protect = vprot;
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
server_strcpyW( req->name, name );
SetLastError(0);
server_call( REQ_CREATE_MAPPING );
if (req->handle == -1) return 0;
return req->handle;
} }
...@@ -1131,7 +1157,7 @@ HANDLE WINAPI OpenFileMappingA( ...@@ -1131,7 +1157,7 @@ HANDLE WINAPI OpenFileMappingA(
req->access = access; req->access = access;
req->inherit = inherit; req->inherit = inherit;
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
server_call( REQ_OPEN_MAPPING ); server_call( REQ_OPEN_MAPPING );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */ if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle; return req->handle;
...@@ -1144,10 +1170,14 @@ HANDLE WINAPI OpenFileMappingA( ...@@ -1144,10 +1170,14 @@ HANDLE WINAPI OpenFileMappingA(
*/ */
HANDLE WINAPI OpenFileMappingW( DWORD access, BOOL inherit, LPCWSTR name) HANDLE WINAPI OpenFileMappingW( DWORD access, BOOL inherit, LPCWSTR name)
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct open_mapping_request *req = get_req_buffer();
HANDLE ret = OpenFileMappingA( access, inherit, nameA );
HeapFree( GetProcessHeap(), 0, nameA ); req->access = access;
return ret; req->inherit = inherit;
server_strcpyW( req->name, name );
server_call( REQ_OPEN_MAPPING );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle;
} }
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#include "winerror.h" #include "winerror.h"
#include "heap.h"
#include "syslevel.h" #include "syslevel.h"
#include "server.h" #include "server.h"
...@@ -16,14 +15,14 @@ ...@@ -16,14 +15,14 @@
* CreateEvent32A (KERNEL32.156) * CreateEvent32A (KERNEL32.156)
*/ */
HANDLE WINAPI CreateEventA( SECURITY_ATTRIBUTES *sa, BOOL manual_reset, HANDLE WINAPI CreateEventA( SECURITY_ATTRIBUTES *sa, BOOL manual_reset,
BOOL initial_state, LPCSTR name ) BOOL initial_state, LPCSTR name )
{ {
struct create_event_request *req = get_req_buffer(); struct create_event_request *req = get_req_buffer();
req->manual_reset = manual_reset; req->manual_reset = manual_reset;
req->initial_state = initial_state; req->initial_state = initial_state;
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle); req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
SetLastError(0); SetLastError(0);
server_call( REQ_CREATE_EVENT ); server_call( REQ_CREATE_EVENT );
if (req->handle == -1) return 0; if (req->handle == -1) return 0;
...@@ -35,12 +34,18 @@ HANDLE WINAPI CreateEventA( SECURITY_ATTRIBUTES *sa, BOOL manual_reset, ...@@ -35,12 +34,18 @@ HANDLE WINAPI CreateEventA( SECURITY_ATTRIBUTES *sa, BOOL manual_reset,
* CreateEvent32W (KERNEL32.157) * CreateEvent32W (KERNEL32.157)
*/ */
HANDLE WINAPI CreateEventW( SECURITY_ATTRIBUTES *sa, BOOL manual_reset, HANDLE WINAPI CreateEventW( SECURITY_ATTRIBUTES *sa, BOOL manual_reset,
BOOL initial_state, LPCWSTR name ) BOOL initial_state, LPCWSTR name )
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct create_event_request *req = get_req_buffer();
HANDLE ret = CreateEventA( sa, manual_reset, initial_state, nameA );
if (nameA) HeapFree( GetProcessHeap(), 0, nameA ); req->manual_reset = manual_reset;
return ret; req->initial_state = initial_state;
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
server_strcpyW( req->name, name );
SetLastError(0);
server_call( REQ_CREATE_EVENT );
if (req->handle == -1) return 0;
return req->handle;
} }
/*********************************************************************** /***********************************************************************
...@@ -61,7 +66,7 @@ HANDLE WINAPI OpenEventA( DWORD access, BOOL inherit, LPCSTR name ) ...@@ -61,7 +66,7 @@ HANDLE WINAPI OpenEventA( DWORD access, BOOL inherit, LPCSTR name )
req->access = access; req->access = access;
req->inherit = inherit; req->inherit = inherit;
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
server_call( REQ_OPEN_EVENT ); server_call( REQ_OPEN_EVENT );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */ if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle; return req->handle;
...@@ -73,10 +78,14 @@ HANDLE WINAPI OpenEventA( DWORD access, BOOL inherit, LPCSTR name ) ...@@ -73,10 +78,14 @@ HANDLE WINAPI OpenEventA( DWORD access, BOOL inherit, LPCSTR name )
*/ */
HANDLE WINAPI OpenEventW( DWORD access, BOOL inherit, LPCWSTR name ) HANDLE WINAPI OpenEventW( DWORD access, BOOL inherit, LPCWSTR name )
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct open_event_request *req = get_req_buffer();
HANDLE ret = OpenEventA( access, inherit, nameA );
if (nameA) HeapFree( GetProcessHeap(), 0, nameA ); req->access = access;
return ret; req->inherit = inherit;
server_strcpyW( req->name, name );
server_call( REQ_OPEN_EVENT );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle;
} }
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#include "winerror.h" #include "winerror.h"
#include "heap.h"
#include "server.h" #include "server.h"
...@@ -20,7 +19,7 @@ HANDLE WINAPI CreateMutexA( SECURITY_ATTRIBUTES *sa, BOOL owner, LPCSTR name ) ...@@ -20,7 +19,7 @@ HANDLE WINAPI CreateMutexA( SECURITY_ATTRIBUTES *sa, BOOL owner, LPCSTR name )
req->owned = owner; req->owned = owner;
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle); req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
SetLastError(0); SetLastError(0);
server_call( REQ_CREATE_MUTEX ); server_call( REQ_CREATE_MUTEX );
if (req->handle == -1) return 0; if (req->handle == -1) return 0;
...@@ -31,13 +30,17 @@ HANDLE WINAPI CreateMutexA( SECURITY_ATTRIBUTES *sa, BOOL owner, LPCSTR name ) ...@@ -31,13 +30,17 @@ HANDLE WINAPI CreateMutexA( SECURITY_ATTRIBUTES *sa, BOOL owner, LPCSTR name )
/*********************************************************************** /***********************************************************************
* CreateMutex32W (KERNEL32.167) * CreateMutex32W (KERNEL32.167)
*/ */
HANDLE WINAPI CreateMutexW( SECURITY_ATTRIBUTES *sa, BOOL owner, HANDLE WINAPI CreateMutexW( SECURITY_ATTRIBUTES *sa, BOOL owner, LPCWSTR name )
LPCWSTR name )
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct create_mutex_request *req = get_req_buffer();
HANDLE ret = CreateMutexA( sa, owner, nameA );
if (nameA) HeapFree( GetProcessHeap(), 0, nameA ); req->owned = owner;
return ret; req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
server_strcpyW( req->name, name );
SetLastError(0);
server_call( REQ_CREATE_MUTEX );
if (req->handle == -1) return 0;
return req->handle;
} }
...@@ -50,7 +53,7 @@ HANDLE WINAPI OpenMutexA( DWORD access, BOOL inherit, LPCSTR name ) ...@@ -50,7 +53,7 @@ HANDLE WINAPI OpenMutexA( DWORD access, BOOL inherit, LPCSTR name )
req->access = access; req->access = access;
req->inherit = inherit; req->inherit = inherit;
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
server_call( REQ_OPEN_MUTEX ); server_call( REQ_OPEN_MUTEX );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */ if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle; return req->handle;
...@@ -62,10 +65,14 @@ HANDLE WINAPI OpenMutexA( DWORD access, BOOL inherit, LPCSTR name ) ...@@ -62,10 +65,14 @@ HANDLE WINAPI OpenMutexA( DWORD access, BOOL inherit, LPCSTR name )
*/ */
HANDLE WINAPI OpenMutexW( DWORD access, BOOL inherit, LPCWSTR name ) HANDLE WINAPI OpenMutexW( DWORD access, BOOL inherit, LPCWSTR name )
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct open_mutex_request *req = get_req_buffer();
HANDLE ret = OpenMutexA( access, inherit, nameA );
if (nameA) HeapFree( GetProcessHeap(), 0, nameA ); req->access = access;
return ret; req->inherit = inherit;
server_strcpyW( req->name, name );
server_call( REQ_OPEN_MUTEX );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle;
} }
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#include "winerror.h" #include "winerror.h"
#include "heap.h"
#include "server.h" #include "server.h"
...@@ -29,7 +28,7 @@ HANDLE WINAPI CreateSemaphoreA( SECURITY_ATTRIBUTES *sa, LONG initial, LONG max, ...@@ -29,7 +28,7 @@ HANDLE WINAPI CreateSemaphoreA( SECURITY_ATTRIBUTES *sa, LONG initial, LONG max,
req->initial = (unsigned int)initial; req->initial = (unsigned int)initial;
req->max = (unsigned int)max; req->max = (unsigned int)max;
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle); req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
SetLastError(0); SetLastError(0);
server_call( REQ_CREATE_SEMAPHORE ); server_call( REQ_CREATE_SEMAPHORE );
if (req->handle == -1) return 0; if (req->handle == -1) return 0;
...@@ -43,10 +42,24 @@ HANDLE WINAPI CreateSemaphoreA( SECURITY_ATTRIBUTES *sa, LONG initial, LONG max, ...@@ -43,10 +42,24 @@ HANDLE WINAPI CreateSemaphoreA( SECURITY_ATTRIBUTES *sa, LONG initial, LONG max,
HANDLE WINAPI CreateSemaphoreW( SECURITY_ATTRIBUTES *sa, LONG initial, HANDLE WINAPI CreateSemaphoreW( SECURITY_ATTRIBUTES *sa, LONG initial,
LONG max, LPCWSTR name ) LONG max, LPCWSTR name )
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct create_semaphore_request *req = get_req_buffer();
HANDLE ret = CreateSemaphoreA( sa, initial, max, nameA );
if (nameA) HeapFree( GetProcessHeap(), 0, nameA ); /* Check parameters */
return ret;
if ((max <= 0) || (initial < 0) || (initial > max))
{
SetLastError( ERROR_INVALID_PARAMETER );
return 0;
}
req->initial = (unsigned int)initial;
req->max = (unsigned int)max;
req->inherit = (sa && (sa->nLength>=sizeof(*sa)) && sa->bInheritHandle);
server_strcpyW( req->name, name );
SetLastError(0);
server_call( REQ_CREATE_SEMAPHORE );
if (req->handle == -1) return 0;
return req->handle;
} }
...@@ -59,7 +72,7 @@ HANDLE WINAPI OpenSemaphoreA( DWORD access, BOOL inherit, LPCSTR name ) ...@@ -59,7 +72,7 @@ HANDLE WINAPI OpenSemaphoreA( DWORD access, BOOL inherit, LPCSTR name )
req->access = access; req->access = access;
req->inherit = inherit; req->inherit = inherit;
lstrcpynA( req->name, name ? name : "", server_remaining(req->name) ); server_strcpyAtoW( req->name, name );
server_call( REQ_OPEN_SEMAPHORE ); server_call( REQ_OPEN_SEMAPHORE );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */ if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle; return req->handle;
...@@ -71,10 +84,14 @@ HANDLE WINAPI OpenSemaphoreA( DWORD access, BOOL inherit, LPCSTR name ) ...@@ -71,10 +84,14 @@ HANDLE WINAPI OpenSemaphoreA( DWORD access, BOOL inherit, LPCSTR name )
*/ */
HANDLE WINAPI OpenSemaphoreW( DWORD access, BOOL inherit, LPCWSTR name ) HANDLE WINAPI OpenSemaphoreW( DWORD access, BOOL inherit, LPCWSTR name )
{ {
LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name ); struct open_semaphore_request *req = get_req_buffer();
HANDLE ret = OpenSemaphoreA( access, inherit, nameA );
if (nameA) HeapFree( GetProcessHeap(), 0, nameA ); req->access = access;
return ret; req->inherit = inherit;
server_strcpyW( req->name, name );
server_call( REQ_OPEN_SEMAPHORE );
if (req->handle == -1) return 0; /* must return 0 on failure, not -1 */
return req->handle;
} }
...@@ -83,6 +100,7 @@ HANDLE WINAPI OpenSemaphoreW( DWORD access, BOOL inherit, LPCWSTR name ) ...@@ -83,6 +100,7 @@ HANDLE WINAPI OpenSemaphoreW( DWORD access, BOOL inherit, LPCWSTR name )
*/ */
BOOL WINAPI ReleaseSemaphore( HANDLE handle, LONG count, LONG *previous ) BOOL WINAPI ReleaseSemaphore( HANDLE handle, LONG count, LONG *previous )
{ {
BOOL ret = FALSE;
struct release_semaphore_request *req = get_req_buffer(); struct release_semaphore_request *req = get_req_buffer();
if (count < 0) if (count < 0)
...@@ -92,7 +110,10 @@ BOOL WINAPI ReleaseSemaphore( HANDLE handle, LONG count, LONG *previous ) ...@@ -92,7 +110,10 @@ BOOL WINAPI ReleaseSemaphore( HANDLE handle, LONG count, LONG *previous )
} }
req->handle = handle; req->handle = handle;
req->count = (unsigned int)count; req->count = (unsigned int)count;
if (server_call( REQ_RELEASE_SEMAPHORE )) return FALSE; if (!server_call( REQ_RELEASE_SEMAPHORE ))
if (previous) *previous = req->prev_count; {
return TRUE; if (previous) *previous = req->prev_count;
ret = TRUE;
}
return ret;
} }
...@@ -27,7 +27,8 @@ C_SRCS = \ ...@@ -27,7 +27,8 @@ C_SRCS = \
sock.c \ sock.c \
socket.c \ socket.c \
thread.c \ thread.c \
trace.c trace.c \
unicode.c
EXTRA_SRCS = main.c EXTRA_SRCS = main.c
MAIN_OBJS = main.o MAIN_OBJS = main.o
......
...@@ -42,7 +42,7 @@ static const struct object_ops event_ops = ...@@ -42,7 +42,7 @@ static const struct object_ops event_ops =
}; };
static struct event *create_event( const char *name, size_t len, static struct event *create_event( const WCHAR *name, size_t len,
int manual_reset, int initial_state ) int manual_reset, int initial_state )
{ {
struct event *event; struct event *event;
...@@ -88,9 +88,10 @@ static void event_dump( struct object *obj, int verbose ) ...@@ -88,9 +88,10 @@ static void event_dump( struct object *obj, int verbose )
{ {
struct event *event = (struct event *)obj; struct event *event = (struct event *)obj;
assert( obj->ops == &event_ops ); assert( obj->ops == &event_ops );
fprintf( stderr, "Event manual=%d signaled=%d name='%s'\n", fprintf( stderr, "Event manual=%d signaled=%d ",
event->manual_reset, event->signaled, event->manual_reset, event->signaled );
get_object_name( &event->obj ) ); dump_object_name( &event->obj );
fputc( '\n', stderr );
} }
static int event_signaled( struct object *obj, struct thread *thread ) static int event_signaled( struct object *obj, struct thread *thread )
...@@ -112,7 +113,7 @@ static int event_satisfied( struct object *obj, struct thread *thread ) ...@@ -112,7 +113,7 @@ static int event_satisfied( struct object *obj, struct thread *thread )
/* create an event */ /* create an event */
DECL_HANDLER(create_event) DECL_HANDLER(create_event)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
struct event *event; struct event *event;
req->handle = -1; req->handle = -1;
...@@ -126,7 +127,7 @@ DECL_HANDLER(create_event) ...@@ -126,7 +127,7 @@ DECL_HANDLER(create_event)
/* open a handle to an event */ /* open a handle to an event */
DECL_HANDLER(open_event) DECL_HANDLER(open_event)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
req->handle = open_object( req->name, len, &event_ops, req->access, req->inherit ); req->handle = open_object( req->name, len, &event_ops, req->access, req->inherit );
} }
......
...@@ -399,22 +399,22 @@ int duplicate_handle( struct process *src, int src_handle, struct process *dst, ...@@ -399,22 +399,22 @@ int duplicate_handle( struct process *src, int src_handle, struct process *dst,
} }
/* open a new handle to an existing object */ /* open a new handle to an existing object */
int open_object( const char *name, size_t len, const struct object_ops *ops, int open_object( const WCHAR *name, size_t len, const struct object_ops *ops,
unsigned int access, int inherit ) unsigned int access, int inherit )
{ {
int handle = -1;
struct object *obj = find_object( name, len ); struct object *obj = find_object( name, len );
if (!obj) if (obj)
{
set_error( ERROR_FILE_NOT_FOUND );
return -1;
}
if (ops && obj->ops != ops)
{ {
if (ops && obj->ops != ops)
set_error( ERROR_INVALID_HANDLE );
else
handle = alloc_handle( current->process, obj, access, inherit );
release_object( obj ); release_object( obj );
set_error( ERROR_INVALID_HANDLE ); /* FIXME: not the right type */
return -1;
} }
return alloc_handle( current->process, obj, access, inherit ); else
set_error( ERROR_FILE_NOT_FOUND );
return handle;
} }
/* close a handle */ /* close a handle */
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#endif #endif
#include <stdlib.h> #include <stdlib.h>
#include "windef.h"
struct process; struct process;
struct object_ops; struct object_ops;
...@@ -27,7 +28,7 @@ extern struct object *get_handle_obj( struct process *process, int handle, ...@@ -27,7 +28,7 @@ extern struct object *get_handle_obj( struct process *process, int handle,
unsigned int access, const struct object_ops *ops ); unsigned int access, const struct object_ops *ops );
extern int duplicate_handle( struct process *src, int src_handle, struct process *dst, extern int duplicate_handle( struct process *src, int src_handle, struct process *dst,
unsigned int access, int inherit, int options ); unsigned int access, int inherit, int options );
extern int open_object( const char *name, size_t len, const struct object_ops *ops, extern int open_object( const WCHAR *name, size_t len, const struct object_ops *ops,
unsigned int access, int inherit ); unsigned int access, int inherit );
extern struct object *alloc_handle_table( struct process *process, int count ); extern struct object *alloc_handle_table( struct process *process, int count );
extern struct object *copy_handle_table( struct process *process, struct process *parent ); extern struct object *copy_handle_table( struct process *process, struct process *parent );
......
...@@ -84,7 +84,7 @@ static void init_page_size(void) ...@@ -84,7 +84,7 @@ static void init_page_size(void)
static struct object *create_mapping( int size_high, int size_low, int protect, static struct object *create_mapping( int size_high, int size_low, int protect,
int handle, const char *name, size_t len ) int handle, const WCHAR *name, size_t len )
{ {
struct mapping *mapping; struct mapping *mapping;
int access = 0; int access = 0;
...@@ -137,9 +137,10 @@ static void mapping_dump( struct object *obj, int verbose ) ...@@ -137,9 +137,10 @@ static void mapping_dump( struct object *obj, int verbose )
{ {
struct mapping *mapping = (struct mapping *)obj; struct mapping *mapping = (struct mapping *)obj;
assert( obj->ops == &mapping_ops ); assert( obj->ops == &mapping_ops );
fprintf( stderr, "Mapping size=%08x%08x prot=%08x file=%p name='%s'\n", fprintf( stderr, "Mapping size=%08x%08x prot=%08x file=%p ",
mapping->size_high, mapping->size_low, mapping->protect, mapping->size_high, mapping->size_low, mapping->protect, mapping->file );
mapping->file, get_object_name( &mapping->obj ) ); dump_object_name( &mapping->obj );
fputc( '\n', stderr );
} }
static void mapping_destroy( struct object *obj ) static void mapping_destroy( struct object *obj )
...@@ -158,7 +159,7 @@ int get_page_size(void) ...@@ -158,7 +159,7 @@ int get_page_size(void)
/* create a file mapping */ /* create a file mapping */
DECL_HANDLER(create_mapping) DECL_HANDLER(create_mapping)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
struct object *obj; struct object *obj;
req->handle = -1; req->handle = -1;
...@@ -175,7 +176,7 @@ DECL_HANDLER(create_mapping) ...@@ -175,7 +176,7 @@ DECL_HANDLER(create_mapping)
/* open a handle to a mapping */ /* open a handle to a mapping */
DECL_HANDLER(open_mapping) DECL_HANDLER(open_mapping)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
req->handle = open_object( req->name, len, &mapping_ops, req->access, req->inherit ); req->handle = open_object( req->name, len, &mapping_ops, req->access, req->inherit );
} }
......
...@@ -46,7 +46,7 @@ static const struct object_ops mutex_ops = ...@@ -46,7 +46,7 @@ static const struct object_ops mutex_ops =
}; };
static struct mutex *create_mutex( const char *name, size_t len, int owned ) static struct mutex *create_mutex( const WCHAR *name, size_t len, int owned )
{ {
struct mutex *mutex; struct mutex *mutex;
...@@ -94,8 +94,9 @@ static void mutex_dump( struct object *obj, int verbose ) ...@@ -94,8 +94,9 @@ static void mutex_dump( struct object *obj, int verbose )
{ {
struct mutex *mutex = (struct mutex *)obj; struct mutex *mutex = (struct mutex *)obj;
assert( obj->ops == &mutex_ops ); assert( obj->ops == &mutex_ops );
printf( "Mutex count=%u owner=%p name='%s'\n", fprintf( stderr, "Mutex count=%u owner=%p ", mutex->count, mutex->owner );
mutex->count, mutex->owner, get_object_name( &mutex->obj) ); dump_object_name( &mutex->obj );
fputc( '\n', stderr );
} }
static int mutex_signaled( struct object *obj, struct thread *thread ) static int mutex_signaled( struct object *obj, struct thread *thread )
...@@ -137,7 +138,7 @@ static void mutex_destroy( struct object *obj ) ...@@ -137,7 +138,7 @@ static void mutex_destroy( struct object *obj )
/* create a mutex */ /* create a mutex */
DECL_HANDLER(create_mutex) DECL_HANDLER(create_mutex)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
struct mutex *mutex; struct mutex *mutex;
req->handle = -1; req->handle = -1;
...@@ -151,7 +152,7 @@ DECL_HANDLER(create_mutex) ...@@ -151,7 +152,7 @@ DECL_HANDLER(create_mutex)
/* open a handle to a mutex */ /* open a handle to a mutex */
DECL_HANDLER(open_mutex) DECL_HANDLER(open_mutex)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
req->handle = open_object( req->name, len, &mutex_ops, req->access, req->inherit ); req->handle = open_object( req->name, len, &mutex_ops, req->access, req->inherit );
} }
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include "winerror.h" #include "winerror.h"
#include "thread.h" #include "thread.h"
#include "unicode.h"
int debug_level = 0; int debug_level = 0;
...@@ -22,7 +23,7 @@ struct object_name ...@@ -22,7 +23,7 @@ struct object_name
struct object_name *prev; struct object_name *prev;
struct object *obj; struct object *obj;
size_t len; size_t len;
char name[1]; WCHAR name[1];
}; };
#define NAME_HASH_SIZE 37 #define NAME_HASH_SIZE 37
...@@ -66,22 +67,22 @@ void *memdup( const void *data, size_t len ) ...@@ -66,22 +67,22 @@ void *memdup( const void *data, size_t len )
/*****************************************************************/ /*****************************************************************/
static int get_name_hash( const char *name, size_t len ) static int get_name_hash( const WCHAR *name, size_t len )
{ {
char hash = 0; WCHAR hash = 0;
while (len--) hash ^= *name++; while (len--) hash ^= *name++;
return hash % NAME_HASH_SIZE; return hash % NAME_HASH_SIZE;
} }
/* allocate a name for an object */ /* allocate a name for an object */
static struct object_name *alloc_name( const char *name, size_t len ) static struct object_name *alloc_name( const WCHAR *name, size_t len )
{ {
struct object_name *ptr; struct object_name *ptr;
if ((ptr = mem_alloc( sizeof(*ptr) + len ))) if ((ptr = mem_alloc( sizeof(*ptr) + len * sizeof(ptr->name[0]) )))
{ {
ptr->len = len; ptr->len = len;
memcpy( ptr->name, name, len ); memcpy( ptr->name, name, len * sizeof(ptr->name[0]) );
ptr->name[len] = 0; ptr->name[len] = 0;
} }
return ptr; return ptr;
...@@ -139,7 +140,7 @@ void *alloc_object( const struct object_ops *ops ) ...@@ -139,7 +140,7 @@ void *alloc_object( const struct object_ops *ops )
return obj; return obj;
} }
void *create_named_object( const struct object_ops *ops, const char *name, size_t len ) void *create_named_object( const struct object_ops *ops, const WCHAR *name, size_t len )
{ {
struct object *obj; struct object *obj;
struct object_name *name_ptr; struct object_name *name_ptr;
...@@ -167,11 +168,16 @@ void *create_named_object( const struct object_ops *ops, const char *name, size_ ...@@ -167,11 +168,16 @@ void *create_named_object( const struct object_ops *ops, const char *name, size_
return obj; return obj;
} }
/* return a pointer to the object name, or to an empty string */ /* dump the name of an object to stderr */
const char *get_object_name( struct object *obj ) void dump_object_name( struct object *obj )
{ {
if (!obj->name) return ""; if (!obj->name) fprintf( stderr, "name=\"\"" );
return obj->name->name; else
{
fprintf( stderr, "name=L\"" );
dump_strW( obj->name->name, strlenW(obj->name->name), stderr, "\"\"" );
fputc( '\"', stderr );
}
} }
/* grab an object (i.e. increment its refcount) and return the object */ /* grab an object (i.e. increment its refcount) and return the object */
...@@ -206,14 +212,14 @@ void release_object( void *ptr ) ...@@ -206,14 +212,14 @@ void release_object( void *ptr )
} }
/* find an object by its name; the refcount is incremented */ /* find an object by its name; the refcount is incremented */
struct object *find_object( const char *name, size_t len ) struct object *find_object( const WCHAR *name, size_t len )
{ {
struct object_name *ptr; struct object_name *ptr;
if (!name || !len) return NULL; if (!name || !len) return NULL;
for (ptr = names[ get_name_hash( name, len ) ]; ptr; ptr = ptr->next) for (ptr = names[ get_name_hash( name, len ) ]; ptr; ptr = ptr->next)
{ {
if (ptr->len != len) continue; if (ptr->len != len) continue;
if (!memcmp( ptr->name, name, len )) return grab_object( ptr->obj ); if (!memcmp( ptr->name, name, len*sizeof(WCHAR) )) return grab_object( ptr->obj );
} }
return NULL; return NULL;
} }
......
...@@ -68,13 +68,13 @@ struct object ...@@ -68,13 +68,13 @@ struct object
extern void *mem_alloc( size_t size ); /* malloc wrapper */ extern void *mem_alloc( size_t size ); /* malloc wrapper */
extern void *memdup( const void *data, size_t len ); extern void *memdup( const void *data, size_t len );
extern void *alloc_object( const struct object_ops *ops ); extern void *alloc_object( const struct object_ops *ops );
extern const char *get_object_name( struct object *obj ); extern void dump_object_name( struct object *obj );
extern void *create_named_object( const struct object_ops *ops, const char *name, size_t len ); extern void *create_named_object( const struct object_ops *ops, const WCHAR *name, size_t len );
/* grab/release_object can take any pointer, but you better make sure */ /* grab/release_object can take any pointer, but you better make sure */
/* that the thing pointed to starts with a struct object... */ /* that the thing pointed to starts with a struct object... */
extern struct object *grab_object( void *obj ); extern struct object *grab_object( void *obj );
extern void release_object( void *obj ); extern void release_object( void *obj );
extern struct object *find_object( const char *name, size_t len ); extern struct object *find_object( const WCHAR *name, size_t len );
extern int no_add_queue( struct object *obj, struct wait_queue_entry *entry ); extern int no_add_queue( struct object *obj, struct wait_queue_entry *entry );
extern int no_satisfied( struct object *obj, struct thread *thread ); extern int no_satisfied( struct object *obj, struct thread *thread );
extern int no_read_fd( struct object *obj ); extern int no_read_fd( struct object *obj );
......
...@@ -129,50 +129,6 @@ static const struct object_ops key_ops = ...@@ -129,50 +129,6 @@ static const struct object_ops key_ops =
* - REG_EXPAND_SZ and REG_MULTI_SZ are saved as strings instead of hex * - REG_EXPAND_SZ and REG_MULTI_SZ are saved as strings instead of hex
*/ */
/* dump a string to a text file with proper escaping */
static int dump_strW( const WCHAR *str, int len, FILE *f, char escape[2] )
{
static const char escapes[32] = ".......abtnvfr.............e....";
char buffer[256];
char *pos = buffer;
int count = 0;
for (; len; str++, len--)
{
if (pos > buffer + sizeof(buffer) - 8)
{
fwrite( buffer, pos - buffer, 1, f );
count += pos - buffer;
pos = buffer;
}
if (*str > 127) /* hex escape */
{
if (len > 1 && str[1] < 128 && isxdigit((char)str[1]))
pos += sprintf( pos, "\\x%04x", *str );
else
pos += sprintf( pos, "\\x%x", *str );
continue;
}
if (*str < 32) /* octal or C escape */
{
if (!*str && len == 1) continue; /* do not output terminating NULL */
if (escapes[*str] != '.')
pos += sprintf( pos, "\\%c", escapes[*str] );
else if (len > 1 && str[1] >= '0' && str[1] <= '7')
pos += sprintf( pos, "\\%03o", *str );
else
pos += sprintf( pos, "\\%o", *str );
continue;
}
if (*str == '\\' || *str == escape[0] || *str == escape[1]) *pos++ = '\\';
*pos++ = *str;
}
fwrite( buffer, pos - buffer, 1, f );
count += pos - buffer;
return count;
}
static inline char to_hex( char ch ) static inline char to_hex( char ch )
{ {
if (isdigit(ch)) return ch - '0'; if (isdigit(ch)) return ch - '0';
......
...@@ -42,7 +42,7 @@ static const struct object_ops semaphore_ops = ...@@ -42,7 +42,7 @@ static const struct object_ops semaphore_ops =
}; };
static struct semaphore *create_semaphore( const char *name, size_t len, static struct semaphore *create_semaphore( const WCHAR *name, size_t len,
unsigned int initial, unsigned int max ) unsigned int initial, unsigned int max )
{ {
struct semaphore *sem; struct semaphore *sem;
...@@ -97,8 +97,9 @@ static void semaphore_dump( struct object *obj, int verbose ) ...@@ -97,8 +97,9 @@ static void semaphore_dump( struct object *obj, int verbose )
{ {
struct semaphore *sem = (struct semaphore *)obj; struct semaphore *sem = (struct semaphore *)obj;
assert( obj->ops == &semaphore_ops ); assert( obj->ops == &semaphore_ops );
fprintf( stderr, "Semaphore count=%d max=%d name='%s'\n", fprintf( stderr, "Semaphore count=%d max=%d ", sem->count, sem->max );
sem->count, sem->max, get_object_name( &sem->obj ) ); dump_object_name( &sem->obj );
fputc( '\n', stderr );
} }
static int semaphore_signaled( struct object *obj, struct thread *thread ) static int semaphore_signaled( struct object *obj, struct thread *thread )
...@@ -120,7 +121,7 @@ static int semaphore_satisfied( struct object *obj, struct thread *thread ) ...@@ -120,7 +121,7 @@ static int semaphore_satisfied( struct object *obj, struct thread *thread )
/* create a semaphore */ /* create a semaphore */
DECL_HANDLER(create_semaphore) DECL_HANDLER(create_semaphore)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
struct semaphore *sem; struct semaphore *sem;
req->handle = -1; req->handle = -1;
...@@ -134,7 +135,7 @@ DECL_HANDLER(create_semaphore) ...@@ -134,7 +135,7 @@ DECL_HANDLER(create_semaphore)
/* open a handle to a semaphore */ /* open a handle to a semaphore */
DECL_HANDLER(open_semaphore) DECL_HANDLER(open_semaphore)
{ {
size_t len = get_req_strlen( req->name ); size_t len = get_req_strlenW( req->name );
req->handle = open_object( req->name, len, &semaphore_ops, req->access, req->inherit ); req->handle = open_object( req->name, len, &semaphore_ops, req->access, req->inherit );
} }
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <sys/uio.h> #include <sys/uio.h>
#include "winsock2.h" #include "winsock2.h"
#include "request.h" #include "request.h"
#include "unicode.h"
/* utility functions */ /* utility functions */
...@@ -39,12 +40,8 @@ static void dump_bytes( const unsigned char *ptr, int len ) ...@@ -39,12 +40,8 @@ static void dump_bytes( const unsigned char *ptr, int len )
static void dump_unicode_string( const WCHAR *str ) static void dump_unicode_string( const WCHAR *str )
{ {
fprintf( stderr, "L\"" ); fprintf( stderr, "L\"" );
while (*str) dump_strW( str, strlenW(str), stderr, "\"\"" );
{ fputc( '\"', stderr );
fprintf( stderr, "%c", isprint( (char)*str ) ? (char )*str : '?' );
str++;
}
fprintf( stderr, "\"" );
} }
...@@ -341,7 +338,8 @@ static void dump_create_event_request( struct create_event_request *req ) ...@@ -341,7 +338,8 @@ static void dump_create_event_request( struct create_event_request *req )
fprintf( stderr, " manual_reset=%d,", req->manual_reset ); fprintf( stderr, " manual_reset=%d,", req->manual_reset );
fprintf( stderr, " initial_state=%d,", req->initial_state ); fprintf( stderr, " initial_state=%d,", req->initial_state );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_create_event_reply( struct create_event_request *req ) static void dump_create_event_reply( struct create_event_request *req )
...@@ -359,7 +357,8 @@ static void dump_open_event_request( struct open_event_request *req ) ...@@ -359,7 +357,8 @@ static void dump_open_event_request( struct open_event_request *req )
{ {
fprintf( stderr, " access=%08x,", req->access ); fprintf( stderr, " access=%08x,", req->access );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_open_event_reply( struct open_event_request *req ) static void dump_open_event_reply( struct open_event_request *req )
...@@ -371,7 +370,8 @@ static void dump_create_mutex_request( struct create_mutex_request *req ) ...@@ -371,7 +370,8 @@ static void dump_create_mutex_request( struct create_mutex_request *req )
{ {
fprintf( stderr, " owned=%d,", req->owned ); fprintf( stderr, " owned=%d,", req->owned );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_create_mutex_reply( struct create_mutex_request *req ) static void dump_create_mutex_reply( struct create_mutex_request *req )
...@@ -388,7 +388,8 @@ static void dump_open_mutex_request( struct open_mutex_request *req ) ...@@ -388,7 +388,8 @@ static void dump_open_mutex_request( struct open_mutex_request *req )
{ {
fprintf( stderr, " access=%08x,", req->access ); fprintf( stderr, " access=%08x,", req->access );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_open_mutex_reply( struct open_mutex_request *req ) static void dump_open_mutex_reply( struct open_mutex_request *req )
...@@ -401,7 +402,8 @@ static void dump_create_semaphore_request( struct create_semaphore_request *req ...@@ -401,7 +402,8 @@ static void dump_create_semaphore_request( struct create_semaphore_request *req
fprintf( stderr, " initial=%08x,", req->initial ); fprintf( stderr, " initial=%08x,", req->initial );
fprintf( stderr, " max=%08x,", req->max ); fprintf( stderr, " max=%08x,", req->max );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_create_semaphore_reply( struct create_semaphore_request *req ) static void dump_create_semaphore_reply( struct create_semaphore_request *req )
...@@ -424,7 +426,8 @@ static void dump_open_semaphore_request( struct open_semaphore_request *req ) ...@@ -424,7 +426,8 @@ static void dump_open_semaphore_request( struct open_semaphore_request *req )
{ {
fprintf( stderr, " access=%08x,", req->access ); fprintf( stderr, " access=%08x,", req->access );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_open_semaphore_reply( struct open_semaphore_request *req ) static void dump_open_semaphore_reply( struct open_semaphore_request *req )
...@@ -718,7 +721,8 @@ static void dump_create_mapping_request( struct create_mapping_request *req ) ...@@ -718,7 +721,8 @@ static void dump_create_mapping_request( struct create_mapping_request *req )
fprintf( stderr, " protect=%d,", req->protect ); fprintf( stderr, " protect=%d,", req->protect );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " file_handle=%d,", req->file_handle ); fprintf( stderr, " file_handle=%d,", req->file_handle );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_create_mapping_reply( struct create_mapping_request *req ) static void dump_create_mapping_reply( struct create_mapping_request *req )
...@@ -730,7 +734,8 @@ static void dump_open_mapping_request( struct open_mapping_request *req ) ...@@ -730,7 +734,8 @@ static void dump_open_mapping_request( struct open_mapping_request *req )
{ {
fprintf( stderr, " access=%08x,", req->access ); fprintf( stderr, " access=%08x,", req->access );
fprintf( stderr, " inherit=%d,", req->inherit ); fprintf( stderr, " inherit=%d,", req->inherit );
fprintf( stderr, " name=\"%s\"", req->name ); fprintf( stderr, " name=" );
dump_unicode_string( req->name );
} }
static void dump_open_mapping_reply( struct open_mapping_request *req ) static void dump_open_mapping_reply( struct open_mapping_request *req )
......
/*
* Unicode routines for use inside the server
*
* Copyright (C) 1999 Alexandre Julliard
*/
#include <stdio.h>
#include "unicode.h"
/* dump a Unicode string with proper escaping */
int dump_strW( const WCHAR *str, size_t len, FILE *f, char escape[2] )
{
static const char escapes[32] = ".......abtnvfr.............e....";
char buffer[256];
char *pos = buffer;
int count = 0;
for (; len; str++, len--)
{
if (pos > buffer + sizeof(buffer) - 8)
{
fwrite( buffer, pos - buffer, 1, f );
count += pos - buffer;
pos = buffer;
}
if (*str > 127) /* hex escape */
{
if (len > 1 && str[1] < 128 && isxdigit((char)str[1]))
pos += sprintf( pos, "\\x%04x", *str );
else
pos += sprintf( pos, "\\x%x", *str );
continue;
}
if (*str < 32) /* octal or C escape */
{
if (!*str && len == 1) continue; /* do not output terminating NULL */
if (escapes[*str] != '.')
pos += sprintf( pos, "\\%c", escapes[*str] );
else if (len > 1 && str[1] >= '0' && str[1] <= '7')
pos += sprintf( pos, "\\%03o", *str );
else
pos += sprintf( pos, "\\%o", *str );
continue;
}
if (*str == '\\' || *str == escape[0] || *str == escape[1]) *pos++ = '\\';
*pos++ = *str;
}
fwrite( buffer, pos - buffer, 1, f );
count += pos - buffer;
return count;
}
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#endif #endif
#include "windef.h" #include "windef.h"
#include "object.h"
static inline size_t strlenW( const WCHAR *str ) static inline size_t strlenW( const WCHAR *str )
{ {
...@@ -52,4 +53,6 @@ static inline WCHAR *strdupW( const WCHAR *str ) ...@@ -52,4 +53,6 @@ static inline WCHAR *strdupW( const WCHAR *str )
return memdup( str, len ); return memdup( str, len );
} }
extern int dump_strW( const WCHAR *str, size_t len, FILE *f, char escape[2] );
#endif /* __WINE_SERVER_UNICODE_H */ #endif /* __WINE_SERVER_UNICODE_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment