[CDFS]
[reactos.git] / reactos / drivers / filesystems / cdfs / cdfs.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2002, 2003 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 /*
20 * COPYRIGHT: See COPYING in the top level directory
21 * PROJECT: ReactOS kernel
22 * FILE: drivers/fs/cdfs/cdfs.c
23 * PURPOSE: CDROM (ISO 9660) filesystem driver
24 * PROGRAMMER: Art Yerkes
25 * Eric Kohl
26 */
27
28 /* INCLUDES *****************************************************************/
29
30 #include "cdfs.h"
31
32 #define NDEBUG
33 #include <debug.h>
34
35 /* GLOBALS ******************************************************************/
36
37 PCDFS_GLOBAL_DATA CdfsGlobalData;
38
39
40 /* FUNCTIONS ****************************************************************/
41
42 NTSTATUS NTAPI
43 DriverEntry(PDRIVER_OBJECT DriverObject,
44 PUNICODE_STRING RegistryPath)
45 /*
46 * FUNCTION: Called by the system to initialize the driver
47 * ARGUMENTS:
48 * DriverObject = object describing this driver
49 * RegistryPath = path to our configuration entries
50 * RETURNS: Success or failure
51 */
52 {
53 PDEVICE_OBJECT DeviceObject;
54 NTSTATUS Status;
55 UNICODE_STRING DeviceName = RTL_CONSTANT_STRING(L"\\Cdfs");
56
57 UNREFERENCED_PARAMETER(RegistryPath);
58
59 DPRINT("CDFS 0.0.3\n");
60
61 Status = IoCreateDevice(DriverObject,
62 sizeof(CDFS_GLOBAL_DATA),
63 &DeviceName,
64 FILE_DEVICE_CD_ROM_FILE_SYSTEM,
65 0,
66 FALSE,
67 &DeviceObject);
68 if (!NT_SUCCESS(Status))
69 {
70 return(Status);
71 }
72
73 /* Initialize global data */
74 CdfsGlobalData = DeviceObject->DeviceExtension;
75 RtlZeroMemory(CdfsGlobalData,
76 sizeof(CDFS_GLOBAL_DATA));
77 CdfsGlobalData->DriverObject = DriverObject;
78 CdfsGlobalData->DeviceObject = DeviceObject;
79
80 /* Initialize driver data */
81 DeviceObject->Flags = DO_DIRECT_IO;
82 DriverObject->MajorFunction[IRP_MJ_CLOSE] = CdfsFsdDispatch;
83 DriverObject->MajorFunction[IRP_MJ_CLEANUP] = CdfsFsdDispatch;
84 DriverObject->MajorFunction[IRP_MJ_CREATE] = CdfsFsdDispatch;
85 DriverObject->MajorFunction[IRP_MJ_READ] = CdfsFsdDispatch;
86 DriverObject->MajorFunction[IRP_MJ_WRITE] = CdfsFsdDispatch;
87 DriverObject->MajorFunction[IRP_MJ_FILE_SYSTEM_CONTROL] = CdfsFsdDispatch;
88 DriverObject->MajorFunction[IRP_MJ_DIRECTORY_CONTROL] = CdfsFsdDispatch;
89 DriverObject->MajorFunction[IRP_MJ_QUERY_INFORMATION] = CdfsFsdDispatch;
90 DriverObject->MajorFunction[IRP_MJ_SET_INFORMATION] = CdfsFsdDispatch;
91 DriverObject->MajorFunction[IRP_MJ_QUERY_VOLUME_INFORMATION] = CdfsFsdDispatch;
92 DriverObject->MajorFunction[IRP_MJ_SET_VOLUME_INFORMATION] = CdfsFsdDispatch;
93 DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = CdfsFsdDispatch;
94
95 CdfsGlobalData->FastIoDispatch.SizeOfFastIoDispatch = sizeof(FAST_IO_DISPATCH);
96 CdfsGlobalData->FastIoDispatch.FastIoCheckIfPossible = CdfsFastIoCheckIfPossible;
97 CdfsGlobalData->FastIoDispatch.FastIoRead = CdfsFastIoRead;
98 CdfsGlobalData->FastIoDispatch.FastIoWrite = CdfsFastIoWrite;
99 DriverObject->FastIoDispatch = &CdfsGlobalData->FastIoDispatch;
100
101 /* Initialize lookaside list for IRP contexts */
102 ExInitializeNPagedLookasideList(&CdfsGlobalData->IrpContextLookasideList,
103 NULL, NULL, 0, sizeof(CDFS_IRP_CONTEXT), 'PRIC', 0);
104
105 DriverObject->DriverUnload = NULL;
106
107 /* Cache manager */
108 CdfsGlobalData->CacheMgrCallbacks.AcquireForLazyWrite = CdfsAcquireForLazyWrite;
109 CdfsGlobalData->CacheMgrCallbacks.ReleaseFromLazyWrite = CdfsReleaseFromLazyWrite;
110 CdfsGlobalData->CacheMgrCallbacks.AcquireForReadAhead = CdfsAcquireForLazyWrite;
111 CdfsGlobalData->CacheMgrCallbacks.ReleaseFromReadAhead = CdfsReleaseFromLazyWrite;
112
113 DeviceObject->Flags |= DO_LOW_PRIORITY_FILESYSTEM;
114
115 IoRegisterFileSystem(DeviceObject);
116 DeviceObject->Flags &= ~DO_DEVICE_INITIALIZING;
117
118 return(STATUS_SUCCESS);
119 }
120
121