]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdePkg/UefiLib: introduce EfiOpenFileByDevicePath()
authorLaszlo Ersek <lersek@redhat.com>
Wed, 18 Jul 2018 15:07:03 +0000 (17:07 +0200)
committerLaszlo Ersek <lersek@redhat.com>
Thu, 16 Aug 2018 18:02:39 +0000 (20:02 +0200)
The EfiOpenFileByDevicePath() function centralizes functionality from

- MdeModulePkg/Universal/Disk/RamDiskDxe
- NetworkPkg/TlsAuthConfigDxe
- SecurityPkg/VariableAuthenticated/SecureBootConfigDxe
- ShellPkg/Library/UefiShellLib

unifying the implementation and fixing various bugs.

(Ray suggested that we eliminate the special handling of
EFI_FILE_MODE_CREATE in the "OpenMode" input parameter as well. We plan to
implement that separately, under
<https://bugzilla.tianocore.org/show_bug.cgi?id=1074>.)

Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Jaben Carsey <jaben.carsey@intel.com>
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Roman Bacik <roman.bacik@broadcom.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Cc: Siyuan Fu <siyuan.fu@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=1008
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
MdePkg/Include/Library/UefiLib.h
MdePkg/Library/UefiLib/UefiLib.c
MdePkg/Library/UefiLib/UefiLib.inf

index 7c6fde620c742b178fa5bb89147baf49a5e7356b..f950f1c9c6485d9e53681e81e19a4b9e44254721 100644 (file)
@@ -33,6 +33,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #include <Protocol/DriverDiagnostics.h>\r
 #include <Protocol/DriverDiagnostics2.h>\r
 #include <Protocol/GraphicsOutput.h>\r
+#include <Protocol/DevicePath.h>\r
+#include <Protocol/SimpleFileSystem.h>\r
 \r
 #include <Library/BaseLib.h>\r
 \r
@@ -1520,4 +1522,90 @@ EfiLocateProtocolBuffer (
   OUT UINTN     *NoProtocols,\r
   OUT VOID      ***Buffer\r
   );\r
+\r
+/**\r
+  Open or create a file or directory, possibly creating the chain of\r
+  directories leading up to the directory.\r
+\r
+  EfiOpenFileByDevicePath() first locates EFI_SIMPLE_FILE_SYSTEM_PROTOCOL on\r
+  FilePath, and opens the root directory of that filesystem with\r
+  EFI_SIMPLE_FILE_SYSTEM_PROTOCOL.OpenVolume().\r
+\r
+  On the remaining device path, the longest initial sequence of\r
+  FILEPATH_DEVICE_PATH nodes is node-wise traversed with\r
+  EFI_FILE_PROTOCOL.Open(). For the pathname fragment specified by each\r
+  traversed FILEPATH_DEVICE_PATH node, EfiOpenFileByDevicePath() first masks\r
+  EFI_FILE_MODE_CREATE out of OpenMode, and passes 0 for Attributes. If\r
+  EFI_FILE_PROTOCOL.Open() fails, and OpenMode includes EFI_FILE_MODE_CREATE,\r
+  then the operation is retried with the caller's OpenMode and Attributes\r
+  unmodified.\r
+\r
+  (As a consequence, if OpenMode includes EFI_FILE_MODE_CREATE, and Attributes\r
+  includes EFI_FILE_DIRECTORY, and each FILEPATH_DEVICE_PATH specifies a single\r
+  pathname component, then EfiOpenFileByDevicePath() ensures that the specified\r
+  series of subdirectories exist on return.)\r
+\r
+  The EFI_FILE_PROTOCOL identified by the last FILEPATH_DEVICE_PATH node is\r
+  output to the caller; intermediate EFI_FILE_PROTOCOL instances are closed. If\r
+  there are no FILEPATH_DEVICE_PATH nodes past the node that identifies the\r
+  filesystem, then the EFI_FILE_PROTOCOL of the root directory of the\r
+  filesystem is output to the caller. If a device path node that is different\r
+  from FILEPATH_DEVICE_PATH is encountered relative to the filesystem, the\r
+  traversal is stopped with an error, and a NULL EFI_FILE_PROTOCOL is output.\r
+\r
+  @param[in,out] FilePath  On input, the device path to the file or directory\r
+                           to open or create. The caller is responsible for\r
+                           ensuring that the device path pointed-to by FilePath\r
+                           is well-formed. On output, FilePath points one past\r
+                           the last node in the original device path that has\r
+                           been successfully processed. FilePath is set on\r
+                           output even if EfiOpenFileByDevicePath() returns an\r
+                           error.\r
+\r
+  @param[out] File         On error, File is set to NULL. On success, File is\r
+                           set to the EFI_FILE_PROTOCOL of the root directory\r
+                           of the filesystem, if there are no\r
+                           FILEPATH_DEVICE_PATH nodes in FilePath; otherwise,\r
+                           File is set to the EFI_FILE_PROTOCOL identified by\r
+                           the last node in FilePath.\r
+\r
+  @param[in] OpenMode      The OpenMode parameter to pass to\r
+                           EFI_FILE_PROTOCOL.Open(). For each\r
+                           FILEPATH_DEVICE_PATH node in FilePath,\r
+                           EfiOpenFileByDevicePath() first opens the specified\r
+                           pathname fragment with EFI_FILE_MODE_CREATE masked\r
+                           out of OpenMode and with Attributes set to 0, and\r
+                           only retries the operation with EFI_FILE_MODE_CREATE\r
+                           unmasked and Attributes propagated if the first open\r
+                           attempt fails.\r
+\r
+  @param[in] Attributes    The Attributes parameter to pass to\r
+                           EFI_FILE_PROTOCOL.Open(), when EFI_FILE_MODE_CREATE\r
+                           is propagated unmasked in OpenMode.\r
+\r
+  @retval EFI_SUCCESS            The file or directory has been opened or\r
+                                 created.\r
+\r
+  @retval EFI_INVALID_PARAMETER  FilePath is NULL; or File is NULL; or FilePath\r
+                                 contains a device path node, past the node\r
+                                 that identifies\r
+                                 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, that is not a\r
+                                 FILEPATH_DEVICE_PATH node.\r
+\r
+  @retval EFI_OUT_OF_RESOURCES   Memory allocation failed.\r
+\r
+  @return                        Error codes propagated from the\r
+                                 LocateDevicePath() and OpenProtocol() boot\r
+                                 services, and from the\r
+                                 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL.OpenVolume()\r
+                                 and EFI_FILE_PROTOCOL.Open() member functions.\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+EfiOpenFileByDevicePath (\r
+  IN OUT EFI_DEVICE_PATH_PROTOCOL  **FilePath,\r
+  OUT    EFI_FILE_PROTOCOL         **File,\r
+  IN     UINT64                    OpenMode,\r
+  IN     UINT64                    Attributes\r
+  );\r
 #endif\r
index 828a54ce7a978b6ee0b9361618ba834cfbf560b8..7bcac5613768b2863850732ea8017be3b08a1ff1 100644 (file)
@@ -1719,3 +1719,230 @@ EfiLocateProtocolBuffer (
 \r
   return EFI_SUCCESS;\r
 }\r
+\r
+/**\r
+  Open or create a file or directory, possibly creating the chain of\r
+  directories leading up to the directory.\r
+\r
+  EfiOpenFileByDevicePath() first locates EFI_SIMPLE_FILE_SYSTEM_PROTOCOL on\r
+  FilePath, and opens the root directory of that filesystem with\r
+  EFI_SIMPLE_FILE_SYSTEM_PROTOCOL.OpenVolume().\r
+\r
+  On the remaining device path, the longest initial sequence of\r
+  FILEPATH_DEVICE_PATH nodes is node-wise traversed with\r
+  EFI_FILE_PROTOCOL.Open(). For the pathname fragment specified by each\r
+  traversed FILEPATH_DEVICE_PATH node, EfiOpenFileByDevicePath() first masks\r
+  EFI_FILE_MODE_CREATE out of OpenMode, and passes 0 for Attributes. If\r
+  EFI_FILE_PROTOCOL.Open() fails, and OpenMode includes EFI_FILE_MODE_CREATE,\r
+  then the operation is retried with the caller's OpenMode and Attributes\r
+  unmodified.\r
+\r
+  (As a consequence, if OpenMode includes EFI_FILE_MODE_CREATE, and Attributes\r
+  includes EFI_FILE_DIRECTORY, and each FILEPATH_DEVICE_PATH specifies a single\r
+  pathname component, then EfiOpenFileByDevicePath() ensures that the specified\r
+  series of subdirectories exist on return.)\r
+\r
+  The EFI_FILE_PROTOCOL identified by the last FILEPATH_DEVICE_PATH node is\r
+  output to the caller; intermediate EFI_FILE_PROTOCOL instances are closed. If\r
+  there are no FILEPATH_DEVICE_PATH nodes past the node that identifies the\r
+  filesystem, then the EFI_FILE_PROTOCOL of the root directory of the\r
+  filesystem is output to the caller. If a device path node that is different\r
+  from FILEPATH_DEVICE_PATH is encountered relative to the filesystem, the\r
+  traversal is stopped with an error, and a NULL EFI_FILE_PROTOCOL is output.\r
+\r
+  @param[in,out] FilePath  On input, the device path to the file or directory\r
+                           to open or create. The caller is responsible for\r
+                           ensuring that the device path pointed-to by FilePath\r
+                           is well-formed. On output, FilePath points one past\r
+                           the last node in the original device path that has\r
+                           been successfully processed. FilePath is set on\r
+                           output even if EfiOpenFileByDevicePath() returns an\r
+                           error.\r
+\r
+  @param[out] File         On error, File is set to NULL. On success, File is\r
+                           set to the EFI_FILE_PROTOCOL of the root directory\r
+                           of the filesystem, if there are no\r
+                           FILEPATH_DEVICE_PATH nodes in FilePath; otherwise,\r
+                           File is set to the EFI_FILE_PROTOCOL identified by\r
+                           the last node in FilePath.\r
+\r
+  @param[in] OpenMode      The OpenMode parameter to pass to\r
+                           EFI_FILE_PROTOCOL.Open(). For each\r
+                           FILEPATH_DEVICE_PATH node in FilePath,\r
+                           EfiOpenFileByDevicePath() first opens the specified\r
+                           pathname fragment with EFI_FILE_MODE_CREATE masked\r
+                           out of OpenMode and with Attributes set to 0, and\r
+                           only retries the operation with EFI_FILE_MODE_CREATE\r
+                           unmasked and Attributes propagated if the first open\r
+                           attempt fails.\r
+\r
+  @param[in] Attributes    The Attributes parameter to pass to\r
+                           EFI_FILE_PROTOCOL.Open(), when EFI_FILE_MODE_CREATE\r
+                           is propagated unmasked in OpenMode.\r
+\r
+  @retval EFI_SUCCESS            The file or directory has been opened or\r
+                                 created.\r
+\r
+  @retval EFI_INVALID_PARAMETER  FilePath is NULL; or File is NULL; or FilePath\r
+                                 contains a device path node, past the node\r
+                                 that identifies\r
+                                 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, that is not a\r
+                                 FILEPATH_DEVICE_PATH node.\r
+\r
+  @retval EFI_OUT_OF_RESOURCES   Memory allocation failed.\r
+\r
+  @return                        Error codes propagated from the\r
+                                 LocateDevicePath() and OpenProtocol() boot\r
+                                 services, and from the\r
+                                 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL.OpenVolume()\r
+                                 and EFI_FILE_PROTOCOL.Open() member functions.\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+EfiOpenFileByDevicePath (\r
+  IN OUT EFI_DEVICE_PATH_PROTOCOL  **FilePath,\r
+  OUT    EFI_FILE_PROTOCOL         **File,\r
+  IN     UINT64                    OpenMode,\r
+  IN     UINT64                    Attributes\r
+  )\r
+{\r
+  EFI_STATUS                      Status;\r
+  EFI_HANDLE                      FileSystemHandle;\r
+  EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *FileSystem;\r
+  EFI_FILE_PROTOCOL               *LastFile;\r
+  FILEPATH_DEVICE_PATH            *FilePathNode;\r
+  CHAR16                          *AlignedPathName;\r
+  CHAR16                          *PathName;\r
+  EFI_FILE_PROTOCOL               *NextFile;\r
+\r
+  if (File == NULL) {\r
+    return EFI_INVALID_PARAMETER;\r
+  }\r
+  *File = NULL;\r
+\r
+  if (FilePath == NULL) {\r
+    return EFI_INVALID_PARAMETER;\r
+  }\r
+\r
+  //\r
+  // Look up the filesystem.\r
+  //\r
+  Status = gBS->LocateDevicePath (\r
+                  &gEfiSimpleFileSystemProtocolGuid,\r
+                  FilePath,\r
+                  &FileSystemHandle\r
+                  );\r
+  if (EFI_ERROR (Status)) {\r
+    return Status;\r
+  }\r
+  Status = gBS->OpenProtocol (\r
+                  FileSystemHandle,\r
+                  &gEfiSimpleFileSystemProtocolGuid,\r
+                  (VOID **)&FileSystem,\r
+                  gImageHandle,\r
+                  NULL,\r
+                  EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
+                  );\r
+  if (EFI_ERROR (Status)) {\r
+    return Status;\r
+  }\r
+\r
+  //\r
+  // Open the root directory of the filesystem. After this operation succeeds,\r
+  // we have to release LastFile on error.\r
+  //\r
+  Status = FileSystem->OpenVolume (FileSystem, &LastFile);\r
+  if (EFI_ERROR (Status)) {\r
+    return Status;\r
+  }\r
+\r
+  //\r
+  // Traverse the device path nodes relative to the filesystem.\r
+  //\r
+  while (!IsDevicePathEnd (*FilePath)) {\r
+    if (DevicePathType (*FilePath) != MEDIA_DEVICE_PATH ||\r
+        DevicePathSubType (*FilePath) != MEDIA_FILEPATH_DP) {\r
+      Status = EFI_INVALID_PARAMETER;\r
+      goto CloseLastFile;\r
+    }\r
+    FilePathNode = (FILEPATH_DEVICE_PATH *)*FilePath;\r
+\r
+    //\r
+    // FilePathNode->PathName may be unaligned, and the UEFI specification\r
+    // requires pointers that are passed to protocol member functions to be\r
+    // aligned. Create an aligned copy of the pathname if necessary.\r
+    //\r
+    if ((UINTN)FilePathNode->PathName % sizeof *FilePathNode->PathName == 0) {\r
+      AlignedPathName = NULL;\r
+      PathName = FilePathNode->PathName;\r
+    } else {\r
+      AlignedPathName = AllocateCopyPool (\r
+                          (DevicePathNodeLength (FilePathNode) -\r
+                           SIZE_OF_FILEPATH_DEVICE_PATH),\r
+                          FilePathNode->PathName\r
+                          );\r
+      if (AlignedPathName == NULL) {\r
+        Status = EFI_OUT_OF_RESOURCES;\r
+        goto CloseLastFile;\r
+      }\r
+      PathName = AlignedPathName;\r
+    }\r
+\r
+    //\r
+    // Open the next pathname fragment with EFI_FILE_MODE_CREATE masked out and\r
+    // with Attributes set to 0.\r
+    //\r
+    Status = LastFile->Open (\r
+                         LastFile,\r
+                         &NextFile,\r
+                         PathName,\r
+                         OpenMode & ~(UINT64)EFI_FILE_MODE_CREATE,\r
+                         0\r
+                         );\r
+\r
+    //\r
+    // Retry with EFI_FILE_MODE_CREATE and the original Attributes if the first\r
+    // attempt failed, and the caller specified EFI_FILE_MODE_CREATE.\r
+    //\r
+    if (EFI_ERROR (Status) && (OpenMode & EFI_FILE_MODE_CREATE) != 0) {\r
+      Status = LastFile->Open (\r
+                           LastFile,\r
+                           &NextFile,\r
+                           PathName,\r
+                           OpenMode,\r
+                           Attributes\r
+                           );\r
+    }\r
+\r
+    //\r
+    // Release any AlignedPathName on both error and success paths; PathName is\r
+    // no longer needed.\r
+    //\r
+    if (AlignedPathName != NULL) {\r
+      FreePool (AlignedPathName);\r
+    }\r
+    if (EFI_ERROR (Status)) {\r
+      goto CloseLastFile;\r
+    }\r
+\r
+    //\r
+    // Advance to the next device path node.\r
+    //\r
+    LastFile->Close (LastFile);\r
+    LastFile = NextFile;\r
+    *FilePath = NextDevicePathNode (FilePathNode);\r
+  }\r
+\r
+  *File = LastFile;\r
+  return EFI_SUCCESS;\r
+\r
+CloseLastFile:\r
+  LastFile->Close (LastFile);\r
+\r
+  //\r
+  // We are on the error path; we must have set an error Status for returning\r
+  // to the caller.\r
+  //\r
+  ASSERT (EFI_ERROR (Status));\r
+  return Status;\r
+}\r
index f69f0a43b576ee1a9f56b3d4b940d45c392d73e4..a6c739ef3d6dea37504e3013c1d8418a183bca20 100644 (file)
@@ -68,6 +68,7 @@
   gEfiSimpleTextOutProtocolGuid                   ## SOMETIMES_CONSUMES\r
   gEfiGraphicsOutputProtocolGuid                  ## SOMETIMES_CONSUMES\r
   gEfiHiiFontProtocolGuid                         ## SOMETIMES_CONSUMES\r
+  gEfiSimpleFileSystemProtocolGuid                ## SOMETIMES_CONSUMES\r
   gEfiUgaDrawProtocolGuid | gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport                 ## SOMETIMES_CONSUMES # Consumes if gEfiGraphicsOutputProtocolGuid uninstalled\r
   gEfiComponentNameProtocolGuid  | NOT gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable   ## SOMETIMES_PRODUCES # User chooses to produce it\r
   gEfiComponentName2ProtocolGuid | NOT gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable  ## SOMETIMES_PRODUCES # User chooses to produce it\r