Commit f297fd80 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

kernel32: Add stub implementations of GetNamedPipeClient/ServerSessionId.

parent dedd4506
...@@ -728,12 +728,12 @@ ...@@ -728,12 +728,12 @@
# @ stub GetNamedPipeClientComputerNameA # @ stub GetNamedPipeClientComputerNameA
# @ stub GetNamedPipeClientComputerNameW # @ stub GetNamedPipeClientComputerNameW
@ stdcall GetNamedPipeClientProcessId(long ptr) @ stdcall GetNamedPipeClientProcessId(long ptr)
# @ stub GetNamedPipeClientSessionId @ stdcall GetNamedPipeClientSessionId(long ptr)
@ stdcall GetNamedPipeHandleStateA(long ptr ptr ptr ptr str long) @ stdcall GetNamedPipeHandleStateA(long ptr ptr ptr ptr str long)
@ stdcall GetNamedPipeHandleStateW(long ptr ptr ptr ptr wstr long) @ stdcall GetNamedPipeHandleStateW(long ptr ptr ptr ptr wstr long)
@ stdcall GetNamedPipeInfo(long ptr ptr ptr ptr) @ stdcall GetNamedPipeInfo(long ptr ptr ptr ptr)
@ stdcall GetNamedPipeServerProcessId(long ptr) @ stdcall GetNamedPipeServerProcessId(long ptr)
# @ stub GetNamedPipeServerSessionId @ stdcall GetNamedPipeServerSessionId(long ptr)
@ stdcall GetNativeSystemInfo(ptr) @ stdcall GetNativeSystemInfo(ptr)
@ stdcall -arch=x86_64 GetNextUmsListItem(ptr) @ stdcall -arch=x86_64 GetNextUmsListItem(ptr)
@ stub GetNextVDMCommand @ stub GetNextVDMCommand
......
...@@ -1827,6 +1827,30 @@ BOOL WINAPI GetNamedPipeServerProcessId( HANDLE pipe, ULONG *id ) ...@@ -1827,6 +1827,30 @@ BOOL WINAPI GetNamedPipeServerProcessId( HANDLE pipe, ULONG *id )
} }
/*********************************************************************** /***********************************************************************
* GetNamedPipeClientSessionId (KERNEL32.@)
*/
BOOL WINAPI GetNamedPipeClientSessionId( HANDLE pipe, ULONG *id )
{
FIXME( "%p, %p\n", pipe, id );
if (!id) return FALSE;
*id = NtCurrentTeb()->Peb->SessionId;
return TRUE;
}
/***********************************************************************
* GetNamedPipeServerSessionId (KERNEL32.@)
*/
BOOL WINAPI GetNamedPipeServerSessionId( HANDLE pipe, ULONG *id )
{
FIXME( "%p, %p\n", pipe, id );
if (!id) return FALSE;
*id = NtCurrentTeb()->Peb->SessionId;
return TRUE;
}
/***********************************************************************
* GetNamedPipeHandleStateA (KERNEL32.@) * GetNamedPipeHandleStateA (KERNEL32.@)
*/ */
BOOL WINAPI GetNamedPipeHandleStateA( BOOL WINAPI GetNamedPipeHandleStateA(
......
...@@ -40,6 +40,8 @@ static DWORD (WINAPI *pQueueUserAPC)(PAPCFUNC pfnAPC, HANDLE hThread, ULONG_PTR ...@@ -40,6 +40,8 @@ static DWORD (WINAPI *pQueueUserAPC)(PAPCFUNC pfnAPC, HANDLE hThread, ULONG_PTR
static BOOL (WINAPI *pCancelIoEx)(HANDLE handle, LPOVERLAPPED lpOverlapped); static BOOL (WINAPI *pCancelIoEx)(HANDLE handle, LPOVERLAPPED lpOverlapped);
static BOOL (WINAPI *pGetNamedPipeClientProcessId)(HANDLE,ULONG*); static BOOL (WINAPI *pGetNamedPipeClientProcessId)(HANDLE,ULONG*);
static BOOL (WINAPI *pGetNamedPipeServerProcessId)(HANDLE,ULONG*); static BOOL (WINAPI *pGetNamedPipeServerProcessId)(HANDLE,ULONG*);
static BOOL (WINAPI *pGetNamedPipeClientSessionId)(HANDLE,ULONG*);
static BOOL (WINAPI *pGetNamedPipeServerSessionId)(HANDLE,ULONG*);
static BOOL user_apc_ran; static BOOL user_apc_ran;
static void CALLBACK user_apc(ULONG_PTR param) static void CALLBACK user_apc(ULONG_PTR param)
...@@ -3449,6 +3451,147 @@ static void test_namedpipe_process_id(void) ...@@ -3449,6 +3451,147 @@ static void test_namedpipe_process_id(void)
CloseHandle(server); CloseHandle(server);
} }
static void child_process_check_session_id(DWORD server_id)
{
DWORD current;
HANDLE pipe;
ULONG id;
BOOL ret;
ProcessIdToSessionId(GetProcessId(GetCurrentProcess()), &current);
pipe = CreateFileA(PIPENAME, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
ok(pipe != INVALID_HANDLE_VALUE, "got %u\n", GetLastError());
id = 0;
ret = pGetNamedPipeClientSessionId(pipe, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %04x\n", id);
id = 0;
ret = pGetNamedPipeServerSessionId(pipe, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == server_id, "got %04x expected %04x\n", id, server_id);
CloseHandle(pipe);
}
static void test_namedpipe_session_id(void)
{
HANDLE client, server, process;
OVERLAPPED overlapped;
DWORD current;
ULONG id;
BOOL ret;
if (!pGetNamedPipeClientSessionId)
{
win_skip("GetNamedPipeClientSessionId not available\n");
return;
}
ProcessIdToSessionId(GetProcessId(GetCurrentProcess()), &current);
create_overlapped_pipe(PIPE_TYPE_BYTE, &client, &server);
SetLastError(0xdeadbeef);
ret = pGetNamedPipeClientSessionId(server, NULL);
ok(!ret, "success\n");
todo_wine ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
id = 0;
ret = pGetNamedPipeClientSessionId(server, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %u expected %u\n", id, current);
id = 0;
ret = pGetNamedPipeClientSessionId(client, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %u expected %u\n", id, current);
SetLastError(0xdeadbeef);
ret = pGetNamedPipeServerSessionId(server, NULL);
ok(!ret, "success\n");
todo_wine ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "got %u\n", GetLastError());
id = 0;
ret = pGetNamedPipeServerSessionId(client, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %u expected %u\n", id, current);
id = 0;
ret = pGetNamedPipeServerSessionId(server, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %u expected %u\n", id, current);
/* closed client handle */
CloseHandle(client);
id = 0;
ret = pGetNamedPipeClientSessionId(server, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %04x expected %04x\n", id, current);
id = 0;
ret = pGetNamedPipeServerSessionId(server, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %04x expected %04x\n", id, current);
CloseHandle(server);
/* disconnected server */
create_overlapped_pipe(PIPE_TYPE_BYTE, &client, &server);
DisconnectNamedPipe(server);
SetLastError(0xdeadbeef);
ret = pGetNamedPipeClientSessionId(server, &id);
todo_wine ok(!ret, "success\n");
todo_wine ok(GetLastError() == ERROR_NOT_FOUND, "got %u\n", GetLastError());
id = 0;
ret = pGetNamedPipeServerSessionId(server, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %04x expected %04x\n", id, current);
SetLastError(0xdeadbeef);
ret = pGetNamedPipeClientSessionId(client, &id);
todo_wine ok(!ret, "success\n");
todo_wine ok(GetLastError() == ERROR_PIPE_NOT_CONNECTED, "got %u\n", GetLastError());
SetLastError(0xdeadbeef);
ret = pGetNamedPipeServerSessionId(client, &id);
todo_wine ok(!ret, "success\n");
todo_wine ok(GetLastError() == ERROR_PIPE_NOT_CONNECTED, "got %u\n", GetLastError());
CloseHandle(client);
CloseHandle(server);
/* closed server handle */
create_overlapped_pipe(PIPE_TYPE_BYTE, &client, &server);
CloseHandle(server);
id = 0;
ret = pGetNamedPipeClientSessionId(client, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %04x expected %04x\n", id, current);
id = 0;
ret = pGetNamedPipeServerSessionId(client, &id);
ok(ret, "got %u\n", GetLastError());
ok(id == current, "got %04x expected %04x\n", id, current);
CloseHandle(client);
/* different process */
memset(&overlapped, 0, sizeof(overlapped));
overlapped.hEvent = CreateEventW(NULL, TRUE, FALSE, NULL);
server = create_overlapped_server( &overlapped );
ok(server != INVALID_HANDLE_VALUE, "got %u\n", GetLastError());
process = create_check_id_process("checksessionid", current);
winetest_wait_child_process(process);
CloseHandle(overlapped.hEvent);
CloseHandle(process);
CloseHandle(server);
}
START_TEST(pipe) START_TEST(pipe)
{ {
char **argv; char **argv;
...@@ -3462,6 +3605,8 @@ START_TEST(pipe) ...@@ -3462,6 +3605,8 @@ START_TEST(pipe)
pCancelIoEx = (void *) GetProcAddress(hmod, "CancelIoEx"); pCancelIoEx = (void *) GetProcAddress(hmod, "CancelIoEx");
pGetNamedPipeClientProcessId = (void *) GetProcAddress(hmod, "GetNamedPipeClientProcessId"); pGetNamedPipeClientProcessId = (void *) GetProcAddress(hmod, "GetNamedPipeClientProcessId");
pGetNamedPipeServerProcessId = (void *) GetProcAddress(hmod, "GetNamedPipeServerProcessId"); pGetNamedPipeServerProcessId = (void *) GetProcAddress(hmod, "GetNamedPipeServerProcessId");
pGetNamedPipeClientSessionId = (void *) GetProcAddress(hmod, "GetNamedPipeClientSessionId");
pGetNamedPipeServerSessionId = (void *) GetProcAddress(hmod, "GetNamedPipeServerSessionId");
argc = winetest_get_mainargs(&argv); argc = winetest_get_mainargs(&argv);
...@@ -3481,6 +3626,14 @@ START_TEST(pipe) ...@@ -3481,6 +3626,14 @@ START_TEST(pipe)
child_process_check_pid(pid); child_process_check_pid(pid);
return; return;
} }
if (!strcmp(argv[2], "checksessionid"))
{
DWORD id;
ProcessIdToSessionId(GetProcessId(GetCurrentProcess()), &id);
sscanf(argv[3], "%x", &id);
child_process_check_session_id(id);
return;
}
} }
if (test_DisconnectNamedPipe()) if (test_DisconnectNamedPipe())
...@@ -3503,4 +3656,5 @@ START_TEST(pipe) ...@@ -3503,4 +3656,5 @@ START_TEST(pipe)
test_overlapped_transport(FALSE, FALSE); test_overlapped_transport(FALSE, FALSE);
test_TransactNamedPipe(); test_TransactNamedPipe();
test_namedpipe_process_id(); test_namedpipe_process_id();
test_namedpipe_session_id();
} }
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