]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Include/Protocol/EfiShell.h
Update the copyright notice format
[mirror_edk2.git] / ShellPkg / Include / Protocol / EfiShell.h
1 /** @file
2 EFI Shell protocol as defined in the UEFI Shell 2.0 specification including errata.
3
4 Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
5 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
9
10 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.
12
13 **/
14
15 #ifndef __EFI_SHELL_PROTOCOL__
16 #define __EFI_SHELL_PROTOCOL__
17
18 #include <Protocol/SimpleFileSystem.h>
19 #include <Guid/FileInfo.h>
20
21 #define EFI_SHELL_PROTOCOL_GUID \
22 { \
23 0x6302d008, 0x7f9b, 0x4f30, { 0x87, 0xac, 0x60, 0xc9, 0xfe, 0xf5, 0xda, 0x4e } \
24 }
25
26 // replaced EFI_LIST_ENTRY with LIST_ENTRY for simplicity.
27 // they are identical outside of the name.
28 typedef struct {
29 LIST_ENTRY Link; ///< Linked list members.
30 EFI_STATUS Status; ///< Status of opening the file. Valid only if Handle != NULL.
31 CONST CHAR16 *FullName; ///< Fully qualified filename.
32 CONST CHAR16 *FileName; ///< name of this file.
33 EFI_FILE_HANDLE Handle; ///< Handle for interacting with the opened file or NULL if closed.
34 EFI_FILE_INFO *Info; ///< Pointer to the FileInfo struct for this file or NULL.
35 } EFI_SHELL_FILE_INFO;
36
37 /**
38 Returns whether any script files are currently being processed.
39
40 @retval TRUE There is at least one script file active.
41 @retval FALSE No script files are active now.
42
43 **/
44 typedef
45 BOOLEAN
46 (EFIAPI *EFI_SHELL_BATCH_IS_ACTIVE) (
47 VOID
48 );
49
50 /**
51 Closes the file handle.
52
53 This function closes a specified file handle. All 'dirty' cached file data is
54 flushed to the device, and the file is closed. In all cases, the handle is
55 closed.
56
57 @param[in] FileHandle The file handle to be closed.
58
59 @retval EFI_SUCCESS The file closed sucessfully.
60 **/
61 typedef
62 EFI_STATUS
63 (EFIAPI *EFI_SHELL_CLOSE_FILE)(
64 IN EFI_FILE_HANDLE FileHandle
65 );
66
67 /**
68 Creates a file or directory by name.
69
70 This function creates an empty new file or directory with the specified attributes and
71 returns the new file's handle. If the file already exists and is read-only, then
72 EFI_INVALID_PARAMETER will be returned.
73
74 If the file already existed, it is truncated and its attributes updated. If the file is
75 created successfully, the FileHandle is the file's handle, else, the FileHandle is NULL.
76
77 If the file name begins with >v, then the file handle which is returned refers to the
78 shell environment variable with the specified name. If the shell environment variable
79 already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
80
81 @param[in] FileName Pointer to NULL-terminated file path.
82 @param[in] FileAttribs The new file's attrbiutes. the different attributes are
83 described in EFI_FILE_PROTOCOL.Open().
84 @param[out] FileHandle On return, points to the created file handle or directory's handle
85
86 @retval EFI_SUCCESS The file was opened. FileHandle points to the new file's handle.
87 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
88 @retval EFI_UNSUPPORTED The file path could not be opened.
89 @retval EFI_NOT_FOUND The specified file could not be found on the device, or could not
90 file the file system on the device.
91 @retval EFI_NO_MEDIA The device has no medium.
92 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
93 longer supported.
94 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
95 the DirName.
96 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
97 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
98 when the media is write-protected.
99 @retval EFI_ACCESS_DENIED The service denied access to the file.
100 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file.
101 @retval EFI_VOLUME_FULL The volume is full.
102 **/
103 typedef
104 EFI_STATUS
105 (EFIAPI *EFI_SHELL_CREATE_FILE)(
106 IN CONST CHAR16 *FileName,
107 IN UINT64 FileAttribs,
108 OUT EFI_FILE_HANDLE *FileHandle
109 );
110
111 /**
112 Deletes the file specified by the file handle.
113
114 This function closes and deletes a file. In all cases, the file handle is closed. If the file
115 cannot be deleted, the warning code EFI_WARN_DELETE_FAILURE is returned, but the
116 handle is still closed.
117
118 @param[in] FileHandle The file handle to delete.
119
120 @retval EFI_SUCCESS The file was closed and deleted and the handle was closed.
121 @retval EFI_WARN_DELETE_FAILURE The handle was closed but the file was not deleted.
122 **/
123 typedef
124 EFI_STATUS
125 (EFIAPI *EFI_SHELL_DELETE_FILE)(
126 IN EFI_FILE_HANDLE FileHandle
127 );
128
129 /**
130 Deletes the file specified by the file name.
131
132 This function deletes a file.
133
134 @param[in] FileName Points to the NULL-terminated file name.
135
136 @retval EFI_SUCCESS The file was deleted.
137 @retval EFI_WARN_DELETE_FAILURE The handle was closed but the file was not deleted.
138 **/
139 typedef
140 EFI_STATUS
141 (EFIAPI *EFI_SHELL_DELETE_FILE_BY_NAME)(
142 IN CONST CHAR16 *FileName
143 );
144
145 /**
146 Disables the page break output mode.
147 **/
148 typedef
149 VOID
150 (EFIAPI *EFI_SHELL_DISABLE_PAGE_BREAK) (
151 VOID
152 );
153
154 /**
155 Enables the page break output mode.
156 **/
157 typedef
158 VOID
159 (EFIAPI *EFI_SHELL_ENABLE_PAGE_BREAK) (
160 VOID
161 );
162
163 /**
164 Execute the command line.
165
166 This function creates a nested instance of the shell and executes the specified
167 command (CommandLine) with the specified environment (Environment). Upon return,
168 the status code returned by the specified command is placed in StatusCode.
169
170 If Environment is NULL, then the current environment is used and all changes made
171 by the commands executed will be reflected in the current environment. If the
172 Environment is non-NULL, then the changes made will be discarded.
173
174 The CommandLine is executed from the current working directory on the current
175 device.
176
177 @param[in] ParentImageHandle A handle of the image that is executing the specified
178 command line.
179 @param[in] CommandLine Points to the NULL-terminated UCS-2 encoded string
180 containing the command line. If NULL then the command-
181 line will be empty.
182 @param[in] Environment Points to a NULL-terminated array of environment
183 variables with the format 'x=y', where x is the
184 environment variable name and y is the value. If this
185 is NULL, then the current shell environment is used.
186 @param[out] ErrorCode Points to the status code returned by the command.
187
188 @retval EFI_SUCCESS The command executed successfully. The status code
189 returned by the command is pointed to by StatusCode.
190 @retval EFI_INVALID_PARAMETER The parameters are invalid.
191 @retval EFI_OUT_OF_RESOURCES Out of resources.
192 @retval EFI_UNSUPPORTED Nested shell invocations are not allowed.
193 **/
194 typedef
195 EFI_STATUS
196 (EFIAPI *EFI_SHELL_EXECUTE) (
197 IN EFI_HANDLE *ParentImageHandle,
198 IN CHAR16 *CommandLine OPTIONAL,
199 IN CHAR16 **Environment OPTIONAL,
200 OUT EFI_STATUS *StatusCode OPTIONAL
201 );
202
203 /**
204 Find files that match a specified pattern.
205
206 This function searches for all files and directories that match the specified
207 FilePattern. The FilePattern can contain wild-card characters. The resulting file
208 information is placed in the file list FileList.
209
210 The files in the file list are not opened. The OpenMode field is set to 0 and the FileInfo
211 field is set to NULL.
212
213 @param[in] FilePattern Points to a NULL-terminated shell file path, including wildcards.
214 @param[out] FileList On return, points to the start of a file list containing the names
215 of all matching files or else points to NULL if no matching files
216 were found.
217
218 @retval EFI_SUCCESS Files found.
219 @retval EFI_NOT_FOUND No files found.
220 @retval EFI_NO_MEDIA The device has no media.
221 @retval EFI_DEVICE_ERROR The device reported an error.
222 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
223 **/
224 typedef
225 EFI_STATUS
226 (EFIAPI *EFI_SHELL_FIND_FILES)(
227 IN CONST CHAR16 *FilePattern,
228 OUT EFI_SHELL_FILE_INFO **FileList
229 );
230
231 /**
232 Find all files in a specified directory.
233
234 @param[in] FileDirHandle Handle of the directory to search.
235 @param[out] FileList On return, points to the list of files in the directory
236 or NULL if there are no files in the directory.
237
238 @retval EFI_SUCCESS File information was returned successfully.
239 @retval EFI_VOLUME_CORRUPTED The file system structures have been corrupted.
240 @retval EFI_DEVICE_ERROR The device reported an error.
241 @retval EFI_NO_MEDIA The device media is not present.
242 **/
243 typedef
244 EFI_STATUS
245 (EFIAPI *EFI_SHELL_FIND_FILES_IN_DIR)(
246 IN EFI_FILE_HANDLE FileDirHandle,
247 OUT EFI_SHELL_FILE_INFO **FileList
248 );
249
250 /**
251 Flushes data back to a device.
252
253 This function flushes all modified data associated with a file to a device.
254
255 @param[in] FileHandle The handle of the file to flush.
256
257 @retval EFI_SUCCESS The data was flushed.
258 @retval EFI_NO_MEDIA The device has no medium.
259 @retval EFI_DEVICE_ERROR The device reported an error.
260 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
261 @retval EFI_WRITE_PROTECTED The file or medium is write-protected.
262 @retval EFI_ACCESS_DENIED The file was opened read-only.
263 @retval EFI_VOLUME_FULL The volume is full.
264 **/
265 typedef
266 EFI_STATUS
267 (EFIAPI *EFI_SHELL_FLUSH_FILE)(
268 IN EFI_FILE_HANDLE FileHandle
269 );
270
271 /**
272 Frees the file list.
273
274 This function cleans up the file list and any related data structures. It has no
275 impact on the files themselves.
276
277 @param[in] FileList The file list to free. Type EFI_SHELL_FILE_INFO is
278 defined in OpenFileList().
279
280 @retval EFI_SUCCESS Free the file list successfully.
281 **/
282 typedef
283 EFI_STATUS
284 (EFIAPI *EFI_SHELL_FREE_FILE_LIST) (
285 IN EFI_SHELL_FILE_INFO **FileList
286 );
287
288 /**
289 Returns the current directory on the specified device.
290
291 If FileSystemMapping is NULL, it returns the current working directory. If the
292 FileSystemMapping is not NULL, it returns the current directory associated with the
293 FileSystemMapping. In both cases, the returned name includes the file system
294 mapping (i.e. fs0:\current-dir).
295
296 @param[in] FileSystemMapping A pointer to the file system mapping. If NULL,
297 then the current working directory is returned.
298
299 @retval !=NULL The current directory.
300 @retval NULL Current directory does not exist.
301 **/
302 typedef
303 CONST CHAR16 *
304 (EFIAPI *EFI_SHELL_GET_CUR_DIR) (
305 IN CONST CHAR16 *FileSystemMapping OPTIONAL
306 );
307
308 typedef UINT32 EFI_SHELL_DEVICE_NAME_FLAGS;
309 #define EFI_DEVICE_NAME_USE_COMPONENT_NAME 0x00000001
310 #define EFI_DEVICE_NAME_USE_DEVICE_PATH 0x00000002
311
312 /**
313 Gets the name of the device specified by the device handle.
314
315 This function gets the user-readable name of the device specified by the device
316 handle. If no user-readable name could be generated, then *BestDeviceName will be
317 NULL and EFI_NOT_FOUND will be returned.
318
319 If EFI_DEVICE_NAME_USE_COMPONENT_NAME is set, then the function will return the
320 device's name using the EFI_COMPONENT_NAME2_PROTOCOL, if present on
321 DeviceHandle.
322
323 If EFI_DEVICE_NAME_USE_DEVICE_PATH is set, then the function will return the
324 device's name using the EFI_DEVICE_PATH_PROTOCOL, if present on DeviceHandle.
325 If both EFI_DEVICE_NAME_USE_COMPONENT_NAME and
326 EFI_DEVICE_NAME_USE_DEVICE_PATH are set, then
327 EFI_DEVICE_NAME_USE_COMPONENT_NAME will have higher priority.
328
329 @param[in] DeviceHandle The handle of the device.
330 @param[in] Flags Determines the possible sources of component names.
331 @param[in] Language A pointer to the language specified for the device
332 name, in the same format as described in the UEFI
333 specification, Appendix M.
334 @param[out] BestDeviceName On return, points to the callee-allocated NULL-
335 terminated name of the device. If no device name
336 could be found, points to NULL. The name must be
337 freed by the caller...
338
339 @retval EFI_SUCCESS Get the name successfully.
340 @retval EFI_NOT_FOUND Fail to get the device name.
341 **/
342 typedef
343 EFI_STATUS
344 (*EFI_SHELL_GET_DEVICE_NAME) (
345 IN EFI_HANDLE DeviceHandle,
346 IN EFI_SHELL_DEVICE_NAME_FLAGS Flags,
347 IN CHAR8 *Language,
348 OUT CHAR16 **BestDeviceName
349 );
350
351 /**
352 Gets the device path from the mapping.
353
354 This function gets the device path associated with a mapping.
355
356 @param[in] Mapping A pointer to the mapping
357
358 @retval !=NULL Pointer to the device path that corresponds to the
359 device mapping. The returned pointer does not need
360 to be freed.
361 @retval NULL There is no device path associated with the
362 specified mapping.
363 **/
364 typedef
365 CONST EFI_DEVICE_PATH_PROTOCOL *
366 (EFIAPI *EFI_SHELL_GET_DEVICE_PATH_FROM_MAP) (
367 IN CONST CHAR16 *Mapping
368 );
369
370 /**
371 Converts a file system style name to a device path.
372
373 This function converts a file system style name to a device path, by replacing any
374 mapping references to the associated device path.
375
376 @param[in] Path The pointer to the path.
377
378 @return The pointer of the file path. The file path is callee
379 allocated and should be freed by the caller.
380 **/
381 typedef
382 EFI_DEVICE_PATH_PROTOCOL *
383 (EFIAPI *EFI_SHELL_GET_DEVICE_PATH_FROM_FILE_PATH) (
384 IN CONST CHAR16 *Path
385 );
386
387 /**
388 Gets either a single or list of environment variables.
389
390 If name is not NULL then this function returns the current value of the specified
391 environment variable.
392
393 If Name is NULL than a list of all environment variable names is returned. Each a
394 NULL terminated string with a double NULL terminating the list.
395
396 @param[in] Name A pointer to the environment variable name. If
397 Name is NULL, then the function will return all
398 of the defined shell environment variables. In
399 the case where multiple environment variables are
400 being returned, each variable will be terminated by
401 a NULL, and the list will be terminated by a double
402 NULL.
403
404 @return A pointer to the returned string.
405 The returned pointer does not need to be freed by the caller.
406
407 @retval NULL The environment variable doesn't exist or there are
408 no environment variables.
409 **/
410 typedef
411 CONST CHAR16 *
412 (EFIAPI *EFI_SHELL_GET_ENV) (
413 IN CONST CHAR16 *Name OPTIONAL
414 );
415
416 /**
417 Gets the file information from an open file handle.
418
419 This function allocates a buffer to store the file's information. It's the caller's
420 responsibility to free the buffer.
421
422 @param[in] FileHandle A File Handle.
423
424 @retval NULL Cannot get the file info.
425 @return A pointer to a buffer with file information.
426 **/
427 typedef
428 EFI_FILE_INFO *
429 (EFIAPI *EFI_SHELL_GET_FILE_INFO)(
430 IN EFI_FILE_HANDLE FileHandle
431 );
432
433 /**
434 Converts a device path to a file system-style path.
435
436 This function converts a device path to a file system path by replacing part, or all, of
437 the device path with the file-system mapping. If there are more than one application
438 file system mappings, the one that most closely matches Path will be used.
439
440 @param[in] Path The pointer to the device path.
441
442 @return The pointer of the NULL-terminated file path. The path
443 is callee-allocated and should be freed by the caller.
444 **/
445 typedef
446 CHAR16 *
447 (EFIAPI *EFI_SHELL_GET_FILE_PATH_FROM_DEVICE_PATH) (
448 IN CONST EFI_DEVICE_PATH_PROTOCOL *Path
449 );
450
451 /**
452 Gets a file's current position.
453
454 This function returns the current file position for the file handle. For directories, the
455 current file position has no meaning outside of the file system driver and as such, the
456 operation is not supported.
457
458 @param[in] FileHandle The file handle on which to get the current position.
459 @param[out] Position Byte position from the start of the file.
460
461 @retval EFI_SUCCESS Data was accessed.
462 @retval EFI_UNSUPPORTED The request is not valid on open directories.
463 **/
464 typedef
465 EFI_STATUS
466 (EFIAPI *EFI_SHELL_GET_FILE_POSITION)(
467 IN EFI_FILE_HANDLE FileHandle,
468 OUT UINT64 *Position
469 );
470
471 /**
472 Gets the size of a file.
473
474 This function returns the size of the file specified by FileHandle.
475
476 @param[in] FileHandle The handle of the file.
477 @param[out] Size The size of this file.
478
479 @retval EFI_SUCCESS Get the file's size.
480 @retval EFI_DEVICE_ERROR Can't access the file.
481 **/
482 typedef
483 EFI_STATUS
484 (EFIAPI *EFI_SHELL_GET_FILE_SIZE)(
485 IN EFI_FILE_HANDLE FileHandle,
486 OUT UINT64 *Size
487 );
488
489 /**
490 Return help information about a specific command.
491
492 This function returns the help information for the specified command. The help text
493 can be internal to the shell or can be from a UEFI Shell manual page.
494
495 If Sections is specified, then each section name listed will be compared in a casesensitive
496 manner, to the section names described in Appendix B. If the section exists,
497 it will be appended to the returned help text. If the section does not exist, no
498 information will be returned. If Sections is NULL, then all help text information
499 available will be returned.
500
501 @param[in] Command Points to the NULL-terminated UEFI Shell command name.
502 @param[in] Sections Points to the NULL-terminated comma-delimited
503 section names to return. If NULL, then all
504 sections will be returned.
505 @param[out] HelpText On return, points to a callee-allocated buffer
506 containing all specified help text.
507
508 @retval EFI_SUCCESS The help text was returned.
509 @retval EFI_OUT_OF_RESOURCES The necessary buffer could not be allocated to hold the
510 returned help text.
511 @retval EFI_INVALID_PARAMETER HelpText is NULL.
512 @retval EFI_NOT_FOUND There is no help text available for Command.
513 **/
514 typedef
515 EFI_STATUS
516 (EFIAPI *EFI_SHELL_GET_HELP_TEXT) (
517 IN CONST CHAR16 *Command,
518 IN CONST CHAR16 *Sections OPTIONAL,
519 OUT CHAR16 **HelpText
520 );
521
522 /**
523 Gets the mapping(s) that most closely matches the device path.
524
525 This function gets the mapping which corresponds to the device path *DevicePath. If
526 there is no exact match, then the mapping which most closely matches *DevicePath
527 is returned, and *DevicePath is updated to point to the remaining portion of the
528 device path. If there is an exact match, the mapping is returned and *DevicePath
529 points to the end-of-device-path node.
530
531 If there are multiple map names they will be semi-colon seperated in the
532 NULL-terminated string.
533
534 @param[in,out] DevicePath On entry, points to a device path pointer. On
535 exit, updates the pointer to point to the
536 portion of the device path after the mapping.
537
538 @retval NULL No mapping was found.
539 @retval !=NULL Pointer to NULL-terminated mapping. The buffer
540 is callee allocated and should be freed by the caller.
541 **/
542 typedef
543 CONST CHAR16 *
544 (EFIAPI *EFI_SHELL_GET_MAP_FROM_DEVICE_PATH) (
545 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
546 );
547
548 /**
549 Gets the enable status of the page break output mode.
550
551 User can use this function to determine current page break mode.
552
553 @retval TRUE The page break output mode is enabled.
554 @retval FALSE The page break output mode is disabled.
555 **/
556 typedef
557 BOOLEAN
558 (EFIAPI *EFI_SHELL_GET_PAGE_BREAK) (
559 VOID
560 );
561
562 /**
563 Judges whether the active shell is the root shell.
564
565 This function makes the user to know that whether the active Shell is the root shell.
566
567 @retval TRUE The active Shell is the root Shell.
568 @retval FALSE The active Shell is NOT the root Shell.
569 **/
570 typedef
571 BOOLEAN
572 (EFIAPI *EFI_SHELL_IS_ROOT_SHELL) (
573 VOID
574 );
575
576 /**
577 Opens a file or a directory by file name.
578
579 This function opens the specified file in the specified OpenMode and returns a file
580 handle.
581 If the file name begins with '>v', then the file handle which is returned refers to the
582 shell environment variable with the specified name. If the shell environment variable
583 exists, is non-volatile and the OpenMode indicates EFI_FILE_MODE_WRITE, then
584 EFI_INVALID_PARAMETER is returned.
585
586 If the file name is '>i', then the file handle which is returned refers to the standard
587 input. If the OpenMode indicates EFI_FILE_MODE_WRITE, then EFI_INVALID_PARAMETER
588 is returned.
589
590 If the file name is '>o', then the file handle which is returned refers to the standard
591 output. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
592 is returned.
593
594 If the file name is '>e', then the file handle which is returned refers to the standard
595 error. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER
596 is returned.
597
598 If the file name is 'NUL', then the file handle that is returned refers to the standard NUL
599 file. If the OpenMode indicates EFI_FILE_MODE_READ, then EFI_INVALID_PARAMETER is
600 returned.
601
602 If return EFI_SUCCESS, the FileHandle is the opened file's handle, else, the
603 FileHandle is NULL.
604
605 @param[in] FileName Points to the NULL-terminated UCS-2 encoded file name.
606 @param[out] FileHandle On return, points to the file handle.
607 @param[in] OpenMode File open mode. Either EFI_FILE_MODE_READ or
608 EFI_FILE_MODE_WRITE from section 12.4 of the UEFI
609 Specification.
610 @retval EFI_SUCCESS The file was opened. FileHandle has the opened file's handle.
611 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value. FileHandle is NULL.
612 @retval EFI_UNSUPPORTED Could not open the file path. FileHandle is NULL.
613 @retval EFI_NOT_FOUND The specified file could not be found on the device or the file
614 system could not be found on the device. FileHandle is NULL.
615 @retval EFI_NO_MEDIA The device has no medium. FileHandle is NULL.
616 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
617 longer supported. FileHandle is NULL.
618 @retval EFI_DEVICE_ERROR The device reported an error or can't get the file path according
619 the FileName. FileHandle is NULL.
620 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted. FileHandle is NULL.
621 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
622 when the media is write-protected. FileHandle is NULL.
623 @retval EFI_ACCESS_DENIED The service denied access to the file. FileHandle is NULL.
624 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file. FileHandle
625 is NULL.
626 @retval EFI_VOLUME_FULL The volume is full. FileHandle is NULL.
627 **/
628 typedef
629 EFI_STATUS
630 (EFIAPI *EFI_SHELL_OPEN_FILE_BY_NAME) (
631 IN CONST CHAR16 *FileName,
632 OUT EFI_FILE_HANDLE *FileHandle,
633 IN UINT64 OpenMode
634 );
635
636 /**
637 Opens the files that match the path specified.
638
639 This function opens all of the files specified by Path. Wildcards are processed
640 according to the rules specified in UEFI Shell 2.0 spec section 3.7.1. Each
641 matching file has an EFI_SHELL_FILE_INFO structure created in a linked list.
642
643 @param[in] Path A pointer to the path string.
644 @param[in] OpenMode Specifies the mode used to open each file, EFI_FILE_MODE_READ or
645 EFI_FILE_MODE_WRITE.
646 @param[in,out] FileList Points to the start of a list of files opened.
647
648 @retval EFI_SUCCESS Create the file list successfully.
649 @return Can't create the file list.
650 **/
651 typedef
652 EFI_STATUS
653 (EFIAPI *EFI_SHELL_OPEN_FILE_LIST) (
654 IN CHAR16 *Path,
655 IN UINT64 OpenMode,
656 IN OUT EFI_SHELL_FILE_INFO **FileList
657 );
658
659 /**
660 Opens the root directory of a device.
661
662 This function opens the root directory of a device and returns a file handle to it.
663
664 @param[in] DevicePath Points to the device path corresponding to the device where the
665 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL is installed.
666 @param[out] FileHandle On exit, points to the file handle corresponding to the root directory on the
667 device.
668
669 @retval EFI_SUCCESS Root opened successfully.
670 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
671 could not be opened.
672 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
673 @retval EFI_DEVICE_ERROR The device had an error.
674 **/
675 typedef
676 EFI_STATUS
677 (EFIAPI *EFI_SHELL_OPEN_ROOT)(
678 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath,
679 OUT EFI_FILE_HANDLE *FileHandle
680 );
681
682 /**
683 Opens the root directory of a device on a handle.
684
685 This function opens the root directory of a device and returns a file handle to it.
686
687 @param[in] DeviceHandle The handle of the device that contains the volume.
688 @param[out] FileHandle On exit, points to the file handle corresponding to the root directory on the
689 device.
690
691 @retval EFI_SUCCESS Root opened successfully.
692 @retval EFI_NOT_FOUND EFI_SIMPLE_FILE_SYSTEM could not be found or the root directory
693 could not be opened.
694 @retval EFI_VOLUME_CORRUPTED The data structures in the volume were corrupted.
695 @retval EFI_DEVICE_ERROR The device had an error.
696 **/
697 typedef
698 EFI_STATUS
699 (EFIAPI *EFI_SHELL_OPEN_ROOT_BY_HANDLE)(
700 IN EFI_HANDLE DeviceHandle,
701 OUT EFI_FILE_HANDLE *FileHandle
702 );
703
704 /**
705 Reads data from the file.
706
707 If FileHandle is not a directory, the function reads the requested number of bytes
708 from the file at the file's current position and returns them in Buffer. If the read goes
709 beyond the end of the file, the read length is truncated to the end of the file. The file's
710 current position is increased by the number of bytes returned.
711 If FileHandle is a directory, then an error is returned.
712
713 @param[in] FileHandle The opened file handle for read.
714 @param[in] ReadSize On input, the size of Buffer, in bytes. On output, the amount of data read.
715 @param[in,out] Buffer The buffer in which data is read.
716
717 @retval EFI_SUCCESS Data was read.
718 @retval EFI_NO_MEDIA The device has no media.
719 @retval EFI_DEVICE_ERROR The device reported an error.
720 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
721 @retval EFI_BUFFER_TO_SMALL Buffer is too small. ReadSize contains required size.
722 **/
723 typedef
724 EFI_STATUS
725 (EFIAPI *EFI_SHELL_READ_FILE) (
726 IN EFI_FILE_HANDLE FileHandle,
727 IN OUT UINTN *ReadSize,
728 IN OUT VOID *Buffer
729 );
730
731 /**
732 Deletes the duplicate file names files in the given file list.
733
734 @param[in] FileList A pointer to the first entry in the file list.
735
736 @retval EFI_SUCCESS Always success.
737 **/
738 typedef
739 EFI_STATUS
740 (EFIAPI *EFI_SHELL_REMOVE_DUP_IN_FILE_LIST) (
741 IN EFI_SHELL_FILE_INFO **FileList
742 );
743
744 /**
745 Changes a shell command alias.
746
747 This function creates an alias for a shell command.
748
749 @param[in] Command Points to the NULL-terminated shell command or existing alias.
750 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
751 Command refers to an alias, that alias will be deleted.
752 @param[in] Replace If TRUE and the alias already exists, then the existing alias will be replaced. If
753 FALSE and the alias already exists, then the existing alias is unchanged and
754 EFI_ACCESS_DENIED is returned.
755 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
756 Alias being set will be stored in a non-volatile fashion.
757
758 @retval EFI_SUCCESS Alias created or deleted successfully.
759 @retval EFI_ACCESS_DENIED The alias is a built-in alias or already existed and Replace was set to
760 FALSE.
761 **/
762 typedef
763 EFI_STATUS
764 (EFIAPI *EFI_SHELL_SET_ALIAS)(
765 IN CONST CHAR16 *Command,
766 IN CONST CHAR16 *Alias,
767 IN BOOLEAN Replace,
768 IN BOOLEAN Volatile
769 );
770
771 /**
772 This function returns the command associated with a alias or a list of all
773 alias'.
774
775 @param[in] Alias Points to the NULL-terminated shell alias.
776 If this parameter is NULL, then all
777 aliases will be returned in ReturnedData.
778 @param[out] Volatile Upon return of a single command if TRUE indicates
779 this is stored in a volatile fashion. FALSE otherwise.
780 @return If Alias is not NULL, it will return a pointer to
781 the NULL-terminated command for that alias.
782 If Alias is NULL, ReturnedData points to a ';'
783 delimited list of alias (e.g.
784 ReturnedData = "dir;del;copy;mfp") that is NULL-terminated.
785 @retval NULL An error ocurred.
786 @retval NULL Alias was not a valid Alias.
787 **/
788 typedef
789 CONST CHAR16 *
790 (EFIAPI *EFI_SHELL_GET_ALIAS)(
791 IN CONST CHAR16 *Alias,
792 OUT BOOLEAN *Volatile OPTIONAL
793 );
794
795 /**
796 Changes the current directory on the specified device.
797
798 If the FileSystem is NULL, and the directory Dir does not contain a file system's
799 mapped name, this function changes the current working directory. If FileSystem is
800 NULL and the directory Dir contains a mapped name, then the current file system and
801 the current directory on that file system are changed.
802
803 If FileSystem is not NULL, and Dir is NULL, then this changes the current working file
804 system.
805
806 If FileSystem is not NULL and Dir is not NULL, then this function changes the current
807 directory on the specified file system.
808
809 If the current working directory or the current working file system is changed then the
810 %cwd% environment variable will be updated.
811
812 @param[in] FileSystem A pointer to the file system's mapped name. If NULL, then the current working
813 directory is changed.
814 @param[in] Dir Points to the NULL-terminated directory on the device specified by FileSystem.
815
816 @retval NULL Current directory does not exist.
817 @return The current directory.
818 **/
819 typedef
820 EFI_STATUS
821 (EFIAPI *EFI_SHELL_SET_CUR_DIR) (
822 IN CONST CHAR16 *FileSystem OPTIONAL,
823 IN CONST CHAR16 *Dir
824 );
825
826 /**
827 Sets the environment variable.
828
829 This function changes the current value of the specified environment variable. If the
830 environment variable exists and the Value is an empty string, then the environment
831 variable is deleted. If the environment variable exists and the Value is not an empty
832 string, then the value of the environment variable is changed. If the environment
833 variable does not exist and the Value is an empty string, there is no action. If the
834 environment variable does not exist and the Value is a non-empty string, then the
835 environment variable is created and assigned the specified value.
836
837 For a description of volatile and non-volatile environment variables, see UEFI Shell
838 2.0 specification section 3.6.1.
839
840 @param[in] Name Points to the NULL-terminated environment variable name.
841 @param[in] Value Points to the NULL-terminated environment variable value. If the value is an
842 empty string then the environment variable is deleted.
843 @param[in] Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
844
845 @retval EFI_SUCCESS The environment variable was successfully updated.
846 **/
847 typedef
848 EFI_STATUS
849 (EFIAPI *EFI_SHELL_SET_ENV) (
850 IN CONST CHAR16 *Name,
851 IN CONST CHAR16 *Value,
852 IN BOOLEAN Volatile
853 );
854
855 /**
856 Sets the file information to an opened file handle.
857
858 This function changes file information. All file information in the EFI_FILE_INFO
859 struct will be updated to the passed in data.
860
861 @param[in] FileHandle A file handle.
862 @param[in] FileInfo Points to new file information.
863
864 @retval EFI_SUCCESS The information was set.
865 @retval EFI_NO_MEDIA The device has no medium.
866 @retval EFI_DEVICE_ERROR The device reported an error.
867 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
868 @retval EFI_WRITE_PROTECTED The file or medium is write-protected.
869 @retval EFI_ACCESS_DENIED The file was opened read-only.
870 @retval EFI_VOLUME_FULL The volume is full.
871 @retval EFI_BAD_BUFFER_SIZE BufferSize is smaller than the size of EFI_FILE_INFO.
872 **/
873 typedef
874 EFI_STATUS
875 (EFIAPI *EFI_SHELL_SET_FILE_INFO)(
876 IN EFI_FILE_HANDLE FileHandle,
877 IN CONST EFI_FILE_INFO *FileInfo
878 );
879
880 /**
881 Sets a file's current position.
882
883 This function sets the current file position for the handle to the position supplied. With
884 the exception of seeking to position 0xFFFFFFFFFFFFFFFF, only absolute positioning is
885 supported, and seeking past the end of the file is allowed (a subsequent write would
886 grow the file). Seeking to position 0xFFFFFFFFFFFFFFFF causes the current position
887 to be set to the end of the file.
888
889 @param[in] FileHandle The file handle on which requested position will be set.
890 @param[in] Position Byte position from the start of the file.
891
892 @retval EFI_SUCCESS Data was written.
893 @retval EFI_UNSUPPORTED The seek request for nonzero is not valid on open directories.
894 **/
895 typedef
896 EFI_STATUS
897 (EFIAPI *EFI_SHELL_SET_FILE_POSITION)(
898 IN EFI_FILE_HANDLE FileHandle,
899 IN UINT64 Position
900 );
901
902 /**
903 This function creates a mapping for a device path.
904
905 @param[in] DevicePath Points to the device path. If this is NULL and Mapping points to a valid mapping,
906 then the mapping will be deleted.
907 @param[in] Mapping Points to the NULL-terminated mapping for the device path.
908
909 @retval EFI_SUCCESS Mapping created or deleted successfully.
910 @retval EFI_NO_MAPPING There is no handle that corresponds exactly to DevicePath. See the
911 boot service function LocateDevicePath().
912 @retval EFI_ACCESS_DENIED The mapping is a built-in alias.
913 **/
914 typedef
915 EFI_STATUS
916 (EFIAPI *EFI_SHELL_SET_MAP)(
917 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,
918 IN CONST CHAR16 *Mapping
919 );
920
921 /**
922 Writes data to the file.
923
924 This function writes the specified number of bytes to the file at the current file position.
925 The current file position is advanced the actual number of bytes written, which is
926 returned in BufferSize. Partial writes only occur when there has been a data error
927 during the write attempt (such as "volume space full"). The file automatically grows to
928 hold the data, if required.
929
930 Direct writes to opened directories are not supported.
931
932 @param[in] FileHandle The opened file handle for writing.
933 @param[in,out] BufferSize On input, size of Buffer.
934 @param[in] Buffer The buffer in which data to write.
935
936 @retval EFI_SUCCESS Data was written.
937 @retval EFI_UNSUPPORTED Writes to open directory are not supported.
938 @retval EFI_NO_MEDIA The device has no media.
939 @retval EFI_DEVICE_ERROR The device reported an error.
940 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
941 @retval EFI_WRITE_PROTECTED The device is write-protected.
942 @retval EFI_ACCESS_DENIED The file was open for read only.
943 @retval EFI_VOLUME_FULL The volume is full.
944 **/
945 typedef
946 EFI_STATUS
947 (EFIAPI *EFI_SHELL_WRITE_FILE)(
948 IN EFI_FILE_HANDLE FileHandle,
949 IN OUT UINTN *BufferSize,
950 IN VOID *Buffer
951 );
952
953 typedef struct _EFI_SHELL_PROTOCOL {
954 EFI_SHELL_EXECUTE Execute;
955 EFI_SHELL_GET_ENV GetEnv;
956 EFI_SHELL_SET_ENV SetEnv;
957 EFI_SHELL_GET_ALIAS GetAlias;
958 EFI_SHELL_SET_ALIAS SetAlias;
959 EFI_SHELL_GET_HELP_TEXT GetHelpText;
960 EFI_SHELL_GET_DEVICE_PATH_FROM_MAP GetDevicePathFromMap;
961 EFI_SHELL_GET_MAP_FROM_DEVICE_PATH GetMapFromDevicePath;
962 EFI_SHELL_GET_DEVICE_PATH_FROM_FILE_PATH GetDevicePathFromFilePath;
963 EFI_SHELL_GET_FILE_PATH_FROM_DEVICE_PATH GetFilePathFromDevicePath;
964 EFI_SHELL_SET_MAP SetMap;
965 EFI_SHELL_GET_CUR_DIR GetCurDir;
966 EFI_SHELL_SET_CUR_DIR SetCurDir;
967 EFI_SHELL_OPEN_FILE_LIST OpenFileList;
968 EFI_SHELL_FREE_FILE_LIST FreeFileList;
969 EFI_SHELL_REMOVE_DUP_IN_FILE_LIST RemoveDupInFileList;
970 EFI_SHELL_BATCH_IS_ACTIVE BatchIsActive;
971 EFI_SHELL_IS_ROOT_SHELL IsRootShell;
972 EFI_SHELL_ENABLE_PAGE_BREAK EnablePageBreak;
973 EFI_SHELL_DISABLE_PAGE_BREAK DisablePageBreak;
974 EFI_SHELL_GET_PAGE_BREAK GetPageBreak;
975 EFI_SHELL_GET_DEVICE_NAME GetDeviceName;
976 EFI_SHELL_GET_FILE_INFO GetFileInfo;
977 EFI_SHELL_SET_FILE_INFO SetFileInfo;
978 EFI_SHELL_OPEN_FILE_BY_NAME OpenFileByName;
979 EFI_SHELL_CLOSE_FILE CloseFile;
980 EFI_SHELL_CREATE_FILE CreateFile;
981 EFI_SHELL_READ_FILE ReadFile;
982 EFI_SHELL_WRITE_FILE WriteFile;
983 EFI_SHELL_DELETE_FILE DeleteFile;
984 EFI_SHELL_DELETE_FILE_BY_NAME DeleteFileByName;
985 EFI_SHELL_GET_FILE_POSITION GetFilePosition;
986 EFI_SHELL_SET_FILE_POSITION SetFilePosition;
987 EFI_SHELL_FLUSH_FILE FlushFile;
988 EFI_SHELL_FIND_FILES FindFiles;
989 EFI_SHELL_FIND_FILES_IN_DIR FindFilesInDir;
990 EFI_SHELL_GET_FILE_SIZE GetFileSize;
991 EFI_SHELL_OPEN_ROOT OpenRoot;
992 EFI_SHELL_OPEN_ROOT_BY_HANDLE OpenRootByHandle;
993 EFI_EVENT ExecutionBreak;
994 UINT32 MajorVersion;
995 UINT32 MinorVersion;
996 } EFI_SHELL_PROTOCOL;
997
998 extern EFI_GUID gEfiShellProtocolGuid;
999
1000 enum ShellVersion {
1001 SHELL_MAJOR_VERSION = 2,
1002 SHELL_MINOR_VERSION = 0
1003 };
1004
1005 #endif