3 * Copyright (C) 2008 ReactOS Team
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
19 * COPYRIGHT: See COPYING in the top level directory
20 * PROJECT: ReactOS kernel
21 * FILE: drivers/filesystem/ntfs/misc.c
22 * PURPOSE: NTFS filesystem driver
23 * PROGRAMMER: Pierre Schweitzer
27 /* INCLUDES *****************************************************************/
34 /* FUNCTIONS ****************************************************************/
37 * FUNCTION: Used with IRP to set them to TopLevelIrp field
39 * Irp = The IRP to set
40 * RETURNS: TRUE if top level was null, else FALSE
43 NtfsIsIrpTopLevel(PIRP Irp
)
45 BOOLEAN ReturnCode
= FALSE
;
47 TRACE_(NTFS
, "NtfsIsIrpTopLevel()\n");
49 if (IoGetTopLevelIrp() == NULL
)
51 IoSetTopLevelIrp(Irp
);
59 * FUNCTION: Allocate and fill an NTFS_IRP_CONTEXT struct in order to use it for IRP
61 * DeviceObject = Used to fill in struct
62 * Irp = The IRP that need IRP_CONTEXT struct
63 * RETURNS: NULL or PNTFS_IRP_CONTEXT
66 NtfsAllocateIrpContext(PDEVICE_OBJECT DeviceObject
,
69 PNTFS_IRP_CONTEXT IrpContext
;
70 PIO_STACK_LOCATION IoStackLocation
;
72 TRACE_(NTFS
, "NtfsAllocateIrpContext()\n");
74 IrpContext
= (PNTFS_IRP_CONTEXT
)ExAllocatePoolWithTag(NonPagedPool
,
75 sizeof(NTFS_IRP_CONTEXT
),
77 if (IrpContext
== NULL
)
80 RtlZeroMemory(IrpContext
, sizeof(NTFS_IRP_CONTEXT
));
82 IrpContext
->Identifier
.Type
= NTFS_TYPE_IRP_CONTEST
;
83 IrpContext
->Identifier
.Size
= sizeof(NTFS_IRP_CONTEXT
);
84 IrpContext
->Irp
= Irp
;
85 IrpContext
->DeviceObject
= DeviceObject
;
89 IoStackLocation
= IoGetCurrentIrpStackLocation(Irp
);
90 ASSERT(IoStackLocation
);
92 IrpContext
->MajorFunction
= IoStackLocation
->MajorFunction
;
93 IrpContext
->MinorFunction
= IoStackLocation
->MinorFunction
;
94 IrpContext
->IsTopLevel
= (IoGetTopLevelIrp() == Irp
);
101 -> http://msdn.microsoft.com/en-us/library/ms724228
102 -> http://bos.asmhackers.net/docs/filesystems/ntfs/standard.html#layout
105 NtfsDateTimeToFileTime(ULONGLONG NtfsTime
,
106 PLARGE_INTEGER SystemTime
)
109 SystemTime
->QuadPart
= NtfsTime
+ 116444736000000000;