Browse Source

[efi] Install our own disk I/O protocol and claim exclusive use of it

The EFI FAT filesystem driver has a bug: if a block device contains no
FAT filesystem but does have an EFI_SIMPLE_FILE_SYSTEM_PROTOCOL
instance, the FAT driver will assume that it must have previously
installed the EFI_SIMPLE_FILE_SYSTEM_PROTOCOL.  This causes the FAT
driver to claim control of our device, and to refuse to stop driving
it, which prevents us from later uninstalling correctly.

Work around this bug by opening the disk I/O protocol ourselves,
thereby preventing the FAT driver from opening it.

Note that the alternative approach of opening the block I/O protocol
(and thereby in theory preventing DiskIo from attaching to the block
I/O protocol) causes an endless loop of calls to our DRIVER_STOP
method when starting the EFI shell.  I have no idea why this is.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 10 years ago
parent
commit
8a380987c1
2 changed files with 223 additions and 13 deletions
  1. 119
    0
      src/include/ipxe/efi/Protocol/DiskIo.h
  2. 104
    13
      src/interface/efi/efi_file.c

+ 119
- 0
src/include/ipxe/efi/Protocol/DiskIo.h View File

1
+/** @file
2
+  Disk IO protocol as defined in the UEFI 2.0 specification.
3
+
4
+  The Disk IO protocol is used to convert block oriented devices into byte
5
+  oriented devices. The Disk IO protocol is intended to layer on top of the
6
+  Block IO protocol.
7
+
8
+  Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
9
+  This program and the accompanying materials
10
+  are licensed and made available under the terms and conditions of the BSD License
11
+  which accompanies this distribution.  The full text of the license may be found at
12
+  http://opensource.org/licenses/bsd-license.php
13
+
14
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16
+
17
+**/
18
+
19
+#ifndef __DISK_IO_H__
20
+#define __DISK_IO_H__
21
+
22
+FILE_LICENCE ( BSD3 );
23
+
24
+#define EFI_DISK_IO_PROTOCOL_GUID \
25
+  { \
26
+    0xce345171, 0xba0b, 0x11d2, {0x8e, 0x4f, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \
27
+  }
28
+
29
+///
30
+/// Protocol GUID name defined in EFI1.1.
31
+///
32
+#define DISK_IO_PROTOCOL  EFI_DISK_IO_PROTOCOL_GUID
33
+
34
+typedef struct _EFI_DISK_IO_PROTOCOL EFI_DISK_IO_PROTOCOL;
35
+
36
+///
37
+/// Protocol defined in EFI1.1.
38
+///
39
+typedef EFI_DISK_IO_PROTOCOL  EFI_DISK_IO;
40
+
41
+/**
42
+  Read BufferSize bytes from Offset into Buffer.
43
+
44
+  @param  This                  Protocol instance pointer.
45
+  @param  MediaId               Id of the media, changes every time the media is replaced.
46
+  @param  Offset                The starting byte offset to read from
47
+  @param  BufferSize            Size of Buffer
48
+  @param  Buffer                Buffer containing read data
49
+
50
+  @retval EFI_SUCCESS           The data was read correctly from the device.
51
+  @retval EFI_DEVICE_ERROR      The device reported an error while performing the read.
52
+  @retval EFI_NO_MEDIA          There is no media in the device.
53
+  @retval EFI_MEDIA_CHNAGED     The MediaId does not matched the current device.
54
+  @retval EFI_INVALID_PARAMETER The read request contains device addresses that are not
55
+                                valid for the device.
56
+
57
+**/
58
+typedef
59
+EFI_STATUS
60
+(EFIAPI *EFI_DISK_READ)(
61
+  IN EFI_DISK_IO_PROTOCOL         *This,
62
+  IN UINT32                       MediaId,
63
+  IN UINT64                       Offset,
64
+  IN UINTN                        BufferSize,
65
+  OUT VOID                        *Buffer
66
+  );
67
+
68
+/**
69
+  Writes a specified number of bytes to a device.
70
+
71
+  @param  This       Indicates a pointer to the calling context.
72
+  @param  MediaId    ID of the medium to be written.
73
+  @param  Offset     The starting byte offset on the logical block I/O device to write.
74
+  @param  BufferSize The size in bytes of Buffer. The number of bytes to write to the device.
75
+  @param  Buffer     A pointer to the buffer containing the data to be written.
76
+
77
+  @retval EFI_SUCCESS           The data was written correctly to the device.
78
+  @retval EFI_WRITE_PROTECTED   The device can not be written to.
79
+  @retval EFI_DEVICE_ERROR      The device reported an error while performing the write.
80
+  @retval EFI_NO_MEDIA          There is no media in the device.
81
+  @retval EFI_MEDIA_CHNAGED     The MediaId does not matched the current device.
82
+  @retval EFI_INVALID_PARAMETER The write request contains device addresses that are not
83
+                                 valid for the device.
84
+
85
+**/
86
+typedef
87
+EFI_STATUS
88
+(EFIAPI *EFI_DISK_WRITE)(
89
+  IN EFI_DISK_IO_PROTOCOL         *This,
90
+  IN UINT32                       MediaId,
91
+  IN UINT64                       Offset,
92
+  IN UINTN                        BufferSize,
93
+  IN VOID                         *Buffer
94
+  );
95
+
96
+#define EFI_DISK_IO_PROTOCOL_REVISION 0x00010000
97
+
98
+///
99
+/// Revision defined in EFI1.1
100
+///
101
+#define EFI_DISK_IO_INTERFACE_REVISION  EFI_DISK_IO_PROTOCOL_REVISION
102
+
103
+///
104
+/// This protocol is used to abstract Block I/O interfaces.
105
+///
106
+struct _EFI_DISK_IO_PROTOCOL {
107
+  ///
108
+  /// The revision to which the disk I/O interface adheres. All future
109
+  /// revisions must be backwards compatible. If a future version is not
110
+  /// backwards compatible, it is not the same GUID.
111
+  ///
112
+  UINT64          Revision;
113
+  EFI_DISK_READ   ReadDisk;
114
+  EFI_DISK_WRITE  WriteDisk;
115
+};
116
+
117
+extern EFI_GUID gEfiDiskIoProtocolGuid;
118
+
119
+#endif

+ 104
- 13
src/interface/efi/efi_file.c View File

36
 #include <ipxe/efi/efi.h>
36
 #include <ipxe/efi/efi.h>
37
 #include <ipxe/efi/Protocol/SimpleFileSystem.h>
37
 #include <ipxe/efi/Protocol/SimpleFileSystem.h>
38
 #include <ipxe/efi/Protocol/BlockIo.h>
38
 #include <ipxe/efi/Protocol/BlockIo.h>
39
+#include <ipxe/efi/Protocol/DiskIo.h>
39
 #include <ipxe/efi/Guid/FileInfo.h>
40
 #include <ipxe/efi/Guid/FileInfo.h>
40
 #include <ipxe/efi/Guid/FileSystemInfo.h>
41
 #include <ipxe/efi/Guid/FileSystemInfo.h>
41
 #include <ipxe/efi/efi_strings.h>
42
 #include <ipxe/efi/efi_strings.h>
55
 static EFI_GUID efi_block_io_protocol_guid
56
 static EFI_GUID efi_block_io_protocol_guid
56
 	= EFI_BLOCK_IO_PROTOCOL_GUID;
57
 	= EFI_BLOCK_IO_PROTOCOL_GUID;
57
 
58
 
59
+/** EFI disk I/O protocol GUID */
60
+static EFI_GUID efi_disk_io_protocol_guid
61
+	= EFI_DISK_IO_PROTOCOL_GUID;
62
+
58
 /** EFI media ID */
63
 /** EFI media ID */
59
 #define EFI_MEDIA_ID_MAGIC 0x69505845
64
 #define EFI_MEDIA_ID_MAGIC 0x69505845
60
 
65
 
506
 efi_block_io_read_blocks ( EFI_BLOCK_IO_PROTOCOL *this __unused,
511
 efi_block_io_read_blocks ( EFI_BLOCK_IO_PROTOCOL *this __unused,
507
 			   UINT32 MediaId __unused, EFI_LBA lba __unused,
512
 			   UINT32 MediaId __unused, EFI_LBA lba __unused,
508
 			   UINTN len __unused, VOID *data __unused ) {
513
 			   UINTN len __unused, VOID *data __unused ) {
509
-	return EFI_DEVICE_ERROR;
514
+	return EFI_NO_MEDIA;
510
 }
515
 }
511
 
516
 
512
 /** Dummy block I/O write */
517
 /** Dummy block I/O write */
514
 efi_block_io_write_blocks ( EFI_BLOCK_IO_PROTOCOL *this __unused,
519
 efi_block_io_write_blocks ( EFI_BLOCK_IO_PROTOCOL *this __unused,
515
 			    UINT32 MediaId __unused, EFI_LBA lba __unused,
520
 			    UINT32 MediaId __unused, EFI_LBA lba __unused,
516
 			    UINTN len __unused, VOID *data __unused ) {
521
 			    UINTN len __unused, VOID *data __unused ) {
517
-	return EFI_DEVICE_ERROR;
522
+	return EFI_NO_MEDIA;
518
 }
523
 }
519
 
524
 
520
 /** Dummy block I/O flush */
525
 /** Dummy block I/O flush */
541
 	.FlushBlocks = efi_block_io_flush_blocks,
546
 	.FlushBlocks = efi_block_io_flush_blocks,
542
 };
547
 };
543
 
548
 
549
+/** Dummy disk I/O read */
550
+static EFI_STATUS EFIAPI
551
+efi_disk_io_read_disk ( EFI_DISK_IO_PROTOCOL *this __unused,
552
+			UINT32 MediaId __unused, UINT64 offset __unused,
553
+			UINTN len __unused, VOID *data __unused ) {
554
+	return EFI_NO_MEDIA;
555
+}
556
+
557
+/** Dummy disk I/O write */
558
+static EFI_STATUS EFIAPI
559
+efi_disk_io_write_disk ( EFI_DISK_IO_PROTOCOL *this __unused,
560
+			 UINT32 MediaId __unused, UINT64 offset __unused,
561
+			 UINTN len __unused, VOID *data __unused ) {
562
+	return EFI_NO_MEDIA;
563
+}
564
+
565
+/** Dummy EFI disk I/O protocol */
566
+static EFI_DISK_IO_PROTOCOL efi_disk_io_protocol = {
567
+	.Revision = EFI_DISK_IO_PROTOCOL_REVISION,
568
+	.ReadDisk = efi_disk_io_read_disk,
569
+	.WriteDisk = efi_disk_io_write_disk,
570
+};
571
+
544
 /**
572
 /**
545
  * Install EFI simple file system protocol
573
  * Install EFI simple file system protocol
546
  *
574
  *
549
  */
577
  */
550
 int efi_file_install ( EFI_HANDLE *handle ) {
578
 int efi_file_install ( EFI_HANDLE *handle ) {
551
 	EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
579
 	EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
580
+	union {
581
+		EFI_DISK_IO_PROTOCOL *diskio;
582
+		void *interface;
583
+	} diskio;
552
 	EFI_STATUS efirc;
584
 	EFI_STATUS efirc;
553
 	int rc;
585
 	int rc;
554
 
586
 
555
-	/* Install the simple file system protocol and the block I/O
556
-	 * protocol.  We don't have a block device, but large parts of
557
-	 * the EDK2 codebase make the assumption that file systems are
558
-	 * normally attached to block devices, and so we create a
559
-	 * dummy block device on the same handle just to keep things
560
-	 * looking normal.
587
+	/* Install the simple file system protocol, block I/O
588
+	 * protocol, and disk I/O protocol.  We don't have a block
589
+	 * device, but large parts of the EDK2 codebase make the
590
+	 * assumption that file systems are normally attached to block
591
+	 * devices, and so we create a dummy block device on the same
592
+	 * handle just to keep things looking normal.
561
 	 */
593
 	 */
562
 	if ( ( efirc = bs->InstallMultipleProtocolInterfaces (
594
 	if ( ( efirc = bs->InstallMultipleProtocolInterfaces (
563
 			handle,
595
 			handle,
564
 			&efi_block_io_protocol_guid,
596
 			&efi_block_io_protocol_guid,
565
 			&efi_block_io_protocol,
597
 			&efi_block_io_protocol,
598
+			&efi_disk_io_protocol_guid,
599
+			&efi_disk_io_protocol,
566
 			&efi_simple_file_system_protocol_guid,
600
 			&efi_simple_file_system_protocol_guid,
567
 			&efi_simple_file_system_protocol, NULL ) ) != 0 ) {
601
 			&efi_simple_file_system_protocol, NULL ) ) != 0 ) {
568
 		rc = -EEFI ( efirc );
602
 		rc = -EEFI ( efirc );
569
-		DBGC ( handle, "Could not install simple file system protocol: "
570
-		       "%s\n", strerror ( rc ) );
571
-		return rc;
603
+		DBGC ( handle, "Could not install simple file system "
604
+		       "protocols: %s\n", strerror ( rc ) );
605
+		goto err_install;
606
+	}
607
+
608
+	/* The FAT filesystem driver has a bug: if a block device
609
+	 * contains no FAT filesystem but does have an
610
+	 * EFI_SIMPLE_FILE_SYSTEM_PROTOCOL instance, the FAT driver
611
+	 * will assume that it must have previously installed the
612
+	 * EFI_SIMPLE_FILE_SYSTEM_PROTOCOL.  This causes the FAT
613
+	 * driver to claim control of our device, and to refuse to
614
+	 * stop driving it, which prevents us from later uninstalling
615
+	 * correctly.
616
+	 *
617
+	 * Work around this bug by opening the disk I/O protocol
618
+	 * ourselves, thereby preventing the FAT driver from opening
619
+	 * it.
620
+	 *
621
+	 * Note that the alternative approach of opening the block I/O
622
+	 * protocol (and thereby in theory preventing DiskIo from
623
+	 * attaching to the block I/O protocol) causes an endless loop
624
+	 * of calls to our DRIVER_STOP method when starting the EFI
625
+	 * shell.  I have no idea why this is.
626
+	 */
627
+	if ( ( efirc = bs->OpenProtocol ( *handle, &efi_disk_io_protocol_guid,
628
+					  &diskio.interface, efi_image_handle,
629
+					  *handle,
630
+					  EFI_OPEN_PROTOCOL_BY_DRIVER ) ) != 0){
631
+		rc = -EEFI ( efirc );
632
+		DBGC ( handle, "Could not open disk I/O protocol: %s\n",
633
+		       strerror ( rc ) );
634
+		goto err_open;
572
 	}
635
 	}
636
+	assert ( diskio.diskio == &efi_disk_io_protocol );
573
 
637
 
574
 	return 0;
638
 	return 0;
639
+
640
+	bs->CloseProtocol ( *handle, &efi_disk_io_protocol_guid,
641
+			    efi_image_handle, *handle );
642
+ err_open:
643
+	bs->UninstallMultipleProtocolInterfaces (
644
+			*handle,
645
+			&efi_simple_file_system_protocol_guid,
646
+			&efi_simple_file_system_protocol,
647
+			&efi_disk_io_protocol_guid,
648
+			&efi_disk_io_protocol,
649
+			&efi_block_io_protocol_guid,
650
+			&efi_block_io_protocol, NULL );
651
+ err_install:
652
+	return rc;
575
 }
653
 }
576
 
654
 
577
 /**
655
 /**
581
  */
659
  */
582
 void efi_file_uninstall ( EFI_HANDLE handle ) {
660
 void efi_file_uninstall ( EFI_HANDLE handle ) {
583
 	EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
661
 	EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
662
+	EFI_STATUS efirc;
663
+	int rc;
664
+
665
+	/* Close our own disk I/O protocol */
666
+	bs->CloseProtocol ( handle, &efi_disk_io_protocol_guid,
667
+			    efi_image_handle, handle );
584
 
668
 
585
 	/* We must install the file system protocol first, since
669
 	/* We must install the file system protocol first, since
586
 	 * otherwise the EDK2 code will attempt to helpfully uninstall
670
 	 * otherwise the EDK2 code will attempt to helpfully uninstall
587
 	 * it when the block I/O protocol is uninstalled, leading to a
671
 	 * it when the block I/O protocol is uninstalled, leading to a
588
 	 * system lock-up.
672
 	 * system lock-up.
589
 	 */
673
 	 */
590
-	bs->UninstallMultipleProtocolInterfaces (
674
+	if ( ( efirc = bs->UninstallMultipleProtocolInterfaces (
591
 			handle,
675
 			handle,
592
 			&efi_simple_file_system_protocol_guid,
676
 			&efi_simple_file_system_protocol_guid,
593
 			&efi_simple_file_system_protocol,
677
 			&efi_simple_file_system_protocol,
678
+			&efi_disk_io_protocol_guid,
679
+			&efi_disk_io_protocol,
594
 			&efi_block_io_protocol_guid,
680
 			&efi_block_io_protocol_guid,
595
-			&efi_block_io_protocol, NULL );
681
+			&efi_block_io_protocol, NULL ) ) != 0 ) {
682
+		rc = -EEFI ( efirc );
683
+		DBGC ( handle, "Could not uninstall simple file system "
684
+		       "protocols: %s\n", strerror ( rc ) );
685
+		/* Oh dear */
686
+	}
596
 }
687
 }

Loading…
Cancel
Save