1 /* $Id: create.c,v 1.53 2002/01/26 06:20:16 phreak Exp $
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/io/create.c
6 * PURPOSE: Handling file create/open apis
7 * PROGRAMMER: David Welch (welch@cwcom.net)
12 /* INCLUDES ***************************************************************/
14 #include <ddk/ntddk.h>
15 #include <internal/ob.h>
16 #include <internal/io.h>
17 #include <internal/id.h>
18 #include <internal/pool.h>
21 #include <internal/debug.h>
23 /* GLOBALS *******************************************************************/
25 #define TAG_FILE_NAME TAG('F', 'N', 'A', 'M')
27 /* FUNCTIONS *************************************************************/
29 /**********************************************************************
45 NtDeleteFile(IN POBJECT_ATTRIBUTES ObjectAttributes
)
51 /**********************************************************************
65 IopCreateFile(PVOID ObjectBody
,
68 POBJECT_ATTRIBUTES ObjectAttributes
)
70 PDEVICE_OBJECT DeviceObject
= (PDEVICE_OBJECT
) Parent
;
71 PFILE_OBJECT FileObject
= (PFILE_OBJECT
) ObjectBody
;
74 DPRINT("IopCreateFile(ObjectBody %x, Parent %x, RemainingPath %S)\n",
79 if (NULL
== DeviceObject
)
81 /* This is probably an attempt to create a meta fileobject (eg. for FAT)
82 for the cache manager, so return STATUS_SUCCESS */
83 DPRINT("DeviceObject was NULL\n");
84 return (STATUS_SUCCESS
);
86 if (IoDeviceObjectType
!= BODY_TO_HEADER(Parent
)->ObjectType
)
88 CPRINT("Parent is a %S which is not a device type\n",
89 BODY_TO_HEADER(Parent
)->ObjectType
->TypeName
.Buffer
);
90 return (STATUS_UNSUCCESSFUL
);
92 Status
= ObReferenceObjectByPointer (DeviceObject
,
93 STANDARD_RIGHTS_REQUIRED
,
96 if (STATUS_SUCCESS
!= Status
)
102 DeviceObject
= IoGetAttachedDevice (DeviceObject
);
104 DPRINT("DeviceObject %x\n", DeviceObject
);
106 if (NULL
== RemainingPath
)
108 FileObject
->Flags
= FileObject
->Flags
| FO_DIRECT_DEVICE_OPEN
;
109 FileObject
->FileName
.Buffer
=
110 ExAllocatePoolWithTag(NonPagedPool
,
111 (ObjectAttributes
->ObjectName
->Length
+1)*sizeof(WCHAR
),
113 FileObject
->FileName
.Length
= ObjectAttributes
->ObjectName
->Length
;
114 FileObject
->FileName
.MaximumLength
=
115 ObjectAttributes
->ObjectName
->MaximumLength
;
116 RtlCopyUnicodeString(&(FileObject
->FileName
),
117 ObjectAttributes
->ObjectName
);
121 if ((DeviceObject
->DeviceType
!= FILE_DEVICE_FILE_SYSTEM
)
122 && (DeviceObject
->DeviceType
!= FILE_DEVICE_DISK
)
123 && (DeviceObject
->DeviceType
!= FILE_DEVICE_NETWORK
)
124 && (DeviceObject
->DeviceType
!= FILE_DEVICE_NAMED_PIPE
)
125 && (DeviceObject
->DeviceType
!= FILE_DEVICE_MAILSLOT
))
127 CPRINT ("Device was wrong type\n");
128 return (STATUS_UNSUCCESSFUL
);
131 if (DeviceObject
->DeviceType
!= FILE_DEVICE_NETWORK
132 && (DeviceObject
->DeviceType
!= FILE_DEVICE_NAMED_PIPE
)
133 && (DeviceObject
->DeviceType
!= FILE_DEVICE_MAILSLOT
))
135 if (!(DeviceObject
->Vpb
->Flags
& VPB_MOUNTED
))
137 DPRINT("Trying to mount storage device\n");
138 Status
= IoTryToMountStorageDevice (DeviceObject
);
139 DPRINT("Status %x\n", Status
);
140 if (!NT_SUCCESS(Status
))
142 CPRINT("Failed to mount storage device (statux %x)\n",
146 DeviceObject
= IoGetAttachedDevice(DeviceObject
);
149 RtlCreateUnicodeString(&(FileObject
->FileName
),
152 DPRINT("FileObject->FileName.Buffer %S\n",
153 FileObject
->FileName
.Buffer
);
154 FileObject
->DeviceObject
= DeviceObject
;
155 DPRINT("FileObject %x DeviceObject %x\n",
158 FileObject
->Vpb
= DeviceObject
->Vpb
;
159 FileObject
->Type
= InternalFileType
;
161 return (STATUS_SUCCESS
);
165 /**********************************************************************
167 * IoCreateStreamFileObject@8
186 IoCreateStreamFileObject(PFILE_OBJECT FileObject
,
187 PDEVICE_OBJECT DeviceObject
)
190 PFILE_OBJECT CreatedFileObject
;
193 DPRINT("IoCreateStreamFileObject(FileObject %x, DeviceObject %x)\n",
194 FileObject
, DeviceObject
);
196 assert_irql (PASSIVE_LEVEL
);
198 Status
= ObCreateObject (&FileHandle
,
199 STANDARD_RIGHTS_REQUIRED
,
202 (PVOID
*)&CreatedFileObject
);
203 if (!NT_SUCCESS(Status
))
205 DPRINT("Could not create FileObject\n");
209 if (FileObject
!= NULL
)
211 DeviceObject
= FileObject
->DeviceObject
;
213 DeviceObject
= IoGetAttachedDevice(DeviceObject
);
215 DPRINT("DeviceObject %x\n", DeviceObject
);
217 CreatedFileObject
->DeviceObject
= DeviceObject
;
218 CreatedFileObject
->Vpb
= DeviceObject
->Vpb
;
219 CreatedFileObject
->Type
= InternalFileType
;
220 CreatedFileObject
->Flags
|= FO_DIRECT_DEVICE_OPEN
;
222 ZwClose (FileHandle
);
224 return (CreatedFileObject
);
228 /**********************************************************************
233 * Either causes a new file or directory to be created, or it
234 * opens an existing file, device, directory or volume, giving
235 * the caller a handle for the file object. This handle can be
236 * used by subsequent calls to manipulate data within the file
237 * or the file object's state of attributes.
241 * Points to a variable which receives the file handle
245 * Desired access to the file;
248 * Structure describing the file;
250 * IoStatusBlock (OUT)
251 * Receives information about the operation on return;
253 * AllocationSize [OPTIONAL]
254 * Initial size of the file in bytes;
257 * Attributes to create the file with;
260 * Type of shared access the caller would like to the
264 * Specifies what to do, depending on whether the
265 * file already exists;
268 * Options for creating a new file;
270 * EaBuffer [OPTIONAL]
277 * Type of file (normal, named pipe, mailslot) to create;
279 * ExtraCreateParameters [OPTIONAL]
280 * Additional creation data for named pipe and mailsots;
289 * Prototype taken from Bo Branten's ntifs.h v15.
290 * Description taken from old NtCreateFile's which is
291 * now a wrapper of this call.
297 IoCreateFile(OUT PHANDLE FileHandle
,
298 IN ACCESS_MASK DesiredAccess
,
299 IN POBJECT_ATTRIBUTES ObjectAttributes
,
300 OUT PIO_STATUS_BLOCK IoStatusBlock
,
301 IN PLARGE_INTEGER AllocationSize OPTIONAL
,
302 IN ULONG FileAttributes
,
303 IN ULONG ShareAccess
,
304 IN ULONG CreateDisposition
,
305 IN ULONG CreateOptions
,
306 IN PVOID EaBuffer OPTIONAL
,
308 IN CREATE_FILE_TYPE CreateFileType
,
309 IN PVOID ExtraCreateParameters OPTIONAL
,
312 PFILE_OBJECT FileObject
;
316 PIO_STACK_LOCATION StackLoc
;
317 IO_STATUS_BLOCK IoSB
;
318 IO_SECURITY_CONTEXT SecurityContext
;
320 DPRINT("IoCreateFile(FileHandle %x, DesiredAccess %x, "
321 "ObjectAttributes %x ObjectAttributes->ObjectName->Buffer %S)\n",
322 FileHandle
,DesiredAccess
,ObjectAttributes
,
323 ObjectAttributes
->ObjectName
->Buffer
);
325 assert_irql(PASSIVE_LEVEL
);
329 Status
= ObCreateObject(FileHandle
,
333 (PVOID
*)&FileObject
);
334 if (!NT_SUCCESS(Status
))
336 DPRINT("ObCreateObject() failed!\n");
339 if (CreateOptions
& FILE_SYNCHRONOUS_IO_ALERT
)
341 FileObject
->Flags
|= (FO_ALERTABLE_IO
| FO_SYNCHRONOUS_IO
);
343 if (CreateOptions
& FILE_SYNCHRONOUS_IO_NONALERT
)
345 FileObject
->Flags
|= FO_SYNCHRONOUS_IO
;
348 if( CreateOptions
& FILE_NO_INTERMEDIATE_BUFFERING
)
349 FileObject
->Flags
|= FO_NO_INTERMEDIATE_BUFFERING
;
351 SecurityContext
.SecurityQos
= NULL
; /* ?? */
352 SecurityContext
.AccessState
= NULL
; /* ?? */
353 SecurityContext
.DesiredAccess
= DesiredAccess
;
354 SecurityContext
.FullCreateOptions
= 0; /* ?? */
356 KeInitializeEvent(&FileObject
->Lock
, NotificationEvent
, TRUE
);
357 KeInitializeEvent(&Event
, NotificationEvent
, FALSE
);
359 DPRINT("FileObject %x\n", FileObject
);
360 DPRINT("FileObject->DeviceObject %x\n", FileObject
->DeviceObject
);
362 * Create a new IRP to hand to
363 * the FS driver: this may fail
364 * due to resource shortage.
366 Irp
= IoAllocateIrp(FileObject
->DeviceObject
->StackSize
, FALSE
);
369 ZwClose(*FileHandle
);
370 return (STATUS_UNSUCCESSFUL
);
373 Irp
->UserIosb
= &IoSB
; //return iostatus
374 Irp
->AssociatedIrp
.SystemBuffer
= EaBuffer
;
375 Irp
->Tail
.Overlay
.AuxiliaryBuffer
= (PCHAR
)ExtraCreateParameters
;
376 Irp
->Tail
.Overlay
.Thread
= PsGetCurrentThread();
377 Irp
->UserEvent
= &Event
;
380 * Get the stack location for the new
381 * IRP and prepare it.
383 StackLoc
= IoGetNextIrpStackLocation(Irp
);
384 switch (CreateFileType
)
387 case CreateFileTypeNone
:
388 StackLoc
->MajorFunction
= IRP_MJ_CREATE
;
391 case CreateFileTypeNamedPipe
:
392 StackLoc
->MajorFunction
= IRP_MJ_CREATE_NAMED_PIPE
;
395 case CreateFileTypeMailslot
:
396 StackLoc
->MajorFunction
= IRP_MJ_CREATE_MAILSLOT
;
399 StackLoc
->MinorFunction
= 0;
400 StackLoc
->Flags
= Options
;
401 StackLoc
->Control
= 0;
402 StackLoc
->DeviceObject
= FileObject
->DeviceObject
;
403 StackLoc
->FileObject
= FileObject
;
404 StackLoc
->Parameters
.Create
.SecurityContext
= &SecurityContext
;
405 StackLoc
->Parameters
.Create
.Options
= (CreateOptions
& FILE_VALID_OPTION_FLAGS
);
406 StackLoc
->Parameters
.Create
.Options
|= (CreateDisposition
<< 24);
407 StackLoc
->Parameters
.Create
.FileAttributes
= FileAttributes
;
408 StackLoc
->Parameters
.Create
.ShareAccess
= ShareAccess
;
409 StackLoc
->Parameters
.Create
.EaLength
= EaLength
;
412 * Now call the driver and
413 * possibly wait if it can
414 * not complete the request
417 Status
= IofCallDriver(FileObject
->DeviceObject
, Irp
);
419 if (Status
== STATUS_PENDING
)
421 KeWaitForSingleObject(&Event
,
426 Status
= IoSB
.Status
;
428 if (!NT_SUCCESS(Status
))
430 DPRINT("Failing create request with status %x\n", Status
);
431 ZwClose(*FileHandle
);
435 *IoStatusBlock
= IoSB
;
437 assert_irql(PASSIVE_LEVEL
);
439 DPRINT("Finished IoCreateFile() (*FileHandle) %x\n", (*FileHandle
));
445 /**********************************************************************
450 * Entry point to call IoCreateFile with
451 * default parameters.
461 * Code originally in NtCreateFile moved in IoCreateFile.
464 NtCreateFile(PHANDLE FileHandle
,
465 ACCESS_MASK DesiredAccess
,
466 POBJECT_ATTRIBUTES ObjectAttributes
,
467 PIO_STATUS_BLOCK IoStatusBlock
,
468 PLARGE_INTEGER AllocateSize
,
469 ULONG FileAttributes
,
471 ULONG CreateDisposition
,
476 return IoCreateFile(FileHandle
,
493 /**********************************************************************
498 * Opens an existing file (simpler than NtCreateFile).
502 * Variable that receives the file handle on return;
505 * Access desired by the caller to the file;
508 * Structue describing the file to be opened;
510 * IoStatusBlock (OUT)
511 * Receives details about the result of the
515 * Type of shared access the caller requires;
518 * Options for the file open.
527 NtOpenFile(PHANDLE FileHandle
,
528 ACCESS_MASK DesiredAccess
,
529 POBJECT_ATTRIBUTES ObjectAttributes
,
530 PIO_STATUS_BLOCK IoStatusBlock
,
534 return IoCreateFile(FileHandle
,