2011-03-25 20:43:03 +00:00
|
|
|
/** @file
|
|
|
|
|
Main file for stall shell level 1 function.
|
|
|
|
|
|
2015-02-04 22:25:01 +00:00
|
|
|
(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
|
2018-06-27 21:13:38 +08:00
|
|
|
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-03 16:07:06 -07:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-03-25 20:43:03 +00:00
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
#include "UefiShellLevel1CommandsLib.h"
|
|
|
|
|
|
2026-04-07 18:23:46 +02:00
|
|
|
/** Main function of the 'Stall' command.
|
|
|
|
|
|
|
|
|
|
@param[in] Package List of input parameter for the command.
|
|
|
|
|
**/
|
|
|
|
|
STATIC
|
|
|
|
|
SHELL_STATUS
|
|
|
|
|
MainCmdStall (
|
|
|
|
|
LIST_ENTRY *Package
|
|
|
|
|
)
|
|
|
|
|
{
|
2026-04-07 18:29:19 +02:00
|
|
|
EFI_STATUS Status;
|
|
|
|
|
UINT64 Intermediate;
|
2026-04-07 18:23:46 +02:00
|
|
|
|
|
|
|
|
if (ShellCommandLineGetRawValue (Package, 2) != NULL) {
|
|
|
|
|
ShellPrintHiiDefaultEx (STRING_TOKEN (STR_GEN_TOO_MANY), gShellLevel1HiiHandle, L"stall");
|
2026-04-07 18:29:19 +02:00
|
|
|
return SHELL_INVALID_PARAMETER;
|
2026-04-07 18:23:46 +02:00
|
|
|
} else if (ShellCommandLineGetRawValue (Package, 1) == NULL) {
|
|
|
|
|
ShellPrintHiiDefaultEx (STRING_TOKEN (STR_GEN_TOO_FEW), gShellLevel1HiiHandle, L"stall");
|
2026-04-07 18:29:19 +02:00
|
|
|
return SHELL_INVALID_PARAMETER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Status = ShellConvertStringToUint64 (ShellCommandLineGetRawValue (Package, 1), &Intermediate, FALSE, FALSE);
|
|
|
|
|
if (EFI_ERROR (Status) || (((UINT64)(UINTN)(Intermediate)) != Intermediate)) {
|
|
|
|
|
ShellPrintHiiDefaultEx (STRING_TOKEN (STR_GEN_PARAM_INV), gShellLevel1HiiHandle, L"stall", ShellCommandLineGetRawValue (Package, 1));
|
|
|
|
|
return SHELL_INVALID_PARAMETER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Status = gBS->Stall ((UINTN)Intermediate);
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
ShellPrintHiiDefaultEx (STRING_TOKEN (STR_STALL_FAILED), gShellLevel1HiiHandle, L"stall");
|
|
|
|
|
return SHELL_DEVICE_ERROR;
|
2026-04-07 18:23:46 +02:00
|
|
|
}
|
|
|
|
|
|
2026-04-07 18:29:19 +02:00
|
|
|
return SHELL_SUCCESS;
|
2026-04-07 18:23:46 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-25 20:43:03 +00:00
|
|
|
/**
|
|
|
|
|
Function for 'stall' command.
|
|
|
|
|
|
|
|
|
|
@param[in] ImageHandle Handle to the Image (NULL if Internal).
|
|
|
|
|
@param[in] SystemTable Pointer to the System Table (NULL if Internal).
|
|
|
|
|
**/
|
|
|
|
|
SHELL_STATUS
|
|
|
|
|
EFIAPI
|
|
|
|
|
ShellCommandRunStall (
|
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
LIST_ENTRY *Package;
|
|
|
|
|
CHAR16 *ProblemParam;
|
|
|
|
|
SHELL_STATUS ShellStatus;
|
|
|
|
|
|
|
|
|
|
ShellStatus = SHELL_SUCCESS;
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// initialize the shell lib (we must be in non-auto-init...)
|
|
|
|
|
//
|
|
|
|
|
Status = ShellInitialize ();
|
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
|
|
Status = CommandInit ();
|
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// parse the command line
|
|
|
|
|
//
|
|
|
|
|
Status = ShellCommandLineParse (EmptyParamList, &Package, &ProblemParam, TRUE);
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
if ((Status == EFI_VOLUME_CORRUPTED) && (ProblemParam != NULL)) {
|
2025-09-18 14:12:11 +02:00
|
|
|
ShellPrintHiiDefaultEx (STRING_TOKEN (STR_GEN_PROBLEM), gShellLevel1HiiHandle, L"stall", ProblemParam);
|
2011-03-25 20:43:03 +00:00
|
|
|
FreePool (ProblemParam);
|
|
|
|
|
ShellStatus = SHELL_INVALID_PARAMETER;
|
|
|
|
|
} else {
|
|
|
|
|
ASSERT (FALSE);
|
|
|
|
|
}
|
2026-04-07 18:16:56 +02:00
|
|
|
|
|
|
|
|
return ShellStatus;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-07 18:23:46 +02:00
|
|
|
ShellStatus = MainCmdStall (Package);
|
2021-12-05 14:54:13 -08:00
|
|
|
|
2026-04-07 18:16:56 +02:00
|
|
|
ShellCommandLineFreeVarList (Package);
|
|
|
|
|
|
2011-03-25 20:43:03 +00:00
|
|
|
return (ShellStatus);
|
|
|
|
|
}
|