summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/include/usr/hbotcompid.H8
-rw-r--r--src/include/usr/isteps/istep07list.H1
-rw-r--r--src/include/usr/secureboot/secure_reasoncodes.H3
-rw-r--r--src/include/usr/secureboot/smf.H66
-rw-r--r--src/include/usr/secureboot/smf_utils.H6
-rw-r--r--src/usr/secureboot/smf/makefile1
-rw-r--r--src/usr/secureboot/smf/smf.C343
-rw-r--r--src/usr/secureboot/smf/smf_utils.C1
8 files changed, 428 insertions, 1 deletions
diff --git a/src/include/usr/hbotcompid.H b/src/include/usr/hbotcompid.H
index 4db19e164..40739f2ba 100644
--- a/src/include/usr/hbotcompid.H
+++ b/src/include/usr/hbotcompid.H
@@ -459,6 +459,14 @@ const char EXPSCOM_COMP_NAME[] = "expscom";
//@{
const compId_t NVRAM_COMP_ID = 0x3900;
const char NVRAM_COMP_NAME[] = "nvram";
+
+/** @name SMF
+ * SMF Support component
+ */
+//@{
+const compId_t SMF_COMP_ID = 0x4000;
+const char SMF_COMP_NAME[] = "smf";
+
//@}
/** @name HDAT
diff --git a/src/include/usr/isteps/istep07list.H b/src/include/usr/isteps/istep07list.H
index e9c03b082..4b1feb1b6 100644
--- a/src/include/usr/isteps/istep07list.H
+++ b/src/include/usr/isteps/istep07list.H
@@ -170,6 +170,7 @@ const DepModInfo g_istep07Dependancies = {
#ifndef CONFIG_FSP_BUILD
DEP_LIB(libnvram.so),
#endif
+ DEP_LIB(libsmf.so),
NULL
}
};
diff --git a/src/include/usr/secureboot/secure_reasoncodes.H b/src/include/usr/secureboot/secure_reasoncodes.H
index 7188b4e4f..acd3b0c5d 100644
--- a/src/include/usr/secureboot/secure_reasoncodes.H
+++ b/src/include/usr/secureboot/secure_reasoncodes.H
@@ -51,6 +51,7 @@ namespace SECUREBOOT
MOD_LOCK_ABUS_SEC_MAILBOXES = 0x11,
MOD_SECURE_LOG_PLAT_SECURITY_CONFIG = 0x12,
MOD_CHECK_RISK_LEVEL_FOR_SMF = 0x13,
+ MOD_SMF_SPLIT_SMF_MEM = 0x14,
// Use 0x20-0x2F range for Node Communications
MOD_NCDD_CHECK_FOR_ERRORS = 0x20,
@@ -91,6 +92,8 @@ namespace SECUREBOOT
RC_LOCK_MAILBOXES_FAILED = SECURE_COMP_ID | 0x14,
RC_SECURE_LOG_PLAT_SECURITY_CONFIG = SECURE_COMP_ID | 0x15,
RC_RISK_LEVEL_TOO_LOW = SECURE_COMP_ID | 0x16,
+ RC_COULD_NOT_ALLOCATE_SMF_MEM = SECURE_COMP_ID | 0x17,
+ RC_ALLOCATED_NE_REQUESTED = SECURE_COMP_ID | 0x18,
// Use 0x20-0x2F range for Node Communications
RC_NCDD_HW_ERROR_FOUND = SECURE_COMP_ID | 0x20,
diff --git a/src/include/usr/secureboot/smf.H b/src/include/usr/secureboot/smf.H
new file mode 100644
index 000000000..c77688585
--- /dev/null
+++ b/src/include/usr/secureboot/smf.H
@@ -0,0 +1,66 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/include/usr/secureboot/smf.H $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2018 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
+/* */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
+/* */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
+/* */
+/* IBM_PROLOG_END_TAG */
+#ifndef __SMF_H
+#define __SMF_H
+
+#include <errl/errlentry.H>
+#include <stdint.h>
+
+namespace SMF_TRACE
+{
+ extern trace_desc_t* g_trac_smf;
+}
+
+namespace SECUREBOOT
+{
+namespace SMF
+{
+
+/**
+ * @brief A function that destributes the requested amount of secure
+ * memory between the functional procs with memory on the system.
+ * The memory is distributed in power-of-two chunks of 256MB
+ * until either all memory is distributed or there are no procs
+ * remaining with memory available. The function returns predictive
+ * or informational errors in the following cases: there is no
+ * available memory behind the procs on the system (predictive error),
+ * the exact amount of secure mem allocated did not match the requested
+ * amount (informational error). If 0 is passed in to the function, no
+ * attempt at distribution occurs and the SMF mode is turned off.
+ *
+ * @param[in] i_requestedSmfMemAmtInBytes the amount of secure memory to be
+ * distributed (in bytes)
+ * among the procs on the system
+ *
+ * @return nullptr: the memory was successfully distributed as requested
+ * non-nullptr: a distribution error occurred (this error is never
+ * unrecoverable)
+ */
+errlHndl_t distributeSmfMem(uint64_t i_requestedSmfMemAmtInBytes);
+
+} // namespace SMF
+} // namespace SECUREBOOT
+
+#endif
diff --git a/src/include/usr/secureboot/smf_utils.H b/src/include/usr/secureboot/smf_utils.H
index 554f8affe..4c059eb08 100644
--- a/src/include/usr/secureboot/smf_utils.H
+++ b/src/include/usr/secureboot/smf_utils.H
@@ -35,9 +35,13 @@ namespace SMF
{
// HW limitations dictate that SMF memory needs to be a power-of-two
-// multiple of 256MB starting with 256MB.
+// multiple of 256MB starting with 256MB (amount in bytes).
extern const uint64_t MIN_SMF_MEMORY_AMT;
+// The minimum amount of memory, in bytes, required for hostboot to run on
+// master proc.
+extern const uint64_t MIN_MEM_RESERVED_FOR_HB;
+
/**
* @brief Checks whether SMF mode is enabled on the system
*
diff --git a/src/usr/secureboot/smf/makefile b/src/usr/secureboot/smf/makefile
index 14b7203fb..8deffbe0a 100644
--- a/src/usr/secureboot/smf/makefile
+++ b/src/usr/secureboot/smf/makefile
@@ -27,6 +27,7 @@ ROOTPATH = ../../../..
MODULE = smf
OBJS += smf_utils.o
+OBJS += smf.o
include ${ROOTPATH}/config.mk
diff --git a/src/usr/secureboot/smf/smf.C b/src/usr/secureboot/smf/smf.C
new file mode 100644
index 000000000..6793f0fa6
--- /dev/null
+++ b/src/usr/secureboot/smf/smf.C
@@ -0,0 +1,343 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/secureboot/smf/smf.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2018 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
+/* */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
+/* */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
+/* */
+/* IBM_PROLOG_END_TAG */
+#include <secureboot/smf.H>
+#include <assert.h>
+#include <targeting/common/target.H>
+#include <targeting/common/utilFilter.H>
+
+#include <trace/interface.H>
+#include <initservice/isteps_trace.H>
+
+#include <limits.h>
+#include <secureboot/secure_reasoncodes.H>
+#include <targeting/common/targetservice.H>
+#include <secureboot/smf_utils.H>
+
+#include <isteps/mem_utils.H>
+
+namespace SMF_TRACE
+{
+ trace_desc_t* g_trac_smf = nullptr;
+ TRAC_INIT(&g_trac_smf, SMF_COMP_NAME, 4*KILOBYTE);
+}
+
+namespace SECUREBOOT
+{
+namespace SMF
+{
+
+/**
+ * @brief structure to define the relationships between the procs, the memory
+ * available behind the procs, the memory to be allocated as secure, and
+ * the flag indicating whether the proc still has memory that can be
+ * allocated
+ */
+struct ProcToMemAssoc
+{
+ TARGETING::Target* proc;
+ uint64_t memToAllocate;
+ uint64_t availableMem;
+ bool useProc;
+
+ ProcToMemAssoc(TARGETING::Target* i_proc,
+ uint64_t i_memToAllocate,
+ uint64_t i_availableMem,
+ bool i_useProc) :
+ proc(i_proc), memToAllocate(i_memToAllocate),
+ availableMem(i_availableMem), useProc(i_useProc)
+ {
+ }
+};
+
+/**
+ * @brief helper function to return the total amount of memory available behind
+ * the given proc
+ *
+ * @param[in] i_proc the proc target to calculate the total memory for
+ *
+ * @return the total amount of memory, in bytes, available behind the input proc
+ */
+uint64_t getTotalProcMemSize(const TARGETING::Target* const i_proc)
+{
+ TARGETING::ATTR_PROC_MEM_SIZES_type l_procMemSizes = {};
+ uint64_t l_totProcMem = 0;
+
+ assert(i_proc->tryGetAttr<TARGETING::ATTR_PROC_MEM_SIZES>(l_procMemSizes),
+ "Could not get ATTR_PROC_MEM_SIZES from a proc target!");
+
+ for(size_t i = 0; i < sizeof(l_procMemSizes)/sizeof(l_procMemSizes[0]); ++i)
+ {
+ l_totProcMem += l_procMemSizes[i];
+ }
+
+ return l_totProcMem;
+}
+
+/**
+ * @brief helper function to turn SMF mode off at the system level.
+ * Not accessible to the outside world.
+ *
+ * @param[in] i_enabled boolean to indicate whether SMF should be enabled or not
+ */
+void setSmfEnabled(bool i_enabled)
+{
+ TARGETING::Target* l_sys = nullptr;
+ TARGETING::targetService().getTopLevelTarget(l_sys);
+ assert(l_sys != nullptr, "The top level target is nullptr!");
+ l_sys->setAttr<TARGETING::ATTR_SMF_ENABLED>(i_enabled);
+}
+
+/**
+ * @brief function to distribute the requested amount of memory between procs
+ * with available memory on the system
+ *
+ * @param[in] i_requestedSmfMemAmtInBytes the requested amount of secure memory
+ * to distribute between the procs (in bytes)
+ *
+ * @return nullptr: distribution was successful
+ * non-nullptr: an error occurred during distribution (the error will
+ * never be unrecoverable)
+ */
+errlHndl_t distributeSmfMem(uint64_t i_requestedSmfMemAmtInBytes)
+{
+ errlHndl_t l_errl = nullptr;
+
+ do {
+
+ if(i_requestedSmfMemAmtInBytes == 0)
+ {
+ TRACFCOMP(SMF_TRACE::g_trac_smf, "distributeSmfMem: Requested 0 memory amount; SMF mode will be turned off.");
+ setSmfEnabled(false);
+ break;
+ }
+
+ std::vector<struct ProcToMemAssoc>l_procToMemVec;
+
+ // Get all the functional procs amongs which we will distribute the
+ // requested SMF memory
+ TARGETING::TargetHandleList l_procList;
+ TARGETING::getAllChips(l_procList, TARGETING::TYPE_PROC, true);
+
+ assert(l_procList.size(), "distributeSmfMem: no procs were found on the system");
+
+ // Populate the vector of processor memory associations
+ for(const auto l_proc : l_procList)
+ {
+ struct ProcToMemAssoc l_pToM(l_proc,
+ 0,
+ getTotalProcMemSize(l_proc),
+ true);
+
+ // The proc with lowest address 0 needs to have 8GB subtracted from
+ // the available mem. This is done to make sure that hostboot can
+ // run on that proc.
+ if(ISTEP::get_bottom_mem_addr(l_proc) == 0)
+ {
+ if(l_pToM.availableMem >= MIN_MEM_RESERVED_FOR_HB)
+ {
+ l_pToM.availableMem -= MIN_MEM_RESERVED_FOR_HB;
+ }
+ else
+ {
+ l_pToM.availableMem = 0;
+ }
+ TRACDCOMP(SMF_TRACE::g_trac_smf, "distributeSmfMem: memory behind proc 0x%x has been reduced by 0x%x", TARGETING::get_huid(l_proc), MIN_MEM_RESERVED_FOR_HB);
+ }
+ l_procToMemVec.push_back(l_pToM);
+ }
+
+ TRACFCOMP(SMF_TRACE::g_trac_smf, "distributeSmfMem: distributing 0x%x requested memory.", i_requestedSmfMemAmtInBytes);
+
+ int64_t l_remainingAmtToAllocate = i_requestedSmfMemAmtInBytes;
+ uint64_t l_currChunkSize = MIN_SMF_MEMORY_AMT;
+ bool l_doubleChunk = false;
+ uint64_t l_allocatedSoFar = 0;
+ uint64_t l_totalAllocated = 0;
+
+ // Distribute the memory. Start allocating in multiple-of-two
+ // increments of 256MB on each proc. Stop if we've allocated all (or more)
+ // requested memory or ran out of procs to allocate the mem on.
+ while(true)
+ {
+ for(auto& l_member : l_procToMemVec)
+ {
+ // This will be recalculated every loop.
+ l_allocatedSoFar = 0;
+
+ // Skip procs that were marked as not having any more memory
+ if(l_member.useProc)
+ {
+ // We could have allocated all requested mem on the last proc.
+ // The amount could be negative due to power-of-two rounding.
+ if(l_remainingAmtToAllocate <= 0)
+ {
+ break;
+ }
+
+ // Check if we can't fit the current chunk in the memory space
+ // of the current proc.
+ if(l_currChunkSize > l_member.availableMem)
+ {
+ // The proc is out of memory; we can't use it any more
+ // in the allocation algorithm
+ l_member.useProc = false;
+ // We still need to allocate the current chunk to some other
+ // proc though, so don't increment the chunks for now.
+ l_doubleChunk = false;
+ TRACDCOMP(SMF_TRACE::g_trac_smf, "distributeSmfMem: proc 0x%x ran out of memory.", TARGETING::get_huid(l_member.proc));
+ }
+ else
+ {
+ // Can fit the current chunk.
+ l_member.memToAllocate = l_currChunkSize;
+
+ // We were able to allocate; now double the next chunk
+ l_doubleChunk = true;
+ }
+
+ // Tally up the total amt of memory allocated so far.
+ // We need to check this on each allocation (after each proc)
+ // because we may have to stop mid way through the proc loop
+ // when we've allocated all requested mem.
+ for(const auto& l_proc : l_procToMemVec)
+ {
+ l_allocatedSoFar += l_proc.memToAllocate;
+ }
+
+ if(l_doubleChunk)
+ {
+ // Only calculate the remaining amt when we've successfully
+ // allocated a chunk (which will force the boolean to
+ // be true). If we could not allocate the chunk, then the
+ // remaining amount didn't change.
+ l_remainingAmtToAllocate = i_requestedSmfMemAmtInBytes
+ - l_allocatedSoFar;
+ }
+ } // useProc
+ } // l_member
+
+ if(l_doubleChunk)
+ {
+ // Double the amt of mem we will try to allocate on the next
+ // iteration of the while loop.
+ l_currChunkSize = l_currChunkSize << 1;
+ }
+
+ // Find out if we still have procs remaining. If not, then the
+ // user has requested too much memory to be allocated.
+ uint8_t l_procsStillRemaining = 0;
+ for(const auto& l_usableProc : l_procToMemVec)
+ {
+ l_procsStillRemaining |= l_usableProc.useProc;
+ }
+
+ // Commit the allocated memory to each proc
+ if(!l_procsStillRemaining || l_remainingAmtToAllocate <= 0)
+ {
+ for(auto l_Proc : l_procToMemVec)
+ {
+ l_Proc.proc->
+ setAttr<TARGETING::ATTR_PROC_SMF_BAR_SIZE>(
+ l_Proc.memToAllocate);
+ l_totalAllocated += l_Proc.memToAllocate;
+ }
+ break;
+ }
+ } // while true
+
+ uint64_t l_totMemOnSystem = 0; // For error handling below
+ for(const auto l_proc : l_procList)
+ {
+ TRACFCOMP(SMF_TRACE::g_trac_smf, "distributeSmfMem: proc 0x%x SMF_BAR_SIZE = 0x%x",
+ TARGETING::get_huid(l_proc),
+ l_proc->getAttr<TARGETING::ATTR_PROC_SMF_BAR_SIZE>());
+ l_totMemOnSystem += getTotalProcMemSize(l_proc);
+ }
+
+ // Error conditions
+
+ // 1) Could not allocate any memory. This may happen if the only memory
+ // on the system is the 8GB behind master proc or if the user requested
+ // 0 memory to be allocated
+ if(l_totalAllocated == 0)
+ {
+ TRACFCOMP(SMF_TRACE::g_trac_smf, ERR_MRK"distributeSmfMem: could not allocate any SMF memory; SMF will be disabled.");
+ /*@
+ * @reasoncode SECUREBOOT::RC_COULD_NOT_ALLOCATE_SMF_MEM
+ * @moduleid SECUREBOOT::MOD_SMF_SPLIT_SMF_MEM
+ * @severity ERRORLOG::ERRL_SEV_PREDICTIVE
+ * @userdata1 Requested amount of SMF memory
+ * @userdata2 Total amount of mem available on the system
+ * @devdesc Could not allocate any requested SMF memory. The system
+ * may not have enough available memory.
+ * @custdesc Could not allocate any requested SMF memory.
+ */
+ l_errl = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_PREDICTIVE,
+ SECUREBOOT::MOD_SMF_SPLIT_SMF_MEM,
+ SECUREBOOT::RC_COULD_NOT_ALLOCATE_SMF_MEM,
+ i_requestedSmfMemAmtInBytes,
+ l_totMemOnSystem);
+ l_errl->collectTrace(SMF_COMP_NAME);
+
+ setSmfEnabled(false);
+ break;
+ }
+
+ // 2) Allocated not the exact amount the user requested. This may happen
+ // if we needed to round to the power-of-two multiple of 256 MB due to
+ // the hardware restrictions, or if the user requested more/less memory
+ // that could be allocated.
+ if(i_requestedSmfMemAmtInBytes != l_totalAllocated)
+ {
+ TRACFCOMP(SMF_TRACE::g_trac_smf, "distributeSmfMem: could not allocate exactly 0x%x SMF mem, allocated 0x%x instead.", i_requestedSmfMemAmtInBytes, l_totalAllocated);
+ /*@
+ * @reasoncode SECUREBOOT::RC_ALLOCATED_NE_REQUESTED
+ * @moduleid SECUREBOOT::MOD_SMF_SPLIT_SMF_MEM
+ * @severity ERRORLOG::ERRL_SEV_INFORMATIONAL
+ * @userdata1 Requested amount of SMF memory
+ * @userdata2 Actual allocated amount of SMF memory
+ * @devdesc The amount of SMF memory alocated does not match
+ * the requested SMF memory amount. A rounding error
+ * may have occurred or there is not enough of memory
+ * on the system.
+ * @custdesc SMF secure memory allocation request altered to satisfy
+ * memory allocation rules.
+ */
+ l_errl = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_INFORMATIONAL,
+ SECUREBOOT::MOD_SMF_SPLIT_SMF_MEM,
+ SECUREBOOT::RC_ALLOCATED_NE_REQUESTED,
+ i_requestedSmfMemAmtInBytes,
+ l_totalAllocated);
+ l_errl->collectTrace(SMF_COMP_NAME);
+ break;
+ }
+
+ } while(0);
+
+ return l_errl;
+}
+
+} // namespace SMF
+} // namespace SECUREBOOT
diff --git a/src/usr/secureboot/smf/smf_utils.C b/src/usr/secureboot/smf/smf_utils.C
index e8bca1fff..1548560a9 100644
--- a/src/usr/secureboot/smf/smf_utils.C
+++ b/src/usr/secureboot/smf/smf_utils.C
@@ -37,6 +37,7 @@ namespace SMF
{
const uint64_t MIN_SMF_MEMORY_AMT = 256 * MEGABYTE;
+const uint64_t MIN_MEM_RESERVED_FOR_HB = 8 * GIGABYTE;
bool isSmfEnabled()
{
OpenPOWER on IntegriCloud