blob: db46b80f9aa2868a5143509b548ea115b2e9e74e [file] [log] [blame]
jcarsey94b17fa2009-05-07 18:46:18 +00001/** @file
2 Provides interface to shell functionality for shell commands and applications.
3
jcarseyb3011f42010-01-11 21:49:04 +00004 Copyright (c) 2006 - 2010, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
jcarsey94b17fa2009-05-07 18:46:18 +00009
jcarseyb3011f42010-01-11 21:49:04 +000010 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
jcarsey94b17fa2009-05-07 18:46:18 +000012
13**/
14
jcarseyb1f95a02009-06-16 00:23:19 +000015#include "UefiShellLib.h"
jcarseyd2b45642009-05-11 18:02:16 +000016
jcarsey94b17fa2009-05-07 18:46:18 +000017#define MAX_FILE_NAME_LEN 522 // (20 * (6+5+2))+1) unicode characters from EFI FAT spec (doubled for bytes)
18#define FIND_XXXXX_FILE_BUFFER_SIZE (SIZE_OF_EFI_FILE_INFO + MAX_FILE_NAME_LEN)
19
jcarseyd2b45642009-05-11 18:02:16 +000020//
21// This is not static since it's extern in the .h file
22//
23SHELL_PARAM_ITEM EmptyParamList[] = {
24 {NULL, TypeMax}
25 };
26
27//
28// Static file globals for the shell library
29//
30STATIC EFI_SHELL_ENVIRONMENT2 *mEfiShellEnvironment2;
31STATIC EFI_SHELL_INTERFACE *mEfiShellInterface;
32STATIC EFI_SHELL_PROTOCOL *mEfiShellProtocol;
33STATIC EFI_SHELL_PARAMETERS_PROTOCOL *mEfiShellParametersProtocol;
34STATIC EFI_HANDLE mEfiShellEnvironment2Handle;
35STATIC FILE_HANDLE_FUNCTION_MAP FileFunctionMap;
jcarsey2247dde2009-11-09 18:08:58 +000036STATIC UINTN mTotalParameterCount;
jcarseyecd3d592009-12-07 18:05:00 +000037STATIC CHAR16 *mPostReplaceFormat;
38STATIC CHAR16 *mPostReplaceFormat2;
jcarseyb3011f42010-01-11 21:49:04 +000039
jcarsey2247dde2009-11-09 18:08:58 +000040/**
41 Check if a Unicode character is a hexadecimal character.
42
43 This internal function checks if a Unicode character is a
44 decimal character. The valid hexadecimal character is
45 L'0' to L'9', L'a' to L'f', or L'A' to L'F'.
46
47
48 @param Char The character to check against.
49
50 @retval TRUE If the Char is a hexadecmial character.
51 @retval FALSE If the Char is not a hexadecmial character.
52
53**/
54BOOLEAN
55EFIAPI
jcarsey969c7832010-01-13 16:46:33 +000056ShellIsHexaDecimalDigitCharacter (
jcarsey2247dde2009-11-09 18:08:58 +000057 IN CHAR16 Char
58 ) {
59 return (BOOLEAN) ((Char >= L'0' && Char <= L'9') || (Char >= L'A' && Char <= L'F') || (Char >= L'a' && Char <= L'f'));
60}
jcarsey94b17fa2009-05-07 18:46:18 +000061
62/**
63 helper function to find ShellEnvironment2 for constructor
64**/
65EFI_STATUS
66EFIAPI
67ShellFindSE2 (
68 IN EFI_HANDLE ImageHandle
jcarsey2247dde2009-11-09 18:08:58 +000069 ) {
jcarsey94b17fa2009-05-07 18:46:18 +000070 EFI_STATUS Status;
71 EFI_HANDLE *Buffer;
72 UINTN BufferSize;
73 UINTN HandleIndex;
74
75 BufferSize = 0;
76 Buffer = NULL;
77 Status = gBS->OpenProtocol(ImageHandle,
78 &gEfiShellEnvironment2Guid,
79 (VOID **)&mEfiShellEnvironment2,
80 ImageHandle,
81 NULL,
82 EFI_OPEN_PROTOCOL_GET_PROTOCOL
83 );
84 //
85 // look for the mEfiShellEnvironment2 protocol at a higher level
86 //
jcarsey9eb53ac2009-07-08 17:26:58 +000087 if (EFI_ERROR (Status) || !(CompareGuid (&mEfiShellEnvironment2->SESGuid, &gEfiShellEnvironment2ExtGuid) != FALSE)){
jcarsey94b17fa2009-05-07 18:46:18 +000088 //
89 // figure out how big of a buffer we need.
90 //
91 Status = gBS->LocateHandle (ByProtocol,
92 &gEfiShellEnvironment2Guid,
93 NULL, // ignored for ByProtocol
94 &BufferSize,
95 Buffer
96 );
jcarsey2247dde2009-11-09 18:08:58 +000097 //
98 // maybe it's not there???
99 //
100 if (Status == EFI_BUFFER_TOO_SMALL) {
101 Buffer = (EFI_HANDLE*)AllocatePool(BufferSize);
102 ASSERT(Buffer != NULL);
103 Status = gBS->LocateHandle (ByProtocol,
104 &gEfiShellEnvironment2Guid,
105 NULL, // ignored for ByProtocol
106 &BufferSize,
107 Buffer
108 );
109 }
jcarsey94b17fa2009-05-07 18:46:18 +0000110 if (!EFI_ERROR (Status)) {
111 //
112 // now parse the list of returned handles
113 //
114 Status = EFI_NOT_FOUND;
115 for (HandleIndex = 0; HandleIndex < (BufferSize/sizeof(Buffer[0])); HandleIndex++) {
116 Status = gBS->OpenProtocol(Buffer[HandleIndex],
117 &gEfiShellEnvironment2Guid,
118 (VOID **)&mEfiShellEnvironment2,
119 ImageHandle,
120 NULL,
121 EFI_OPEN_PROTOCOL_GET_PROTOCOL
122 );
jcarsey9eb53ac2009-07-08 17:26:58 +0000123 if (CompareGuid (&mEfiShellEnvironment2->SESGuid, &gEfiShellEnvironment2ExtGuid) != FALSE) {
jcarsey94b17fa2009-05-07 18:46:18 +0000124 mEfiShellEnvironment2Handle = Buffer[HandleIndex];
125 Status = EFI_SUCCESS;
126 break;
127 }
128 }
129 }
130 }
131 if (Buffer != NULL) {
132 FreePool (Buffer);
133 }
134 return (Status);
135}
136
jcarsey94b17fa2009-05-07 18:46:18 +0000137EFI_STATUS
138EFIAPI
jcarseyd2b45642009-05-11 18:02:16 +0000139ShellLibConstructorWorker (
jcarsey94b17fa2009-05-07 18:46:18 +0000140 IN EFI_HANDLE ImageHandle,
141 IN EFI_SYSTEM_TABLE *SystemTable
jcarsey2247dde2009-11-09 18:08:58 +0000142 ) {
jcarsey94b17fa2009-05-07 18:46:18 +0000143 EFI_STATUS Status;
144
jcarseyb3011f42010-01-11 21:49:04 +0000145 ASSERT(PcdGet16 (PcdShellPrintBufferSize) < PcdGet32 (PcdMaximumUnicodeStringLength));
146 mPostReplaceFormat = AllocateZeroPool (PcdGet16 (PcdShellPrintBufferSize));
jcarseyecd3d592009-12-07 18:05:00 +0000147 ASSERT (mPostReplaceFormat != NULL);
jcarseyb3011f42010-01-11 21:49:04 +0000148 mPostReplaceFormat2 = AllocateZeroPool (PcdGet16 (PcdShellPrintBufferSize));
jcarseyecd3d592009-12-07 18:05:00 +0000149 ASSERT (mPostReplaceFormat2 != NULL);
150
jcarsey94b17fa2009-05-07 18:46:18 +0000151 //
jcarsey2247dde2009-11-09 18:08:58 +0000152 // Set the parameter count to an invalid number
153 //
154 mTotalParameterCount = (UINTN)(-1);
155
156 //
jcarsey94b17fa2009-05-07 18:46:18 +0000157 // UEFI 2.0 shell interfaces (used preferentially)
158 //
159 Status = gBS->OpenProtocol(ImageHandle,
160 &gEfiShellProtocolGuid,
161 (VOID **)&mEfiShellProtocol,
162 ImageHandle,
163 NULL,
164 EFI_OPEN_PROTOCOL_GET_PROTOCOL
165 );
166 if (EFI_ERROR(Status)) {
167 mEfiShellProtocol = NULL;
168 }
169 Status = gBS->OpenProtocol(ImageHandle,
170 &gEfiShellParametersProtocolGuid,
171 (VOID **)&mEfiShellParametersProtocol,
172 ImageHandle,
173 NULL,
174 EFI_OPEN_PROTOCOL_GET_PROTOCOL
175 );
176 if (EFI_ERROR(Status)) {
177 mEfiShellParametersProtocol = NULL;
178 }
179
180 if (mEfiShellParametersProtocol == NULL || mEfiShellProtocol == NULL) {
181 //
182 // Moved to seperate function due to complexity
183 //
184 Status = ShellFindSE2(ImageHandle);
185
186 if (EFI_ERROR(Status)) {
187 DEBUG((DEBUG_ERROR, "Status: 0x%08x\r\n", Status));
188 mEfiShellEnvironment2 = NULL;
189 }
190 Status = gBS->OpenProtocol(ImageHandle,
191 &gEfiShellInterfaceGuid,
192 (VOID **)&mEfiShellInterface,
193 ImageHandle,
194 NULL,
195 EFI_OPEN_PROTOCOL_GET_PROTOCOL
196 );
197 if (EFI_ERROR(Status)) {
198 mEfiShellInterface = NULL;
199 }
200 }
201 //
202 // only success getting 2 of either the old or new, but no 1/2 and 1/2
203 //
204 if ((mEfiShellEnvironment2 != NULL && mEfiShellInterface != NULL) ||
205 (mEfiShellProtocol != NULL && mEfiShellParametersProtocol != NULL) ) {
jcarseyd2b45642009-05-11 18:02:16 +0000206 if (mEfiShellProtocol != NULL) {
207 FileFunctionMap.GetFileInfo = mEfiShellProtocol->GetFileInfo;
208 FileFunctionMap.SetFileInfo = mEfiShellProtocol->SetFileInfo;
209 FileFunctionMap.ReadFile = mEfiShellProtocol->ReadFile;
210 FileFunctionMap.WriteFile = mEfiShellProtocol->WriteFile;
211 FileFunctionMap.CloseFile = mEfiShellProtocol->CloseFile;
212 FileFunctionMap.DeleteFile = mEfiShellProtocol->DeleteFile;
213 FileFunctionMap.GetFilePosition = mEfiShellProtocol->GetFilePosition;
214 FileFunctionMap.SetFilePosition = mEfiShellProtocol->SetFilePosition;
215 FileFunctionMap.FlushFile = mEfiShellProtocol->FlushFile;
216 FileFunctionMap.GetFileSize = mEfiShellProtocol->GetFileSize;
217 } else {
218 FileFunctionMap.GetFileInfo = FileHandleGetInfo;
219 FileFunctionMap.SetFileInfo = FileHandleSetInfo;
220 FileFunctionMap.ReadFile = FileHandleRead;
221 FileFunctionMap.WriteFile = FileHandleWrite;
222 FileFunctionMap.CloseFile = FileHandleClose;
223 FileFunctionMap.DeleteFile = FileHandleDelete;
224 FileFunctionMap.GetFilePosition = FileHandleGetPosition;
225 FileFunctionMap.SetFilePosition = FileHandleSetPosition;
226 FileFunctionMap.FlushFile = FileHandleFlush;
227 FileFunctionMap.GetFileSize = FileHandleGetSize;
228 }
jcarsey94b17fa2009-05-07 18:46:18 +0000229 return (EFI_SUCCESS);
230 }
231 return (EFI_NOT_FOUND);
232}
jcarseyd2b45642009-05-11 18:02:16 +0000233/**
234 Constructor for the Shell library.
235
236 Initialize the library and determine if the underlying is a UEFI Shell 2.0 or an EFI shell.
237
238 @param ImageHandle the image handle of the process
239 @param SystemTable the EFI System Table pointer
240
241 @retval EFI_SUCCESS the initialization was complete sucessfully
242 @return others an error ocurred during initialization
243**/
244EFI_STATUS
245EFIAPI
246ShellLibConstructor (
247 IN EFI_HANDLE ImageHandle,
248 IN EFI_SYSTEM_TABLE *SystemTable
jcarsey2247dde2009-11-09 18:08:58 +0000249 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000250
251
252 mEfiShellEnvironment2 = NULL;
253 mEfiShellProtocol = NULL;
254 mEfiShellParametersProtocol = NULL;
255 mEfiShellInterface = NULL;
256 mEfiShellEnvironment2Handle = NULL;
jcarseyecd3d592009-12-07 18:05:00 +0000257 mPostReplaceFormat = NULL;
258 mPostReplaceFormat2 = NULL;
jcarseyd2b45642009-05-11 18:02:16 +0000259
jcarseyd2b45642009-05-11 18:02:16 +0000260 //
261 // verify that auto initialize is not set false
262 //
263 if (PcdGetBool(PcdShellLibAutoInitialize) == 0) {
264 return (EFI_SUCCESS);
265 }
266
267 return (ShellLibConstructorWorker(ImageHandle, SystemTable));
268}
jcarsey94b17fa2009-05-07 18:46:18 +0000269
270/**
271 Destructory for the library. free any resources.
272**/
273EFI_STATUS
274EFIAPI
275ShellLibDestructor (
276 IN EFI_HANDLE ImageHandle,
277 IN EFI_SYSTEM_TABLE *SystemTable
jcarsey2247dde2009-11-09 18:08:58 +0000278 ) {
jcarsey94b17fa2009-05-07 18:46:18 +0000279 if (mEfiShellEnvironment2 != NULL) {
280 gBS->CloseProtocol(mEfiShellEnvironment2Handle==NULL?ImageHandle:mEfiShellEnvironment2Handle,
281 &gEfiShellEnvironment2Guid,
282 ImageHandle,
283 NULL);
jcarseyd2b45642009-05-11 18:02:16 +0000284 mEfiShellEnvironment2 = NULL;
jcarsey94b17fa2009-05-07 18:46:18 +0000285 }
286 if (mEfiShellInterface != NULL) {
287 gBS->CloseProtocol(ImageHandle,
288 &gEfiShellInterfaceGuid,
289 ImageHandle,
290 NULL);
jcarseyd2b45642009-05-11 18:02:16 +0000291 mEfiShellInterface = NULL;
jcarsey94b17fa2009-05-07 18:46:18 +0000292 }
293 if (mEfiShellProtocol != NULL) {
294 gBS->CloseProtocol(ImageHandle,
295 &gEfiShellProtocolGuid,
296 ImageHandle,
jcarseyd2b45642009-05-11 18:02:16 +0000297 NULL);
298 mEfiShellProtocol = NULL;
jcarsey94b17fa2009-05-07 18:46:18 +0000299 }
300 if (mEfiShellParametersProtocol != NULL) {
301 gBS->CloseProtocol(ImageHandle,
302 &gEfiShellParametersProtocolGuid,
303 ImageHandle,
304 NULL);
jcarseyd2b45642009-05-11 18:02:16 +0000305 mEfiShellParametersProtocol = NULL;
jcarsey94b17fa2009-05-07 18:46:18 +0000306 }
jcarseyd2b45642009-05-11 18:02:16 +0000307 mEfiShellEnvironment2Handle = NULL;
jcarseyecd3d592009-12-07 18:05:00 +0000308
309 if (mPostReplaceFormat != NULL) {
310 FreePool(mPostReplaceFormat);
311 }
312 if (mPostReplaceFormat2 != NULL) {
313 FreePool(mPostReplaceFormat2);
314 }
315 mPostReplaceFormat = NULL;
316 mPostReplaceFormat2 = NULL;
317
jcarsey94b17fa2009-05-07 18:46:18 +0000318 return (EFI_SUCCESS);
319}
jcarseyd2b45642009-05-11 18:02:16 +0000320
321/**
322 This function causes the shell library to initialize itself. If the shell library
323 is already initialized it will de-initialize all the current protocol poitners and
324 re-populate them again.
325
326 When the library is used with PcdShellLibAutoInitialize set to true this function
327 will return EFI_SUCCESS and perform no actions.
328
329 This function is intended for internal access for shell commands only.
330
331 @retval EFI_SUCCESS the initialization was complete sucessfully
332
333**/
334EFI_STATUS
335EFIAPI
336ShellInitialize (
337 ) {
338 //
339 // if auto initialize is not false then skip
340 //
341 if (PcdGetBool(PcdShellLibAutoInitialize) != 0) {
342 return (EFI_SUCCESS);
343 }
344
345 //
346 // deinit the current stuff
347 //
348 ASSERT_EFI_ERROR(ShellLibDestructor(gImageHandle, gST));
349
350 //
351 // init the new stuff
352 //
353 return (ShellLibConstructorWorker(gImageHandle, gST));
354}
355
jcarsey94b17fa2009-05-07 18:46:18 +0000356/**
357 This function will retrieve the information about the file for the handle
358 specified and store it in allocated pool memory.
359
qhuang869817bf2009-05-20 14:42:48 +0000360 This function allocates a buffer to store the file's information. It is the
361 caller's responsibility to free the buffer
jcarsey94b17fa2009-05-07 18:46:18 +0000362
363 @param FileHandle The file handle of the file for which information is
364 being requested.
365
366 @retval NULL information could not be retrieved.
367
368 @return the information about the file
369**/
370EFI_FILE_INFO*
371EFIAPI
372ShellGetFileInfo (
373 IN EFI_FILE_HANDLE FileHandle
jcarsey2247dde2009-11-09 18:08:58 +0000374 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000375 return (FileFunctionMap.GetFileInfo(FileHandle));
jcarsey94b17fa2009-05-07 18:46:18 +0000376}
377
378/**
379 This function will set the information about the file for the opened handle
380 specified.
381
382 @param FileHandle The file handle of the file for which information
383 is being set
384
385 @param FileInfo The infotmation to set.
386
387 @retval EFI_SUCCESS The information was set.
388 @retval EFI_UNSUPPORTED The InformationType is not known.
389 @retval EFI_NO_MEDIA The device has no medium.
390 @retval EFI_DEVICE_ERROR The device reported an error.
391 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
392 @retval EFI_WRITE_PROTECTED The file or medium is write protected.
393 @retval EFI_ACCESS_DENIED The file was opened read only.
394 @retval EFI_VOLUME_FULL The volume is full.
395**/
396EFI_STATUS
397EFIAPI
398ShellSetFileInfo (
399 IN EFI_FILE_HANDLE FileHandle,
400 IN EFI_FILE_INFO *FileInfo
jcarsey2247dde2009-11-09 18:08:58 +0000401 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000402 return (FileFunctionMap.SetFileInfo(FileHandle, FileInfo));
jcarsey94b17fa2009-05-07 18:46:18 +0000403}
404
405 /**
406 This function will open a file or directory referenced by DevicePath.
407
408 This function opens a file with the open mode according to the file path. The
409 Attributes is valid only for EFI_FILE_MODE_CREATE.
410
411 @param FilePath on input the device path to the file. On output
412 the remaining device path.
413 @param DeviceHandle pointer to the system device handle.
414 @param FileHandle pointer to the file handle.
415 @param OpenMode the mode to open the file with.
416 @param Attributes the file's file attributes.
417
418 @retval EFI_SUCCESS The information was set.
419 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
420 @retval EFI_UNSUPPORTED Could not open the file path.
421 @retval EFI_NOT_FOUND The specified file could not be found on the
422 device or the file system could not be found on
423 the device.
424 @retval EFI_NO_MEDIA The device has no medium.
425 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the
426 medium is no longer supported.
427 @retval EFI_DEVICE_ERROR The device reported an error.
428 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
429 @retval EFI_WRITE_PROTECTED The file or medium is write protected.
430 @retval EFI_ACCESS_DENIED The file was opened read only.
431 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the
432 file.
433 @retval EFI_VOLUME_FULL The volume is full.
434**/
435EFI_STATUS
436EFIAPI
437ShellOpenFileByDevicePath(
438 IN OUT EFI_DEVICE_PATH_PROTOCOL **FilePath,
439 OUT EFI_HANDLE *DeviceHandle,
440 OUT EFI_FILE_HANDLE *FileHandle,
441 IN UINT64 OpenMode,
442 IN UINT64 Attributes
jcarsey2247dde2009-11-09 18:08:58 +0000443 ) {
jcarsey94b17fa2009-05-07 18:46:18 +0000444 CHAR16 *FileName;
445 EFI_STATUS Status;
446 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *EfiSimpleFileSystemProtocol;
447 EFI_FILE_HANDLE LastHandle;
448
449 //
450 // ASERT for FileHandle, FilePath, and DeviceHandle being NULL
451 //
452 ASSERT(FilePath != NULL);
453 ASSERT(FileHandle != NULL);
454 ASSERT(DeviceHandle != NULL);
455 //
456 // which shell interface should we use
457 //
458 if (mEfiShellProtocol != NULL) {
459 //
460 // use UEFI Shell 2.0 method.
461 //
462 FileName = mEfiShellProtocol->GetFilePathFromDevicePath(*FilePath);
463 if (FileName == NULL) {
464 return (EFI_INVALID_PARAMETER);
465 }
466 Status = ShellOpenFileByName(FileName, FileHandle, OpenMode, Attributes);
467 FreePool(FileName);
468 return (Status);
jcarseyd2b45642009-05-11 18:02:16 +0000469 }
470
471
472 //
473 // use old shell method.
474 //
475 Status = gBS->LocateDevicePath (&gEfiSimpleFileSystemProtocolGuid,
476 FilePath,
477 DeviceHandle);
478 if (EFI_ERROR (Status)) {
479 return Status;
480 }
481 Status = gBS->OpenProtocol(*DeviceHandle,
482 &gEfiSimpleFileSystemProtocolGuid,
jcarseyb1f95a02009-06-16 00:23:19 +0000483 (VOID**)&EfiSimpleFileSystemProtocol,
jcarseyd2b45642009-05-11 18:02:16 +0000484 gImageHandle,
485 NULL,
486 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
487 if (EFI_ERROR (Status)) {
488 return Status;
489 }
490 Status = EfiSimpleFileSystemProtocol->OpenVolume(EfiSimpleFileSystemProtocol, FileHandle);
491 if (EFI_ERROR (Status)) {
492 FileHandle = NULL;
493 return Status;
494 }
495
496 //
497 // go down directories one node at a time.
498 //
499 while (!IsDevicePathEnd (*FilePath)) {
jcarsey94b17fa2009-05-07 18:46:18 +0000500 //
jcarseyd2b45642009-05-11 18:02:16 +0000501 // For file system access each node should be a file path component
jcarsey94b17fa2009-05-07 18:46:18 +0000502 //
jcarseyd2b45642009-05-11 18:02:16 +0000503 if (DevicePathType (*FilePath) != MEDIA_DEVICE_PATH ||
504 DevicePathSubType (*FilePath) != MEDIA_FILEPATH_DP
505 ) {
jcarsey94b17fa2009-05-07 18:46:18 +0000506 FileHandle = NULL;
jcarseyd2b45642009-05-11 18:02:16 +0000507 return (EFI_INVALID_PARAMETER);
jcarsey94b17fa2009-05-07 18:46:18 +0000508 }
jcarseyd2b45642009-05-11 18:02:16 +0000509 //
510 // Open this file path node
511 //
512 LastHandle = *FileHandle;
513 *FileHandle = NULL;
jcarsey94b17fa2009-05-07 18:46:18 +0000514
515 //
jcarseyd2b45642009-05-11 18:02:16 +0000516 // Try to test opening an existing file
jcarsey94b17fa2009-05-07 18:46:18 +0000517 //
jcarseyd2b45642009-05-11 18:02:16 +0000518 Status = LastHandle->Open (
519 LastHandle,
520 FileHandle,
521 ((FILEPATH_DEVICE_PATH*)*FilePath)->PathName,
522 OpenMode &~EFI_FILE_MODE_CREATE,
523 0
524 );
jcarsey94b17fa2009-05-07 18:46:18 +0000525
jcarseyd2b45642009-05-11 18:02:16 +0000526 //
527 // see if the error was that it needs to be created
528 //
529 if ((EFI_ERROR (Status)) && (OpenMode != (OpenMode &~EFI_FILE_MODE_CREATE))) {
jcarsey94b17fa2009-05-07 18:46:18 +0000530 Status = LastHandle->Open (
531 LastHandle,
532 FileHandle,
533 ((FILEPATH_DEVICE_PATH*)*FilePath)->PathName,
jcarseyd2b45642009-05-11 18:02:16 +0000534 OpenMode,
535 Attributes
jcarsey94b17fa2009-05-07 18:46:18 +0000536 );
jcarsey94b17fa2009-05-07 18:46:18 +0000537 }
jcarseyd2b45642009-05-11 18:02:16 +0000538 //
539 // Close the last node
540 //
541 LastHandle->Close (LastHandle);
542
543 if (EFI_ERROR(Status)) {
544 return (Status);
545 }
546
547 //
548 // Get the next node
549 //
550 *FilePath = NextDevicePathNode (*FilePath);
jcarsey94b17fa2009-05-07 18:46:18 +0000551 }
jcarseyd2b45642009-05-11 18:02:16 +0000552 return (EFI_SUCCESS);
jcarsey94b17fa2009-05-07 18:46:18 +0000553}
554
555/**
556 This function will open a file or directory referenced by filename.
557
qhuang869817bf2009-05-20 14:42:48 +0000558 If return is EFI_SUCCESS, the Filehandle is the opened file's handle;
jcarsey94b17fa2009-05-07 18:46:18 +0000559 otherwise, the Filehandle is NULL. The Attributes is valid only for
560 EFI_FILE_MODE_CREATE.
561
562 if FileNAme is NULL then ASSERT()
563
564 @param FileName pointer to file name
565 @param FileHandle pointer to the file handle.
566 @param OpenMode the mode to open the file with.
567 @param Attributes the file's file attributes.
568
569 @retval EFI_SUCCESS The information was set.
570 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
571 @retval EFI_UNSUPPORTED Could not open the file path.
572 @retval EFI_NOT_FOUND The specified file could not be found on the
573 device or the file system could not be found
574 on the device.
575 @retval EFI_NO_MEDIA The device has no medium.
576 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the
577 medium is no longer supported.
578 @retval EFI_DEVICE_ERROR The device reported an error.
579 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
580 @retval EFI_WRITE_PROTECTED The file or medium is write protected.
581 @retval EFI_ACCESS_DENIED The file was opened read only.
582 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the
583 file.
584 @retval EFI_VOLUME_FULL The volume is full.
585**/
586EFI_STATUS
587EFIAPI
588ShellOpenFileByName(
jcarseyb82bfcc2009-06-29 16:28:23 +0000589 IN CONST CHAR16 *FileName,
jcarsey94b17fa2009-05-07 18:46:18 +0000590 OUT EFI_FILE_HANDLE *FileHandle,
591 IN UINT64 OpenMode,
592 IN UINT64 Attributes
jcarsey2247dde2009-11-09 18:08:58 +0000593 ) {
jcarsey94b17fa2009-05-07 18:46:18 +0000594 EFI_HANDLE DeviceHandle;
595 EFI_DEVICE_PATH_PROTOCOL *FilePath;
jcarseyb1f95a02009-06-16 00:23:19 +0000596 EFI_STATUS Status;
597 EFI_FILE_INFO *FileInfo;
jcarsey94b17fa2009-05-07 18:46:18 +0000598
599 //
600 // ASSERT if FileName is NULL
601 //
602 ASSERT(FileName != NULL);
603
604 if (mEfiShellProtocol != NULL) {
605 //
606 // Use UEFI Shell 2.0 method
607 //
jcarseyb1f95a02009-06-16 00:23:19 +0000608 Status = mEfiShellProtocol->OpenFileByName(FileName,
609 FileHandle,
610 OpenMode);
jcarsey2247dde2009-11-09 18:08:58 +0000611 if (!EFI_ERROR(Status) && ((OpenMode & EFI_FILE_MODE_CREATE) != 0)){
612 FileInfo = FileFunctionMap.GetFileInfo(*FileHandle);
jcarseyb1f95a02009-06-16 00:23:19 +0000613 ASSERT(FileInfo != NULL);
614 FileInfo->Attribute = Attributes;
jcarsey2247dde2009-11-09 18:08:58 +0000615 Status = FileFunctionMap.SetFileInfo(*FileHandle, FileInfo);
616 FreePool(FileInfo);
jcarseyb1f95a02009-06-16 00:23:19 +0000617 }
618 return (Status);
jcarsey94b17fa2009-05-07 18:46:18 +0000619 }
620 //
621 // Using EFI Shell version
622 // this means convert name to path and call that function
623 // since this will use EFI method again that will open it.
624 //
625 ASSERT(mEfiShellEnvironment2 != NULL);
jcarseyb82bfcc2009-06-29 16:28:23 +0000626 FilePath = mEfiShellEnvironment2->NameToPath ((CHAR16*)FileName);
jcarsey94b17fa2009-05-07 18:46:18 +0000627 if (FileDevicePath != NULL) {
628 return (ShellOpenFileByDevicePath(&FilePath,
629 &DeviceHandle,
630 FileHandle,
631 OpenMode,
632 Attributes ));
633 }
634 return (EFI_DEVICE_ERROR);
635}
636/**
637 This function create a directory
638
639 If return is EFI_SUCCESS, the Filehandle is the opened directory's handle;
640 otherwise, the Filehandle is NULL. If the directory already existed, this
641 function opens the existing directory.
642
643 @param DirectoryName pointer to directory name
644 @param FileHandle pointer to the file handle.
645
646 @retval EFI_SUCCESS The information was set.
647 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
648 @retval EFI_UNSUPPORTED Could not open the file path.
649 @retval EFI_NOT_FOUND The specified file could not be found on the
650 device or the file system could not be found
651 on the device.
652 @retval EFI_NO_MEDIA The device has no medium.
653 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the
654 medium is no longer supported.
655 @retval EFI_DEVICE_ERROR The device reported an error.
656 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
657 @retval EFI_WRITE_PROTECTED The file or medium is write protected.
658 @retval EFI_ACCESS_DENIED The file was opened read only.
659 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the
660 file.
661 @retval EFI_VOLUME_FULL The volume is full.
662 @sa ShellOpenFileByName
663**/
664EFI_STATUS
665EFIAPI
666ShellCreateDirectory(
jcarseyb82bfcc2009-06-29 16:28:23 +0000667 IN CONST CHAR16 *DirectoryName,
jcarsey94b17fa2009-05-07 18:46:18 +0000668 OUT EFI_FILE_HANDLE *FileHandle
jcarsey2247dde2009-11-09 18:08:58 +0000669 ) {
670 if (mEfiShellProtocol != NULL) {
671 //
672 // Use UEFI Shell 2.0 method
673 //
674 return (mEfiShellProtocol->CreateFile(DirectoryName,
675 EFI_FILE_DIRECTORY,
676 FileHandle
677 ));
678 } else {
679 return (ShellOpenFileByName(DirectoryName,
680 FileHandle,
681 EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE,
682 EFI_FILE_DIRECTORY
683 ));
684 }
jcarsey94b17fa2009-05-07 18:46:18 +0000685}
686
687/**
688 This function reads information from an opened file.
689
690 If FileHandle is not a directory, the function reads the requested number of
qhuang869817bf2009-05-20 14:42:48 +0000691 bytes from the file at the file's current position and returns them in Buffer.
jcarsey94b17fa2009-05-07 18:46:18 +0000692 If the read goes beyond the end of the file, the read length is truncated to the
qhuang869817bf2009-05-20 14:42:48 +0000693 end of the file. The file's current position is increased by the number of bytes
jcarsey94b17fa2009-05-07 18:46:18 +0000694 returned. If FileHandle is a directory, the function reads the directory entry
qhuang869817bf2009-05-20 14:42:48 +0000695 at the file's current position and returns the entry in Buffer. If the Buffer
jcarsey94b17fa2009-05-07 18:46:18 +0000696 is not large enough to hold the current directory entry, then
697 EFI_BUFFER_TOO_SMALL is returned and the current file position is not updated.
698 BufferSize is set to be the size of the buffer needed to read the entry. On
699 success, the current position is updated to the next directory entry. If there
700 are no more directory entries, the read returns a zero-length buffer.
701 EFI_FILE_INFO is the structure returned as the directory entry.
702
703 @param FileHandle the opened file handle
704 @param BufferSize on input the size of buffer in bytes. on return
705 the number of bytes written.
706 @param Buffer the buffer to put read data into.
707
708 @retval EFI_SUCCESS Data was read.
709 @retval EFI_NO_MEDIA The device has no media.
710 @retval EFI_DEVICE_ERROR The device reported an error.
711 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
712 @retval EFI_BUFFER_TO_SMALL Buffer is too small. ReadSize contains required
713 size.
714
715**/
716EFI_STATUS
717EFIAPI
718ShellReadFile(
719 IN EFI_FILE_HANDLE FileHandle,
720 IN OUT UINTN *BufferSize,
721 OUT VOID *Buffer
jcarsey2247dde2009-11-09 18:08:58 +0000722 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000723 return (FileFunctionMap.ReadFile(FileHandle, BufferSize, Buffer));
jcarsey94b17fa2009-05-07 18:46:18 +0000724}
725
726
727/**
728 Write data to a file.
729
730 This function writes the specified number of bytes to the file at the current
731 file position. The current file position is advanced the actual number of bytes
732 written, which is returned in BufferSize. Partial writes only occur when there
qhuang869817bf2009-05-20 14:42:48 +0000733 has been a data error during the write attempt (such as "volume space full").
jcarsey94b17fa2009-05-07 18:46:18 +0000734 The file is automatically grown to hold the data if required. Direct writes to
735 opened directories are not supported.
736
737 @param FileHandle The opened file for writing
738 @param BufferSize on input the number of bytes in Buffer. On output
739 the number of bytes written.
740 @param Buffer the buffer containing data to write is stored.
741
742 @retval EFI_SUCCESS Data was written.
743 @retval EFI_UNSUPPORTED Writes to an open directory are not supported.
744 @retval EFI_NO_MEDIA The device has no media.
745 @retval EFI_DEVICE_ERROR The device reported an error.
746 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
747 @retval EFI_WRITE_PROTECTED The device is write-protected.
748 @retval EFI_ACCESS_DENIED The file was open for read only.
749 @retval EFI_VOLUME_FULL The volume is full.
750**/
751EFI_STATUS
752EFIAPI
753ShellWriteFile(
754 IN EFI_FILE_HANDLE FileHandle,
755 IN OUT UINTN *BufferSize,
756 IN VOID *Buffer
jcarsey2247dde2009-11-09 18:08:58 +0000757 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000758 return (FileFunctionMap.WriteFile(FileHandle, BufferSize, Buffer));
jcarsey94b17fa2009-05-07 18:46:18 +0000759}
760
761/**
762 Close an open file handle.
763
qhuang869817bf2009-05-20 14:42:48 +0000764 This function closes a specified file handle. All "dirty" cached file data is
jcarsey94b17fa2009-05-07 18:46:18 +0000765 flushed to the device, and the file is closed. In all cases the handle is
766 closed.
767
768@param FileHandle the file handle to close.
769
770@retval EFI_SUCCESS the file handle was closed sucessfully.
771**/
772EFI_STATUS
773EFIAPI
774ShellCloseFile (
775 IN EFI_FILE_HANDLE *FileHandle
jcarsey2247dde2009-11-09 18:08:58 +0000776 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000777 return (FileFunctionMap.CloseFile(*FileHandle));
jcarsey94b17fa2009-05-07 18:46:18 +0000778}
779
780/**
781 Delete a file and close the handle
782
783 This function closes and deletes a file. In all cases the file handle is closed.
784 If the file cannot be deleted, the warning code EFI_WARN_DELETE_FAILURE is
785 returned, but the handle is still closed.
786
787 @param FileHandle the file handle to delete
788
789 @retval EFI_SUCCESS the file was closed sucessfully
790 @retval EFI_WARN_DELETE_FAILURE the handle was closed, but the file was not
791 deleted
792 @retval INVALID_PARAMETER One of the parameters has an invalid value.
793**/
794EFI_STATUS
795EFIAPI
796ShellDeleteFile (
797 IN EFI_FILE_HANDLE *FileHandle
jcarsey2247dde2009-11-09 18:08:58 +0000798 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000799 return (FileFunctionMap.DeleteFile(*FileHandle));
jcarsey94b17fa2009-05-07 18:46:18 +0000800}
801
802/**
803 Set the current position in a file.
804
805 This function sets the current file position for the handle to the position
806 supplied. With the exception of seeking to position 0xFFFFFFFFFFFFFFFF, only
807 absolute positioning is supported, and seeking past the end of the file is
808 allowed (a subsequent write would grow the file). Seeking to position
809 0xFFFFFFFFFFFFFFFF causes the current position to be set to the end of the file.
810 If FileHandle is a directory, the only position that may be set is zero. This
811 has the effect of starting the read process of the directory entries over.
812
813 @param FileHandle The file handle on which the position is being set
814 @param Position Byte position from begining of file
815
816 @retval EFI_SUCCESS Operation completed sucessfully.
817 @retval EFI_UNSUPPORTED the seek request for non-zero is not valid on
818 directories.
819 @retval INVALID_PARAMETER One of the parameters has an invalid value.
820**/
821EFI_STATUS
822EFIAPI
823ShellSetFilePosition (
824 IN EFI_FILE_HANDLE FileHandle,
825 IN UINT64 Position
jcarsey2247dde2009-11-09 18:08:58 +0000826 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000827 return (FileFunctionMap.SetFilePosition(FileHandle, Position));
jcarsey94b17fa2009-05-07 18:46:18 +0000828}
829
830/**
831 Gets a file's current position
832
833 This function retrieves the current file position for the file handle. For
834 directories, the current file position has no meaning outside of the file
835 system driver and as such the operation is not supported. An error is returned
836 if FileHandle is a directory.
837
838 @param FileHandle The open file handle on which to get the position.
839 @param Position Byte position from begining of file.
840
841 @retval EFI_SUCCESS the operation completed sucessfully.
842 @retval INVALID_PARAMETER One of the parameters has an invalid value.
843 @retval EFI_UNSUPPORTED the request is not valid on directories.
844**/
845EFI_STATUS
846EFIAPI
847ShellGetFilePosition (
848 IN EFI_FILE_HANDLE FileHandle,
849 OUT UINT64 *Position
jcarsey2247dde2009-11-09 18:08:58 +0000850 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000851 return (FileFunctionMap.GetFilePosition(FileHandle, Position));
jcarsey94b17fa2009-05-07 18:46:18 +0000852}
853/**
854 Flushes data on a file
855
856 This function flushes all modified data associated with a file to a device.
857
858 @param FileHandle The file handle on which to flush data
859
860 @retval EFI_SUCCESS The data was flushed.
861 @retval EFI_NO_MEDIA The device has no media.
862 @retval EFI_DEVICE_ERROR The device reported an error.
863 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
864 @retval EFI_WRITE_PROTECTED The file or medium is write protected.
865 @retval EFI_ACCESS_DENIED The file was opened for read only.
866**/
867EFI_STATUS
868EFIAPI
869ShellFlushFile (
870 IN EFI_FILE_HANDLE FileHandle
jcarsey2247dde2009-11-09 18:08:58 +0000871 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000872 return (FileFunctionMap.FlushFile(FileHandle));
jcarsey94b17fa2009-05-07 18:46:18 +0000873}
874
875/**
876 Retrieves the first file from a directory
877
qhuang869817bf2009-05-20 14:42:48 +0000878 This function opens a directory and gets the first file's info in the
jcarsey94b17fa2009-05-07 18:46:18 +0000879 directory. Caller can use ShellFindNextFile() to get other files. When
880 complete the caller is responsible for calling FreePool() on Buffer.
881
882 @param DirHandle The file handle of the directory to search
883 @param Buffer Pointer to buffer for file's information
884
885 @retval EFI_SUCCESS Found the first file.
886 @retval EFI_NOT_FOUND Cannot find the directory.
887 @retval EFI_NO_MEDIA The device has no media.
888 @retval EFI_DEVICE_ERROR The device reported an error.
889 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
890 @return Others status of ShellGetFileInfo, ShellSetFilePosition,
891 or ShellReadFile
892**/
893EFI_STATUS
894EFIAPI
895ShellFindFirstFile (
896 IN EFI_FILE_HANDLE DirHandle,
jcarseyd2b45642009-05-11 18:02:16 +0000897 OUT EFI_FILE_INFO **Buffer
jcarsey2247dde2009-11-09 18:08:58 +0000898 ) {
jcarsey94b17fa2009-05-07 18:46:18 +0000899 //
jcarseyd2b45642009-05-11 18:02:16 +0000900 // pass to file handle lib
jcarsey94b17fa2009-05-07 18:46:18 +0000901 //
jcarseyd2b45642009-05-11 18:02:16 +0000902 return (FileHandleFindFirstFile(DirHandle, Buffer));
jcarsey94b17fa2009-05-07 18:46:18 +0000903}
904/**
905 Retrieves the next file in a directory.
906
907 To use this function, caller must call the LibFindFirstFile() to get the
908 first file, and then use this function get other files. This function can be
909 called for several times to get each file's information in the directory. If
910 the call of ShellFindNextFile() got the last file in the directory, the next
911 call of this function has no file to get. *NoFile will be set to TRUE and the
912 Buffer memory will be automatically freed.
913
914 @param DirHandle the file handle of the directory
915 @param Buffer pointer to buffer for file's information
916 @param NoFile pointer to boolean when last file is found
917
918 @retval EFI_SUCCESS Found the next file, or reached last file
919 @retval EFI_NO_MEDIA The device has no media.
920 @retval EFI_DEVICE_ERROR The device reported an error.
921 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
922**/
923EFI_STATUS
924EFIAPI
925ShellFindNextFile(
926 IN EFI_FILE_HANDLE DirHandle,
927 OUT EFI_FILE_INFO *Buffer,
928 OUT BOOLEAN *NoFile
jcarsey2247dde2009-11-09 18:08:58 +0000929 ) {
jcarsey94b17fa2009-05-07 18:46:18 +0000930 //
jcarseyd2b45642009-05-11 18:02:16 +0000931 // pass to file handle lib
jcarsey94b17fa2009-05-07 18:46:18 +0000932 //
jcarseyd2b45642009-05-11 18:02:16 +0000933 return (FileHandleFindNextFile(DirHandle, Buffer, NoFile));
jcarsey94b17fa2009-05-07 18:46:18 +0000934}
935/**
936 Retrieve the size of a file.
937
938 if FileHandle is NULL then ASSERT()
939 if Size is NULL then ASSERT()
940
qhuang869817bf2009-05-20 14:42:48 +0000941 This function extracts the file size info from the FileHandle's EFI_FILE_INFO
jcarsey94b17fa2009-05-07 18:46:18 +0000942 data.
943
944 @param FileHandle file handle from which size is retrieved
945 @param Size pointer to size
946
947 @retval EFI_SUCCESS operation was completed sucessfully
948 @retval EFI_DEVICE_ERROR cannot access the file
949**/
950EFI_STATUS
951EFIAPI
952ShellGetFileSize (
953 IN EFI_FILE_HANDLE FileHandle,
954 OUT UINT64 *Size
jcarsey2247dde2009-11-09 18:08:58 +0000955 ) {
jcarseyd2b45642009-05-11 18:02:16 +0000956 return (FileFunctionMap.GetFileSize(FileHandle, Size));
jcarsey94b17fa2009-05-07 18:46:18 +0000957}
958/**
959 Retrieves the status of the break execution flag
960
961 this function is useful to check whether the application is being asked to halt by the shell.
962
963 @retval TRUE the execution break is enabled
964 @retval FALSE the execution break is not enabled
965**/
966BOOLEAN
967EFIAPI
968ShellGetExecutionBreakFlag(
969 VOID
970 )
971{
972 //
973 // Check for UEFI Shell 2.0 protocols
974 //
975 if (mEfiShellProtocol != NULL) {
976
977 //
978 // We are using UEFI Shell 2.0; see if the event has been triggered
979 //
980 if (gBS->CheckEvent(mEfiShellProtocol->ExecutionBreak) != EFI_SUCCESS) {
981 return (FALSE);
982 }
983 return (TRUE);
984 }
985
986 //
987 // using EFI Shell; call the function to check
988 //
989 ASSERT(mEfiShellEnvironment2 != NULL);
990 return (mEfiShellEnvironment2->GetExecutionBreak());
991}
992/**
993 return the value of an environment variable
994
995 this function gets the value of the environment variable set by the
996 ShellSetEnvironmentVariable function
997
998 @param EnvKey The key name of the environment variable.
999
1000 @retval NULL the named environment variable does not exist.
1001 @return != NULL pointer to the value of the environment variable
1002**/
1003CONST CHAR16*
1004EFIAPI
1005ShellGetEnvironmentVariable (
jcarsey9b3bf082009-06-23 21:15:07 +00001006 IN CONST CHAR16 *EnvKey
jcarsey94b17fa2009-05-07 18:46:18 +00001007 )
1008{
1009 //
1010 // Check for UEFI Shell 2.0 protocols
1011 //
1012 if (mEfiShellProtocol != NULL) {
1013 return (mEfiShellProtocol->GetEnv(EnvKey));
1014 }
1015
1016 //
1017 // ASSERT that we must have EFI shell
1018 //
1019 ASSERT(mEfiShellEnvironment2 != NULL);
1020
1021 //
1022 // using EFI Shell
1023 //
jcarsey9b3bf082009-06-23 21:15:07 +00001024 return (mEfiShellEnvironment2->GetEnv((CHAR16*)EnvKey));
jcarsey94b17fa2009-05-07 18:46:18 +00001025}
1026/**
1027 set the value of an environment variable
1028
1029This function changes the current value of the specified environment variable. If the
1030environment variable exists and the Value is an empty string, then the environment
1031variable is deleted. If the environment variable exists and the Value is not an empty
1032string, then the value of the environment variable is changed. If the environment
1033variable does not exist and the Value is an empty string, there is no action. If the
1034environment variable does not exist and the Value is a non-empty string, then the
1035environment variable is created and assigned the specified value.
1036
1037 This is not supported pre-UEFI Shell 2.0.
1038
1039 @param EnvKey The key name of the environment variable.
1040 @param EnvVal The Value of the environment variable
1041 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
1042
1043 @retval EFI_SUCCESS the operation was completed sucessfully
1044 @retval EFI_UNSUPPORTED This operation is not allowed in pre UEFI 2.0 Shell environments
1045**/
1046EFI_STATUS
1047EFIAPI
1048ShellSetEnvironmentVariable (
1049 IN CONST CHAR16 *EnvKey,
1050 IN CONST CHAR16 *EnvVal,
1051 IN BOOLEAN Volatile
1052 )
1053{
1054 //
1055 // Check for UEFI Shell 2.0 protocols
1056 //
1057 if (mEfiShellProtocol != NULL) {
1058 return (mEfiShellProtocol->SetEnv(EnvKey, EnvVal, Volatile));
1059 }
1060
1061 //
1062 // This feature does not exist under EFI shell
1063 //
1064 return (EFI_UNSUPPORTED);
1065}
1066/**
1067 cause the shell to parse and execute a command line.
1068
1069 This function creates a nested instance of the shell and executes the specified
1070command (CommandLine) with the specified environment (Environment). Upon return,
1071the status code returned by the specified command is placed in StatusCode.
1072If Environment is NULL, then the current environment is used and all changes made
1073by the commands executed will be reflected in the current environment. If the
1074Environment is non-NULL, then the changes made will be discarded.
1075The CommandLine is executed from the current working directory on the current
1076device.
1077
1078EnvironmentVariables and Status are only supported for UEFI Shell 2.0.
1079Output is only supported for pre-UEFI Shell 2.0
1080
1081 @param ImageHandle Parent image that is starting the operation
1082 @param CommandLine pointer to null terminated command line.
1083 @param Output true to display debug output. false to hide it.
1084 @param EnvironmentVariables optional pointer to array of environment variables
1085 in the form "x=y". if NULL current set is used.
1086 @param Status the status of the run command line.
1087
1088 @retval EFI_SUCCESS the operation completed sucessfully. Status
1089 contains the status code returned.
1090 @retval EFI_INVALID_PARAMETER a parameter contains an invalid value
1091 @retval EFI_OUT_OF_RESOURCES out of resources
1092 @retval EFI_UNSUPPORTED the operation is not allowed.
1093**/
1094EFI_STATUS
1095EFIAPI
1096ShellExecute (
1097 IN EFI_HANDLE *ParentHandle,
1098 IN CHAR16 *CommandLine OPTIONAL,
1099 IN BOOLEAN Output OPTIONAL,
1100 IN CHAR16 **EnvironmentVariables OPTIONAL,
1101 OUT EFI_STATUS *Status OPTIONAL
1102 )
1103{
1104 //
1105 // Check for UEFI Shell 2.0 protocols
1106 //
1107 if (mEfiShellProtocol != NULL) {
1108 //
1109 // Call UEFI Shell 2.0 version (not using Output parameter)
1110 //
1111 return (mEfiShellProtocol->Execute(ParentHandle,
1112 CommandLine,
1113 EnvironmentVariables,
1114 Status));
1115 }
1116 //
1117 // ASSERT that we must have EFI shell
1118 //
1119 ASSERT(mEfiShellEnvironment2 != NULL);
1120 //
1121 // Call EFI Shell version (not using EnvironmentVariables or Status parameters)
1122 // Due to oddity in the EFI shell we want to dereference the ParentHandle here
1123 //
1124 return (mEfiShellEnvironment2->Execute(*ParentHandle,
1125 CommandLine,
1126 Output));
1127}
1128/**
1129 Retreives the current directory path
1130
qhuang869817bf2009-05-20 14:42:48 +00001131 If the DeviceName is NULL, it returns the current device's current directory
jcarsey94b17fa2009-05-07 18:46:18 +00001132 name. If the DeviceName is not NULL, it returns the current directory name
1133 on specified drive.
1134
1135 @param DeviceName the name of the drive to get directory on
1136
1137 @retval NULL the directory does not exist
1138 @return != NULL the directory
1139**/
1140CONST CHAR16*
1141EFIAPI
1142ShellGetCurrentDir (
1143 IN CHAR16 *DeviceName OPTIONAL
1144 )
1145{
1146 //
1147 // Check for UEFI Shell 2.0 protocols
1148 //
1149 if (mEfiShellProtocol != NULL) {
1150 return (mEfiShellProtocol->GetCurDir(DeviceName));
1151 }
1152 //
1153 // ASSERT that we must have EFI shell
1154 //
1155 ASSERT(mEfiShellEnvironment2 != NULL);
1156 return (mEfiShellEnvironment2->CurDir(DeviceName));
1157}
1158/**
1159 sets (enabled or disabled) the page break mode
1160
1161 when page break mode is enabled the screen will stop scrolling
1162 and wait for operator input before scrolling a subsequent screen.
1163
1164 @param CurrentState TRUE to enable and FALSE to disable
1165**/
1166VOID
1167EFIAPI
1168ShellSetPageBreakMode (
1169 IN BOOLEAN CurrentState
1170 )
1171{
1172 //
1173 // check for enabling
1174 //
1175 if (CurrentState != 0x00) {
1176 //
1177 // check for UEFI Shell 2.0
1178 //
1179 if (mEfiShellProtocol != NULL) {
1180 //
1181 // Enable with UEFI 2.0 Shell
1182 //
1183 mEfiShellProtocol->EnablePageBreak();
1184 return;
1185 } else {
1186 //
1187 // ASSERT that must have EFI Shell
1188 //
1189 ASSERT(mEfiShellEnvironment2 != NULL);
1190 //
1191 // Enable with EFI Shell
1192 //
1193 mEfiShellEnvironment2->EnablePageBreak (DEFAULT_INIT_ROW, DEFAULT_AUTO_LF);
1194 return;
1195 }
1196 } else {
1197 //
1198 // check for UEFI Shell 2.0
1199 //
1200 if (mEfiShellProtocol != NULL) {
1201 //
1202 // Disable with UEFI 2.0 Shell
1203 //
1204 mEfiShellProtocol->DisablePageBreak();
1205 return;
1206 } else {
1207 //
1208 // ASSERT that must have EFI Shell
1209 //
1210 ASSERT(mEfiShellEnvironment2 != NULL);
1211 //
1212 // Disable with EFI Shell
1213 //
1214 mEfiShellEnvironment2->DisablePageBreak ();
1215 return;
1216 }
1217 }
1218}
1219
1220///
1221/// version of EFI_SHELL_FILE_INFO struct, except has no CONST pointers.
1222/// This allows for the struct to be populated.
1223///
1224typedef struct {
jcarseyd2b45642009-05-11 18:02:16 +00001225 LIST_ENTRY Link;
jcarsey94b17fa2009-05-07 18:46:18 +00001226 EFI_STATUS Status;
1227 CHAR16 *FullName;
1228 CHAR16 *FileName;
1229 EFI_FILE_HANDLE Handle;
1230 EFI_FILE_INFO *Info;
1231} EFI_SHELL_FILE_INFO_NO_CONST;
1232
1233/**
1234 Converts a EFI shell list of structures to the coresponding UEFI Shell 2.0 type of list.
1235
1236 if OldStyleFileList is NULL then ASSERT()
1237
1238 this function will convert a SHELL_FILE_ARG based list into a callee allocated
1239 EFI_SHELL_FILE_INFO based list. it is up to the caller to free the memory via
1240 the ShellCloseFileMetaArg function.
1241
jcarsey9b3bf082009-06-23 21:15:07 +00001242 @param[in] FileList the EFI shell list type
jcarseyb82bfcc2009-06-29 16:28:23 +00001243 @param[in,out] ListHead the list to add to
jcarsey94b17fa2009-05-07 18:46:18 +00001244
1245 @retval the resultant head of the double linked new format list;
1246**/
1247LIST_ENTRY*
1248EFIAPI
1249InternalShellConvertFileListType (
jcarsey9b3bf082009-06-23 21:15:07 +00001250 IN LIST_ENTRY *FileList,
1251 IN OUT LIST_ENTRY *ListHead
jcarsey125c2cf2009-11-18 21:36:50 +00001252 )
1253{
jcarsey94b17fa2009-05-07 18:46:18 +00001254 SHELL_FILE_ARG *OldInfo;
jcarsey9b3bf082009-06-23 21:15:07 +00001255 LIST_ENTRY *Link;
jcarsey94b17fa2009-05-07 18:46:18 +00001256 EFI_SHELL_FILE_INFO_NO_CONST *NewInfo;
1257
1258 //
jcarsey9b3bf082009-06-23 21:15:07 +00001259 // ASSERTs
jcarsey94b17fa2009-05-07 18:46:18 +00001260 //
jcarsey9b3bf082009-06-23 21:15:07 +00001261 ASSERT(FileList != NULL);
1262 ASSERT(ListHead != NULL);
jcarsey94b17fa2009-05-07 18:46:18 +00001263
1264 //
1265 // enumerate through each member of the old list and copy
1266 //
jcarseyd2b45642009-05-11 18:02:16 +00001267 for (Link = FileList->ForwardLink; Link != FileList; Link = Link->ForwardLink) {
jcarsey94b17fa2009-05-07 18:46:18 +00001268 OldInfo = CR (Link, SHELL_FILE_ARG, Link, SHELL_FILE_ARG_SIGNATURE);
1269
1270 //
1271 // make sure the old list was valid
1272 //
1273 ASSERT(OldInfo != NULL);
1274 ASSERT(OldInfo->Info != NULL);
1275 ASSERT(OldInfo->FullName != NULL);
1276 ASSERT(OldInfo->FileName != NULL);
1277
1278 //
1279 // allocate a new EFI_SHELL_FILE_INFO object
1280 //
1281 NewInfo = AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1282
1283 //
1284 // copy the simple items
1285 //
1286 NewInfo->Handle = OldInfo->Handle;
1287 NewInfo->Status = OldInfo->Status;
1288
jcarseyd2b45642009-05-11 18:02:16 +00001289 // old shell checks for 0 not NULL
1290 OldInfo->Handle = 0;
1291
jcarsey94b17fa2009-05-07 18:46:18 +00001292 //
1293 // allocate new space to copy strings and structure
1294 //
1295 NewInfo->FullName = AllocateZeroPool(StrSize(OldInfo->FullName));
1296 NewInfo->FileName = AllocateZeroPool(StrSize(OldInfo->FileName));
1297 NewInfo->Info = AllocateZeroPool((UINTN)OldInfo->Info->Size);
1298
1299 //
1300 // make sure all the memory allocations were sucessful
1301 //
1302 ASSERT(NewInfo->FullName != NULL);
1303 ASSERT(NewInfo->FileName != NULL);
1304 ASSERT(NewInfo->Info != NULL);
1305
1306 //
1307 // Copt the strings and structure
1308 //
1309 StrCpy(NewInfo->FullName, OldInfo->FullName);
1310 StrCpy(NewInfo->FileName, OldInfo->FileName);
1311 gBS->CopyMem (NewInfo->Info, OldInfo->Info, (UINTN)OldInfo->Info->Size);
1312
1313 //
1314 // add that to the list
1315 //
jcarsey9b3bf082009-06-23 21:15:07 +00001316 InsertTailList(ListHead, &NewInfo->Link);
jcarsey94b17fa2009-05-07 18:46:18 +00001317 }
1318 return (ListHead);
1319}
1320/**
1321 Opens a group of files based on a path.
1322
1323 This function uses the Arg to open all the matching files. Each matched
1324 file has a SHELL_FILE_ARG structure to record the file information. These
1325 structures are placed on the list ListHead. Users can get the SHELL_FILE_ARG
1326 structures from ListHead to access each file. This function supports wildcards
1327 and will process '?' and '*' as such. the list must be freed with a call to
1328 ShellCloseFileMetaArg().
1329
jcarsey5f7431d2009-07-10 18:06:01 +00001330 If you are NOT appending to an existing list *ListHead must be NULL. If
1331 *ListHead is NULL then it must be callee freed.
jcarsey94b17fa2009-05-07 18:46:18 +00001332
1333 @param Arg pointer to path string
1334 @param OpenMode mode to open files with
1335 @param ListHead head of linked list of results
1336
1337 @retval EFI_SUCCESS the operation was sucessful and the list head
1338 contains the list of opened files
1339 #retval EFI_UNSUPPORTED a previous ShellOpenFileMetaArg must be closed first.
1340 *ListHead is set to NULL.
1341 @return != EFI_SUCCESS the operation failed
1342
1343 @sa InternalShellConvertFileListType
1344**/
1345EFI_STATUS
1346EFIAPI
1347ShellOpenFileMetaArg (
1348 IN CHAR16 *Arg,
1349 IN UINT64 OpenMode,
1350 IN OUT EFI_SHELL_FILE_INFO **ListHead
1351 )
1352{
1353 EFI_STATUS Status;
jcarsey9b3bf082009-06-23 21:15:07 +00001354 LIST_ENTRY mOldStyleFileList;
jcarseyd2b45642009-05-11 18:02:16 +00001355
jcarsey94b17fa2009-05-07 18:46:18 +00001356 //
1357 // ASSERT that Arg and ListHead are not NULL
1358 //
1359 ASSERT(Arg != NULL);
1360 ASSERT(ListHead != NULL);
1361
1362 //
1363 // Check for UEFI Shell 2.0 protocols
1364 //
1365 if (mEfiShellProtocol != NULL) {
jcarsey5f7431d2009-07-10 18:06:01 +00001366 if (*ListHead == NULL) {
1367 *ListHead = (EFI_SHELL_FILE_INFO*)AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1368 if (*ListHead == NULL) {
1369 return (EFI_OUT_OF_RESOURCES);
1370 }
1371 InitializeListHead(&((*ListHead)->Link));
1372 }
jcarsey2247dde2009-11-09 18:08:58 +00001373 Status = mEfiShellProtocol->OpenFileList(Arg,
jcarsey94b17fa2009-05-07 18:46:18 +00001374 OpenMode,
jcarsey2247dde2009-11-09 18:08:58 +00001375 ListHead);
1376 if (EFI_ERROR(Status)) {
1377 mEfiShellProtocol->RemoveDupInFileList(ListHead);
1378 } else {
1379 Status = mEfiShellProtocol->RemoveDupInFileList(ListHead);
1380 }
1381 return (Status);
jcarsey94b17fa2009-05-07 18:46:18 +00001382 }
1383
1384 //
1385 // ASSERT that we must have EFI shell
1386 //
1387 ASSERT(mEfiShellEnvironment2 != NULL);
1388
1389 //
jcarsey94b17fa2009-05-07 18:46:18 +00001390 // make sure the list head is initialized
1391 //
jcarsey9b3bf082009-06-23 21:15:07 +00001392 InitializeListHead(&mOldStyleFileList);
jcarsey94b17fa2009-05-07 18:46:18 +00001393
1394 //
1395 // Get the EFI Shell list of files
1396 //
jcarsey9b3bf082009-06-23 21:15:07 +00001397 Status = mEfiShellEnvironment2->FileMetaArg(Arg, &mOldStyleFileList);
jcarsey94b17fa2009-05-07 18:46:18 +00001398 if (EFI_ERROR(Status)) {
1399 *ListHead = NULL;
1400 return (Status);
1401 }
1402
jcarsey9b3bf082009-06-23 21:15:07 +00001403 if (*ListHead == NULL) {
1404 *ListHead = (EFI_SHELL_FILE_INFO *)AllocateZeroPool(sizeof(EFI_SHELL_FILE_INFO));
1405 if (*ListHead == NULL) {
1406 return (EFI_OUT_OF_RESOURCES);
1407 }
1408 }
1409
jcarsey94b17fa2009-05-07 18:46:18 +00001410 //
1411 // Convert that to equivalent of UEFI Shell 2.0 structure
1412 //
jcarsey9b3bf082009-06-23 21:15:07 +00001413 InternalShellConvertFileListType(&mOldStyleFileList, &(*ListHead)->Link);
jcarsey94b17fa2009-05-07 18:46:18 +00001414
1415 //
jcarseyd2b45642009-05-11 18:02:16 +00001416 // Free the EFI Shell version that was converted.
1417 //
jcarsey9b3bf082009-06-23 21:15:07 +00001418 mEfiShellEnvironment2->FreeFileList(&mOldStyleFileList);
jcarsey94b17fa2009-05-07 18:46:18 +00001419
1420 return (Status);
1421}
1422/**
1423 Free the linked list returned from ShellOpenFileMetaArg
1424
1425 if ListHead is NULL then ASSERT()
1426
1427 @param ListHead the pointer to free
1428
1429 @retval EFI_SUCCESS the operation was sucessful
1430**/
1431EFI_STATUS
1432EFIAPI
1433ShellCloseFileMetaArg (
1434 IN OUT EFI_SHELL_FILE_INFO **ListHead
1435 )
1436{
1437 LIST_ENTRY *Node;
1438
1439 //
1440 // ASSERT that ListHead is not NULL
1441 //
1442 ASSERT(ListHead != NULL);
1443
1444 //
1445 // Check for UEFI Shell 2.0 protocols
1446 //
1447 if (mEfiShellProtocol != NULL) {
1448 return (mEfiShellProtocol->FreeFileList(ListHead));
1449 } else {
1450 //
jcarsey94b17fa2009-05-07 18:46:18 +00001451 // Since this is EFI Shell version we need to free our internally made copy
1452 // of the list
1453 //
jcarsey9b3bf082009-06-23 21:15:07 +00001454 for ( Node = GetFirstNode(&(*ListHead)->Link)
1455 ; IsListEmpty(&(*ListHead)->Link) == FALSE
1456 ; Node = GetFirstNode(&(*ListHead)->Link)) {
jcarsey94b17fa2009-05-07 18:46:18 +00001457 RemoveEntryList(Node);
jcarseyd2b45642009-05-11 18:02:16 +00001458 ((EFI_SHELL_FILE_INFO_NO_CONST*)Node)->Handle->Close(((EFI_SHELL_FILE_INFO_NO_CONST*)Node)->Handle);
jcarsey94b17fa2009-05-07 18:46:18 +00001459 FreePool(((EFI_SHELL_FILE_INFO_NO_CONST*)Node)->FullName);
1460 FreePool(((EFI_SHELL_FILE_INFO_NO_CONST*)Node)->FileName);
1461 FreePool(((EFI_SHELL_FILE_INFO_NO_CONST*)Node)->Info);
1462 FreePool((EFI_SHELL_FILE_INFO_NO_CONST*)Node);
1463 }
1464 return EFI_SUCCESS;
1465 }
1466}
1467
jcarsey125c2cf2009-11-18 21:36:50 +00001468/**
1469 Find a file by searching the CWD and then the path.
1470
jcarseyb3011f42010-01-11 21:49:04 +00001471 If FileName is NULL then ASSERT.
jcarsey125c2cf2009-11-18 21:36:50 +00001472
jcarseyb3011f42010-01-11 21:49:04 +00001473 If the return value is not NULL then the memory must be caller freed.
jcarsey125c2cf2009-11-18 21:36:50 +00001474
1475 @param FileName Filename string.
1476
1477 @retval NULL the file was not found
1478 @return !NULL the full path to the file.
1479**/
1480CHAR16 *
1481EFIAPI
1482ShellFindFilePath (
1483 IN CONST CHAR16 *FileName
1484 )
1485{
1486 CONST CHAR16 *Path;
1487 EFI_FILE_HANDLE Handle;
1488 EFI_STATUS Status;
1489 CHAR16 *RetVal;
1490 CHAR16 *TestPath;
1491 CONST CHAR16 *Walker;
jcarsey36a9d672009-11-20 21:13:41 +00001492 UINTN Size;
jcarsey125c2cf2009-11-18 21:36:50 +00001493
1494 RetVal = NULL;
1495
1496 Path = ShellGetEnvironmentVariable(L"cwd");
1497 if (Path != NULL) {
jcarsey36a9d672009-11-20 21:13:41 +00001498 Size = StrSize(Path);
1499 Size += StrSize(FileName);
1500 TestPath = AllocateZeroPool(Size);
jcarsey125c2cf2009-11-18 21:36:50 +00001501 StrCpy(TestPath, Path);
1502 StrCat(TestPath, FileName);
1503 Status = ShellOpenFileByName(TestPath, &Handle, EFI_FILE_MODE_READ, 0);
1504 if (!EFI_ERROR(Status)){
1505 RetVal = StrnCatGrow(&RetVal, NULL, TestPath, 0);
1506 ShellCloseFile(&Handle);
1507 FreePool(TestPath);
1508 return (RetVal);
1509 }
1510 FreePool(TestPath);
1511 }
1512 Path = ShellGetEnvironmentVariable(L"path");
1513 if (Path != NULL) {
jcarsey36a9d672009-11-20 21:13:41 +00001514 Size = StrSize(Path);
1515 Size += StrSize(FileName);
1516 TestPath = AllocateZeroPool(Size);
jcarsey125c2cf2009-11-18 21:36:50 +00001517 Walker = (CHAR16*)Path;
1518 do {
1519 CopyMem(TestPath, Walker, StrSize(Walker));
1520 if (StrStr(TestPath, L";") != NULL) {
1521 *(StrStr(TestPath, L";")) = CHAR_NULL;
1522 }
1523 StrCat(TestPath, FileName);
1524 if (StrStr(Walker, L";") != NULL) {
1525 Walker = StrStr(Walker, L";") + 1;
1526 } else {
1527 Walker = NULL;
1528 }
1529 Status = ShellOpenFileByName(TestPath, &Handle, EFI_FILE_MODE_READ, 0);
1530 if (!EFI_ERROR(Status)){
1531 RetVal = StrnCatGrow(&RetVal, NULL, TestPath, 0);
1532 ShellCloseFile(&Handle);
1533 break;
1534 }
1535 } while (Walker != NULL && Walker[0] != CHAR_NULL);
1536 FreePool(TestPath);
1537 }
1538 return (RetVal);
1539}
1540
jcarseyb3011f42010-01-11 21:49:04 +00001541/**
1542 Find a file by searching the CWD and then the path with a variable set of file
1543 extensions. If the file is not found it will append each extension in the list
1544 in the order provided and return the first one that is successful.
1545
1546 If FileName is NULL, then ASSERT.
1547 If FileExtension is NULL, then behavior is identical to ShellFindFilePath.
1548
1549 If the return value is not NULL then the memory must be caller freed.
1550
1551 @param[in] FileName Filename string.
1552 @param[in] FileExtension Semi-colon delimeted list of possible extensions.
1553
1554 @retval NULL The file was not found.
1555 @retval !NULL The path to the file.
1556**/
1557CHAR16 *
1558EFIAPI
1559ShellFindFilePathEx (
1560 IN CONST CHAR16 *FileName,
1561 IN CONST CHAR16 *FileExtension
1562 )
1563{
1564 CHAR16 *TestPath;
1565 CHAR16 *RetVal;
1566 CONST CHAR16 *ExtensionWalker;
jcarsey9e926b62010-01-14 20:26:39 +00001567 UINTN Size;
jcarseyb3011f42010-01-11 21:49:04 +00001568 ASSERT(FileName != NULL);
1569 if (FileExtension == NULL) {
1570 return (ShellFindFilePath(FileName));
1571 }
1572 RetVal = ShellFindFilePath(FileName);
1573 if (RetVal != NULL) {
1574 return (RetVal);
1575 }
jcarsey9e926b62010-01-14 20:26:39 +00001576 Size = StrSize(FileName);
1577 Size += StrSize(FileExtension);
1578 TestPath = AllocateZeroPool(Size);
jcarseyb3011f42010-01-11 21:49:04 +00001579 for (ExtensionWalker = FileExtension ; ; ExtensionWalker = StrStr(ExtensionWalker, L";") + 1 ){
1580 StrCpy(TestPath, FileName);
1581 StrCat(TestPath, ExtensionWalker);
1582 if (StrStr(TestPath, L";") != NULL) {
1583 *(StrStr(TestPath, L";")) = CHAR_NULL;
1584 }
1585 RetVal = ShellFindFilePath(TestPath);
1586 if (RetVal != NULL) {
1587 break;
1588 }
1589 //
1590 // Must be after first loop...
1591 //
1592 if (StrStr(ExtensionWalker, L";") == NULL) {
1593 break;
1594 }
1595 }
1596 FreePool(TestPath);
1597 return (RetVal);
1598}
1599
jcarsey94b17fa2009-05-07 18:46:18 +00001600typedef struct {
jcarsey9b3bf082009-06-23 21:15:07 +00001601 LIST_ENTRY Link;
jcarsey94b17fa2009-05-07 18:46:18 +00001602 CHAR16 *Name;
1603 ParamType Type;
1604 CHAR16 *Value;
1605 UINTN OriginalPosition;
1606} SHELL_PARAM_PACKAGE;
1607
1608/**
1609 Checks the list of valid arguments and returns TRUE if the item was found. If the
1610 return value is TRUE then the type parameter is set also.
1611
1612 if CheckList is NULL then ASSERT();
1613 if Name is NULL then ASSERT();
1614 if Type is NULL then ASSERT();
1615
1616 @param Type pointer to type of parameter if it was found
1617 @param Name pointer to Name of parameter found
1618 @param CheckList List to check against
1619
1620 @retval TRUE the Parameter was found. Type is valid.
1621 @retval FALSE the Parameter was not found. Type is not valid.
1622**/
1623BOOLEAN
1624EFIAPI
jcarseyd2b45642009-05-11 18:02:16 +00001625InternalIsOnCheckList (
jcarsey94b17fa2009-05-07 18:46:18 +00001626 IN CONST CHAR16 *Name,
1627 IN CONST SHELL_PARAM_ITEM *CheckList,
1628 OUT ParamType *Type
jcarsey2247dde2009-11-09 18:08:58 +00001629 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00001630 SHELL_PARAM_ITEM *TempListItem;
1631
1632 //
1633 // ASSERT that all 3 pointer parameters aren't NULL
1634 //
1635 ASSERT(CheckList != NULL);
1636 ASSERT(Type != NULL);
1637 ASSERT(Name != NULL);
1638
1639 //
jcarseyd2b45642009-05-11 18:02:16 +00001640 // question mark and page break mode are always supported
1641 //
1642 if ((StrCmp(Name, L"-?") == 0) ||
1643 (StrCmp(Name, L"-b") == 0)
1644 ) {
1645 return (TRUE);
1646 }
1647
1648 //
jcarsey94b17fa2009-05-07 18:46:18 +00001649 // Enumerate through the list
1650 //
1651 for (TempListItem = (SHELL_PARAM_ITEM*)CheckList ; TempListItem->Name != NULL ; TempListItem++) {
1652 //
jcarsey9eb53ac2009-07-08 17:26:58 +00001653 // If the Type is TypeStart only check the first characters of the passed in param
1654 // If it matches set the type and return TRUE
jcarsey94b17fa2009-05-07 18:46:18 +00001655 //
jcarsey9eb53ac2009-07-08 17:26:58 +00001656 if (TempListItem->Type == TypeStart && StrnCmp(Name, TempListItem->Name, StrLen(TempListItem->Name)) == 0) {
1657 *Type = TempListItem->Type;
1658 return (TRUE);
1659 } else if (StrCmp(Name, TempListItem->Name) == 0) {
jcarsey94b17fa2009-05-07 18:46:18 +00001660 *Type = TempListItem->Type;
1661 return (TRUE);
1662 }
1663 }
jcarsey2247dde2009-11-09 18:08:58 +00001664
jcarsey94b17fa2009-05-07 18:46:18 +00001665 return (FALSE);
1666}
1667/**
jcarseyd2b45642009-05-11 18:02:16 +00001668 Checks the string for indicators of "flag" status. this is a leading '/', '-', or '+'
jcarsey94b17fa2009-05-07 18:46:18 +00001669
1670 @param Name pointer to Name of parameter found
1671
1672 @retval TRUE the Parameter is a flag.
1673 @retval FALSE the Parameter not a flag
1674**/
1675BOOLEAN
1676EFIAPI
jcarseyd2b45642009-05-11 18:02:16 +00001677InternalIsFlag (
jcarsey2247dde2009-11-09 18:08:58 +00001678 IN CONST CHAR16 *Name,
1679 IN BOOLEAN AlwaysAllowNumbers
jcarsey94b17fa2009-05-07 18:46:18 +00001680 )
1681{
1682 //
1683 // ASSERT that Name isn't NULL
1684 //
1685 ASSERT(Name != NULL);
1686
1687 //
jcarsey2247dde2009-11-09 18:08:58 +00001688 // If we accept numbers then dont return TRUE. (they will be values)
1689 //
jcarsey969c7832010-01-13 16:46:33 +00001690 if (((Name[0] == L'-' || Name[0] == L'+') && ShellIsHexaDecimalDigitCharacter(Name[1])) && AlwaysAllowNumbers != FALSE) {
jcarsey2247dde2009-11-09 18:08:58 +00001691 return (FALSE);
1692 }
1693
1694 //
jcarsey94b17fa2009-05-07 18:46:18 +00001695 // If the Name has a / or - as the first character return TRUE
1696 //
jcarseyd2b45642009-05-11 18:02:16 +00001697 if ((Name[0] == L'/') ||
1698 (Name[0] == L'-') ||
1699 (Name[0] == L'+')
1700 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00001701 return (TRUE);
1702 }
1703 return (FALSE);
1704}
1705
1706/**
1707 Checks the command line arguments passed against the list of valid ones.
1708
1709 If no initialization is required, then return RETURN_SUCCESS.
1710
1711 @param CheckList pointer to list of parameters to check
1712 @param CheckPackage pointer to pointer to list checked values
1713 @param ProblemParam optional pointer to pointer to unicode string for
jcarseyd2b45642009-05-11 18:02:16 +00001714 the paramater that caused failure. If used then the
1715 caller is responsible for freeing the memory.
jcarsey94b17fa2009-05-07 18:46:18 +00001716 @param AutoPageBreak will automatically set PageBreakEnabled for "b" parameter
1717 @param Argc Count of parameters in Argv
1718 @param Argv pointer to array of parameters
1719
1720 @retval EFI_SUCCESS The operation completed sucessfully.
1721 @retval EFI_OUT_OF_RESOURCES A memory allocation failed
1722 @retval EFI_INVALID_PARAMETER A parameter was invalid
1723 @retval EFI_VOLUME_CORRUPTED the command line was corrupt. an argument was
1724 duplicated. the duplicated command line argument
1725 was returned in ProblemParam if provided.
1726 @retval EFI_NOT_FOUND a argument required a value that was missing.
1727 the invalid command line argument was returned in
1728 ProblemParam if provided.
1729**/
jcarsey2247dde2009-11-09 18:08:58 +00001730STATIC
jcarsey94b17fa2009-05-07 18:46:18 +00001731EFI_STATUS
1732EFIAPI
1733InternalCommandLineParse (
1734 IN CONST SHELL_PARAM_ITEM *CheckList,
1735 OUT LIST_ENTRY **CheckPackage,
1736 OUT CHAR16 **ProblemParam OPTIONAL,
1737 IN BOOLEAN AutoPageBreak,
1738 IN CONST CHAR16 **Argv,
jcarsey2247dde2009-11-09 18:08:58 +00001739 IN UINTN Argc,
1740 IN BOOLEAN AlwaysAllowNumbers
1741 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00001742 UINTN LoopCounter;
jcarsey94b17fa2009-05-07 18:46:18 +00001743 ParamType CurrentItemType;
1744 SHELL_PARAM_PACKAGE *CurrentItemPackage;
jcarsey125c2cf2009-11-18 21:36:50 +00001745 UINTN GetItemValue;
1746 UINTN ValueSize;
jcarsey94b17fa2009-05-07 18:46:18 +00001747
1748 CurrentItemPackage = NULL;
jcarsey2247dde2009-11-09 18:08:58 +00001749 mTotalParameterCount = 0;
jcarsey125c2cf2009-11-18 21:36:50 +00001750 GetItemValue = 0;
1751 ValueSize = 0;
jcarsey94b17fa2009-05-07 18:46:18 +00001752
1753 //
1754 // If there is only 1 item we dont need to do anything
1755 //
1756 if (Argc <= 1) {
1757 *CheckPackage = NULL;
1758 return (EFI_SUCCESS);
1759 }
1760
1761 //
jcarsey2247dde2009-11-09 18:08:58 +00001762 // ASSERTs
1763 //
1764 ASSERT(CheckList != NULL);
1765 ASSERT(Argv != NULL);
1766
1767 //
jcarsey94b17fa2009-05-07 18:46:18 +00001768 // initialize the linked list
1769 //
1770 *CheckPackage = (LIST_ENTRY*)AllocateZeroPool(sizeof(LIST_ENTRY));
1771 InitializeListHead(*CheckPackage);
1772
1773 //
1774 // loop through each of the arguments
1775 //
1776 for (LoopCounter = 0 ; LoopCounter < Argc ; ++LoopCounter) {
1777 if (Argv[LoopCounter] == NULL) {
1778 //
1779 // do nothing for NULL argv
1780 //
jcarseyb3011f42010-01-11 21:49:04 +00001781 } else if (InternalIsOnCheckList(Argv[LoopCounter], CheckList, &CurrentItemType) != FALSE) {
jcarsey94b17fa2009-05-07 18:46:18 +00001782 //
jcarsey2247dde2009-11-09 18:08:58 +00001783 // We might have leftover if last parameter didnt have optional value
1784 //
jcarsey125c2cf2009-11-18 21:36:50 +00001785 if (GetItemValue != 0) {
1786 GetItemValue = 0;
jcarsey2247dde2009-11-09 18:08:58 +00001787 InsertHeadList(*CheckPackage, &CurrentItemPackage->Link);
1788 }
1789 //
jcarsey94b17fa2009-05-07 18:46:18 +00001790 // this is a flag
1791 //
1792 CurrentItemPackage = AllocatePool(sizeof(SHELL_PARAM_PACKAGE));
1793 ASSERT(CurrentItemPackage != NULL);
1794 CurrentItemPackage->Name = AllocatePool(StrSize(Argv[LoopCounter]));
1795 ASSERT(CurrentItemPackage->Name != NULL);
1796 StrCpy(CurrentItemPackage->Name, Argv[LoopCounter]);
1797 CurrentItemPackage->Type = CurrentItemType;
1798 CurrentItemPackage->OriginalPosition = (UINTN)(-1);
jcarseyb1f95a02009-06-16 00:23:19 +00001799 CurrentItemPackage->Value = NULL;
jcarsey94b17fa2009-05-07 18:46:18 +00001800
1801 //
1802 // Does this flag require a value
1803 //
jcarsey125c2cf2009-11-18 21:36:50 +00001804 switch (CurrentItemPackage->Type) {
jcarsey94b17fa2009-05-07 18:46:18 +00001805 //
jcarsey125c2cf2009-11-18 21:36:50 +00001806 // possibly trigger the next loop(s) to populate the value of this item
1807 //
1808 case TypeValue:
1809 GetItemValue = 1;
1810 ValueSize = 0;
1811 break;
1812 case TypeDoubleValue:
1813 GetItemValue = 2;
1814 ValueSize = 0;
1815 break;
1816 case TypeMaxValue:
1817 GetItemValue = (UINTN)(-1);
1818 ValueSize = 0;
1819 break;
1820 default:
1821 //
1822 // this item has no value expected; we are done
1823 //
1824 InsertHeadList(*CheckPackage, &CurrentItemPackage->Link);
1825 ASSERT(GetItemValue == 0);
1826 break;
jcarsey94b17fa2009-05-07 18:46:18 +00001827 }
jcarsey125c2cf2009-11-18 21:36:50 +00001828 } else if (GetItemValue != 0 && InternalIsFlag(Argv[LoopCounter], AlwaysAllowNumbers) == FALSE) {
jcarseyb1f95a02009-06-16 00:23:19 +00001829 ASSERT(CurrentItemPackage != NULL);
1830 //
jcarsey125c2cf2009-11-18 21:36:50 +00001831 // get the item VALUE for a previous flag
jcarseyb1f95a02009-06-16 00:23:19 +00001832 //
jcarsey125c2cf2009-11-18 21:36:50 +00001833 CurrentItemPackage->Value = ReallocatePool(ValueSize, ValueSize + StrSize(Argv[LoopCounter]) + sizeof(CHAR16), CurrentItemPackage->Value);
jcarseyb1f95a02009-06-16 00:23:19 +00001834 ASSERT(CurrentItemPackage->Value != NULL);
jcarsey125c2cf2009-11-18 21:36:50 +00001835 if (ValueSize == 0) {
1836 StrCpy(CurrentItemPackage->Value, Argv[LoopCounter]);
1837 } else {
1838 StrCat(CurrentItemPackage->Value, L" ");
1839 StrCat(CurrentItemPackage->Value, Argv[LoopCounter]);
1840 }
1841 ValueSize += StrSize(Argv[LoopCounter]) + sizeof(CHAR16);
1842 GetItemValue--;
1843 if (GetItemValue == 0) {
1844 InsertHeadList(*CheckPackage, &CurrentItemPackage->Link);
1845 }
jcarsey2247dde2009-11-09 18:08:58 +00001846 } else if (InternalIsFlag(Argv[LoopCounter], AlwaysAllowNumbers) == FALSE) {
jcarseyb1f95a02009-06-16 00:23:19 +00001847 //
1848 // add this one as a non-flag
1849 //
1850 CurrentItemPackage = AllocatePool(sizeof(SHELL_PARAM_PACKAGE));
1851 ASSERT(CurrentItemPackage != NULL);
1852 CurrentItemPackage->Name = NULL;
1853 CurrentItemPackage->Type = TypePosition;
1854 CurrentItemPackage->Value = AllocatePool(StrSize(Argv[LoopCounter]));
1855 ASSERT(CurrentItemPackage->Value != NULL);
1856 StrCpy(CurrentItemPackage->Value, Argv[LoopCounter]);
jcarsey2247dde2009-11-09 18:08:58 +00001857 CurrentItemPackage->OriginalPosition = mTotalParameterCount++;
jcarsey9b3bf082009-06-23 21:15:07 +00001858 InsertHeadList(*CheckPackage, &CurrentItemPackage->Link);
jcarsey94b17fa2009-05-07 18:46:18 +00001859 } else if (ProblemParam) {
1860 //
1861 // this was a non-recognised flag... error!
1862 //
jcarseyd2b45642009-05-11 18:02:16 +00001863 *ProblemParam = AllocatePool(StrSize(Argv[LoopCounter]));
1864 ASSERT(*ProblemParam != NULL);
1865 StrCpy(*ProblemParam, Argv[LoopCounter]);
jcarsey94b17fa2009-05-07 18:46:18 +00001866 ShellCommandLineFreeVarList(*CheckPackage);
1867 *CheckPackage = NULL;
1868 return (EFI_VOLUME_CORRUPTED);
1869 } else {
1870 ShellCommandLineFreeVarList(*CheckPackage);
1871 *CheckPackage = NULL;
1872 return (EFI_VOLUME_CORRUPTED);
1873 }
1874 }
jcarsey125c2cf2009-11-18 21:36:50 +00001875 if (GetItemValue != 0) {
1876 GetItemValue = 0;
1877 InsertHeadList(*CheckPackage, &CurrentItemPackage->Link);
1878 }
jcarsey94b17fa2009-05-07 18:46:18 +00001879 //
1880 // support for AutoPageBreak
1881 //
1882 if (AutoPageBreak && ShellCommandLineGetFlag(*CheckPackage, L"-b")) {
1883 ShellSetPageBreakMode(TRUE);
1884 }
1885 return (EFI_SUCCESS);
1886}
1887
1888/**
1889 Checks the command line arguments passed against the list of valid ones.
1890 Optionally removes NULL values first.
1891
1892 If no initialization is required, then return RETURN_SUCCESS.
1893
1894 @param CheckList pointer to list of parameters to check
1895 @param CheckPackage pointer to pointer to list checked values
1896 @param ProblemParam optional pointer to pointer to unicode string for
1897 the paramater that caused failure.
1898 @param AutoPageBreak will automatically set PageBreakEnabled for "b" parameter
1899
1900 @retval EFI_SUCCESS The operation completed sucessfully.
1901 @retval EFI_OUT_OF_RESOURCES A memory allocation failed
1902 @retval EFI_INVALID_PARAMETER A parameter was invalid
1903 @retval EFI_VOLUME_CORRUPTED the command line was corrupt. an argument was
1904 duplicated. the duplicated command line argument
1905 was returned in ProblemParam if provided.
1906 @retval EFI_DEVICE_ERROR the commands contained 2 opposing arguments. one
1907 of the command line arguments was returned in
1908 ProblemParam if provided.
1909 @retval EFI_NOT_FOUND a argument required a value that was missing.
1910 the invalid command line argument was returned in
1911 ProblemParam if provided.
1912**/
1913EFI_STATUS
1914EFIAPI
jcarsey2247dde2009-11-09 18:08:58 +00001915ShellCommandLineParseEx (
jcarsey94b17fa2009-05-07 18:46:18 +00001916 IN CONST SHELL_PARAM_ITEM *CheckList,
1917 OUT LIST_ENTRY **CheckPackage,
1918 OUT CHAR16 **ProblemParam OPTIONAL,
jcarsey2247dde2009-11-09 18:08:58 +00001919 IN BOOLEAN AutoPageBreak,
1920 IN BOOLEAN AlwaysAllowNumbers
1921 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00001922 //
1923 // ASSERT that CheckList and CheckPackage aren't NULL
1924 //
1925 ASSERT(CheckList != NULL);
1926 ASSERT(CheckPackage != NULL);
1927
1928 //
1929 // Check for UEFI Shell 2.0 protocols
1930 //
1931 if (mEfiShellParametersProtocol != NULL) {
1932 return (InternalCommandLineParse(CheckList,
1933 CheckPackage,
1934 ProblemParam,
1935 AutoPageBreak,
jljusten08d7f8e2009-06-15 18:42:13 +00001936 (CONST CHAR16**) mEfiShellParametersProtocol->Argv,
jcarsey2247dde2009-11-09 18:08:58 +00001937 mEfiShellParametersProtocol->Argc,
1938 AlwaysAllowNumbers));
jcarsey94b17fa2009-05-07 18:46:18 +00001939 }
1940
1941 //
1942 // ASSERT That EFI Shell is not required
1943 //
1944 ASSERT (mEfiShellInterface != NULL);
1945 return (InternalCommandLineParse(CheckList,
1946 CheckPackage,
1947 ProblemParam,
1948 AutoPageBreak,
jljusten08d7f8e2009-06-15 18:42:13 +00001949 (CONST CHAR16**) mEfiShellInterface->Argv,
jcarsey2247dde2009-11-09 18:08:58 +00001950 mEfiShellInterface->Argc,
1951 AlwaysAllowNumbers));
jcarsey94b17fa2009-05-07 18:46:18 +00001952}
1953
1954/**
1955 Frees shell variable list that was returned from ShellCommandLineParse.
1956
1957 This function will free all the memory that was used for the CheckPackage
1958 list of postprocessed shell arguments.
1959
1960 this function has no return value.
1961
1962 if CheckPackage is NULL, then return
1963
1964 @param CheckPackage the list to de-allocate
1965 **/
1966VOID
1967EFIAPI
1968ShellCommandLineFreeVarList (
1969 IN LIST_ENTRY *CheckPackage
jcarsey2247dde2009-11-09 18:08:58 +00001970 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00001971 LIST_ENTRY *Node;
1972
1973 //
1974 // check for CheckPackage == NULL
1975 //
1976 if (CheckPackage == NULL) {
1977 return;
1978 }
1979
1980 //
1981 // for each node in the list
1982 //
jcarsey9eb53ac2009-07-08 17:26:58 +00001983 for ( Node = GetFirstNode(CheckPackage)
jcarsey2247dde2009-11-09 18:08:58 +00001984 ; IsListEmpty(CheckPackage) == FALSE
jcarsey9eb53ac2009-07-08 17:26:58 +00001985 ; Node = GetFirstNode(CheckPackage)
1986 ){
jcarsey94b17fa2009-05-07 18:46:18 +00001987 //
1988 // Remove it from the list
1989 //
1990 RemoveEntryList(Node);
1991
1992 //
1993 // if it has a name free the name
1994 //
1995 if (((SHELL_PARAM_PACKAGE*)Node)->Name != NULL) {
1996 FreePool(((SHELL_PARAM_PACKAGE*)Node)->Name);
1997 }
1998
1999 //
2000 // if it has a value free the value
2001 //
2002 if (((SHELL_PARAM_PACKAGE*)Node)->Value != NULL) {
2003 FreePool(((SHELL_PARAM_PACKAGE*)Node)->Value);
2004 }
2005
2006 //
2007 // free the node structure
2008 //
2009 FreePool((SHELL_PARAM_PACKAGE*)Node);
2010 }
2011 //
2012 // free the list head node
2013 //
2014 FreePool(CheckPackage);
2015}
2016/**
2017 Checks for presence of a flag parameter
2018
2019 flag arguments are in the form of "-<Key>" or "/<Key>", but do not have a value following the key
2020
2021 if CheckPackage is NULL then return FALSE.
2022 if KeyString is NULL then ASSERT()
2023
2024 @param CheckPackage The package of parsed command line arguments
2025 @param KeyString the Key of the command line argument to check for
2026
2027 @retval TRUE the flag is on the command line
2028 @retval FALSE the flag is not on the command line
2029 **/
2030BOOLEAN
2031EFIAPI
2032ShellCommandLineGetFlag (
2033 IN CONST LIST_ENTRY *CheckPackage,
2034 IN CHAR16 *KeyString
jcarsey2247dde2009-11-09 18:08:58 +00002035 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00002036 LIST_ENTRY *Node;
2037
2038 //
2039 // ASSERT that both CheckPackage and KeyString aren't NULL
2040 //
2041 ASSERT(KeyString != NULL);
2042
2043 //
2044 // return FALSE for no package
2045 //
2046 if (CheckPackage == NULL) {
2047 return (FALSE);
2048 }
2049
2050 //
2051 // enumerate through the list of parametrs
2052 //
jcarsey9eb53ac2009-07-08 17:26:58 +00002053 for ( Node = GetFirstNode(CheckPackage)
2054 ; !IsNull (CheckPackage, Node)
2055 ; Node = GetNextNode(CheckPackage, Node)
2056 ){
jcarsey94b17fa2009-05-07 18:46:18 +00002057 //
2058 // If the Name matches, return TRUE (and there may be NULL name)
2059 //
2060 if (((SHELL_PARAM_PACKAGE*)Node)->Name != NULL) {
jcarsey9eb53ac2009-07-08 17:26:58 +00002061 //
2062 // If Type is TypeStart then only compare the begining of the strings
2063 //
2064 if ( ((SHELL_PARAM_PACKAGE*)Node)->Type == TypeStart
2065 && StrnCmp(KeyString, ((SHELL_PARAM_PACKAGE*)Node)->Name, StrLen(KeyString)) == 0
2066 ){
2067 return (TRUE);
2068 } else if (StrCmp(KeyString, ((SHELL_PARAM_PACKAGE*)Node)->Name) == 0) {
jcarsey94b17fa2009-05-07 18:46:18 +00002069 return (TRUE);
2070 }
2071 }
2072 }
2073 return (FALSE);
2074}
2075/**
2076 returns value from command line argument
2077
2078 value parameters are in the form of "-<Key> value" or "/<Key> value"
2079
2080 if CheckPackage is NULL, then return NULL;
2081
2082 @param CheckPackage The package of parsed command line arguments
2083 @param KeyString the Key of the command line argument to check for
2084
2085 @retval NULL the flag is not on the command line
2086 @return !=NULL pointer to unicode string of the value
2087 **/
2088CONST CHAR16*
2089EFIAPI
2090ShellCommandLineGetValue (
2091 IN CONST LIST_ENTRY *CheckPackage,
2092 IN CHAR16 *KeyString
jcarsey2247dde2009-11-09 18:08:58 +00002093 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00002094 LIST_ENTRY *Node;
2095
2096 //
2097 // check for CheckPackage == NULL
2098 //
2099 if (CheckPackage == NULL) {
2100 return (NULL);
2101 }
2102
2103 //
2104 // enumerate through the list of parametrs
2105 //
jcarsey9eb53ac2009-07-08 17:26:58 +00002106 for ( Node = GetFirstNode(CheckPackage)
2107 ; !IsNull (CheckPackage, Node)
2108 ; Node = GetNextNode(CheckPackage, Node)
2109 ){
jcarsey94b17fa2009-05-07 18:46:18 +00002110 //
2111 // If the Name matches, return the value (name can be NULL)
2112 //
2113 if (((SHELL_PARAM_PACKAGE*)Node)->Name != NULL) {
jcarsey9eb53ac2009-07-08 17:26:58 +00002114 //
2115 // If Type is TypeStart then only compare the begining of the strings
2116 //
2117 if ( ((SHELL_PARAM_PACKAGE*)Node)->Type == TypeStart
2118 && StrnCmp(KeyString, ((SHELL_PARAM_PACKAGE*)Node)->Name, StrLen(KeyString)) == 0
2119 ){
2120 //
2121 // return the string part after the flag
2122 //
2123 return (((SHELL_PARAM_PACKAGE*)Node)->Name + StrLen(KeyString));
2124 } else if (StrCmp(KeyString, ((SHELL_PARAM_PACKAGE*)Node)->Name) == 0) {
2125 //
2126 // return the value
2127 //
jcarsey94b17fa2009-05-07 18:46:18 +00002128 return (((SHELL_PARAM_PACKAGE*)Node)->Value);
2129 }
2130 }
2131 }
2132 return (NULL);
2133}
2134/**
2135 returns raw value from command line argument
2136
2137 raw value parameters are in the form of "value" in a specific position in the list
2138
2139 if CheckPackage is NULL, then return NULL;
2140
2141 @param CheckPackage The package of parsed command line arguments
2142 @param Position the position of the value
2143
2144 @retval NULL the flag is not on the command line
2145 @return !=NULL pointer to unicode string of the value
2146 **/
2147CONST CHAR16*
2148EFIAPI
2149ShellCommandLineGetRawValue (
2150 IN CONST LIST_ENTRY *CheckPackage,
2151 IN UINT32 Position
jcarsey2247dde2009-11-09 18:08:58 +00002152 ) {
jcarsey94b17fa2009-05-07 18:46:18 +00002153 LIST_ENTRY *Node;
2154
2155 //
2156 // check for CheckPackage == NULL
2157 //
2158 if (CheckPackage == NULL) {
2159 return (NULL);
2160 }
2161
2162 //
2163 // enumerate through the list of parametrs
2164 //
jcarseyb82bfcc2009-06-29 16:28:23 +00002165 for ( Node = GetFirstNode(CheckPackage)
2166 ; !IsNull (CheckPackage, Node)
2167 ; Node = GetNextNode(CheckPackage, Node)
2168 ){
jcarsey94b17fa2009-05-07 18:46:18 +00002169 //
2170 // If the position matches, return the value
2171 //
2172 if (((SHELL_PARAM_PACKAGE*)Node)->OriginalPosition == Position) {
2173 return (((SHELL_PARAM_PACKAGE*)Node)->Value);
2174 }
2175 }
2176 return (NULL);
jcarseyb1f95a02009-06-16 00:23:19 +00002177}
jcarsey2247dde2009-11-09 18:08:58 +00002178
2179/**
2180 returns the number of command line value parameters that were parsed.
2181
2182 this will not include flags.
2183
2184 @retval (UINTN)-1 No parsing has ocurred
2185 @return other The number of value parameters found
2186**/
2187UINTN
2188EFIAPI
2189ShellCommandLineGetCount(
2190 VOID
jcarsey125c2cf2009-11-18 21:36:50 +00002191 )
2192{
jcarsey2247dde2009-11-09 18:08:58 +00002193 return (mTotalParameterCount);
2194}
2195
jcarsey975136a2009-06-16 19:03:54 +00002196/**
jcarsey36a9d672009-11-20 21:13:41 +00002197 Determins if a parameter is duplicated.
2198
2199 If Param is not NULL then it will point to a callee allocated string buffer
2200 with the parameter value if a duplicate is found.
2201
2202 If CheckPackage is NULL, then ASSERT.
2203
2204 @param[in] CheckPackage The package of parsed command line arguments.
2205 @param[out] Param Upon finding one, a pointer to the duplicated parameter.
2206
2207 @retval EFI_SUCCESS No parameters were duplicated.
2208 @retval EFI_DEVICE_ERROR A duplicate was found.
2209 **/
2210EFI_STATUS
2211EFIAPI
2212ShellCommandLineCheckDuplicate (
2213 IN CONST LIST_ENTRY *CheckPackage,
2214 OUT CHAR16 **Param
2215 )
2216{
2217 LIST_ENTRY *Node1;
2218 LIST_ENTRY *Node2;
2219
2220 ASSERT(CheckPackage != NULL);
2221
2222 for ( Node1 = GetFirstNode(CheckPackage)
2223 ; !IsNull (CheckPackage, Node1)
2224 ; Node1 = GetNextNode(CheckPackage, Node1)
2225 ){
2226 for ( Node2 = GetNextNode(CheckPackage, Node1)
2227 ; !IsNull (CheckPackage, Node2)
2228 ; Node2 = GetNextNode(CheckPackage, Node2)
2229 ){
2230 if (StrCmp(((SHELL_PARAM_PACKAGE*)Node1)->Name, ((SHELL_PARAM_PACKAGE*)Node2)->Name) == 0) {
2231 if (Param != NULL) {
2232 *Param = NULL;
2233 *Param = StrnCatGrow(Param, NULL, ((SHELL_PARAM_PACKAGE*)Node1)->Name, 0);
2234 }
2235 return (EFI_DEVICE_ERROR);
2236 }
2237 }
2238 }
2239 return (EFI_SUCCESS);
2240}
2241
2242/**
jcarseyb3011f42010-01-11 21:49:04 +00002243 This is a find and replace function. Upon successful return the NewString is a copy of
jcarsey975136a2009-06-16 19:03:54 +00002244 SourceString with each instance of FindTarget replaced with ReplaceWith.
2245
jcarseyb3011f42010-01-11 21:49:04 +00002246 If SourceString and NewString overlap the behavior is undefined.
2247
jcarsey975136a2009-06-16 19:03:54 +00002248 If the string would grow bigger than NewSize it will halt and return error.
2249
2250 @param[in] SourceString String with source buffer
jcarseyb82bfcc2009-06-29 16:28:23 +00002251 @param[in,out] NewString String with resultant buffer
jcarsey975136a2009-06-16 19:03:54 +00002252 @param[in] NewSize Size in bytes of NewString
2253 @param[in] FindTarget String to look for
2254 @param[in[ ReplaceWith String to replace FindTarget with
jcarsey969c7832010-01-13 16:46:33 +00002255 @param[in] SkipPreCarrot If TRUE will skip a FindTarget that has a '^'
2256 immediately before it.
jcarsey975136a2009-06-16 19:03:54 +00002257
jcarsey969c7832010-01-13 16:46:33 +00002258 @retval EFI_INVALID_PARAMETER SourceString was NULL.
2259 @retval EFI_INVALID_PARAMETER NewString was NULL.
2260 @retval EFI_INVALID_PARAMETER FindTarget was NULL.
2261 @retval EFI_INVALID_PARAMETER ReplaceWith was NULL.
2262 @retval EFI_INVALID_PARAMETER FindTarget had length < 1.
2263 @retval EFI_INVALID_PARAMETER SourceString had length < 1.
jcarsey975136a2009-06-16 19:03:54 +00002264 @retval EFI_BUFFER_TOO_SMALL NewSize was less than the minimum size to hold
jcarsey969c7832010-01-13 16:46:33 +00002265 the new string (truncation occurred).
2266 @retval EFI_SUCCESS the string was sucessfully copied with replacement.
jcarsey975136a2009-06-16 19:03:54 +00002267**/
2268
2269EFI_STATUS
2270EFIAPI
jcarsey969c7832010-01-13 16:46:33 +00002271ShellCopySearchAndReplace2(
jcarsey975136a2009-06-16 19:03:54 +00002272 IN CHAR16 CONST *SourceString,
2273 IN CHAR16 *NewString,
2274 IN UINTN NewSize,
2275 IN CONST CHAR16 *FindTarget,
jcarsey969c7832010-01-13 16:46:33 +00002276 IN CONST CHAR16 *ReplaceWith,
2277 IN CONST BOOLEAN SkipPreCarrot
jcarsey2247dde2009-11-09 18:08:58 +00002278 )
2279{
jcarsey01582942009-07-10 19:46:17 +00002280 UINTN Size;
jcarsey975136a2009-06-16 19:03:54 +00002281 if ( (SourceString == NULL)
2282 || (NewString == NULL)
2283 || (FindTarget == NULL)
2284 || (ReplaceWith == NULL)
2285 || (StrLen(FindTarget) < 1)
2286 || (StrLen(SourceString) < 1)
2287 ){
2288 return (EFI_INVALID_PARAMETER);
2289 }
jcarsey2247dde2009-11-09 18:08:58 +00002290 NewString = SetMem16(NewString, NewSize, CHAR_NULL);
2291 while (*SourceString != CHAR_NULL) {
jcarsey969c7832010-01-13 16:46:33 +00002292 //
2293 // if we find the FindTarget and either Skip == FALSE or Skip == TRUE and we
2294 // dont have a carrot do a replace...
2295 //
2296 if (StrnCmp(SourceString, FindTarget, StrLen(FindTarget)) == 0
2297 && ((SkipPreCarrot && *(SourceString-1) != L'^') || SkipPreCarrot == FALSE)
2298 ){
jcarsey975136a2009-06-16 19:03:54 +00002299 SourceString += StrLen(FindTarget);
jcarsey01582942009-07-10 19:46:17 +00002300 Size = StrSize(NewString);
2301 if ((Size + (StrLen(ReplaceWith)*sizeof(CHAR16))) > NewSize) {
jcarsey975136a2009-06-16 19:03:54 +00002302 return (EFI_BUFFER_TOO_SMALL);
2303 }
2304 StrCat(NewString, ReplaceWith);
2305 } else {
jcarsey01582942009-07-10 19:46:17 +00002306 Size = StrSize(NewString);
2307 if (Size + sizeof(CHAR16) > NewSize) {
jcarsey975136a2009-06-16 19:03:54 +00002308 return (EFI_BUFFER_TOO_SMALL);
2309 }
2310 StrnCat(NewString, SourceString, 1);
2311 SourceString++;
2312 }
2313 }
2314 return (EFI_SUCCESS);
2315}
jcarseyb1f95a02009-06-16 00:23:19 +00002316
2317/**
jcarseye2f82972009-12-01 05:40:24 +00002318 Internal worker function to output a string.
2319
2320 This function will output a string to the correct StdOut.
2321
2322 @param[in] String The string to print out.
2323
2324 @retval EFI_SUCCESS The operation was sucessful.
2325 @retval !EFI_SUCCESS The operation failed.
2326**/
2327EFI_STATUS
2328EFIAPI
2329InternalPrintTo (
2330 IN CONST CHAR16 *String
2331 )
2332{
2333 UINTN Size;
2334 Size = StrSize(String) - sizeof(CHAR16);
2335 if (mEfiShellParametersProtocol != NULL) {
2336 return (mEfiShellParametersProtocol->StdOut->Write(mEfiShellParametersProtocol->StdOut, &Size, (VOID*)String));
2337 }
2338 if (mEfiShellInterface != NULL) {
jcarseyecd3d592009-12-07 18:05:00 +00002339 //
2340 // Divide in half for old shell. Must be string length not size.
2341 //
2342 Size /= 2;
jcarseye2f82972009-12-01 05:40:24 +00002343 return ( mEfiShellInterface->StdOut->Write(mEfiShellInterface->StdOut, &Size, (VOID*)String));
2344 }
2345 ASSERT(FALSE);
2346 return (EFI_UNSUPPORTED);
2347}
2348
2349/**
jcarseyb1f95a02009-06-16 00:23:19 +00002350 Print at a specific location on the screen.
2351
jcarseyf1b87e72009-06-17 00:52:11 +00002352 This function will move the cursor to a given screen location and print the specified string
jcarseyb1f95a02009-06-16 00:23:19 +00002353
2354 If -1 is specified for either the Row or Col the current screen location for BOTH
jcarseyf1b87e72009-06-17 00:52:11 +00002355 will be used.
jcarseyb1f95a02009-06-16 00:23:19 +00002356
2357 if either Row or Col is out of range for the current console, then ASSERT
2358 if Format is NULL, then ASSERT
2359
2360 In addition to the standard %-based flags as supported by UefiLib Print() this supports
2361 the following additional flags:
2362 %N - Set output attribute to normal
2363 %H - Set output attribute to highlight
2364 %E - Set output attribute to error
2365 %B - Set output attribute to blue color
2366 %V - Set output attribute to green color
2367
2368 Note: The background color is controlled by the shell command cls.
2369
2370 @param[in] Row the row to print at
2371 @param[in] Col the column to print at
2372 @param[in] Format the format string
jcarsey2247dde2009-11-09 18:08:58 +00002373 @param[in] Marker the marker for the variable argument list
jcarseyb1f95a02009-06-16 00:23:19 +00002374
2375 @return the number of characters printed to the screen
2376**/
2377
2378UINTN
2379EFIAPI
jcarsey2247dde2009-11-09 18:08:58 +00002380InternalShellPrintWorker(
jcarseyb1f95a02009-06-16 00:23:19 +00002381 IN INT32 Col OPTIONAL,
2382 IN INT32 Row OPTIONAL,
2383 IN CONST CHAR16 *Format,
jcarsey2247dde2009-11-09 18:08:58 +00002384 VA_LIST Marker
2385 )
2386{
jcarseyb1f95a02009-06-16 00:23:19 +00002387 UINTN Return;
jcarseyb1f95a02009-06-16 00:23:19 +00002388 EFI_STATUS Status;
jcarsey975136a2009-06-16 19:03:54 +00002389 UINTN NormalAttribute;
2390 CHAR16 *ResumeLocation;
2391 CHAR16 *FormatWalker;
jcarsey975136a2009-06-16 19:03:54 +00002392
jcarsey975136a2009-06-16 19:03:54 +00002393 //
2394 // Back and forth each time fixing up 1 of our flags...
2395 //
jcarseyb3011f42010-01-11 21:49:04 +00002396 Status = ShellLibCopySearchAndReplace(Format, mPostReplaceFormat, PcdGet16 (PcdShellPrintBufferSize), L"%N", L"%%N");
jcarsey975136a2009-06-16 19:03:54 +00002397 ASSERT_EFI_ERROR(Status);
jcarseyb3011f42010-01-11 21:49:04 +00002398 Status = ShellLibCopySearchAndReplace(mPostReplaceFormat, mPostReplaceFormat2, PcdGet16 (PcdShellPrintBufferSize), L"%E", L"%%E");
jcarsey975136a2009-06-16 19:03:54 +00002399 ASSERT_EFI_ERROR(Status);
jcarseyb3011f42010-01-11 21:49:04 +00002400 Status = ShellLibCopySearchAndReplace(mPostReplaceFormat2, mPostReplaceFormat, PcdGet16 (PcdShellPrintBufferSize), L"%H", L"%%H");
jcarsey975136a2009-06-16 19:03:54 +00002401 ASSERT_EFI_ERROR(Status);
jcarseyb3011f42010-01-11 21:49:04 +00002402 Status = ShellLibCopySearchAndReplace(mPostReplaceFormat, mPostReplaceFormat2, PcdGet16 (PcdShellPrintBufferSize), L"%B", L"%%B");
jcarsey975136a2009-06-16 19:03:54 +00002403 ASSERT_EFI_ERROR(Status);
jcarseyb3011f42010-01-11 21:49:04 +00002404 Status = ShellLibCopySearchAndReplace(mPostReplaceFormat2, mPostReplaceFormat, PcdGet16 (PcdShellPrintBufferSize), L"%V", L"%%V");
jcarsey975136a2009-06-16 19:03:54 +00002405 ASSERT_EFI_ERROR(Status);
2406
2407 //
2408 // Use the last buffer from replacing to print from...
2409 //
jcarseyb3011f42010-01-11 21:49:04 +00002410 Return = UnicodeVSPrint (mPostReplaceFormat2, PcdGet16 (PcdShellPrintBufferSize), mPostReplaceFormat, Marker);
jcarseyb1f95a02009-06-16 00:23:19 +00002411
2412 if (Col != -1 && Row != -1) {
jcarseyb1f95a02009-06-16 00:23:19 +00002413 Status = gST->ConOut->SetCursorPosition(gST->ConOut, Col, Row);
2414 ASSERT_EFI_ERROR(Status);
jcarsey975136a2009-06-16 19:03:54 +00002415 }
2416
2417 NormalAttribute = gST->ConOut->Mode->Attribute;
jcarseyecd3d592009-12-07 18:05:00 +00002418 FormatWalker = mPostReplaceFormat2;
jcarsey2247dde2009-11-09 18:08:58 +00002419 while (*FormatWalker != CHAR_NULL) {
jcarsey975136a2009-06-16 19:03:54 +00002420 //
2421 // Find the next attribute change request
2422 //
2423 ResumeLocation = StrStr(FormatWalker, L"%");
2424 if (ResumeLocation != NULL) {
jcarsey2247dde2009-11-09 18:08:58 +00002425 *ResumeLocation = CHAR_NULL;
jcarsey975136a2009-06-16 19:03:54 +00002426 }
2427 //
2428 // print the current FormatWalker string
2429 //
jcarseye2f82972009-12-01 05:40:24 +00002430 Status = InternalPrintTo(FormatWalker);
jcarsey975136a2009-06-16 19:03:54 +00002431 ASSERT_EFI_ERROR(Status);
2432 //
2433 // update the attribute
2434 //
2435 if (ResumeLocation != NULL) {
2436 switch (*(ResumeLocation+1)) {
2437 case (L'N'):
2438 gST->ConOut->SetAttribute(gST->ConOut, NormalAttribute);
2439 break;
2440 case (L'E'):
2441 gST->ConOut->SetAttribute(gST->ConOut, EFI_TEXT_ATTR(EFI_YELLOW, ((NormalAttribute&(BIT4|BIT5|BIT6))>>4)));
2442 break;
2443 case (L'H'):
2444 gST->ConOut->SetAttribute(gST->ConOut, EFI_TEXT_ATTR(EFI_WHITE, ((NormalAttribute&(BIT4|BIT5|BIT6))>>4)));
2445 break;
2446 case (L'B'):
2447 gST->ConOut->SetAttribute(gST->ConOut, EFI_TEXT_ATTR(EFI_BLUE, ((NormalAttribute&(BIT4|BIT5|BIT6))>>4)));
2448 break;
2449 case (L'V'):
2450 gST->ConOut->SetAttribute(gST->ConOut, EFI_TEXT_ATTR(EFI_GREEN, ((NormalAttribute&(BIT4|BIT5|BIT6))>>4)));
2451 break;
2452 default:
jcarseye2f82972009-12-01 05:40:24 +00002453 //
2454 // Print a simple '%' symbol
2455 //
2456 Status = InternalPrintTo(L"%");
2457 ASSERT_EFI_ERROR(Status);
2458 ResumeLocation = ResumeLocation - 1;
jcarsey975136a2009-06-16 19:03:54 +00002459 break;
2460 }
2461 } else {
2462 //
2463 // reset to normal now...
2464 //
2465 gST->ConOut->SetAttribute(gST->ConOut, NormalAttribute);
2466 break;
2467 }
2468
2469 //
2470 // update FormatWalker to Resume + 2 (skip the % and the indicator)
2471 //
2472 FormatWalker = ResumeLocation + 2;
2473 }
jcarseyb1f95a02009-06-16 00:23:19 +00002474
jcarseyb1f95a02009-06-16 00:23:19 +00002475 return (Return);
jcarsey5f7431d2009-07-10 18:06:01 +00002476}
jcarsey2247dde2009-11-09 18:08:58 +00002477
2478/**
2479 Print at a specific location on the screen.
2480
jcarseye2f82972009-12-01 05:40:24 +00002481 This function will move the cursor to a given screen location and print the specified string.
jcarsey2247dde2009-11-09 18:08:58 +00002482
2483 If -1 is specified for either the Row or Col the current screen location for BOTH
2484 will be used.
2485
jcarseye2f82972009-12-01 05:40:24 +00002486 If either Row or Col is out of range for the current console, then ASSERT.
2487 If Format is NULL, then ASSERT.
jcarsey2247dde2009-11-09 18:08:58 +00002488
2489 In addition to the standard %-based flags as supported by UefiLib Print() this supports
2490 the following additional flags:
2491 %N - Set output attribute to normal
2492 %H - Set output attribute to highlight
2493 %E - Set output attribute to error
2494 %B - Set output attribute to blue color
2495 %V - Set output attribute to green color
2496
2497 Note: The background color is controlled by the shell command cls.
2498
2499 @param[in] Row the row to print at
2500 @param[in] Col the column to print at
2501 @param[in] Format the format string
2502
2503 @return the number of characters printed to the screen
2504**/
2505
2506UINTN
2507EFIAPI
2508ShellPrintEx(
2509 IN INT32 Col OPTIONAL,
2510 IN INT32 Row OPTIONAL,
2511 IN CONST CHAR16 *Format,
2512 ...
2513 )
2514{
2515 VA_LIST Marker;
jcarseye2f82972009-12-01 05:40:24 +00002516 EFI_STATUS Status;
jcarsey2247dde2009-11-09 18:08:58 +00002517 VA_START (Marker, Format);
jcarseye2f82972009-12-01 05:40:24 +00002518 Status = InternalShellPrintWorker(Col, Row, Format, Marker);
2519 VA_END(Marker);
2520 return(Status);
jcarsey2247dde2009-11-09 18:08:58 +00002521}
2522
2523/**
2524 Print at a specific location on the screen.
2525
jcarseye2f82972009-12-01 05:40:24 +00002526 This function will move the cursor to a given screen location and print the specified string.
jcarsey2247dde2009-11-09 18:08:58 +00002527
2528 If -1 is specified for either the Row or Col the current screen location for BOTH
jcarseye2f82972009-12-01 05:40:24 +00002529 will be used.
jcarsey2247dde2009-11-09 18:08:58 +00002530
jcarseye2f82972009-12-01 05:40:24 +00002531 If either Row or Col is out of range for the current console, then ASSERT.
2532 If Format is NULL, then ASSERT.
jcarsey2247dde2009-11-09 18:08:58 +00002533
2534 In addition to the standard %-based flags as supported by UefiLib Print() this supports
2535 the following additional flags:
2536 %N - Set output attribute to normal
2537 %H - Set output attribute to highlight
2538 %E - Set output attribute to error
2539 %B - Set output attribute to blue color
2540 %V - Set output attribute to green color
2541
2542 Note: The background color is controlled by the shell command cls.
2543
2544 @param[in] Row the row to print at
2545 @param[in] Col the column to print at
2546 @param[in] HiiFormatStringId the format string Id for getting from Hii
2547 @param[in] HiiFormatHandle the format string Handle for getting from Hii
2548
2549 @return the number of characters printed to the screen
2550**/
2551UINTN
2552EFIAPI
2553ShellPrintHiiEx(
2554 IN INT32 Col OPTIONAL,
2555 IN INT32 Row OPTIONAL,
2556 IN CONST EFI_STRING_ID HiiFormatStringId,
2557 IN CONST EFI_HANDLE HiiFormatHandle,
2558 ...
2559 )
2560{
2561 VA_LIST Marker;
2562 CHAR16 *HiiFormatString;
2563 UINTN RetVal;
2564
2565 VA_START (Marker, HiiFormatHandle);
2566 HiiFormatString = HiiGetString(HiiFormatHandle, HiiFormatStringId, NULL);
2567 ASSERT(HiiFormatString != NULL);
2568
2569 RetVal = InternalShellPrintWorker(Col, Row, HiiFormatString, Marker);
2570
2571 FreePool(HiiFormatString);
jcarseye2f82972009-12-01 05:40:24 +00002572 VA_END(Marker);
jcarsey2247dde2009-11-09 18:08:58 +00002573
2574 return (RetVal);
2575}
2576
2577/**
2578 Function to determine if a given filename represents a file or a directory.
2579
2580 @param[in] DirName Path to directory to test.
2581
2582 @retval EFI_SUCCESS The Path represents a directory
2583 @retval EFI_NOT_FOUND The Path does not represent a directory
2584 @return other The path failed to open
2585**/
2586EFI_STATUS
2587EFIAPI
2588ShellIsDirectory(
2589 IN CONST CHAR16 *DirName
2590 )
2591{
2592 EFI_STATUS Status;
2593 EFI_FILE_HANDLE Handle;
2594
jcarseyecd3d592009-12-07 18:05:00 +00002595 ASSERT(DirName != NULL);
2596
jcarsey2247dde2009-11-09 18:08:58 +00002597 Handle = NULL;
2598
2599 Status = ShellOpenFileByName(DirName, &Handle, EFI_FILE_MODE_READ, 0);
2600 if (EFI_ERROR(Status)) {
2601 return (Status);
2602 }
2603
2604 if (FileHandleIsDirectory(Handle) == EFI_SUCCESS) {
2605 ShellCloseFile(&Handle);
2606 return (EFI_SUCCESS);
2607 }
2608 ShellCloseFile(&Handle);
2609 return (EFI_NOT_FOUND);
2610}
2611
jcarsey125c2cf2009-11-18 21:36:50 +00002612/**
jcarsey36a9d672009-11-20 21:13:41 +00002613 Function to determine if a given filename represents a file.
2614
2615 @param[in] Name Path to file to test.
2616
2617 @retval EFI_SUCCESS The Path represents a file.
2618 @retval EFI_NOT_FOUND The Path does not represent a file.
2619 @retval other The path failed to open.
2620**/
2621EFI_STATUS
2622EFIAPI
2623ShellIsFile(
2624 IN CONST CHAR16 *Name
2625 )
2626{
2627 EFI_STATUS Status;
2628 EFI_FILE_HANDLE Handle;
2629
jcarseyecd3d592009-12-07 18:05:00 +00002630 ASSERT(Name != NULL);
2631
jcarsey36a9d672009-11-20 21:13:41 +00002632 Handle = NULL;
2633
2634 Status = ShellOpenFileByName(Name, &Handle, EFI_FILE_MODE_READ, 0);
2635 if (EFI_ERROR(Status)) {
2636 return (Status);
2637 }
2638
2639 if (FileHandleIsDirectory(Handle) != EFI_SUCCESS) {
2640 ShellCloseFile(&Handle);
2641 return (EFI_SUCCESS);
2642 }
2643 ShellCloseFile(&Handle);
2644 return (EFI_NOT_FOUND);
2645}
2646
2647/**
jcarseyb3011f42010-01-11 21:49:04 +00002648 Function to determine if a given filename represents a file.
2649
2650 This will search the CWD and then the Path.
2651
2652 If Name is NULL, then ASSERT.
2653
2654 @param[in] Name Path to file to test.
2655
2656 @retval EFI_SUCCESS The Path represents a file.
2657 @retval EFI_NOT_FOUND The Path does not represent a file.
2658 @retval other The path failed to open.
2659**/
2660EFI_STATUS
2661EFIAPI
2662ShellIsFileInPath(
2663 IN CONST CHAR16 *Name
2664 ) {
2665 CHAR16 *NewName;
2666 EFI_STATUS Status;
2667
2668 if (!EFI_ERROR(ShellIsFile(Name))) {
2669 return (TRUE);
2670 }
2671
2672 NewName = ShellFindFilePath(Name);
2673 if (NewName == NULL) {
2674 return (EFI_NOT_FOUND);
2675 }
2676 Status = ShellIsFile(NewName);
2677 FreePool(NewName);
2678 return (Status);
2679}
2680/**
jcarsey125c2cf2009-11-18 21:36:50 +00002681 Function to determine whether a string is decimal or hex representation of a number
2682 and return the number converted from the string.
2683
2684 @param[in] String String representation of a number
2685
2686 @retval all the number
2687**/
2688UINTN
2689EFIAPI
2690ShellStrToUintn(
2691 IN CONST CHAR16 *String
2692 )
2693{
2694 CONST CHAR16 *Walker;
jcarseyb3011f42010-01-11 21:49:04 +00002695 for (Walker = String; Walker != NULL && *Walker != CHAR_NULL && *Walker == L' '; Walker++);
jcarsey125c2cf2009-11-18 21:36:50 +00002696 if (StrnCmp(Walker, L"0x", 2) == 0 || StrnCmp(Walker, L"0X", 2) == 0){
2697 return (StrHexToUintn(Walker));
2698 }
2699 return (StrDecimalToUintn(Walker));
2700}
2701
2702/**
2703 Safely append with automatic string resizing given length of Destination and
2704 desired length of copy from Source.
2705
2706 append the first D characters of Source to the end of Destination, where D is
2707 the lesser of Count and the StrLen() of Source. If appending those D characters
2708 will fit within Destination (whose Size is given as CurrentSize) and
2709 still leave room for a null terminator, then those characters are appended,
2710 starting at the original terminating null of Destination, and a new terminating
2711 null is appended.
2712
2713 If appending D characters onto Destination will result in a overflow of the size
2714 given in CurrentSize the string will be grown such that the copy can be performed
2715 and CurrentSize will be updated to the new size.
2716
2717 If Source is NULL, there is nothing to append, just return the current buffer in
2718 Destination.
2719
2720 if Destination is NULL, then ASSERT()
2721 if Destination's current length (including NULL terminator) is already more then
2722 CurrentSize, then ASSERT()
2723
2724 @param[in,out] Destination The String to append onto
2725 @param[in,out] CurrentSize on call the number of bytes in Destination. On
2726 return possibly the new size (still in bytes). if NULL
2727 then allocate whatever is needed.
2728 @param[in] Source The String to append from
2729 @param[in] Count Maximum number of characters to append. if 0 then
2730 all are appended.
2731
2732 @return Destination return the resultant string.
2733**/
2734CHAR16*
2735EFIAPI
2736StrnCatGrow (
2737 IN OUT CHAR16 **Destination,
2738 IN OUT UINTN *CurrentSize,
2739 IN CONST CHAR16 *Source,
2740 IN UINTN Count
2741 )
2742{
2743 UINTN DestinationStartSize;
2744 UINTN NewSize;
2745
2746 //
2747 // ASSERTs
2748 //
2749 ASSERT(Destination != NULL);
2750
2751 //
2752 // If there's nothing to do then just return Destination
2753 //
2754 if (Source == NULL) {
2755 return (*Destination);
2756 }
2757
2758 //
2759 // allow for un-initialized pointers, based on size being 0
2760 //
2761 if (CurrentSize != NULL && *CurrentSize == 0) {
2762 *Destination = NULL;
2763 }
2764
2765 //
2766 // allow for NULL pointers address as Destination
2767 //
2768 if (*Destination != NULL) {
2769 ASSERT(CurrentSize != 0);
2770 DestinationStartSize = StrSize(*Destination);
2771 ASSERT(DestinationStartSize <= *CurrentSize);
2772 } else {
2773 DestinationStartSize = 0;
2774// ASSERT(*CurrentSize == 0);
2775 }
2776
2777 //
2778 // Append all of Source?
2779 //
2780 if (Count == 0) {
2781 Count = StrLen(Source);
2782 }
2783
2784 //
2785 // Test and grow if required
2786 //
2787 if (CurrentSize != NULL) {
2788 NewSize = *CurrentSize;
2789 while (NewSize < (DestinationStartSize + (Count*sizeof(CHAR16)))) {
2790 NewSize += 2 * Count * sizeof(CHAR16);
2791 }
2792 *Destination = ReallocatePool(*CurrentSize, NewSize, *Destination);
2793 *CurrentSize = NewSize;
2794 } else {
2795 *Destination = AllocateZeroPool((Count+1)*sizeof(CHAR16));
2796 }
2797
2798 //
2799 // Now use standard StrnCat on a big enough buffer
2800 //
2801 return StrnCat(*Destination, Source, Count);
2802}