Added patch to use wrapper functions for syscalls to appease Chromium sandbox (32-bit).

This commit is contained in:
Sebastian Lackner
2015-10-16 03:48:10 +02:00
parent 032bf69aa7
commit 216a2d8994
11 changed files with 2180 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
From 587d4844b3971d80d46e5641c29844b75756597c Mon Sep 17 00:00:00 2001
From 9b3593fa8fd314cfed362318927450d9d14359e0 Mon Sep 17 00:00:00 2001
From: Sebastian Lackner <sebastian@fds-team.de>
Date: Sat, 6 Jun 2015 07:03:33 +0800
Subject: ntdll: Improve stub of NtQueryEaFile.
@@ -10,15 +10,15 @@ Based on a patch by Qian Hong.
2 files changed, 98 insertions(+), 4 deletions(-)
diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c
index be6b591..8c8e976 100644
index f75463a..d1a7c4c 100644
--- a/dlls/ntdll/file.c
+++ b/dlls/ntdll/file.c
@@ -3293,14 +3293,25 @@ NTSTATUS WINAPI NtQueryVolumeInformationFile( HANDLE handle, PIO_STATUS_BLOCK io
* Success: 0. Atrributes read into buffer
@@ -3324,14 +3324,25 @@ NTSTATUS WINAPI SYSCALL(NtQueryVolumeInformationFile)( HANDLE handle, PIO_STATUS
* Failure: An NTSTATUS error code describing the error.
*/
-NTSTATUS WINAPI NtQueryEaFile( HANDLE hFile, PIO_STATUS_BLOCK iosb, PVOID buffer, ULONG length,
+NTSTATUS WINAPI NtQueryEaFile( HANDLE handle, PIO_STATUS_BLOCK iosb, PVOID buffer, ULONG length,
DEFINE_SYSCALL_ENTRYPOINT( NtQueryEaFile, 9 );
-NTSTATUS WINAPI SYSCALL(NtQueryEaFile)( HANDLE hFile, PIO_STATUS_BLOCK iosb, PVOID buffer, ULONG length,
+NTSTATUS WINAPI SYSCALL(NtQueryEaFile)( HANDLE handle, PIO_STATUS_BLOCK iosb, PVOID buffer, ULONG length,
BOOLEAN single_entry, PVOID ea_list, ULONG ea_list_len,
PULONG ea_index, BOOLEAN restart )
{
@@ -44,7 +44,7 @@ index be6b591..8c8e976 100644
diff --git a/dlls/ntdll/tests/file.c b/dlls/ntdll/tests/file.c
index 1afb9c8..f13c9a9 100644
index b8f1847..55e34ad 100644
--- a/dlls/ntdll/tests/file.c
+++ b/dlls/ntdll/tests/file.c
@@ -79,6 +79,7 @@ static NTSTATUS (WINAPI *pNtQueryDirectoryFile)(HANDLE,HANDLE,PIO_APC_ROUTINE,PV
@@ -55,7 +55,7 @@ index 1afb9c8..f13c9a9 100644
static inline BOOL is_signaled( HANDLE obj )
{
@@ -4161,6 +4162,86 @@ static void test_read_write(void)
@@ -4192,6 +4193,86 @@ static void test_read_write(void)
CloseHandle(hfile);
}
@@ -142,7 +142,7 @@ index 1afb9c8..f13c9a9 100644
START_TEST(file)
{
HMODULE hkernel32 = GetModuleHandleA("kernel32.dll");
@@ -4197,6 +4278,7 @@ START_TEST(file)
@@ -4228,6 +4309,7 @@ START_TEST(file)
pNtQueryDirectoryFile = (void *)GetProcAddress(hntdll, "NtQueryDirectoryFile");
pNtQueryVolumeInformationFile = (void *)GetProcAddress(hntdll, "NtQueryVolumeInformationFile");
pNtQueryFullAttributesFile = (void *)GetProcAddress(hntdll, "NtQueryFullAttributesFile");
@@ -150,12 +150,12 @@ index 1afb9c8..f13c9a9 100644
test_read_write();
test_NtCreateFile();
@@ -4218,4 +4300,5 @@ START_TEST(file)
@@ -4249,4 +4331,5 @@ START_TEST(file)
test_file_disposition_information();
test_query_volume_information_file();
test_query_attribute_information_file();
+ test_query_ea();
}
--
2.5.1
2.6.1

View File

@@ -1 +1,2 @@
Fixes: Improve stub for NtQueryEaFile
Depends: ntdll-Syscall_Wrappers