101 lines
3.1 KiB
C
101 lines
3.1 KiB
C
/*
|
|
* WoW64 file functions
|
|
*
|
|
* Copyright 2021 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "ntstatus.h"
|
|
#define WIN32_NO_STATUS
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winnt.h"
|
|
#include "winternl.h"
|
|
#include "wow64_private.h"
|
|
|
|
|
|
/**********************************************************************
|
|
* wow64_NtCreateFile
|
|
*/
|
|
NTSTATUS WINAPI wow64_NtCreateFile( UINT *args )
|
|
{
|
|
ULONG *handle_ptr = get_ptr( &args );
|
|
ACCESS_MASK access = get_ulong( &args );
|
|
OBJECT_ATTRIBUTES32 *attr32 = get_ptr( &args );
|
|
IO_STATUS_BLOCK32 *io32 = get_ptr( &args );
|
|
LARGE_INTEGER *alloc_size = get_ptr( &args );
|
|
ULONG attributes = get_ulong( &args );
|
|
ULONG sharing = get_ulong( &args );
|
|
ULONG disposition = get_ulong( &args );
|
|
ULONG options = get_ulong( &args );
|
|
void *ea_buffer = get_ptr( &args );
|
|
ULONG ea_length = get_ulong( &args );
|
|
|
|
struct object_attr64 attr;
|
|
IO_STATUS_BLOCK io;
|
|
HANDLE handle = 0;
|
|
NTSTATUS status;
|
|
|
|
*handle_ptr = 0;
|
|
status = NtCreateFile( &handle, access, objattr_32to64( &attr, attr32 ),
|
|
iosb_32to64( &io, io32 ), alloc_size, attributes,
|
|
sharing, disposition, options, ea_buffer, ea_length );
|
|
put_handle( handle_ptr, handle );
|
|
put_iosb( io32, &io );
|
|
return status;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* wow64_NtDeleteFile
|
|
*/
|
|
NTSTATUS WINAPI wow64_NtDeleteFile( UINT *args )
|
|
{
|
|
OBJECT_ATTRIBUTES32 *attr32 = get_ptr( &args );
|
|
|
|
struct object_attr64 attr;
|
|
|
|
return NtDeleteFile( objattr_32to64( &attr, attr32 ));
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* wow64_NtOpenFile
|
|
*/
|
|
NTSTATUS WINAPI wow64_NtOpenFile( UINT *args )
|
|
{
|
|
ULONG *handle_ptr = get_ptr( &args );
|
|
ACCESS_MASK access = get_ulong( &args );
|
|
OBJECT_ATTRIBUTES32 *attr32 = get_ptr( &args );
|
|
IO_STATUS_BLOCK32 *io32 = get_ptr( &args );
|
|
ULONG sharing = get_ulong( &args );
|
|
ULONG options = get_ulong( &args );
|
|
|
|
struct object_attr64 attr;
|
|
IO_STATUS_BLOCK io;
|
|
HANDLE handle = 0;
|
|
NTSTATUS status;
|
|
|
|
*handle_ptr = 0;
|
|
status = NtOpenFile( &handle, access, objattr_32to64( &attr, attr32 ),
|
|
iosb_32to64( &io, io32 ), sharing, options );
|
|
put_handle( handle_ptr, handle );
|
|
put_iosb( io32, &io );
|
|
return status;
|
|
}
|