summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/FvSimpleFilesystemDxe/FvSimpleFilesystem.c
blob: 5071befd36b82b09acce88a8ebe53dbf0bf767ad (plain)
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
/** @file
*
*  Copyright (c) 2014, ARM Limited. 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.
*
**/

/*
  A driver using the EFI_FIRMWARE_VOLUME2_PROTOCOL to expose files in firmware
  volumes via the the EFI_SIMPLE_FILESYSTEM_PROTOCOL and EFI_FILE_PROTOCOL.

  Its primary intended use is to be able to start EFI applications embedded
  in FVs from the UEFI shell. For this reason, it is not fully compliant as a
  filesystem driver: it is entirely read-only, and does not support partially
  reading files.

  It will expose a single directory, containing one file for each file in the
  firmware volume. If a file has a UI section, its contents will be used as
  a filename. Otherwise, a string representation of the GUID will be used.
  Files of an executable type (That is PEIM, DRIVER, COMBINED_PEIM_DRIVER
  and APPLICATION) will have ".efi" added to their filename.

  The data returned by Read() depends on the type of the underlying FV file:
  - For executable types, the first section found that contains executable code
    is returned.
  - For files of type FREEFORM, the driver attempts to return the first section
    of type RAW. If none is found, the entire contents of the FV file are
    returned.
  - On all other files the entire contents of the FV file is returned, as by
    EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadFile.

  See the EFI Firmware Volume specification (a separate document from the main
  UEFI specification) for more information about firmware volumes.
*/

#include <PiDxe.h>

#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include <Library/PathLib.h>

#include <Protocol/DriverBinding.h>
#include <Protocol/FirmwareVolume2.h>
#include <Protocol/SimpleFileSystem.h>
#include <Protocol/UnicodeCollation.h>

#include <Guid/FileSystemInfo.h>
#include <Guid/FileInfo.h>
#include <Guid/FileSystemVolumeLabelInfo.h>

#include "FvSimpleFilesystemInternal.h"

/*
  Find and call ReadSection on the first section found of an executable type.
*/
STATIC
EFI_STATUS
FvFsFindExecutableSection (
  IN  FV_FILESYSTEM_FILE *File,
  OUT UINTN              *BufferSize,
  OUT VOID              **Buffer
  )
{
  EFI_SECTION_TYPE               SectionType;
  UINT32                         AuthenticationStatus;
  EFI_FIRMWARE_VOLUME2_PROTOCOL *FvProtocol;
  EFI_STATUS                     Status;

  FvProtocol = File->Instance->FvProtocol;

  for (SectionType = EFI_SECTION_PE32; SectionType <= EFI_SECTION_TE; SectionType++) {
    Status = FvProtocol->ReadSection (
                           FvProtocol,
                           &File->NameGuid,
                           SectionType,
                           0,
                           Buffer,
                           BufferSize,
                           &AuthenticationStatus
                           );
    if (Status != EFI_NOT_FOUND) {
      return Status;
    }
  }
  return EFI_NOT_FOUND;
}

/*
  Get the size of the buffer that will be returned by FvFsReadFile.
*/
EFI_STATUS
FvFsGetFileSize (
  IN  FV_FILESYSTEM_FILE *File,
  OUT UINTN              *Size
  )
{
  EFI_FIRMWARE_VOLUME2_PROTOCOL *FvProtocol;
  UINT32                         AuthenticationStatus;
  EFI_FV_FILETYPE                FoundType;
  EFI_FV_FILE_ATTRIBUTES         Attributes;
  EFI_STATUS                     Status;
  UINT8                          IgnoredByte;
  VOID                          *IgnoredPtr;

  FvProtocol = File->Instance->FvProtocol;

  // To get the size of a section, we pass 0 for BufferSize. But we can't pass
  // NULL for Buffer, as that will cause a return of INVALID_PARAMETER, and we
  // can't pass NULL for *Buffer, as that will cause the callee to allocate
  // a buffer of the sections size.
  IgnoredPtr = &IgnoredByte;
  *Size = 0;

  if (FV_FILETYPE_IS_EXECUTABLE (File->Type)) {
    // Get the size of the first executable section out of the file.
    Status = FvFsFindExecutableSection (File, Size, &IgnoredPtr);
    if (Status == EFI_WARN_BUFFER_TOO_SMALL) {
      return EFI_SUCCESS;
    }
  } else if (File->Type == EFI_FV_FILETYPE_FREEFORM) {
    // Try to get the size of a raw section out of the file
    Status = FvProtocol->ReadSection (
                           FvProtocol,
                           &File->NameGuid,
                           EFI_SECTION_RAW,
                           0,
                           &IgnoredPtr,
                           Size,
                           &AuthenticationStatus
                           );
    if (Status == EFI_WARN_BUFFER_TOO_SMALL) {
      return EFI_SUCCESS;
    }
    if (EFI_ERROR (Status)) {
      // Didn't find a raw section, just return the whole file's size.
      return FvProtocol->ReadFile (
                           FvProtocol,
                           &File->NameGuid,
                           NULL,
                           Size,
                           &FoundType,
                           &Attributes,
                           &AuthenticationStatus
                           );
    }
  } else {
    // Get the size of the entire file
    return FvProtocol->ReadFile (
                         FvProtocol,
                         &File->NameGuid,
                         NULL,
                         Size,
                         &FoundType,
                         &Attributes,
                         &AuthenticationStatus
                         );
  }

  return Status;
}

/*
  Helper function to read a file. See comment at the top of this file for
  information on behaviour.
*/
EFI_STATUS
FvFsReadFile (
  FV_FILESYSTEM_FILE *File,
  UINTN              *BufferSize,
  VOID              **Buffer
  )
{
  EFI_FIRMWARE_VOLUME2_PROTOCOL *FvProtocol;
  UINT32                         AuthenticationStatus;
  EFI_FV_FILETYPE                FoundType;
  EFI_FV_FILE_ATTRIBUTES         Attributes;
  EFI_STATUS                     Status;

  FvProtocol = File->Instance->FvProtocol;

  if (FV_FILETYPE_IS_EXECUTABLE (File->Type)) {
    // Read the first executable section out of the file.
    Status = FvFsFindExecutableSection (File, BufferSize, Buffer);
  } else if (File->Type == EFI_FV_FILETYPE_FREEFORM) {
    // Try to read a raw section out of the file
    Status = FvProtocol->ReadSection (
                           FvProtocol,
                           &File->NameGuid,
                           EFI_SECTION_RAW,
                           0,
                           Buffer,
                           BufferSize,
                           &AuthenticationStatus
                           );
    if (EFI_ERROR (Status)) {
      // Didn't find a raw section, just return the whole file.
      Status = FvProtocol->ReadFile (
                             FvProtocol,
                             &File->NameGuid,
                             Buffer,
                             BufferSize,
                             &FoundType,
                             &Attributes,
                             &AuthenticationStatus
                             );
    }
  } else {
    // Read the entire file
    Status = FvProtocol->ReadFile (
                           FvProtocol,
                           &File->NameGuid,
                           Buffer,
                           BufferSize,
                           &FoundType,
                           &Attributes,
                           &AuthenticationStatus
                           );
  }

  return Status;
}

/*
  Helper function for populating an EFI_FILE_INFO for a file.
*/
STATIC
EFI_STATUS
FvFsGetFileInfo (
  IN     FV_FILESYSTEM_FILE *File,
  IN OUT UINTN              *BufferSize,
     OUT EFI_FILE_INFO      *FileInfo
  )
{
  UINTN                          InfoSize;

  InfoSize = sizeof (EFI_FILE_INFO) + StrSize (File->Name) - sizeof (CHAR16);
  if (*BufferSize < InfoSize) {
    *BufferSize = InfoSize;
    return EFI_BUFFER_TOO_SMALL;
  }

  // Initialize FileInfo
  ZeroMem (FileInfo, InfoSize);
  FileInfo->Size = InfoSize;
  FileInfo->Attribute = EFI_FILE_READ_ONLY;

  // File is a directory if it is root.
  if (File == File->Instance->Root) {
    FileInfo->Attribute |= EFI_FILE_DIRECTORY;
  }

  FileInfo->FileSize = File->Size;
  FileInfo->PhysicalSize = File->Size;

  StrCpy (FileInfo->FileName, File->Name);

  *BufferSize = InfoSize;
  return EFI_SUCCESS;
}

EFIAPI
EFI_STATUS
FvSimpleFilesystemOpen (
  IN EFI_FILE_PROTOCOL  *This,
  OUT EFI_FILE_PROTOCOL **NewHandle,
  IN CHAR16             *FileName,
  IN UINT64             OpenMode,
  IN UINT64             Attributes
  )
{
  FV_FILESYSTEM_INSTANCE      *Instance;
  FV_FILESYSTEM_FILE          *File;
  LIST_ENTRY                  *FileLink;

  if ((FileName == NULL) || (NewHandle == NULL)) {
    return EFI_INVALID_PARAMETER;
  }

  // The only valid modes are read, read/write, and read/write/create
  if ( (OpenMode != EFI_FILE_MODE_READ) &&
       (OpenMode != (EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE)) &&
       (OpenMode != (EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE)) ) {
    return EFI_INVALID_PARAMETER;
  }


  if (OpenMode & EFI_FILE_MODE_CREATE) {
    return EFI_WRITE_PROTECTED;
  }

  File = FVFS_FILE_FROM_FILE_THIS (This);
  Instance = File->Instance;

  FileName = PathCleanUpDirectories (FileName);

  if (FileName[0] == L'\\') {
    FileName++;
  }

  // Check for opening root
  if (StrCmp (FileName, L".") == 0 || StrCmp (FileName, L"") == 0) {
    *NewHandle = &Instance->Root->FileProtocol;
    return EFI_SUCCESS;
  }

  //
  // Do a linear search for a file in the FV with a matching filename
  //
  for (FileLink = GetFirstNode (&Instance->Files);
       !IsNull (&Instance->Files, FileLink);
       FileLink = GetNextNode (&Instance->Files, FileLink)) {

    File = FVFS_FILE_FROM_LINK (FileLink);
    if (mUnicodeCollation->StriColl (mUnicodeCollation, File->Name, FileName) == 0) {
      *NewHandle = &File->FileProtocol;
      return EFI_SUCCESS;
    }
  }
  return EFI_NOT_FOUND;
}

EFIAPI
EFI_STATUS
FvSimpleFilesystemClose (
  IN EFI_FILE_PROTOCOL  *This
  )
{
  return EFI_SUCCESS;
}

/*
  Implementation of EFI_FILE_PROTOCOL.Read.

  This implementation is not compliant with the UEFI specification. As this
  driver's only intended use case is for loading and executing EFI images,
  it does not support partial reads. If *BufferSize is less than the size of the
  image being read, it will return EFI_UNSUPPORTED.
*/
EFIAPI
EFI_STATUS
FvSimpleFilesystemRead (
  IN EFI_FILE_PROTOCOL  *This,
  IN OUT UINTN          *BufferSize,
  OUT VOID              *Buffer
  )
{
  FV_FILESYSTEM_INSTANCE        *Instance;
  FV_FILESYSTEM_FILE            *File;
  EFI_STATUS                     Status;
  LIST_ENTRY                    *FileLink;

  File = FVFS_FILE_FROM_FILE_THIS (This);
  Instance = File->Instance;

  if (File == Instance->Root) {
    if (File->DirReadNext) {
      //
      // Directory read: populate Buffer with an EFI_FILE_INFO
      //
      Status = FvFsGetFileInfo (File->DirReadNext, BufferSize, Buffer);
      if (!EFI_ERROR (Status)) {
        //
        // Successfully read a directory entry, now update the pointer to the
        // next file, which will be read on the next call to this function
        //

        FileLink = GetNextNode (&Instance->Files, &File->DirReadNext->Link);
        if (IsNull (&Instance->Files, FileLink)) {
          // No more files left
          File->DirReadNext = NULL;
        } else {
          File->DirReadNext = FVFS_FILE_FROM_LINK (FileLink);
        }
      }
      return Status;
    } else {
      //
      // Directory read. All entries have been read, so return a zero-size
      // buffer.
      //
      *BufferSize = 0;
      return EFI_SUCCESS;
    }
  } else {
    if (*BufferSize < File->Size) {
      DEBUG ((EFI_D_ERROR, "FV Filesystem does not support partial file reads\n", *BufferSize, File->Size));
      return EFI_UNSUPPORTED;
    }
    return FvFsReadFile (File, BufferSize, &Buffer);
  }
}

EFIAPI
EFI_STATUS
FvSimpleFilesystemWrite (
  IN EFI_FILE_PROTOCOL  *This,
  IN OUT UINTN          *BufferSize,
  IN VOID               *Buffer
  )
{
  return EFI_UNSUPPORTED;
}


EFIAPI
EFI_STATUS
FvSimpleFilesystemGetPosition (
  IN EFI_FILE_PROTOCOL  *This,
  OUT UINT64            *Position
  )
{
  return EFI_UNSUPPORTED;
}

/*
  This implementation of EFI_FILE_PROTOCOL.SetPosition is not compliant with
  the UEFI specification. We do not support partial file reads (see comment on
  FvSimpleFilesystemRead), therefore we only support seeking to position 0
*/
EFIAPI
EFI_STATUS
FvSimpleFilesystemSetPosition (
  IN EFI_FILE_PROTOCOL  *This,
  IN UINT64             Position
  )
{
  FV_FILESYSTEM_INSTANCE      *Instance;
  FV_FILESYSTEM_FILE          *File;

  File = FVFS_FILE_FROM_FILE_THIS (This);
  Instance = File->Instance;

  if (File == Instance->Root) {
    if (Position != 0) {
      return EFI_INVALID_PARAMETER;
    }
    // Reset directory position to first entry
    File->DirReadNext = FVFS_GET_FIRST_FILE (Instance);
  } else if (Position != 0) {
    // We don't support partial file reads, so we don't support seeking either.
    return EFI_UNSUPPORTED;
  }

  return EFI_SUCCESS;
}

EFIAPI
EFI_STATUS
FvSimpleFilesystemFlush (
  IN EFI_FILE_PROTOCOL  *This
  )
{
  return EFI_SUCCESS;
}

EFIAPI
EFI_STATUS
FvSimpleFilesystemDelete (
  IN EFI_FILE_PROTOCOL *This
  )
{
  return EFI_WARN_DELETE_FAILURE;
}

STATIC EFI_FILE_SYSTEM_INFO mFsInfoTemplate = {
  0,    // Populate at runtime
  TRUE, // Read-only
  0,    // Don't know volume size
  0,    // No free space
  0,    // Don't know block size
  L""   // Populate at runtime
};

EFIAPI
EFI_STATUS
FvSimpleFilesystemGetInfo (
  IN EFI_FILE_PROTOCOL  *This,
  IN EFI_GUID           *InformationType,
  IN OUT UINTN          *BufferSize,
  OUT VOID              *Buffer
  )
{
  FV_FILESYSTEM_FILE          *File;
  EFI_FILE_SYSTEM_INFO        *FsInfoOut;
  FV_FILESYSTEM_INSTANCE      *Instance;
  UINTN                        InfoSize;

  File = FVFS_FILE_FROM_FILE_THIS (This);

  if (CompareGuid (InformationType, &gEfiFileSystemInfoGuid)) {
    //
    // Return filesystem info
    //
    Instance = File->Instance;

    InfoSize = sizeof (EFI_FILE_SYSTEM_INFO) + StrSize (Instance->VolumeLabel)
               - sizeof (CHAR16);

    if (*BufferSize < InfoSize) {
      *BufferSize = InfoSize;
      return EFI_BUFFER_TOO_SMALL;
    }

    // Cast output buffer for convenience
    FsInfoOut = (EFI_FILE_SYSTEM_INFO *) Buffer;
    mFsInfoTemplate.Size = InfoSize;

    CopyMem (FsInfoOut, &mFsInfoTemplate, sizeof(EFI_FILE_SYSTEM_INFO));
    StrCpy (FsInfoOut->VolumeLabel, Instance->VolumeLabel);
    return EFI_SUCCESS;
  } else if (CompareGuid (InformationType, &gEfiFileInfoGuid)) {
    //
    // Return file info
    //

    return FvFsGetFileInfo (File, BufferSize, (EFI_FILE_INFO *) Buffer);
  } else if (CompareGuid (InformationType, &gEfiFileSystemVolumeLabelInfoIdGuid)) {
    //
    // Return Volume Label
    //
    Instance = File->Instance;
    InfoSize = StrSize (Instance->VolumeLabel);

    if (*BufferSize >= InfoSize) {
      StrCpy (Buffer, Instance->VolumeLabel);
      return EFI_SUCCESS;
    } else {
      *BufferSize = InfoSize;
      return EFI_BUFFER_TOO_SMALL;
    }

  } else {
    return EFI_UNSUPPORTED;
  }
}

EFIAPI
EFI_STATUS
FvSimpleFilesystemSetInfo (
  IN EFI_FILE_PROTOCOL *This,
  IN EFI_GUID *InformationType,
  IN UINTN BufferSize,
  IN VOID *Buffer
  )
{
  return EFI_WRITE_PROTECTED;
}

EFI_FILE_PROTOCOL mFilesystemTemplate = {
  EFI_FILE_PROTOCOL_REVISION,
  FvSimpleFilesystemOpen,
  FvSimpleFilesystemClose,
  FvSimpleFilesystemDelete,
  FvSimpleFilesystemRead,
  FvSimpleFilesystemWrite,
  FvSimpleFilesystemGetPosition,
  FvSimpleFilesystemSetPosition,
  FvSimpleFilesystemGetInfo,
  FvSimpleFilesystemSetInfo,
  FvSimpleFilesystemFlush
};