iPXE
Data Structures | Macros | Functions | Variables
smbios.h File Reference

System Management BIOS. More...

#include <stdint.h>
#include <ipxe/api.h>
#include <config/general.h>
#include <ipxe/uaccess.h>
#include <ipxe/efi/efi_smbios.h>
#include <ipxe/linux/linux_smbios.h>
#include <bits/smbios.h>

Go to the source code of this file.

Data Structures

struct  smbios_entry
 SMBIOS 32-bit entry point. More...
 
struct  smbios3_entry
 SMBIOS 64-bit entry point. More...
 
struct  smbios_header
 An SMBIOS structure header. More...
 
struct  smbios_structure
 SMBIOS structure descriptor. More...
 
struct  smbios_system_information
 SMBIOS system information structure. More...
 
struct  smbios_base_board_information
 SMBIOS base board information structure. More...
 
struct  smbios_enclosure_information
 SMBIOS enclosure information structure. More...
 
struct  smbios
 SMBIOS entry point descriptor. More...
 

Macros

#define PROVIDE_SMBIOS(_subsys, _api_func, _func)   PROVIDE_SINGLE_API ( SMBIOS_PREFIX_ ## _subsys, _api_func, _func )
 Provide an SMBIOS API implementation. More...
 
#define SMBIOS_SIGNATURE   ( ( '_' << 0 ) + ( 'S' << 8 ) + ( 'M' << 16 ) + ( '_' << 24 ) )
 Signature for 32-bit SMBIOS entry point. More...
 
#define SMBIOS3_SIGNATURE   ( ( '_' << 0 ) + ( 'S' << 8 ) + ( 'M' << 16 ) + ( '3' << 24 ) )
 Signature for 64-bit SMBIOS entry point. More...
 
#define SMBIOS_TYPE_SYSTEM_INFORMATION   1
 SMBIOS system information structure type. More...
 
#define SMBIOS_TYPE_BASE_BOARD_INFORMATION   2
 SMBIOS base board information structure type. More...
 
#define SMBIOS_TYPE_ENCLOSURE_INFORMATION   3
 SMBIOS enclosure information structure type. More...
 
#define SMBIOS_TYPE_OEM_STRINGS   11
 SMBIOS OEM strings structure type. More...
 
#define SMBIOS_TYPE_END   127
 SMBIOS end of table type. More...
 
#define SMBIOS_VERSION(major, minor)   ( ( (major) << 8 ) | (minor) )
 Calculate SMBIOS version. More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
struct smbios_entry __attribute__ ((packed))
 
int find_smbios (struct smbios *smbios)
 
int find_smbios_entry (userptr_t start, size_t len, struct smbios_entry *entry)
 Scan for SMBIOS entry point structure. More...
 
int find_smbios_structure (unsigned int type, unsigned int instance, struct smbios_structure *structure)
 Find specific structure type within SMBIOS. More...
 
int read_smbios_structure (struct smbios_structure *structure, void *data, size_t len)
 Copy SMBIOS structure. More...
 
int read_smbios_string (struct smbios_structure *structure, unsigned int index, void *data, size_t len)
 Find indexed string within SMBIOS structure. More...
 
int smbios_version (void)
 Get SMBIOS version. More...
 
void smbios_clear (void)
 Clear SMBIOS entry point descriptor. More...
 

Variables

uint32_t signature
 Signature. More...
 
uint8_t checksum
 Checksum. More...
 
uint8_t len
 Length. More...
 
uint8_t major
 Major version. More...
 
uint8_t minor
 Minor version. More...
 
uint16_t max
 Maximum structure size. More...
 
uint8_t revision
 Entry point revision. More...
 
uint8_t formatted [5]
 Formatted area. More...
 
uint8_t dmi_signature [5]
 DMI Signature. More...
 
uint8_t dmi_checksum
 DMI checksum. More...
 
uint16_t smbios_len
 Structure table length. More...
 
uint32_t smbios_address
 Structure table address. More...
 
uint16_t smbios_count
 Number of SMBIOS structures. More...
 
uint8_t bcd_revision
 BCD revision. More...
 
uint8_t extra
 Signature extra byte. More...
 
uint8_t docrev
 Documentation revision. More...
 
uint8_t reserved
 Reserved. More...
 
uint8_t type
 Type. More...
 
uint16_t handle
 Handle. More...
 
struct smbios_structure __attribute__
 
struct smbios_header header
 SMBIOS structure header. More...
 
uint8_t manufacturer
 Manufacturer string. More...
 
uint8_t product
 Product string. More...
 
uint8_t version
 Version string. More...
 
uint8_t serial
 Serial number string. More...
 
uint8_t uuid [16]
 UUID. More...
 
uint8_t wakeup
 Wake-up type. More...
 
uint8_t asset_tag
 Asset tag. More...
 

Detailed Description

System Management BIOS.

Definition in file smbios.h.

Macro Definition Documentation

◆ PROVIDE_SMBIOS

#define PROVIDE_SMBIOS (   _subsys,
  _api_func,
  _func 
)    PROVIDE_SINGLE_API ( SMBIOS_PREFIX_ ## _subsys, _api_func, _func )

Provide an SMBIOS API implementation.

Parameters
_prefixSubsystem prefix
_api_funcAPI function
_funcImplementing function

Definition at line 24 of file smbios.h.

◆ SMBIOS_SIGNATURE

#define SMBIOS_SIGNATURE   ( ( '_' << 0 ) + ( 'S' << 8 ) + ( 'M' << 16 ) + ( '_' << 24 ) )

Signature for 32-bit SMBIOS entry point.

Definition at line 35 of file smbios.h.

◆ SMBIOS3_SIGNATURE

#define SMBIOS3_SIGNATURE   ( ( '_' << 0 ) + ( 'S' << 8 ) + ( 'M' << 16 ) + ( '3' << 24 ) )

Signature for 64-bit SMBIOS entry point.

Definition at line 39 of file smbios.h.

◆ SMBIOS_TYPE_SYSTEM_INFORMATION

#define SMBIOS_TYPE_SYSTEM_INFORMATION   1

SMBIOS system information structure type.

Definition at line 157 of file smbios.h.

◆ SMBIOS_TYPE_BASE_BOARD_INFORMATION

#define SMBIOS_TYPE_BASE_BOARD_INFORMATION   2

SMBIOS base board information structure type.

Definition at line 174 of file smbios.h.

◆ SMBIOS_TYPE_ENCLOSURE_INFORMATION

#define SMBIOS_TYPE_ENCLOSURE_INFORMATION   3

SMBIOS enclosure information structure type.

Definition at line 193 of file smbios.h.

◆ SMBIOS_TYPE_OEM_STRINGS

#define SMBIOS_TYPE_OEM_STRINGS   11

SMBIOS OEM strings structure type.

Definition at line 196 of file smbios.h.

◆ SMBIOS_TYPE_END

#define SMBIOS_TYPE_END   127

SMBIOS end of table type.

Definition at line 199 of file smbios.h.

◆ SMBIOS_VERSION

#define SMBIOS_VERSION (   major,
  minor 
)    ( ( (major) << 8 ) | (minor) )

Calculate SMBIOS version.

Parameters
majorMajor version
minorMinor version
Return values
versionSMBIOS version

Definition at line 225 of file smbios.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ __attribute__()

struct smbios_entry __attribute__ ( (packed)  )

◆ find_smbios()

int find_smbios ( struct smbios smbios)

◆ find_smbios_entry()

int find_smbios_entry ( userptr_t  start,
size_t  len,
struct smbios_entry entry 
)

Scan for SMBIOS entry point structure.

Parameters
startStart address of region to scan
lenLength of region to scan
entrySMBIOS entry point structure to fill in
Return values
rcReturn status code

Definition at line 52 of file smbios.c.

53  {
54  uint8_t buf[256]; /* 256 is maximum length possible */
55  static size_t offset = 0; /* Avoid repeated attempts to locate SMBIOS */
56  size_t entry_len;
57  unsigned int i;
58  uint8_t sum;
59 
60  /* Try to find SMBIOS */
61  for ( ; offset < len ; offset += 0x10 ) {
62 
63  /* Read start of header and verify signature */
64  copy_from_user ( entry, start, offset, sizeof ( *entry ) );
65  if ( entry->signature != SMBIOS_SIGNATURE )
66  continue;
67 
68  /* Read whole header and verify checksum */
69  entry_len = entry->len;
70  assert ( entry_len <= sizeof ( buf ) );
71  copy_from_user ( buf, start, offset, entry_len );
72  for ( i = 0, sum = 0 ; i < entry_len ; i++ ) {
73  sum += buf[i];
74  }
75  if ( sum != 0 ) {
76  DBG ( "SMBIOS at %08lx has bad checksum %02x\n",
77  user_to_phys ( start, offset ), sum );
78  continue;
79  }
80 
81  /* Fill result structure */
82  DBG ( "Found SMBIOS v%d.%d entry point at %08lx\n",
83  entry->major, entry->minor,
84  user_to_phys ( start, offset ) );
85  return 0;
86  }
87 
88  DBG ( "No SMBIOS found\n" );
89  return -ENODEV;
90 }
#define SMBIOS_SIGNATURE
Signature for 32-bit SMBIOS entry point.
Definition: smbios.h:35
static __always_inline void copy_from_user(void *dest, userptr_t src, off_t src_off, size_t len)
Copy data from user buffer.
Definition: uaccess.h:337
unsigned long user_to_phys(userptr_t userptr, off_t offset)
Convert user pointer to physical address.
uint32_t start
Starting offset.
Definition: netvsc.h:12
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
union aes_table_entry entry[256]
Table entries, indexed by S(N)
Definition: aes.c:26
#define ENODEV
No such device.
Definition: errno.h:509
unsigned char uint8_t
Definition: stdint.h:10
uint32_t len
Length.
Definition: ena.h:14
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498

References assert(), copy_from_user(), DBG, ENODEV, entry, len, offset, SMBIOS_SIGNATURE, start, and user_to_phys().

Referenced by bios_find_smbios().

◆ find_smbios_structure()

int find_smbios_structure ( unsigned int  type,
unsigned int  instance,
struct smbios_structure structure 
)

Find specific structure type within SMBIOS.

Parameters
typeStructure type to search for
instanceInstance of this type of structure
structureSMBIOS structure descriptor to fill in
Return values
rcReturn status code

Definition at line 118 of file smbios.c.

119  {
120  unsigned int count = 0;
121  size_t offset = 0;
122  size_t strings_offset;
123  size_t terminator_offset;
124  int rc;
125 
126  /* Find SMBIOS */
127  if ( ( smbios.address == UNULL ) &&
128  ( ( rc = find_smbios ( &smbios ) ) != 0 ) )
129  return rc;
130  assert ( smbios.address != UNULL );
131 
132  /* Scan through list of structures */
133  while ( ( ( offset + sizeof ( structure->header ) ) < smbios.len ) &&
134  ( ( smbios.count == 0 ) || ( count < smbios.count ) ) ) {
135 
136  /* Read next SMBIOS structure header */
137  copy_from_user ( &structure->header, smbios.address, offset,
138  sizeof ( structure->header ) );
139 
140  /* Determine start and extent of strings block */
141  strings_offset = ( offset + structure->header.len );
142  if ( strings_offset > smbios.len ) {
143  DBG ( "SMBIOS structure at offset %zx with length "
144  "%x extends beyond SMBIOS\n", offset,
145  structure->header.len );
146  return -ENOENT;
147  }
148  terminator_offset = find_strings_terminator ( strings_offset );
149  if ( ! terminator_offset ) {
150  DBG ( "SMBIOS structure at offset %zx has "
151  "unterminated strings section\n", offset );
152  return -ENOENT;
153  }
154  structure->strings_len = ( terminator_offset - strings_offset);
155 
156  DBG ( "SMBIOS structure at offset %zx has type %d, length %x, "
157  "strings length %zx\n", offset, structure->header.type,
158  structure->header.len, structure->strings_len );
159 
160  /* Stop if we have reached an end-of-table marker */
161  if ( ( smbios.count == 0 ) &&
162  ( structure->header.type == SMBIOS_TYPE_END ) )
163  break;
164 
165  /* If this is the structure we want, return */
166  if ( ( structure->header.type == type ) &&
167  ( instance-- == 0 ) ) {
168  structure->offset = offset;
169  return 0;
170  }
171 
172  /* Move to next SMBIOS structure */
173  offset = ( terminator_offset + 1 );
174  count++;
175  }
176 
177  DBG ( "SMBIOS structure type %d not found\n", type );
178  return -ENOENT;
179 }
size_t strings_len
Length of strings section.
Definition: smbios.h:135
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
unsigned int count
Number of SMBIOS structures.
Definition: smbios.h:213
#define SMBIOS_TYPE_END
SMBIOS end of table type.
Definition: smbios.h:199
uint32_t type
Operating system type.
Definition: ena.h:12
static __always_inline void copy_from_user(void *dest, userptr_t src, off_t src_off, size_t len)
Copy data from user buffer.
Definition: uaccess.h:337
size_t len
Length of SMBIOS structures.
Definition: smbios.h:211
#define ENOENT
No such file or directory.
Definition: errno.h:514
SMBIOS entry point descriptor.
Definition: smbios.h:207
struct smbios_header header
Copy of SMBIOS structure header.
Definition: smbios.h:131
int find_smbios(struct smbios *smbios)
uint8_t len
Length.
Definition: smbios.h:123
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
uint8_t type
Type.
Definition: smbios.h:121
#define UNULL
Equivalent of NULL for user pointers.
Definition: uaccess.h:36
userptr_t address
Start of SMBIOS structures.
Definition: smbios.h:209
uint16_t count
Number of entries.
Definition: ena.h:22
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498
static size_t find_strings_terminator(size_t offset)
Find SMBIOS strings terminator.
Definition: smbios.c:98
size_t offset
Offset of structure within SMBIOS.
Definition: smbios.h:133

References smbios::address, assert(), copy_from_user(), count, smbios::count, DBG, ENOENT, find_smbios(), find_strings_terminator(), smbios_structure::header, smbios_header::len, smbios::len, smbios_structure::offset, offset, rc, SMBIOS_TYPE_END, smbios_structure::strings_len, type, smbios_header::type, and UNULL.

Referenced by smbios_fetch(), and smsc95xx_vm3_fetch_mac().

◆ read_smbios_structure()

int read_smbios_structure ( struct smbios_structure structure,
void *  data,
size_t  len 
)

Copy SMBIOS structure.

Parameters
structureSMBIOS structure descriptor
dataBuffer to hold SMBIOS structure
lenLength of buffer
Return values
rcReturn status code

Definition at line 189 of file smbios.c.

190  {
191 
192  assert ( smbios.address != UNULL );
193 
194  if ( len > structure->header.len )
195  len = structure->header.len;
196  copy_from_user ( data, smbios.address, structure->offset, len );
197  return 0;
198 }
static __always_inline void copy_from_user(void *dest, userptr_t src, off_t src_off, size_t len)
Copy data from user buffer.
Definition: uaccess.h:337
SMBIOS entry point descriptor.
Definition: smbios.h:207
struct smbios_header header
Copy of SMBIOS structure header.
Definition: smbios.h:131
uint8_t len
Length.
Definition: smbios.h:123
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define UNULL
Equivalent of NULL for user pointers.
Definition: uaccess.h:36
uint32_t len
Length.
Definition: ena.h:14
userptr_t address
Start of SMBIOS structures.
Definition: smbios.h:209
uint8_t data[48]
Additional event data.
Definition: ena.h:22
size_t offset
Offset of structure within SMBIOS.
Definition: smbios.h:133

References smbios::address, assert(), copy_from_user(), data, smbios_structure::header, len, smbios_header::len, smbios_structure::offset, and UNULL.

Referenced by smbios_fetch(), and smsc95xx_vm3_fetch_mac().

◆ read_smbios_string()

int read_smbios_string ( struct smbios_structure structure,
unsigned int  index,
void *  data,
size_t  len 
)

Find indexed string within SMBIOS structure.

Parameters
structureSMBIOS structure descriptor
indexString index
dataBuffer for string
lenLength of string buffer
Return values
rcLength of string, or negative error

Definition at line 209 of file smbios.c.

210  {
211  size_t strings_start = ( structure->offset + structure->header.len );
212  size_t strings_end = ( strings_start + structure->strings_len );
213  size_t offset;
214  size_t string_len;
215 
216  assert ( smbios.address != UNULL );
217 
218  /* String numbers start at 1 (0 is used to indicate "no string") */
219  if ( ! index )
220  return -ENOENT;
221 
222  for ( offset = strings_start ; offset < strings_end ;
223  offset += ( string_len + 1 ) ) {
224  /* Get string length. This is known safe, since the
225  * smbios_strings struct is constructed so as to
226  * always end on a string boundary.
227  */
228  string_len = strlen_user ( smbios.address, offset );
229  if ( --index == 0 ) {
230  /* Copy string, truncating as necessary. */
231  if ( len > string_len )
232  len = string_len;
234  return string_len;
235  }
236  }
237 
238  DBG ( "SMBIOS string index %d not found\n", index );
239  return -ENOENT;
240 }
size_t strings_len
Length of strings section.
Definition: smbios.h:135
static __always_inline void copy_from_user(void *dest, userptr_t src, off_t src_off, size_t len)
Copy data from user buffer.
Definition: uaccess.h:337
#define ENOENT
No such file or directory.
Definition: errno.h:514
SMBIOS entry point descriptor.
Definition: smbios.h:207
struct smbios_header header
Copy of SMBIOS structure header.
Definition: smbios.h:131
uint8_t len
Length.
Definition: smbios.h:123
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
size_t strlen_user(userptr_t userptr, off_t offset)
Find length of NUL-terminated string in user buffer.
#define UNULL
Equivalent of NULL for user pointers.
Definition: uaccess.h:36
uint32_t len
Length.
Definition: ena.h:14
userptr_t address
Start of SMBIOS structures.
Definition: smbios.h:209
uint8_t data[48]
Additional event data.
Definition: ena.h:22
uint64_t index
Index of the first segment within the content.
Definition: pccrc.h:21
#define DBG(...)
Print a debugging message.
Definition: compiler.h:498
size_t offset
Offset of structure within SMBIOS.
Definition: smbios.h:133

References smbios::address, assert(), copy_from_user(), data, DBG, ENOENT, smbios_structure::header, index, len, smbios_header::len, smbios_structure::offset, offset, smbios_structure::strings_len, strlen_user(), and UNULL.

Referenced by smbios_fetch(), and smsc95xx_vm3_fetch_mac().

◆ smbios_version()

int smbios_version ( void  )

Get SMBIOS version.

Return values
versionVersion, or negative error

Definition at line 247 of file smbios.c.

247  {
248  int rc;
249 
250  /* Find SMBIOS */
251  if ( ( smbios.address == UNULL ) &&
252  ( ( rc = find_smbios ( &smbios ) ) != 0 ) )
253  return rc;
254  assert ( smbios.address != UNULL );
255 
256  return smbios.version;
257 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
SMBIOS entry point descriptor.
Definition: smbios.h:207
int find_smbios(struct smbios *smbios)
uint16_t version
SMBIOS version.
Definition: smbios.h:215
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define UNULL
Equivalent of NULL for user pointers.
Definition: uaccess.h:36
userptr_t address
Start of SMBIOS structures.
Definition: smbios.h:209

References smbios::address, assert(), find_smbios(), rc, UNULL, and smbios::version.

Referenced by smbios_fetch().

◆ smbios_clear()

void smbios_clear ( void  )

Clear SMBIOS entry point descriptor.

Definition at line 263 of file smbios.c.

263  {
264 
265  /* Clear address */
266  smbios.address = UNULL;
267 }
SMBIOS entry point descriptor.
Definition: smbios.h:207
#define UNULL
Equivalent of NULL for user pointers.
Definition: uaccess.h:36
userptr_t address
Start of SMBIOS structures.
Definition: smbios.h:209

References smbios::address, and UNULL.

Variable Documentation

◆ signature

uint32_t signature

Signature.

Must be equal to SMBIOS_SIGNATURE

Must be equal to SMBIOS3_SIGNATURE

Definition at line 15 of file smbios.h.

◆ checksum

uint8_t checksum

Checksum.

Definition at line 17 of file smbios.h.

◆ len

uint8_t len

Length.

Definition at line 19 of file smbios.h.

◆ major

uint8_t major

Major version.

Definition at line 21 of file smbios.h.

◆ minor

uint8_t minor

Minor version.

Definition at line 23 of file smbios.h.

◆ max

uint16_t max

Maximum structure size.

Definition at line 25 of file smbios.h.

◆ revision

uint8_t revision

Entry point revision.

Definition at line 27 of file smbios.h.

◆ formatted

uint8_t formatted[5]

Formatted area.

Definition at line 29 of file smbios.h.

Referenced by uri_churi_okx(), and uri_resolve_okx().

◆ dmi_signature

uint8_t dmi_signature[5]

DMI Signature.

Definition at line 31 of file smbios.h.

◆ dmi_checksum

uint8_t dmi_checksum

DMI checksum.

Definition at line 33 of file smbios.h.

◆ smbios_len

uint32_t smbios_len

Structure table length.

Definition at line 35 of file smbios.h.

◆ smbios_address

uint64_t smbios_address

Structure table address.

Definition at line 37 of file smbios.h.

◆ smbios_count

uint16_t smbios_count

Number of SMBIOS structures.

Definition at line 39 of file smbios.h.

◆ bcd_revision

uint8_t bcd_revision

BCD revision.

Definition at line 41 of file smbios.h.

◆ extra

uint8_t extra

Signature extra byte.

Definition at line 17 of file smbios.h.

Referenced by asn1_grow(), asn1_start(), deflate_inflate(), der_probe(), and gzip_extract().

◆ docrev

uint8_t docrev

Documentation revision.

Definition at line 27 of file smbios.h.

◆ reserved

uint8_t reserved

Reserved.

Definition at line 31 of file smbios.h.

◆ type

uint8_t type

Type.

Type string.

Definition at line 12 of file smbios.h.

◆ handle

uint16_t handle

◆ __attribute__

◆ header

struct smbios_header header

SMBIOS structure header.

Definition at line 12 of file smbios.h.

◆ manufacturer

uint8_t manufacturer

Manufacturer string.

Definition at line 14 of file smbios.h.

Referenced by efi_veto(), efi_veto_find(), efi_veto_hp_xhci(), and efi_veto_ip4config().

◆ product

uint8_t product

Product string.

Definition at line 16 of file smbios.h.

Referenced by __attribute__(), and isa_id_string().

◆ version

uint8_t version

Version string.

Definition at line 18 of file smbios.h.

◆ serial

uint8_t serial

Serial number string.

Definition at line 20 of file smbios.h.

◆ uuid

UUID.

Definition at line 22 of file smbios.h.

Referenced by format_uuid_setting(), peerdisc_create(), and smbios_fetch().

◆ wakeup

uint8_t wakeup

Wake-up type.

Definition at line 24 of file smbios.h.

◆ asset_tag

uint8_t asset_tag

Asset tag.

Definition at line 22 of file smbios.h.