Don't check for RequestedOptions if a trailing slash is removed.
[reactos.git] / reactos / drivers / fs / vfat / create.c
index 722364a..117721c 100644 (file)
-/* $Id: create.c,v 1.27 2001/07/05 01:51:52 rex Exp $
+/*
+ *  ReactOS kernel
+ *  Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
  *
- * COPYRIGHT:        See COPYING in the top level directory
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+/*
  * PROJECT:          ReactOS kernel
- * FILE:             services/fs/vfat/create.c
+ * FILE:             drivers/fs/vfat/create.c
  * PURPOSE:          VFAT Filesystem
  * PROGRAMMER:       Jason Filby (jasonfilby@yahoo.com)
-
+ *                   Hartmut Birr
  */
 
 /* INCLUDES *****************************************************************/
 
-#include <ddk/ntddk.h>
-#include <wchar.h>
-#include <limits.h>
-
 #define NDEBUG
-#include <debug.h>
-
 #include "vfat.h"
 
-/* GLOBALS *******************************************************************/
-
 /* FUNCTIONS *****************************************************************/
 
-BOOLEAN
-IsLastEntry (PVOID Block, ULONG Offset)
-/*
- * FUNCTION: Determine if the given directory entry is the last
- */
+void
+vfat8Dot3ToString (PFAT_DIR_ENTRY pEntry, PUNICODE_STRING NameU)
 {
-  return (((FATDirEntry *) Block)[Offset].Filename[0] == 0);
-}
+       OEM_STRING StringA;
+       USHORT Length;
+       CHAR  cString[12];
 
-BOOLEAN
-IsVolEntry (PVOID Block, ULONG Offset)
-/*
- * FUNCTION: Determine if the given directory entry is a vol entry
- */
-{
-  if ((((FATDirEntry *) Block)[Offset].Attrib) == 0x28)
-    return TRUE;
-  else
-    return FALSE;
-}
-
-BOOLEAN
-IsDeletedEntry (PVOID Block, ULONG Offset)
-/*
- * FUNCTION: Determines if the given entry is a deleted one
- */
-{
-  /* Checks special character */
-
-  return ((((FATDirEntry *) Block)[Offset].Filename[0] == 0xe5) ||
-         (((FATDirEntry *) Block)[Offset].Filename[0] == 0));
-}
+       RtlCopyMemory(cString, pEntry->ShortName, 11);
+       cString[11] = 0;
+       if (cString[0] == 0x05)
+       {
+               cString[0] = 0xe5;
+       }
 
-void  vfat8Dot3ToString (PCHAR pBasename, PCHAR pExtension, PWSTR pName)
-{
-  int  fromIndex, toIndex;
-
-  fromIndex = toIndex = 0; 
-  while (fromIndex < 8 && pBasename [fromIndex] != ' ')
-  {
-    pName [toIndex++] = pBasename [fromIndex++];
-  }
-  if (pExtension [0] != ' ')
-  {
-    pName [toIndex++] = L'.';
-    fromIndex = 0;
-    while (fromIndex < 3 && pBasename [fromIndex] != ' ')
-    {
-      pName [toIndex++] = pExtension [fromIndex++];
-    }
-  }
-  pName [toIndex] = L'\0';
-}
+       StringA.Buffer = cString;
+       for (StringA.Length = 0;
+       StringA.Length < 8 && StringA.Buffer[StringA.Length] != ' ';
+       StringA.Length++);
+       StringA.MaximumLength = StringA.Length;
 
-static void  vfat8Dot3ToVolumeLabel (PCHAR pBasename, PCHAR pExtension, PWSTR pName)
-{
-  int  fromIndex, toIndex;
-
-  fromIndex = toIndex = 0; 
-  while (fromIndex < 8 && pBasename [fromIndex] != ' ')
-  {
-    pName [toIndex++] = pBasename [fromIndex++];
-  }
-  if (pExtension [0] != ' ')
-  {
-    fromIndex = 0;
-    while (fromIndex < 3 && pBasename [fromIndex] != ' ')
-    {
-      pName [toIndex++] = pExtension [fromIndex++];
-    }
-  }
-  pName [toIndex] = L'\0';
-}
+       RtlOemStringToUnicodeString(NameU, &StringA, FALSE);
 
-BOOLEAN
-GetEntryName (PVOID Block, PULONG _Offset, PWSTR Name, PULONG _jloop,
-             PDEVICE_EXTENSION DeviceExt, ULONG * _StartingSector)
-/*
- * FUNCTION: Retrieves the file name, be it in short or long file name format
- */
-{
-  FATDirEntry *test;
-  slot *test2;
-  ULONG Offset = *_Offset;
-  ULONG StartingSector = *_StartingSector;
-  ULONG jloop = *_jloop;
-  ULONG cpos;
-
-  test = (FATDirEntry *) Block;
-  test2 = (slot *) Block;
-
-  *Name = 0;
-
-  if (IsDeletedEntry (Block, Offset))
-    {
-      return (FALSE);
-    }
-
-  if (test2[Offset].attr == 0x0f)
-    {
-      vfat_initstr (Name, 256);
-      vfat_wcsncpy (Name, test2[Offset].name0_4, 5);
-      vfat_wcsncat (Name, test2[Offset].name5_10, 5, 6);
-      vfat_wcsncat (Name, test2[Offset].name11_12, 11, 2);
-
-      cpos = 0;
-      while ((test2[Offset].id != 0x41) && (test2[Offset].id != 0x01) &&
-            (test2[Offset].attr > 0))
+       if (pEntry->lCase & VFAT_CASE_LOWER_BASE)
        {
-         Offset++;
-         if (Offset == ENTRIES_PER_SECTOR)
-           {
-             Offset = 0;
-              /* FIXME: Check status */
-              GetNextSector (DeviceExt, StartingSector, &StartingSector, FALSE);
-             jloop++;
-             /* FIXME: Check status */
-             VfatReadSectors (DeviceExt->StorageDevice,
-                              StartingSector, 1, Block);
-             test2 = (slot *) Block;
-           }
-         cpos++;
-         vfat_movstr (Name, 13, 0, cpos * 13);
-         vfat_wcsncpy (Name, test2[Offset].name0_4, 5);
-         vfat_wcsncat (Name, test2[Offset].name5_10, 5, 6);
-         vfat_wcsncat (Name, test2[Offset].name11_12, 11, 2);
-
+               RtlDowncaseUnicodeString(NameU, NameU, FALSE);
        }
-
-      if (IsDeletedEntry (Block, Offset + 1))
+       if (cString[8] != ' ')
        {
-         Offset++;
-         *_Offset = Offset;
-         *_jloop = jloop;
-         *_StartingSector = StartingSector;
-         return (FALSE);
+               Length = NameU->Length;
+               NameU->Buffer += Length / sizeof(WCHAR);
+               if (!FAT_ENTRY_VOLUME(pEntry))
+               {
+                       Length += sizeof(WCHAR);
+                       NameU->Buffer[0] = L'.';
+                       NameU->Buffer++;
+               }
+               NameU->Length = 0;
+               NameU->MaximumLength -= Length;
+
+               StringA.Buffer = &cString[8];
+               for (StringA.Length = 0;
+               StringA.Length < 3 && StringA.Buffer[StringA.Length] != ' ';
+               StringA.Length++);
+               StringA.MaximumLength = StringA.Length;
+               RtlOemStringToUnicodeString(NameU, &StringA, FALSE);
+               if (pEntry->lCase & VFAT_CASE_LOWER_EXT)
+               {
+                       RtlDowncaseUnicodeString(NameU, NameU, FALSE);
+               }
+               NameU->Buffer -= Length / sizeof(WCHAR);
+               NameU->Length += Length;
+               NameU->MaximumLength += Length;
        }
-
-      *_Offset = Offset;
-      *_jloop = jloop;
-      *_StartingSector = StartingSector;
-
-      return (TRUE);
-    }
-
-  vfat8Dot3ToString (test[Offset].Filename, test[Offset].Ext, Name);
-
-  *_Offset = Offset;
-
-  return (TRUE);
+       NameU->Buffer[NameU->Length / sizeof(WCHAR)] = 0;
+       DPRINT("'%wZ'\n", NameU);
 }
 
 NTSTATUS
@@ -181,526 +94,687 @@ ReadVolumeLabel (PDEVICE_EXTENSION DeviceExt, PVPB Vpb)
  * FUNCTION: Read the volume label
  */
 {
-  ULONG i = 0;
-  ULONG j;
-  ULONG Size;
-  char *block;
-  ULONG StartingSector;
-  ULONG NextCluster;
-  NTSTATUS Status;
-
-  Size = DeviceExt->rootDirectorySectors;      /* FIXME : in fat32, no limit */
-  StartingSector = DeviceExt->rootStart;
-  NextCluster = 0;
-
-  block = ExAllocatePool (NonPagedPool, BLOCKSIZE);
-  DPRINT ("FindFile : start at sector %lx, entry %ld\n", StartingSector, i);
-  for (j = 0; j < Size; j++)
-    {
-      /* FIXME: Check status */
-      VfatReadSectors (DeviceExt->StorageDevice, StartingSector, 1, block);
-
-      for (i = 0; i < ENTRIES_PER_SECTOR; i++)
+       PVOID Context = NULL;
+       ULONG DirIndex = 0;
+       PDIR_ENTRY Entry;
+       PVFATFCB pFcb;
+       LARGE_INTEGER FileOffset;
+       UNICODE_STRING NameU;
+       ULONG SizeDirEntry;
+       ULONG EntriesPerPage;
+       OEM_STRING StringO;
+
+       NameU.Buffer = Vpb->VolumeLabel;
+       NameU.Length = 0;
+       NameU.MaximumLength = sizeof(Vpb->VolumeLabel);
+       *(Vpb->VolumeLabel) = 0;
+       Vpb->VolumeLabelLength = 0;
+
+       if (DeviceExt->Flags & VCB_IS_FATX)
        {
-         if (IsVolEntry ((PVOID) block, i))
-           {
-             FATDirEntry *test = (FATDirEntry *) block;
-
-             /* copy volume label */
-              vfat8Dot3ToVolumeLabel (test[i].Filename, test[i].Ext, Vpb->VolumeLabel);
-             Vpb->VolumeLabelLength = wcslen (Vpb->VolumeLabel);
-
-             ExFreePool (block);
-             return (STATUS_SUCCESS);
-           }
-         if (IsLastEntry ((PVOID) block, i))
-           {
-             *(Vpb->VolumeLabel) = 0;
-             Vpb->VolumeLabelLength = 0;
-             ExFreePool (block);
-             return (STATUS_UNSUCCESSFUL);
-           }
+               SizeDirEntry = sizeof(FATX_DIR_ENTRY);
+               EntriesPerPage = FATX_ENTRIES_PER_PAGE;
+       }
+       else
+       {
+               SizeDirEntry = sizeof(FAT_DIR_ENTRY);
+               EntriesPerPage = FAT_ENTRIES_PER_PAGE;
        }
-      /* not found in this sector, try next : */
 
-      /* directory can be fragmented although it is best to keep them
-         unfragmented.*/
-      StartingSector++;
+       ExAcquireResourceExclusiveLite (&DeviceExt->DirResource, TRUE);
+       pFcb = vfatOpenRootFCB (DeviceExt);
+       ExReleaseResourceLite (&DeviceExt->DirResource);
 
-      if (DeviceExt->FatType == FAT32)
+       FileOffset.QuadPart = 0;
+       if (CcMapData(pFcb->FileObject, &FileOffset, PAGE_SIZE, TRUE, &Context, (PVOID*)&Entry))
        {
-         if (StartingSector == ClusterToSector (DeviceExt, NextCluster + 1))
-           {
-             Status = GetNextCluster (DeviceExt, NextCluster, &NextCluster,
-                                      FALSE);
-             if (NextCluster == 0 || NextCluster == 0xffffffff)
-               {
-                 *(Vpb->VolumeLabel) = 0;
-                 Vpb->VolumeLabelLength = 0;
-                 ExFreePool (block);
-                 return (STATUS_UNSUCCESSFUL);
-               }
-             StartingSector = ClusterToSector (DeviceExt, NextCluster);
-           }
+               while (TRUE)
+               {
+                       if (ENTRY_VOLUME(DeviceExt, Entry))
+                       {
+                               /* copy volume label */
+                               if (DeviceExt->Flags & VCB_IS_FATX)
+                               {
+                                       StringO.Buffer = (PCHAR)Entry->FatX.Filename;
+                                       StringO.MaximumLength = StringO.Length = Entry->FatX.FilenameLength;
+                                       RtlOemStringToUnicodeString(&NameU, &StringO, FALSE);
+                               }
+                               else
+                               {
+                                       vfat8Dot3ToString (&Entry->Fat, &NameU);
+                               }
+                               Vpb->VolumeLabelLength = NameU.Length;
+                               break;
+                       }
+                       if (ENTRY_END(DeviceExt, Entry))
+                       {
+                               break;
+                       }
+                       DirIndex++;
+                       Entry = (PDIR_ENTRY)((ULONG_PTR)Entry + SizeDirEntry);
+                       if ((DirIndex % EntriesPerPage) == 0)
+                       {
+                               CcUnpinData(Context);
+                               FileOffset.u.LowPart += PAGE_SIZE;
+                               if (!CcMapData(pFcb->FileObject, &FileOffset, PAGE_SIZE, TRUE, &Context, (PVOID*)&Entry))
+                               {
+                                       Context = NULL;
+                                       break;
+                               }
+                       }
+               }
+               if (Context)
+               {
+                       CcUnpinData(Context);
+               }
        }
-    }
-  *(Vpb->VolumeLabel) = 0;
-  Vpb->VolumeLabelLength = 0;
-  ExFreePool (block);
-  return (STATUS_UNSUCCESSFUL);
-}
+       ExAcquireResourceExclusiveLite (&DeviceExt->DirResource, TRUE);
+       vfatReleaseFCB (DeviceExt, pFcb);
+       ExReleaseResourceLite (&DeviceExt->DirResource);
 
+       return STATUS_SUCCESS;
+}
 
 NTSTATUS
-FindFile (PDEVICE_EXTENSION DeviceExt, PVFATFCB Fcb,
-         PVFATFCB Parent, PWSTR FileToFind, ULONG * StartSector,
-         ULONG * Entry)
+FindFile (
+       PDEVICE_EXTENSION DeviceExt,
+       PVFATFCB Parent,
+       PUNICODE_STRING FileToFindU,
+       PVFAT_DIRENTRY_CONTEXT DirContext,
+       BOOLEAN First)
 /*
  * FUNCTION: Find a file
  */
 {
-  ULONG i, j;
-  ULONG Size;
-  char *block;
-  WCHAR name[256];
-  ULONG StartingSector;
-  ULONG NextCluster;
-  WCHAR TempStr[2];
-  NTSTATUS Status;
-  ULONG len;
-
-//  DPRINT ("FindFile(Parent %x, FileToFind '%S')\n", Parent, FileToFind);
-  DPRINT("FindFile: old Pathname %x, old Objectname %x)\n",Fcb->PathName, Fcb->ObjectName);
-
-  if (wcslen (FileToFind) == 0)
-    {
-      CHECKPOINT;
-      TempStr[0] = (WCHAR) '.';
-      TempStr[1] = 0;
-      FileToFind = (PWSTR)&TempStr;
-    }
-
-  if (Parent == NULL || Parent->entry.FirstCluster == 1)
-    {
-      Size = DeviceExt->rootDirectorySectors;  /* FIXME : in fat32, no limit */
-      StartingSector = DeviceExt->rootStart;
-      NextCluster = 0;
-      if (FileToFind[0] == 0 || (FileToFind[0] == '\\' && FileToFind[1] == 0)
-         || (FileToFind[0] == '.' && FileToFind[1] == 0))
+       PWCHAR PathNameBuffer;
+       USHORT PathNameBufferLength;
+       NTSTATUS Status;
+       PVOID Context = NULL;
+       PVOID Page;
+       PVFATFCB rcFcb;
+       BOOLEAN Found;
+       UNICODE_STRING PathNameU;
+       UNICODE_STRING FileToFindUpcase;
+       BOOLEAN WildCard;
+
+       DPRINT ("FindFile(Parent %x, FileToFind '%wZ', DirIndex: %d)\n",
+               Parent, FileToFindU, DirContext->DirIndex);
+       DPRINT ("FindFile: Path %wZ)\n",&Parent->PathNameU);
+
+       PathNameBufferLength = LONGNAME_MAX_LENGTH * sizeof(WCHAR);
+       PathNameBuffer = ExAllocatePool(NonPagedPool, PathNameBufferLength + sizeof(WCHAR));
+       if (!PathNameBuffer)
+       {
+               CHECKPOINT1;
+               return STATUS_INSUFFICIENT_RESOURCES;
+       }
+
+       PathNameU.Buffer = PathNameBuffer;
+       PathNameU.Length = 0;
+       PathNameU.MaximumLength = PathNameBufferLength;
+
+       DirContext->LongNameU.Length = 0;
+       DirContext->ShortNameU.Length = 0;
+
+       WildCard = FsRtlDoesNameContainWildCards(FileToFindU);
+
+       if (WildCard == FALSE)
        {
-         /* it's root : complete essentials fields then return ok */
-         CHECKPOINT;
-         memset (Fcb, 0, sizeof (VFATFCB));
-         memset (Fcb->entry.Filename, ' ', 11);
-         CHECKPOINT;
-         Fcb->PathName[0]='\\';
-         Fcb->ObjectName = &Fcb->PathName[1];
-         Fcb->entry.FileSize = DeviceExt->rootDirectorySectors * BLOCKSIZE;
-         Fcb->entry.Attrib = FILE_ATTRIBUTE_DIRECTORY;
-         if (DeviceExt->FatType == FAT32)
-           Fcb->entry.FirstCluster = 2;
-         else
-           Fcb->entry.FirstCluster = 1;    
-         if (StartSector)
-           *StartSector = StartingSector;
-         if (Entry)
-           *Entry = 0;
-           DPRINT("FindFile: new Pathname %S, new Objectname %S)\n",Fcb->PathName, Fcb->ObjectName);
-         return (STATUS_SUCCESS);
+               /* if there is no '*?' in the search name, than look first for an existing fcb */
+               RtlCopyUnicodeString(&PathNameU, &Parent->PathNameU);
+               if (!vfatFCBIsRoot(Parent))
+               {
+                       PathNameU.Buffer[PathNameU.Length / sizeof(WCHAR)] = L'\\';
+                       PathNameU.Length += sizeof(WCHAR);
+               }
+               RtlAppendUnicodeStringToString(&PathNameU, FileToFindU);
+               PathNameU.Buffer[PathNameU.Length / sizeof(WCHAR)] = 0;
+               rcFcb = vfatGrabFCBFromTable(DeviceExt, &PathNameU);
+               if (rcFcb)
+               {
+                       ULONG startIndex = rcFcb->startIndex;
+                       if ((rcFcb->Flags & FCB_IS_FATX_ENTRY) && !vfatFCBIsRoot(Parent))
+                       {
+                               startIndex += 2;
+                       }
+                       if(startIndex >= DirContext->DirIndex)
+                       {
+                               RtlCopyUnicodeString(&DirContext->LongNameU, &rcFcb->LongNameU);
+                               RtlCopyUnicodeString(&DirContext->ShortNameU, &rcFcb->ShortNameU);
+                               RtlCopyMemory(&DirContext->DirEntry, &rcFcb->entry, sizeof(DIR_ENTRY));
+                               DirContext->StartIndex = rcFcb->startIndex;
+                               DirContext->DirIndex = rcFcb->dirIndex;
+                               DPRINT("FindFile: new Name %wZ, DirIndex %d (%d)\n",
+                                       &DirContext->LongNameU, DirContext->DirIndex, DirContext->StartIndex);
+                               Status = STATUS_SUCCESS;
+                       }
+                       else
+                       {
+                               CHECKPOINT1;
+                               Status = STATUS_UNSUCCESSFUL;
+                       }
+                       vfatReleaseFCB(DeviceExt, rcFcb);
+                       ExFreePool(PathNameBuffer);
+                       return Status;
+               }
        }
-    }
-  else
-    {
-      DPRINT ("Parent->entry.FileSize %x\n", Parent->entry.FileSize);
-
-      Size = ULONG_MAX;
-      if (DeviceExt->FatType == FAT32)
-       NextCluster = Parent->entry.FirstCluster
-         + Parent->entry.FirstClusterHigh * 65536;
-      else
-       NextCluster = Parent->entry.FirstCluster;
-      StartingSector = ClusterToSector (DeviceExt, NextCluster);
-      if (Parent->entry.FirstCluster == 1 && DeviceExt->FatType != FAT32)
+
+       /* FsRtlIsNameInExpression need the searched string to be upcase,
+       * even if IgnoreCase is specified */
+       Status = RtlUpcaseUnicodeString(&FileToFindUpcase, FileToFindU, TRUE);
+       if (!NT_SUCCESS(Status))
        {
-         /* read of root directory in FAT16 or FAT12 */
-         StartingSector = DeviceExt->rootStart;
+               CHECKPOINT;
+               ExFreePool(PathNameBuffer);
+               return Status;
        }
-    }
-  block = ExAllocatePool (NonPagedPool, BLOCKSIZE);
-  if (StartSector && (*StartSector))
-    StartingSector = *StartSector;
-  i = (Entry) ? (*Entry) : 0;
-  for (j = 0; j < Size; j++)
-    {
-      /* FIXME: Check status */
-      VfatReadSectors (DeviceExt->StorageDevice, StartingSector, 1, block);
-
-      for (i = (Entry) ? (*Entry) : 0; i < ENTRIES_PER_SECTOR; i++)
+
+       while(TRUE)
        {
-         if (IsVolEntry ((PVOID) block, i))
-           continue;
-         if (IsLastEntry ((PVOID) block, i))
-           {
-             if (StartSector)
-               *StartSector = StartingSector;
-             if (Entry)
-               *Entry = i;
-             ExFreePool (block);
-             return (STATUS_UNSUCCESSFUL);
-           }
-         if (GetEntryName
-             ((PVOID) block, &i, name, &j, DeviceExt, &StartingSector))
-           {
-             if (wstrcmpjoki (name, FileToFind))
-               {
-                 /* In the case of a long filename, the firstcluster is 
-                    stored in the next record -- where it's short name is */
-                 if (((FATDirEntry *) block)[i].Attrib == 0x0f)
-                   i++;
-                 if (i == (ENTRIES_PER_SECTOR))
-                   {
-                      /* FIXME: Check status */
-                     GetNextSector (DeviceExt, StartingSector, &StartingSector, FALSE);
-
-                     /* FIXME: Check status */
-                     VfatReadSectors (DeviceExt->StorageDevice,
-                                      StartingSector, 1, block);
-                     i = 0;
-                   }
-                 if (Parent && Parent->PathName)
-                 {
-                   len = wcslen(Parent->PathName);
-                   CHECKPOINT;
-                   memcpy(Fcb->PathName, Parent->PathName, len*sizeof(WCHAR));
-                   Fcb->ObjectName=&Fcb->PathName[len];
-                 }
-                 else
-                       Fcb->ObjectName=Fcb->PathName;
-
-                 Fcb->ObjectName[0]='\\';
-                 Fcb->ObjectName=&Fcb->ObjectName[1];
-
-                 memcpy (&Fcb->entry, &((FATDirEntry *) block)[i],
-                         sizeof (FATDirEntry));
-                 vfat_wcsncpy (Fcb->ObjectName, name, MAX_PATH);
-                 if (StartSector)
-                   *StartSector = StartingSector;
-                 if (Entry)
-                   *Entry = i;
-                 ExFreePool (block);
-           DPRINT("FindFile: new Pathname %S, new Objectname %S)\n",Fcb->PathName, Fcb->ObjectName);
-                 return (STATUS_SUCCESS);
-               }
-           }
+               Status = DeviceExt->GetNextDirEntry(&Context, &Page, Parent, DirContext, First);
+               First = FALSE;
+               if (Status == STATUS_NO_MORE_ENTRIES)
+               {
+                       break;
+               }
+               if (ENTRY_VOLUME(DeviceExt, &DirContext->DirEntry))
+               {
+                       DirContext->DirIndex++;
+                       continue;
+               }
+               if (WildCard)
+               {
+                       Found = FsRtlIsNameInExpression(&FileToFindUpcase, &DirContext->LongNameU, TRUE, NULL) ||
+                               FsRtlIsNameInExpression(&FileToFindUpcase, &DirContext->ShortNameU, TRUE, NULL);
+               }
+               else
+               {
+                       Found = FsRtlAreNamesEqual(&DirContext->LongNameU, FileToFindU, TRUE, NULL) ||
+                               FsRtlAreNamesEqual(&DirContext->ShortNameU, FileToFindU, TRUE, NULL);
+               }
+
+               if (Found)
+               {
+                       if (WildCard)
+                       {
+                               RtlCopyUnicodeString(&PathNameU, &Parent->PathNameU);
+                               if (!vfatFCBIsRoot(Parent))
+                               {
+                                       PathNameU.Buffer[PathNameU.Length / sizeof(WCHAR)] = L'\\';
+                                       PathNameU.Length += sizeof(WCHAR);
+                               }
+                               RtlAppendUnicodeStringToString(&PathNameU, &DirContext->LongNameU);
+                               PathNameU.Buffer[PathNameU.Length / sizeof(WCHAR)] = 0;
+                               rcFcb = vfatGrabFCBFromTable(DeviceExt, &PathNameU);
+                               if (rcFcb != NULL)
+                               {
+                                       RtlCopyMemory(&DirContext->DirEntry, &rcFcb->entry, sizeof(DIR_ENTRY));
+                                       vfatReleaseFCB(DeviceExt, rcFcb);
+                               }
+                       }
+                       DPRINT("%d\n", DirContext->LongNameU.Length);
+                       DPRINT("FindFile: new Name %wZ, DirIndex %d\n",
+                               &DirContext->LongNameU, DirContext->DirIndex);
+
+                       if (Context)
+                       {
+                               CcUnpinData(Context);
+                       }
+                       RtlFreeUnicodeString(&FileToFindUpcase);
+                       ExFreePool(PathNameBuffer);
+                       return STATUS_SUCCESS;
+               }
+               DirContext->DirIndex++;
        }
-      /* not found in this sector, try next : */
-
-      /* directory can be fragmented although it is best to keep them
-         unfragmented. Should we change this to also use GetNextSector?
-         GetNextSector was originally implemented to handle the case above */
-      if (Entry)
-       *Entry = 0;
-      StartingSector++;
-      if ((Parent != NULL && Parent->entry.FirstCluster != 1)
-         || DeviceExt->FatType == FAT32)
+
+       if (Context)
        {
-         if (StartingSector == ClusterToSector (DeviceExt, NextCluster + 1))
-           {
-             Status = GetNextCluster (DeviceExt, NextCluster, &NextCluster,
-                                      FALSE);
-             if (NextCluster == 0 || NextCluster == 0xffffffff)
-               {
-                 if (StartSector)
-                   *StartSector = StartingSector;
-                 if (Entry)
-                   *Entry = i;
-                 ExFreePool (block);
-                 return (STATUS_UNSUCCESSFUL);
-               }
-             StartingSector = ClusterToSector (DeviceExt, NextCluster);
-           }
+               CcUnpinData(Context);
        }
-    }
-  if (StartSector)
-    *StartSector = StartingSector;
-  if (Entry)
-    *Entry = i;
-  ExFreePool (block);
-  return (STATUS_UNSUCCESSFUL);
-}
 
-NTSTATUS 
-vfatMakeAbsoluteFilename (PFILE_OBJECT pFileObject, 
-                          PWSTR pRelativeFileName,
-                          PWSTR *pAbsoluteFilename)
-{
-  PWSTR  rcName;
-  PVFATFCB  fcb;
-  PVFATCCB  ccb;
-
-  DbgPrint ("try related for %S\n", pRelativeFileName);
-  ccb = pFileObject->FsContext2;
-  assert (ccb);
-  fcb = ccb->pFcb;
-  assert (fcb);
-
-  /* verify related object is a directory and target name 
-     don't start with \. */
-  if (!(fcb->entry.Attrib & FILE_ATTRIBUTE_DIRECTORY) 
-      || (pRelativeFileName[0] != '\\'))
-  {
-    return  STATUS_INVALID_PARAMETER;
-  }
-
-  /* construct absolute path name */
-  assert (wcslen (fcb->PathName) + 1 + wcslen (pRelativeFileName) + 1 
-          <= MAX_PATH);
-  rcName = ExAllocatePool (NonPagedPool, MAX_PATH);
-  wcscpy (rcName, fcb->PathName);
-  wcscat (rcName, L"\\");
-  wcscat (rcName, pRelativeFileName);
-  *pAbsoluteFilename = rcName;
-
-  return  STATUS_SUCCESS;
+       RtlFreeUnicodeString(&FileToFindUpcase);
+       ExFreePool(PathNameBuffer);
+       return Status;
 }
 
+static
 NTSTATUS
-VfatOpenFile (PDEVICE_EXTENSION DeviceExt, PFILE_OBJECT FileObject,
-            PWSTR FileName)
+VfatOpenFile (
+       PDEVICE_EXTENSION DeviceExt,
+        PUNICODE_STRING PathNameU,
+       PFILE_OBJECT FileObject,
+       PVFATFCB* ParentFcb )
 /*
  * FUNCTION: Opens a file
  */
 {
-  PVFATFCB ParentFcb;
-  PVFATFCB Fcb;
-  NTSTATUS Status;
-  PWSTR AbsFileName = NULL;
-
-  DPRINT ("VfatOpenFile(%08lx, %08lx, %S)\n", DeviceExt, FileObject, FileName);
-
-  if (FileObject->RelatedFileObject)
-    {
-      DPRINT ("Converting relative filename to absolute filename\n");
-      Status = vfatMakeAbsoluteFilename (FileObject->RelatedFileObject,
-                                         FileName,
-                                         &AbsFileName);
-      FileName = AbsFileName;
-    }
-
-  //FIXME: Get cannonical path name (remove .'s, ..'s and extra separators)
-
-  DPRINT ("PathName to open: %S\n", FileName);
-
-  /*  try first to find an existing FCB in memory  */
-  DPRINT ("Checking for existing FCB in memory\n");
-  Fcb = vfatGrabFCBFromTable (DeviceExt, FileName);
-  if (Fcb == NULL)
-  {
-    DPRINT ("No existing FCB found, making a new one if file exists.\n");
-    Status = vfatGetFCBForFile (DeviceExt, &ParentFcb, &Fcb, FileName);
-    if (ParentFcb != NULL)
-    {
-      vfatReleaseFCB (DeviceExt, ParentFcb);
-    }
-    if (!NT_SUCCESS (Status))
-    {
-      DPRINT ("Could not make a new FCB, status: %x\n", Status);
-
-      if (AbsFileName)
-        ExFreePool (AbsFileName);
-
-      return  Status;
-    }
-  }
-
-  DPRINT ("Attaching FCB to fileObject\n");
-  Status = vfatAttachFCBToFileObject (DeviceExt, Fcb, FileObject);
-
-  if (AbsFileName)
-    ExFreePool (AbsFileName);
-
-  return  Status;
+       PVFATFCB Fcb;
+       NTSTATUS Status;
+
+       DPRINT ("VfatOpenFile(%08lx, '%wZ', %08lx, %08lx)\n", DeviceExt, PathNameU, FileObject, ParentFcb);
+
+       if (FileObject->RelatedFileObject)
+       {
+               DPRINT ("'%wZ'\n", &FileObject->RelatedFileObject->FileName);
+
+               *ParentFcb = FileObject->RelatedFileObject->FsContext;
+               (*ParentFcb)->RefCount++;
+       }
+       else
+       {
+               *ParentFcb = NULL;
+       }
+
+       if (!DeviceExt->FatInfo.FixedMedia)
+       {
+               Status = VfatBlockDeviceIoControl (DeviceExt->StorageDevice,
+                       IOCTL_DISK_CHECK_VERIFY,
+                       NULL,
+                       0,
+                       NULL,
+                       0,
+                       FALSE);
+
+               if (Status == STATUS_VERIFY_REQUIRED)
+
+               {
+                       PDEVICE_OBJECT DeviceToVerify;
+
+                       DPRINT ("Media change detected!\n");
+                       DPRINT ("Device %p\n", DeviceExt->StorageDevice);
+
+                       DeviceToVerify = IoGetDeviceToVerify (PsGetCurrentThread ());
+
+                       IoSetDeviceToVerify (PsGetCurrentThread (),
+                               NULL);
+                       Status = IoVerifyVolume (DeviceExt->StorageDevice,
+                               FALSE);
+               }
+               if (!NT_SUCCESS(Status))
+               {
+                       DPRINT ("Status %lx\n", Status);
+                       *ParentFcb = NULL;
+                       return Status;
+               }
+       }
+
+       if (*ParentFcb)
+       {
+               (*ParentFcb)->RefCount++;
+       }
+
+       /*  try first to find an existing FCB in memory  */
+       DPRINT ("Checking for existing FCB in memory\n");
+
+       Status = vfatGetFCBForFile (DeviceExt, ParentFcb, &Fcb, PathNameU);
+       if (!NT_SUCCESS (Status))
+       {
+               DPRINT ("Could not make a new FCB, status: %x\n", Status);
+               return  Status;
+       }
+       if (Fcb->Flags & FCB_DELETE_PENDING)
+       {
+               vfatReleaseFCB (DeviceExt, Fcb);
+               return STATUS_DELETE_PENDING;
+       }
+       DPRINT ("Attaching FCB to fileObject\n");
+       Status = vfatAttachFCBToFileObject (DeviceExt, Fcb, FileObject);
+       if (!NT_SUCCESS(Status))
+       {
+               vfatReleaseFCB (DeviceExt, Fcb);
+       }
+       return  Status;
 }
 
-NTSTATUS
-VfatCreateFile (PDEVICE_OBJECT DeviceObject, PIRP Irp)
+static NTSTATUS
+VfatCreateFile ( PDEVICE_OBJECT DeviceObject, PIRP Irp )
 /*
  * FUNCTION: Create or open a file
  */
 {
-  PIO_STACK_LOCATION Stack;
-  PFILE_OBJECT FileObject;
-  NTSTATUS Status = STATUS_SUCCESS;
-  PDEVICE_EXTENSION DeviceExt;
-  ULONG RequestedDisposition, RequestedOptions;
-  PVFATCCB pCcb;
-  PVFATFCB pFcb;
-  PWCHAR c;
-
-  Stack = IoGetCurrentIrpStackLocation (Irp);
-  assert (Stack);
-  RequestedDisposition = ((Stack->Parameters.Create.Options >> 24) & 0xff);
-  RequestedOptions =
-    Stack->Parameters.Create.Options & FILE_VALID_OPTION_FLAGS;
-  if ((RequestedOptions & FILE_DIRECTORY_FILE)
-      && RequestedDisposition == FILE_SUPERSEDE)
-    return STATUS_INVALID_PARAMETER;
-  FileObject = Stack->FileObject;
-  DeviceExt = DeviceObject->DeviceExtension;
-  assert (DeviceExt);
-  
-  /*
-   * Check for illegal characters in the file name
-   */
-  c = FileObject->FileName.Buffer;
-  while (*c != 0)
-    {
-      if (*c == L'*' || *c == L'?')
+       PIO_STACK_LOCATION Stack;
+       PFILE_OBJECT FileObject;
+       NTSTATUS Status = STATUS_SUCCESS;
+       PDEVICE_EXTENSION DeviceExt;
+       ULONG RequestedDisposition, RequestedOptions;
+       PVFATCCB pCcb;
+       PVFATFCB pFcb = NULL;
+       PVFATFCB ParentFcb;
+       PWCHAR c, last;
+       BOOLEAN PagingFileCreate = FALSE;
+       BOOLEAN Dots;
+       UNICODE_STRING FileNameU;
+        UNICODE_STRING PathNameU;
+
+       /* Unpack the various parameters. */
+       Stack = IoGetCurrentIrpStackLocation (Irp);
+       RequestedDisposition = ((Stack->Parameters.Create.Options >> 24) & 0xff);
+       RequestedOptions =
+               Stack->Parameters.Create.Options & FILE_VALID_OPTION_FLAGS;
+       PagingFileCreate = (Stack->Flags & SL_OPEN_PAGING_FILE) ? TRUE : FALSE;
+       FileObject = Stack->FileObject;
+       DeviceExt = DeviceObject->DeviceExtension;
+
+       /* Check their validity. */
+       if (RequestedOptions & FILE_DIRECTORY_FILE &&
+               RequestedDisposition == FILE_SUPERSEDE)
        {
-         Irp->IoStatus.Information = 0;
-         Irp->IoStatus.Status = STATUS_OBJECT_NAME_INVALID;
-         return(STATUS_OBJECT_NAME_INVALID);
+               return(STATUS_INVALID_PARAMETER);
        }
-      c++;
-    }
-
-  Status = VfatOpenFile (DeviceExt, FileObject, FileObject->FileName.Buffer);
-
-  /*
-   * If the directory containing the file to open doesn't exist then
-   * fail immediately
-   */
-  Irp->IoStatus.Information = 0;
-  if (Status == STATUS_OBJECT_PATH_NOT_FOUND)
-    {
-      Irp->IoStatus.Status = Status;
-      return Status;
-    }
-
-  if (!NT_SUCCESS (Status))
-    {
-      /*
-       * If the file open failed then create the required file
-       */
-      if (RequestedDisposition == FILE_CREATE || 
-         RequestedDisposition == FILE_OPEN_IF || 
-         RequestedDisposition == FILE_OVERWRITE_IF || 
-         RequestedDisposition == FILE_SUPERSEDE)
+
+        if (RequestedOptions & FILE_DIRECTORY_FILE &&
+            RequestedOptions & FILE_NON_DIRECTORY_FILE)
+        {
+               return(STATUS_INVALID_PARAMETER);
+        }
+
+       /* This a open operation for the volume itself */
+       if (FileObject->FileName.Length == 0 &&
+               FileObject->RelatedFileObject == NULL)
        {
-         CHECKPOINT;
-         Status = 
-           addEntry (DeviceExt, FileObject, RequestedOptions,
-                     (Stack->Parameters.
-                      Create.FileAttributes & FILE_ATTRIBUTE_VALID_FLAGS));
-         if (NT_SUCCESS (Status))
-           Irp->IoStatus.Information = FILE_CREATED;
-         /* FIXME set size if AllocationSize requested */
-         /* FIXME set extended attributes? */
-         /* FIXME set share access */
-         /* IoSetShareAccess(DesiredAccess,ShareAccess,FileObject,
-          * ((PVfatCCB)(FileObject->FsContext2))->pFcb->FCBShareAccess);
-          */
+               if (RequestedDisposition == FILE_CREATE ||
+                       RequestedDisposition == FILE_OVERWRITE_IF ||
+                       RequestedDisposition == FILE_SUPERSEDE)
+               {
+                       return(STATUS_ACCESS_DENIED);
+               }
+               if (RequestedOptions & FILE_DIRECTORY_FILE)
+               {
+                       return(STATUS_NOT_A_DIRECTORY);
+               }
+               pFcb = DeviceExt->VolumeFcb;
+               pCcb = ExAllocateFromNPagedLookasideList(&VfatGlobalData->CcbLookasideList);
+               if (pCcb == NULL)
+               {
+                       return (STATUS_INSUFFICIENT_RESOURCES);
+               }
+               RtlZeroMemory(pCcb, sizeof(VFATCCB));
+               FileObject->SectionObjectPointer = &pFcb->SectionObjectPointers;
+               FileObject->FsContext = pFcb;
+               FileObject->FsContext2 = pCcb;
+               pFcb->RefCount++;
+
+               Irp->IoStatus.Information = FILE_OPENED;
+               return(STATUS_SUCCESS);
        }
-    }
-  else
-    {
-      /*
-       * Otherwise fail if the caller wanted to create a new file
-       */
-      if (RequestedDisposition == FILE_CREATE)
+
+       /*
+        * Check for illegal characters and illegale dot sequences in the file name
+        */
+        PathNameU = FileObject->FileName;
+       c = PathNameU.Buffer + PathNameU.Length / sizeof(WCHAR);
+       last = c - 1;
+       Dots = TRUE;
+       while (c-- > PathNameU.Buffer)
        {
-         Irp->IoStatus.Information = FILE_EXISTS;
-         Status = STATUS_OBJECT_NAME_COLLISION;
-       }      
-      pCcb = FileObject->FsContext2;
-      pFcb = pCcb->pFcb;
-      /*
-       * If requested then delete the file and create a new one with the
-       * same name
-       */
-      if (RequestedDisposition == FILE_SUPERSEDE)
+               if (*c == L'\\' || c == PathNameU.Buffer)
+               {
+                       if (Dots && last > c)
+                       {
+                               return(STATUS_OBJECT_NAME_INVALID);
+                       }
+                       last = c - 1;
+                       Dots = TRUE;
+               }
+               else if (*c != L'.')
+               {
+                       Dots = FALSE;
+               }
+
+               if (*c != '\\' && vfatIsLongIllegal(*c))
+               {
+                       return(STATUS_OBJECT_NAME_INVALID);
+               }
+       }
+        if (FileObject->RelatedFileObject && PathNameU.Buffer[0] == L'\\')
+        {
+            return(STATUS_OBJECT_NAME_INVALID);
+        }
+        if (PathNameU.Length > sizeof(WCHAR) && PathNameU.Buffer[PathNameU.Length/sizeof(WCHAR)-1] == L'\\')
+        {
+            PathNameU.Length -= sizeof(WCHAR);
+        }
+
+       /* Try opening the file. */
+       Status = VfatOpenFile (DeviceExt, &PathNameU, FileObject, &ParentFcb);
+
+       /*
+        * If the directory containing the file to open doesn't exist then
+        * fail immediately
+        */
+       if (Status == STATUS_OBJECT_PATH_NOT_FOUND ||
+               Status == STATUS_INVALID_PARAMETER ||
+               Status == STATUS_DELETE_PENDING)
        {
-         ULONG Cluster, NextCluster;
-         /* FIXME set size to 0 and free clusters */
-         pFcb->entry.FileSize = 0;
-         if (DeviceExt->FatType == FAT32)
-           Cluster = pFcb->entry.FirstCluster
-             + pFcb->entry.FirstClusterHigh * 65536;
-         else
-           Cluster = pFcb->entry.FirstCluster;
-         pFcb->entry.FirstCluster = 0;
-         pFcb->entry.FirstClusterHigh = 0;
-         updEntry (DeviceExt, FileObject);
-         while (Cluster != 0xffffffff && Cluster > 1)
-           {
-             Status = GetNextCluster (DeviceExt, Cluster, &NextCluster, TRUE);
-             WriteCluster (DeviceExt, Cluster, 0);
-             Cluster = NextCluster;
-           }
+               if (ParentFcb)
+               {
+                       vfatReleaseFCB (DeviceExt, ParentFcb);
+               }
+               return(Status);
        }
 
-      /*
-       * Check the file has the requested attributes
-       */
-      if ((RequestedOptions & FILE_NON_DIRECTORY_FILE)
-         && (pFcb->entry.Attrib & FILE_ATTRIBUTE_DIRECTORY))
+       /*
+        * If the file open failed then create the required file
+        */
+       if (!NT_SUCCESS (Status))
        {
-         Status = STATUS_FILE_IS_A_DIRECTORY;
+               if (RequestedDisposition == FILE_CREATE ||
+                   RequestedDisposition == FILE_OPEN_IF ||
+                   RequestedDisposition == FILE_OVERWRITE_IF ||
+                   RequestedDisposition == FILE_SUPERSEDE)
+               {
+                       ULONG Attributes;
+                       Attributes = Stack->Parameters.Create.FileAttributes;
+
+                       vfatSplitPathName(&PathNameU, NULL, &FileNameU);
+                       Status = VfatAddEntry (DeviceExt, &FileNameU, &pFcb, ParentFcb, RequestedOptions,
+                               (UCHAR)(Attributes & FILE_ATTRIBUTE_VALID_FLAGS));
+                       vfatReleaseFCB (DeviceExt, ParentFcb);
+                       if (NT_SUCCESS (Status))
+                       {
+                               Status = vfatAttachFCBToFileObject (DeviceExt, pFcb, FileObject);
+                               if ( !NT_SUCCESS(Status) )
+                               {
+                                       vfatReleaseFCB (DeviceExt, pFcb);
+                                       return Status;
+                               }
+
+                               Irp->IoStatus.Information = FILE_CREATED;
+                               VfatSetAllocationSizeInformation(FileObject,
+                                       pFcb,
+                                       DeviceExt,
+                                       &Irp->Overlay.AllocationSize);
+                               VfatSetExtendedAttributes(FileObject,
+                                       Irp->AssociatedIrp.SystemBuffer,
+                                       Stack->Parameters.Create.EaLength);
+
+                               if (PagingFileCreate)
+                               {
+                                       pFcb->Flags |= FCB_IS_PAGE_FILE;
+                               }
+                       }
+                       else
+                       {
+                               return(Status);
+                       }
+               }
+               else
+               {
+                       vfatReleaseFCB (DeviceExt, ParentFcb);
+                       return(Status);
+               }
        }
-      if ((RequestedOptions & FILE_DIRECTORY_FILE)
-         && !(pFcb->entry.Attrib & FILE_ATTRIBUTE_DIRECTORY))
+       else
        {
-         Status = STATUS_NOT_A_DIRECTORY;
+               if (ParentFcb)
+               {
+                       vfatReleaseFCB (DeviceExt, ParentFcb);
+               }
+               /* Otherwise fail if the caller wanted to create a new file  */
+               if (RequestedDisposition == FILE_CREATE)
+               {
+                       Irp->IoStatus.Information = FILE_EXISTS;
+                       VfatCloseFile (DeviceExt, FileObject);
+                       return(STATUS_OBJECT_NAME_COLLISION);
+               }
+
+               pFcb = FileObject->FsContext;
+
+               if (pFcb->OpenHandleCount != 0)
+               {
+                       Status = IoCheckShareAccess(Stack->Parameters.Create.SecurityContext->DesiredAccess,
+                               Stack->Parameters.Create.ShareAccess,
+                               FileObject,
+                               &pFcb->FCBShareAccess,
+                               FALSE);
+                       if (!NT_SUCCESS(Status))
+                       {
+                               VfatCloseFile (DeviceExt, FileObject);
+                               return(Status);
+                       }
+               }
+
+               /*
+                * Check the file has the requested attributes
+                */
+               if (RequestedOptions & FILE_NON_DIRECTORY_FILE &&
+                       *pFcb->Attributes & FILE_ATTRIBUTE_DIRECTORY)
+               {
+                       VfatCloseFile (DeviceExt, FileObject);
+                       return(STATUS_FILE_IS_A_DIRECTORY);
+               }
+               if (RequestedOptions & FILE_DIRECTORY_FILE &&
+                       !(*pFcb->Attributes & FILE_ATTRIBUTE_DIRECTORY))
+               {
+                       VfatCloseFile (DeviceExt, FileObject);
+                       return(STATUS_NOT_A_DIRECTORY);
+               }
+
+               if (PagingFileCreate)
+               {
+                       /* FIXME:
+                        *   Do more checking for page files. It is possible,
+                        *   that the file was opened and closed previously
+                        *   as a normal cached file. In this case, the cache
+                        *   manager has referenced the fileobject and the fcb
+                        *   is held in memory. Try to remove the fileobject
+                        *   from cache manager and use the fcb.
+                        */
+                       if (pFcb->RefCount > 1)
+                       {
+                               if(!(pFcb->Flags & FCB_IS_PAGE_FILE))
+                               {
+                                       VfatCloseFile(DeviceExt, FileObject);
+                                       return(STATUS_INVALID_PARAMETER);
+                               }
+                       }
+                       else
+                       {
+                               pFcb->Flags |= FCB_IS_PAGE_FILE;
+                       }
+               }
+               else
+               {
+                       if (pFcb->Flags & FCB_IS_PAGE_FILE)
+                       {
+                               VfatCloseFile(DeviceExt, FileObject);
+                               return(STATUS_INVALID_PARAMETER);
+                       }
+               }
+
+
+               if (RequestedDisposition == FILE_OVERWRITE ||
+                   RequestedDisposition == FILE_OVERWRITE_IF ||
+                   RequestedDisposition == FILE_SUPERSEDE)
+               {
+                        ExAcquireResourceExclusiveLite(&(pFcb->MainResource), TRUE);
+                       Status = VfatSetAllocationSizeInformation (FileObject,
+                                                                  pFcb,
+                                                                  DeviceExt,
+                                                                  &Irp->Overlay.AllocationSize);
+                        ExReleaseResourceLite(&(pFcb->MainResource));
+                       if (!NT_SUCCESS (Status))
+                       {
+                               VfatCloseFile (DeviceExt, FileObject);
+                               return(Status);
+                       }
+               }
+
+               if (RequestedDisposition == FILE_SUPERSEDE)
+               {
+                       Irp->IoStatus.Information = FILE_SUPERSEDED;
+               }
+               else if (RequestedDisposition == FILE_OVERWRITE || 
+                        RequestedDisposition == FILE_OVERWRITE_IF)
+               {
+                       Irp->IoStatus.Information = FILE_OVERWRITTEN;
+               }
+               else
+               {
+                       Irp->IoStatus.Information = FILE_OPENED;
+               }
+       }
+
+       if (pFcb->OpenHandleCount == 0)
+       {
+               IoSetShareAccess(Stack->Parameters.Create.SecurityContext->DesiredAccess,
+                       Stack->Parameters.Create.ShareAccess,
+                       FileObject,
+                       &pFcb->FCBShareAccess);
        }
-      /* FIXME : test share access */
-      /* FIXME : test write access if requested */
-      if (!NT_SUCCESS (Status))
-       VfatCloseFile (DeviceExt, FileObject);
-      else
-       Irp->IoStatus.Information = FILE_OPENED;
-      /* FIXME : make supersed or overwrite if requested */
-    }
-
-  Irp->IoStatus.Status = Status;
-
-  return Status;
+       else
+       {
+               IoUpdateShareAccess(
+                       FileObject,
+                       &pFcb->FCBShareAccess
+                       );
+
+       }
+
+       pFcb->OpenHandleCount++;
+
+       /* FIXME : test write access if requested */
+
+       return(Status);
 }
 
 
-NTSTATUS STDCALL
-VfatCreate (PDEVICE_OBJECT DeviceObject, PIRP Irp)
+NTSTATUS
+VfatCreate (PVFAT_IRP_CONTEXT IrpContext)
 /*
  * FUNCTION: Create or open a file
  */
 {
-  NTSTATUS Status = STATUS_SUCCESS;
-  PDEVICE_EXTENSION DeviceExt;
-
-  assert (DeviceObject);
-  assert (Irp);
-  
-  if (DeviceObject->Size == sizeof (DEVICE_OBJECT))
-    {
-      /* DeviceObject represents FileSystem instead of logical volume */
-      DbgPrint ("FsdCreate called with file system\n");
-      Irp->IoStatus.Status = Status;
-      Irp->IoStatus.Information = FILE_OPENED;
-      IoCompleteRequest (Irp, IO_NO_INCREMENT);
-      return (Status);
-    }
-
-  DeviceExt = DeviceObject->DeviceExtension;
-  assert (DeviceExt);
-  ExAcquireResourceExclusiveLite (&DeviceExt->DirResource, TRUE);
-
-  Status = VfatCreateFile (DeviceObject, Irp);
-  
-  ExReleaseResourceLite (&DeviceExt->DirResource);
-  
-  Irp->IoStatus.Status = Status;
-  IoCompleteRequest (Irp, IO_NO_INCREMENT);
-
-  return Status;
+       NTSTATUS Status;
+
+       ASSERT(IrpContext);
+
+       if (IrpContext->DeviceObject == VfatGlobalData->DeviceObject)
+       {
+               /* DeviceObject represents FileSystem instead of logical volume */
+               DPRINT ("FsdCreate called with file system\n");
+               IrpContext->Irp->IoStatus.Information = FILE_OPENED;
+               IrpContext->Irp->IoStatus.Status = STATUS_SUCCESS;
+               IoCompleteRequest (IrpContext->Irp, IO_DISK_INCREMENT);
+               VfatFreeIrpContext(IrpContext);
+               return(STATUS_SUCCESS);
+       }
+
+       if (!(IrpContext->Flags & IRPCONTEXT_CANWAIT))
+       {
+               return(VfatQueueRequest (IrpContext));
+       }
+
+       IrpContext->Irp->IoStatus.Information = 0;
+       ExAcquireResourceExclusiveLite (&IrpContext->DeviceExt->DirResource, TRUE);
+       Status = VfatCreateFile (IrpContext->DeviceObject, IrpContext->Irp);
+       ExReleaseResourceLite (&IrpContext->DeviceExt->DirResource);
+
+       IrpContext->Irp->IoStatus.Status = Status;
+       IoCompleteRequest (IrpContext->Irp,
+               (CCHAR)(NT_SUCCESS(Status) ? IO_DISK_INCREMENT : IO_NO_INCREMENT));
+       VfatFreeIrpContext(IrpContext);
+       return(Status);
 }
 
 /* EOF */