]> code.delx.au - refind/blob - filesystems/fsw_efi.c
More copyright/license updates for Debian packaging.
[refind] / filesystems / fsw_efi.c
1 /**
2 * \file fsw_efi.c
3 * EFI host environment code.
4 */
5
6 /*-
7 * Copyright (c) 2006 Christoph Pfisterer
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
11 * met:
12 *
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 *
16 * * Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the
19 * distribution.
20 *
21 * * Neither the name of Christoph Pfisterer nor the names of the
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37 /*
38 * Changes by Roderick Smith are licensed under the preceding terms.
39 */
40
41 #include "fsw_efi.h"
42 #include "fsw_core.h"
43 #ifdef __MAKEWITH_GNUEFI
44 #include "edk2/DriverBinding.h"
45 #include "edk2/ComponentName.h"
46 #endif
47 #include "../include/refit_call_wrapper.h"
48
49 #define DEBUG_LEVEL 0
50
51 #ifndef FSTYPE
52 /** The file system type name to use. */
53 #define FSTYPE ext2
54 #endif
55
56 #ifdef __MAKEWITH_GNUEFI
57
58 #define EFI_DISK_IO_PROTOCOL_GUID \
59 { \
60 0xce345171, 0xba0b, 0x11d2, {0x8e, 0x4f, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \
61 }
62
63 #define EFI_BLOCK_IO_PROTOCOL_GUID \
64 { \
65 0x964e5b21, 0x6459, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \
66 }
67
68 EFI_GUID gEfiDriverBindingProtocolGuid = EFI_DRIVER_BINDING_PROTOCOL_GUID;
69 EFI_GUID gEfiComponentNameProtocolGuid = EFI_COMPONENT_NAME_PROTOCOL_GUID;
70 EFI_GUID gEfiDiskIoProtocolGuid = EFI_DISK_IO_PROTOCOL_GUID;
71 EFI_GUID gEfiBlockIoProtocolGuid = EFI_BLOCK_IO_PROTOCOL_GUID;
72 EFI_GUID gEfiFileInfoGuid = EFI_FILE_INFO_ID;
73 EFI_GUID gEfiFileSystemInfoGuid = EFI_FILE_SYSTEM_INFO_ID;
74 EFI_GUID gEfiFileSystemVolumeLabelInfoIdGuid = EFI_FILE_SYSTEM_VOLUME_LABEL_INFO_ID;
75 #define gEfiSimpleFileSystemProtocolGuid FileSystemProtocol
76 #endif
77
78 /** Helper macro for stringification. */
79 #define FSW_EFI_STRINGIFY(x) #x
80 /** Expands to the EFI driver name given the file system type name. */
81 #define FSW_EFI_DRIVER_NAME(t) L"rEFInd 0.9.1 " FSW_EFI_STRINGIFY(t) L" File System Driver"
82
83 // function prototypes
84
85 EFI_STATUS EFIAPI fsw_efi_DriverBinding_Supported(IN EFI_DRIVER_BINDING_PROTOCOL *This,
86 IN EFI_HANDLE ControllerHandle,
87 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath);
88 EFI_STATUS EFIAPI fsw_efi_DriverBinding_Start(IN EFI_DRIVER_BINDING_PROTOCOL *This,
89 IN EFI_HANDLE ControllerHandle,
90 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath);
91 EFI_STATUS EFIAPI fsw_efi_DriverBinding_Stop(IN EFI_DRIVER_BINDING_PROTOCOL *This,
92 IN EFI_HANDLE ControllerHandle,
93 IN UINTN NumberOfChildren,
94 IN EFI_HANDLE *ChildHandleBuffer);
95
96 EFI_STATUS EFIAPI fsw_efi_ComponentName_GetDriverName(IN EFI_COMPONENT_NAME_PROTOCOL *This,
97 IN CHAR8 *Language,
98 OUT CHAR16 **DriverName);
99 EFI_STATUS EFIAPI fsw_efi_ComponentName_GetControllerName(IN EFI_COMPONENT_NAME_PROTOCOL *This,
100 IN EFI_HANDLE ControllerHandle,
101 IN EFI_HANDLE ChildHandle OPTIONAL,
102 IN CHAR8 *Language,
103 OUT CHAR16 **ControllerName);
104
105 void EFIAPI fsw_efi_change_blocksize(struct fsw_volume *vol,
106 fsw_u32 old_phys_blocksize, fsw_u32 old_log_blocksize,
107 fsw_u32 new_phys_blocksize, fsw_u32 new_log_blocksize);
108 fsw_status_t EFIAPI fsw_efi_read_block(struct fsw_volume *vol, fsw_u64 phys_bno, void *buffer);
109
110 EFI_STATUS fsw_efi_map_status(fsw_status_t fsw_status, FSW_VOLUME_DATA *Volume);
111
112 EFI_STATUS EFIAPI fsw_efi_FileSystem_OpenVolume(IN EFI_FILE_IO_INTERFACE *This,
113 OUT EFI_FILE **Root);
114 EFI_STATUS fsw_efi_dnode_to_FileHandle(IN struct fsw_dnode *dno,
115 OUT EFI_FILE **NewFileHandle);
116
117 EFI_STATUS fsw_efi_file_read(IN FSW_FILE_DATA *File,
118 IN OUT UINTN *BufferSize,
119 OUT VOID *Buffer);
120 EFI_STATUS fsw_efi_file_getpos(IN FSW_FILE_DATA *File,
121 OUT UINT64 *Position);
122 EFI_STATUS fsw_efi_file_setpos(IN FSW_FILE_DATA *File,
123 IN UINT64 Position);
124
125 EFI_STATUS fsw_efi_dir_open(IN FSW_FILE_DATA *File,
126 OUT EFI_FILE **NewHandle,
127 IN CHAR16 *FileName,
128 IN UINT64 OpenMode,
129 IN UINT64 Attributes);
130 EFI_STATUS fsw_efi_dir_read(IN FSW_FILE_DATA *File,
131 IN OUT UINTN *BufferSize,
132 OUT VOID *Buffer);
133 EFI_STATUS fsw_efi_dir_setpos(IN FSW_FILE_DATA *File,
134 IN UINT64 Position);
135
136 EFI_STATUS fsw_efi_dnode_getinfo(IN FSW_FILE_DATA *File,
137 IN EFI_GUID *InformationType,
138 IN OUT UINTN *BufferSize,
139 OUT VOID *Buffer);
140 EFI_STATUS fsw_efi_dnode_fill_FileInfo(IN FSW_VOLUME_DATA *Volume,
141 IN struct fsw_dnode *dno,
142 IN OUT UINTN *BufferSize,
143 OUT VOID *Buffer);
144
145 /**
146 * Structure for holding disk cache data.
147 */
148
149 #define CACHE_SIZE 131072 /* 128KiB */
150 struct cache_data {
151 fsw_u8 *Cache;
152 fsw_u64 CacheStart;
153 BOOLEAN CacheValid;
154 FSW_VOLUME_DATA *Volume; // NOTE: Do not deallocate; copied here to ID volume
155 };
156
157 #define NUM_CACHES 2 /* Don't increase without modifying fsw_efi_read_block() */
158 static struct cache_data Caches[NUM_CACHES];
159 static int LastRead = -1;
160
161 /**
162 * Interface structure for the EFI Driver Binding protocol.
163 */
164
165 EFI_DRIVER_BINDING_PROTOCOL fsw_efi_DriverBinding_table = {
166 fsw_efi_DriverBinding_Supported,
167 fsw_efi_DriverBinding_Start,
168 fsw_efi_DriverBinding_Stop,
169 0x10,
170 NULL,
171 NULL
172 };
173
174 /**
175 * Interface structure for the EFI Component Name protocol.
176 */
177
178 EFI_COMPONENT_NAME_PROTOCOL fsw_efi_ComponentName_table = {
179 fsw_efi_ComponentName_GetDriverName,
180 fsw_efi_ComponentName_GetControllerName,
181 (CHAR8*) "eng"
182 };
183
184 /**
185 * Dispatch table for our FSW host driver.
186 */
187
188 struct fsw_host_table fsw_efi_host_table = {
189 FSW_STRING_TYPE_UTF16,
190
191 fsw_efi_change_blocksize,
192 fsw_efi_read_block
193 };
194
195 extern struct fsw_fstype_table FSW_FSTYPE_TABLE_NAME(FSTYPE);
196
197
198 static VOID EFIAPI fsw_efi_clear_cache(VOID) {
199 int i;
200
201 // clear the cache
202 for (i = 0; i < NUM_CACHES; i++) {
203 if (Caches[i].Cache != NULL) {
204 FreePool(Caches[i].Cache);
205 Caches[i].Cache = NULL;
206 } // if
207 Caches[i].CacheStart = 0;
208 Caches[i].CacheValid = FALSE;
209 Caches[i].Volume = NULL;
210 }
211 LastRead = -1;
212 } // VOID EFIAPI fsw_efi_clear_cache();
213
214 /**
215 * Image entry point. Installs the Driver Binding and Component Name protocols
216 * on the image's handle. Actually mounting a file system is initiated through
217 * the Driver Binding protocol at the firmware's request.
218 */
219 EFI_STATUS EFIAPI fsw_efi_main(IN EFI_HANDLE ImageHandle,
220 IN EFI_SYSTEM_TABLE *SystemTable)
221 {
222 EFI_STATUS Status;
223
224 #ifndef HOST_EFI_EDK2
225 // Not available in EDK2 toolkit
226 InitializeLib(ImageHandle, SystemTable);
227 #endif
228
229 // complete Driver Binding protocol instance
230 fsw_efi_DriverBinding_table.ImageHandle = ImageHandle;
231 fsw_efi_DriverBinding_table.DriverBindingHandle = ImageHandle;
232 // install Driver Binding protocol
233 Status = refit_call4_wrapper(BS->InstallProtocolInterface, &fsw_efi_DriverBinding_table.DriverBindingHandle,
234 &gEfiDriverBindingProtocolGuid,
235 EFI_NATIVE_INTERFACE,
236 &fsw_efi_DriverBinding_table);
237 if (EFI_ERROR (Status)) {
238 return Status;
239 }
240
241 // install Component Name protocol
242 Status = refit_call4_wrapper(BS->InstallProtocolInterface, &fsw_efi_DriverBinding_table.DriverBindingHandle,
243 &gEfiComponentNameProtocolGuid,
244 EFI_NATIVE_INTERFACE,
245 &fsw_efi_ComponentName_table);
246 if (EFI_ERROR (Status)) {
247 return Status;
248 }
249
250 // OverrideFunctions();
251 // Msg = NULL;
252 // msgCursor = NULL;
253 // Status = BS->LocateProtocol(&gMsgLogProtocolGuid, NULL, (VOID **) &Msg);
254 // if (!EFI_ERROR(Status) && (Msg != NULL)) {
255 // msgCursor = Msg->Cursor;
256 // BootLog("MsgLog installed into VBoxFs\n");
257 // }
258
259 return EFI_SUCCESS;
260 }
261
262 #ifdef __MAKEWITH_GNUEFI
263 EFI_DRIVER_ENTRY_POINT(fsw_efi_main)
264 #endif
265
266 /**
267 * Driver Binding EFI protocol, Supported function. This function is called by EFI
268 * to test if this driver can handle a certain device. Our implementation only checks
269 * if the device is a disk (i.e. that it supports the Block I/O and Disk I/O protocols)
270 * and implicitly checks if the disk is already in use by another driver.
271 */
272
273 EFI_STATUS EFIAPI fsw_efi_DriverBinding_Supported(IN EFI_DRIVER_BINDING_PROTOCOL *This,
274 IN EFI_HANDLE ControllerHandle,
275 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath)
276 {
277 EFI_STATUS Status;
278 EFI_DISK_IO *DiskIo;
279
280 // we check for both DiskIO and BlockIO protocols
281
282 // first, open DiskIO
283 Status = refit_call6_wrapper(BS->OpenProtocol, ControllerHandle,
284 &gEfiDiskIoProtocolGuid,
285 (VOID **) &DiskIo,
286 This->DriverBindingHandle,
287 ControllerHandle,
288 EFI_OPEN_PROTOCOL_BY_DRIVER);
289 if (EFI_ERROR(Status))
290 return Status;
291
292 // we were just checking, close it again
293 refit_call4_wrapper(BS->CloseProtocol, ControllerHandle,
294 &gEfiDiskIoProtocolGuid,
295 This->DriverBindingHandle,
296 ControllerHandle);
297
298 // next, check BlockIO without actually opening it
299 Status = refit_call6_wrapper(BS->OpenProtocol, ControllerHandle,
300 &gEfiBlockIoProtocolGuid,
301 NULL,
302 This->DriverBindingHandle,
303 ControllerHandle,
304 EFI_OPEN_PROTOCOL_TEST_PROTOCOL);
305 return Status;
306 }
307
308 /**
309 * Driver Binding EFI protocol, Start function. This function is called by EFI
310 * to start driving the given device. It is still possible at this point to
311 * return EFI_UNSUPPORTED, and in fact we will do so if the file system driver
312 * cannot find the superblock signature (or equivalent) that it expects.
313 *
314 * This function allocates memory for a per-volume structure, opens the
315 * required protocols (just Disk I/O in our case, Block I/O is only looked
316 * at to get the MediaId field), and lets the FSW core mount the file system.
317 * If successful, an EFI Simple File System protocol is exported on the
318 * device handle.
319 */
320
321 EFI_STATUS EFIAPI fsw_efi_DriverBinding_Start(IN EFI_DRIVER_BINDING_PROTOCOL *This,
322 IN EFI_HANDLE ControllerHandle,
323 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath)
324 {
325 EFI_STATUS Status;
326 EFI_BLOCK_IO *BlockIo;
327 EFI_DISK_IO *DiskIo;
328 FSW_VOLUME_DATA *Volume;
329
330 #if DEBUG_LEVEL
331 Print(L"fsw_efi_DriverBinding_Start\n");
332 #endif
333
334 // open consumed protocols
335 Status = refit_call6_wrapper(BS->OpenProtocol, ControllerHandle,
336 &gEfiBlockIoProtocolGuid,
337 (VOID **) &BlockIo,
338 This->DriverBindingHandle,
339 ControllerHandle,
340 EFI_OPEN_PROTOCOL_GET_PROTOCOL); // NOTE: we only want to look at the MediaId
341 if (EFI_ERROR(Status)) {
342 // Print(L"Fsw ERROR: OpenProtocol(BlockIo) returned %x\n", Status);
343 return Status;
344 }
345
346 Status = refit_call6_wrapper(BS->OpenProtocol, ControllerHandle,
347 &gEfiDiskIoProtocolGuid,
348 (VOID **) &DiskIo,
349 This->DriverBindingHandle,
350 ControllerHandle,
351 EFI_OPEN_PROTOCOL_BY_DRIVER);
352 if (EFI_ERROR(Status)) {
353 Print(L"Fsw ERROR: OpenProtocol(DiskIo) returned %x\n", Status);
354 return Status;
355 }
356
357 // allocate volume structure
358 Volume = AllocateZeroPool(sizeof(FSW_VOLUME_DATA));
359 Volume->Signature = FSW_VOLUME_DATA_SIGNATURE;
360 Volume->Handle = ControllerHandle;
361 Volume->DiskIo = DiskIo;
362 Volume->MediaId = BlockIo->Media->MediaId;
363 Volume->LastIOStatus = EFI_SUCCESS;
364
365 // mount the filesystem
366 Status = fsw_efi_map_status(fsw_mount(Volume, &fsw_efi_host_table,
367 &FSW_FSTYPE_TABLE_NAME(FSTYPE), &Volume->vol),
368 Volume);
369
370 if (!EFI_ERROR(Status)) {
371 // register the SimpleFileSystem protocol
372 Volume->FileSystem.Revision = EFI_FILE_IO_INTERFACE_REVISION;
373 Volume->FileSystem.OpenVolume = fsw_efi_FileSystem_OpenVolume;
374 Status = refit_call4_wrapper(BS->InstallMultipleProtocolInterfaces, &ControllerHandle,
375 &gEfiSimpleFileSystemProtocolGuid,
376 &Volume->FileSystem,
377 NULL);
378 if (EFI_ERROR(Status)) {
379 // Print(L"Fsw ERROR: InstallMultipleProtocolInterfaces returned %x\n", Status);
380 }
381 }
382
383 // on errors, close the opened protocols
384 if (EFI_ERROR(Status)) {
385 if (Volume->vol != NULL)
386 fsw_unmount(Volume->vol);
387 FreePool(Volume);
388
389 refit_call4_wrapper(BS->CloseProtocol, ControllerHandle,
390 &gEfiDiskIoProtocolGuid,
391 This->DriverBindingHandle,
392 ControllerHandle);
393 }
394 return Status;
395 }
396
397 /**
398 * Driver Binding EFI protocol, Stop function. This function is called by EFI
399 * to stop the driver on the given device. This translates to an unmount
400 * call for the FSW core.
401 *
402 * We assume that all file handles on the volume have been closed before
403 * the driver is stopped. At least with the EFI shell, that is actually the
404 * case; it closes all file handles between commands.
405 */
406
407 EFI_STATUS EFIAPI fsw_efi_DriverBinding_Stop(IN EFI_DRIVER_BINDING_PROTOCOL *This,
408 IN EFI_HANDLE ControllerHandle,
409 IN UINTN NumberOfChildren,
410 IN EFI_HANDLE *ChildHandleBuffer)
411 {
412 EFI_STATUS Status;
413 EFI_FILE_IO_INTERFACE *FileSystem;
414 FSW_VOLUME_DATA *Volume;
415
416 #if DEBUG_LEVEL
417 Print(L"fsw_efi_DriverBinding_Stop\n");
418 #endif
419
420 // get the installed SimpleFileSystem interface
421 Status = refit_call6_wrapper(BS->OpenProtocol, ControllerHandle,
422 &gEfiSimpleFileSystemProtocolGuid,
423 (VOID **) &FileSystem,
424 This->DriverBindingHandle,
425 ControllerHandle,
426 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
427 if (EFI_ERROR(Status))
428 return EFI_UNSUPPORTED;
429
430 // get private data structure
431 Volume = FSW_VOLUME_FROM_FILE_SYSTEM(FileSystem);
432
433 // uninstall Simple File System protocol
434 Status = refit_call4_wrapper(BS->UninstallMultipleProtocolInterfaces, ControllerHandle,
435 &gEfiSimpleFileSystemProtocolGuid, &Volume->FileSystem,
436 NULL);
437 if (EFI_ERROR(Status)) {
438 // Print(L"Fsw ERROR: UninstallMultipleProtocolInterfaces returned %x\n", Status);
439 return Status;
440 }
441 #if DEBUG_LEVEL
442 Print(L"fsw_efi_DriverBinding_Stop: protocol uninstalled successfully\n");
443 #endif
444
445 // release private data structure
446 if (Volume->vol != NULL)
447 fsw_unmount(Volume->vol);
448 FreePool(Volume);
449
450 // close the consumed protocols
451 Status = refit_call4_wrapper(BS->CloseProtocol, ControllerHandle,
452 &gEfiDiskIoProtocolGuid,
453 This->DriverBindingHandle,
454 ControllerHandle);
455
456 // clear the cache
457 fsw_efi_clear_cache();
458
459 return Status;
460 }
461
462 /**
463 * Component Name EFI protocol, GetDriverName function. Used by the EFI
464 * environment to inquire the name of this driver. The name returned is
465 * based on the file system type actually used in compilation.
466 */
467
468 EFI_STATUS EFIAPI fsw_efi_ComponentName_GetDriverName(IN EFI_COMPONENT_NAME_PROTOCOL *This,
469 IN CHAR8 *Language,
470 OUT CHAR16 **DriverName)
471 {
472 if (Language == NULL || DriverName == NULL)
473 return EFI_INVALID_PARAMETER;
474
475 if (Language[0] == 'e' && Language[1] == 'n' && Language[2] == 'g' && Language[3] == 0) {
476 *DriverName = FSW_EFI_DRIVER_NAME(FSTYPE);
477 return EFI_SUCCESS;
478 }
479 return EFI_UNSUPPORTED;
480 }
481
482 /**
483 * Component Name EFI protocol, GetControllerName function. Not implemented
484 * because this is not a "bus" driver in the sense of the EFI Driver Model.
485 */
486
487 EFI_STATUS EFIAPI fsw_efi_ComponentName_GetControllerName(IN EFI_COMPONENT_NAME_PROTOCOL *This,
488 IN EFI_HANDLE ControllerHandle,
489 IN EFI_HANDLE ChildHandle OPTIONAL,
490 IN CHAR8 *Language,
491 OUT CHAR16 **ControllerName)
492 {
493 return EFI_UNSUPPORTED;
494 }
495
496 /**
497 * FSW interface function for block size changes. This function is called by the FSW core
498 * when the file system driver changes the block sizes for the volume.
499 */
500
501 void EFIAPI fsw_efi_change_blocksize(struct fsw_volume *vol,
502 fsw_u32 old_phys_blocksize, fsw_u32 old_log_blocksize,
503 fsw_u32 new_phys_blocksize, fsw_u32 new_log_blocksize)
504 {
505 // nothing to do
506 }
507
508 /**
509 * FSW interface function to read data blocks. This function is called by the FSW core
510 * to read a block of data from the device. The buffer is allocated by the core code.
511 * Two caches are maintained, so as to improve performance on some systems. (VirtualBox
512 * is particularly susceptible to performance problems with an uncached driver -- the
513 * ext2 driver can take 200 seconds to load a Linux kernel under VirtualBox, whereas
514 * the time is more like 3 seconds with a cache!) Two independent caches are maintained
515 * because the ext2fs driver tends to alternate between accessing two parts of the
516 * disk.
517 */
518
519 fsw_status_t EFIAPI fsw_efi_read_block(struct fsw_volume *vol, fsw_u64 phys_bno, void *buffer) {
520 int i, ReadCache = -1;
521 FSW_VOLUME_DATA *Volume = (FSW_VOLUME_DATA *)vol->host_data;
522 EFI_STATUS Status = EFI_SUCCESS;
523 BOOLEAN ReadOneBlock = FALSE;
524 UINT64 StartRead = (UINT64) phys_bno * (UINT64) vol->phys_blocksize;
525
526 if (buffer == NULL)
527 return (fsw_status_t) EFI_BAD_BUFFER_SIZE;
528
529 // Initialize static data structures, if necessary....
530 if (LastRead < 0) {
531 fsw_efi_clear_cache();
532 } // if
533
534 // Look for a cache hit on the current query....
535 i = 0;
536 do {
537 if ((Caches[i].Volume == Volume) &&
538 (Caches[i].CacheValid == TRUE) &&
539 (StartRead >= Caches[i].CacheStart) &&
540 ((StartRead + vol->phys_blocksize) <= (Caches[i].CacheStart + CACHE_SIZE))) {
541 ReadCache = i;
542 }
543 i++;
544 } while ((i < NUM_CACHES) && (ReadCache < 0));
545
546 // No cache hit found; load new cache and pass it on....
547 if (ReadCache < 0) {
548 if (LastRead == -1)
549 LastRead = 1;
550 ReadCache = 1 - LastRead; // NOTE: If NUM_CACHES > 2, this must become more complex
551 Caches[ReadCache].CacheValid = FALSE;
552 if (Caches[ReadCache].Cache == NULL)
553 Caches[ReadCache].Cache = AllocatePool(CACHE_SIZE);
554 if (Caches[ReadCache].Cache != NULL) {
555 // TODO: Below call hangs on my 32-bit Mac Mini when compiled with GNU-EFI.
556 // The same binary is fine under VirtualBox, and the same call is fine when
557 // compiled with Tianocore. Further clue: Omitting "Status =" avoids the
558 // hang but produces a failure to mount the filesystem, even when the same
559 // change is made to later similar call. Calling Volume->DiskIo->ReadDisk()
560 // directly (without refit_call5_wrapper()) changes nothing. FIGURE THIS OUT!
561 Status = refit_call5_wrapper(Volume->DiskIo->ReadDisk, Volume->DiskIo, Volume->MediaId,
562 StartRead, (UINTN) CACHE_SIZE, (VOID*) Caches[ReadCache].Cache);
563 if (!EFI_ERROR(Status)) {
564 Caches[ReadCache].CacheStart = StartRead;
565 Caches[ReadCache].CacheValid = TRUE;
566 Caches[ReadCache].Volume = Volume;
567 LastRead = ReadCache;
568 } else {
569 ReadOneBlock = TRUE;
570 }
571 } else {
572 ReadOneBlock = TRUE;
573 } // if cache memory allocated
574 } // if (ReadCache < 0)
575
576 if (Caches[ReadCache].Cache != NULL && Caches[ReadCache].CacheValid == TRUE && vol->phys_blocksize > 0) {
577 CopyMem(buffer, &Caches[ReadCache].Cache[StartRead - Caches[ReadCache].CacheStart], vol->phys_blocksize);
578 } else {
579 ReadOneBlock = TRUE;
580 }
581
582 if (ReadOneBlock) { // Something's failed, so try a simple disk read of one block....
583 Status = refit_call5_wrapper(Volume->DiskIo->ReadDisk, Volume->DiskIo, Volume->MediaId,
584 phys_bno * vol->phys_blocksize,
585 (UINTN) vol->phys_blocksize,
586 (VOID*) buffer);
587 }
588 Volume->LastIOStatus = Status;
589
590 return Status;
591 } // fsw_status_t *fsw_efi_read_block()
592
593 /**
594 * Map FSW status codes to EFI status codes. The FSW_IO_ERROR code is only produced
595 * by fsw_efi_read_block, so we map it back to the EFI status code remembered from
596 * the last I/O operation.
597 */
598
599 EFI_STATUS fsw_efi_map_status(fsw_status_t fsw_status, FSW_VOLUME_DATA *Volume)
600 {
601 switch (fsw_status) {
602 case FSW_SUCCESS:
603 return EFI_SUCCESS;
604 case FSW_OUT_OF_MEMORY:
605 return EFI_VOLUME_CORRUPTED;
606 case FSW_IO_ERROR:
607 return Volume->LastIOStatus;
608 case FSW_UNSUPPORTED:
609 return EFI_UNSUPPORTED;
610 case FSW_NOT_FOUND:
611 return EFI_NOT_FOUND;
612 case FSW_VOLUME_CORRUPTED:
613 return EFI_VOLUME_CORRUPTED;
614 default:
615 return EFI_DEVICE_ERROR;
616 }
617 }
618
619 /**
620 * File System EFI protocol, OpenVolume function. Creates a file handle for
621 * the root directory and returns it. Note that this function may be called
622 * multiple times and returns a new file handle each time. Each returned
623 * handle is closed by the client using it.
624 */
625
626 EFI_STATUS EFIAPI fsw_efi_FileSystem_OpenVolume(IN EFI_FILE_IO_INTERFACE *This,
627 OUT EFI_FILE **Root)
628 {
629 EFI_STATUS Status;
630 FSW_VOLUME_DATA *Volume = FSW_VOLUME_FROM_FILE_SYSTEM(This);
631
632 #if DEBUG_LEVEL
633 Print(L"fsw_efi_FileSystem_OpenVolume\n");
634 #endif
635
636 fsw_efi_clear_cache();
637 Status = fsw_efi_dnode_to_FileHandle(Volume->vol->root, Root);
638
639 return Status;
640 }
641
642 /**
643 * File Handle EFI protocol, Open function. Dispatches the call
644 * based on the kind of file handle.
645 */
646
647 EFI_STATUS EFIAPI fsw_efi_FileHandle_Open(IN EFI_FILE *This,
648 OUT EFI_FILE **NewHandle,
649 IN CHAR16 *FileName,
650 IN UINT64 OpenMode,
651 IN UINT64 Attributes)
652 {
653 FSW_FILE_DATA *File = FSW_FILE_FROM_FILE_HANDLE(This);
654
655 if (File->Type == FSW_EFI_FILE_TYPE_DIR)
656 return fsw_efi_dir_open(File, NewHandle, FileName, OpenMode, Attributes);
657 // not supported for regular files
658 return EFI_UNSUPPORTED;
659 }
660
661 /**
662 * File Handle EFI protocol, Close function. Closes the FSW shandle
663 * and frees the memory used for the structure.
664 */
665
666 EFI_STATUS EFIAPI fsw_efi_FileHandle_Close(IN EFI_FILE *This)
667 {
668 FSW_FILE_DATA *File = FSW_FILE_FROM_FILE_HANDLE(This);
669
670 #if DEBUG_LEVEL
671 Print(L"fsw_efi_FileHandle_Close\n");
672 #endif
673
674 fsw_shandle_close(&File->shand);
675 FreePool(File);
676
677 return EFI_SUCCESS;
678 }
679
680 /**
681 * File Handle EFI protocol, Delete function. Calls through to Close
682 * and returns a warning because this driver is read-only.
683 */
684
685 EFI_STATUS EFIAPI fsw_efi_FileHandle_Delete(IN EFI_FILE *This)
686 {
687 EFI_STATUS Status;
688
689 Status = refit_call1_wrapper(This->Close, This);
690 if (Status == EFI_SUCCESS) {
691 // this driver is read-only
692 Status = EFI_WARN_DELETE_FAILURE;
693 }
694
695 return Status;
696 }
697
698 /**
699 * File Handle EFI protocol, Read function. Dispatches the call
700 * based on the kind of file handle.
701 */
702
703 EFI_STATUS EFIAPI fsw_efi_FileHandle_Read(IN EFI_FILE *This,
704 IN OUT UINTN *BufferSize,
705 OUT VOID *Buffer)
706 {
707 FSW_FILE_DATA *File = FSW_FILE_FROM_FILE_HANDLE(This);
708
709 if (File->Type == FSW_EFI_FILE_TYPE_FILE)
710 return fsw_efi_file_read(File, BufferSize, Buffer);
711 else if (File->Type == FSW_EFI_FILE_TYPE_DIR)
712 return fsw_efi_dir_read(File, BufferSize, Buffer);
713 return EFI_UNSUPPORTED;
714 }
715
716 /**
717 * File Handle EFI protocol, Write function. Returns unsupported status
718 * because this driver is read-only.
719 */
720
721 EFI_STATUS EFIAPI fsw_efi_FileHandle_Write(IN EFI_FILE *This,
722 IN OUT UINTN *BufferSize,
723 IN VOID *Buffer)
724 {
725 // this driver is read-only
726 return EFI_WRITE_PROTECTED;
727 }
728
729 /**
730 * File Handle EFI protocol, GetPosition function. Dispatches the call
731 * based on the kind of file handle.
732 */
733
734 EFI_STATUS EFIAPI fsw_efi_FileHandle_GetPosition(IN EFI_FILE *This,
735 OUT UINT64 *Position)
736 {
737 FSW_FILE_DATA *File = FSW_FILE_FROM_FILE_HANDLE(This);
738
739 if (File->Type == FSW_EFI_FILE_TYPE_FILE)
740 return fsw_efi_file_getpos(File, Position);
741 // not defined for directories
742 return EFI_UNSUPPORTED;
743 }
744
745 /**
746 * File Handle EFI protocol, SetPosition function. Dispatches the call
747 * based on the kind of file handle.
748 */
749
750 EFI_STATUS EFIAPI fsw_efi_FileHandle_SetPosition(IN EFI_FILE *This,
751 IN UINT64 Position)
752 {
753 FSW_FILE_DATA *File = FSW_FILE_FROM_FILE_HANDLE(This);
754
755 if (File->Type == FSW_EFI_FILE_TYPE_FILE)
756 return fsw_efi_file_setpos(File, Position);
757 else if (File->Type == FSW_EFI_FILE_TYPE_DIR)
758 return fsw_efi_dir_setpos(File, Position);
759 return EFI_UNSUPPORTED;
760 }
761
762 /**
763 * File Handle EFI protocol, GetInfo function. Dispatches to the common
764 * function implementing this.
765 */
766
767 EFI_STATUS EFIAPI fsw_efi_FileHandle_GetInfo(IN EFI_FILE *This,
768 IN EFI_GUID *InformationType,
769 IN OUT UINTN *BufferSize,
770 OUT VOID *Buffer)
771 {
772 FSW_FILE_DATA *File = FSW_FILE_FROM_FILE_HANDLE(This);
773
774 return fsw_efi_dnode_getinfo(File, InformationType, BufferSize, Buffer);
775 }
776
777 /**
778 * File Handle EFI protocol, SetInfo function. Returns unsupported status
779 * because this driver is read-only.
780 */
781
782 EFI_STATUS EFIAPI fsw_efi_FileHandle_SetInfo(IN EFI_FILE *This,
783 IN EFI_GUID *InformationType,
784 IN UINTN BufferSize,
785 IN VOID *Buffer)
786 {
787 // this driver is read-only
788 return EFI_WRITE_PROTECTED;
789 }
790
791 /**
792 * File Handle EFI protocol, Flush function. Returns unsupported status
793 * because this driver is read-only.
794 */
795
796 EFI_STATUS EFIAPI fsw_efi_FileHandle_Flush(IN EFI_FILE *This)
797 {
798 // this driver is read-only
799 return EFI_WRITE_PROTECTED;
800 }
801
802 /**
803 * Set up a file handle for a dnode. This function allocates a data structure
804 * for a file handle, opens a FSW shandle and populates the EFI_FILE structure
805 * with the interface functions.
806 */
807
808 EFI_STATUS fsw_efi_dnode_to_FileHandle(IN struct fsw_dnode *dno,
809 OUT EFI_FILE **NewFileHandle)
810 {
811 EFI_STATUS Status;
812 FSW_FILE_DATA *File;
813
814 // make sure the dnode has complete info
815 Status = fsw_efi_map_status(fsw_dnode_fill(dno), (FSW_VOLUME_DATA *)dno->vol->host_data);
816 if (EFI_ERROR(Status))
817 return Status;
818
819 // check type
820 if (dno->type != FSW_DNODE_TYPE_FILE && dno->type != FSW_DNODE_TYPE_DIR)
821 return EFI_UNSUPPORTED;
822
823 // allocate file structure
824 File = AllocateZeroPool(sizeof(FSW_FILE_DATA));
825 File->Signature = FSW_FILE_DATA_SIGNATURE;
826 if (dno->type == FSW_DNODE_TYPE_FILE)
827 File->Type = FSW_EFI_FILE_TYPE_FILE;
828 else if (dno->type == FSW_DNODE_TYPE_DIR)
829 File->Type = FSW_EFI_FILE_TYPE_DIR;
830
831 // open shandle
832 Status = fsw_efi_map_status(fsw_shandle_open(dno, &File->shand),
833 (FSW_VOLUME_DATA *)dno->vol->host_data);
834 if (EFI_ERROR(Status)) {
835 FreePool(File);
836 return Status;
837 }
838
839 // populate the file handle
840 File->FileHandle.Revision = EFI_FILE_HANDLE_REVISION;
841 File->FileHandle.Open = fsw_efi_FileHandle_Open;
842 File->FileHandle.Close = fsw_efi_FileHandle_Close;
843 File->FileHandle.Delete = fsw_efi_FileHandle_Delete;
844 File->FileHandle.Read = fsw_efi_FileHandle_Read;
845 File->FileHandle.Write = fsw_efi_FileHandle_Write;
846 File->FileHandle.GetPosition = fsw_efi_FileHandle_GetPosition;
847 File->FileHandle.SetPosition = fsw_efi_FileHandle_SetPosition;
848 File->FileHandle.GetInfo = fsw_efi_FileHandle_GetInfo;
849 File->FileHandle.SetInfo = fsw_efi_FileHandle_SetInfo;
850 File->FileHandle.Flush = fsw_efi_FileHandle_Flush;
851
852 *NewFileHandle = &File->FileHandle;
853 return EFI_SUCCESS;
854 }
855
856 /**
857 * Data read function for regular files. Calls through to fsw_shandle_read.
858 */
859
860 EFI_STATUS fsw_efi_file_read(IN FSW_FILE_DATA *File,
861 IN OUT UINTN *BufferSize,
862 OUT VOID *Buffer)
863 {
864 EFI_STATUS Status;
865 fsw_u32 buffer_size;
866
867 #if DEBUG_LEVEL
868 Print(L"fsw_efi_file_read %d bytes\n", *BufferSize);
869 #endif
870
871 buffer_size = (fsw_u32)*BufferSize;
872 Status = fsw_efi_map_status(fsw_shandle_read(&File->shand, &buffer_size, Buffer),
873 (FSW_VOLUME_DATA *)File->shand.dnode->vol->host_data);
874 *BufferSize = buffer_size;
875
876 return Status;
877 }
878
879 /**
880 * Get file position for regular files.
881 */
882
883 EFI_STATUS fsw_efi_file_getpos(IN FSW_FILE_DATA *File,
884 OUT UINT64 *Position)
885 {
886 *Position = File->shand.pos;
887 return EFI_SUCCESS;
888 }
889
890 /**
891 * Set file position for regular files. EFI specifies the all-ones value
892 * to be a special value for the end of the file.
893 */
894
895 EFI_STATUS fsw_efi_file_setpos(IN FSW_FILE_DATA *File, IN UINT64 Position)
896 {
897 if (Position == 0xFFFFFFFFFFFFFFFFULL)
898 File->shand.pos = File->shand.dnode->size;
899 else
900 File->shand.pos = Position;
901 return EFI_SUCCESS;
902 }
903
904 /**
905 * Open function used to open new file handles relative to a directory.
906 * In EFI, the "open file" function is implemented by directory file handles
907 * and is passed a relative or volume-absolute path to the file or directory
908 * to open. We use fsw_dnode_lookup_path to find the node plus an additional
909 * call to fsw_dnode_resolve because EFI has no concept of symbolic links.
910 */
911
912 EFI_STATUS fsw_efi_dir_open(IN FSW_FILE_DATA *File,
913 OUT EFI_FILE **NewHandle,
914 IN CHAR16 *FileName,
915 IN UINT64 OpenMode,
916 IN UINT64 Attributes)
917 {
918 EFI_STATUS Status;
919 FSW_VOLUME_DATA *Volume = (FSW_VOLUME_DATA *)File->shand.dnode->vol->host_data;
920 struct fsw_dnode *dno;
921 struct fsw_dnode *target_dno;
922 struct fsw_string lookup_path;
923
924 #if DEBUG_LEVEL
925 Print(L"fsw_efi_dir_open: '%s'\n", FileName);
926 #endif
927
928 if (OpenMode != EFI_FILE_MODE_READ)
929 return EFI_WRITE_PROTECTED;
930
931 lookup_path.type = FSW_STRING_TYPE_UTF16;
932 lookup_path.len = (int)StrLen(FileName);
933 lookup_path.size = lookup_path.len * sizeof(fsw_u16);
934 lookup_path.data = FileName;
935
936 // resolve the path (symlinks along the way are automatically resolved)
937 Status = fsw_efi_map_status(fsw_dnode_lookup_path(File->shand.dnode, &lookup_path, '\\', &dno), Volume);
938 if (EFI_ERROR(Status))
939 return Status;
940
941 // if the final node is a symlink, also resolve it
942 Status = fsw_efi_map_status(fsw_dnode_resolve(dno, &target_dno), Volume);
943 fsw_dnode_release(dno);
944 if (EFI_ERROR(Status))
945 return Status;
946 dno = target_dno;
947
948 // make a new EFI handle for the target dnode
949 Status = fsw_efi_dnode_to_FileHandle(dno, NewHandle);
950 fsw_dnode_release(dno);
951 return Status;
952 }
953
954 /**
955 * Read function for directories. A file handle read on a directory retrieves
956 * the next directory entry.
957 */
958
959 EFI_STATUS fsw_efi_dir_read(IN FSW_FILE_DATA *File,
960 IN OUT UINTN *BufferSize,
961 OUT VOID *Buffer)
962 {
963 EFI_STATUS Status;
964 FSW_VOLUME_DATA *Volume = (FSW_VOLUME_DATA *)File->shand.dnode->vol->host_data;
965 struct fsw_dnode *dno;
966
967 #if DEBUG_LEVEL
968 Print(L"fsw_efi_dir_read...\n");
969 #endif
970
971 // read the next entry
972 Status = fsw_efi_map_status(fsw_dnode_dir_read(&File->shand, &dno), Volume);
973 if (Status == EFI_NOT_FOUND) {
974 // end of directory
975 *BufferSize = 0;
976 #if DEBUG_LEVEL
977 Print(L"...no more entries\n");
978 #endif
979 return EFI_SUCCESS;
980 }
981 if (EFI_ERROR(Status))
982 return Status;
983
984 // get info into buffer
985 Status = fsw_efi_dnode_fill_FileInfo(Volume, dno, BufferSize, Buffer);
986 fsw_dnode_release(dno);
987 return Status;
988 }
989
990 /**
991 * Set file position for directories. The only allowed set position operation
992 * for directories is to rewind the directory completely by setting the
993 * position to zero.
994 */
995
996 EFI_STATUS fsw_efi_dir_setpos(IN FSW_FILE_DATA *File, IN UINT64 Position)
997 {
998 if (Position == 0) {
999 File->shand.pos = 0;
1000 return EFI_SUCCESS;
1001 } else {
1002 // directories can only rewind to the start
1003 return EFI_UNSUPPORTED;
1004 }
1005 }
1006
1007 /**
1008 * Get file or volume information. This function implements the GetInfo call
1009 * for all file handles. Control is dispatched according to the type of information
1010 * requested by the caller.
1011 */
1012
1013 EFI_STATUS fsw_efi_dnode_getinfo(IN FSW_FILE_DATA *File,
1014 IN EFI_GUID *InformationType,
1015 IN OUT UINTN *BufferSize,
1016 OUT VOID *Buffer)
1017 {
1018 EFI_STATUS Status;
1019 FSW_VOLUME_DATA *Volume = (FSW_VOLUME_DATA *)File->shand.dnode->vol->host_data;
1020 EFI_FILE_SYSTEM_INFO *FSInfo;
1021 UINTN RequiredSize;
1022 struct fsw_volume_stat vsb;
1023
1024
1025 if (CompareGuid(InformationType, &gEfiFileInfoGuid)) {
1026 #if DEBUG_LEVEL
1027 Print(L"fsw_efi_dnode_getinfo: FILE_INFO\n");
1028 #endif
1029
1030 Status = fsw_efi_dnode_fill_FileInfo(Volume, File->shand.dnode, BufferSize, Buffer);
1031
1032 } else if (CompareGuid(InformationType, &gEfiFileSystemInfoGuid)) {
1033 #if DEBUG_LEVEL
1034 Print(L"fsw_efi_dnode_getinfo: FILE_SYSTEM_INFO\n");
1035 #endif
1036
1037 // check buffer size
1038 RequiredSize = SIZE_OF_EFI_FILE_SYSTEM_INFO + fsw_efi_strsize(&Volume->vol->label);
1039 if (*BufferSize < RequiredSize) {
1040 *BufferSize = RequiredSize;
1041 return EFI_BUFFER_TOO_SMALL;
1042 }
1043
1044 // fill structure
1045 FSInfo = (EFI_FILE_SYSTEM_INFO *)Buffer;
1046 FSInfo->Size = RequiredSize;
1047 FSInfo->ReadOnly = TRUE;
1048 FSInfo->BlockSize = Volume->vol->log_blocksize;
1049 fsw_efi_strcpy(FSInfo->VolumeLabel, &Volume->vol->label);
1050
1051 // get the missing info from the fs driver
1052 ZeroMem(&vsb, sizeof(struct fsw_volume_stat));
1053 Status = fsw_efi_map_status(fsw_volume_stat(Volume->vol, &vsb), Volume);
1054 if (EFI_ERROR(Status))
1055 return Status;
1056 FSInfo->VolumeSize = vsb.total_bytes;
1057 FSInfo->FreeSpace = vsb.free_bytes;
1058
1059 // prepare for return
1060 *BufferSize = RequiredSize;
1061 Status = EFI_SUCCESS;
1062
1063 } else if (CompareGuid(InformationType, &gEfiFileSystemVolumeLabelInfoIdGuid)) {
1064 #if DEBUG_LEVEL
1065 Print(L"fsw_efi_dnode_getinfo: FILE_SYSTEM_VOLUME_LABEL\n");
1066 #endif
1067
1068 // check buffer size
1069 RequiredSize = SIZE_OF_EFI_FILE_SYSTEM_VOLUME_LABEL_INFO + fsw_efi_strsize(&Volume->vol->label);
1070 if (*BufferSize < RequiredSize) {
1071 *BufferSize = RequiredSize;
1072 return EFI_BUFFER_TOO_SMALL;
1073 }
1074
1075 // copy volume label
1076 fsw_efi_strcpy(((EFI_FILE_SYSTEM_VOLUME_LABEL_INFO *)Buffer)->VolumeLabel, &Volume->vol->label);
1077
1078 // prepare for return
1079 *BufferSize = RequiredSize;
1080 Status = EFI_SUCCESS;
1081
1082 } else {
1083 Status = EFI_UNSUPPORTED;
1084 }
1085
1086 return Status;
1087 }
1088
1089 /**
1090 * Time mapping callback for the fsw_dnode_stat call. This function converts
1091 * a Posix style timestamp into an EFI_TIME structure and writes it to the
1092 * appropriate member of the EFI_FILE_INFO structure that we're filling.
1093 */
1094
1095 void fsw_store_time_posix(struct fsw_dnode_stat *sb, int which, fsw_u32 posix_time)
1096 {
1097 EFI_FILE_INFO *FileInfo = (EFI_FILE_INFO *)sb->host_data;
1098
1099 if (which == FSW_DNODE_STAT_CTIME)
1100 fsw_efi_decode_time(&FileInfo->CreateTime, posix_time);
1101 else if (which == FSW_DNODE_STAT_MTIME)
1102 fsw_efi_decode_time(&FileInfo->ModificationTime, posix_time);
1103 else if (which == FSW_DNODE_STAT_ATIME)
1104 fsw_efi_decode_time(&FileInfo->LastAccessTime, posix_time);
1105 }
1106
1107 /**
1108 * Mode mapping callback for the fsw_dnode_stat call. This function looks at
1109 * the Posix mode passed by the file system driver and makes appropriate
1110 * adjustments to the EFI_FILE_INFO structure that we're filling.
1111 */
1112
1113 void fsw_store_attr_posix(struct fsw_dnode_stat *sb, fsw_u16 posix_mode)
1114 {
1115 EFI_FILE_INFO *FileInfo = (EFI_FILE_INFO *)sb->host_data;
1116
1117 if ((posix_mode & S_IWUSR) == 0)
1118 FileInfo->Attribute |= EFI_FILE_READ_ONLY;
1119 }
1120
1121 void fsw_store_attr_efi(struct fsw_dnode_stat *sb, fsw_u16 attr)
1122 {
1123 EFI_FILE_INFO *FileInfo = (EFI_FILE_INFO *)sb->host_data;
1124
1125 FileInfo->Attribute |= attr;
1126 }
1127
1128 /**
1129 * Common function to fill an EFI_FILE_INFO with information about a dnode.
1130 */
1131
1132 EFI_STATUS fsw_efi_dnode_fill_FileInfo(IN FSW_VOLUME_DATA *Volume,
1133 IN struct fsw_dnode *dno,
1134 IN OUT UINTN *BufferSize,
1135 OUT VOID *Buffer)
1136 {
1137 EFI_STATUS Status;
1138 EFI_FILE_INFO *FileInfo;
1139 UINTN RequiredSize;
1140 struct fsw_dnode_stat sb;
1141
1142 // make sure the dnode has complete info
1143 Status = fsw_efi_map_status(fsw_dnode_fill(dno), Volume);
1144 if (EFI_ERROR(Status))
1145 return Status;
1146
1147 // TODO: check/assert that the dno's name is in UTF16
1148
1149 // check buffer size
1150 RequiredSize = SIZE_OF_EFI_FILE_INFO + fsw_efi_strsize(&dno->name);
1151 if (*BufferSize < RequiredSize) {
1152 // TODO: wind back the directory in this case
1153
1154 #if DEBUG_LEVEL
1155 Print(L"...BUFFER TOO SMALL\n");
1156 #endif
1157 *BufferSize = RequiredSize;
1158 return EFI_BUFFER_TOO_SMALL;
1159 }
1160
1161 // fill structure
1162 ZeroMem(Buffer, RequiredSize);
1163 FileInfo = (EFI_FILE_INFO *)Buffer;
1164 FileInfo->Size = RequiredSize;
1165 FileInfo->FileSize = dno->size;
1166 FileInfo->Attribute = 0;
1167 if (dno->type == FSW_DNODE_TYPE_DIR)
1168 FileInfo->Attribute |= EFI_FILE_DIRECTORY;
1169 fsw_efi_strcpy(FileInfo->FileName, &dno->name);
1170
1171 // get the missing info from the fs driver
1172 ZeroMem(&sb, sizeof(struct fsw_dnode_stat));
1173 sb.host_data = FileInfo;
1174 Status = fsw_efi_map_status(fsw_dnode_stat(dno, &sb), Volume);
1175 if (EFI_ERROR(Status))
1176 return Status;
1177 FileInfo->PhysicalSize = sb.used_bytes;
1178
1179 // prepare for return
1180 *BufferSize = RequiredSize;
1181 #if DEBUG_LEVEL
1182 Print(L"...returning '%s'\n", FileInfo->FileName);
1183 #endif
1184 return EFI_SUCCESS;
1185 }
1186
1187 // EOF