2010-09-14 07:18:09 +02:00
|
|
|
/** @file
|
|
|
|
Main file for NULL named library for level 1 shell command functions.
|
|
|
|
|
2015-02-04 23:25:01 +01:00
|
|
|
(C) Copyright 2013 Hewlett-Packard Development Company, L.P.<BR>
|
2018-06-27 15:13:38 +02:00
|
|
|
Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:07:06 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-09-14 07:18:09 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "UefiShellLevel1CommandsLib.h"
|
|
|
|
|
|
|
|
STATIC CONST CHAR16 mFileName[] = L"ShellCommands";
|
ShellPkg: stop using EFI_HANDLE in place of EFI_HII_HANDLE
The UefiShell*CommandsLib instances have constructor functions that do
something like:
gHiiHandle = HiiAddPackages (...);
...
ShellCommandRegisterCommandName (..., gHiiHandle, ...);
and destructor functions that implement the following pattern:
HiiRemovePackages (gHiiHandle);
The -- semantic, not functional -- problem is that "gHiiHandle" is
declared with type EFI_HANDLE, and not EFI_HII_HANDLE, in all of these
library instances, even though HiiAddPackages() correctly returns
EFI_HII_HANDLE, and HiiRemovePackages() takes EFI_HII_HANDLE.
Once we fix the type of "gHiiHandle", it causes sort of a butterfly
effect, because it is passed around widely. Track down and update all of
those locations.
The DynamicCommand lib instances use a similar pattern, so they are
affected too.
NOTE: in practice, this patch is a no-op, as both EFI_HII_HANDLE and
EFI_HANDLE are typedefs to (VOID*). However, we shouldn't use EFI_HANDLE
where semantically EFI_HII_HANDLE is passed around.
Cc: Jaben Carsey <jaben.carsey@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Zhichao Gao <zhichao.gao@intel.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
2019-09-06 23:15:42 +02:00
|
|
|
EFI_HII_HANDLE gShellLevel1HiiHandle = NULL;
|
2010-09-14 07:18:09 +02:00
|
|
|
|
2011-03-25 21:43:03 +01:00
|
|
|
/**
|
|
|
|
Return the help text filename. Only used if no HII information found.
|
|
|
|
|
|
|
|
@retval the filename.
|
|
|
|
**/
|
2010-09-14 07:18:09 +02:00
|
|
|
CONST CHAR16*
|
|
|
|
EFIAPI
|
|
|
|
ShellCommandGetManFileNameLevel1 (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return (mFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Constructor for the Shell Level 1 Commands library.
|
|
|
|
|
|
|
|
Install the handlers for level 1 UEFI Shell 2.0 commands.
|
|
|
|
|
|
|
|
@param ImageHandle the image handle of the process
|
|
|
|
@param SystemTable the EFI System Table pointer
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS the shell command handlers were installed sucessfully
|
|
|
|
@retval EFI_UNSUPPORTED the shell level required was not found.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
ShellLevel1CommandsLibConstructor (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// if shell level is less than 2 do nothing
|
|
|
|
//
|
|
|
|
if (PcdGet8(PcdShellSupportLevel) < 1) {
|
2011-05-17 00:12:20 +02:00
|
|
|
return (EFI_SUCCESS);
|
2010-09-14 07:18:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gShellLevel1HiiHandle = HiiAddPackages (&gShellLevel1HiiGuid, gImageHandle, UefiShellLevel1CommandsLibStrings, NULL);
|
|
|
|
if (gShellLevel1HiiHandle == NULL) {
|
|
|
|
return (EFI_DEVICE_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// install our shell command handlers that are always installed
|
|
|
|
//
|
2011-03-25 21:43:03 +01:00
|
|
|
ShellCommandRegisterCommandName(L"stall", ShellCommandRunStall , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_STALL) ));
|
2010-09-14 07:18:09 +02:00
|
|
|
ShellCommandRegisterCommandName(L"for", ShellCommandRunFor , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_FOR) ));
|
|
|
|
ShellCommandRegisterCommandName(L"goto", ShellCommandRunGoto , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_GOTO) ));
|
|
|
|
ShellCommandRegisterCommandName(L"if", ShellCommandRunIf , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_IF) ));
|
|
|
|
ShellCommandRegisterCommandName(L"shift", ShellCommandRunShift , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_SHIFT) ));
|
|
|
|
ShellCommandRegisterCommandName(L"exit", ShellCommandRunExit , ShellCommandGetManFileNameLevel1, 1, L"", TRUE , gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_EXIT) ));
|
|
|
|
ShellCommandRegisterCommandName(L"else", ShellCommandRunElse , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_ELSE) ));
|
|
|
|
ShellCommandRegisterCommandName(L"endif", ShellCommandRunEndIf , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_ENDIF) ));
|
|
|
|
ShellCommandRegisterCommandName(L"endfor", ShellCommandRunEndFor , ShellCommandGetManFileNameLevel1, 1, L"", FALSE, gShellLevel1HiiHandle, (EFI_STRING_ID)(PcdGet8(PcdShellSupportLevel) < 3 ? 0 : STRING_TOKEN(STR_GET_HELP_ENDFOR)));
|
|
|
|
|
|
|
|
return (EFI_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor for the library. free any resources.
|
2011-03-25 21:43:03 +01:00
|
|
|
|
|
|
|
@param ImageHandle The image handle of the process.
|
|
|
|
@param SystemTable The EFI System Table pointer.
|
2010-09-14 07:18:09 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
ShellLevel1CommandsLibDestructor (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (gShellLevel1HiiHandle != NULL) {
|
|
|
|
HiiRemovePackages(gShellLevel1HiiHandle);
|
|
|
|
}
|
|
|
|
return (EFI_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2011-03-25 21:43:03 +01:00
|
|
|
/**
|
|
|
|
Test a node to see if meets the criterion.
|
|
|
|
|
|
|
|
It functions so that count starts at 1 and it increases or decreases when it
|
|
|
|
hits the specified tags. when it hits zero the location has been found.
|
|
|
|
|
2018-06-27 15:13:38 +02:00
|
|
|
DecrementerTag and IncrementerTag are used to get around for/endfor and
|
2011-03-25 21:43:03 +01:00
|
|
|
similar paired types where the entire middle should be ignored.
|
|
|
|
|
|
|
|
If label is used it will be used instead of the count.
|
|
|
|
|
2018-06-27 15:13:38 +02:00
|
|
|
@param[in] Function The function to use to enumerate through the
|
2011-09-02 10:05:34 +02:00
|
|
|
list. Normally GetNextNode or GetPreviousNode.
|
|
|
|
@param[in] DecrementerTag The tag to decrement the count at.
|
|
|
|
@param[in] IncrementerTag The tag to increment the count at.
|
|
|
|
@param[in] Label A label to look for.
|
|
|
|
@param[in, out] ScriptFile The pointer to the current script file structure.
|
2018-06-27 15:13:38 +02:00
|
|
|
@param[in] MovePast TRUE makes function return 1 past the found
|
2011-09-02 10:05:34 +02:00
|
|
|
location.
|
|
|
|
@param[in] FindOnly TRUE to not change the ScriptFile.
|
|
|
|
@param[in] CommandNode The pointer to the Node to test.
|
|
|
|
@param[in, out] TargetCount The pointer to the current count.
|
2011-03-25 21:43:03 +01:00
|
|
|
**/
|
2010-09-14 07:18:09 +02:00
|
|
|
BOOLEAN
|
|
|
|
TestNodeForMove (
|
|
|
|
IN CONST LIST_MANIP_FUNC Function,
|
|
|
|
IN CONST CHAR16 *DecrementerTag,
|
|
|
|
IN CONST CHAR16 *IncrementerTag,
|
|
|
|
IN CONST CHAR16 *Label OPTIONAL,
|
2011-03-25 21:43:03 +01:00
|
|
|
IN OUT SCRIPT_FILE *ScriptFile,
|
2010-09-14 07:18:09 +02:00
|
|
|
IN CONST BOOLEAN MovePast,
|
|
|
|
IN CONST BOOLEAN FindOnly,
|
|
|
|
IN CONST SCRIPT_COMMAND_LIST *CommandNode,
|
2011-03-25 21:43:03 +01:00
|
|
|
IN OUT UINTN *TargetCount
|
2010-09-14 07:18:09 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
BOOLEAN Found;
|
|
|
|
CHAR16 *CommandName;
|
|
|
|
CHAR16 *CommandNameWalker;
|
|
|
|
CHAR16 *TempLocation;
|
|
|
|
|
|
|
|
Found = FALSE;
|
|
|
|
|
|
|
|
//
|
|
|
|
// get just the first part of the command line...
|
|
|
|
//
|
|
|
|
CommandName = NULL;
|
|
|
|
CommandName = StrnCatGrow(&CommandName, NULL, CommandNode->Cl, 0);
|
2011-10-14 21:21:13 +02:00
|
|
|
if (CommandName == NULL) {
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
2010-09-14 07:18:09 +02:00
|
|
|
CommandNameWalker = CommandName;
|
2013-11-15 19:41:50 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Skip leading spaces and tabs.
|
|
|
|
//
|
|
|
|
while ((CommandNameWalker[0] == L' ') || (CommandNameWalker[0] == L'\t')) {
|
2010-09-14 07:18:09 +02:00
|
|
|
CommandNameWalker++;
|
|
|
|
}
|
|
|
|
TempLocation = StrStr(CommandNameWalker, L" ");
|
|
|
|
|
|
|
|
if (TempLocation != NULL) {
|
|
|
|
*TempLocation = CHAR_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// did we find a nested item ?
|
|
|
|
//
|
|
|
|
if (gUnicodeCollation->StriColl(
|
|
|
|
gUnicodeCollation,
|
|
|
|
(CHAR16*)CommandNameWalker,
|
|
|
|
(CHAR16*)IncrementerTag) == 0) {
|
|
|
|
(*TargetCount)++;
|
|
|
|
} else if (gUnicodeCollation->StriColl(
|
|
|
|
gUnicodeCollation,
|
|
|
|
(CHAR16*)CommandNameWalker,
|
|
|
|
(CHAR16*)DecrementerTag) == 0) {
|
|
|
|
if (*TargetCount > 0) {
|
|
|
|
(*TargetCount)--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// did we find the matching one...
|
|
|
|
//
|
|
|
|
if (Label == NULL) {
|
|
|
|
if (*TargetCount == 0) {
|
|
|
|
Found = TRUE;
|
|
|
|
if (!FindOnly) {
|
|
|
|
if (MovePast) {
|
|
|
|
ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link);
|
|
|
|
} else {
|
|
|
|
ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)CommandNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (gUnicodeCollation->StriColl(
|
|
|
|
gUnicodeCollation,
|
|
|
|
(CHAR16*)CommandNameWalker,
|
|
|
|
(CHAR16*)Label) == 0
|
|
|
|
&& (*TargetCount) == 0) {
|
|
|
|
Found = TRUE;
|
|
|
|
if (!FindOnly) {
|
|
|
|
//
|
|
|
|
// we found the target label without loops
|
|
|
|
//
|
|
|
|
if (MovePast) {
|
|
|
|
ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link);
|
|
|
|
} else {
|
|
|
|
ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)CommandNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Free the memory for this loop...
|
|
|
|
//
|
|
|
|
FreePool(CommandName);
|
|
|
|
return (Found);
|
|
|
|
}
|
|
|
|
|
2011-03-25 21:43:03 +01:00
|
|
|
/**
|
|
|
|
Move the script pointer from 1 tag (line) to another.
|
|
|
|
|
|
|
|
It functions so that count starts at 1 and it increases or decreases when it
|
|
|
|
hits the specified tags. when it hits zero the location has been found.
|
|
|
|
|
2018-06-27 15:13:38 +02:00
|
|
|
DecrementerTag and IncrementerTag are used to get around for/endfor and
|
2011-03-25 21:43:03 +01:00
|
|
|
similar paired types where the entire middle should be ignored.
|
|
|
|
|
|
|
|
If label is used it will be used instead of the count.
|
|
|
|
|
2018-06-27 15:13:38 +02:00
|
|
|
@param[in] Function The function to use to enumerate through the
|
2011-09-02 10:05:34 +02:00
|
|
|
list. Normally GetNextNode or GetPreviousNode.
|
|
|
|
@param[in] DecrementerTag The tag to decrement the count at.
|
|
|
|
@param[in] IncrementerTag The tag to increment the count at.
|
|
|
|
@param[in] Label A label to look for.
|
|
|
|
@param[in, out] ScriptFile The pointer to the current script file structure.
|
2018-06-27 15:13:38 +02:00
|
|
|
@param[in] MovePast TRUE makes function return 1 past the found
|
2011-09-02 10:05:34 +02:00
|
|
|
location.
|
|
|
|
@param[in] FindOnly TRUE to not change the ScriptFile.
|
2018-06-27 15:13:38 +02:00
|
|
|
@param[in] WrapAroundScript TRUE to wrap end-to-begining or vise versa in
|
2011-09-02 10:05:34 +02:00
|
|
|
searching.
|
2011-03-25 21:43:03 +01:00
|
|
|
**/
|
2010-09-14 07:18:09 +02:00
|
|
|
BOOLEAN
|
|
|
|
MoveToTag (
|
|
|
|
IN CONST LIST_MANIP_FUNC Function,
|
|
|
|
IN CONST CHAR16 *DecrementerTag,
|
|
|
|
IN CONST CHAR16 *IncrementerTag,
|
|
|
|
IN CONST CHAR16 *Label OPTIONAL,
|
2011-03-25 21:43:03 +01:00
|
|
|
IN OUT SCRIPT_FILE *ScriptFile,
|
2010-09-14 07:18:09 +02:00
|
|
|
IN CONST BOOLEAN MovePast,
|
|
|
|
IN CONST BOOLEAN FindOnly,
|
|
|
|
IN CONST BOOLEAN WrapAroundScript
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SCRIPT_COMMAND_LIST *CommandNode;
|
|
|
|
BOOLEAN Found;
|
|
|
|
UINTN TargetCount;
|
|
|
|
|
|
|
|
if (Label == NULL) {
|
|
|
|
TargetCount = 1;
|
|
|
|
} else {
|
|
|
|
TargetCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ScriptFile == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (CommandNode = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &ScriptFile->CurrentCommand->Link), Found = FALSE
|
|
|
|
; !IsNull(&ScriptFile->CommandList, &CommandNode->Link)&& !Found
|
|
|
|
; CommandNode = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link)
|
|
|
|
){
|
|
|
|
Found = TestNodeForMove(
|
|
|
|
Function,
|
|
|
|
DecrementerTag,
|
|
|
|
IncrementerTag,
|
|
|
|
Label,
|
|
|
|
ScriptFile,
|
|
|
|
MovePast,
|
|
|
|
FindOnly,
|
|
|
|
CommandNode,
|
|
|
|
&TargetCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WrapAroundScript && !Found) {
|
|
|
|
for (CommandNode = (SCRIPT_COMMAND_LIST *)GetFirstNode(&ScriptFile->CommandList), Found = FALSE
|
|
|
|
; CommandNode != ScriptFile->CurrentCommand && !Found
|
|
|
|
; CommandNode = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link)
|
|
|
|
){
|
|
|
|
Found = TestNodeForMove(
|
|
|
|
Function,
|
|
|
|
DecrementerTag,
|
|
|
|
IncrementerTag,
|
|
|
|
Label,
|
|
|
|
ScriptFile,
|
|
|
|
MovePast,
|
|
|
|
FindOnly,
|
|
|
|
CommandNode,
|
|
|
|
&TargetCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (Found);
|
|
|
|
}
|
|
|
|
|