]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.c
MdePkg: Refine the comments for FileHandleLib.
[mirror_edk2.git] / MdePkg / Library / UefiFileHandleLib / UefiFileHandleLib.c
CommitLineData
d2b4564b 1/** @file\r
2 Provides interface to EFI_FILE_HANDLE functionality.\r
3\r
e84fb6eb 4 Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved. <BR>\r
ac255da6 5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
d2b4564b 9\r
ac255da6 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
d2b4564b 12\r
13**/\r
14\r
15#include <Uefi.h>\r
16\r
b1f95a06 17#include <Protocol/SimpleFileSystem.h>\r
4eb59be3 18#include <Protocol/UnicodeCollation.h>\r
b1f95a06 19\r
20#include <Guid/FileInfo.h>\r
21\r
d2b4564b 22#include <Library/DebugLib.h>\r
23#include <Library/MemoryAllocationLib.h>\r
b1f95a06 24#include <Library/BaseLib.h>\r
25#include <Library/BaseMemoryLib.h>\r
b3011f40 26#include <Library/FileHandleLib.h>\r
27#include <Library/PcdLib.h>\r
28#include <Library/PrintLib.h>\r
d2b4564b 29\r
4eb59be3 30CONST UINT16 gUnicodeFileTag = EFI_UNICODE_BYTE_ORDER_MARK;\r
31\r
d2b4564b 32#define MAX_FILE_NAME_LEN 522 // (20 * (6+5+2))+1) unicode characters from EFI FAT spec (doubled for bytes)\r
33#define FIND_XXXXX_FILE_BUFFER_SIZE (SIZE_OF_EFI_FILE_INFO + MAX_FILE_NAME_LEN)\r
34\r
35/**\r
a405b86d 36 This function will retrieve the information about the file for the handle\r
d2b4564b 37 specified and store it in allocated pool memory.\r
38\r
a405b86d 39 This function allocates a buffer to store the file's information. It is the\r
69817bf8 40 caller's responsibility to free the buffer\r
d2b4564b 41\r
a405b86d 42 @param FileHandle The file handle of the file for which information is\r
d2b4564b 43 being requested.\r
44\r
45 @retval NULL information could not be retrieved.\r
46\r
47 @return the information about the file\r
48**/\r
49EFI_FILE_INFO*\r
50EFIAPI\r
51FileHandleGetInfo (\r
52 IN EFI_FILE_HANDLE FileHandle\r
53 )\r
54{\r
a405b86d 55 EFI_FILE_INFO *FileInfo;\r
d2b4564b 56 UINTN FileInfoSize;\r
57 EFI_STATUS Status;\r
58\r
4eb59be3 59 if (FileHandle == NULL) {\r
60 return (NULL);\r
61 }\r
d2b4564b 62\r
63 //\r
64 // Get the required size to allocate\r
65 //\r
d2b4564b 66 FileInfoSize = 0;\r
a405b86d 67 FileInfo = NULL;\r
68 Status = FileHandle->GetInfo(FileHandle,\r
69 &gEfiFileInfoGuid,\r
70 &FileInfoSize,\r
4eb59be3 71 NULL);\r
72 if (Status == EFI_BUFFER_TOO_SMALL){\r
73 //\r
74 // error is expected. getting size to allocate\r
75 //\r
76 FileInfo = AllocateZeroPool(FileInfoSize);\r
77 //\r
78 // now get the information\r
79 //\r
80 Status = FileHandle->GetInfo(FileHandle,\r
81 &gEfiFileInfoGuid,\r
82 &FileInfoSize,\r
83 FileInfo);\r
84 //\r
85 // if we got an error free the memory and return NULL\r
86 //\r
037ca235 87 if (EFI_ERROR(Status) && (FileInfo != NULL)) {\r
4eb59be3 88 FreePool(FileInfo);\r
037ca235 89 FileInfo = NULL;\r
4eb59be3 90 }\r
d2b4564b 91 }\r
a405b86d 92 return (FileInfo);\r
d2b4564b 93}\r
94\r
95/**\r
a405b86d 96 This function sets the information about the file for the opened handle\r
d2b4564b 97 specified.\r
98\r
a405b86d 99 @param[in] FileHandle The file handle of the file for which information\r
100 is being set.\r
d2b4564b 101\r
a405b86d 102 @param[in] FileInfo The information to set.\r
d2b4564b 103\r
b0934ac4 104 @retval EFI_SUCCESS The information was set.\r
a405b86d 105 @retval EFI_INVALID_PARAMETER A parameter was out of range or invalid.\r
106 @retval EFI_UNSUPPORTED The FileHandle does not support FileInfo.\r
b0934ac4 107 @retval EFI_NO_MEDIA The device has no medium.\r
108 @retval EFI_DEVICE_ERROR The device reported an error.\r
109 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.\r
110 @retval EFI_WRITE_PROTECTED The file or medium is write protected.\r
a405b86d 111 @retval EFI_ACCESS_DENIED The file was opened read only.\r
112 @retval EFI_VOLUME_FULL The volume is full.\r
d2b4564b 113**/\r
114EFI_STATUS\r
115EFIAPI\r
116FileHandleSetInfo (\r
b0934ac4 117 IN EFI_FILE_HANDLE FileHandle,\r
d2b4564b 118 IN CONST EFI_FILE_INFO *FileInfo\r
119 )\r
120{\r
a405b86d 121\r
183ecff5
JC
122 if (FileHandle == NULL || FileInfo == NULL) {\r
123 return (EFI_INVALID_PARAMETER);\r
124 }\r
d2b4564b 125\r
d2b4564b 126 //\r
127 // Set the info\r
128 //\r
a405b86d 129 return (FileHandle->SetInfo(FileHandle,\r
3d342022 130 &gEfiFileInfoGuid,\r
d2b4564b 131 (UINTN)FileInfo->Size,\r
132 (EFI_FILE_INFO*)FileInfo));\r
a405b86d 133}\r
d2b4564b 134\r
135/**\r
136 This function reads information from an opened file.\r
137\r
a405b86d 138 If FileHandle is not a directory, the function reads the requested number of\r
139 bytes from the file at the file's current position and returns them in Buffer.\r
d2b4564b 140 If the read goes beyond the end of the file, the read length is truncated to the\r
a405b86d 141 end of the file. The file's current position is increased by the number of bytes\r
142 returned. If FileHandle is a directory, the function reads the directory entry\r
143 at the file's current position and returns the entry in Buffer. If the Buffer\r
144 is not large enough to hold the current directory entry, then\r
145 EFI_BUFFER_TOO_SMALL is returned and the current file position is not updated.\r
146 BufferSize is set to be the size of the buffer needed to read the entry. On\r
147 success, the current position is updated to the next directory entry. If there\r
148 are no more directory entries, the read returns a zero-length buffer.\r
d2b4564b 149 EFI_FILE_INFO is the structure returned as the directory entry.\r
150\r
151 @param FileHandle the opened file handle\r
a405b86d 152 @param BufferSize on input the size of buffer in bytes. on return\r
d2b4564b 153 the number of bytes written.\r
154 @param Buffer the buffer to put read data into.\r
155\r
a405b86d 156 @retval EFI_SUCCESS Data was read.\r
157 @retval EFI_NO_MEDIA The device has no media.\r
158 @retval EFI_DEVICE_ERROR The device reported an error.\r
159 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.\r
160 @retval EFI_BUFFER_TO_SMALL Buffer is too small. ReadSize contains required\r
d2b4564b 161 size.\r
162\r
163**/\r
164EFI_STATUS\r
165EFIAPI\r
166FileHandleRead(\r
167 IN EFI_FILE_HANDLE FileHandle,\r
168 IN OUT UINTN *BufferSize,\r
169 OUT VOID *Buffer\r
170 )\r
171{\r
183ecff5
JC
172 if (FileHandle == NULL) {\r
173 return (EFI_INVALID_PARAMETER);\r
174 }\r
d2b4564b 175\r
176 //\r
177 // Perform the read based on EFI_FILE_PROTOCOL\r
178 //\r
179 return (FileHandle->Read(FileHandle, BufferSize, Buffer));\r
180}\r
181\r
182\r
183/**\r
184 Write data to a file.\r
185\r
a405b86d 186 This function writes the specified number of bytes to the file at the current\r
187 file position. The current file position is advanced the actual number of bytes\r
188 written, which is returned in BufferSize. Partial writes only occur when there\r
189 has been a data error during the write attempt (such as "volume space full").\r
190 The file is automatically grown to hold the data if required. Direct writes to\r
d2b4564b 191 opened directories are not supported.\r
192\r
193 @param FileHandle The opened file for writing\r
194 @param BufferSize on input the number of bytes in Buffer. On output\r
195 the number of bytes written.\r
196 @param Buffer the buffer containing data to write is stored.\r
197\r
b0934ac4 198 @retval EFI_SUCCESS Data was written.\r
199 @retval EFI_UNSUPPORTED Writes to an open directory are not supported.\r
200 @retval EFI_NO_MEDIA The device has no media.\r
201 @retval EFI_DEVICE_ERROR The device reported an error.\r
202 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.\r
203 @retval EFI_WRITE_PROTECTED The device is write-protected.\r
204 @retval EFI_ACCESS_DENIED The file was open for read only.\r
205 @retval EFI_VOLUME_FULL The volume is full.\r
d2b4564b 206**/\r
207EFI_STATUS\r
208EFIAPI\r
209FileHandleWrite(\r
210 IN EFI_FILE_HANDLE FileHandle,\r
211 IN OUT UINTN *BufferSize,\r
212 IN VOID *Buffer\r
213 )\r
214{\r
183ecff5
JC
215 if (FileHandle == NULL) {\r
216 return (EFI_INVALID_PARAMETER);\r
217 }\r
218\r
d2b4564b 219 //\r
220 // Perform the write based on EFI_FILE_PROTOCOL\r
221 //\r
222 return (FileHandle->Write(FileHandle, BufferSize, Buffer));\r
223}\r
224\r
a405b86d 225/**\r
d2b4564b 226 Close an open file handle.\r
227\r
a405b86d 228 This function closes a specified file handle. All "dirty" cached file data is\r
229 flushed to the device, and the file is closed. In all cases the handle is\r
d2b4564b 230 closed.\r
231\r
232@param FileHandle the file handle to close.\r
233\r
234@retval EFI_SUCCESS the file handle was closed sucessfully.\r
235**/\r
236EFI_STATUS\r
237EFIAPI\r
238FileHandleClose (\r
239 IN EFI_FILE_HANDLE FileHandle\r
240 )\r
241{\r
242 EFI_STATUS Status;\r
183ecff5
JC
243\r
244 if (FileHandle == NULL) {\r
245 return (EFI_INVALID_PARAMETER);\r
246 }\r
247\r
d2b4564b 248 //\r
249 // Perform the Close based on EFI_FILE_PROTOCOL\r
250 //\r
251 Status = FileHandle->Close(FileHandle);\r
252 return Status;\r
253}\r
254\r
255/**\r
256 Delete a file and close the handle\r
257\r
258 This function closes and deletes a file. In all cases the file handle is closed.\r
a405b86d 259 If the file cannot be deleted, the warning code EFI_WARN_DELETE_FAILURE is\r
d2b4564b 260 returned, but the handle is still closed.\r
261\r
262 @param FileHandle the file handle to delete\r
263\r
264 @retval EFI_SUCCESS the file was closed sucessfully\r
a405b86d 265 @retval EFI_WARN_DELETE_FAILURE the handle was closed, but the file was not\r
d2b4564b 266 deleted\r
b0934ac4 267 @retval INVALID_PARAMETER One of the parameters has an invalid value.\r
d2b4564b 268**/\r
269EFI_STATUS\r
270EFIAPI\r
271FileHandleDelete (\r
b0934ac4 272 IN EFI_FILE_HANDLE FileHandle\r
d2b4564b 273 )\r
274{\r
275 EFI_STATUS Status;\r
183ecff5
JC
276\r
277 if (FileHandle == NULL) {\r
278 return (EFI_INVALID_PARAMETER);\r
279 }\r
280\r
d2b4564b 281 //\r
282 // Perform the Delete based on EFI_FILE_PROTOCOL\r
283 //\r
284 Status = FileHandle->Delete(FileHandle);\r
285 return Status;\r
286}\r
287\r
288/**\r
289 Set the current position in a file.\r
290\r
a405b86d 291 This function sets the current file position for the handle to the position\r
d2b4564b 292 supplied. With the exception of seeking to position 0xFFFFFFFFFFFFFFFF, only\r
a405b86d 293 absolute positioning is supported, and seeking past the end of the file is\r
294 allowed (a subsequent write would grow the file). Seeking to position\r
d2b4564b 295 0xFFFFFFFFFFFFFFFF causes the current position to be set to the end of the file.\r
a405b86d 296 If FileHandle is a directory, the only position that may be set is zero. This\r
d2b4564b 297 has the effect of starting the read process of the directory entries over.\r
298\r
299 @param FileHandle The file handle on which the position is being set\r
300 @param Position Byte position from begining of file\r
301\r
302 @retval EFI_SUCCESS Operation completed sucessfully.\r
a405b86d 303 @retval EFI_UNSUPPORTED the seek request for non-zero is not valid on\r
d2b4564b 304 directories.\r
305 @retval INVALID_PARAMETER One of the parameters has an invalid value.\r
306**/\r
307EFI_STATUS\r
308EFIAPI\r
309FileHandleSetPosition (\r
b0934ac4 310 IN EFI_FILE_HANDLE FileHandle,\r
311 IN UINT64 Position\r
d2b4564b 312 )\r
313{\r
183ecff5
JC
314 if (FileHandle == NULL) {\r
315 return (EFI_INVALID_PARAMETER);\r
316 }\r
317\r
d2b4564b 318 //\r
319 // Perform the SetPosition based on EFI_FILE_PROTOCOL\r
320 //\r
321 return (FileHandle->SetPosition(FileHandle, Position));\r
322}\r
323\r
a405b86d 324/**\r
d2b4564b 325 Gets a file's current position\r
326\r
a405b86d 327 This function retrieves the current file position for the file handle. For\r
328 directories, the current file position has no meaning outside of the file\r
d2b4564b 329 system driver and as such the operation is not supported. An error is returned\r
330 if FileHandle is a directory.\r
331\r
332 @param FileHandle The open file handle on which to get the position.\r
333 @param Position Byte position from begining of file.\r
334\r
335 @retval EFI_SUCCESS the operation completed sucessfully.\r
336 @retval INVALID_PARAMETER One of the parameters has an invalid value.\r
337 @retval EFI_UNSUPPORTED the request is not valid on directories.\r
338**/\r
339EFI_STATUS\r
340EFIAPI\r
341FileHandleGetPosition (\r
342 IN EFI_FILE_HANDLE FileHandle,\r
343 OUT UINT64 *Position\r
344 )\r
345{\r
183ecff5 346 if (Position == NULL || FileHandle == NULL) {\r
a405b86d 347 return (EFI_INVALID_PARAMETER);\r
348 }\r
183ecff5 349\r
d2b4564b 350 //\r
351 // Perform the GetPosition based on EFI_FILE_PROTOCOL\r
352 //\r
353 return (FileHandle->GetPosition(FileHandle, Position));\r
354}\r
355/**\r
356 Flushes data on a file\r
a405b86d 357\r
d2b4564b 358 This function flushes all modified data associated with a file to a device.\r
359\r
360 @param FileHandle The file handle on which to flush data\r
361\r
362 @retval EFI_SUCCESS The data was flushed.\r
363 @retval EFI_NO_MEDIA The device has no media.\r
364 @retval EFI_DEVICE_ERROR The device reported an error.\r
365 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.\r
366 @retval EFI_WRITE_PROTECTED The file or medium is write protected.\r
367 @retval EFI_ACCESS_DENIED The file was opened for read only.\r
368**/\r
369EFI_STATUS\r
370EFIAPI\r
371FileHandleFlush (\r
372 IN EFI_FILE_HANDLE FileHandle\r
373 )\r
374{\r
183ecff5
JC
375 if (FileHandle == NULL) {\r
376 return (EFI_INVALID_PARAMETER);\r
377 }\r
378\r
d2b4564b 379 //\r
380 // Perform the Flush based on EFI_FILE_PROTOCOL\r
381 //\r
382 return (FileHandle->Flush(FileHandle));\r
383}\r
384\r
385/**\r
e84fb6eb 386 Function to determine if a given handle is a directory handle.\r
d2b4564b 387\r
e84fb6eb 388 Open the file information on the DirHandle and verify that the Attribute\r
d2b4564b 389 includes EFI_FILE_DIRECTORY bit set.\r
390\r
e84fb6eb 391 @param[in] DirHandle Handle to open file.\r
d2b4564b 392\r
e84fb6eb
QS
393 @retval EFI_SUCCESS DirHandle is a directory.\r
394 @retval EFI_INVALID_PARAMETER DirHandle is NULL. \r
395 The file information returns from FileHandleGetInfo is NULL. \r
396 @retval EFI_NOT_FOUND DirHandle is not a directory.\r
d2b4564b 397**/\r
398EFI_STATUS\r
399EFIAPI\r
400FileHandleIsDirectory (\r
401 IN EFI_FILE_HANDLE DirHandle\r
402 )\r
403{\r
404 EFI_FILE_INFO *DirInfo;\r
405\r
183ecff5
JC
406 if (DirHandle == NULL) {\r
407 return (EFI_INVALID_PARAMETER);\r
408 }\r
a405b86d 409\r
d2b4564b 410 //\r
411 // get the file information for DirHandle\r
412 //\r
413 DirInfo = FileHandleGetInfo (DirHandle);\r
a405b86d 414\r
d2b4564b 415 //\r
416 // Parse DirInfo\r
417 //\r
418 if (DirInfo == NULL) {\r
419 //\r
420 // We got nothing...\r
421 //\r
422 return (EFI_INVALID_PARAMETER);\r
a405b86d 423 }\r
d2b4564b 424 if ((DirInfo->Attribute & EFI_FILE_DIRECTORY) == 0) {\r
425 //\r
426 // Attributes say this is not a directory\r
427 //\r
428 FreePool (DirInfo);\r
429 return (EFI_NOT_FOUND);\r
430 }\r
431 //\r
432 // all good...\r
433 //\r
434 FreePool (DirInfo);\r
435 return (EFI_SUCCESS);\r
436}\r
437\r
b0934ac4 438/** Retrieve first entry from a directory.\r
439\r
440 This function takes an open directory handle and gets information from the\r
441 first entry in the directory. A buffer is allocated to contain\r
442 the information and a pointer to the buffer is returned in *Buffer. The\r
443 caller can use FileHandleFindNextFile() to get subsequent directory entries.\r
d2b4564b 444\r
b0934ac4 445 The buffer will be freed by FileHandleFindNextFile() when the last directory\r
446 entry is read. Otherwise, the caller must free the buffer, using FreePool,\r
447 when finished with it.\r
d2b4564b 448\r
b0934ac4 449 @param[in] DirHandle The file handle of the directory to search.\r
450 @param[out] Buffer The pointer to pointer to buffer for file's information.\r
d2b4564b 451\r
452 @retval EFI_SUCCESS Found the first file.\r
453 @retval EFI_NOT_FOUND Cannot find the directory.\r
454 @retval EFI_NO_MEDIA The device has no media.\r
455 @retval EFI_DEVICE_ERROR The device reported an error.\r
456 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.\r
457 @return Others status of FileHandleGetInfo, FileHandleSetPosition,\r
458 or FileHandleRead\r
459**/\r
460EFI_STATUS\r
461EFIAPI\r
462FileHandleFindFirstFile (\r
463 IN EFI_FILE_HANDLE DirHandle,\r
464 OUT EFI_FILE_INFO **Buffer\r
465 )\r
466{\r
467 EFI_STATUS Status;\r
468 UINTN BufferSize;\r
469\r
4eb59be3 470 if (Buffer == NULL || DirHandle == NULL) {\r
471 return (EFI_INVALID_PARAMETER);\r
472 }\r
d2b4564b 473\r
474 //\r
475 // verify that DirHandle is a directory\r
476 //\r
477 Status = FileHandleIsDirectory(DirHandle);\r
478 if (EFI_ERROR(Status)) {\r
479 return (Status);\r
a405b86d 480 }\r
d2b4564b 481\r
4eb59be3 482 //\r
483 // Allocate a buffer sized to struct size + enough for the string at the end\r
484 //\r
485 BufferSize = FIND_XXXXX_FILE_BUFFER_SIZE;\r
486 *Buffer = AllocateZeroPool(BufferSize);\r
487 if (*Buffer == NULL){\r
488 return (EFI_OUT_OF_RESOURCES);\r
489 }\r
490\r
d2b4564b 491 //\r
a405b86d 492 // reset to the begining of the directory\r
d2b4564b 493 //\r
494 Status = FileHandleSetPosition(DirHandle, 0);\r
495 if (EFI_ERROR(Status)) {\r
4eb59be3 496 FreePool(*Buffer);\r
497 *Buffer = NULL;\r
d2b4564b 498 return (Status);\r
a405b86d 499 }\r
d2b4564b 500\r
d2b4564b 501 //\r
502 // read in the info about the first file\r
503 //\r
504 Status = FileHandleRead (DirHandle, &BufferSize, *Buffer);\r
505 ASSERT(Status != EFI_BUFFER_TOO_SMALL);\r
74fa83fd 506 if (EFI_ERROR(Status) || BufferSize == 0) {\r
d2b4564b 507 FreePool(*Buffer);\r
508 *Buffer = NULL;\r
74fa83fd 509 if (BufferSize == 0) {\r
510 return (EFI_NOT_FOUND);\r
511 }\r
d2b4564b 512 return (Status);\r
513 }\r
514 return (EFI_SUCCESS);\r
515}\r
d2b4564b 516\r
b0934ac4 517/** Retrieve next entries from a directory.\r
518\r
519 To use this function, the caller must first call the FileHandleFindFirstFile()\r
520 function to get the first directory entry. Subsequent directory entries are\r
521 retrieved by using the FileHandleFindNextFile() function. This function can\r
522 be called several times to get each entry from the directory. If the call of\r
523 FileHandleFindNextFile() retrieved the last directory entry, the next call of\r
524 this function will set *NoFile to TRUE and free the buffer.\r
d2b4564b 525\r
b0934ac4 526 @param[in] DirHandle The file handle of the directory.\r
527 @param[out] Buffer The pointer to buffer for file's information.\r
528 @param[out] NoFile The pointer to boolean when last file is found.\r
d2b4564b 529\r
530 @retval EFI_SUCCESS Found the next file, or reached last file\r
531 @retval EFI_NO_MEDIA The device has no media.\r
532 @retval EFI_DEVICE_ERROR The device reported an error.\r
533 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.\r
534**/\r
535EFI_STATUS\r
536EFIAPI\r
537FileHandleFindNextFile(\r
b0934ac4 538 IN EFI_FILE_HANDLE DirHandle,\r
539 OUT EFI_FILE_INFO *Buffer,\r
540 OUT BOOLEAN *NoFile\r
d2b4564b 541 )\r
542{\r
543 EFI_STATUS Status;\r
544 UINTN BufferSize;\r
545\r
183ecff5
JC
546 if (DirHandle == NULL || Buffer == NULL || NoFile == NULL) {\r
547 return (EFI_INVALID_PARAMETER);\r
548 }\r
d2b4564b 549\r
550 //\r
551 // This BufferSize MUST stay equal to the originally allocated one in GetFirstFile\r
552 //\r
553 BufferSize = FIND_XXXXX_FILE_BUFFER_SIZE;\r
554\r
555 //\r
556 // read in the info about the next file\r
557 //\r
558 Status = FileHandleRead (DirHandle, &BufferSize, Buffer);\r
559 ASSERT(Status != EFI_BUFFER_TOO_SMALL);\r
560 if (EFI_ERROR(Status)) {\r
561 return (Status);\r
562 }\r
563\r
564 //\r
565 // If we read 0 bytes (but did not have erros) we already read in the last file.\r
566 //\r
567 if (BufferSize == 0) {\r
568 FreePool(Buffer);\r
569 *NoFile = TRUE;\r
570 }\r
571\r
572 return (EFI_SUCCESS);\r
573}\r
a405b86d 574\r
d2b4564b 575/**\r
576 Retrieve the size of a file.\r
577\r
a405b86d 578 This function extracts the file size info from the FileHandle's EFI_FILE_INFO\r
d2b4564b 579 data.\r
580\r
b269f895
QS
581 @param[in] FileHandle The file handle from which size is retrieved.\r
582 @param[out] Size The pointer to size.\r
d2b4564b 583\r
b269f895
QS
584 @retval EFI_SUCCESS Operation was completed sucessfully.\r
585 @retval EFI_DEVICE_ERROR Cannot access the file.\r
586 @retval EFI_INVALID_PARAMETER FileHandle is NULL.\r
587 Size is NULL.\r
d2b4564b 588**/\r
589EFI_STATUS\r
590EFIAPI\r
591FileHandleGetSize (\r
592 IN EFI_FILE_HANDLE FileHandle,\r
593 OUT UINT64 *Size\r
594 )\r
595{\r
596 EFI_FILE_INFO *FileInfo;\r
597\r
183ecff5
JC
598 if (FileHandle == NULL || Size == NULL) {\r
599 return (EFI_INVALID_PARAMETER);\r
600 }\r
a405b86d 601\r
d2b4564b 602 //\r
603 // get the FileInfo structure\r
604 //\r
605 FileInfo = FileHandleGetInfo(FileHandle);\r
606 if (FileInfo == NULL) {\r
607 return (EFI_DEVICE_ERROR);\r
608 }\r
609\r
610 //\r
611 // Assign the Size pointer to the correct value\r
612 //\r
613 *Size = FileInfo->FileSize;\r
a405b86d 614\r
d2b4564b 615 //\r
616 // free the FileInfo memory\r
617 //\r
618 FreePool(FileInfo);\r
619\r
620 return (EFI_SUCCESS);\r
b1f95a06 621}\r
622\r
a405b86d 623/**\r
624 Set the size of a file.\r
625\r
a405b86d 626 This function changes the file size info from the FileHandle's EFI_FILE_INFO\r
627 data.\r
628\r
b269f895
QS
629 @param[in] FileHandle The file handle whose size is to be changed.\r
630 @param[in] Size The new size.\r
a405b86d 631\r
b269f895
QS
632 @retval EFI_SUCCESS The operation completed successfully.\r
633 @retval EFI_DEVICE_ERROR Cannot access the file.\r
634 @retval EFI_INVALID_PARAMETER FileHandle is NULL.\r
a405b86d 635**/\r
636EFI_STATUS\r
637EFIAPI\r
638FileHandleSetSize (\r
639 IN EFI_FILE_HANDLE FileHandle,\r
640 IN UINT64 Size\r
641 )\r
642{\r
643 EFI_FILE_INFO *FileInfo;\r
644 EFI_STATUS Status;\r
645\r
183ecff5
JC
646 if (FileHandle == NULL) {\r
647 return (EFI_INVALID_PARAMETER);\r
648 }\r
a405b86d 649\r
650 //\r
651 // get the FileInfo structure\r
652 //\r
653 FileInfo = FileHandleGetInfo(FileHandle);\r
654 if (FileInfo == NULL) {\r
655 return (EFI_DEVICE_ERROR);\r
656 }\r
657\r
658 //\r
659 // Assign the FileSize pointer to the new value\r
660 //\r
661 FileInfo->FileSize = Size;\r
662\r
663 Status = FileHandleSetInfo(FileHandle, FileInfo);\r
664 //\r
665 // free the FileInfo memory\r
666 //\r
667 FreePool(FileInfo);\r
668\r
669 return (Status);\r
670}\r
b1f95a06 671\r
672/**\r
a405b86d 673 Safely append (on the left) with automatic string resizing given length of Destination and\r
b1f95a06 674 desired length of copy from Source.\r
675\r
a405b86d 676 append the first D characters of Source to the end of Destination, where D is\r
677 the lesser of Count and the StrLen() of Source. If appending those D characters\r
678 will fit within Destination (whose Size is given as CurrentSize) and\r
679 still leave room for a NULL terminator, then those characters are appended,\r
680 starting at the original terminating NULL of Destination, and a new terminating\r
ac255da6 681 NULL is appended.\r
b1f95a06 682\r
683 If appending D characters onto Destination will result in a overflow of the size\r
684 given in CurrentSize the string will be grown such that the copy can be performed\r
685 and CurrentSize will be updated to the new size.\r
686\r
a405b86d 687 If Source is NULL, there is nothing to append, just return the current buffer in\r
b1f95a06 688 Destination.\r
689\r
183ecff5 690 if Destination is NULL, then return error\r
a405b86d 691 if Destination's current length (including NULL terminator) is already more then\r
b1f95a06 692 CurrentSize, then ASSERT()\r
693\r
4ff7e37b
ED
694 @param[in, out] Destination The String to append onto\r
695 @param[in, out] CurrentSize on call the number of bytes in Destination. On\r
b1f95a06 696 return possibly the new size (still in bytes). if NULL\r
697 then allocate whatever is needed.\r
698 @param[in] Source The String to append from\r
a405b86d 699 @param[in] Count Maximum number of characters to append. if 0 then\r
b1f95a06 700 all are appended.\r
701\r
702 @return Destination return the resultant string.\r
703**/\r
a405b86d 704CHAR16*\r
b1f95a06 705EFIAPI\r
706StrnCatGrowLeft (\r
707 IN OUT CHAR16 **Destination,\r
708 IN OUT UINTN *CurrentSize,\r
709 IN CONST CHAR16 *Source,\r
710 IN UINTN Count\r
a405b86d 711 )\r
712{\r
b1f95a06 713 UINTN DestinationStartSize;\r
714 UINTN NewSize;\r
727a4c71 715 UINTN CopySize;\r
b1f95a06 716\r
183ecff5
JC
717 if (Destination == NULL) {\r
718 return (NULL);\r
719 }\r
b1f95a06 720\r
721 //\r
722 // If there's nothing to do then just return Destination\r
723 //\r
724 if (Source == NULL) {\r
725 return (*Destination);\r
726 }\r
727\r
728 //\r
729 // allow for NULL pointers address as Destination\r
730 //\r
731 if (*Destination != NULL) {\r
732 ASSERT(CurrentSize != 0);\r
733 DestinationStartSize = StrSize(*Destination);\r
734 ASSERT(DestinationStartSize <= *CurrentSize);\r
735 } else {\r
736 DestinationStartSize = 0;\r
737// ASSERT(*CurrentSize == 0);\r
738 }\r
739\r
740 //\r
741 // Append all of Source?\r
742 //\r
743 if (Count == 0) {\r
d595d4b1 744 Count = StrSize(Source);\r
b1f95a06 745 }\r
746\r
747 //\r
748 // Test and grow if required\r
749 //\r
750 if (CurrentSize != NULL) {\r
751 NewSize = *CurrentSize;\r
d595d4b1 752 while (NewSize < (DestinationStartSize + Count)) {\r
753 NewSize += 2 * Count;\r
b1f95a06 754 }\r
755 *Destination = ReallocatePool(*CurrentSize, NewSize, *Destination);\r
756 *CurrentSize = NewSize;\r
757 } else {\r
d595d4b1 758 *Destination = AllocateZeroPool(Count+sizeof(CHAR16));\r
b1f95a06 759 }\r
02a758cb 760 if (*Destination == NULL) {\r
761 return NULL;\r
762 }\r
b1f95a06 763\r
727a4c71 764 CopySize = StrSize(*Destination);\r
46f43bc4 765 CopyMem((*Destination)+((Count-2)/sizeof(CHAR16)), *Destination, CopySize);\r
766 CopyMem(*Destination, Source, Count-2);\r
b1f95a06 767 return (*Destination);\r
768}\r
769\r
770/**\r
a405b86d 771 Function to get a full filename given a EFI_FILE_HANDLE somewhere lower on the\r
b1f95a06 772 directory 'stack'.\r
773\r
774 if Handle is NULL, return EFI_INVALID_PARAMETER\r
775\r
776 @param[in] Handle Handle to the Directory or File to create path to.\r
a405b86d 777 @param[out] FullFileName pointer to pointer to generated full file name. It\r
b1f95a06 778 is the responsibility of the caller to free this memory\r
779 with a call to FreePool().\r
780 @retval EFI_SUCCESS the operation was sucessful and the FullFileName is valid.\r
781 @retval EFI_INVALID_PARAMETER Handle was NULL.\r
782 @retval EFI_INVALID_PARAMETER FullFileName was NULL.\r
783 @retval EFI_OUT_OF_RESOURCES a memory allocation failed.\r
784**/\r
785EFI_STATUS\r
786EFIAPI\r
787FileHandleGetFileName (\r
788 IN CONST EFI_FILE_HANDLE Handle,\r
789 OUT CHAR16 **FullFileName\r
a405b86d 790 )\r
791{\r
b1f95a06 792 EFI_STATUS Status;\r
793 UINTN Size;\r
794 EFI_FILE_HANDLE CurrentHandle;\r
795 EFI_FILE_HANDLE NextHigherHandle;\r
796 EFI_FILE_INFO *FileInfo;\r
797\r
798 Size = 0;\r
b1f95a06 799\r
800 //\r
801 // Check our parameters\r
802 //\r
803 if (FullFileName == NULL || Handle == NULL) {\r
804 return (EFI_INVALID_PARAMETER);\r
805 }\r
806\r
d595d4b1 807 *FullFileName = NULL;\r
a405b86d 808 CurrentHandle = NULL;\r
d595d4b1 809\r
b1f95a06 810 Status = Handle->Open(Handle, &CurrentHandle, L".", EFI_FILE_MODE_READ, 0);\r
811 if (!EFI_ERROR(Status)) {\r
812 //\r
813 // Reverse out the current directory on the device\r
814 //\r
815 for (;;) {\r
816 FileInfo = FileHandleGetInfo(CurrentHandle);\r
817 if (FileInfo == NULL) {\r
818 Status = EFI_OUT_OF_RESOURCES;\r
819 break;\r
820 } else {\r
821 //\r
822 // We got info... do we have a name? if yes preceed the current path with it...\r
823 //\r
824 if (StrLen (FileInfo->FileName) == 0) {\r
46f43bc4 825 if (*FullFileName == NULL) {\r
a405b86d 826 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));\r
46f43bc4 827 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);\r
828 }\r
b1f95a06 829 FreePool(FileInfo);\r
830 break;\r
831 } else {\r
46f43bc4 832 if (*FullFileName == NULL) {\r
a405b86d 833 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));\r
46f43bc4 834 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);\r
835 }\r
a405b86d 836 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));\r
b1f95a06 837 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, FileInfo->FileName, 0);\r
46f43bc4 838 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);\r
b1f95a06 839 FreePool(FileInfo);\r
840 }\r
841 }\r
842 //\r
843 // Move to the parent directory\r
844 //\r
845 Status = CurrentHandle->Open (CurrentHandle, &NextHigherHandle, L"..", EFI_FILE_MODE_READ, 0);\r
846 if (EFI_ERROR (Status)) {\r
847 break;\r
848 }\r
849\r
850 FileHandleClose(CurrentHandle);\r
851 CurrentHandle = NextHigherHandle;\r
852 }\r
a405b86d 853 } else if (Status == EFI_NOT_FOUND) {\r
854 Status = EFI_SUCCESS;\r
855 ASSERT((*FullFileName == NULL && Size == 0) || (*FullFileName != NULL));\r
856 *FullFileName = StrnCatGrowLeft(FullFileName, &Size, L"\\", 0);\r
b1f95a06 857 }\r
858\r
859 if (CurrentHandle != NULL) {\r
860 CurrentHandle->Close (CurrentHandle);\r
861 }\r
862\r
863 if (EFI_ERROR(Status) && *FullFileName != NULL) {\r
9eb53ac3 864 FreePool(*FullFileName);\r
b1f95a06 865 }\r
866\r
867 return (Status);\r
868}\r
869\r
b3011f40 870/**\r
a405b86d 871 Function to read a single line from a file. The \n is not included in the returned\r
b3011f40 872 buffer. The returned buffer must be callee freed.\r
873\r
a405b86d 874 If the position upon start is 0, then the Ascii Boolean will be set. This should be\r
b3011f40 875 maintained and not changed for all operations with the same file.\r
876\r
4ff7e37b
ED
877 @param[in] Handle FileHandle to read from.\r
878 @param[in, out] Ascii Boolean value for indicating whether the file is Ascii (TRUE) or UCS2 (FALSE);\r
b3011f40 879\r
880 @return The line of text from the file.\r
881\r
882 @sa FileHandleReadLine\r
883**/\r
884CHAR16*\r
885EFIAPI\r
886FileHandleReturnLine(\r
887 IN EFI_FILE_HANDLE Handle,\r
888 IN OUT BOOLEAN *Ascii\r
889 )\r
890{\r
891 CHAR16 *RetVal;\r
892 UINTN Size;\r
893 EFI_STATUS Status;\r
894\r
895 Size = 0;\r
896 RetVal = NULL;\r
897\r
898 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);\r
899 if (Status == EFI_BUFFER_TOO_SMALL) {\r
4eb59be3 900 RetVal = AllocateZeroPool(Size);\r
b3011f40 901 Status = FileHandleReadLine(Handle, RetVal, &Size, FALSE, Ascii);\r
902 }\r
903 ASSERT_EFI_ERROR(Status);\r
904 if (EFI_ERROR(Status) && (RetVal != NULL)) {\r
905 FreePool(RetVal);\r
906 RetVal = NULL;\r
907 }\r
908 return (RetVal);\r
909}\r
910\r
b1f95a06 911/**\r
a405b86d 912 Function to read a single line (up to but not including the \n) from a EFI_FILE_HANDLE.\r
b1f95a06 913\r
a405b86d 914 If the position upon start is 0, then the Ascii Boolean will be set. This should be\r
b3011f40 915 maintained and not changed for all operations with the same file.\r
916\r
4ff7e37b
ED
917 @param[in] Handle FileHandle to read from\r
918 @param[in, out] Buffer pointer to buffer to read into\r
919 @param[in, out] Size pointer to number of bytes in buffer\r
920 @param[in] Truncate if TRUE then allows for truncation of the line to fit.\r
921 if FALSE will reset the position to the begining of the\r
922 line if the buffer is not large enough.\r
923 @param[in, out] Ascii Boolean value for indicating whether the file is Ascii (TRUE) or UCS2 (FALSE);\r
b1f95a06 924\r
a405b86d 925 @retval EFI_SUCCESS the operation was sucessful. the line is stored in\r
b1f95a06 926 Buffer.\r
927 @retval EFI_INVALID_PARAMETER Handle was NULL.\r
b1f95a06 928 @retval EFI_INVALID_PARAMETER Size was NULL.\r
a405b86d 929 @retval EFI_BUFFER_TOO_SMALL Size was not enough space to store the line.\r
b1f95a06 930 Size was updated to minimum space required.\r
931 @sa FileHandleRead\r
932**/\r
933EFI_STATUS\r
934EFIAPI\r
935FileHandleReadLine(\r
936 IN EFI_FILE_HANDLE Handle,\r
b3011f40 937 IN OUT CHAR16 *Buffer,\r
b1f95a06 938 IN OUT UINTN *Size,\r
b3011f40 939 IN BOOLEAN Truncate,\r
940 IN OUT BOOLEAN *Ascii\r
a405b86d 941 )\r
942{\r
b1f95a06 943 EFI_STATUS Status;\r
944 CHAR16 CharBuffer;\r
945 UINTN CharSize;\r
946 UINTN CountSoFar;\r
b3011f40 947 UINT64 OriginalFilePosition;\r
b1f95a06 948\r
949\r
950 if (Handle == NULL\r
b1f95a06 951 ||Size == NULL\r
183ecff5 952 ||(Buffer==NULL&&*Size!=0)\r
a405b86d 953 ){\r
954 return (EFI_INVALID_PARAMETER);\r
955 }\r
183ecff5 956 if (Buffer != NULL) {\r
a405b86d 957 *Buffer = CHAR_NULL;\r
b1f95a06 958 }\r
b3011f40 959 FileHandleGetPosition(Handle, &OriginalFilePosition);\r
960 if (OriginalFilePosition == 0) {\r
961 CharSize = sizeof(CHAR16);\r
962 Status = FileHandleRead(Handle, &CharSize, &CharBuffer);\r
963 ASSERT_EFI_ERROR(Status);\r
4eb59be3 964 if (CharBuffer == gUnicodeFileTag) {\r
b3011f40 965 *Ascii = FALSE;\r
966 } else {\r
967 *Ascii = TRUE;\r
968 FileHandleSetPosition(Handle, OriginalFilePosition);\r
969 }\r
970 }\r
b1f95a06 971\r
972 for (CountSoFar = 0;;CountSoFar++){\r
b3011f40 973 CharBuffer = 0;\r
974 if (*Ascii) {\r
975 CharSize = sizeof(CHAR8);\r
976 } else {\r
977 CharSize = sizeof(CHAR16);\r
978 }\r
b1f95a06 979 Status = FileHandleRead(Handle, &CharSize, &CharBuffer);\r
a405b86d 980 if ( EFI_ERROR(Status)\r
981 || CharSize == 0\r
982 || (CharBuffer == L'\n' && !(*Ascii))\r
983 || (CharBuffer == '\n' && *Ascii)\r
984 ){\r
b1f95a06 985 break;\r
986 }\r
987 //\r
988 // if we have space save it...\r
989 //\r
990 if ((CountSoFar+1)*sizeof(CHAR16) < *Size){\r
b3011f40 991 ASSERT(Buffer != NULL);\r
b1f95a06 992 ((CHAR16*)Buffer)[CountSoFar] = CharBuffer;\r
46f43bc4 993 ((CHAR16*)Buffer)[CountSoFar+1] = CHAR_NULL;\r
b1f95a06 994 }\r
995 }\r
996\r
997 //\r
998 // if we ran out of space tell when...\r
999 //\r
1000 if ((CountSoFar+1)*sizeof(CHAR16) > *Size){\r
1001 *Size = (CountSoFar+1)*sizeof(CHAR16);\r
a405b86d 1002 if (!Truncate) {\r
b3011f40 1003 FileHandleSetPosition(Handle, OriginalFilePosition);\r
b1f95a06 1004 } else {\r
b3011f40 1005 DEBUG((DEBUG_WARN, "The line was truncated in FileHandleReadLine"));\r
b1f95a06 1006 }\r
1007 return (EFI_BUFFER_TOO_SMALL);\r
1008 }\r
b3011f40 1009 while(Buffer[StrLen(Buffer)-1] == L'\r') {\r
1010 Buffer[StrLen(Buffer)-1] = CHAR_NULL;\r
1011 }\r
1012\r
b1f95a06 1013 return (Status);\r
1014}\r
1015\r
1016/**\r
b269f895 1017 Function to write a line of unicode text to a file.\r
b1f95a06 1018\r
b269f895
QS
1019 @param[in] Handle FileHandle to write to.\r
1020 @param[in] Buffer Buffer to write, if NULL the function will\r
1021 take no action and return EFI_SUCCESS.\r
b1f95a06 1022\r
b269f895
QS
1023 @retval EFI_SUCCESS The data was written.\r
1024 Buffer is NULL.\r
1025 @retval EFI_INVALID_PARAMETER Handle is NULL.\r
b1f95a06 1026\r
1027 @sa FileHandleWrite\r
1028**/\r
1029EFI_STATUS\r
1030EFIAPI\r
1031FileHandleWriteLine(\r
1032 IN EFI_FILE_HANDLE Handle,\r
1033 IN CHAR16 *Buffer\r
a405b86d 1034 )\r
1035{\r
b1f95a06 1036 EFI_STATUS Status;\r
1037 UINTN Size;\r
1038\r
b1f95a06 1039 if (Buffer == NULL) {\r
1040 return (EFI_SUCCESS);\r
1041 }\r
1042\r
183ecff5
JC
1043 if (Handle == NULL) {\r
1044 return (EFI_INVALID_PARAMETER);\r
1045 }\r
1046\r
ac255da6 1047 Size = StrSize(Buffer) - sizeof(Buffer[0]);\r
b1f95a06 1048 Status = FileHandleWrite(Handle, &Size, Buffer);\r
1049 if (EFI_ERROR(Status)) {\r
1050 return (Status);\r
1051 }\r
ac255da6 1052 Size = StrSize(L"\r\n") - sizeof(CHAR16);\r
b1f95a06 1053 return FileHandleWrite(Handle, &Size, L"\r\n");\r
1054}\r
b3011f40 1055\r
1056/**\r
1057 function to take a formatted argument and print it to a file.\r
1058\r
1059 @param[in] Handle the file handle for the file to write to\r
1060 @param[in] Format the format argument (see printlib for format specifier)\r
1061 @param[in] ... the variable arguments for the format\r
1062\r
1063 @retval EFI_SUCCESS the operation was sucessful\r
1064 @return other a return value from FileHandleWriteLine\r
1065\r
1066 @sa FileHandleWriteLine\r
1067**/\r
1068EFI_STATUS\r
1069EFIAPI\r
1070FileHandlePrintLine(\r
1071 IN EFI_FILE_HANDLE Handle,\r
1072 IN CONST CHAR16 *Format,\r
1073 ...\r
1074 )\r
1075{\r
1076 VA_LIST Marker;\r
1077 CHAR16 *Buffer;\r
1078 EFI_STATUS Status;\r
1079\r
b3011f40 1080 //\r
1081 // Get a buffer to print into\r
1082 //\r
ae591c14 1083 Buffer = AllocateZeroPool (PcdGet16 (PcdUefiFileHandleLibPrintBufferSize));\r
183ecff5
JC
1084 if (Buffer == NULL) {\r
1085 return (EFI_OUT_OF_RESOURCES);\r
1086 }\r
b3011f40 1087\r
1088 //\r
1089 // Print into our buffer\r
1090 //\r
3bbe68a3 1091 VA_START (Marker, Format);\r
ae591c14 1092 UnicodeVSPrint (Buffer, PcdGet16 (PcdUefiFileHandleLibPrintBufferSize), Format, Marker);\r
3bbe68a3 1093 VA_END (Marker);\r
b3011f40 1094\r
1095 //\r
1096 // Print buffer into file\r
1097 //\r
1098 Status = FileHandleWriteLine(Handle, Buffer);\r
1099\r
1100 //\r
a405b86d 1101 // Cleanup and return\r
b3011f40 1102 //\r
1103 FreePool(Buffer);\r
1104 return (Status);\r
1105}\r
1106\r
1107/**\r
1108 Function to determine if a FILE_HANDLE is at the end of the file.\r
1109\r
1110 This will NOT work on directories.\r
1111\r
183ecff5 1112 If Handle is NULL, then return False.\r
b3011f40 1113\r
1114 @param[in] Handle the file handle\r
1115\r
1116 @retval TRUE the position is at the end of the file\r
1117 @retval FALSE the position is not at the end of the file\r
1118**/\r
1119BOOLEAN\r
1120EFIAPI\r
1121FileHandleEof(\r
1122 IN EFI_FILE_HANDLE Handle\r
1123 )\r
1124{\r
1125 EFI_FILE_INFO *Info;\r
1126 UINT64 Pos;\r
1127 BOOLEAN RetVal;\r
1128\r
183ecff5
JC
1129 if (Handle == NULL) {\r
1130 return (FALSE);\r
1131 }\r
a405b86d 1132\r
b3011f40 1133 FileHandleGetPosition(Handle, &Pos);\r
1134 Info = FileHandleGetInfo (Handle);\r
a405b86d 1135\r
b3011f40 1136 if (Info == NULL) {\r
1137 return (FALSE);\r
a405b86d 1138 }\r
b3011f40 1139\r
183ecff5
JC
1140 FileHandleSetPosition(Handle, Pos);\r
1141\r
d54744cd 1142 if (Pos == Info->FileSize) {\r
1143 RetVal = TRUE;\r
1144 } else {\r
1145 RetVal = FALSE;\r
1146 }\r
b3011f40 1147\r
1148 FreePool (Info);\r
1149\r
1150 return (RetVal);\r
22d11953 1151}\r