Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a1669739
Commit
a1669739
authored
Aug 10, 2021
by
Huw Davies
Committed by
Alexandre Julliard
Aug 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Implement GetIpNetTable() on top of nsi.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ae3e512b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
25 deletions
+66
-25
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+66
-25
No files found.
dlls/iphlpapi/iphlpapi_main.c
View file @
a1669739
...
...
@@ -2230,50 +2230,91 @@ err:
return
err
;
}
static
int
ipnetrow_cmp
(
const
void
*
a
,
const
void
*
b
)
{
const
MIB_IPNETROW
*
row_a
=
a
;
const
MIB_IPNETROW
*
row_b
=
b
;
return
RtlUlongByteSwap
(
row_a
->
dwAddr
)
-
RtlUlongByteSwap
(
row_b
->
dwAddr
);
}
/******************************************************************
* GetIpNetTable (IPHLPAPI.@)
*
* Get the IP-to-physical address mapping table.
*
* PARAMS
*
pIpNetTable
[Out] buffer for mapping table
*
pdwSize
[In/Out] length of output buffer
*
bOrder
[In] whether to sort the table
*
table
[Out] buffer for mapping table
*
size
[In/Out] length of output buffer
*
sort
[In] whether to sort the table
*
* RETURNS
* Success: NO_ERROR
* Failure: error code from winerror.h
*
* NOTES
* If pdwSize is less than required, the function will return
* ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
* size.
* If bOrder is true, the returned table will be sorted by IP address.
*/
DWORD
WINAPI
GetIpNetTable
(
PMIB_IPNETTABLE
pIpNetTable
,
PULONG
pdwSize
,
BOOL
bOrder
)
DWORD
WINAPI
GetIpNetTable
(
MIB_IPNETTABLE
*
table
,
ULONG
*
size
,
BOOL
sort
)
{
DWORD
ret
;
PMIB_IPNETTABLE
table
;
DWORD
err
,
count
,
needed
,
i
;
struct
nsi_ipv4_neighbour_key
*
keys
;
struct
nsi_ip_neighbour_rw
*
rw
;
struct
nsi_ip_neighbour_dynamic
*
dyn
;
TRACE
(
"pIpNetTable %p, pdwSize %p, bOrder %d
\n
"
,
pIpNetTable
,
pdwSize
,
bOrder
);
TRACE
(
"table %p, size %p, sort %d
\n
"
,
table
,
size
,
sort
);
if
(
!
pdwS
ize
)
return
ERROR_INVALID_PARAMETER
;
if
(
!
s
ize
)
return
ERROR_INVALID_PARAMETER
;
ret
=
AllocateAndGetIpNetTableFromStack
(
&
table
,
bOrder
,
GetProcessHeap
(),
0
);
if
(
!
ret
)
{
DWORD
size
=
FIELD_OFFSET
(
MIB_IPNETTABLE
,
table
[
table
->
dwNumEntries
]
);
if
(
!
pIpNetTable
||
*
pdwSize
<
size
)
{
*
pdwSize
=
size
;
ret
=
ERROR_INSUFFICIENT_BUFFER
;
err
=
NsiAllocateAndGetTable
(
1
,
&
NPI_MS_IPV4_MODULEID
,
NSI_IP_NEIGHBOUR_TABLE
,
(
void
**
)
&
keys
,
sizeof
(
*
keys
),
(
void
**
)
&
rw
,
sizeof
(
*
rw
),
(
void
**
)
&
dyn
,
sizeof
(
*
dyn
),
NULL
,
0
,
&
count
,
0
);
if
(
err
)
return
err
;
needed
=
FIELD_OFFSET
(
MIB_IPNETTABLE
,
table
[
count
]
);
if
(
!
table
||
*
size
<
needed
)
{
*
size
=
needed
;
err
=
ERROR_INSUFFICIENT_BUFFER
;
goto
err
;
}
else
{
*
pdwSize
=
size
;
memcpy
(
pIpNetTable
,
table
,
size
);
table
->
dwNumEntries
=
count
;
for
(
i
=
0
;
i
<
count
;
i
++
)
{
MIB_IPNETROW
*
row
=
table
->
table
+
i
;
ConvertInterfaceLuidToIndex
(
&
keys
[
i
].
luid
,
&
row
->
dwIndex
);
row
->
dwPhysAddrLen
=
dyn
[
i
].
phys_addr_len
;
if
(
row
->
dwPhysAddrLen
>
sizeof
(
row
->
bPhysAddr
))
row
->
dwPhysAddrLen
=
0
;
memcpy
(
row
->
bPhysAddr
,
rw
[
i
].
phys_addr
,
row
->
dwPhysAddrLen
);
memset
(
row
->
bPhysAddr
+
row
->
dwPhysAddrLen
,
0
,
sizeof
(
row
->
bPhysAddr
)
-
row
->
dwPhysAddrLen
);
row
->
dwAddr
=
keys
[
i
].
addr
.
WS_s_addr
;
switch
(
dyn
->
state
)
{
case
NlnsUnreachable
:
case
NlnsIncomplete
:
row
->
u
.
Type
=
MIB_IPNET_TYPE_INVALID
;
break
;
case
NlnsProbe
:
case
NlnsDelay
:
case
NlnsStale
:
case
NlnsReachable
:
row
->
u
.
Type
=
MIB_IPNET_TYPE_DYNAMIC
;
break
;
case
NlnsPermanent
:
row
->
u
.
Type
=
MIB_IPNET_TYPE_STATIC
;
break
;
default:
row
->
u
.
Type
=
MIB_IPNET_TYPE_OTHER
;
}
HeapFree
(
GetProcessHeap
(),
0
,
table
);
}
TRACE
(
"returning %d
\n
"
,
ret
);
return
ret
;
if
(
sort
)
qsort
(
table
->
table
,
table
->
dwNumEntries
,
sizeof
(
*
table
->
table
),
ipnetrow_cmp
);
err:
NsiFreeTable
(
keys
,
rw
,
dyn
,
NULL
);
return
err
;
}
static
void
ipnet_row2_fill
(
MIB_IPNET_ROW2
*
row
,
USHORT
fam
,
void
*
key
,
struct
nsi_ip_neighbour_rw
*
rw
,
...
...
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