blob: 2085f6c5218432d0c1eaef7d123c73196d1ae77a [file] [log] [blame]
jcarseyd2b45642009-05-11 18:02:16 +00001/** @file
2 Provides interface to EFI_FILE_HANDLE functionality.
3
rsun33bbe68a2012-02-01 06:06:08 +00004 Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved. <BR>
jcarseyac255da2010-01-25 20:06:10 +00005 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
jcarseyd2b45642009-05-11 18:02:16 +00009
jcarseyac255da2010-01-25 20:06:10 +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.
jcarseyd2b45642009-05-11 18:02:16 +000012
13**/
14
15#include <Uefi.h>
16
jcarseyb1f95a02009-06-16 00:23:19 +000017#include <Protocol/SimpleFileSystem.h>
jcarsey4eb59be2011-03-25 20:43:54 +000018#include <Protocol/UnicodeCollation.h>
jcarseyb1f95a02009-06-16 00:23:19 +000019
20#include <Guid/FileInfo.h>
21
jcarseyd2b45642009-05-11 18:02:16 +000022#include <Library/DebugLib.h>
23#include <Library/MemoryAllocationLib.h>
jcarseyb1f95a02009-06-16 00:23:19 +000024#include <Library/BaseLib.h>
25#include <Library/BaseMemoryLib.h>
jcarseyb3011f42010-01-11 21:49:04 +000026#include <Library/FileHandleLib.h>
27#include <Library/PcdLib.h>
28#include <Library/PrintLib.h>
jcarseyd2b45642009-05-11 18:02:16 +000029
jcarsey4eb59be2011-03-25 20:43:54 +000030CONST UINT16 gUnicodeFileTag = EFI_UNICODE_BYTE_ORDER_MARK;
31
jcarseyd2b45642009-05-11 18:02:16 +000032#define MAX_FILE_NAME_LEN 522 // (20 * (6+5+2))+1) unicode characters from EFI FAT spec (doubled for bytes)
33#define FIND_XXXXX_FILE_BUFFER_SIZE (SIZE_OF_EFI_FILE_INFO + MAX_FILE_NAME_LEN)
34
35/**
jcarseya405b862010-09-14 05:18:09 +000036 This function will retrieve the information about the file for the handle
jcarseyd2b45642009-05-11 18:02:16 +000037 specified and store it in allocated pool memory.
38
jcarseya405b862010-09-14 05:18:09 +000039 This function allocates a buffer to store the file's information. It is the
qhuang869817bf2009-05-20 14:42:48 +000040 caller's responsibility to free the buffer
jcarseyd2b45642009-05-11 18:02:16 +000041
jcarseya405b862010-09-14 05:18:09 +000042 @param FileHandle The file handle of the file for which information is
jcarseyd2b45642009-05-11 18:02:16 +000043 being requested.
44
45 @retval NULL information could not be retrieved.
46
47 @return the information about the file
48**/
49EFI_FILE_INFO*
50EFIAPI
51FileHandleGetInfo (
52 IN EFI_FILE_HANDLE FileHandle
53 )
54{
jcarseya405b862010-09-14 05:18:09 +000055 EFI_FILE_INFO *FileInfo;
jcarseyd2b45642009-05-11 18:02:16 +000056 UINTN FileInfoSize;
57 EFI_STATUS Status;
58
jcarsey4eb59be2011-03-25 20:43:54 +000059 if (FileHandle == NULL) {
60 return (NULL);
61 }
jcarseyd2b45642009-05-11 18:02:16 +000062
63 //
64 // Get the required size to allocate
65 //
jcarseyd2b45642009-05-11 18:02:16 +000066 FileInfoSize = 0;
jcarseya405b862010-09-14 05:18:09 +000067 FileInfo = NULL;
68 Status = FileHandle->GetInfo(FileHandle,
69 &gEfiFileInfoGuid,
70 &FileInfoSize,
jcarsey4eb59be2011-03-25 20:43:54 +000071 NULL);
72 if (Status == EFI_BUFFER_TOO_SMALL){
73 //
74 // error is expected. getting size to allocate
75 //
76 FileInfo = AllocateZeroPool(FileInfoSize);
77 //
78 // now get the information
79 //
80 Status = FileHandle->GetInfo(FileHandle,
81 &gEfiFileInfoGuid,
82 &FileInfoSize,
83 FileInfo);
84 //
85 // if we got an error free the memory and return NULL
86 //
Sergei Antonov037ca232013-09-20 20:10:17 +000087 if (EFI_ERROR(Status) && (FileInfo != NULL)) {
jcarsey4eb59be2011-03-25 20:43:54 +000088 FreePool(FileInfo);
Sergei Antonov037ca232013-09-20 20:10:17 +000089 FileInfo = NULL;
jcarsey4eb59be2011-03-25 20:43:54 +000090 }
jcarseyd2b45642009-05-11 18:02:16 +000091 }
jcarseya405b862010-09-14 05:18:09 +000092 return (FileInfo);
jcarseyd2b45642009-05-11 18:02:16 +000093}
94
95/**
jcarseya405b862010-09-14 05:18:09 +000096 This function sets the information about the file for the opened handle
jcarseyd2b45642009-05-11 18:02:16 +000097 specified.
98
jcarseya405b862010-09-14 05:18:09 +000099 @param[in] FileHandle The file handle of the file for which information
100 is being set.
jcarseyd2b45642009-05-11 18:02:16 +0000101
jcarseya405b862010-09-14 05:18:09 +0000102 @param[in] FileInfo The information to set.
jcarseyd2b45642009-05-11 18:02:16 +0000103
darylm503b0934ac2011-11-12 00:35:11 +0000104 @retval EFI_SUCCESS The information was set.
jcarseya405b862010-09-14 05:18:09 +0000105 @retval EFI_INVALID_PARAMETER A parameter was out of range or invalid.
106 @retval EFI_UNSUPPORTED The FileHandle does not support FileInfo.
darylm503b0934ac2011-11-12 00:35:11 +0000107 @retval EFI_NO_MEDIA The device has no medium.
108 @retval EFI_DEVICE_ERROR The device reported an error.
109 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
110 @retval EFI_WRITE_PROTECTED The file or medium is write protected.
jcarseya405b862010-09-14 05:18:09 +0000111 @retval EFI_ACCESS_DENIED The file was opened read only.
112 @retval EFI_VOLUME_FULL The volume is full.
jcarseyd2b45642009-05-11 18:02:16 +0000113**/
114EFI_STATUS
115EFIAPI
116FileHandleSetInfo (
darylm503b0934ac2011-11-12 00:35:11 +0000117 IN EFI_FILE_HANDLE FileHandle,
jcarseyd2b45642009-05-11 18:02:16 +0000118 IN CONST EFI_FILE_INFO *FileInfo
119 )
120{
jcarseya405b862010-09-14 05:18:09 +0000121
jcarseyd2b45642009-05-11 18:02:16 +0000122 //
123 // ASSERT if the FileHandle or FileInfo is NULL
124 //
125 ASSERT (FileHandle != NULL);
126 ASSERT (FileInfo != NULL);
127
jcarseyd2b45642009-05-11 18:02:16 +0000128 //
129 // Set the info
130 //
jcarseya405b862010-09-14 05:18:09 +0000131 return (FileHandle->SetInfo(FileHandle,
qhuang83d342022009-11-18 06:01:35 +0000132 &gEfiFileInfoGuid,
jcarseyd2b45642009-05-11 18:02:16 +0000133 (UINTN)FileInfo->Size,
134 (EFI_FILE_INFO*)FileInfo));
jcarseya405b862010-09-14 05:18:09 +0000135}
jcarseyd2b45642009-05-11 18:02:16 +0000136
137/**
138 This function reads information from an opened file.
139
jcarseya405b862010-09-14 05:18:09 +0000140 If FileHandle is not a directory, the function reads the requested number of
141 bytes from the file at the file's current position and returns them in Buffer.
jcarseyd2b45642009-05-11 18:02:16 +0000142 If the read goes beyond the end of the file, the read length is truncated to the
jcarseya405b862010-09-14 05:18:09 +0000143 end of the file. The file's current position is increased by the number of bytes
144 returned. If FileHandle is a directory, the function reads the directory entry
145 at the file's current position and returns the entry in Buffer. If the Buffer
146 is not large enough to hold the current directory entry, then
147 EFI_BUFFER_TOO_SMALL is returned and the current file position is not updated.
148 BufferSize is set to be the size of the buffer needed to read the entry. On
149 success, the current position is updated to the next directory entry. If there
150 are no more directory entries, the read returns a zero-length buffer.
jcarseyd2b45642009-05-11 18:02:16 +0000151 EFI_FILE_INFO is the structure returned as the directory entry.
152
153 @param FileHandle the opened file handle
jcarseya405b862010-09-14 05:18:09 +0000154 @param BufferSize on input the size of buffer in bytes. on return
jcarseyd2b45642009-05-11 18:02:16 +0000155 the number of bytes written.
156 @param Buffer the buffer to put read data into.
157
jcarseya405b862010-09-14 05:18:09 +0000158 @retval EFI_SUCCESS Data was read.
159 @retval EFI_NO_MEDIA The device has no media.
160 @retval EFI_DEVICE_ERROR The device reported an error.
161 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
162 @retval EFI_BUFFER_TO_SMALL Buffer is too small. ReadSize contains required
jcarseyd2b45642009-05-11 18:02:16 +0000163 size.
164
165**/
166EFI_STATUS
167EFIAPI
168FileHandleRead(
169 IN EFI_FILE_HANDLE FileHandle,
170 IN OUT UINTN *BufferSize,
171 OUT VOID *Buffer
172 )
173{
174 //
175 // ASSERT if FileHandle is NULL
176 //
177 ASSERT (FileHandle != NULL);
178
179 //
180 // Perform the read based on EFI_FILE_PROTOCOL
181 //
182 return (FileHandle->Read(FileHandle, BufferSize, Buffer));
183}
184
185
186/**
187 Write data to a file.
188
jcarseya405b862010-09-14 05:18:09 +0000189 This function writes the specified number of bytes to the file at the current
190 file position. The current file position is advanced the actual number of bytes
191 written, which is returned in BufferSize. Partial writes only occur when there
192 has been a data error during the write attempt (such as "volume space full").
193 The file is automatically grown to hold the data if required. Direct writes to
jcarseyd2b45642009-05-11 18:02:16 +0000194 opened directories are not supported.
195
196 @param FileHandle The opened file for writing
197 @param BufferSize on input the number of bytes in Buffer. On output
198 the number of bytes written.
199 @param Buffer the buffer containing data to write is stored.
200
darylm503b0934ac2011-11-12 00:35:11 +0000201 @retval EFI_SUCCESS Data was written.
202 @retval EFI_UNSUPPORTED Writes to an open directory are not supported.
203 @retval EFI_NO_MEDIA The device has no media.
204 @retval EFI_DEVICE_ERROR The device reported an error.
205 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
206 @retval EFI_WRITE_PROTECTED The device is write-protected.
207 @retval EFI_ACCESS_DENIED The file was open for read only.
208 @retval EFI_VOLUME_FULL The volume is full.
jcarseyd2b45642009-05-11 18:02:16 +0000209**/
210EFI_STATUS
211EFIAPI
212FileHandleWrite(
213 IN EFI_FILE_HANDLE FileHandle,
214 IN OUT UINTN *BufferSize,
215 IN VOID *Buffer
216 )
217{
218 //
219 // ASSERT if FileHandle is NULL
220 //
221 ASSERT (FileHandle != NULL);
222 //
223 // Perform the write based on EFI_FILE_PROTOCOL
224 //
225 return (FileHandle->Write(FileHandle, BufferSize, Buffer));
226}
227
jcarseya405b862010-09-14 05:18:09 +0000228/**
jcarseyd2b45642009-05-11 18:02:16 +0000229 Close an open file handle.
230
jcarseya405b862010-09-14 05:18:09 +0000231 This function closes a specified file handle. All "dirty" cached file data is
232 flushed to the device, and the file is closed. In all cases the handle is
jcarseyd2b45642009-05-11 18:02:16 +0000233 closed.
234
235@param FileHandle the file handle to close.
236
237@retval EFI_SUCCESS the file handle was closed sucessfully.
238**/
239EFI_STATUS
240EFIAPI
241FileHandleClose (
242 IN EFI_FILE_HANDLE FileHandle
243 )
244{
245 EFI_STATUS Status;
246 //
247 // ASSERT if FileHandle is NULL
248 //
249 ASSERT (FileHandle != NULL);
250 //
251 // Perform the Close based on EFI_FILE_PROTOCOL
252 //
253 Status = FileHandle->Close(FileHandle);
254 return Status;
255}
256
257/**
258 Delete a file and close the handle
259
260 This function closes and deletes a file. In all cases the file handle is closed.
jcarseya405b862010-09-14 05:18:09 +0000261 If the file cannot be deleted, the warning code EFI_WARN_DELETE_FAILURE is
jcarseyd2b45642009-05-11 18:02:16 +0000262 returned, but the handle is still closed.
263
264 @param FileHandle the file handle to delete
265
266 @retval EFI_SUCCESS the file was closed sucessfully
jcarseya405b862010-09-14 05:18:09 +0000267 @retval EFI_WARN_DELETE_FAILURE the handle was closed, but the file was not
jcarseyd2b45642009-05-11 18:02:16 +0000268 deleted
darylm503b0934ac2011-11-12 00:35:11 +0000269 @retval INVALID_PARAMETER One of the parameters has an invalid value.
jcarseyd2b45642009-05-11 18:02:16 +0000270**/
271EFI_STATUS
272EFIAPI
273FileHandleDelete (
darylm503b0934ac2011-11-12 00:35:11 +0000274 IN EFI_FILE_HANDLE FileHandle
jcarseyd2b45642009-05-11 18:02:16 +0000275 )
276{
277 EFI_STATUS Status;
278 //
279 // ASSERT if FileHandle is NULL
280 //
281 ASSERT (FileHandle != NULL);
282 //
283 // Perform the Delete based on EFI_FILE_PROTOCOL
284 //
285 Status = FileHandle->Delete(FileHandle);
286 return Status;
287}
288
289/**
290 Set the current position in a file.
291
jcarseya405b862010-09-14 05:18:09 +0000292 This function sets the current file position for the handle to the position
jcarseyd2b45642009-05-11 18:02:16 +0000293 supplied. With the exception of seeking to position 0xFFFFFFFFFFFFFFFF, only
jcarseya405b862010-09-14 05:18:09 +0000294 absolute positioning is supported, and seeking past the end of the file is
295 allowed (a subsequent write would grow the file). Seeking to position
jcarseyd2b45642009-05-11 18:02:16 +0000296 0xFFFFFFFFFFFFFFFF causes the current position to be set to the end of the file.
jcarseya405b862010-09-14 05:18:09 +0000297 If FileHandle is a directory, the only position that may be set is zero. This
jcarseyd2b45642009-05-11 18:02:16 +0000298 has the effect of starting the read process of the directory entries over.
299
300 @param FileHandle The file handle on which the position is being set
301 @param Position Byte position from begining of file
302
303 @retval EFI_SUCCESS Operation completed sucessfully.
jcarseya405b862010-09-14 05:18:09 +0000304 @retval EFI_UNSUPPORTED the seek request for non-zero is not valid on
jcarseyd2b45642009-05-11 18:02:16 +0000305 directories.
306 @retval INVALID_PARAMETER One of the parameters has an invalid value.
307**/
308EFI_STATUS
309EFIAPI
310FileHandleSetPosition (
darylm503b0934ac2011-11-12 00:35:11 +0000311 IN EFI_FILE_HANDLE FileHandle,
312 IN UINT64 Position
jcarseyd2b45642009-05-11 18:02:16 +0000313 )
314{
315 //
316 // ASSERT if FileHandle is NULL
317 //
318 ASSERT (FileHandle != NULL);
319 //
320 // Perform the SetPosition based on EFI_FILE_PROTOCOL
321 //
322 return (FileHandle->SetPosition(FileHandle, Position));
323}
324
jcarseya405b862010-09-14 05:18:09 +0000325/**
jcarseyd2b45642009-05-11 18:02:16 +0000326 Gets a file's current position
327
jcarseya405b862010-09-14 05:18:09 +0000328 This function retrieves the current file position for the file handle. For
329 directories, the current file position has no meaning outside of the file
jcarseyd2b45642009-05-11 18:02:16 +0000330 system driver and as such the operation is not supported. An error is returned
331 if FileHandle is a directory.
332
333 @param FileHandle The open file handle on which to get the position.
334 @param Position Byte position from begining of file.
335
336 @retval EFI_SUCCESS the operation completed sucessfully.
337 @retval INVALID_PARAMETER One of the parameters has an invalid value.
338 @retval EFI_UNSUPPORTED the request is not valid on directories.
339**/
340EFI_STATUS
341EFIAPI
342FileHandleGetPosition (
343 IN EFI_FILE_HANDLE FileHandle,
344 OUT UINT64 *Position
345 )
346{
jcarseya405b862010-09-14 05:18:09 +0000347 if (Position == NULL) {
348 return (EFI_INVALID_PARAMETER);
349 }
jcarseyd2b45642009-05-11 18:02:16 +0000350 //
351 // ASSERT if FileHandle is NULL
352 //
353 ASSERT (FileHandle != NULL);
354 //
355 // Perform the GetPosition based on EFI_FILE_PROTOCOL
356 //
357 return (FileHandle->GetPosition(FileHandle, Position));
358}
359/**
360 Flushes data on a file
jcarseya405b862010-09-14 05:18:09 +0000361
jcarseyd2b45642009-05-11 18:02:16 +0000362 This function flushes all modified data associated with a file to a device.
363
364 @param FileHandle The file handle on which to flush data
365
366 @retval EFI_SUCCESS The data was flushed.
367 @retval EFI_NO_MEDIA The device has no media.
368 @retval EFI_DEVICE_ERROR The device reported an error.
369 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
370 @retval EFI_WRITE_PROTECTED The file or medium is write protected.
371 @retval EFI_ACCESS_DENIED The file was opened for read only.
372**/
373EFI_STATUS
374EFIAPI
375FileHandleFlush (
376 IN EFI_FILE_HANDLE FileHandle
377 )
378{
379 //
380 // ASSERT if FileHandle is NULL
381 //
382 ASSERT (FileHandle != NULL);
383 //
384 // Perform the Flush based on EFI_FILE_PROTOCOL
385 //
386 return (FileHandle->Flush(FileHandle));
387}
388
389/**
390 function to determine if a given handle is a directory handle
391
392 if DirHandle is NULL then ASSERT()
393
394 open the file information on the DirHandle and verify that the Attribute
395 includes EFI_FILE_DIRECTORY bit set.
396
397 @param DirHandle Handle to open file
398
399 @retval EFI_SUCCESS DirHandle is a directory
400 @retval EFI_INVALID_PARAMETER DirHandle did not have EFI_FILE_INFO available
401 @retval EFI_NOT_FOUND DirHandle is not a directory
402**/
403EFI_STATUS
404EFIAPI
405FileHandleIsDirectory (
406 IN EFI_FILE_HANDLE DirHandle
407 )
408{
409 EFI_FILE_INFO *DirInfo;
410
411 //
412 // ASSERT if DirHandle is NULL
413 //
414 ASSERT(DirHandle != NULL);
jcarseya405b862010-09-14 05:18:09 +0000415
jcarseyd2b45642009-05-11 18:02:16 +0000416 //
417 // get the file information for DirHandle
418 //
419 DirInfo = FileHandleGetInfo (DirHandle);
jcarseya405b862010-09-14 05:18:09 +0000420
jcarseyd2b45642009-05-11 18:02:16 +0000421 //
422 // Parse DirInfo
423 //
424 if (DirInfo == NULL) {
425 //
426 // We got nothing...
427 //
428 return (EFI_INVALID_PARAMETER);
jcarseya405b862010-09-14 05:18:09 +0000429 }
jcarseyd2b45642009-05-11 18:02:16 +0000430 if ((DirInfo->Attribute & EFI_FILE_DIRECTORY) == 0) {
431 //
432 // Attributes say this is not a directory
433 //
434 FreePool (DirInfo);
435 return (EFI_NOT_FOUND);
436 }
437 //
438 // all good...
439 //
440 FreePool (DirInfo);
441 return (EFI_SUCCESS);
442}
443
darylm503b0934ac2011-11-12 00:35:11 +0000444/** Retrieve first entry from a directory.
jcarseyd2b45642009-05-11 18:02:16 +0000445
darylm503b0934ac2011-11-12 00:35:11 +0000446 This function takes an open directory handle and gets information from the
447 first entry in the directory. A buffer is allocated to contain
448 the information and a pointer to the buffer is returned in *Buffer. The
449 caller can use FileHandleFindNextFile() to get subsequent directory entries.
jcarseyd2b45642009-05-11 18:02:16 +0000450
darylm503b0934ac2011-11-12 00:35:11 +0000451 The buffer will be freed by FileHandleFindNextFile() when the last directory
452 entry is read. Otherwise, the caller must free the buffer, using FreePool,
453 when finished with it.
454
455 @param[in] DirHandle The file handle of the directory to search.
456 @param[out] Buffer The pointer to pointer to buffer for file's information.
jcarseyd2b45642009-05-11 18:02:16 +0000457
458 @retval EFI_SUCCESS Found the first file.
459 @retval EFI_NOT_FOUND Cannot find the directory.
460 @retval EFI_NO_MEDIA The device has no media.
461 @retval EFI_DEVICE_ERROR The device reported an error.
462 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
463 @return Others status of FileHandleGetInfo, FileHandleSetPosition,
464 or FileHandleRead
465**/
466EFI_STATUS
467EFIAPI
468FileHandleFindFirstFile (
469 IN EFI_FILE_HANDLE DirHandle,
470 OUT EFI_FILE_INFO **Buffer
471 )
472{
473 EFI_STATUS Status;
474 UINTN BufferSize;
475
jcarsey4eb59be2011-03-25 20:43:54 +0000476 if (Buffer == NULL || DirHandle == NULL) {
477 return (EFI_INVALID_PARAMETER);
478 }
jcarseyd2b45642009-05-11 18:02:16 +0000479
480 //
481 // verify that DirHandle is a directory
482 //
483 Status = FileHandleIsDirectory(DirHandle);
484 if (EFI_ERROR(Status)) {
485 return (Status);
jcarseya405b862010-09-14 05:18:09 +0000486 }
jcarseyd2b45642009-05-11 18:02:16 +0000487
488 //
jcarseyd2b45642009-05-11 18:02:16 +0000489 // Allocate a buffer sized to struct size + enough for the string at the end
490 //
491 BufferSize = FIND_XXXXX_FILE_BUFFER_SIZE;
492 *Buffer = AllocateZeroPool(BufferSize);
jcarsey4eb59be2011-03-25 20:43:54 +0000493 if (*Buffer == NULL){
494 return (EFI_OUT_OF_RESOURCES);
495 }
496
497 //
498 // reset to the begining of the directory
499 //
500 Status = FileHandleSetPosition(DirHandle, 0);
501 if (EFI_ERROR(Status)) {
502 FreePool(*Buffer);
503 *Buffer = NULL;
504 return (Status);
505 }
jcarseyd2b45642009-05-11 18:02:16 +0000506
507 //
508 // read in the info about the first file
509 //
510 Status = FileHandleRead (DirHandle, &BufferSize, *Buffer);
511 ASSERT(Status != EFI_BUFFER_TOO_SMALL);
jcarsey74fa83f2012-02-02 16:55:30 +0000512 if (EFI_ERROR(Status) || BufferSize == 0) {
jcarseyd2b45642009-05-11 18:02:16 +0000513 FreePool(*Buffer);
514 *Buffer = NULL;
jcarsey74fa83f2012-02-02 16:55:30 +0000515 if (BufferSize == 0) {
516 return (EFI_NOT_FOUND);
517 }
jcarseyd2b45642009-05-11 18:02:16 +0000518 return (Status);
519 }
520 return (EFI_SUCCESS);
521}
jcarseyd2b45642009-05-11 18:02:16 +0000522
darylm503b0934ac2011-11-12 00:35:11 +0000523/** Retrieve next entries from a directory.
jcarseyd2b45642009-05-11 18:02:16 +0000524
darylm503b0934ac2011-11-12 00:35:11 +0000525 To use this function, the caller must first call the FileHandleFindFirstFile()
526 function to get the first directory entry. Subsequent directory entries are
527 retrieved by using the FileHandleFindNextFile() function. This function can
528 be called several times to get each entry from the directory. If the call of
529 FileHandleFindNextFile() retrieved the last directory entry, the next call of
530 this function will set *NoFile to TRUE and free the buffer.
531
532 @param[in] DirHandle The file handle of the directory.
533 @param[out] Buffer The pointer to buffer for file's information.
534 @param[out] NoFile The pointer to boolean when last file is found.
jcarseyd2b45642009-05-11 18:02:16 +0000535
536 @retval EFI_SUCCESS Found the next file, or reached last file
537 @retval EFI_NO_MEDIA The device has no media.
538 @retval EFI_DEVICE_ERROR The device reported an error.
539 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
540**/
541EFI_STATUS
542EFIAPI
543FileHandleFindNextFile(
darylm503b0934ac2011-11-12 00:35:11 +0000544 IN EFI_FILE_HANDLE DirHandle,
545 OUT EFI_FILE_INFO *Buffer,
546 OUT BOOLEAN *NoFile
jcarseyd2b45642009-05-11 18:02:16 +0000547 )
548{
549 EFI_STATUS Status;
550 UINTN BufferSize;
551
552 //
553 // ASSERTs for DirHandle or Buffer or NoFile poitners being NULL
554 //
555 ASSERT (DirHandle != NULL);
556 ASSERT (Buffer != NULL);
557 ASSERT (NoFile != NULL);
jcarseyd2b45642009-05-11 18:02:16 +0000558
559 //
560 // This BufferSize MUST stay equal to the originally allocated one in GetFirstFile
561 //
562 BufferSize = FIND_XXXXX_FILE_BUFFER_SIZE;
563
564 //
565 // read in the info about the next file
566 //
567 Status = FileHandleRead (DirHandle, &BufferSize, Buffer);
568 ASSERT(Status != EFI_BUFFER_TOO_SMALL);
569 if (EFI_ERROR(Status)) {
570 return (Status);
571 }
572
573 //
574 // If we read 0 bytes (but did not have erros) we already read in the last file.
575 //
576 if (BufferSize == 0) {
577 FreePool(Buffer);
578 *NoFile = TRUE;
579 }
580
581 return (EFI_SUCCESS);
582}
jcarseya405b862010-09-14 05:18:09 +0000583
jcarseyd2b45642009-05-11 18:02:16 +0000584/**
585 Retrieve the size of a file.
586
587 if FileHandle is NULL then ASSERT()
588 if Size is NULL then ASSERT()
589
jcarseya405b862010-09-14 05:18:09 +0000590 This function extracts the file size info from the FileHandle's EFI_FILE_INFO
jcarseyd2b45642009-05-11 18:02:16 +0000591 data.
592
593 @param FileHandle file handle from which size is retrieved
594 @param Size pointer to size
595
596 @retval EFI_SUCCESS operation was completed sucessfully
597 @retval EFI_DEVICE_ERROR cannot access the file
598**/
599EFI_STATUS
600EFIAPI
601FileHandleGetSize (
602 IN EFI_FILE_HANDLE FileHandle,
603 OUT UINT64 *Size
604 )
605{
606 EFI_FILE_INFO *FileInfo;
607
608 //
609 // ASSERT for FileHandle or Size being NULL
610 //
611 ASSERT (FileHandle != NULL);
612 ASSERT (Size != NULL);
jcarseya405b862010-09-14 05:18:09 +0000613
jcarseyd2b45642009-05-11 18:02:16 +0000614 //
615 // get the FileInfo structure
616 //
617 FileInfo = FileHandleGetInfo(FileHandle);
618 if (FileInfo == NULL) {
619 return (EFI_DEVICE_ERROR);
620 }
621
622 //
623 // Assign the Size pointer to the correct value
624 //
625 *Size = FileInfo->FileSize;
jcarseya405b862010-09-14 05:18:09 +0000626
jcarseyd2b45642009-05-11 18:02:16 +0000627 //
628 // free the FileInfo memory
629 //
630 FreePool(FileInfo);
631
632 return (EFI_SUCCESS);
jcarseyb1f95a02009-06-16 00:23:19 +0000633}
634
jcarseya405b862010-09-14 05:18:09 +0000635/**
636 Set the size of a file.
637
638 If FileHandle is NULL then ASSERT().
639
640 This function changes the file size info from the FileHandle's EFI_FILE_INFO
641 data.
642
643 @param FileHandle File handle whose size is to be changed.
644 @param Size New size.
645
646 @retval EFI_SUCCESS operation was completed sucessfully.
647 @retval EFI_DEVICE_ERROR cannot access the file.
648**/
649EFI_STATUS
650EFIAPI
651FileHandleSetSize (
652 IN EFI_FILE_HANDLE FileHandle,
653 IN UINT64 Size
654 )
655{
656 EFI_FILE_INFO *FileInfo;
657 EFI_STATUS Status;
658
659 //
660 // ASSERT for FileHandle or Size being NULL
661 //
662 ASSERT (FileHandle != NULL);
663
664 //
665 // get the FileInfo structure
666 //
667 FileInfo = FileHandleGetInfo(FileHandle);
668 if (FileInfo == NULL) {
669 return (EFI_DEVICE_ERROR);
670 }
671
672 //
673 // Assign the FileSize pointer to the new value
674 //
675 FileInfo->FileSize = Size;
676
677 Status = FileHandleSetInfo(FileHandle, FileInfo);
678 //
679 // free the FileInfo memory
680 //
681 FreePool(FileInfo);
682
683 return (Status);
684}
jcarseyb1f95a02009-06-16 00:23:19 +0000685
686/**
jcarseya405b862010-09-14 05:18:09 +0000687 Safely append (on the left) with automatic string resizing given length of Destination and
jcarseyb1f95a02009-06-16 00:23:19 +0000688 desired length of copy from Source.
689
jcarseya405b862010-09-14 05:18:09 +0000690 append the first D characters of Source to the end of Destination, where D is
691 the lesser of Count and the StrLen() of Source. If appending those D characters
692 will fit within Destination (whose Size is given as CurrentSize) and
693 still leave room for a NULL terminator, then those characters are appended,
694 starting at the original terminating NULL of Destination, and a new terminating
jcarseyac255da2010-01-25 20:06:10 +0000695 NULL is appended.
jcarseyb1f95a02009-06-16 00:23:19 +0000696
697 If appending D characters onto Destination will result in a overflow of the size
698 given in CurrentSize the string will be grown such that the copy can be performed
699 and CurrentSize will be updated to the new size.
700
jcarseya405b862010-09-14 05:18:09 +0000701 If Source is NULL, there is nothing to append, just return the current buffer in
jcarseyb1f95a02009-06-16 00:23:19 +0000702 Destination.
703
704 if Destination is NULL, then ASSERT()
jcarseya405b862010-09-14 05:18:09 +0000705 if Destination's current length (including NULL terminator) is already more then
jcarseyb1f95a02009-06-16 00:23:19 +0000706 CurrentSize, then ASSERT()
707
ydong104ff7e372011-09-02 08:05:34 +0000708 @param[in, out] Destination The String to append onto
709 @param[in, out] CurrentSize on call the number of bytes in Destination. On
jcarseyb1f95a02009-06-16 00:23:19 +0000710 return possibly the new size (still in bytes). if NULL
711 then allocate whatever is needed.
712 @param[in] Source The String to append from
jcarseya405b862010-09-14 05:18:09 +0000713 @param[in] Count Maximum number of characters to append. if 0 then
jcarseyb1f95a02009-06-16 00:23:19 +0000714 all are appended.
715
716 @return Destination return the resultant string.
717**/
jcarseya405b862010-09-14 05:18:09 +0000718CHAR16*
jcarseyb1f95a02009-06-16 00:23:19 +0000719EFIAPI
720StrnCatGrowLeft (
721 IN OUT CHAR16 **Destination,
722 IN OUT UINTN *CurrentSize,
723 IN CONST CHAR16 *Source,
724 IN UINTN Count
jcarseya405b862010-09-14 05:18:09 +0000725 )
726{
jcarseyb1f95a02009-06-16 00:23:19 +0000727 UINTN DestinationStartSize;
728 UINTN NewSize;
jcarsey727a4c72009-07-09 17:36:06 +0000729 UINTN CopySize;
jcarseyb1f95a02009-06-16 00:23:19 +0000730
731 //
732 // ASSERTs
733 //
734 ASSERT(Destination != NULL);
735
736 //
737 // If there's nothing to do then just return Destination
738 //
739 if (Source == NULL) {
740 return (*Destination);
741 }
742
743 //
744 // allow for NULL pointers address as Destination
745 //
746 if (*Destination != NULL) {
747 ASSERT(CurrentSize != 0);
748 DestinationStartSize = StrSize(*Destination);
749 ASSERT(DestinationStartSize <= *CurrentSize);
750 } else {
751 DestinationStartSize = 0;
752// ASSERT(*CurrentSize == 0);
753 }
754
755 //
756 // Append all of Source?
757 //
758 if (Count == 0) {
jcarseyd595d4b2009-07-16 17:24:16 +0000759 Count = StrSize(Source);
jcarseyb1f95a02009-06-16 00:23:19 +0000760 }
761
762 //
763 // Test and grow if required
764 //
765 if (CurrentSize != NULL) {
766 NewSize = *CurrentSize;
jcarseyd595d4b2009-07-16 17:24:16 +0000767 while (NewSize < (DestinationStartSize + Count)) {
768 NewSize += 2 * Count;
jcarseyb1f95a02009-06-16 00:23:19 +0000769 }
770 *Destination = ReallocatePool(*CurrentSize, NewSize, *Destination);
771 *CurrentSize = NewSize;
772 } else {
jcarseyd595d4b2009-07-16 17:24:16 +0000773 *Destination = AllocateZeroPool(Count+sizeof(CHAR16));
jcarseyb1f95a02009-06-16 00:23:19 +0000774 }
sfu502a758c2011-10-08 02:55:30 +0000775 if (*Destination == NULL) {
776 return NULL;
777 }
jcarseyb1f95a02009-06-16 00:23:19 +0000778
jcarsey727a4c72009-07-09 17:36:06 +0000779 CopySize = StrSize(*Destination);
jcarsey46f43bc2009-07-24 21:32:00 +0000780 CopyMem((*Destination)+((Count-2)/sizeof(CHAR16)), *Destination, CopySize);
781 CopyMem(*Destination, Source, Count-2);
jcarseyb1f95a02009-06-16 00:23:19 +0000782 return (*Destination);
783}
784
785/**
jcarseya405b862010-09-14 05:18:09 +0000786 Function to get a full filename given a EFI_FILE_HANDLE somewhere lower on the
jcarseyb1f95a02009-06-16 00:23:19 +0000787 directory 'stack'.
788
789 if Handle is NULL, return EFI_INVALID_PARAMETER
790
791 @param[in] Handle Handle to the Directory or File to create path to.
jcarseya405b862010-09-14 05:18:09 +0000792 @param[out] FullFileName pointer to pointer to generated full file name. It
jcarseyb1f95a02009-06-16 00:23:19 +0000793 is the responsibility of the caller to free this memory
794 with a call to FreePool().
795 @retval EFI_SUCCESS the operation was sucessful and the FullFileName is valid.
796 @retval EFI_INVALID_PARAMETER Handle was NULL.
797 @retval EFI_INVALID_PARAMETER FullFileName was NULL.
798 @retval EFI_OUT_OF_RESOURCES a memory allocation failed.
799**/
800EFI_STATUS
801EFIAPI
802FileHandleGetFileName (
803 IN CONST EFI_FILE_HANDLE Handle,
804 OUT CHAR16 **FullFileName
jcarseya405b862010-09-14 05:18:09 +0000805 )
806{
jcarseyb1f95a02009-06-16 00:23:19 +0000807 EFI_STATUS Status;
808 UINTN Size;
809 EFI_FILE_HANDLE CurrentHandle;
810 EFI_FILE_HANDLE NextHigherHandle;
811 EFI_FILE_INFO *FileInfo;
812
813 Size = 0;
jcarseyb1f95a02009-06-16 00:23:19 +0000814
815 //
816 // Check our parameters
817 //
818 if (FullFileName == NULL || Handle == NULL) {
819 return (EFI_INVALID_PARAMETER);
820 }
821
jcarseyd595d4b2009-07-16 17:24:16 +0000822 *FullFileName = NULL;
jcarseya405b862010-09-14 05:18:09 +0000823 CurrentHandle = NULL;
jcarseyd595d4b2009-07-16 17:24:16 +0000824
jcarseyb1f95a02009-06-16 00:23:19 +0000825 Status = Handle->Open(Handle, &CurrentHandle, L".", EFI_FILE_MODE_READ, 0);
826 if (!EFI_ERROR(Status)) {
827 //
828 // Reverse out the current directory on the device
829 //
830 for (;;) {
831 FileInfo = FileHandleGetInfo(CurrentHandle);
832 if (FileInfo == NULL) {
833 Status = EFI_OUT_OF_RESOURCES;
834 break;
835 } else {
836 //
837 // We got info... do we have a name? if yes preceed the current path with it...
838 //
839 if (StrLen (FileInfo->FileName) == 0) {
jcarsey46f43bc2009-07-24 21:32:00 +0000840 if (*FullFileName == NULL) {
jcarseya405b862010-09-14 05:18:09 +0000841 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));
jcarsey46f43bc2009-07-24 21:32:00 +0000842 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);
843 }
jcarseyb1f95a02009-06-16 00:23:19 +0000844 FreePool(FileInfo);
845 break;
846 } else {
jcarsey46f43bc2009-07-24 21:32:00 +0000847 if (*FullFileName == NULL) {
jcarseya405b862010-09-14 05:18:09 +0000848 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));
jcarsey46f43bc2009-07-24 21:32:00 +0000849 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);
850 }
jcarseya405b862010-09-14 05:18:09 +0000851 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));
jcarseyb1f95a02009-06-16 00:23:19 +0000852 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, FileInfo->FileName, 0);
jcarsey46f43bc2009-07-24 21:32:00 +0000853 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);
jcarseyb1f95a02009-06-16 00:23:19 +0000854 FreePool(FileInfo);
855 }
856 }
857 //
858 // Move to the parent directory
859 //
860 Status = CurrentHandle->Open (CurrentHandle, &NextHigherHandle, L"..", EFI_FILE_MODE_READ, 0);
861 if (EFI_ERROR (Status)) {
862 break;
863 }
864
865 FileHandleClose(CurrentHandle);
866 CurrentHandle = NextHigherHandle;
867 }
jcarseya405b862010-09-14 05:18:09 +0000868 } else if (Status == EFI_NOT_FOUND) {
869 Status = EFI_SUCCESS;
870 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));
871 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);
jcarseyb1f95a02009-06-16 00:23:19 +0000872 }
873
874 if (CurrentHandle != NULL) {
875 CurrentHandle->Close (CurrentHandle);
876 }
877
878 if (EFI_ERROR(Status) && *FullFileName != NULL) {
jcarsey9eb53ac2009-07-08 17:26:58 +0000879 FreePool(*FullFileName);
jcarseyb1f95a02009-06-16 00:23:19 +0000880 }
881
882 return (Status);
883}
884
885/**
jcarseya405b862010-09-14 05:18:09 +0000886 Function to read a single line from a file. The \n is not included in the returned
jcarseyb3011f42010-01-11 21:49:04 +0000887 buffer. The returned buffer must be callee freed.
888
jcarseya405b862010-09-14 05:18:09 +0000889 If the position upon start is 0, then the Ascii Boolean will be set. This should be
jcarseyb3011f42010-01-11 21:49:04 +0000890 maintained and not changed for all operations with the same file.
891
ydong104ff7e372011-09-02 08:05:34 +0000892 @param[in] Handle FileHandle to read from.
893 @param[in, out] Ascii Boolean value for indicating whether the file is Ascii (TRUE) or UCS2 (FALSE);
jcarseyb3011f42010-01-11 21:49:04 +0000894
895 @return The line of text from the file.
896
897 @sa FileHandleReadLine
898**/
899CHAR16*
900EFIAPI
901FileHandleReturnLine(
902 IN EFI_FILE_HANDLE Handle,
903 IN OUT BOOLEAN *Ascii
904 )
905{
906 CHAR16 *RetVal;
907 UINTN Size;
908 EFI_STATUS Status;
909
910 Size = 0;
911 RetVal = NULL;
912
913 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);
914 if (Status == EFI_BUFFER_TOO_SMALL) {
jcarsey4eb59be2011-03-25 20:43:54 +0000915 RetVal = AllocateZeroPool(Size);
jcarseyb3011f42010-01-11 21:49:04 +0000916 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);
917 }
918 ASSERT_EFI_ERROR(Status);
919 if (EFI_ERROR(Status) && (RetVal != NULL)) {
920 FreePool(RetVal);
921 RetVal = NULL;
922 }
923 return (RetVal);
924}
925
926/**
jcarseya405b862010-09-14 05:18:09 +0000927 Function to read a single line (up to but not including the \n) from a EFI_FILE_HANDLE.
jcarseyb1f95a02009-06-16 00:23:19 +0000928
jcarseya405b862010-09-14 05:18:09 +0000929 If the position upon start is 0, then the Ascii Boolean will be set. This should be
jcarseyb3011f42010-01-11 21:49:04 +0000930 maintained and not changed for all operations with the same file.
931
ydong104ff7e372011-09-02 08:05:34 +0000932 @param[in] Handle FileHandle to read from
933 @param[in, out] Buffer pointer to buffer to read into
934 @param[in, out] Size pointer to number of bytes in buffer
935 @param[in] Truncate if TRUE then allows for truncation of the line to fit.
936 if FALSE will reset the position to the begining of the
937 line if the buffer is not large enough.
938 @param[in, out] Ascii Boolean value for indicating whether the file is Ascii (TRUE) or UCS2 (FALSE);
jcarseyb1f95a02009-06-16 00:23:19 +0000939
jcarseya405b862010-09-14 05:18:09 +0000940 @retval EFI_SUCCESS the operation was sucessful. the line is stored in
jcarseyb1f95a02009-06-16 00:23:19 +0000941 Buffer.
942 @retval EFI_INVALID_PARAMETER Handle was NULL.
jcarseyb1f95a02009-06-16 00:23:19 +0000943 @retval EFI_INVALID_PARAMETER Size was NULL.
jcarseya405b862010-09-14 05:18:09 +0000944 @retval EFI_BUFFER_TOO_SMALL Size was not enough space to store the line.
jcarseyb1f95a02009-06-16 00:23:19 +0000945 Size was updated to minimum space required.
946 @sa FileHandleRead
947**/
948EFI_STATUS
949EFIAPI
950FileHandleReadLine(
951 IN EFI_FILE_HANDLE Handle,
jcarseyb3011f42010-01-11 21:49:04 +0000952 IN OUT CHAR16 *Buffer,
jcarseyb1f95a02009-06-16 00:23:19 +0000953 IN OUT UINTN *Size,
jcarseyb3011f42010-01-11 21:49:04 +0000954 IN BOOLEAN Truncate,
955 IN OUT BOOLEAN *Ascii
jcarseya405b862010-09-14 05:18:09 +0000956 )
957{
jcarseyb1f95a02009-06-16 00:23:19 +0000958 EFI_STATUS Status;
959 CHAR16 CharBuffer;
960 UINTN CharSize;
961 UINTN CountSoFar;
jcarseyb3011f42010-01-11 21:49:04 +0000962 UINT64 OriginalFilePosition;
jcarseyb1f95a02009-06-16 00:23:19 +0000963
964
965 if (Handle == NULL
jcarseyb1f95a02009-06-16 00:23:19 +0000966 ||Size == NULL
jcarseya405b862010-09-14 05:18:09 +0000967 ){
968 return (EFI_INVALID_PARAMETER);
969 }
970 if (Buffer == NULL) {
971 ASSERT(*Size == 0);
972 } else {
973 *Buffer = CHAR_NULL;
jcarseyb1f95a02009-06-16 00:23:19 +0000974 }
jcarseyb3011f42010-01-11 21:49:04 +0000975 FileHandleGetPosition(Handle, &OriginalFilePosition);
976 if (OriginalFilePosition == 0) {
977 CharSize = sizeof(CHAR16);
978 Status = FileHandleRead(Handle, &CharSize, &CharBuffer);
979 ASSERT_EFI_ERROR(Status);
jcarsey4eb59be2011-03-25 20:43:54 +0000980 if (CharBuffer == gUnicodeFileTag) {
jcarseyb3011f42010-01-11 21:49:04 +0000981 *Ascii = FALSE;
982 } else {
983 *Ascii = TRUE;
984 FileHandleSetPosition(Handle, OriginalFilePosition);
985 }
986 }
jcarseyb1f95a02009-06-16 00:23:19 +0000987
988 for (CountSoFar = 0;;CountSoFar++){
jcarseyb3011f42010-01-11 21:49:04 +0000989 CharBuffer = 0;
990 if (*Ascii) {
991 CharSize = sizeof(CHAR8);
992 } else {
993 CharSize = sizeof(CHAR16);
994 }
jcarseyb1f95a02009-06-16 00:23:19 +0000995 Status = FileHandleRead(Handle, &CharSize, &CharBuffer);
jcarseya405b862010-09-14 05:18:09 +0000996 if ( EFI_ERROR(Status)
997 || CharSize == 0
998 || (CharBuffer == L'\n' && !(*Ascii))
999 || (CharBuffer == '\n' && *Ascii)
1000 ){
jcarseyb1f95a02009-06-16 00:23:19 +00001001 break;
1002 }
1003 //
1004 // if we have space save it...
1005 //
1006 if ((CountSoFar+1)*sizeof(CHAR16) < *Size){
jcarseyb3011f42010-01-11 21:49:04 +00001007 ASSERT(Buffer != NULL);
jcarseyb1f95a02009-06-16 00:23:19 +00001008 ((CHAR16*)Buffer)[CountSoFar] = CharBuffer;
jcarsey46f43bc2009-07-24 21:32:00 +00001009 ((CHAR16*)Buffer)[CountSoFar+1] = CHAR_NULL;
jcarseyb1f95a02009-06-16 00:23:19 +00001010 }
1011 }
1012
1013 //
1014 // if we ran out of space tell when...
1015 //
1016 if ((CountSoFar+1)*sizeof(CHAR16) > *Size){
1017 *Size = (CountSoFar+1)*sizeof(CHAR16);
jcarseya405b862010-09-14 05:18:09 +00001018 if (!Truncate) {
jcarseyb3011f42010-01-11 21:49:04 +00001019 FileHandleSetPosition(Handle, OriginalFilePosition);
jcarseyb1f95a02009-06-16 00:23:19 +00001020 } else {
jcarseyb3011f42010-01-11 21:49:04 +00001021 DEBUG((DEBUG_WARN, "The line was truncated in FileHandleReadLine"));
jcarseyb1f95a02009-06-16 00:23:19 +00001022 }
1023 return (EFI_BUFFER_TOO_SMALL);
1024 }
jcarseyb3011f42010-01-11 21:49:04 +00001025 while(Buffer[StrLen(Buffer)-1] == L'\r') {
1026 Buffer[StrLen(Buffer)-1] = CHAR_NULL;
1027 }
1028
jcarseyb1f95a02009-06-16 00:23:19 +00001029 return (Status);
1030}
1031
1032/**
1033 function to write a line of unicode text to a file.
1034
1035 if Handle is NULL, ASSERT.
1036 if Buffer is NULL, do nothing. (return SUCCESS)
1037
1038 @param[in] Handle FileHandle to write to
1039 @param[in] Buffer Buffer to write
1040
1041 @retval EFI_SUCCESS the data was written.
1042 @retval other failure.
1043
1044 @sa FileHandleWrite
1045**/
1046EFI_STATUS
1047EFIAPI
1048FileHandleWriteLine(
1049 IN EFI_FILE_HANDLE Handle,
1050 IN CHAR16 *Buffer
jcarseya405b862010-09-14 05:18:09 +00001051 )
1052{
jcarseyb1f95a02009-06-16 00:23:19 +00001053 EFI_STATUS Status;
1054 UINTN Size;
1055
1056 ASSERT(Handle != NULL);
1057
1058 if (Buffer == NULL) {
1059 return (EFI_SUCCESS);
1060 }
1061
jcarseyac255da2010-01-25 20:06:10 +00001062 Size = StrSize(Buffer) - sizeof(Buffer[0]);
jcarseyb1f95a02009-06-16 00:23:19 +00001063 Status = FileHandleWrite(Handle, &Size, Buffer);
1064 if (EFI_ERROR(Status)) {
1065 return (Status);
1066 }
jcarseyac255da2010-01-25 20:06:10 +00001067 Size = StrSize(L"\r\n") - sizeof(CHAR16);
jcarseyb1f95a02009-06-16 00:23:19 +00001068 return FileHandleWrite(Handle, &Size, L"\r\n");
1069}
jcarseyb3011f42010-01-11 21:49:04 +00001070
1071/**
1072 function to take a formatted argument and print it to a file.
1073
1074 @param[in] Handle the file handle for the file to write to
1075 @param[in] Format the format argument (see printlib for format specifier)
1076 @param[in] ... the variable arguments for the format
1077
1078 @retval EFI_SUCCESS the operation was sucessful
1079 @return other a return value from FileHandleWriteLine
1080
1081 @sa FileHandleWriteLine
1082**/
1083EFI_STATUS
1084EFIAPI
1085FileHandlePrintLine(
1086 IN EFI_FILE_HANDLE Handle,
1087 IN CONST CHAR16 *Format,
1088 ...
1089 )
1090{
1091 VA_LIST Marker;
1092 CHAR16 *Buffer;
1093 EFI_STATUS Status;
1094
jcarseyb3011f42010-01-11 21:49:04 +00001095 //
1096 // Get a buffer to print into
1097 //
1098 Buffer = AllocateZeroPool (PcdGet16 (PcdShellPrintBufferSize));
1099 ASSERT (Buffer != NULL);
1100
1101 //
1102 // Print into our buffer
1103 //
rsun33bbe68a2012-02-01 06:06:08 +00001104 VA_START (Marker, Format);
jcarseyb3011f42010-01-11 21:49:04 +00001105 UnicodeVSPrint (Buffer, PcdGet16 (PcdShellPrintBufferSize), Format, Marker);
rsun33bbe68a2012-02-01 06:06:08 +00001106 VA_END (Marker);
jcarseyb3011f42010-01-11 21:49:04 +00001107
1108 //
1109 // Print buffer into file
1110 //
1111 Status = FileHandleWriteLine(Handle, Buffer);
1112
1113 //
jcarseya405b862010-09-14 05:18:09 +00001114 // Cleanup and return
jcarseyb3011f42010-01-11 21:49:04 +00001115 //
1116 FreePool(Buffer);
1117 return (Status);
1118}
1119
1120/**
1121 Function to determine if a FILE_HANDLE is at the end of the file.
1122
1123 This will NOT work on directories.
1124
1125 If Handle is NULL, then ASSERT.
1126
1127 @param[in] Handle the file handle
1128
1129 @retval TRUE the position is at the end of the file
1130 @retval FALSE the position is not at the end of the file
1131**/
1132BOOLEAN
1133EFIAPI
1134FileHandleEof(
1135 IN EFI_FILE_HANDLE Handle
1136 )
1137{
1138 EFI_FILE_INFO *Info;
1139 UINT64 Pos;
1140 BOOLEAN RetVal;
1141
1142 //
1143 // ASSERT if Handle is NULL
1144 //
1145 ASSERT(Handle != NULL);
jcarseya405b862010-09-14 05:18:09 +00001146
jcarseyb3011f42010-01-11 21:49:04 +00001147 FileHandleGetPosition(Handle, &Pos);
1148 Info = FileHandleGetInfo (Handle);
1149 ASSERT(Info != NULL);
1150 FileHandleSetPosition(Handle, Pos);
jcarseya405b862010-09-14 05:18:09 +00001151
jcarseyb3011f42010-01-11 21:49:04 +00001152 if (Info == NULL) {
1153 return (FALSE);
jcarseya405b862010-09-14 05:18:09 +00001154 }
jcarseyb3011f42010-01-11 21:49:04 +00001155
jcarseyd54744c2010-01-12 19:04:06 +00001156 if (Pos == Info->FileSize) {
1157 RetVal = TRUE;
1158 } else {
1159 RetVal = FALSE;
1160 }
jcarseyb3011f42010-01-11 21:49:04 +00001161
1162 FreePool (Info);
1163
1164 return (RetVal);
jcarsey22d11952010-01-13 19:07:58 +00001165}