TianoCore EDK2 master
Loading...
Searching...
No Matches
Fvb.c File Reference

Go to the source code of this file.

Macros

#define EFI_AUTHENTICATED_VARIABLE_GUID   { 0xaaf32c78, 0x947b, 0x439a, { 0xa1, 0x80, 0x2e, 0x14, 0x4e, 0xc3, 0x77, 0x92 } }
 

Functions

VOID EFIAPI FvbVirtualAddressChangeEvent (IN EFI_EVENT Event, IN VOID *Context)
 
EFI_STATUS EFIAPI FvbProtocolGetPhysicalAddress (IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, OUT EFI_PHYSICAL_ADDRESS *Address)
 
EFI_STATUS EFIAPI FvbProtocolGetBlockSize (IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, IN EFI_LBA Lba, OUT UINTN *BlockSize, OUT UINTN *NumberOfBlocks)
 
EFI_STATUS EFIAPI FvbProtocolGetAttributes (IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, OUT EFI_FVB_ATTRIBUTES_2 *Attributes)
 
EFI_STATUS EFIAPI FvbProtocolSetAttributes (IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, IN OUT EFI_FVB_ATTRIBUTES_2 *Attributes)
 
EFI_STATUS EFIAPI FvbProtocolEraseBlocks (IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This,...)
 
EFI_STATUS EFIAPI FvbProtocolWrite (IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, IN EFI_LBA Lba, IN UINTN Offset, IN OUT UINTN *NumBytes, IN UINT8 *Buffer)
 
EFI_STATUS EFIAPI FvbProtocolRead (IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL *This, IN EFI_LBA Lba, IN UINTN Offset, IN OUT UINTN *NumBytes, IN OUT UINT8 *Buffer)
 
EFI_STATUS ValidateFvHeader (IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader)
 
VOID InitializeFvAndVariableStoreHeaders (IN VOID *Ptr)
 
EFI_STATUS EFIAPI FvbInitialize (IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable)
 

Variables

EFI_EVENT mEmuVarsFvbAddrChangeEvent = NULL
 
EFI_FW_VOL_BLOCK_DEVICE mEmuVarsFvb
 

Detailed Description

Firmware Block Services to support emulating non-volatile variables by pretending that a memory buffer is storage for the NV variables.

Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file Fvb.c.

Macro Definition Documentation

◆ EFI_AUTHENTICATED_VARIABLE_GUID

#define EFI_AUTHENTICATED_VARIABLE_GUID   { 0xaaf32c78, 0x947b, 0x439a, { 0xa1, 0x80, 0x2e, 0x14, 0x4e, 0xc3, 0x77, 0x92 } }

Definition at line 31 of file Fvb.c.

Function Documentation

◆ FvbInitialize()

EFI_STATUS EFIAPI FvbInitialize ( IN EFI_HANDLE  ImageHandle,
IN EFI_SYSTEM_TABLE SystemTable 
)

Main entry point.

Parameters
[in]ImageHandleThe firmware allocated handle for the EFI image.
[in]SystemTableA pointer to the EFI System Table.
Return values
EFI_SUCCESSSuccessfully initialized.

Definition at line 708 of file Fvb.c.

◆ FvbProtocolEraseBlocks()

EFI_STATUS EFIAPI FvbProtocolEraseBlocks ( IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL This,
  ... 
)

Erases and initializes a firmware volume block.

The EraseBlocks() function erases one or more blocks as denoted by the variable argument list. The entire parameter list of blocks must be verified before erasing any blocks. If a block is requested that does not exist within the associated firmware volume (it has a larger index than the last block of the firmware volume), the EraseBlocks() function must return the status code EFI_INVALID_PARAMETER without modifying the contents of the firmware volume. Implementations should be mindful that the firmware volume might be in the WriteDisabled state. If it is in this state, the EraseBlocks() function must return the status code EFI_ACCESS_DENIED without modifying the contents of the firmware volume. All calls to EraseBlocks() must be fully flushed to the hardware before the EraseBlocks() service returns.

Parameters
ThisIndicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
...The variable argument list is a list of tuples. Each tuple describes a range of LBAs to erase and consists of the following:
  • An EFI_LBA that indicates the starting LBA
  • A UINTN that indicates the number of blocks to erase

The list is terminated with an EFI_LBA_LIST_TERMINATOR. For example, the following indicates that two ranges of blocks (5-7 and 10-11) are to be erased: EraseBlocks (This, 5, 3, 10, 2, EFI_LBA_LIST_TERMINATOR);

Return values
EFI_SUCCESSThe erase request was successfully completed.
EFI_ACCESS_DENIEDThe firmware volume is in the WriteDisabled state.
EFI_DEVICE_ERRORThe block device is not functioning correctly and could not be written. The firmware device may have been partially erased.
EFI_INVALID_PARAMETEROne or more of the LBAs listed in the variable argument list do not exist in the firmware volume.

Definition at line 307 of file Fvb.c.

◆ FvbProtocolGetAttributes()

EFI_STATUS EFIAPI FvbProtocolGetAttributes ( IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL This,
OUT EFI_FVB_ATTRIBUTES_2 Attributes 
)

The GetAttributes() function retrieves the attributes and current settings of the block. Status Codes Returned

Parameters
ThisIndicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
AttributesPointer to EFI_FVB_ATTRIBUTES_2 in which the attributes and current settings are returned. Type EFI_FVB_ATTRIBUTES_2 is defined in EFI_FIRMWARE_VOLUME_HEADER.
Return values
EFI_SUCCESSThe firmware volume attributes were returned.

Definition at line 208 of file Fvb.c.

◆ FvbProtocolGetBlockSize()

EFI_STATUS EFIAPI FvbProtocolGetBlockSize ( IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL This,
IN EFI_LBA  Lba,
OUT UINTN BlockSize,
OUT UINTN NumberOfBlocks 
)

The GetBlockSize() function retrieves the size of the requested block. It also returns the number of additional blocks with the identical size. The GetBlockSize() function is used to retrieve the block map (see EFI_FIRMWARE_VOLUME_HEADER).

Parameters
ThisIndicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
LbaIndicates the block for which to return the size.
BlockSizePointer to a caller-allocated UINTN in which the size of the block is returned.
NumberOfBlocksPointer to a caller-allocated UINTN in which the number of consecutive blocks, starting with Lba, is returned. All blocks in this range have a size of BlockSize.
Return values
EFI_SUCCESSThe firmware volume base address is returned.
EFI_INVALID_PARAMETERThe requested LBA is out of range.

Definition at line 170 of file Fvb.c.

◆ FvbProtocolGetPhysicalAddress()

EFI_STATUS EFIAPI FvbProtocolGetPhysicalAddress ( IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL This,
OUT EFI_PHYSICAL_ADDRESS Address 
)

The GetPhysicalAddress() function retrieves the base address of a memory-mapped firmware volume. This function should be called only for memory-mapped firmware volumes.

Parameters
ThisIndicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
AddressPointer to a caller-allocated EFI_PHYSICAL_ADDRESS that, on successful return from GetPhysicalAddress(), contains the base address of the firmware volume.
Return values
EFI_SUCCESSThe firmware volume base address is returned.
EFI_NOT_SUPPORTEDThe firmware volume is not memory mapped.

Definition at line 128 of file Fvb.c.

◆ FvbProtocolRead()

EFI_STATUS EFIAPI FvbProtocolRead ( IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL This,
IN EFI_LBA  Lba,
IN UINTN  Offset,
IN OUT UINTN NumBytes,
IN OUT UINT8 *  Buffer 
)

Reads the specified number of bytes into a buffer from the specified block.

The Read() function reads the requested number of bytes from the requested block and stores them in the provided buffer. Implementations should be mindful that the firmware volume might be in the ReadDisabled state. If it is in this state, the Read() function must return the status code EFI_ACCESS_DENIED without modifying the contents of the buffer. The Read() function must also prevent spanning block boundaries. If a read is requested that would span a block boundary, the read must read up to the boundary but not beyond. The output parameter NumBytes must be set to correctly indicate the number of bytes actually read. The caller must be aware that a read may be partially completed.

Parameters
ThisIndicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
LbaThe starting logical block index from which to read.
OffsetOffset into the block at which to begin reading.
NumBytesPointer to a UINTN. At entry, *NumBytes contains the total size of the buffer. At exit, *NumBytes contains the total number of bytes read.
BufferPointer to a caller-allocated buffer that will be used to hold the data that is read.
Return values
EFI_SUCCESSThe firmware volume was read successfully and contents are in Buffer.
EFI_BAD_BUFFER_SIZERead attempted across an LBA boundary. On output, NumBytes contains the total number of bytes returned in Buffer.
EFI_ACCESS_DENIEDThe firmware volume is in the ReadDisabled state.
EFI_DEVICE_ERRORThe block device is not functioning correctly and could not be read.

Definition at line 519 of file Fvb.c.

◆ FvbProtocolSetAttributes()

EFI_STATUS EFIAPI FvbProtocolSetAttributes ( IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL This,
IN OUT EFI_FVB_ATTRIBUTES_2 Attributes 
)

The SetAttributes() function sets configurable firmware volume attributes and returns the new settings of the firmware volume.

Parameters
ThisIndicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
AttributesOn input, Attributes is a pointer to EFI_FVB_ATTRIBUTES_2 that contains the desired firmware volume settings. On successful return, it contains the new settings of the firmware volume. Type EFI_FVB_ATTRIBUTES_2 is defined in EFI_FIRMWARE_VOLUME_HEADER.
Return values
EFI_SUCCESSThe firmware volume attributes were returned.
EFI_INVALID_PARAMETERThe attributes requested are in conflict with the capabilities as declared in the firmware volume header.

Definition at line 249 of file Fvb.c.

◆ FvbProtocolWrite()

EFI_STATUS EFIAPI FvbProtocolWrite ( IN CONST EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL This,
IN EFI_LBA  Lba,
IN UINTN  Offset,
IN OUT UINTN NumBytes,
IN UINT8 *  Buffer 
)

Writes the specified number of bytes from the input buffer to the block.

The Write() function writes the specified number of bytes from the provided buffer to the specified block and offset. If the firmware volume is sticky write, the caller must ensure that all the bits of the specified range to write are in the EFI_FVB_ERASE_POLARITY state before calling the Write() function, or else the result will be unpredictable. This unpredictability arises because, for a sticky-write firmware volume, a write may negate a bit in the EFI_FVB_ERASE_POLARITY state but cannot flip it back again. In general, before calling the Write() function, the caller should call the EraseBlocks() function first to erase the specified block to write. A block erase cycle will transition bits from the (NOT)EFI_FVB_ERASE_POLARITY state back to the EFI_FVB_ERASE_POLARITY state. Implementations should be mindful that the firmware volume might be in the WriteDisabled state. If it is in this state, the Write() function must return the status code EFI_ACCESS_DENIED without modifying the contents of the firmware volume. The Write() function must also prevent spanning block boundaries. If a write is requested that spans a block boundary, the write must store up to the boundary but not beyond. The output parameter NumBytes must be set to correctly indicate the number of bytes actually written. The caller must be aware that a write may be partially completed. All writes, partial or otherwise, must be fully flushed to the hardware before the Write() service returns.

Parameters
ThisIndicates the EFI_FIRMWARE_VOLUME_BLOCK2_PROTOCOL instance.
LbaThe starting logical block index to write to.
OffsetOffset into the block at which to begin writing.
NumBytesPointer to a UINTN. At entry, *NumBytes contains the total size of the buffer. At exit, *NumBytes contains the total number of bytes actually written.
BufferPointer to a caller-allocated buffer that contains the source for the write.
Return values
EFI_SUCCESSThe firmware volume was written successfully.
EFI_BAD_BUFFER_SIZEThe write was attempted across an LBA boundary. On output, NumBytes contains the total number of bytes actually written.
EFI_ACCESS_DENIEDThe firmware volume is in the WriteDisabled state.
EFI_DEVICE_ERRORThe block device is malfunctioning and could not be written.

Definition at line 435 of file Fvb.c.

◆ FvbVirtualAddressChangeEvent()

VOID EFIAPI FvbVirtualAddressChangeEvent ( IN EFI_EVENT  Event,
IN VOID *  Context 
)

Notification function of EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE.

This is a notification function registered on EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event. It converts pointer to new virtual address.

Parameters
EventEvent whose notification function is being invoked.
ContextPointer to the notification function's context.

Definition at line 97 of file Fvb.c.

◆ InitializeFvAndVariableStoreHeaders()

VOID InitializeFvAndVariableStoreHeaders ( IN VOID *  Ptr)

Initializes the FV Header and Variable Store Header to support variable operations.

Parameters
[in]Ptr- Location to initialize the headers

Definition at line 606 of file Fvb.c.

◆ ValidateFvHeader()

EFI_STATUS ValidateFvHeader ( IN EFI_FIRMWARE_VOLUME_HEADER FwVolHeader)

Check the integrity of firmware volume header.

Parameters
[in]FwVolHeader- A pointer to a firmware volume header
Return values
EFI_SUCCESS- The firmware volume is consistent
EFI_NOT_FOUND- The firmware volume has been corrupted.

Definition at line 564 of file Fvb.c.

Variable Documentation

◆ mEmuVarsFvb

Definition at line 45 of file Fvb.c.

◆ mEmuVarsFvbAddrChangeEvent

EFI_EVENT mEmuVarsFvbAddrChangeEvent = NULL

Definition at line 39 of file Fvb.c.