2010-11-16 23:36:37 +01:00
|
|
|
/** @file
|
|
|
|
API for SMBIOS table.
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-11-16 23:36:37 +01:00
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
#include "../UefiShellDebug1CommandsLib.h"
|
|
|
|
#include <Guid/Smbios.h>
|
|
|
|
#include "LIbSmbios.h"
|
|
|
|
#include "LibSmbiosView.h"
|
2011-04-05 22:55:45 +02:00
|
|
|
#include "SmbiosView.h"
|
2010-11-16 23:36:37 +01:00
|
|
|
|
|
|
|
STATIC UINT8 mInit = 0;
|
|
|
|
STATIC SMBIOS_STRUCTURE_TABLE *mSmbiosTable = NULL;
|
|
|
|
STATIC SMBIOS_STRUCTURE_POINTER m_SmbiosStruct;
|
|
|
|
STATIC SMBIOS_STRUCTURE_POINTER *mSmbiosStruct = &m_SmbiosStruct;
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
/**
|
|
|
|
Init the SMBIOS VIEW API's environment.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS Successful to init the SMBIOS VIEW Lib.
|
|
|
|
**/
|
2010-11-16 23:36:37 +01:00
|
|
|
EFI_STATUS
|
|
|
|
LibSmbiosInit (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Init only once
|
|
|
|
//
|
|
|
|
if (mInit == 1) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Get SMBIOS table from System Configure table
|
|
|
|
//
|
|
|
|
Status = GetSystemConfigurationTable (&gEfiSmbiosTableGuid, (VOID**)&mSmbiosTable);
|
|
|
|
|
|
|
|
if (mSmbiosTable == NULL) {
|
|
|
|
ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_LIBSMBIOSVIEW_CANNOT_GET_TABLE), gShellDebug1HiiHandle);
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_LIBSMBIOSVIEW_GET_TABLE_ERROR), gShellDebug1HiiHandle, Status);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Init SMBIOS structure table address
|
|
|
|
//
|
|
|
|
mSmbiosStruct->Raw = (UINT8 *) (UINTN) (mSmbiosTable->TableAddress);
|
|
|
|
|
|
|
|
mInit = 1;
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
/**
|
|
|
|
Cleanup the Smbios information.
|
|
|
|
**/
|
2010-11-16 23:36:37 +01:00
|
|
|
VOID
|
|
|
|
LibSmbiosCleanup (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// Release resources
|
|
|
|
//
|
|
|
|
if (mSmbiosTable != NULL) {
|
|
|
|
mSmbiosTable = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mInit = 0;
|
|
|
|
}
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
/**
|
|
|
|
Get the entry point structure for the table.
|
|
|
|
|
|
|
|
@param[out] EntryPointStructure The pointer to populate.
|
|
|
|
**/
|
2010-11-16 23:36:37 +01:00
|
|
|
VOID
|
|
|
|
LibSmbiosGetEPS (
|
2011-04-05 22:55:45 +02:00
|
|
|
OUT SMBIOS_STRUCTURE_TABLE **EntryPointStructure
|
2010-11-16 23:36:37 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// return SMBIOS Table address
|
|
|
|
//
|
2011-04-05 22:55:45 +02:00
|
|
|
*EntryPointStructure = mSmbiosTable;
|
2010-11-16 23:36:37 +01:00
|
|
|
}
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
/**
|
|
|
|
Get SMBIOS structure given the Handle,copy data to the Buffer,
|
|
|
|
Handle is changed to the next handle or 0xFFFF when the end is
|
|
|
|
reached or the handle is not found.
|
2010-11-16 23:36:37 +01:00
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
@param[in,out] Handle 0xFFFF: get the first structure
|
|
|
|
Others: get a structure according to this value.
|
|
|
|
@param[in,out] Buffer The pointer to the caller's memory buffer.
|
|
|
|
@param[out] Length Length of return buffer in bytes.
|
2010-11-16 23:36:37 +01:00
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
@retval DMI_SUCCESS Buffer contains the required structure data
|
|
|
|
Handle is updated with next structure handle or
|
|
|
|
0xFFFF(end-of-list).
|
2010-11-16 23:36:37 +01:00
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
@retval DMI_INVALID_HANDLE Buffer not contain the requiring structure data.
|
|
|
|
Handle is updated with next structure handle or
|
|
|
|
0xFFFF(end-of-list).
|
2010-11-16 23:36:37 +01:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
LibGetSmbiosStructure (
|
|
|
|
IN OUT UINT16 *Handle,
|
|
|
|
IN OUT UINT8 *Buffer,
|
|
|
|
OUT UINT16 *Length
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SMBIOS_STRUCTURE_POINTER Smbios;
|
|
|
|
SMBIOS_STRUCTURE_POINTER SmbiosEnd;
|
|
|
|
UINT8 *Raw;
|
|
|
|
|
|
|
|
if (*Handle == INVALIDE_HANDLE) {
|
|
|
|
*Handle = mSmbiosStruct->Hdr->Handle;
|
|
|
|
return DMI_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Buffer == NULL) {
|
|
|
|
ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_LIBSMBIOSVIEW_NO_BUFF_SPEC), gShellDebug1HiiHandle);
|
|
|
|
return DMI_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*Length = 0;
|
|
|
|
Smbios.Hdr = mSmbiosStruct->Hdr;
|
|
|
|
SmbiosEnd.Raw = Smbios.Raw + mSmbiosTable->TableLength;
|
|
|
|
while (Smbios.Raw < SmbiosEnd.Raw) {
|
|
|
|
if (Smbios.Hdr->Handle == *Handle) {
|
|
|
|
Raw = Smbios.Raw;
|
|
|
|
//
|
|
|
|
// Walk to next structure
|
|
|
|
//
|
|
|
|
LibGetSmbiosString (&Smbios, (UINT16) (-1));
|
|
|
|
//
|
|
|
|
// Length = Next structure head - this structure head
|
|
|
|
//
|
|
|
|
*Length = (UINT16) (Smbios.Raw - Raw);
|
|
|
|
CopyMem (Buffer, Raw, *Length);
|
|
|
|
//
|
|
|
|
// update with the next structure handle.
|
|
|
|
//
|
|
|
|
if (Smbios.Raw < SmbiosEnd.Raw) {
|
|
|
|
*Handle = Smbios.Hdr->Handle;
|
|
|
|
} else {
|
|
|
|
*Handle = INVALIDE_HANDLE;
|
|
|
|
}
|
|
|
|
return DMI_SUCCESS;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Walk to next structure
|
|
|
|
//
|
|
|
|
LibGetSmbiosString (&Smbios, (UINT16) (-1));
|
|
|
|
}
|
|
|
|
|
|
|
|
*Handle = INVALIDE_HANDLE;
|
|
|
|
return DMI_INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
/**
|
|
|
|
Check the structure to see if it is legal.
|
|
|
|
|
|
|
|
@param[in] Smbios - Pointer to the structure that will be checked.
|
|
|
|
|
|
|
|
@retval DMI_SUCCESS Structure data is legal.
|
|
|
|
@retval DMI_BAD_PARAMETER Structure data contains bad parameter.
|
|
|
|
**/
|
2010-11-16 23:36:37 +01:00
|
|
|
EFI_STATUS
|
|
|
|
SmbiosCheckStructure (
|
|
|
|
IN SMBIOS_STRUCTURE_POINTER *Smbios
|
|
|
|
)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// If key != value, then error.
|
|
|
|
//
|
|
|
|
#define CHECK_VALUE(key, value) (((key) == (value)) ? EFI_SUCCESS : DMI_BAD_PARAMETER)
|
|
|
|
|
|
|
|
EFI_STATUS Status;
|
|
|
|
//
|
|
|
|
// Assume staus is EFI_SUCCESS,
|
|
|
|
// but if check is error, then EFI_ERROR.
|
|
|
|
//
|
|
|
|
Status = EFI_SUCCESS;
|
|
|
|
|
|
|
|
switch (Smbios->Hdr->Type) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
if (Smbios->Type1->Hdr.Length == 0x08 || Smbios->Type0->Hdr.Length == 0x19) {
|
|
|
|
Status = EFI_SUCCESS;
|
|
|
|
} else {
|
|
|
|
Status = DMI_BAD_PARAMETER;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type2->Hdr.Length, 0x08);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type6->Hdr.Length, 0x0C);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 11:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type11->Hdr.Length, 0x05);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 12:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type12->Hdr.Length, 0x05);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 13:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type13->Hdr.Length, 0x16);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 16:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type16->Hdr.Length, 0x0F);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 19:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type19->Hdr.Length, 0x0F);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 20:
|
|
|
|
Status = CHECK_VALUE (Smbios->Type20->Hdr.Length, 0x13);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 32:
|
|
|
|
//
|
|
|
|
// Because EFI_SUCCESS == 0,
|
|
|
|
// So errors added up is also error.
|
|
|
|
//
|
|
|
|
Status = CHECK_VALUE (Smbios->Type32->Reserved[0], 0x00) +
|
|
|
|
CHECK_VALUE (Smbios->Type32->Reserved[1], 0x00) +
|
|
|
|
CHECK_VALUE (Smbios->Type32->Reserved[2], 0x00) +
|
|
|
|
CHECK_VALUE (Smbios->Type32->Reserved[3], 0x00) +
|
|
|
|
CHECK_VALUE (Smbios->Type32->Reserved[4], 0x00) +
|
|
|
|
CHECK_VALUE (Smbios->Type32->Reserved[5], 0x00);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Status = DMI_BAD_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
/**
|
|
|
|
Get a string from the smbios information.
|
|
|
|
|
|
|
|
@param[in] Smbios The pointer to the smbios information.
|
|
|
|
@param[in] StringNumber The index to the string to get.
|
|
|
|
@param[out] Buffer The buffer to fill with the string when retrieved.
|
|
|
|
**/
|
2010-11-16 23:36:37 +01:00
|
|
|
VOID
|
|
|
|
SmbiosGetPendingString (
|
|
|
|
IN SMBIOS_STRUCTURE_POINTER *Smbios,
|
|
|
|
IN UINT16 StringNumber,
|
|
|
|
OUT CHAR8 *Buffer
|
|
|
|
)
|
|
|
|
{
|
|
|
|
CHAR8 *String;
|
|
|
|
if (Buffer == NULL) {
|
|
|
|
ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_LIBSMBIOSVIEW_NO_BUF_SPEC_WHEN_STRUCT), gShellDebug1HiiHandle);
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Get string and copy to buffer.
|
|
|
|
// Caller should provide the buffer.
|
|
|
|
//
|
|
|
|
String = LibGetSmbiosString (Smbios, StringNumber);
|
|
|
|
if (String != NULL) {
|
|
|
|
CopyMem (Buffer, String, AsciiStrLen(String));
|
|
|
|
} else {
|
|
|
|
Buffer = NULL;
|
|
|
|
}
|
|
|
|
}
|