mountmgr: Moved the harddisk device driver to device.c.
This commit is contained in:
parent
c5e7657d0c
commit
7033120f83
|
@ -39,6 +39,8 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mountmgr);
|
||||
|
||||
#define MAX_DOS_DRIVES 26
|
||||
|
||||
static const WCHAR drive_types[][8] =
|
||||
{
|
||||
{ 0 }, /* DRIVE_UNKNOWN */
|
||||
|
@ -50,6 +52,12 @@ static const WCHAR drive_types[][8] =
|
|||
{'r','a','m','d','i','s','k',0} /* DRIVE_RAMDISK */
|
||||
};
|
||||
|
||||
/* extra info for disk devices, stored in DeviceExtension */
|
||||
struct disk_device_info
|
||||
{
|
||||
STORAGE_DEVICE_NUMBER devnum; /* device number info */
|
||||
};
|
||||
|
||||
struct dos_drive
|
||||
{
|
||||
struct list entry;
|
||||
|
@ -72,6 +80,35 @@ static char *get_dosdevices_path(void)
|
|||
return path;
|
||||
}
|
||||
|
||||
/* read a Unix symlink; returned buffer must be freed by caller */
|
||||
static char *read_symlink( const char *path )
|
||||
{
|
||||
char *buffer;
|
||||
int ret, size = 128;
|
||||
|
||||
for (;;)
|
||||
{
|
||||
if (!(buffer = RtlAllocateHeap( GetProcessHeap(), 0, size )))
|
||||
{
|
||||
SetLastError( ERROR_NOT_ENOUGH_MEMORY );
|
||||
return 0;
|
||||
}
|
||||
ret = readlink( path, buffer, size );
|
||||
if (ret == -1)
|
||||
{
|
||||
RtlFreeHeap( GetProcessHeap(), 0, buffer );
|
||||
return 0;
|
||||
}
|
||||
if (ret != size)
|
||||
{
|
||||
buffer[ret] = 0;
|
||||
return buffer;
|
||||
}
|
||||
RtlFreeHeap( GetProcessHeap(), 0, buffer );
|
||||
size *= 2;
|
||||
}
|
||||
}
|
||||
|
||||
/* send notification about a change to a given drive */
|
||||
static void send_notify( int drive, int code )
|
||||
{
|
||||
|
@ -87,6 +124,77 @@ static void send_notify( int drive, int code )
|
|||
WM_DEVICECHANGE, code, (LPARAM)&info );
|
||||
}
|
||||
|
||||
static NTSTATUS create_disk_device( DRIVER_OBJECT *driver, DWORD type, DEVICE_OBJECT **dev_obj,
|
||||
UNICODE_STRING *device_name )
|
||||
{
|
||||
static const WCHAR harddiskW[] = {'\\','D','e','v','i','c','e',
|
||||
'\\','H','a','r','d','d','i','s','k','V','o','l','u','m','e','%','u',0};
|
||||
static const WCHAR cdromW[] = {'\\','D','e','v','i','c','e','\\','C','d','R','o','m','%','u',0};
|
||||
static const WCHAR floppyW[] = {'\\','D','e','v','i','c','e','\\','F','l','o','p','p','y','%','u',0};
|
||||
|
||||
UINT i, first = 0;
|
||||
NTSTATUS status = 0;
|
||||
const WCHAR *format;
|
||||
UNICODE_STRING name;
|
||||
struct disk_device_info *info;
|
||||
|
||||
switch(type)
|
||||
{
|
||||
case DRIVE_REMOVABLE:
|
||||
format = floppyW;
|
||||
break;
|
||||
case DRIVE_CDROM:
|
||||
format = cdromW;
|
||||
break;
|
||||
case DRIVE_FIXED:
|
||||
default: /* FIXME */
|
||||
format = harddiskW;
|
||||
first = 1; /* harddisk volumes start counting from 1 */
|
||||
break;
|
||||
}
|
||||
|
||||
name.MaximumLength = (strlenW(format) + 10) * sizeof(WCHAR);
|
||||
name.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, name.MaximumLength );
|
||||
for (i = first; i < 32; i++)
|
||||
{
|
||||
sprintfW( name.Buffer, format, i );
|
||||
name.Length = strlenW(name.Buffer) * sizeof(WCHAR);
|
||||
status = IoCreateDevice( driver, sizeof(*info), &name, 0, 0, FALSE, dev_obj );
|
||||
if (status != STATUS_OBJECT_NAME_COLLISION) break;
|
||||
}
|
||||
if (!status)
|
||||
{
|
||||
info = (*dev_obj)->DeviceExtension;
|
||||
*device_name = name;
|
||||
switch(type)
|
||||
{
|
||||
case DRIVE_REMOVABLE:
|
||||
info->devnum.DeviceType = FILE_DEVICE_DISK;
|
||||
info->devnum.DeviceNumber = i;
|
||||
info->devnum.PartitionNumber = ~0u;
|
||||
break;
|
||||
case DRIVE_CDROM:
|
||||
info->devnum.DeviceType = FILE_DEVICE_CD_ROM;
|
||||
info->devnum.DeviceNumber = i;
|
||||
info->devnum.PartitionNumber = ~0u;
|
||||
break;
|
||||
case DRIVE_FIXED:
|
||||
default: /* FIXME */
|
||||
info->devnum.DeviceType = FILE_DEVICE_DISK;
|
||||
info->devnum.DeviceNumber = 0;
|
||||
info->devnum.PartitionNumber = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
FIXME( "IoCreateDevice %s got %x\n", debugstr_w(name.Buffer), status );
|
||||
RtlFreeUnicodeString( &name );
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
static inline int is_valid_device( struct stat *st )
|
||||
{
|
||||
#if defined(linux) || defined(__sun__)
|
||||
|
@ -196,6 +304,38 @@ static BOOL set_mount_point( struct dos_drive *drive, const char *mount_point )
|
|||
return modified;
|
||||
}
|
||||
|
||||
/* create mount points for mapped drives */
|
||||
static void create_drive_mount_points( DRIVER_OBJECT *driver )
|
||||
{
|
||||
const char *config_dir = wine_get_config_dir();
|
||||
char *buffer, *p, *link;
|
||||
unsigned int i;
|
||||
DEVICE_OBJECT *device;
|
||||
UNICODE_STRING device_name;
|
||||
|
||||
if ((buffer = RtlAllocateHeap( GetProcessHeap(), 0,
|
||||
strlen(config_dir) + sizeof("/dosdevices/a:") )))
|
||||
{
|
||||
strcpy( buffer, config_dir );
|
||||
strcat( buffer, "/dosdevices/a:" );
|
||||
p = buffer + strlen(buffer) - 2;
|
||||
|
||||
for (i = 0; i < MAX_DOS_DRIVES; i++)
|
||||
{
|
||||
*p = 'a' + i;
|
||||
if (!(link = read_symlink( buffer ))) continue;
|
||||
if (!create_disk_device( driver, DRIVE_FIXED, &device, &device_name ))
|
||||
{
|
||||
add_dosdev_mount_point( device, &device_name, i, link, strlen(link) + 1 );
|
||||
add_volume_mount_point( device, &device_name, i, link, strlen(link) + 1 );
|
||||
RtlFreeUnicodeString( &device_name );
|
||||
}
|
||||
RtlFreeHeap( GetProcessHeap(), 0, link );
|
||||
}
|
||||
RtlFreeHeap( GetProcessHeap(), 0, buffer );
|
||||
}
|
||||
}
|
||||
|
||||
BOOL add_dos_device( const char *udi, const char *device,
|
||||
const char *mount_point, DWORD type )
|
||||
{
|
||||
|
@ -280,3 +420,84 @@ BOOL remove_dos_device( const char *udi )
|
|||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* handler for ioctls on the harddisk device */
|
||||
static NTSTATUS WINAPI harddisk_ioctl( DEVICE_OBJECT *device, IRP *irp )
|
||||
{
|
||||
IO_STACK_LOCATION *irpsp = irp->Tail.Overlay.s.u.CurrentStackLocation;
|
||||
struct disk_device_info *disk_info = device->DeviceExtension;
|
||||
|
||||
TRACE( "ioctl %x insize %u outsize %u\n",
|
||||
irpsp->Parameters.DeviceIoControl.IoControlCode,
|
||||
irpsp->Parameters.DeviceIoControl.InputBufferLength,
|
||||
irpsp->Parameters.DeviceIoControl.OutputBufferLength );
|
||||
|
||||
switch(irpsp->Parameters.DeviceIoControl.IoControlCode)
|
||||
{
|
||||
case IOCTL_DISK_GET_DRIVE_GEOMETRY:
|
||||
{
|
||||
DISK_GEOMETRY info;
|
||||
DWORD len = min( sizeof(info), irpsp->Parameters.DeviceIoControl.OutputBufferLength );
|
||||
|
||||
info.Cylinders.QuadPart = 10000;
|
||||
info.MediaType = (disk_info->devnum.DeviceType == FILE_DEVICE_DISK) ? FixedMedia : RemovableMedia;
|
||||
info.TracksPerCylinder = 255;
|
||||
info.SectorsPerTrack = 63;
|
||||
info.BytesPerSector = 512;
|
||||
memcpy( irp->MdlAddress->StartVa, &info, len );
|
||||
irp->IoStatus.Information = len;
|
||||
irp->IoStatus.u.Status = STATUS_SUCCESS;
|
||||
break;
|
||||
}
|
||||
case IOCTL_STORAGE_GET_DEVICE_NUMBER:
|
||||
{
|
||||
DWORD len = min( sizeof(disk_info->devnum), irpsp->Parameters.DeviceIoControl.OutputBufferLength );
|
||||
|
||||
memcpy( irp->MdlAddress->StartVa, &disk_info->devnum, len );
|
||||
irp->IoStatus.Information = len;
|
||||
irp->IoStatus.u.Status = STATUS_SUCCESS;
|
||||
break;
|
||||
}
|
||||
case IOCTL_CDROM_READ_TOC:
|
||||
irp->IoStatus.u.Status = STATUS_INVALID_DEVICE_REQUEST;
|
||||
break;
|
||||
default:
|
||||
FIXME( "unsupported ioctl %x\n", irpsp->Parameters.DeviceIoControl.IoControlCode );
|
||||
irp->IoStatus.u.Status = STATUS_NOT_SUPPORTED;
|
||||
break;
|
||||
}
|
||||
return irp->IoStatus.u.Status;
|
||||
}
|
||||
|
||||
/* driver entry point for the harddisk driver */
|
||||
NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path )
|
||||
{
|
||||
static const WCHAR harddisk0W[] = {'\\','D','e','v','i','c','e',
|
||||
'\\','H','a','r','d','d','i','s','k','0',0};
|
||||
static const WCHAR physdrive0W[] = {'\\','?','?','\\','P','h','y','s','i','c','a','l','D','r','i','v','e','0',0};
|
||||
|
||||
UNICODE_STRING nameW, linkW;
|
||||
DEVICE_OBJECT *device;
|
||||
NTSTATUS status;
|
||||
struct disk_device_info *info;
|
||||
|
||||
driver->MajorFunction[IRP_MJ_DEVICE_CONTROL] = harddisk_ioctl;
|
||||
|
||||
RtlInitUnicodeString( &nameW, harddisk0W );
|
||||
RtlInitUnicodeString( &linkW, physdrive0W );
|
||||
if (!(status = IoCreateDevice( driver, sizeof(*info), &nameW, 0, 0, FALSE, &device )))
|
||||
status = IoCreateSymbolicLink( &linkW, &nameW );
|
||||
if (status)
|
||||
{
|
||||
FIXME( "failed to create device error %x\n", status );
|
||||
return status;
|
||||
}
|
||||
info = device->DeviceExtension;
|
||||
info->devnum.DeviceType = FILE_DEVICE_DISK;
|
||||
info->devnum.DeviceNumber = 0;
|
||||
info->devnum.PartitionNumber = 0;
|
||||
|
||||
create_drive_mount_points( driver );
|
||||
|
||||
return status;
|
||||
}
|
||||
|
|
|
@ -34,13 +34,6 @@
|
|||
WINE_DEFAULT_DEBUG_CHANNEL(mountmgr);
|
||||
|
||||
#define MIN_ID_LEN 4
|
||||
#define MAX_DOS_DRIVES 26
|
||||
|
||||
/* extra info for disk devices, stored in DeviceExtension */
|
||||
struct disk_device_info
|
||||
{
|
||||
STORAGE_DEVICE_NUMBER devnum; /* device number info */
|
||||
};
|
||||
|
||||
struct mount_point
|
||||
{
|
||||
|
@ -55,107 +48,7 @@ struct mount_point
|
|||
static struct list mount_points_list = LIST_INIT(mount_points_list);
|
||||
static HKEY mount_key;
|
||||
|
||||
/* read a Unix symlink; returned buffer must be freed by caller */
|
||||
static char *read_symlink( const char *path )
|
||||
{
|
||||
char *buffer;
|
||||
int ret, size = 128;
|
||||
|
||||
for (;;)
|
||||
{
|
||||
if (!(buffer = RtlAllocateHeap( GetProcessHeap(), 0, size )))
|
||||
{
|
||||
SetLastError( ERROR_NOT_ENOUGH_MEMORY );
|
||||
return 0;
|
||||
}
|
||||
ret = readlink( path, buffer, size );
|
||||
if (ret == -1)
|
||||
{
|
||||
RtlFreeHeap( GetProcessHeap(), 0, buffer );
|
||||
return 0;
|
||||
}
|
||||
if (ret != size)
|
||||
{
|
||||
buffer[ret] = 0;
|
||||
return buffer;
|
||||
}
|
||||
RtlFreeHeap( GetProcessHeap(), 0, buffer );
|
||||
size *= 2;
|
||||
}
|
||||
}
|
||||
|
||||
static NTSTATUS create_disk_device( DRIVER_OBJECT *driver, DWORD type, DEVICE_OBJECT **dev_obj,
|
||||
UNICODE_STRING *device_name )
|
||||
{
|
||||
static const WCHAR harddiskW[] = {'\\','D','e','v','i','c','e',
|
||||
'\\','H','a','r','d','d','i','s','k','V','o','l','u','m','e','%','u',0};
|
||||
static const WCHAR cdromW[] = {'\\','D','e','v','i','c','e','\\','C','d','R','o','m','%','u',0};
|
||||
static const WCHAR floppyW[] = {'\\','D','e','v','i','c','e','\\','F','l','o','p','p','y','%','u',0};
|
||||
|
||||
UINT i, first = 0;
|
||||
NTSTATUS status = 0;
|
||||
const WCHAR *format;
|
||||
UNICODE_STRING name;
|
||||
struct disk_device_info *info;
|
||||
|
||||
switch(type)
|
||||
{
|
||||
case DRIVE_REMOVABLE:
|
||||
format = floppyW;
|
||||
break;
|
||||
case DRIVE_CDROM:
|
||||
format = cdromW;
|
||||
break;
|
||||
case DRIVE_FIXED:
|
||||
default: /* FIXME */
|
||||
format = harddiskW;
|
||||
first = 1; /* harddisk volumes start counting from 1 */
|
||||
break;
|
||||
}
|
||||
|
||||
name.MaximumLength = (strlenW(format) + 10) * sizeof(WCHAR);
|
||||
name.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, name.MaximumLength );
|
||||
for (i = first; i < 32; i++)
|
||||
{
|
||||
sprintfW( name.Buffer, format, i );
|
||||
name.Length = strlenW(name.Buffer) * sizeof(WCHAR);
|
||||
status = IoCreateDevice( driver, sizeof(*info), &name, 0, 0, FALSE, dev_obj );
|
||||
if (status != STATUS_OBJECT_NAME_COLLISION) break;
|
||||
}
|
||||
if (!status)
|
||||
{
|
||||
info = (*dev_obj)->DeviceExtension;
|
||||
*device_name = name;
|
||||
switch(type)
|
||||
{
|
||||
case DRIVE_REMOVABLE:
|
||||
info->devnum.DeviceType = FILE_DEVICE_DISK;
|
||||
info->devnum.DeviceNumber = i;
|
||||
info->devnum.PartitionNumber = ~0u;
|
||||
break;
|
||||
case DRIVE_CDROM:
|
||||
info->devnum.DeviceType = FILE_DEVICE_CD_ROM;
|
||||
info->devnum.DeviceNumber = i;
|
||||
info->devnum.PartitionNumber = ~0u;
|
||||
break;
|
||||
case DRIVE_FIXED:
|
||||
default: /* FIXME */
|
||||
info->devnum.DeviceType = FILE_DEVICE_DISK;
|
||||
info->devnum.DeviceNumber = 0;
|
||||
info->devnum.PartitionNumber = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
FIXME( "IoCreateDevice %s got %x\n", debugstr_w(name.Buffer), status );
|
||||
RtlFreeUnicodeString( &name );
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
static void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len )
|
||||
void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len )
|
||||
{
|
||||
RtlFreeHeap( GetProcessHeap(), 0, mount->id );
|
||||
mount->id_len = max( MIN_ID_LEN, id_len );
|
||||
|
@ -198,8 +91,8 @@ static struct mount_point *add_mount_point( DEVICE_OBJECT *device, UNICODE_STRIN
|
|||
}
|
||||
|
||||
/* create the DosDevices mount point symlink for a new device */
|
||||
static struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||
int drive, const void *id, unsigned int id_len )
|
||||
struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||
int drive, const void *id, unsigned int id_len )
|
||||
{
|
||||
static const WCHAR driveW[] = {'\\','D','o','s','D','e','v','i','c','e','s','\\','%','c',':',0};
|
||||
WCHAR link[sizeof(driveW)];
|
||||
|
@ -209,8 +102,8 @@ static struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICOD
|
|||
}
|
||||
|
||||
/* create the Volume mount point symlink for a new device */
|
||||
static struct mount_point *add_volume_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||
int drive, const void *id, unsigned int id_len )
|
||||
struct mount_point *add_volume_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||
int drive, const void *id, unsigned int id_len )
|
||||
{
|
||||
static const WCHAR volumeW[] = {'\\','?','?','\\','V','o','l','u','m','e','{',
|
||||
'%','0','8','x','-','%','0','4','x','-','%','0','4','x','-',
|
||||
|
@ -348,127 +241,10 @@ static NTSTATUS WINAPI mountmgr_ioctl( DEVICE_OBJECT *device, IRP *irp )
|
|||
return irp->IoStatus.u.Status;
|
||||
}
|
||||
|
||||
/* handler for ioctls on the harddisk device */
|
||||
static NTSTATUS WINAPI harddisk_ioctl( DEVICE_OBJECT *device, IRP *irp )
|
||||
{
|
||||
IO_STACK_LOCATION *irpsp = irp->Tail.Overlay.s.u.CurrentStackLocation;
|
||||
struct disk_device_info *disk_info = device->DeviceExtension;
|
||||
|
||||
TRACE( "ioctl %x insize %u outsize %u\n",
|
||||
irpsp->Parameters.DeviceIoControl.IoControlCode,
|
||||
irpsp->Parameters.DeviceIoControl.InputBufferLength,
|
||||
irpsp->Parameters.DeviceIoControl.OutputBufferLength );
|
||||
|
||||
switch(irpsp->Parameters.DeviceIoControl.IoControlCode)
|
||||
{
|
||||
case IOCTL_DISK_GET_DRIVE_GEOMETRY:
|
||||
{
|
||||
DISK_GEOMETRY info;
|
||||
DWORD len = min( sizeof(info), irpsp->Parameters.DeviceIoControl.OutputBufferLength );
|
||||
|
||||
info.Cylinders.QuadPart = 10000;
|
||||
info.MediaType = (disk_info->devnum.DeviceType == FILE_DEVICE_DISK) ? FixedMedia : RemovableMedia;
|
||||
info.TracksPerCylinder = 255;
|
||||
info.SectorsPerTrack = 63;
|
||||
info.BytesPerSector = 512;
|
||||
memcpy( irp->MdlAddress->StartVa, &info, len );
|
||||
irp->IoStatus.Information = len;
|
||||
irp->IoStatus.u.Status = STATUS_SUCCESS;
|
||||
break;
|
||||
}
|
||||
case IOCTL_STORAGE_GET_DEVICE_NUMBER:
|
||||
{
|
||||
DWORD len = min( sizeof(disk_info->devnum), irpsp->Parameters.DeviceIoControl.OutputBufferLength );
|
||||
|
||||
memcpy( irp->MdlAddress->StartVa, &disk_info->devnum, len );
|
||||
irp->IoStatus.Information = len;
|
||||
irp->IoStatus.u.Status = STATUS_SUCCESS;
|
||||
break;
|
||||
}
|
||||
case IOCTL_CDROM_READ_TOC:
|
||||
irp->IoStatus.u.Status = STATUS_INVALID_DEVICE_REQUEST;
|
||||
break;
|
||||
default:
|
||||
FIXME( "unsupported ioctl %x\n", irpsp->Parameters.DeviceIoControl.IoControlCode );
|
||||
irp->IoStatus.u.Status = STATUS_NOT_SUPPORTED;
|
||||
break;
|
||||
}
|
||||
return irp->IoStatus.u.Status;
|
||||
}
|
||||
|
||||
/* create mount points for mapped drives */
|
||||
static void create_drive_mount_points( DRIVER_OBJECT *driver )
|
||||
{
|
||||
const char *config_dir = wine_get_config_dir();
|
||||
char *buffer, *p, *link;
|
||||
unsigned int i;
|
||||
DEVICE_OBJECT *device;
|
||||
UNICODE_STRING device_name;
|
||||
|
||||
if ((buffer = RtlAllocateHeap( GetProcessHeap(), 0,
|
||||
strlen(config_dir) + sizeof("/dosdevices/a:") )))
|
||||
{
|
||||
strcpy( buffer, config_dir );
|
||||
strcat( buffer, "/dosdevices/a:" );
|
||||
p = buffer + strlen(buffer) - 2;
|
||||
|
||||
for (i = 0; i < MAX_DOS_DRIVES; i++)
|
||||
{
|
||||
*p = 'a' + i;
|
||||
if (!(link = read_symlink( buffer ))) continue;
|
||||
if (!create_disk_device( driver, DRIVE_FIXED, &device, &device_name ))
|
||||
{
|
||||
add_dosdev_mount_point( device, &device_name, i, link, strlen(link) + 1 );
|
||||
add_volume_mount_point( device, &device_name, i, link, strlen(link) + 1 );
|
||||
RtlFreeUnicodeString( &device_name );
|
||||
}
|
||||
RtlFreeHeap( GetProcessHeap(), 0, link );
|
||||
}
|
||||
RtlFreeHeap( GetProcessHeap(), 0, buffer );
|
||||
}
|
||||
}
|
||||
|
||||
/* driver entry point for the harddisk driver */
|
||||
static NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path )
|
||||
{
|
||||
static const WCHAR mounted_devicesW[] = {'S','y','s','t','e','m','\\',
|
||||
'M','o','u','n','t','e','d','D','e','v','i','c','e','s',0};
|
||||
static const WCHAR harddisk0W[] = {'\\','D','e','v','i','c','e',
|
||||
'\\','H','a','r','d','d','i','s','k','0',0};
|
||||
static const WCHAR physdrive0W[] = {'\\','?','?','\\','P','h','y','s','i','c','a','l','D','r','i','v','e','0',0};
|
||||
|
||||
UNICODE_STRING nameW, linkW;
|
||||
DEVICE_OBJECT *device;
|
||||
NTSTATUS status;
|
||||
struct disk_device_info *info;
|
||||
|
||||
driver->MajorFunction[IRP_MJ_DEVICE_CONTROL] = harddisk_ioctl;
|
||||
|
||||
RegCreateKeyExW( HKEY_LOCAL_MACHINE, mounted_devicesW, 0, NULL,
|
||||
REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &mount_key, NULL );
|
||||
|
||||
RtlInitUnicodeString( &nameW, harddisk0W );
|
||||
RtlInitUnicodeString( &linkW, physdrive0W );
|
||||
if (!(status = IoCreateDevice( driver, sizeof(*info), &nameW, 0, 0, FALSE, &device )))
|
||||
status = IoCreateSymbolicLink( &linkW, &nameW );
|
||||
if (status)
|
||||
{
|
||||
FIXME( "failed to create device error %x\n", status );
|
||||
return status;
|
||||
}
|
||||
info = device->DeviceExtension;
|
||||
info->devnum.DeviceType = FILE_DEVICE_DISK;
|
||||
info->devnum.DeviceNumber = 0;
|
||||
info->devnum.PartitionNumber = 0;
|
||||
|
||||
create_drive_mount_points( driver );
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
/* main entry point for the mount point manager driver */
|
||||
NTSTATUS WINAPI DriverEntry( DRIVER_OBJECT *driver, UNICODE_STRING *path )
|
||||
{
|
||||
static const WCHAR mounted_devicesW[] = {'S','y','s','t','e','m','\\','M','o','u','n','t','e','d','D','e','v','i','c','e','s',0};
|
||||
static const WCHAR device_mountmgrW[] = {'\\','D','e','v','i','c','e','\\','M','o','u','n','t','P','o','i','n','t','M','a','n','a','g','e','r',0};
|
||||
static const WCHAR link_mountmgrW[] = {'\\','?','?','\\','M','o','u','n','t','P','o','i','n','t','M','a','n','a','g','e','r',0};
|
||||
static const WCHAR harddiskW[] = {'\\','D','r','i','v','e','r','\\','H','a','r','d','d','i','s','k',0};
|
||||
|
@ -491,11 +267,14 @@ NTSTATUS WINAPI DriverEntry( DRIVER_OBJECT *driver, UNICODE_STRING *path )
|
|||
return status;
|
||||
}
|
||||
|
||||
initialize_hal();
|
||||
initialize_diskarbitration();
|
||||
RegCreateKeyExW( HKEY_LOCAL_MACHINE, mounted_devicesW, 0, NULL,
|
||||
REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &mount_key, NULL );
|
||||
|
||||
RtlInitUnicodeString( &nameW, harddiskW );
|
||||
status = IoCreateDriver( &nameW, harddisk_driver_entry );
|
||||
|
||||
initialize_hal();
|
||||
initialize_diskarbitration();
|
||||
|
||||
return status;
|
||||
}
|
||||
|
|
|
@ -36,5 +36,19 @@
|
|||
|
||||
extern void initialize_hal(void);
|
||||
extern void initialize_diskarbitration(void);
|
||||
|
||||
/* device functions */
|
||||
|
||||
extern BOOL add_dos_device( const char *udi, const char *device, const char *mount_point, DWORD type );
|
||||
extern BOOL remove_dos_device( const char *udi );
|
||||
extern NTSTATUS WINAPI harddisk_driver_entry( DRIVER_OBJECT *driver, UNICODE_STRING *path );
|
||||
|
||||
/* mount point functions */
|
||||
|
||||
struct mount_point;
|
||||
|
||||
extern struct mount_point *add_dosdev_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||
int drive, const void *id, unsigned int id_len );
|
||||
extern struct mount_point *add_volume_mount_point( DEVICE_OBJECT *device, UNICODE_STRING *device_name,
|
||||
int drive, const void *id, unsigned int id_len );
|
||||
extern void set_mount_point_id( struct mount_point *mount, const void *id, unsigned int id_len );
|
||||
|
|
Loading…
Reference in New Issue