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
18ee2592
Commit
18ee2592
authored
Nov 10, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Get the drive type from the mount manager instead of the registry.
parent
8227c030
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
65 deletions
+31
-65
volume.c
dlls/kernel32/volume.c
+31
-65
No files found.
dlls/kernel32/volume.c
View file @
18ee2592
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
#include "winternl.h"
#include "winternl.h"
#include "winioctl.h"
#include "winioctl.h"
#include "ntddcdrm.h"
#include "ntddcdrm.h"
#define WINE_MOUNTMGR_EXTENSIONS
#include "ddk/mountmgr.h"
#include "ddk/mountmgr.h"
#include "kernel_private.h"
#include "kernel_private.h"
#include "wine/library.h"
#include "wine/library.h"
...
@@ -65,17 +66,6 @@ enum fs_type
...
@@ -65,17 +66,6 @@ enum fs_type
FS_ISO9660
FS_ISO9660
};
};
static
const
WCHAR
drive_types
[][
8
]
=
{
{
0
},
/* DRIVE_UNKNOWN */
{
0
},
/* DRIVE_NO_ROOT_DIR */
{
'f'
,
'l'
,
'o'
,
'p'
,
'p'
,
'y'
,
0
},
/* DRIVE_REMOVABLE */
{
'h'
,
'd'
,
0
},
/* DRIVE_FIXED */
{
'n'
,
'e'
,
't'
,
'w'
,
'o'
,
'r'
,
'k'
,
0
},
/* DRIVE_REMOTE */
{
'c'
,
'd'
,
'r'
,
'o'
,
'm'
,
0
},
/* DRIVE_CDROM */
{
'r'
,
'a'
,
'm'
,
'd'
,
'i'
,
's'
,
'k'
,
0
}
/* DRIVE_RAMDISK */
};
/* read a Unix symlink; returned buffer must be freed by caller */
/* read a Unix symlink; returned buffer must be freed by caller */
static
char
*
read_symlink
(
const
char
*
path
)
static
char
*
read_symlink
(
const
char
*
path
)
{
{
...
@@ -190,6 +180,34 @@ static BOOL open_device_root( LPCWSTR root, HANDLE *handle )
...
@@ -190,6 +180,34 @@ static BOOL open_device_root( LPCWSTR root, HANDLE *handle )
return
TRUE
;
return
TRUE
;
}
}
/* query the type of a drive from the mount manager */
static
DWORD
get_mountmgr_drive_type
(
LPCWSTR
root
)
{
HANDLE
mgr
;
struct
mountmgr_unix_drive
data
;
memset
(
&
data
,
0
,
sizeof
(
data
)
);
if
(
root
)
data
.
letter
=
root
[
0
];
else
{
WCHAR
curdir
[
MAX_PATH
];
GetCurrentDirectoryW
(
MAX_PATH
,
curdir
);
if
(
curdir
[
1
]
!=
':'
||
curdir
[
2
]
!=
'\\'
)
return
DRIVE_UNKNOWN
;
data
.
letter
=
curdir
[
0
];
}
mgr
=
CreateFileW
(
MOUNTMGR_DOS_DEVICE_NAME
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
if
(
mgr
==
INVALID_HANDLE_VALUE
)
return
DRIVE_UNKNOWN
;
if
(
!
DeviceIoControl
(
mgr
,
IOCTL_MOUNTMGR_QUERY_UNIX_DRIVE
,
&
data
,
sizeof
(
data
),
&
data
,
sizeof
(
data
),
NULL
,
NULL
)
&&
GetLastError
()
!=
ERROR_MORE_DATA
)
data
.
type
=
DRIVE_UNKNOWN
;
CloseHandle
(
mgr
);
return
data
.
type
;
}
/* get the label by reading it from a file at the root of the filesystem */
/* get the label by reading it from a file at the root of the filesystem */
static
void
get_filesystem_label
(
const
WCHAR
*
device
,
WCHAR
*
label
,
DWORD
len
)
static
void
get_filesystem_label
(
const
WCHAR
*
device
,
WCHAR
*
label
,
DWORD
len
)
{
{
...
@@ -237,58 +255,6 @@ static DWORD get_filesystem_serial( const WCHAR *device )
...
@@ -237,58 +255,6 @@ static DWORD get_filesystem_serial( const WCHAR *device )
else
return
0
;
else
return
0
;
}
}
/* fetch the type of a drive from the registry */
static
UINT
get_registry_drive_type
(
const
WCHAR
*
root
)
{
static
const
WCHAR
drive_types_keyW
[]
=
{
'M'
,
'a'
,
'c'
,
'h'
,
'i'
,
'n'
,
'e'
,
'\\'
,
'S'
,
'o'
,
'f'
,
't'
,
'w'
,
'a'
,
'r'
,
'e'
,
'\\'
,
'W'
,
'i'
,
'n'
,
'e'
,
'\\'
,
'D'
,
'r'
,
'i'
,
'v'
,
'e'
,
's'
,
0
};
OBJECT_ATTRIBUTES
attr
;
UNICODE_STRING
nameW
;
HANDLE
hkey
;
DWORD
dummy
;
UINT
ret
=
DRIVE_UNKNOWN
;
char
tmp
[
32
+
sizeof
(
KEY_VALUE_PARTIAL_INFORMATION
)];
WCHAR
driveW
[]
=
{
'A'
,
':'
,
0
};
attr
.
Length
=
sizeof
(
attr
);
attr
.
RootDirectory
=
0
;
attr
.
ObjectName
=
&
nameW
;
attr
.
Attributes
=
0
;
attr
.
SecurityDescriptor
=
NULL
;
attr
.
SecurityQualityOfService
=
NULL
;
RtlInitUnicodeString
(
&
nameW
,
drive_types_keyW
);
/* @@ Wine registry key: HKLM\Software\Wine\Drives */
if
(
NtOpenKey
(
&
hkey
,
KEY_ALL_ACCESS
,
&
attr
)
!=
STATUS_SUCCESS
)
return
DRIVE_UNKNOWN
;
if
(
root
)
driveW
[
0
]
=
root
[
0
];
else
{
WCHAR
path
[
MAX_PATH
];
GetCurrentDirectoryW
(
MAX_PATH
,
path
);
driveW
[
0
]
=
path
[
0
];
}
RtlInitUnicodeString
(
&
nameW
,
driveW
);
if
(
!
NtQueryValueKey
(
hkey
,
&
nameW
,
KeyValuePartialInformation
,
tmp
,
sizeof
(
tmp
),
&
dummy
))
{
unsigned
int
i
;
WCHAR
*
data
=
(
WCHAR
*
)((
KEY_VALUE_PARTIAL_INFORMATION
*
)
tmp
)
->
Data
;
for
(
i
=
0
;
i
<
sizeof
(
drive_types
)
/
sizeof
(
drive_types
[
0
]);
i
++
)
{
if
(
!
strcmpiW
(
data
,
drive_types
[
i
]
))
{
ret
=
i
;
break
;
}
}
}
NtClose
(
hkey
);
return
ret
;
}
/******************************************************************
/******************************************************************
* VOLUME_FindCdRomDataBestVoldesc
* VOLUME_FindCdRomDataBestVoldesc
...
@@ -1278,7 +1244,7 @@ UINT WINAPI GetDriveTypeW(LPCWSTR root) /* [in] String describing drive */
...
@@ -1278,7 +1244,7 @@ UINT WINAPI GetDriveTypeW(LPCWSTR root) /* [in] String describing drive */
SetLastError
(
RtlNtStatusToDosError
(
status
)
);
SetLastError
(
RtlNtStatusToDosError
(
status
)
);
ret
=
DRIVE_UNKNOWN
;
ret
=
DRIVE_UNKNOWN
;
}
}
else
if
((
ret
=
get_registry_drive_type
(
root
))
==
DRIVE_UNKNOWN
)
else
{
{
switch
(
info
.
DeviceType
)
switch
(
info
.
DeviceType
)
{
{
...
@@ -1288,7 +1254,7 @@ UINT WINAPI GetDriveTypeW(LPCWSTR root) /* [in] String describing drive */
...
@@ -1288,7 +1254,7 @@ UINT WINAPI GetDriveTypeW(LPCWSTR root) /* [in] String describing drive */
case
FILE_DEVICE_DISK_FILE_SYSTEM
:
case
FILE_DEVICE_DISK_FILE_SYSTEM
:
if
(
info
.
Characteristics
&
FILE_REMOTE_DEVICE
)
ret
=
DRIVE_REMOTE
;
if
(
info
.
Characteristics
&
FILE_REMOTE_DEVICE
)
ret
=
DRIVE_REMOTE
;
else
if
(
info
.
Characteristics
&
FILE_REMOVABLE_MEDIA
)
ret
=
DRIVE_REMOVABLE
;
else
if
(
info
.
Characteristics
&
FILE_REMOVABLE_MEDIA
)
ret
=
DRIVE_REMOVABLE
;
else
ret
=
DRIVE_FIXED
;
else
if
((
ret
=
get_mountmgr_drive_type
(
root
))
==
DRIVE_UNKNOWN
)
ret
=
DRIVE_FIXED
;
break
;
break
;
default:
default:
ret
=
DRIVE_UNKNOWN
;
ret
=
DRIVE_UNKNOWN
;
...
...
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