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