File: FileIO.c

package info (click to toggle)
edk2 0~20131112.2590861a-3
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 125,836 kB
  • ctags: 175,818
  • sloc: ansic: 1,274,042; python: 75,968; asm: 68,082; perl: 22,386; cpp: 22,278; makefile: 14,914; sh: 4,113; pascal: 1,126; xml: 318; lisp: 24
file content (1411 lines) | stat: -rw-r--r-- 30,313 bytes parent folder | download | duplicates (3)
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
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
/*++

Copyright (c) 2005 - 2008, Intel Corporation                                                         
All rights reserved. This program and the accompanying materials                          
are licensed and made available under the terms and conditions of the BSD License         
which accompanies this distribution. The full text of the license may be found at         
http://opensource.org/licenses/bsd-license.php                                            
                                                                                          
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             

Module Name:

  FileIo.c

Abstract:

  Implements File I/O function

Revision History

--*/

#include "EfiShellLib.h"

typedef struct _PATH_COMPONENTS {
  CHAR16                  *Name;
  struct _PATH_COMPONENTS *Previous;
  struct _PATH_COMPONENTS *Next;
} PATH_COMPONENTS;

EFI_FILE_HANDLE
LibOpenRoot (
  IN EFI_HANDLE                   DeviceHandle
  )
/*++

Routine Description:

  Function opens and returns a file handle to the root directory of a volume.

Arguments:

  DeviceHandle         - A handle for a device

Returns:
  
  A valid file handle or NULL is returned

--*/
{
  EFI_STATUS                      Status;
  EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *Volume;
  EFI_FILE_HANDLE                 File;

  File = NULL;

  //
  // Handle the file system interface to the device
  //
  Status = BS->HandleProtocol (
                DeviceHandle,
                &gEfiSimpleFileSystemProtocolGuid,
                (VOID *) &Volume
                );

  //
  // Open the root directory of the volume
  //
  if (!EFI_ERROR (Status)) {
    Status = Volume->OpenVolume (
                      Volume,
                      &File
                      );
  }
  //
  // Done
  //
  return EFI_ERROR (Status) ? NULL : File;
}

EFI_FILE_INFO *
LibGetFileInfo (
  IN EFI_FILE_HANDLE      FileHandle
  )
/*++

Routine Description:

  Function gets the file information from an open file descriptor, and stores it 
  in a buffer allocated from pool.

Arguments:

  FileHandle         - A file handle

Returns:
  
  A pointer to a buffer with file information or NULL is returned

--*/
{
  EFI_STATUS    Status;
  EFI_FILE_INFO *Buffer;
  UINTN         BufferSize;

  ASSERT (FileHandle != NULL);
  //
  // Initialize for GrowBuffer loop
  //
  Buffer      = NULL;
  BufferSize  = SIZE_OF_EFI_FILE_INFO + 200;

  //
  // Call the real function
  //
  while (GrowBuffer (&Status, (VOID **) &Buffer, BufferSize)) {
    Status = FileHandle->GetInfo (
                          FileHandle,
                          &gEfiFileInfoGuid,
                          &BufferSize,
                          Buffer
                          );
  }

  if (EFI_ERROR (Status)) {
    return NULL;
  }

  return Buffer;
}

EFI_STATUS
LibSetFileInfo (
  IN EFI_FILE_HANDLE  FileHandle,
  IN UINTN            BufferSize,
  IN VOID             *Buffer
  )
{
  ASSERT (FileHandle != NULL);
  ASSERT (Buffer != NULL);
  return FileHandle->SetInfo (
                        FileHandle,
                        &gEfiFileInfoGuid,
                        BufferSize,
                        Buffer
                        );
}

EFI_STATUS
LibSetPosition (
  IN EFI_FILE_HANDLE  FileHandle,
  IN UINT64           Position
  )
{
  ASSERT (FileHandle != NULL);
  return FileHandle->SetPosition (FileHandle, Position);
}

EFI_STATUS
LibGetPosition (
  IN EFI_FILE_HANDLE  FileHandle,
  OUT UINT64          *Position
  )
{
  ASSERT (FileHandle != NULL);
  ASSERT (Position != NULL);
  //
  // very simple wrapper
  //
  return FileHandle->GetPosition (FileHandle, Position);
}

EFI_STATUS
LibFlushFile (
  IN EFI_FILE_HANDLE FileHandle
  )
{
  ASSERT (FileHandle != NULL);
  //
  // very simple wrapper
  //
  return FileHandle->Flush (FileHandle);
}

EFI_STATUS
LibDeleteFile (
  IN EFI_FILE_HANDLE FileHandle
  )
{
  //
  // very simple wrapper
  //
  ASSERT (FileHandle != NULL);
  return FileHandle->Delete (FileHandle);
}

EFI_STATUS
LibOpenFileByName (
  IN  CHAR16                            *FileName,
  OUT EFI_FILE_HANDLE                   *FileHandle,
  IN UINT64                             OpenMode,
  IN UINT64                             Attributes
  )
{
  EFI_DEVICE_PATH_PROTOCOL  *FilePath;
  EFI_HANDLE                DeviceHandle;
  
  ASSERT (FileName != NULL);
  ASSERT (FileHandle != NULL);

  FilePath = SE2->NameToPath (FileName);
  if (FilePath != NULL) {
    return LibOpenFile (
            &FilePath,
            &DeviceHandle,
            FileHandle,
            OpenMode,
            Attributes
            );
  }

  return EFI_DEVICE_ERROR;

}

EFI_STATUS
LibOpenFile (
  IN OUT EFI_DEVICE_PATH_PROTOCOL       **FilePath,
  OUT EFI_HANDLE                        *DeviceHandle,
  OUT EFI_FILE_HANDLE                   *FileHandle,
  IN UINT64                             OpenMode,
  IN UINT64                             Attributes
  )
/*++

Routine Description:

    Opens a file for (simple) reading.  The simple read abstraction
    will access the file access from a file system interface.

Arguments:

    FilePath     - File path
    DeviceHandle - Device handle
    FileHandle   - File Handle 
    OpenMode     - Open Mode
    Attributes   - The attributes

Returns:

    A handle to access the file

--*/
{
  EFI_STATUS                Status;
  EFI_FILE_HANDLE           LastHandle;
  FILEPATH_DEVICE_PATH      *FilePathNode;
  EFI_DEVICE_PATH_PROTOCOL  *AlignedFilePath;

  ASSERT (FilePath != NULL);
  ASSERT (DeviceHandle != NULL);
  ASSERT (FileHandle != NULL);

  AlignedFilePath = NULL;
  //
  // File the file system for this file path
  //
  Status = BS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, FilePath, DeviceHandle);
  if (EFI_ERROR (Status)) {
    return Status;
  }
  //
  // Attempt to access the file via a file system interface
  //
  *FileHandle = LibOpenRoot (*DeviceHandle);
  Status      = *FileHandle ? EFI_SUCCESS : EFI_UNSUPPORTED;

  if (EFI_ERROR (Status)) {
    return Status;
  }

  //
  // Duplicate FilePath to make sure it is aligned so that
  // FilePathNode->PathName below is 16-bit aligned.
  //
  AlignedFilePath = DuplicateDevicePath(*FilePath);
  if (AlignedFilePath == NULL) {
    (*FileHandle)->Close (*FileHandle);
    *FileHandle = NULL;
    return EFI_OUT_OF_RESOURCES;
  }
  FilePathNode = (FILEPATH_DEVICE_PATH *)AlignedFilePath;
  //
  // To access as a file system, the file path should only
  // contain file path components.  Follow the file path nodes
  // and find the target file
  //
  while (!IsDevicePathEnd (&FilePathNode->Header)) {
    //
    // For file system access each node should be a file path component
    //
    if (DevicePathType (&FilePathNode->Header) != MEDIA_DEVICE_PATH ||
        DevicePathSubType (&FilePathNode->Header) != MEDIA_FILEPATH_DP
        ) {
      Status = EFI_UNSUPPORTED;
    }
    //
    // If there's been an error, stop
    //
    if (EFI_ERROR (Status)) {
      break;
    }
    //
    // Open this file path node
    //
    LastHandle  = *FileHandle;
    *FileHandle = NULL;

    Status = LastHandle->Open (
                          LastHandle,
                          FileHandle,
                          FilePathNode->PathName,
                          OpenMode &~EFI_FILE_MODE_CREATE,
                          0
                          );

    if ((EFI_ERROR (Status)) && (OpenMode != (OpenMode &~EFI_FILE_MODE_CREATE))) {
      Status = LastHandle->Open (
                            LastHandle,
                            FileHandle,
                            FilePathNode->PathName,
                            OpenMode,
                            Attributes
                            );
    }
    //
    // Close the last node
    //
    LastHandle->Close (LastHandle);

    //
    // Get the next node
    //
    FilePathNode = (FILEPATH_DEVICE_PATH *) NextDevicePathNode (&FilePathNode->Header);
  }

  if (EFI_ERROR (Status)) {
    *FileHandle = NULL;
  }
  FreePool(AlignedFilePath);

  return Status;
}

EFI_STATUS
LibReadFile (
  IN EFI_FILE_HANDLE      FileHandle,
  IN OUT UINTN            *ReadSize,
  OUT VOID                *Buffer
  )
{
  //
  // very simple wrapper
  //
  return FileHandle->Read (FileHandle, ReadSize, Buffer);
}

EFI_STATUS
LibWriteFile (
  IN EFI_FILE_HANDLE    FileHandle,
  IN OUT UINTN          *BufferSize,
  OUT VOID              *Buffer
  )
{
  return FileHandle->Write (
                      FileHandle,
                      BufferSize,
                      Buffer
                      );

}

EFI_STATUS
LibCloseFile (
  IN EFI_FILE_HANDLE     FileHandle
  )
{
  //
  // very simple wrapper
  //
  return FileHandle->Close (FileHandle);
}

EFI_DEVICE_PATH_PROTOCOL *
LibFileDevicePath (
  IN EFI_HANDLE                 Device  OPTIONAL,
  IN CHAR16                     *FileName
  )
/*++

Routine Description:
  Function allocates a device path for a file and appends it to an existing device path.

Arguments:
  Device         - A pointer to a device handle.

  FileName       - A pointer to a Null-terminated Unicode string.

Returns:

  If Device is not a valid device handle, then a device path for the file specified 
  by FileName is allocated and returned.

  Results are allocated from pool.  The caller must FreePool the resulting device path 
  structure

--*/
{
  UINTN                     Size;
  FILEPATH_DEVICE_PATH      *FilePath;
  EFI_DEVICE_PATH_PROTOCOL  *Eop;
  EFI_DEVICE_PATH_PROTOCOL  *DevicePath;

  Size        = StrSize (FileName);
  FilePath    = AllocateZeroPool (Size + SIZE_OF_FILEPATH_DEVICE_PATH + sizeof (EFI_DEVICE_PATH_PROTOCOL));
  DevicePath  = NULL;

  if (FilePath != NULL) {
    //
    // Build a file path
    //
    FilePath->Header.Type     = MEDIA_DEVICE_PATH;
    FilePath->Header.SubType  = MEDIA_FILEPATH_DP;
    SetDevicePathNodeLength (&FilePath->Header, Size + SIZE_OF_FILEPATH_DEVICE_PATH);
    CopyMem (FilePath->PathName, FileName, Size);
    Eop = NextDevicePathNode (&FilePath->Header);
    SetDevicePathEndNode (Eop);

    //
    // Append file path to device's device path
    //
    DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) FilePath;
    if (Device != NULL) {
      DevicePath = AppendDevicePath (
                    DevicePathFromHandle (Device),
                    DevicePath
                    );
      FreePool (FilePath);
      ASSERT (DevicePath);
    }
  }

  return DevicePath;
}

EFI_STATUS
LibFindFirstFile (
  IN  EFI_FILE_HANDLE                       DirHandle,
  OUT EFI_FILE_INFO                         *Buffer
  )
{
  EFI_STATUS    Status;
  EFI_FILE_INFO *DirInfo;
  UINTN         BufferSize;

  ASSERT (Buffer);
  
  BufferSize  = SIZE_OF_EFI_FILE_INFO + 1024;
  DirInfo     = LibGetFileInfo (DirHandle);
  if (DirInfo == NULL || !(DirInfo->Attribute & EFI_FILE_DIRECTORY)) {
    Status = EFI_NOT_FOUND;
    goto Done;
  }

  Status = LibSetPosition (DirHandle, 0);
  if (EFI_ERROR (Status)) {
    goto Done;
  }

  Status = LibReadFile (DirHandle, &BufferSize, Buffer);

Done:
  if (DirInfo != NULL) {
    FreePool (DirInfo);
  }
  return Status;
}

EFI_STATUS
LibFindNextFile (
  IN     EFI_FILE_HANDLE                    DirHandle,
  OUT EFI_FILE_INFO                         *Buffer,
  OUT BOOLEAN                               *NoFile
  )
{
  UINTN       BufferSize;
  EFI_STATUS  Status;

  ASSERT (DirHandle != NULL);
  ASSERT (Buffer != NULL);
  ASSERT (NoFile != NULL);

  *NoFile     = FALSE;
  BufferSize  = SIZE_OF_EFI_FILE_INFO + 1024;
  //
  // Large enough
  //
  Status = LibReadFile (DirHandle, &BufferSize, Buffer);
  if (EFI_ERROR (Status)) {
    return Status;
  }

  if (BufferSize == 0) {
    *NoFile = TRUE;
  }

  return EFI_SUCCESS;
}

EFI_STATUS
LibGetFileSize (
  IN     EFI_FILE_HANDLE                      DirHandle,
  OUT UINT64                                  *Size
  )
{
  EFI_FILE_INFO *Info;
  
  ASSERT (Size != NULL);
  
  Info = LibGetFileInfo (DirHandle);

  if (Info != NULL) {
    *Size = Info->FileSize;
    FreePool (Info);
    return EFI_SUCCESS;
  }

  return EFI_DEVICE_ERROR;
}

EFI_STATUS
LibCreateDirectory (
  IN CHAR16                             *DirName,
  OUT EFI_FILE_HANDLE                   *FileHandle
  )
{
  return LibOpenFileByName (
          DirName,
          FileHandle,
          EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE,
          EFI_FILE_DIRECTORY
          );

}

CHAR16 *
_ProcessDotInPath (
  IN CHAR16                       *PathFromRoot
  )
{
  CHAR16          *Result;
  CHAR16          *p;
  CHAR16          *q;
  PATH_COMPONENTS *root;
  PATH_COMPONENTS *cur;
  PATH_COMPONENTS *tmp;
  UINTN           Size;

  ASSERT ('\\' == *PathFromRoot);

  root    = NULL;
  cur     = NULL;
  Result  = NULL;
  Size    = 0;
  p       = PathFromRoot + 1;
  while (*p) {
    q = StrChr (p, '\\');
    if (q) {
      *q = 0;
    }

    tmp = (PATH_COMPONENTS *) AllocateZeroPool (sizeof (PATH_COMPONENTS));
    if (NULL == tmp) {
      goto Fail;
    }

    if (NULL == root) {
      root  = tmp;
      cur   = root;
    } else {
      tmp->Previous = cur;
      cur->Next     = tmp;
      cur           = tmp;
    }

    tmp->Name = StrDuplicate (p);
    Size += StrSize (tmp->Name);
    if (q) {
      p = q + 1;
    } else {
      *p = 0;
    }
  }

  cur = root;
  while (cur) {
    if (0 == StriCmp (cur->Name, L"..")) {
      tmp = cur->Previous;
      if (tmp) {
        if (tmp->Previous) {
          tmp->Previous->Next = cur->Next;
          if (cur->Next) {
            cur->Next->Previous = tmp->Previous;
          }
        } else {
          root = cur->Next;
          if (root) {
            cur->Next->Previous = NULL;
          }
        }

        cur = cur->Next;
        FreePool (tmp->Next->Name);
        FreePool (tmp->Next);
        FreePool (tmp->Name);
        FreePool (tmp);
      } else {
        root = cur->Next;
        if (root) {
          cur->Next->Previous = NULL;
        }

        FreePool (cur->Name);
        FreePool (cur);
        cur = root;
      }
    } else if (0 == StriCmp (cur->Name, L".")) {
      tmp = cur->Previous;
      if (tmp) {
        tmp->Next = cur->Next;
        if (cur->Next) {
          cur->Next->Previous = tmp;
        }

        FreePool (cur->Name);
        FreePool (cur);
        cur = tmp->Next;
      } else {
        root = cur->Next;
        if (root) {
          cur->Next->Previous = NULL;
        }

        FreePool (cur->Name);
        FreePool (cur);
        cur = root;
      }
    } else {
      cur = cur->Next;
    }
  }

  Result = AllocateZeroPool (Size + sizeof (UINT16) * 2);
  if (NULL == Result) {
    goto Fail;
  }

  *Result = '\\';
  tmp     = root;
  while (tmp) {
    StrCat (Result, tmp->Name);
    tmp = tmp->Next;
    if (tmp) {
      StrCat (Result, L"\\");
    }
  }

Fail:
  tmp = root;
  while (tmp) {
    root = tmp->Next;
    FreePool (tmp->Name);
    FreePool (tmp);
    tmp = root;
  }

  return Result;
}

EFI_STATUS
_CheckContinuousSlash (
  IN CHAR16                       *PathFromRoot
  )
{
  CHAR16      *p;
  EFI_STATUS  Status;

  ASSERT (PathFromRoot != NULL);

  p       = PathFromRoot;
  Status  = EFI_SUCCESS;
  while (*p) {
    if ('\\' == *p && '\\' == *(p + 1)) {
      Status = EFI_INVALID_PARAMETER;
      break;
    }

    p++;
  }

  return Status;
}

EFI_STATUS
LibSplitFsAndPath (
  IN     CHAR16                       *AbPath,
  IN OUT CHAR16                       **Fs,
  IN OUT CHAR16                       **Path
  )
{
  CHAR16      *p;
  UINTN       Size;

  ASSERT (Fs);
  ASSERT (Path);

  *Fs     = NULL;
  *Path   = NULL;

  p       = AbPath;
  while (*p) {
    if (':' == *p && ('\\' == *(p + 1) || 0 == *(p + 1))) {
      break;
    }

    p++;
  }

  if (0 == *p) {
    return EFI_INVALID_PARAMETER;
  }

  Size  = sizeof (CHAR16) * (UINTN) (p - AbPath + 1);
  *Fs   = AllocateZeroPool (Size);
  if (NULL == Fs) {
    return EFI_OUT_OF_RESOURCES;
  }

  CopyMem (*Fs, AbPath, Size - sizeof (CHAR16));

  if (*(p + 1)) {
    *Path = StrDuplicate (p + 1);
  } else {
    *Path = StrDuplicate (L"\\");
  }

  if (NULL == *Path) {
    FreePool (*Fs);
    return EFI_OUT_OF_RESOURCES;
  }

  return EFI_SUCCESS;
}

BOOLEAN
CompareFsDevice (
  IN  CHAR16     *FsName1,
  IN  CHAR16     *FsName2
  )
{
  EFI_STATUS                Status;
  EFI_DEVICE_PATH_PROTOCOL  *DevPath1;
  EFI_DEVICE_PATH_PROTOCOL  *DevPath2;

  Status = SE2->GetFsDevicePath (FsName1, &DevPath1);
  if (EFI_ERROR (Status)) {
    return FALSE;
  }

  Status = SE2->GetFsDevicePath (FsName2, &DevPath2);
  if (EFI_ERROR (Status)) {
    return FALSE;
  }

  if (DevicePathCompare (DevPath1, DevPath2) == 0) {
    return TRUE;
  }

  return FALSE;
}

EFI_STATUS
LibIsSubPath (
  IN CHAR16                       *Parent,
  IN CHAR16                       *Child,
  OUT BOOLEAN                     *Result
  )
{
  EFI_STATUS  Status;
  CHAR16      *PathFromRoot1;
  CHAR16      *PathFromRoot2;
  CHAR16      *Fs1;
  CHAR16      *Fs2;
  CHAR16      *tmp;
  UINTN       Index;

  ASSERT (Parent);
  ASSERT (Child);
  ASSERT (Result);

  Index         = 0;
  tmp           = NULL;
  Fs1           = NULL;
  Fs2           = NULL;
  PathFromRoot1 = NULL;
  PathFromRoot2 = NULL;
  Status        = EFI_SUCCESS;
  *Result       = FALSE;

  Status        = _CheckContinuousSlash (Parent);
  if (EFI_ERROR (Status)) {
    goto Done;
  }

  Status = _CheckContinuousSlash (Child);
  if (EFI_ERROR (Status)) {
    goto Done;
  }

  Status = LibSplitFsAndPath (Parent, &Fs1, &PathFromRoot1);
  if (EFI_ERROR (Status)) {
    goto Done;
  }

  Status = LibSplitFsAndPath (Child, &Fs2, &PathFromRoot2);
  if (EFI_ERROR (Status)) {
    goto Done;
  }

  if (!CompareFsDevice (Fs1, Fs2)) {
    goto Done;
  }

  tmp           = PathFromRoot1;
  PathFromRoot1 = _ProcessDotInPath (tmp);
  FreePool (tmp);
  if (NULL == PathFromRoot1) {
    Status = EFI_OUT_OF_RESOURCES;
    goto Done;
  }

  tmp           = PathFromRoot2;
  PathFromRoot2 = _ProcessDotInPath (tmp);
  FreePool (tmp);
  if (NULL == PathFromRoot2) {
    Status = EFI_OUT_OF_RESOURCES;
    goto Done;
  }

  while (PathFromRoot1[Index] && PathFromRoot2[Index] && PathFromRoot1[Index] == PathFromRoot2[Index]) {
    Index++;
  }

  if (0 == PathFromRoot1[Index]) {
    if ('\\' == PathFromRoot1[Index - 1]) {
      *Result = TRUE;
    } else {
      if ('\\' == PathFromRoot2[Index] || 0 == PathFromRoot2[Index]) {
        *Result = TRUE;
      }
    }

    goto Done;
  }

Done:
  FreePool (Fs1);
  FreePool (Fs2);
  FreePool (PathFromRoot1);
  FreePool (PathFromRoot2);

  return Status;
}

CHAR16 *
LibFormAbsolutePath (
  IN CHAR16                       *FilePath,
  IN CHAR16                       *Ref OPTIONAL
  )
{
  CHAR16  *p;
  CHAR16  *OrgStr;
  CHAR16  ch;
  CHAR16  *fs;
  CHAR16  *PathFromRoot;
  UINTN   len;
  
  ASSERT (FilePath != NULL);

  fs      = NULL;
  OrgStr  = FilePath;
  p       = FilePath;
  while (*p) {
    if (':' == *p && '\\' == *(p + 1)) {
      break;
    }

    p++;
  }

  if (0 == *p && Ref) {
    OrgStr  = Ref;
    p       = Ref;
    while (*p) {
      if (':' == *p && '\\' == *(p + 1)) {
        break;
      }

      p++;
    }
  }

  if (0 == *p) {
    return NULL;
  }

  ch  = *p;
  *p  = 0;
  fs  = StrDuplicate (OrgStr);
  *p  = ch;
  p++;
  PathFromRoot = AllocateZeroPool (StrSize (p) + sizeof (UINT16));
  if (NULL == PathFromRoot) {
    FreePool (fs);
    return NULL;
  }

  StrCpy (PathFromRoot, p);
  if ('\\' != PathFromRoot[StrLen (p) - 1]) {
    StrCat (PathFromRoot, L"\\");
  }

  if (OrgStr == Ref) {
    if ('\\' == *FilePath) {
      FilePath++;
    }

    p             = PathFromRoot;
    PathFromRoot  = AllocateZeroPool (StrSize (p) + StrSize (FilePath));
    if (NULL == PathFromRoot) {
      FreePool (fs);
      FreePool (p);
      return NULL;
    }

    StrCpy (PathFromRoot, p);
    FreePool (p);
    StrCat (PathFromRoot, FilePath);
  }

  if (EFI_ERROR (_CheckContinuousSlash (PathFromRoot))) {
    FreePool (fs);
    FreePool (PathFromRoot);
    return NULL;
  }

  len = StrLen (PathFromRoot);
  if (len > 1 && '\\' == PathFromRoot[len - 1]) {
    PathFromRoot[len - 1] = 0;
  }

  if (StrLen (PathFromRoot) > 1) {
    p = _ProcessDotInPath (PathFromRoot);
  } else {
    p = StrDuplicate (PathFromRoot);
  }

  FreePool (PathFromRoot);

  len           = StrSize (fs) + StrSize (p) + sizeof (UINT16);
  PathFromRoot  = AllocateZeroPool (len);
  if (PathFromRoot) {
    SPrint (PathFromRoot, len, L"%s:%s", fs, p);
  }

  FreePool (fs);
  FreePool (p);

  return PathFromRoot;
}

EFI_STATUS
LibCompareFile (
  IN CHAR16                      *DstFile,
  IN CHAR16                      *SrcFile,
  IN OUT BOOLEAN                 *IsSame
  )
/*++
Routine descriptions:

  Check if 2 files are the same, no wild card is suppoted

Arguments:

   DstFile - Dst File
   SrcFile - Src File

Return:         
   IsSame = FALSE:  dst is not the src  itself
   IsSame = TRUE    dst is the src itself

--*/
{
  EFI_LIST_ENTRY  SrcList;
  EFI_LIST_ENTRY  DstList;
  EFI_STATUS      Status;
  SHELL_FILE_ARG  *SrcArg;
  SHELL_FILE_ARG  *DstArg;
  
  ASSERT (IsSame != NULL);

  SrcArg  = NULL;
  DstArg  = NULL;
  InitializeListHead (&SrcList);
  InitializeListHead (&DstList);

  *IsSame = FALSE;

  Status  = ShellFileMetaArgNoWildCard (DstFile, &DstList);

  if (EFI_ERROR (Status) || IsListEmpty (&DstList)) {
    goto Done;
  }
  //
  // multi dst
  //
  if (DstList.Flink->Flink != &DstList) {
    Status = EFI_INVALID_PARAMETER;
    goto Done;
  }

  DstArg = CR (DstList.Flink, SHELL_FILE_ARG, Link, SHELL_FILE_ARG_SIGNATURE);

  if (SrcFile) {
    Status = ShellFileMetaArg (SrcFile, &SrcList);

    if (EFI_ERROR (Status) || IsListEmpty (&DstList)) {
      goto Done;
    }
    //
    // multi dst
    //
    if (SrcList.Flink->Flink != &SrcList) {
      Status = EFI_INVALID_PARAMETER;
      goto Done;
    }

    SrcArg = CR (SrcList.Flink, SHELL_FILE_ARG, Link, SHELL_FILE_ARG_SIGNATURE);

    //
    // At this stage, make sure there is at least one valid src
    //
    if (StrCmp (SrcArg->FullName, DstArg->FullName) == 0) {
      *IsSame = TRUE;
    }
  }

Done:
  ShellFreeFileList (&SrcList);
  ShellFreeFileList (&DstList);
  return Status;
}

EFI_FILE_HANDLE
LibOpenFilePath (
  IN EFI_DEVICE_PATH_PROTOCOL   *FilePath,
  IN UINT64                     FileMode
  )
/*++

Routine Description:
  
Arguments:
    FilePath - File path
    FileMode - File mode

Returns:
  
--*/
{
  EFI_FILE_HANDLE FileHandle;
  EFI_HANDLE      DeviceHandle;
  EFI_STATUS      Status;

  FileHandle    = NULL;
  DeviceHandle  = NULL;
  Status = LibOpenFile (
            &FilePath,
            &DeviceHandle,
            &FileHandle,
            FileMode,
            0
            );
  if (EFI_ERROR (Status)) {
    return NULL;
  }

  return FileHandle;
}

EFI_STATUS
OpenSimpleReadFile (
  IN BOOLEAN                        BootPolicy,
  IN VOID                           *SourceBuffer OPTIONAL,
  IN UINTN                          SourceSize,
  IN OUT EFI_DEVICE_PATH_PROTOCOL   **FilePath,
  OUT EFI_HANDLE                    *DeviceHandle,
  OUT SIMPLE_READ_FILE              *SimpleReadHandle
  )
/*++

Routine Description:

    Opens a file for (simple) reading.  The simple read abstraction
    will access the file either from a memory copy, from a file
    system interface, or from the load file interface. 

Arguments:

  BootPolicy       - The boot policy
  SourceBuffer     - The source buffer
  SourceSize       - The source size
  FilePath         - The file path
  DeviceHandle     - The device handle
  SimpleReadHandle - The simple read handle

Returns:

    A handle to access the file

--*/
{
  SIMPLE_READ_HANDLE        *FHand;
  EFI_DEVICE_PATH_PROTOCOL  *UserFilePath;
  EFI_DEVICE_PATH_PROTOCOL  *TempFilePath;
  EFI_DEVICE_PATH_PROTOCOL  *TempFilePathPtr;
  FILEPATH_DEVICE_PATH      *FilePathNode;
  EFI_FILE_HANDLE           FileHandle;
  EFI_FILE_HANDLE           LastHandle;
  EFI_STATUS                Status;
  EFI_LOAD_FILE_PROTOCOL    *LoadFile;

  ASSERT (DeviceHandle != NULL);
  ASSERT (SimpleReadHandle != NULL);
  
  FHand         = NULL;
  UserFilePath  = *FilePath;

  //
  // Allocate a new simple read handle structure
  //
  FHand = AllocateZeroPool (sizeof (SIMPLE_READ_HANDLE));
  if (!FHand) {
    Status = EFI_OUT_OF_RESOURCES;
    goto Done;
  }

  FHand->Signature  = SIMPLE_READ_SIGNATURE;

  //
  // If the caller passed a copy of the file, then just use it
  //
  if (SourceBuffer) {
    FHand->Source     = SourceBuffer;
    FHand->SourceSize = SourceSize;
    *DeviceHandle     = NULL;
    Status            = EFI_SUCCESS;
    goto Done;
  }
  //
  // Attempt to access the file via a file system interface
  //
  FileHandle  = NULL;
  Status      = BS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid, FilePath, DeviceHandle);
  if (!EFI_ERROR (Status)) {
    FileHandle = LibOpenRoot (*DeviceHandle);
  }

  Status = FileHandle ? EFI_SUCCESS : EFI_UNSUPPORTED;

  if (EFI_ERROR (Status)) {
    goto Done;
  }
  //
  // To access as a filesystem, the filepath should only
  // contain filepath components.  Follow the filepath nodes
  // and find the target file
  //
  FilePathNode = (FILEPATH_DEVICE_PATH *) *FilePath;
  while (!IsDevicePathEnd (&FilePathNode->Header)) {
    //
    // For filesystem access each node should be a filepath component
    //
    if (DevicePathType (&FilePathNode->Header) != MEDIA_DEVICE_PATH ||
        DevicePathSubType (&FilePathNode->Header) != MEDIA_FILEPATH_DP
        ) {
      Status = EFI_UNSUPPORTED;
    }
    //
    // If there's been an error, stop
    //
    if (EFI_ERROR (Status)) {
      break;
    }
    //
    // Open this file path node
    //
    LastHandle  = FileHandle;
    FileHandle  = NULL;

    Status = LastHandle->Open (
                          LastHandle,
                          &FileHandle,
                          FilePathNode->PathName,
                          EFI_FILE_MODE_READ,
                          0
                          );

    //
    // Close the last node
    //
    LastHandle->Close (LastHandle);

    //
    // Get the next node
    //
    FilePathNode = (FILEPATH_DEVICE_PATH *) NextDevicePathNode (&FilePathNode->Header);
  }
  //
  // If success, return the FHand
  //
  if (!EFI_ERROR (Status)) {
    ASSERT (FileHandle);
    FHand->FileHandle = FileHandle;
    goto Done;
  }
  //
  // Cleanup from filesystem access
  //
  if (FileHandle) {
    FileHandle->Close (FileHandle);
    FileHandle  = NULL;
    *FilePath   = UserFilePath;
  }
  //
  // If the error is something other then unsupported, return it
  //
  if (Status != EFI_UNSUPPORTED) {
    goto Done;
  }
  //
  // Attempt to access the file via the load file protocol
  //
  Status = LibDevicePathToInterface (&gEfiLoadFileProtocolGuid, *FilePath, (VOID *) &LoadFile);
  if (!EFI_ERROR (Status)) {

    TempFilePath    = DuplicateDevicePath (*FilePath);

    TempFilePathPtr = TempFilePath;

    Status          = BS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &TempFilePath, DeviceHandle);

    FreePool (TempFilePathPtr);

    //
    // Determine the size of buffer needed to hold the file
    //
    SourceSize = 0;
    Status = LoadFile->LoadFile (
                        LoadFile,
                        *FilePath,
                        BootPolicy,
                        &SourceSize,
                        NULL
                        );

    //
    // We expect a buffer too small error to inform us
    // of the buffer size needed
    //
    if (Status == EFI_BUFFER_TOO_SMALL) {
      SourceBuffer = AllocatePool (SourceSize);

      if (SourceBuffer) {
        FHand->FreeBuffer = TRUE;
        FHand->Source     = SourceBuffer;
        FHand->SourceSize = SourceSize;

        Status = LoadFile->LoadFile (
                            LoadFile,
                            *FilePath,
                            BootPolicy,
                            &SourceSize,
                            SourceBuffer
                            );
      }
    }
    //
    // If success, return FHand
    //
    if (!EFI_ERROR (Status) || Status == EFI_ALREADY_STARTED) {
      goto Done;
    }
  }
  //
  // Nothing else to try
  //
  DEBUG ((EFI_D_LOAD | EFI_D_WARN, "OpenSimpleReadFile: Device did not support a known load protocol\n"));
  Status = EFI_UNSUPPORTED;

Done:
  //
  // If the file was not accessed, clean up
  //
  if (EFI_ERROR (Status) && (Status != EFI_ALREADY_STARTED)) {
    if (FHand) {
      if (FHand->FreeBuffer) {
        FreePool (FHand->Source);
      }

      FreePool (FHand);
    }
  }

  return Status;
}

EFI_STATUS
ReadSimpleReadFile (
  IN SIMPLE_READ_FILE     UserHandle,
  IN UINTN                Offset,
  IN OUT UINTN            *ReadSize,
  OUT VOID                *Buffer
  )
{
  UINTN               EndPos;
  SIMPLE_READ_HANDLE  *FHand;
  EFI_STATUS          Status;

  ASSERT (ReadSize);
  ASSERT (Buffer);

  FHand = UserHandle;
  ASSERT (FHand->Signature == SIMPLE_READ_SIGNATURE);
  if (FHand->Source) {
    //
    // Move data from our local copy of the file
    //
    EndPos = Offset +*ReadSize;
    if (EndPos > FHand->SourceSize) {
      *ReadSize = FHand->SourceSize - Offset;
      if (Offset >= FHand->SourceSize) {
        *ReadSize = 0;
      }
    }

    CopyMem (Buffer, (CHAR8 *) FHand->Source + Offset, *ReadSize);
    Status = EFI_SUCCESS;

  } else {
    //
    // Read data from the file
    //
    Status = FHand->FileHandle->SetPosition (FHand->FileHandle, Offset);

    if (!EFI_ERROR (Status)) {
      Status = FHand->FileHandle->Read (FHand->FileHandle, ReadSize, Buffer);
    }
  }

  return Status;
}

VOID
CloseSimpleReadFile (
  IN SIMPLE_READ_FILE     UserHandle
  )
{
  SIMPLE_READ_HANDLE  *FHand;

  FHand = UserHandle;
  ASSERT (FHand->Signature == SIMPLE_READ_SIGNATURE);

  //
  // Free any file handle we opened
  //
  if (FHand->FileHandle) {
    FHand->FileHandle->Close (FHand->FileHandle);
  }
  //
  // If we allocated the Source buffer, free it
  //
  if (FHand->FreeBuffer) {
    FreePool (FHand->Source);
  }
  //
  // Done with this simple read file handle
  //
  FreePool (FHand);
}