hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
/** @file
  Directory related routines
 
  Copyright (c) 2021 Pedro Falcato All rights reserved.
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#include "Ext4Dxe.h"
 
#include <Library/BaseUcs2Utf8Lib.h>
 
/**
   Retrieves the filename of the directory entry and converts it to UTF-16/UCS-2
 
   @param[in]      Entry   Pointer to a EXT4_DIR_ENTRY.
   @param[out]      Ucs2FileName   Pointer to an array of CHAR16's, of size EXT4_NAME_MAX + 1.
 
   @retval EFI_SUCCESS   The filename was succesfully retrieved and converted to UCS2.
   @retval !EFI_SUCCESS  Failure.
**/
EFI_STATUS
Ext4GetUcs2DirentName (
  IN EXT4_DIR_ENTRY  *Entry,
  OUT CHAR16         Ucs2FileName[EXT4_NAME_MAX + 1]
  )
{
  CHAR8       Utf8NameBuf[EXT4_NAME_MAX + 1];
  UINT16      *Str;
  EFI_STATUS  Status;
 
  CopyMem (Utf8NameBuf, Entry->name, Entry->name_len);
 
  Utf8NameBuf[Entry->name_len] = '\0';
 
  // Unfortunately, BaseUcs2Utf8Lib doesn't have a convert-buffer-to-buffer-like
  // function. Therefore, we need to allocate from the pool (inside UTF8StrToUCS2),
  // copy it to our out buffer (Ucs2FileName) and free.
 
  Status = UTF8StrToUCS2 (Utf8NameBuf, &Str);
 
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  Status = StrCpyS (Ucs2FileName, EXT4_NAME_MAX + 1, Str);
 
  FreePool (Str);
 
  return Status;
}
 
/**
   Validates a directory entry.
 
   @param[in]      Dirent      Pointer to the directory entry.
 
   @retval TRUE          Valid directory entry.
           FALSE         Invalid directory entry.
**/
STATIC
BOOLEAN
Ext4ValidDirent (
  IN CONST EXT4_DIR_ENTRY  *Dirent
  )
{
  UINTN  RequiredSize;
 
  RequiredSize = Dirent->name_len + EXT4_MIN_DIR_ENTRY_LEN;
 
  if (Dirent->rec_len < RequiredSize) {
    DEBUG ((DEBUG_ERROR, "[ext4] dirent size %lu too small (compared to %lu)\n", Dirent->rec_len, RequiredSize));
    return FALSE;
  }
 
  // Dirent sizes need to be 4 byte aligned
  if (Dirent->rec_len % 4) {
    return FALSE;
  }
 
  return TRUE;
}
 
/**
   Retrieves a directory entry.
 
   @param[in]      Directory   Pointer to the opened directory.
   @param[in]      NameUnicode Pointer to the UCS-2 formatted filename.
   @param[in]      Partition   Pointer to the ext4 partition.
   @param[out]     Result      Pointer to the destination directory entry.
 
   @return The result of the operation.
**/
EFI_STATUS
Ext4RetrieveDirent (
  IN EXT4_FILE        *Directory,
  IN CONST CHAR16     *Name,
  IN EXT4_PARTITION   *Partition,
  OUT EXT4_DIR_ENTRY  *Result
  )
{
  EFI_STATUS      Status;
  CHAR8           *Buf;
  UINT64          Off;
  EXT4_INODE      *Inode;
  UINT64          DirInoSize;
  UINT32          BlockRemainder;
  UINTN           Length;
  EXT4_DIR_ENTRY  *Entry;
  UINTN           RemainingBlock;
  CHAR16          DirentUcs2Name[EXT4_NAME_MAX + 1];
  UINTN           ToCopy;
  UINTN           BlockOffset;
 
  Status = EFI_NOT_FOUND;
  Buf    = AllocatePool (Partition->BlockSize);
 
  if (Buf == NULL) {
    return EFI_OUT_OF_RESOURCES;
  }
 
  Off = 0;
 
  Inode = Directory->Inode;
  DirInoSize = EXT4_INODE_SIZE (Inode);
 
  DivU64x32Remainder (DirInoSize, Partition->BlockSize, &BlockRemainder);
  if (BlockRemainder != 0) {
    // Directory inodes need to have block aligned sizes
    return EFI_VOLUME_CORRUPTED;
  }
 
  while (Off < DirInoSize) {
    Length = Partition->BlockSize;
 
    Status = Ext4Read (Partition, Directory, Buf, Off, &Length);
 
    if (Status != EFI_SUCCESS) {
      FreePool (Buf);
      return Status;
    }
 
    for (BlockOffset = 0; BlockOffset < Partition->BlockSize; ) {
      Entry = (EXT4_DIR_ENTRY *)(Buf + BlockOffset);
      RemainingBlock = Partition->BlockSize - BlockOffset;
      // Check if the minimum directory entry fits inside [BlockOffset, EndOfBlock]
      if (RemainingBlock < EXT4_MIN_DIR_ENTRY_LEN) {
        FreePool (Buf);
        return EFI_VOLUME_CORRUPTED;
      }
 
      if (!Ext4ValidDirent (Entry)) {
        FreePool (Buf);
        return EFI_VOLUME_CORRUPTED;
      }
 
      if (Entry->name_len > RemainingBlock || Entry->rec_len > RemainingBlock) {
        // Corrupted filesystem
        FreePool (Buf);
        return EFI_VOLUME_CORRUPTED;
      }
 
      // Ignore names bigger than our limit.
 
      /* Note: I think having a limit is sane because:
        1) It's nicer to work with.
        2) Linux and a number of BSDs also have a filename limit of 255.
      */
      if (Entry->name_len > EXT4_NAME_MAX) {
        BlockOffset += Entry->rec_len;
        continue;
      }
 
      // Unused entry
      if (Entry->inode == 0) {
        BlockOffset += Entry->rec_len;
        continue;
      }
 
      Status = Ext4GetUcs2DirentName (Entry, DirentUcs2Name);
 
      /* In theory, this should never fail.
       * In reality, it's quite possible that it can fail, considering filenames in
       * Linux (and probably other nixes) are just null-terminated bags of bytes, and don't
       * need to form valid ASCII/UTF-8 sequences.
       */
      if (EFI_ERROR (Status)) {
        // If we error out, skip this entry
        // I'm not sure if this is correct behaviour, but I don't think there's a precedent here.
        BlockOffset += Entry->rec_len;
        continue;
      }
 
      if (Entry->name_len == StrLen (Name) &&
          !Ext4StrCmpInsensitive (DirentUcs2Name, (CHAR16 *)Name)) {
        ToCopy = MIN (Entry->rec_len, sizeof (EXT4_DIR_ENTRY));
 
        CopyMem (Result, Entry, ToCopy);
        FreePool (Buf);
        return EFI_SUCCESS;
      }
 
      BlockOffset += Entry->rec_len;
    }
 
    Off += Partition->BlockSize;
  }
 
  FreePool (Buf);
  return EFI_NOT_FOUND;
}
 
/**
   Opens a file using a directory entry.
 
   @param[in]      Partition   Pointer to the ext4 partition.
   @param[in]      OpenMode    Mode in which the file is supposed to be open.
   @param[out]     OutFile     Pointer to the newly opened file.
   @param[in]      Entry       Directory entry to be used.
   @param[in]      Directory   Pointer to the opened directory.
 
   @retval EFI_STATUS          Result of the operation
**/
EFI_STATUS
Ext4OpenDirent (
  IN  EXT4_PARTITION  *Partition,
  IN  UINT64          OpenMode,
  OUT EXT4_FILE       **OutFile,
  IN  EXT4_DIR_ENTRY  *Entry,
  IN  EXT4_FILE       *Directory
  )
{
  EFI_STATUS  Status;
  CHAR16      FileName[EXT4_NAME_MAX + 1];
  EXT4_FILE   *File;
 
  File = AllocateZeroPool (sizeof (EXT4_FILE));
 
  if (File == NULL) {
    Status = EFI_OUT_OF_RESOURCES;
    goto Error;
  }
 
  Status = Ext4GetUcs2DirentName (Entry, FileName);
 
  if (EFI_ERROR (Status)) {
    goto Error;
  }
 
  if (StrCmp (FileName, L".") == 0) {
    // We're using the parent directory's dentry
    File->Dentry = Directory->Dentry;
 
    ASSERT (File->Dentry != NULL);
 
    Ext4RefDentry (File->Dentry);
  } else if (StrCmp (FileName, L"..") == 0) {
    // Using the parent's parent's dentry
    File->Dentry = Directory->Dentry->Parent;
 
    ASSERT (File->Dentry != NULL);
 
    Ext4RefDentry (File->Dentry);
  } else {
    File->Dentry = Ext4CreateDentry (FileName, Directory->Dentry);
 
    if (!File->Dentry) {
      goto Error;
    }
  }
 
  Status = Ext4InitExtentsMap (File);
 
  if (EFI_ERROR (Status)) {
    goto Error;
  }
 
  File->InodeNum = Entry->inode;
 
  Ext4SetupFile (File, Partition);
 
  Status = Ext4ReadInode (Partition, Entry->inode, &File->Inode);
 
  if (EFI_ERROR (Status)) {
    goto Error;
  }
 
  *OutFile = File;
 
  InsertTailList (&Partition->OpenFiles, &File->OpenFilesListNode);
 
  return EFI_SUCCESS;
 
Error:
  if (File != NULL) {
    if (File->Dentry != NULL) {
      Ext4UnrefDentry (File->Dentry);
    }
 
    if (File->ExtentsMap != NULL) {
      OrderedCollectionUninit (File->ExtentsMap);
    }
 
    FreePool (File);
  }
 
  return Status;
}
 
/**
   Opens a file.
 
   @param[in]      Directory   Pointer to the opened directory.
   @param[in]      Name        Pointer to the UCS-2 formatted filename.
   @param[in]      Partition   Pointer to the ext4 partition.
   @param[in]      OpenMode    Mode in which the file is supposed to be open.
   @param[out]     OutFile     Pointer to the newly opened file.
 
   @return Result of the operation.
**/
EFI_STATUS
Ext4OpenFile (
  IN  EXT4_FILE       *Directory,
  IN  CONST CHAR16    *Name,
  IN  EXT4_PARTITION  *Partition,
  IN  UINT64          OpenMode,
  OUT EXT4_FILE       **OutFile
  )
{
  EXT4_DIR_ENTRY  Entry;
  EFI_STATUS      Status;
 
  Status = Ext4RetrieveDirent (Directory, Name, Partition, &Entry);
 
  if (EFI_ERROR (Status)) {
    return Status;
  }
 
  // EFI requires us to error out on ".." opens for the root directory
  if (Entry.inode == Directory->InodeNum) {
    return EFI_NOT_FOUND;
  }
 
  return Ext4OpenDirent (Partition, OpenMode, OutFile, &Entry, Directory);
}
 
/**
  Open the root directory on a volume.
 
  @param[in]   This A pointer to the volume to open the root directory.
  @param[out]  Root A pointer to the location to return the opened file handle for the
                    root directory.
 
  @retval EFI_SUCCESS          The device was opened.
  @retval EFI_UNSUPPORTED      This volume does not support the requested file system type.
  @retval EFI_NO_MEDIA         The device has no medium.
  @retval EFI_DEVICE_ERROR     The device reported an error.
  @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
  @retval EFI_ACCESS_DENIED    The service denied access to the file.
  @retval EFI_OUT_OF_RESOURCES The volume was not opened due to lack of resources.
  @retval EFI_MEDIA_CHANGED    The device has a different medium in it or the medium is no
                               longer supported. Any existing file handles for this volume are
                               no longer valid. To access the files on the new medium, the
                               volume must be reopened with OpenVolume().
 
**/
EFI_STATUS
EFIAPI
Ext4OpenVolume (
  IN EFI_SIMPLE_FILE_SYSTEM_PROTOCOL  *This,
  OUT EFI_FILE_PROTOCOL               **Root
  )
{
  EXT4_INODE      *RootInode;
  EFI_STATUS      Status;
  EXT4_FILE       *RootDir;
  EXT4_PARTITION  *Partition;
 
  Partition = (EXT4_PARTITION *)This;
 
  Status = Ext4ReadInode (Partition, EXT4_ROOT_INODE_NR, &RootInode);
 
  if (EFI_ERROR (Status)) {
    DEBUG ((DEBUG_ERROR, "[ext4] Could not open root inode - error %r\n", Status));
    return Status;
  }
 
  RootDir = AllocateZeroPool (sizeof (EXT4_FILE));
 
  if (RootDir == NULL) {
    FreePool (RootInode);
    return EFI_OUT_OF_RESOURCES;
  }
 
  RootDir->Inode    = RootInode;
  RootDir->InodeNum = EXT4_ROOT_INODE_NR;
 
  Status = Ext4InitExtentsMap (RootDir);
 
  if (EFI_ERROR (Status)) {
    FreePool (RootInode);
    FreePool (RootDir);
    return EFI_OUT_OF_RESOURCES;
  }
 
  Ext4SetupFile (RootDir, Partition);
  *Root = &RootDir->Protocol;
 
  InsertTailList (&Partition->OpenFiles, &RootDir->OpenFilesListNode);
 
  ASSERT (Partition->RootDentry != NULL);
  RootDir->Dentry = Partition->RootDentry;
 
  Ext4RefDentry (RootDir->Dentry);
 
  return EFI_SUCCESS;
}
 
/**
   Reads a directory entry.
 
   @param[in]      Partition   Pointer to the ext4 partition.
   @param[in]      File        Pointer to the open directory.
   @param[out]     Buffer      Pointer to the output buffer.
   @param[in]      Offset      Initial directory position.
   @param[in out] OutLength    Pointer to a UINTN that contains the length of the buffer,
                               and the length of the actual EFI_FILE_INFO after the call.
 
   @return Result of the operation.
**/
EFI_STATUS
Ext4ReadDir (
  IN EXT4_PARTITION  *Partition,
  IN EXT4_FILE       *File,
  OUT VOID           *Buffer,
  IN UINT64          Offset,
  IN OUT UINTN       *OutLength
  )
{
  EXT4_INODE      *DirIno;
  EFI_STATUS      Status;
  UINT64          DirInoSize;
  UINTN           Len;
  UINT32          BlockRemainder;
  EXT4_DIR_ENTRY  Entry;
  EXT4_FILE       *TempFile;
  BOOLEAN         ShouldSkip;
  BOOLEAN         IsDotOrDotDot;
 
  DirIno     = File->Inode;
  Status     = EFI_SUCCESS;
  DirInoSize = EXT4_INODE_SIZE (DirIno);
 
  DivU64x32Remainder (DirInoSize, Partition->BlockSize, &BlockRemainder);
  if (BlockRemainder != 0) {
    // Directory inodes need to have block aligned sizes
    return EFI_VOLUME_CORRUPTED;
  }
 
  while (TRUE) {
    TempFile = NULL;
 
    // We (try to) read the maximum size of a directory entry at a time
    // Note that we don't need to read any padding that may exist after it.
    Len    = sizeof (Entry);
    Status = Ext4Read (Partition, File, &Entry, Offset, &Len);
 
    if (EFI_ERROR (Status)) {
      goto Out;
    }
 
    if (Len == 0) {
      *OutLength = 0;
      Status     = EFI_SUCCESS;
      goto Out;
    }
 
    if (Len < EXT4_MIN_DIR_ENTRY_LEN) {
      Status = EFI_VOLUME_CORRUPTED;
      goto Out;
    }
 
    // Invalid directory entry length
    if (!Ext4ValidDirent (&Entry)) {
      DEBUG ((DEBUG_ERROR, "[ext4] Invalid dirent at offset %lu\n", Offset));
      Status = EFI_VOLUME_CORRUPTED;
      goto Out;
    }
 
    // Check if the entire dir entry length fits in Len
    if (Len < (UINTN)(EXT4_MIN_DIR_ENTRY_LEN + Entry.name_len)) {
      Status = EFI_VOLUME_CORRUPTED;
      goto Out;
    }
 
    // We don't care about passing . or .. entries to the caller of ReadDir(),
    // since they're generally useless entries *and* may break things if too
    // many callers assume FAT32.
 
    // Entry.name_len may be 0 if it's a nameless entry, like an unused entry
    // or a checksum at the end of the directory block.
    // memcmp (and CompareMem) return 0 when the passed length is 0.
 
    IsDotOrDotDot = Entry.name_len != 0 &&
                    (CompareMem (Entry.name, ".", Entry.name_len) == 0 ||
                     CompareMem (Entry.name, "..", Entry.name_len) == 0);
 
    // When inode = 0, it's unused.
    ShouldSkip = Entry.inode == 0 || IsDotOrDotDot;
 
    if (ShouldSkip) {
      Offset += Entry.rec_len;
      continue;
    }
 
    Status = Ext4OpenDirent (Partition, EFI_FILE_MODE_READ, &TempFile, &Entry, File);
 
    if (EFI_ERROR (Status)) {
      goto Out;
    }
 
    Status = Ext4GetFileInfo (TempFile, Buffer, OutLength);
    if (!EFI_ERROR (Status)) {
      File->Position = Offset + Entry.rec_len;
    }
 
    Ext4CloseInternal (TempFile);
 
    goto Out;
  }
 
  Status = EFI_SUCCESS;
Out:
  return Status;
}
 
/**
   Removes a dentry from the other's list.
 
   @param[in out]            Parent       Pointer to the parent EXT4_DENTRY.
   @param[in out]            ToBeRemoved  Pointer to the child EXT4_DENTRY.
**/
STATIC
VOID
Ext4RemoveDentry (
  IN OUT EXT4_DENTRY  *Parent,
  IN OUT EXT4_DENTRY  *ToBeRemoved
  )
{
  EXT4_DENTRY  *D;
  LIST_ENTRY   *Entry;
  LIST_ENTRY   *NextEntry;
 
  BASE_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Parent->Children) {
    D = EXT4_DENTRY_FROM_DENTRY_LIST (Entry);
 
    if (D == ToBeRemoved) {
      RemoveEntryList (Entry);
      return;
    }
  }
 
  DEBUG ((DEBUG_ERROR, "[ext4] Ext4RemoveDentry did not find the asked-for dentry\n"));
}
 
/**
   Adds a dentry to the other's list.
 
   The dentry that is added to the other one's list gets ->Parent set to Parent,
   and the parent gets its reference count incremented.
 
   @param[in out]            Parent       Pointer to the parent EXT4_DENTRY.
   @param[in out]            ToBeAdded    Pointer to the child EXT4_DENTRY.
**/
STATIC
VOID
Ext4AddDentry (
  IN OUT EXT4_DENTRY  *Parent,
  IN OUT EXT4_DENTRY  *ToBeAdded
  )
{
  ToBeAdded->Parent = Parent;
  InsertTailList (&Parent->Children, &ToBeAdded->ListNode);
  Ext4RefDentry (Parent);
}
 
/**
   Creates a new dentry object.
 
   @param[in]              Name        Name of the dentry.
   @param[in out opt]      Parent      Parent dentry, if it's not NULL.
 
   @return The new allocated and initialised dentry.
           The ref count will be set to 1.
**/
EXT4_DENTRY *
Ext4CreateDentry (
  IN CONST CHAR16              *Name,
  IN OUT EXT4_DENTRY  *Parent  OPTIONAL
  )
{
  EXT4_DENTRY  *Dentry;
  EFI_STATUS   Status;
 
  Dentry = AllocateZeroPool (sizeof (EXT4_DENTRY));
 
  if (Dentry == NULL) {
    return NULL;
  }
 
  Dentry->RefCount = 1;
 
  // This StrCpyS should not fail.
  Status = StrCpyS (Dentry->Name, ARRAY_SIZE (Dentry->Name), Name);
 
  ASSERT_EFI_ERROR (Status);
 
  InitializeListHead (&Dentry->Children);
 
  if (Parent != NULL) {
    Ext4AddDentry (Parent, Dentry);
  }
 
  DEBUG ((DEBUG_FS, "[ext4] Created dentry %s\n", Name));
 
  return Dentry;
}
 
/**
   Increments the ref count of the dentry.
 
   @param[in out]            Dentry    Pointer to a valid EXT4_DENTRY.
**/
VOID
Ext4RefDentry (
  IN OUT EXT4_DENTRY  *Dentry
  )
{
  UINTN  OldRef;
 
  OldRef = Dentry->RefCount;
 
  Dentry->RefCount++;
 
  // I'm not sure if this (Refcount overflow) is a valid concern,
  // but it's better to be safe than sorry.
  ASSERT (OldRef < Dentry->RefCount);
}
 
/**
   Deletes the dentry.
 
   @param[in out]            Dentry    Pointer to a valid EXT4_DENTRY.
**/
STATIC
VOID
Ext4DeleteDentry (
  IN OUT EXT4_DENTRY  *Dentry
  )
{
  if (Dentry->Parent) {
    Ext4RemoveDentry (Dentry->Parent, Dentry);
    Ext4UnrefDentry (Dentry->Parent);
  }
 
  DEBUG ((DEBUG_FS, "[ext4] Deleted dentry %s\n", Dentry->Name));
  FreePool (Dentry);
}
 
/**
   Decrements the ref count of the dentry.
   If the ref count is 0, it's destroyed.
 
   @param[in out]            Dentry    Pointer to a valid EXT4_DENTRY.
 
   @retval True if it was destroyed, false if it's alive.
**/
BOOLEAN
Ext4UnrefDentry (
  IN OUT EXT4_DENTRY  *Dentry
  )
{
  Dentry->RefCount--;
 
  if (Dentry->RefCount == 0) {
    Ext4DeleteDentry (Dentry);
    return TRUE;
  }
 
  return FALSE;
}