]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Application/Shell/ShellProtocol.h
ShellPkg: Remove memory leak from file list usage
[mirror_edk2.git] / ShellPkg / Application / Shell / ShellProtocol.h
1 /** @file
2 Member functions of EFI_SHELL_PROTOCOL and functions for creation,
3 manipulation, and initialization of EFI_SHELL_PROTOCOL.
4
5 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef _SHELL_PROTOCOL_HEADER_
17 #define _SHELL_PROTOCOL_HEADER_
18
19 #include "Shell.h"
20
21 typedef struct {
22 LIST_ENTRY Link;
23 EFI_SHELL_PROTOCOL *Interface;
24 EFI_HANDLE Handle;
25 } SHELL_PROTOCOL_HANDLE_LIST;
26
27 // flags values...
28 #define SHELL_MAP_FLAGS_CONSIST BIT1
29
30 /**
31 Function to create and install on the current handle.
32
33 Will overwrite any existing ShellProtocols in the system to be sure that
34 the current shell is in control.
35
36 This must be removed via calling CleanUpShellProtocol().
37
38 @param[in, out] NewShell The pointer to the pointer to the structure
39 to install.
40
41 @retval EFI_SUCCESS The operation was successful.
42 @return An error from LocateHandle, CreateEvent, or other core function.
43 **/
44 EFI_STATUS
45 EFIAPI
46 CreatePopulateInstallShellProtocol (
47 IN OUT EFI_SHELL_PROTOCOL **NewShell
48 );
49
50 /**
51 Opposite of CreatePopulateInstallShellProtocol.
52
53 Free all memory and restore the system to the state it was in before calling
54 CreatePopulateInstallShellProtocol.
55
56 @param[in, out] NewShell The pointer to the new shell protocol structure.
57
58 @retval EFI_SUCCESS The operation was successful.
59 **/
60 EFI_STATUS
61 EFIAPI
62 CleanUpShellProtocol (
63 IN OUT EFI_SHELL_PROTOCOL *NewShell
64 );
65
66 /**
67 This function creates a mapping for a device path.
68
69 @param DevicePath Points to the device path. If this is NULL and Mapping points to a valid mapping,
70 then the mapping will be deleted.
71 @param Mapping Points to the NULL-terminated mapping for the device path. Must end with a ':'
72
73 @retval EFI_SUCCESS Mapping created or deleted successfully.
74 @retval EFI_NO_MAPPING There is no handle that corresponds exactly to DevicePath. See the
75 boot service function LocateDevicePath().
76 @retval EFI_ACCESS_DENIED The mapping is a built-in alias.
77 @retval EFI_INVALID_PARAMETER Mapping was NULL
78 @retval EFI_INVALID_PARAMETER Mapping did not end with a ':'
79 @retval EFI_INVALID_PARAMETER DevicePath was not pointing at a device that had a SIMPLE_FILE_SYSTEM_PROTOCOL installed.
80 @retval EFI_NOT_FOUND There was no mapping found to delete
81 @retval EFI_OUT_OF_RESOURCES Memory allocation failed
82 **/
83 EFI_STATUS
84 EFIAPI
85 EfiShellSetMap(
86 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath OPTIONAL,
87 IN CONST CHAR16 *Mapping
88 );
89
90 /**
91 Gets the device path from the mapping.
92
93 This function gets the device path associated with a mapping.
94
95 @param Mapping A pointer to the mapping
96
97 @retval !=NULL Pointer to the device path that corresponds to the
98 device mapping. The returned pointer does not need
99 to be freed.
100 @retval NULL There is no device path associated with the
101 specified mapping.
102 **/
103 CONST EFI_DEVICE_PATH_PROTOCOL *
104 EFIAPI
105 EfiShellGetDevicePathFromMap(
106 IN CONST CHAR16 *Mapping
107 );
108
109 /**
110 Gets the mapping that most closely matches the device path.
111
112 This function gets the mapping which corresponds to the device path *DevicePath. If
113 there is no exact match, then the mapping which most closely matches *DevicePath
114 is returned, and *DevicePath is updated to point to the remaining portion of the
115 device path. If there is an exact match, the mapping is returned and *DevicePath
116 points to the end-of-device-path node.
117
118 @param DevicePath On entry, points to a device path pointer. On
119 exit, updates the pointer to point to the
120 portion of the device path after the mapping.
121
122 @retval NULL No mapping was found.
123 @return !=NULL Pointer to NULL-terminated mapping. The buffer
124 is callee allocated and should be freed by the caller.
125 **/
126 CONST CHAR16 *
127 EFIAPI
128 EfiShellGetMapFromDevicePath(
129 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
130 );
131
132 /**
133 Converts a device path to a file system-style path.
134
135 This function converts a device path to a file system path by replacing part, or all, of
136 the device path with the file-system mapping. If there are more than one application
137 file system mappings, the one that most closely matches Path will be used.
138
139 @param Path The pointer to the device path
140
141 @retval NULL the device path could not be found.
142 @return all The pointer of the NULL-terminated file path. The path
143 is callee-allocated and should be freed by the caller.
144 **/
145 CHAR16 *
146 EFIAPI
147 EfiShellGetFilePathFromDevicePath(
148 IN CONST EFI_DEVICE_PATH_PROTOCOL *Path
149 );
150
151 /**
152 Converts a file system style name to a device path.
153
154 This function converts a file system style name to a device path, by replacing any
155 mapping references to the associated device path.
156
157 @param Path the pointer to the path
158
159 @return all The pointer of the file path. The file path is callee
160 allocated and should be freed by the caller.
161 **/
162 EFI_DEVICE_PATH_PROTOCOL *
163 EFIAPI
164 EfiShellGetDevicePathFromFilePath(
165 IN CONST CHAR16 *Path
166 );
167
168 /**
169 Gets the name of the device specified by the device handle.
170
171 This function gets the user-readable name of the device specified by the device
172 handle. If no user-readable name could be generated, then *BestDeviceName will be
173 NULL and EFI_NOT_FOUND will be returned.
174
175 If EFI_DEVICE_NAME_USE_COMPONENT_NAME is set, then the function will return the
176 device's name using the EFI_COMPONENT_NAME2_PROTOCOL, if present on
177 DeviceHandle.
178
179 If EFI_DEVICE_NAME_USE_DEVICE_PATH is set, then the function will return the
180 device's name using the EFI_DEVICE_PATH_PROTOCOL, if present on DeviceHandle.
181 If both EFI_DEVICE_NAME_USE_COMPONENT_NAME and
182 EFI_DEVICE_NAME_USE_DEVICE_PATH are set, then
183 EFI_DEVICE_NAME_USE_COMPONENT_NAME will have higher priority.
184
185 @param DeviceHandle The handle of the device.
186 @param Flags Determines the possible sources of component names.
187 Valid bits are:
188 EFI_DEVICE_NAME_USE_COMPONENT_NAME
189 EFI_DEVICE_NAME_USE_DEVICE_PATH
190 @param Language A pointer to the language specified for the device
191 name, in the same format as described in the UEFI
192 specification, Appendix M
193 @param BestDeviceName On return, points to the callee-allocated NULL-
194 terminated name of the device. If no device name
195 could be found, points to NULL. The name must be
196 freed by the caller...
197
198 @retval EFI_SUCCESS Get the name successfully.
199 @retval EFI_NOT_FOUND Fail to get the device name.
200 @retval EFI_INVALID_PARAMETER Flags did not have a valid bit set.
201 @retval EFI_INVALID_PARAMETER BestDeviceName was NULL
202 @retval EFI_INVALID_PARAMETER DeviceHandle was NULL
203 **/
204 EFI_STATUS
205 EFIAPI
206 EfiShellGetDeviceName(
207 IN EFI_HANDLE DeviceHandle,
208 IN EFI_SHELL_DEVICE_NAME_FLAGS Flags,
209 IN CHAR8 *Language,
210 OUT CHAR16 **BestDeviceName
211 );
212
213 /**
214 Opens the root directory of a device on a handle
215
216 This function opens the root directory of a device and returns a file handle to it.
217
218 @param DeviceHandle The handle of the device that contains the volume.
219 @param FileHandle On exit, points to the file handle corresponding to the root directory on the
220 device.
221
222 @retval EFI_SUCCESS Root opened successfully.
223 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
224 could not be opened.
225 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
226 @retval EFI_DEVICE_ERROR The device had an error
227 **/
228 EFI_STATUS
229 EFIAPI
230 EfiShellOpenRootByHandle(
231 IN EFI_HANDLE DeviceHandle,
232 OUT SHELL_FILE_HANDLE *FileHandle
233 );
234
235 /**
236 Opens the root directory of a device.
237
238 This function opens the root directory of a device and returns a file handle to it.
239
240 @param DevicePath Points to the device path corresponding to the device where the
241 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL is installed.
242 @param FileHandle On exit, points to the file handle corresponding to the root directory on the
243 device.
244
245 @retval EFI_SUCCESS Root opened successfully.
246 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
247 could not be opened.
248 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
249 @retval EFI_DEVICE_ERROR The device had an error
250 **/
251 EFI_STATUS
252 EFIAPI
253 EfiShellOpenRoot(
254 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
255 OUT SHELL_FILE_HANDLE *FileHandle
256 );
257
258 /**
259 Returns whether any script files are currently being processed.
260
261 @retval TRUE There is at least one script file active.
262 @retval FALSE No script files are active now.
263
264 **/
265 BOOLEAN
266 EFIAPI
267 EfiShellBatchIsActive (
268 VOID
269 );
270
271 /**
272 Worker function to open a file based on a device path. this will open the root
273 of the volume and then traverse down to the file itself.
274
275 @param DevicePath2 Device Path of the file
276 @param FileHandle Pointer to the file upon a successful return
277 @param OpenMode mode to open file in.
278 @param Attributes the File Attributes to use when creating a new file
279
280 @retval EFI_SUCCESS the file is open and FileHandle is valid
281 @retval EFI_UNSUPPORTED the device path cotained non-path elements
282 @retval other an error ocurred.
283 **/
284 EFI_STATUS
285 EFIAPI
286 InternalOpenFileDevicePath(
287 IN OUT EFI_DEVICE_PATH_PROTOCOL *DevicePath2,
288 OUT SHELL_FILE_HANDLE *FileHandle,
289 IN UINT64 OpenMode,
290 IN UINT64 Attributes OPTIONAL
291 );
292
293 /**
294 Creates a file or directory by name.
295
296 This function creates an empty new file or directory with the specified attributes and
297 returns the new file's handle. If the file already exists and is read-only, then
298 EFI_INVALID_PARAMETER will be returned.
299
300 If the file already existed, it is truncated and its attributes updated. If the file is
301 created successfully, the FileHandle is the file's handle, else, the FileHandle is NULL.
302
303 If the file name begins with >v, then the file handle which is returned refers to the
304 shell environment variable with the specified name. If the shell environment variable
305 already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
306
307 @param FileName Pointer to NULL-terminated file path
308 @param FileAttribs The new file's attrbiutes. the different attributes are
309 described in EFI_FILE_PROTOCOL.Open().
310 @param FileHandle On return, points to the created file handle or directory's handle
311
312 @retval EFI_SUCCESS The file was opened. FileHandle points to the new file's handle.
313 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
314 @retval EFI_UNSUPPORTED could not open the file path
315 @retval EFI_NOT_FOUND the specified file could not be found on the devide, or could not
316 file the file system on the device.
317 @retval EFI_NO_MEDIA the device has no medium.
318 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
319 longer supported.
320 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
321 the DirName.
322 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
323 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
324 when the media is write-protected.
325 @retval EFI_ACCESS_DENIED The service denied access to the file.
326 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file.
327 @retval EFI_VOLUME_FULL The volume is full.
328 **/
329 EFI_STATUS
330 EFIAPI
331 EfiShellCreateFile(
332 IN CONST CHAR16 *FileName,
333 IN UINT64 FileAttribs,
334 OUT SHELL_FILE_HANDLE *FileHandle
335 );
336
337 /**
338 Opens a file or a directory by file name.
339
340 This function opens the specified file in the specified OpenMode and returns a file
341 handle.
342 If the file name begins with >v, then the file handle which is returned refers to the
343 shell environment variable with the specified name. If the shell environment variable
344 exists, is non-volatile and the OpenMode indicates EFI_FILE_MODE_WRITE, then
345 EFI_INVALID_PARAMETER is returned.
346
347 If the file name is >i, then the file handle which is returned refers to the standard
348 input. If the OpenMode indicates EFI_FILE_MODE_WRITE, then EFI_INVALID_PARAMETER
349 is returned.
350
351 If the file name is >o, then the file handle which is returned refers to the standard
352 output. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
353 is returned.
354
355 If the file name is >e, then the file handle which is returned refers to the standard
356 error. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
357 is returned.
358
359 If the file name is NUL, then the file handle that is returned refers to the standard NUL
360 file. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER is
361 returned.
362
363 If return EFI_SUCCESS, the FileHandle is the opened file's handle, else, the
364 FileHandle is NULL.
365
366 @param FileName Points to the NULL-terminated UCS-2 encoded file name.
367 @param FileHandle On return, points to the file handle.
368 @param OpenMode File open mode. Either EFI_FILE_MODE_READ or
369 EFI_FILE_MODE_WRITE from section 12.4 of the UEFI
370 Specification.
371 @retval EFI_SUCCESS The file was opened. FileHandle has the opened file's handle.
372 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. FileHandle is NULL.
373 @retval EFI_UNSUPPORTED Could not open the file path. FileHandle is NULL.
374 @retval EFI_NOT_FOUND The specified file could not be found on the device or the file
375 system could not be found on the device. FileHandle is NULL.
376 @retval EFI_NO_MEDIA The device has no medium. FileHandle is NULL.
377 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
378 longer supported. FileHandle is NULL.
379 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
380 the FileName. FileHandle is NULL.
381 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted. FileHandle is NULL.
382 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
383 when the media is write-protected. FileHandle is NULL.
384 @retval EFI_ACCESS_DENIED The service denied access to the file. FileHandle is NULL.
385 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file. FileHandle
386 is NULL.
387 @retval EFI_VOLUME_FULL The volume is full. FileHandle is NULL.
388 **/
389 EFI_STATUS
390 EFIAPI
391 EfiShellOpenFileByName(
392 IN CONST CHAR16 *FileName,
393 OUT SHELL_FILE_HANDLE *FileHandle,
394 IN UINT64 OpenMode
395 );
396
397 /**
398 Deletes the file specified by the file name.
399
400 This function deletes a file.
401
402 @param FileName Points to the NULL-terminated file name.
403
404 @retval EFI_SUCCESS The file was closed and deleted, and the handle was closed.
405 @retval EFI_WARN_DELETE_FAILURE The handle was closed but the file was not deleted.
406 @sa EfiShellCreateFile
407 @sa FileHandleDelete
408 **/
409 EFI_STATUS
410 EFIAPI
411 EfiShellDeleteFileByName(
412 IN CONST CHAR16 *FileName
413 );
414
415 /**
416 Disables the page break output mode.
417 **/
418 VOID
419 EFIAPI
420 EfiShellDisablePageBreak (
421 VOID
422 );
423
424 /**
425 Enables the page break output mode.
426 **/
427 VOID
428 EFIAPI
429 EfiShellEnablePageBreak (
430 VOID
431 );
432
433 /**
434 internal worker function to run a command via Device Path
435
436 @param ParentImageHandle A handle of the image that is executing the specified
437 command line.
438 @param DevicePath device path of the file to execute
439 @param CommandLine Points to the NULL-terminated UCS-2 encoded string
440 containing the command line. If NULL then the command-
441 line will be empty.
442 @param Environment Points to a NULL-terminated array of environment
443 variables with the format 'x=y', where x is the
444 environment variable name and y is the value. If this
445 is NULL, then the current shell environment is used.
446 @param StatusCode Points to the status code returned by the command.
447
448 @retval EFI_SUCCESS The command executed successfully. The status code
449 returned by the command is pointed to by StatusCode.
450 @retval EFI_INVALID_PARAMETER The parameters are invalid.
451 @retval EFI_OUT_OF_RESOURCES Out of resources.
452 @retval EFI_UNSUPPORTED Nested shell invocations are not allowed.
453 **/
454 EFI_STATUS
455 EFIAPI
456 InternalShellExecuteDevicePath(
457 IN CONST EFI_HANDLE *ParentImageHandle,
458 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,
459 IN CONST CHAR16 *CommandLine OPTIONAL,
460 IN CONST CHAR16 **Environment OPTIONAL,
461 OUT EFI_STATUS *StatusCode OPTIONAL
462 );
463
464 /**
465 Execute the command line.
466
467 This function creates a nested instance of the shell and executes the specified
468 command (CommandLine) with the specified environment (Environment). Upon return,
469 the status code returned by the specified command is placed in StatusCode.
470
471 If Environment is NULL, then the current environment is used and all changes made
472 by the commands executed will be reflected in the current environment. If the
473 Environment is non-NULL, then the changes made will be discarded.
474
475 The CommandLine is executed from the current working directory on the current
476 device.
477
478 @param ParentImageHandle A handle of the image that is executing the specified
479 command line.
480 @param CommandLine Points to the NULL-terminated UCS-2 encoded string
481 containing the command line. If NULL then the command-
482 line will be empty.
483 @param Environment Points to a NULL-terminated array of environment
484 variables with the format 'x=y', where x is the
485 environment variable name and y is the value. If this
486 is NULL, then the current shell environment is used.
487 @param StatusCode Points to the status code returned by the command.
488
489 @retval EFI_SUCCESS The command executed successfully. The status code
490 returned by the command is pointed to by StatusCode.
491 @retval EFI_INVALID_PARAMETER The parameters are invalid.
492 @retval EFI_OUT_OF_RESOURCES Out of resources.
493 @retval EFI_UNSUPPORTED Nested shell invocations are not allowed.
494 **/
495 EFI_STATUS
496 EFIAPI
497 EfiShellExecute(
498 IN EFI_HANDLE *ParentImageHandle,
499 IN CHAR16 *CommandLine OPTIONAL,
500 IN CHAR16 **Environment OPTIONAL,
501 OUT EFI_STATUS *StatusCode OPTIONAL
502 );
503
504 /**
505 Utility cleanup function for EFI_SHELL_FILE_INFO objects.
506
507 1) frees all pointers (non-NULL)
508 2) Closes the SHELL_FILE_HANDLE
509
510 @param FileListNode pointer to the list node to free
511 **/
512 VOID
513 EFIAPI
514 FreeShellFileInfoNode(
515 IN EFI_SHELL_FILE_INFO *FileListNode
516 );
517
518 /**
519 Frees the file list.
520
521 This function cleans up the file list and any related data structures. It has no
522 impact on the files themselves.
523
524 @param FileList The file list to free. Type EFI_SHELL_FILE_INFO is
525 defined in OpenFileList()
526
527 @retval EFI_SUCCESS Free the file list successfully.
528 @retval EFI_INVALID_PARAMETER FileList was NULL or *FileList was NULL;
529 **/
530 EFI_STATUS
531 EFIAPI
532 EfiShellFreeFileList(
533 IN EFI_SHELL_FILE_INFO **FileList
534 );
535
536 /**
537 Deletes the duplicate file names files in the given file list.
538
539 This function deletes the reduplicate files in the given file list.
540
541 @param FileList A pointer to the first entry in the file list.
542
543 @retval EFI_SUCCESS Always success.
544 @retval EFI_INVALID_PARAMETER FileList was NULL or *FileList was NULL;
545 **/
546 EFI_STATUS
547 EFIAPI
548 EfiShellRemoveDupInFileList(
549 IN EFI_SHELL_FILE_INFO **FileList
550 );
551
552 /**
553 Allocates and populates a EFI_SHELL_FILE_INFO structure. if any memory operation
554 failed it will return NULL.
555
556 @param[in] BasePath the Path to prepend onto filename for FullPath
557 @param[in] Status Status member initial value.
558 @param[in] FileName FileName member initial value.
559 @param[in] Handle Handle member initial value.
560 @param[in] Info Info struct to copy.
561
562 **/
563 EFI_SHELL_FILE_INFO *
564 EFIAPI
565 CreateAndPopulateShellFileInfo(
566 IN CONST CHAR16 *BasePath,
567 IN CONST EFI_STATUS Status,
568 IN CONST CHAR16 *FileName,
569 IN CONST SHELL_FILE_HANDLE Handle,
570 IN CONST EFI_FILE_INFO *Info
571 );
572
573 /**
574 Find all files in a specified directory.
575
576 @param FileDirHandle Handle of the directory to search.
577 @param FileList On return, points to the list of files in the directory
578 or NULL if there are no files in the directory.
579
580 @retval EFI_SUCCESS File information was returned successfully.
581 @retval EFI_VOLUME_CORRUPTED The file system structures have been corrupted.
582 @retval EFI_DEVICE_ERROR The device reported an error.
583 @retval EFI_NO_MEDIA The device media is not present.
584 @retval EFI_INVALID_PARAMETER The FileDirHandle was not a directory.
585 **/
586 EFI_STATUS
587 EFIAPI
588 EfiShellFindFilesInDir(
589 IN SHELL_FILE_HANDLE FileDirHandle,
590 OUT EFI_SHELL_FILE_INFO **FileList
591 );
592
593 /**
594 Find files that match a specified pattern.
595
596 This function searches for all files and directories that match the specified
597 FilePattern. The FilePattern can contain wild-card characters. The resulting file
598 information is placed in the file list FileList.
599
600 Wildcards are processed
601 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1.
602
603 The files in the file list are not opened. The OpenMode field is set to 0 and the FileInfo
604 field is set to NULL.
605
606 if *FileList is not NULL then it must be a pre-existing and properly initialized list.
607
608 @param FilePattern Points to a NULL-terminated shell file path, including wildcards.
609 @param FileList On return, points to the start of a file list containing the names
610 of all matching files or else points to NULL if no matching files
611 were found. only on a EFI_SUCCESS return will; this be non-NULL.
612
613 @retval EFI_SUCCESS Files found. FileList is a valid list.
614 @retval EFI_NOT_FOUND No files found.
615 @retval EFI_NO_MEDIA The device has no media
616 @retval EFI_DEVICE_ERROR The device reported an error
617 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted
618 **/
619 EFI_STATUS
620 EFIAPI
621 EfiShellFindFiles(
622 IN CONST CHAR16 *FilePattern,
623 OUT EFI_SHELL_FILE_INFO **FileList
624 );
625
626 /**
627 Opens the files that match the path specified.
628
629 This function opens all of the files specified by Path. Wildcards are processed
630 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1. Each
631 matching file has an EFI_SHELL_FILE_INFO structure created in a linked list.
632
633 @param Path A pointer to the path string.
634 @param OpenMode Specifies the mode used to open each file, EFI_FILE_MODE_READ or
635 EFI_FILE_MODE_WRITE.
636 @param FileList Points to the start of a list of files opened.
637
638 @retval EFI_SUCCESS Create the file list successfully.
639 @return Others Can't create the file list.
640 **/
641 EFI_STATUS
642 EFIAPI
643 EfiShellOpenFileList(
644 IN CHAR16 *Path,
645 IN UINT64 OpenMode,
646 IN OUT EFI_SHELL_FILE_INFO **FileList
647 );
648
649 /**
650 Gets the environment variable.
651
652 This function returns the current value of the specified environment variable.
653
654 @param Name A pointer to the environment variable name
655
656 @return !=NULL The environment variable's value. The returned
657 pointer does not need to be freed by the caller.
658 @retval NULL The environment variable doesn't exist.
659 **/
660 CONST CHAR16 *
661 EFIAPI
662 EfiShellGetEnv(
663 IN CONST CHAR16 *Name
664 );
665
666 /**
667 Sets the environment variable.
668
669 This function changes the current value of the specified environment variable. If the
670 environment variable exists and the Value is an empty string, then the environment
671 variable is deleted. If the environment variable exists and the Value is not an empty
672 string, then the value of the environment variable is changed. If the environment
673 variable does not exist and the Value is an empty string, there is no action. If the
674 environment variable does not exist and the Value is a non-empty string, then the
675 environment variable is created and assigned the specified value.
676
677 For a description of volatile and non-volatile environment variables, see UEFI Shell
678 2.0 specification section 3.6.1.
679
680 @param Name Points to the NULL-terminated environment variable name.
681 @param Value Points to the NULL-terminated environment variable value. If the value is an
682 empty string then the environment variable is deleted.
683 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
684
685 @retval EFI_SUCCESS The environment variable was successfully updated.
686 **/
687 EFI_STATUS
688 EFIAPI
689 EfiShellSetEnv(
690 IN CONST CHAR16 *Name,
691 IN CONST CHAR16 *Value,
692 IN BOOLEAN Volatile
693 );
694
695 /**
696 Returns the current directory on the specified device.
697
698 If FileSystemMapping is NULL, it returns the current working directory. If the
699 FileSystemMapping is not NULL, it returns the current directory associated with the
700 FileSystemMapping. In both cases, the returned name includes the file system
701 mapping (i.e. fs0:\current-dir).
702
703 @param FileSystemMapping A pointer to the file system mapping. If NULL,
704 then the current working directory is returned.
705
706 @retval !=NULL The current directory.
707 @retval NULL Current directory does not exist.
708 **/
709 CONST CHAR16 *
710 EFIAPI
711 EfiShellGetCurDir(
712 IN CONST CHAR16 *FileSystemMapping OPTIONAL
713 );
714
715 /**
716 Changes the current directory on the specified device.
717
718 If the FileSystem is NULL, and the directory Dir does not contain a file system's
719 mapped name, this function changes the current working directory. If FileSystem is
720 NULL and the directory Dir contains a mapped name, then the current file system and
721 the current directory on that file system are changed.
722
723 If FileSystem is not NULL, and Dir is NULL, then this changes the current working file
724 system.
725
726 If FileSystem is not NULL and Dir is not NULL, then this function changes the current
727 directory on the specified file system.
728
729 If the current working directory or the current working file system is changed then the
730 %cwd% environment variable will be updated
731
732 @param FileSystem A pointer to the file system's mapped name. If NULL, then the current working
733 directory is changed.
734 @param Dir Points to the NULL-terminated directory on the device specified by FileSystem.
735
736 @retval EFI_SUCCESS The operation was sucessful
737 **/
738 EFI_STATUS
739 EFIAPI
740 EfiShellSetCurDir(
741 IN CONST CHAR16 *FileSystem OPTIONAL,
742 IN CONST CHAR16 *Dir
743 );
744
745 /**
746 Return help information about a specific command.
747
748 This function returns the help information for the specified command. The help text
749 can be internal to the shell or can be from a UEFI Shell manual page.
750
751 If Sections is specified, then each section name listed will be compared in a casesensitive
752 manner, to the section names described in Appendix B. If the section exists,
753 it will be appended to the returned help text. If the section does not exist, no
754 information will be returned. If Sections is NULL, then all help text information
755 available will be returned.
756
757 @param Command Points to the NULL-terminated UEFI Shell command name.
758 @param Sections Points to the NULL-terminated comma-delimited
759 section names to return. If NULL, then all
760 sections will be returned.
761 @param HelpText On return, points to a callee-allocated buffer
762 containing all specified help text.
763
764 @retval EFI_SUCCESS The help text was returned.
765 @retval EFI_OUT_OF_RESOURCES The necessary buffer could not be allocated to hold the
766 returned help text.
767 @retval EFI_INVALID_PARAMETER HelpText is NULL
768 @retval EFI_NOT_FOUND There is no help text available for Command.
769 **/
770 EFI_STATUS
771 EFIAPI
772 EfiShellGetHelpText(
773 IN CONST CHAR16 *Command,
774 IN CONST CHAR16 *Sections OPTIONAL,
775 OUT CHAR16 **HelpText
776 );
777
778 /**
779 Gets the enable status of the page break output mode.
780
781 User can use this function to determine current page break mode.
782
783 @retval TRUE The page break output mode is enabled
784 @retval FALSE The page break output mode is disabled
785 **/
786 BOOLEAN
787 EFIAPI
788 EfiShellGetPageBreak(
789 VOID
790 );
791
792 /**
793 Judges whether the active shell is the root shell.
794
795 This function makes the user to know that whether the active Shell is the root shell.
796
797 @retval TRUE The active Shell is the root Shell.
798 @retval FALSE The active Shell is NOT the root Shell.
799 **/
800 BOOLEAN
801 EFIAPI
802 EfiShellIsRootShell(
803 VOID
804 );
805
806 /**
807 This function returns the command associated with a alias or a list of all
808 alias'.
809
810 @param[in] Command Points to the NULL-terminated shell alias.
811 If this parameter is NULL, then all
812 aliases will be returned in ReturnedData.
813 @param[out] Volatile upon return of a single command if TRUE indicates
814 this is stored in a volatile fashion. FALSE otherwise.
815 @return If Alias is not NULL, it will return a pointer to
816 the NULL-terminated command for that alias.
817 If Alias is NULL, ReturnedData points to a ';'
818 delimited list of alias (e.g.
819 ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.
820 @retval NULL an error ocurred
821 @retval NULL Alias was not a valid Alias
822 **/
823 CONST CHAR16 *
824 EFIAPI
825 EfiShellGetAlias(
826 IN CONST CHAR16 *Command,
827 OUT BOOLEAN *Volatile OPTIONAL
828 );
829
830 /**
831 Changes a shell command alias.
832
833 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
834
835 this function does not check for built in alias'.
836
837 @param[in] Command Points to the NULL-terminated shell command or existing alias.
838 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
839 Command refers to an alias, that alias will be deleted.
840 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
841 Alias being set will be stored in a non-volatile fashion.
842
843 @retval EFI_SUCCESS Alias created or deleted successfully.
844 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
845 **/
846 EFI_STATUS
847 EFIAPI
848 InternalSetAlias(
849 IN CONST CHAR16 *Command,
850 IN CONST CHAR16 *Alias OPTIONAL,
851 IN BOOLEAN Volatile
852 );
853
854 /**
855 Changes a shell command alias.
856
857 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
858
859
860 @param[in] Command Points to the NULL-terminated shell command or existing alias.
861 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
862 Command refers to an alias, that alias will be deleted.
863 @param[in] Replace If TRUE and the alias already exists, then the existing alias will be replaced. If
864 FALSE and the alias already exists, then the existing alias is unchanged and
865 EFI_ACCESS_DENIED is returned.
866 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
867 Alias being set will be stored in a non-volatile fashion.
868
869 @retval EFI_SUCCESS Alias created or deleted successfully.
870 @retval EFI_NOT_FOUND the Alias intended to be deleted was not found
871 @retval EFI_ACCESS_DENIED The alias is a built-in alias or already existed and Replace was set to
872 FALSE.
873 **/
874 EFI_STATUS
875 EFIAPI
876 EfiShellSetAlias(
877 IN CONST CHAR16 *Command,
878 IN CONST CHAR16 *Alias OPTIONAL,
879 IN BOOLEAN Replace,
880 IN BOOLEAN Volatile
881 );
882
883 /**
884 Utility cleanup function for EFI_SHELL_FILE_INFO objects.
885
886 1) frees all pointers (non-NULL)
887 2) Closes the SHELL_FILE_HANDLE
888
889 @param FileListNode pointer to the list node to free
890 **/
891 VOID
892 EFIAPI
893 InternalFreeShellFileInfoNode(
894 IN EFI_SHELL_FILE_INFO *FileListNode
895 );
896
897 /**
898 Internal variable setting function. Allows for setting of the read only variables.
899
900 @param Name Points to the NULL-terminated environment variable name.
901 @param Value Points to the NULL-terminated environment variable value. If the value is an
902 empty string then the environment variable is deleted.
903 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
904
905 @retval EFI_SUCCESS The environment variable was successfully updated.
906 **/
907 EFI_STATUS
908 EFIAPI
909 InternalEfiShellSetEnv(
910 IN CONST CHAR16 *Name,
911 IN CONST CHAR16 *Value,
912 IN BOOLEAN Volatile
913 );
914
915 /**
916 Function to start monitoring for CTRL-C using SimpleTextInputEx. This
917 feature's enabled state was not known when the shell initially launched.
918
919 @retval EFI_SUCCESS The feature is enabled.
920 @retval EFI_OUT_OF_RESOURCES There is not enough mnemory available.
921 **/
922 EFI_STATUS
923 EFIAPI
924 InernalEfiShellStartMonitor(
925 VOID
926 );
927
928 /**
929 Notification function for keystrokes.
930
931 @param[in] KeyData The key that was pressed.
932
933 @retval EFI_SUCCESS The operation was successful.
934 **/
935 EFI_STATUS
936 EFIAPI
937 NotificationFunction(
938 IN EFI_KEY_DATA *KeyData
939 );
940 #endif //_SHELL_PROTOCOL_HEADER_
941