public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Rebecca Cran" <rebecca@bsdio.com>
To: mikuback@linux.microsoft.com, devel@edk2.groups.io
Cc: Liming Gao <gaoliming@byosoft.com.cn>,
	Bob Feng <bob.c.feng@intel.com>,
	Yuwei Chen <yuwei.chen@intel.com>
Subject: Re: [edk2-devel] [PATCH v1 1/1] BaseTools/GenFds: Resolve absolute workspace INF paths
Date: Tue, 27 Feb 2024 08:32:11 -0700	[thread overview]
Message-ID: <90cb7891-bb5f-49f9-9341-f55c1ca6f40d@bsdio.com> (raw)
In-Reply-To: <20240221042254.2599-1-mikuback@linux.microsoft.com>

Reviewed-by: Rebecca Cran <rebecca@bsdio.com>

On 2/20/2024 9:22 PM, mikuback@linux.microsoft.com wrote:
> From: Michael Kubacki <michael.kubacki@microsoft.com>
>
> Currently, if an INF path is an absolute path on Linux (begins with
> "/"), the "/" character will be removed. If the path is an absolute
> system path, this creates an invalid path.
>
> An example of when this may be an issue is in external dependencies
> where an INF is within the external dependency, the `set_build_var`
> flag is set, and DSC files refer to files by its build variable
> (e.g. `$(SHARED_BINARIES)/Module.inf`). INFs in a binary distribution
> like this example may contain a [Binaries] section and refer to
> different section files that can be used by a platform to compose an
> FFS file. For example, the PE32 (.efi) and DEPEX (.depex) files.
>
> In this case, `$(SHARED_BINARIES)` will be an absolute path to the
> ext dep directory and `FfsInfStatement.__InfParse__` will remove the
> leading "/" character so the path is invalid.
>
> This change first checks if the absolute path will resolve into the
> current workspace. If it does (as will happen in the shared crypto
> ext dep example above), it modifies the path to be relative to the
> workspace so later logic dependent on relative paths can operate on
> it. If the absolute path is not within the current workspace, it
> follows previous behavior for backward compatibility to that
> scenario.
>
> Cc: Rebecca Cran <rebecca@bsdio.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Bob Feng <bob.c.feng@intel.com>
> Cc: Yuwei Chen <yuwei.chen@intel.com>
> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
> ---
>   BaseTools/Source/Python/GenFds/FfsInfStatement.py | 8 +++++++-
>   1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/BaseTools/Source/Python/GenFds/FfsInfStatement.py b/BaseTools/Source/Python/GenFds/FfsInfStatement.py
> index 568efb6d7685..6550d939d49c 100644
> --- a/BaseTools/Source/Python/GenFds/FfsInfStatement.py
> +++ b/BaseTools/Source/Python/GenFds/FfsInfStatement.py
> @@ -19,6 +19,7 @@ from .GenFdsGlobalVariable import GenFdsGlobalVariable
>   from .Ffs import SectionSuffix,FdfFvFileTypeToFileType
>   import subprocess
>   import sys
> +from pathlib import Path
>   from . import Section
>   from . import RuleSimpleFile
>   from . import RuleComplexFile
> @@ -156,7 +157,12 @@ class FfsInfStatement(FfsInfStatementClassObject):
>           if len(self.InfFileName) > 1 and self.InfFileName[0] == '\\' and self.InfFileName[1] == '\\':
>               pass
>           elif self.InfFileName[0] == '\\' or self.InfFileName[0] == '/' :
> -            self.InfFileName = self.InfFileName[1:]
> +            ws_path = Path(GenFdsGlobalVariable.WorkSpaceDir)
> +            inf_path = Path(self.InfFileName)
> +            if ws_path in inf_path.parents:
> +                self.InfFileName = str(inf_path.relative_to(ws_path))
> +            else:
> +                self.InfFileName = self.InfFileName[1:]
>   
>           if self.InfFileName.find('$') == -1:
>               InfPath = NormPath(self.InfFileName)




-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#116049): https://edk2.groups.io/g/devel/message/116049
Mute This Topic: https://groups.io/mt/104482915/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



      reply	other threads:[~2024-02-27 15:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-21  4:22 [edk2-devel] [PATCH v1 1/1] BaseTools/GenFds: Resolve absolute workspace INF paths Michael Kubacki
2024-02-27 15:32 ` Rebecca Cran [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=90cb7891-bb5f-49f9-9341-f55c1ca6f40d@bsdio.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox