Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9faf3678
Commit
9faf3678
authored
Nov 02, 2018
by
Aric Stewart
Committed by
Alexandre Julliard
Nov 13, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Implement IoRegisterDeviceInterface.
Signed-off-by:
Aric Stewart
<
aric@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ebae298a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
113 additions
and
2 deletions
+113
-2
Makefile.in
dlls/ntoskrnl.exe/Makefile.in
+1
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+110
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
wdm.h
include/ddk/wdm.h
+1
-0
No files found.
dlls/ntoskrnl.exe/Makefile.in
View file @
9faf3678
MODULE
=
ntoskrnl.exe
IMPORTLIB
=
ntoskrnl
IMPORTS
=
advapi32
DELAYIMPORTS
=
user32
DELAYIMPORTS
=
setupapi
user32
C_SRCS
=
\
instr.c
\
...
...
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
9faf3678
...
...
@@ -40,6 +40,7 @@
#include "winuser.h"
#include "dbt.h"
#include "winreg.h"
#include "setupapi.h"
#include "ddk/csq.h"
#include "ddk/ntddk.h"
#include "ddk/ntifs.h"
...
...
@@ -1665,6 +1666,115 @@ NTSTATUS WINAPI IoQueryDeviceDescription(PINTERFACE_TYPE itype, PULONG bus, PCON
}
static
NTSTATUS
get_instance_id
(
DEVICE_OBJECT
*
device
,
WCHAR
**
instance_id
)
{
WCHAR
*
id
,
*
ptr
;
NTSTATUS
status
;
status
=
get_device_id
(
device
,
BusQueryInstanceID
,
&
id
);
if
(
status
!=
STATUS_SUCCESS
)
return
status
;
struprW
(
id
);
for
(
ptr
=
id
;
*
ptr
;
ptr
++
)
if
(
*
ptr
==
'\\'
)
*
ptr
=
'#'
;
*
instance_id
=
id
;
return
STATUS_SUCCESS
;
}
/*****************************************************
* IoRegisterDeviceInterface(NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
IoRegisterDeviceInterface
(
DEVICE_OBJECT
*
device
,
const
GUID
*
class_guid
,
UNICODE_STRING
*
reference_string
,
UNICODE_STRING
*
symbolic_link
)
{
WCHAR
*
instance_id
;
NTSTATUS
status
=
STATUS_SUCCESS
;
HDEVINFO
infoset
;
WCHAR
*
referenceW
=
NULL
;
SP_DEVINFO_DATA
devInfo
;
SP_DEVICE_INTERFACE_DATA
infoData
;
SP_DEVICE_INTERFACE_DETAIL_DATA_W
*
data
;
DWORD
required
;
BOOL
rc
;
TRACE
(
"(%p, %s, %s, %p)
\n
"
,
device
,
debugstr_guid
(
class_guid
),
debugstr_us
(
reference_string
),
symbolic_link
);
if
(
reference_string
!=
NULL
)
referenceW
=
reference_string
->
Buffer
;
infoset
=
SetupDiGetClassDevsW
(
class_guid
,
referenceW
,
NULL
,
DIGCF_DEVICEINTERFACE
);
if
(
infoset
==
INVALID_HANDLE_VALUE
)
return
STATUS_UNSUCCESSFUL
;
status
=
get_instance_id
(
device
,
&
instance_id
);
if
(
status
!=
STATUS_SUCCESS
)
return
status
;
devInfo
.
cbSize
=
sizeof
(
devInfo
);
rc
=
SetupDiCreateDeviceInfoW
(
infoset
,
instance_id
,
class_guid
,
NULL
,
NULL
,
0
,
&
devInfo
);
if
(
rc
==
0
)
{
if
(
GetLastError
()
==
ERROR_DEVINST_ALREADY_EXISTS
)
{
DWORD
index
=
0
;
DWORD
size
=
strlenW
(
instance_id
)
+
2
;
WCHAR
*
id
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
*
sizeof
(
WCHAR
)
);
do
{
rc
=
SetupDiEnumDeviceInfo
(
infoset
,
index
,
&
devInfo
);
if
(
rc
&&
IsEqualGUID
(
&
devInfo
.
ClassGuid
,
class_guid
))
{
BOOL
check
;
check
=
SetupDiGetDeviceInstanceIdW
(
infoset
,
&
devInfo
,
id
,
size
,
&
required
);
if
(
check
&&
strcmpW
(
id
,
instance_id
)
==
0
)
break
;
}
index
++
;
}
while
(
rc
);
HeapFree
(
GetProcessHeap
(),
0
,
id
);
if
(
!
rc
)
{
HeapFree
(
GetProcessHeap
(),
0
,
instance_id
);
return
STATUS_UNSUCCESSFUL
;
}
}
else
{
HeapFree
(
GetProcessHeap
(),
0
,
instance_id
);
return
STATUS_UNSUCCESSFUL
;
}
}
HeapFree
(
GetProcessHeap
(),
0
,
instance_id
);
infoData
.
cbSize
=
sizeof
(
infoData
);
rc
=
SetupDiCreateDeviceInterfaceW
(
infoset
,
&
devInfo
,
class_guid
,
NULL
,
0
,
&
infoData
);
if
(
!
rc
)
return
STATUS_UNSUCCESSFUL
;
required
=
0
;
SetupDiGetDeviceInterfaceDetailW
(
infoset
,
&
infoData
,
NULL
,
0
,
&
required
,
NULL
);
if
(
required
==
0
)
return
STATUS_UNSUCCESSFUL
;
data
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
required
);
data
->
cbSize
=
sizeof
(
SP_DEVICE_INTERFACE_DETAIL_DATA_W
);
rc
=
SetupDiGetDeviceInterfaceDetailW
(
infoset
,
&
infoData
,
data
,
required
,
NULL
,
NULL
);
if
(
!
rc
)
{
HeapFree
(
GetProcessHeap
(),
0
,
data
);
return
STATUS_UNSUCCESSFUL
;
}
data
->
DevicePath
[
1
]
=
'?'
;
TRACE
(
"Device path %s
\n
"
,
debugstr_w
(
data
->
DevicePath
)
);
if
(
symbolic_link
)
RtlCreateUnicodeString
(
symbolic_link
,
data
->
DevicePath
);
HeapFree
(
GetProcessHeap
(),
0
,
data
);
return
status
;
}
/***********************************************************************
* IoRegisterDriverReinitialization (NTOSKRNL.EXE.@)
*/
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
9faf3678
...
...
@@ -428,7 +428,7 @@
@ stub IoReadPartitionTableEx
@ stub IoReadTransferCount
@ stub IoRegisterBootDriverReinitialization
@ st
ub IoRegisterDeviceInterface
@ st
dcall IoRegisterDeviceInterface(ptr ptr ptr ptr)
@ stdcall IoRegisterDriverReinitialization(ptr ptr ptr)
@ stdcall IoRegisterFileSystem(ptr)
@ stub IoRegisterFsRegistrationChange
...
...
include/ddk/wdm.h
View file @
9faf3678
...
...
@@ -1405,6 +1405,7 @@ PDEVICE_OBJECT WINAPI IoGetRelatedDeviceObject(PFILE_OBJECT);
void
WINAPI
IoInitializeIrp
(
IRP
*
,
USHORT
,
CCHAR
);
VOID
WINAPI
IoInitializeRemoveLockEx
(
PIO_REMOVE_LOCK
,
ULONG
,
ULONG
,
ULONG
,
ULONG
);
void
WINAPI
IoInvalidateDeviceRelations
(
PDEVICE_OBJECT
,
DEVICE_RELATION_TYPE
);
NTSTATUS
WINAPI
IoRegisterDeviceInterface
(
PDEVICE_OBJECT
,
const
GUID
*
,
PUNICODE_STRING
,
PUNICODE_STRING
);
void
WINAPI
IoReleaseCancelSpinLock
(
KIRQL
);
NTSTATUS
WINAPI
IoSetDeviceInterfaceState
(
UNICODE_STRING
*
,
BOOLEAN
);
NTSTATUS
WINAPI
IoWMIRegistrationControl
(
PDEVICE_OBJECT
,
ULONG
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment