VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.h@ 80721

Last change on this file since 80721 was 80721, checked in by vboxsync, 5 years ago

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • Property svn:eol-style set to native
File size: 9.6 KB
Line 
1/** @file
2 Main file for NULL named library for Profile1 shell command functions.
3
4 Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9#ifndef _UEFI_SHELL_DEBUG1_COMMANDS_LIB_H_
10#define _UEFI_SHELL_DEBUG1_COMMANDS_LIB_H_
11
12#include <Uefi.h>
13
14#include <Guid/GlobalVariable.h>
15#include <Guid/ConsoleInDevice.h>
16#include <Guid/ConsoleOutDevice.h>
17#include <Guid/FileSystemInfo.h>
18#include <Guid/ShellLibHiiGuid.h>
19
20#include <Protocol/Shell.h>
21#include <Protocol/ShellParameters.h>
22#include <Protocol/DevicePath.h>
23#include <Protocol/LoadedImage.h>
24#include <Protocol/UnicodeCollation.h>
25#include <Protocol/DriverDiagnostics2.h>
26#include <Protocol/DriverDiagnostics.h>
27#include <Protocol/PlatformDriverOverride.h>
28#include <Protocol/BusSpecificDriverOverride.h>
29#include <Protocol/PlatformToDriverConfiguration.h>
30#include <Protocol/DriverSupportedEfiVersion.h>
31#include <Protocol/DriverFamilyOverride.h>
32#include <Protocol/DriverHealth.h>
33#include <Protocol/SimplePointer.h>
34#include <Protocol/CpuIo2.h>
35#include <Protocol/PciRootBridgeIo.h>
36
37#include <Library/BaseLib.h>
38#include <Library/BaseMemoryLib.h>
39#include <Library/DebugLib.h>
40#include <Library/MemoryAllocationLib.h>
41#include <Library/PcdLib.h>
42#include <Library/ShellCommandLib.h>
43#include <Library/ShellLib.h>
44#include <Library/SortLib.h>
45#include <Library/UefiLib.h>
46#include <Library/UefiRuntimeServicesTableLib.h>
47#include <Library/UefiBootServicesTableLib.h>
48#include <Library/HiiLib.h>
49#include <Library/FileHandleLib.h>
50#include <Library/DevicePathLib.h>
51#include <Library/PrintLib.h>
52#include <Library/HandleParsingLib.h>
53
54
55extern EFI_HANDLE gShellDebug1HiiHandle;
56
57/**
58 Function returns a system configuration table that is stored in the
59 EFI System Table based on the provided GUID.
60
61 @param[in] TableGuid A pointer to the table's GUID type.
62 @param[in, out] Table On exit, a pointer to a system configuration table.
63
64 @retval EFI_SUCCESS A configuration table matching TableGuid was found.
65 @retval EFI_NOT_FOUND A configuration table matching TableGuid was not found.
66**/
67EFI_STATUS
68GetSystemConfigurationTable (
69 IN EFI_GUID *TableGuid,
70 IN OUT VOID **Table
71 );
72
73/**
74 Function for 'setsize' command.
75
76 @param[in] ImageHandle Handle to the Image (NULL if Internal).
77 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
78**/
79SHELL_STATUS
80EFIAPI
81ShellCommandRunSetSize (
82 IN EFI_HANDLE ImageHandle,
83 IN EFI_SYSTEM_TABLE *SystemTable
84 );
85
86/**
87 Function for 'comp' command.
88
89 @param[in] ImageHandle Handle to the Image (NULL if Internal).
90 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
91**/
92SHELL_STATUS
93EFIAPI
94ShellCommandRunComp (
95 IN EFI_HANDLE ImageHandle,
96 IN EFI_SYSTEM_TABLE *SystemTable
97 );
98
99/**
100 Function for 'mode' command.
101
102 @param[in] ImageHandle Handle to the Image (NULL if Internal).
103 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
104**/
105SHELL_STATUS
106EFIAPI
107ShellCommandRunMode (
108 IN EFI_HANDLE ImageHandle,
109 IN EFI_SYSTEM_TABLE *SystemTable
110 );
111
112/**
113 Function for 'memmap' command.
114
115 @param[in] ImageHandle Handle to the Image (NULL if Internal).
116 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
117**/
118SHELL_STATUS
119EFIAPI
120ShellCommandRunMemMap (
121 IN EFI_HANDLE ImageHandle,
122 IN EFI_SYSTEM_TABLE *SystemTable
123 );
124
125/**
126 Function for 'compress' command.
127
128 @param[in] ImageHandle Handle to the Image (NULL if Internal).
129 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
130**/
131SHELL_STATUS
132EFIAPI
133ShellCommandRunEfiCompress (
134 IN EFI_HANDLE ImageHandle,
135 IN EFI_SYSTEM_TABLE *SystemTable
136 );
137
138/**
139 Function for 'decompress' command.
140
141 @param[in] ImageHandle Handle to the Image (NULL if Internal).
142 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
143**/
144SHELL_STATUS
145EFIAPI
146ShellCommandRunEfiDecompress (
147 IN EFI_HANDLE ImageHandle,
148 IN EFI_SYSTEM_TABLE *SystemTable
149 );
150
151/**
152 Function for 'dmem' command.
153
154 @param[in] ImageHandle Handle to the Image (NULL if Internal).
155 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
156**/
157SHELL_STATUS
158EFIAPI
159ShellCommandRunDmem (
160 IN EFI_HANDLE ImageHandle,
161 IN EFI_SYSTEM_TABLE *SystemTable
162 );
163
164/**
165 Function for 'loadpcirom' command.
166
167 @param[in] ImageHandle Handle to the Image (NULL if Internal).
168 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
169**/
170SHELL_STATUS
171EFIAPI
172ShellCommandRunLoadPciRom (
173 IN EFI_HANDLE ImageHandle,
174 IN EFI_SYSTEM_TABLE *SystemTable
175 );
176
177/**
178 Function for 'mm' command.
179
180 @param[in] ImageHandle Handle to the Image (NULL if Internal).
181 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
182**/
183SHELL_STATUS
184EFIAPI
185ShellCommandRunMm (
186 IN EFI_HANDLE ImageHandle,
187 IN EFI_SYSTEM_TABLE *SystemTable
188 );
189
190/**
191 Function for 'setvar' command.
192
193 @param[in] ImageHandle Handle to the Image (NULL if Internal).
194 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
195**/
196SHELL_STATUS
197EFIAPI
198ShellCommandRunSetVar (
199 IN EFI_HANDLE ImageHandle,
200 IN EFI_SYSTEM_TABLE *SystemTable
201 );
202
203/**
204 Function for 'sermode' command.
205
206 @param[in] ImageHandle Handle to the Image (NULL if Internal).
207 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
208**/
209SHELL_STATUS
210EFIAPI
211ShellCommandRunSerMode (
212 IN EFI_HANDLE ImageHandle,
213 IN EFI_SYSTEM_TABLE *SystemTable
214 );
215
216/**
217 Function for 'bcfg' command.
218
219 @param[in] ImageHandle Handle to the Image (NULL if Internal).
220 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
221**/
222SHELL_STATUS
223EFIAPI
224ShellCommandRunBcfg (
225 IN EFI_HANDLE ImageHandle,
226 IN EFI_SYSTEM_TABLE *SystemTable
227 );
228
229/**
230 Function for 'pci' command.
231
232 @param[in] ImageHandle Handle to the Image (NULL if Internal).
233 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
234**/
235SHELL_STATUS
236EFIAPI
237ShellCommandRunPci (
238 IN EFI_HANDLE ImageHandle,
239 IN EFI_SYSTEM_TABLE *SystemTable
240 );
241
242/**
243 Function for 'smbiosview' command.
244
245 @param[in] ImageHandle Handle to the Image (NULL if Internal).
246 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
247**/
248SHELL_STATUS
249EFIAPI
250ShellCommandRunSmbiosView (
251 IN EFI_HANDLE ImageHandle,
252 IN EFI_SYSTEM_TABLE *SystemTable
253 );
254
255/**
256 Function for 'dmpstore' command.
257
258 @param[in] ImageHandle Handle to the Image (NULL if Internal).
259 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
260**/
261SHELL_STATUS
262EFIAPI
263ShellCommandRunDmpStore (
264 IN EFI_HANDLE ImageHandle,
265 IN EFI_SYSTEM_TABLE *SystemTable
266 );
267
268/**
269 Function for 'dblk' command.
270
271 @param[in] ImageHandle Handle to the Image (NULL if Internal).
272 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
273**/
274SHELL_STATUS
275EFIAPI
276ShellCommandRunDblk (
277 IN EFI_HANDLE ImageHandle,
278 IN EFI_SYSTEM_TABLE *SystemTable
279 );
280
281/**
282 Function for 'edit' command.
283
284 @param[in] ImageHandle Handle to the Image (NULL if Internal).
285 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
286**/
287SHELL_STATUS
288EFIAPI
289ShellCommandRunEdit (
290 IN EFI_HANDLE ImageHandle,
291 IN EFI_SYSTEM_TABLE *SystemTable
292 );
293
294/**
295 Function for 'hexedit' command.
296
297 @param[in] ImageHandle Handle to the Image (NULL if Internal).
298 @param[in] SystemTable Pointer to the System Table (NULL if Internal).
299**/
300SHELL_STATUS
301EFIAPI
302ShellCommandRunHexEdit (
303 IN EFI_HANDLE ImageHandle,
304 IN EFI_SYSTEM_TABLE *SystemTable
305 );
306
307/**
308 Clear the line at the specified Row.
309
310 @param[in] Row The row number to be cleared ( start from 1 )
311 @param[in] LastCol The last printable column.
312 @param[in] LastRow The last printable row.
313**/
314VOID
315EditorClearLine (
316 IN UINTN Row,
317 IN UINTN LastCol,
318 IN UINTN LastRow
319 );
320
321/**
322 Check if file name has illegal characters.
323
324 @param Name The filename to check.
325
326 @retval TRUE The filename is ok.
327 @retval FALSE The filename is not ok.
328**/
329BOOLEAN
330IsValidFileName (
331 IN CONST CHAR16 *Name
332 );
333
334/**
335 Find a filename that is valid (not taken) with the given extension.
336
337 @param[in] Extension The file extension.
338
339 @retval NULL Something went wrong.
340 @return the valid filename.
341**/
342CHAR16 *
343EditGetDefaultFileName (
344 IN CONST CHAR16 *Extension
345 );
346
347/**
348 Read a file into an allocated buffer. The buffer is the responsibility
349 of the caller to free.
350
351 @param[in] FileName The filename of the file to open.
352 @param[out] Buffer Upon successful return, the pointer to the
353 address of the allocated buffer.
354 @param[out] BufferSize If not NULL, then the pointer to the size
355 of the allocated buffer.
356 @param[out] ReadOnly Upon successful return TRUE if the file is
357 read only. FALSE otherwise.
358
359 @retval EFI_NOT_FOUND The filename did not represent a file in the
360 file system. Directories cannot be read with
361 this method.
362 @retval EFI_SUCCESS The file was read into the buffer.
363 @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
364 @retval EFI_LOAD_ERROR The file read operation failed.
365 @retval EFI_INVALID_PARAMETER A parameter was invalid.
366 @retval EFI_INVALID_PARAMETER FileName was NULL.
367 @retval EFI_INVALID_PARAMETER FileName was a directory.
368**/
369EFI_STATUS
370ReadFileIntoBuffer (
371 IN CONST CHAR16 *FileName,
372 OUT VOID **Buffer,
373 OUT UINTN *BufferSize OPTIONAL,
374 OUT BOOLEAN *ReadOnly
375 );
376
377#endif
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette