System Management BIOS

From OSDev Wiki
(Redirected fromSMBIOS)
Jump to navigationJump to search

SMBIOS (System ManagementBIOS) is a standard developed byDMTF whose purpose is to deliver information about the hardware, by relying on the system firmware. Once booted, SMBIOS will let the OS access a table that contains a series of entries with various hardware information, separated in different structures of variable length.

It was first designed for Intel, and released in 1995. Nowadays it supports most desktop architectures, and its last specification was published the 21 of July, 2023.

Contents

Entry Point Structure

SMBIOS provides a searchable (or querryable) structure called Entry Point Structure (or EPS) that contains a pointer to the SMBIOS Structure Table and some additional information, like its length, version, or number of structures.

Format

32-bit Entry Point Structure Format
OffsetNameSize
0x00Anchor String4 BYTEs
0x04Entry Point ChecksumBYTE
0x05Entry Point LenghtBYTE
0x06SMBIOS Major VersionBYTE
0x07SMBIOS Minor VersionBYTE
0x08SMBIOS Structure Maximum SizeWORD
0x0AEntry Point RevisionBYTE
0x0BFormatted Area5 BYTEs
0x10Intermediate Anchor String5 BYTEs
0x15Intermediate ChecksumBYTE
0x16Structure Table LengthWORD
0x18Structure Table AddressDWORD
0x1CNumber of StructuresWORD
0x1EBCD RevisionBYTE
64-bit Entry Point Structure Format
OffsetNameSize
0x00Anchor String5 BYTEs
0x05Entry Point ChecksumBYTE
0x06Entry Point LenghtBYTE
0x07SMBIOS Major VersionBYTE
0x08SMBIOS Minor VersionBYTE
0x09SMBIOS DocrevBYTE
0x0AEntry Point RevisionBYTE
0x0BReservedBYTE
0x0CStructure Table Maximum SizeDWORD
0x10Structure Table AdressQWORD

Locating the entry point structure

Non-UEFI systems

Under systems without UEFI, the Entry Point Structure is located somewhere in physical memory from address 0x000F0000 to 0x00FFFFF, with a 16 byte alignment.

  • In 32-bit architectures, the SMBIOS EPS first contains (with offset 0) a string with the value "_SM_". This is what will help us search the location of the EPS.
  • In 64-bit architectures, as in 32-bit, it first contains a string, but with the value "_SM3_" (The 3 stands for SMBIOS 3, which is the version in 64-bit machines).

This example C code searches the entry point in a 64-bit architecture. All it does is iterate for every 16-byte aligned memory addresses (from 0x000F0000 to 0x000FFFFF) and comparing 4 bytes from that address with the string "_SM3_". To acomplish that, it is needed to verify the checksum value (add all bytes and see if the lowest 8 bits of the result are zero):

/* Start address */char*eps=0x000F0000;intlength,i;uint8_tchecksum=0;while(eps<=(char*)0x000FFFFF){/* Check Anchor String (64-bit version) */if(!memcmp(eps,"_SM3_",5)){length=eps[5];checksum=0;/* Add all bytes */for(i=0;i<length;i++)checksum+=eps[i];if(checksum==0)/* Done! */break;}/* Next 16-byte-aligned address */eps+=16;}

Now,eps contains the address of the Entry Point Structure. Some systems may not have the SMBIOS, so an error check may be a good idea:

if((unsignedint)eps==0x00100000){/* Error, SMBIOS could not be located */return-1;}

UEFI systems

On UEFI systems, the search-for-a-string method is not used to obtain the EPS. Instead, it is located by looking in the EFI Configuration Table for the SMBIOS Version 3 GUID (SMBIOS3_TABLE_GUID), which will contain a pointer to the structure.

This C code shows how that could get implemented usingGNU-EFI:

/* Will contain the address of the Entry Point Structure */void*SMBIOS_Pointer=NULL;UINTNstatus=LibGetSystemConfigurationTable(&SMBIOS3TableGuid,(void**)(&SMBIOS_Pointer));/* Check all posible errors (maybe is not needed?) */if(status!=EFI_SUCCESS||SMBIOS_Pointer==NULL||CompareMem(SMBIOS_Pointer,"_SM3_",5)){/* Error, SMBIOS could not be located */return-1;}

Structure Table

Once the EPS is located in memory, information about the SMBIOS table can already be obtained. The most important one is theStructure Table Adress, which is the address of the table that contains all the SMBIOS structures. The structures are located directly adjacent to each other in memory, with a new structure beginning as soon as another one ends. Each structure is composed of a header, a structure specific table, and a string table of variable length.

The first SMBIOS header is located at theStructure Table Adress. The value oftype indicates what element the structure contains information about.length indicates the size ofheader + data table. The strings are not included in the length.

structSMBIOSHeader{uint8_ttype;uint8_tlength;uint16_thandle;};

Immediately after the end of the header, is the data table. At the end of the data table (header address + length), the strings section starts. Each string is NULL terminated and is limited to 64 characters. Strings are referenced within tables by using an index into the string table (index 0 means that the string is effectively a NULL pointer and should be ignored). The first string begins immediately after the data, and the second string begins immediately after that, and so on. The string section itself is terminated by two consecutive zero bytes.

So, the end (and therefore the length) of the SMBIOS structure can be calculated by finding the twoNull Characters in the string section. Your code might look like:

size_tsmbios_struct_len(structSMBIOSHeader*hd){size_ti;constchar*strtab=(char*)hd+hd->len;// Scan until we find a double zero bytefor(i=1;strtab[i-1]!='\0'||strtab[i]!='\0';i++);returnhd->len+i+1;}

The final table is denoted by atype field of value 127.

As an example, the BIOS Struct (Type 0) might look like this:

db0; Indicates BIOS Structure Type            |db13h; Length of information in bytes         | HEADERdw?; Reserved for handle                      |db01h; String 1 is the Vendor Name            |db02h; String 2 is the BIOS version           |dw0E800h; BIOS Starting Address               |db03h; String 3 is the BIOS Build Date        | DATAdb1; Size of BIOS ROM is 128K (64K * (1 + 1)) |dqBIOS_Char; BIOS Characteristics             |db0; BIOS Characteristics Extension Byte 1    |dbSystemBIOSVendorName,0;                |db4.04,0;                                   | STRINGSdb00/00/0000,0;                             |db0; End of structure

Header Types

CodeDescription
0BIOS Information
1System Information
2Mainboard Information
3Enclosure/Chasis Information
4Processor Information
7Cache Information
9System Slots Information
16Physical Memory Array
17Memory Device Information
19Memory Array Mapped Address
20Memory Device Mapped Address (optional as of SMBIOS 2.5)
32System Boot Information

More details can be found in the Specification (see External Links)


See Also

Articles

Forum Threads

External Links

Retrieved from "https://wiki.osdev.org/index.php?title=System_Management_BIOS&oldid=29001"
Categories: