1 #include "config.h" 2 3 #include "systemintfcmds.hpp" 4 5 #include "host-cmd-manager.hpp" 6 #include "host-interface.hpp" 7 8 #include <cstring> 9 #include <ipmid-host/cmd.hpp> 10 #include <ipmid/api.hpp> 11 12 void register_netfn_app_functions() __attribute__((constructor)); 13 14 using namespace sdbusplus::xyz::openbmc_project::Control::server; 15 16 // For accessing Host command manager 17 using cmdManagerPtr = std::unique_ptr<phosphor::host::command::Manager>; 18 extern cmdManagerPtr& ipmid_get_host_cmd_manager(); 19 20 // global enables 21 // bit0 - Message Receive Queue enable 22 // bit1 - Enable Event Message Buffer Full Interrupt 23 // bit2 - Enable Event Message Buffer 24 // bit3 - Enable System Event Logging 25 // bit4 - reserved 26 // bit5-7 - OEM 0~2 enables 27 static constexpr uint8_t selEnable = 0x08; 28 static constexpr uint8_t recvMsgQueueEnable = 0x01; 29 static constexpr uint8_t globalEnablesDefault = selEnable | recvMsgQueueEnable; 30 31 //------------------------------------------------------------------- 32 // Called by Host post response from Get_Message_Flags 33 //------------------------------------------------------------------- 34 ipmi_ret_t ipmi_app_read_event(ipmi_netfn_t netfn, ipmi_cmd_t cmd, 35 ipmi_request_t request, ipmi_response_t response, 36 ipmi_data_len_t data_len, ipmi_context_t context) 37 { 38 ipmi_ret_t rc = IPMI_CC_OK; 39 40 struct oem_sel_timestamped oem_sel = {0}; 41 *data_len = sizeof(struct oem_sel_timestamped); 42 43 // either id[0] -or- id[1] can be filled in. We will use id[0] 44 oem_sel.id[0] = SEL_OEM_ID_0; 45 oem_sel.id[1] = SEL_OEM_ID_0; 46 oem_sel.type = SEL_RECORD_TYPE_OEM; 47 48 // Following 3 bytes are from IANA Manufactre_Id field. See below 49 oem_sel.manuf_id[0] = 0x41; 50 oem_sel.manuf_id[1] = 0xA7; 51 oem_sel.manuf_id[2] = 0x00; 52 53 // per IPMI spec NetFuntion for OEM 54 oem_sel.netfun = 0x3A; 55 56 // Read from the Command Manager queue. What gets returned is a 57 // pair of <command, data> that can be directly used here 58 auto hostCmd = ipmid_get_host_cmd_manager()->getNextCommand(); 59 oem_sel.cmd = hostCmd.first; 60 oem_sel.data[0] = hostCmd.second; 61 62 // All '0xFF' since unused. 63 std::memset(&oem_sel.data[1], 0xFF, 3); 64 65 // Pack the actual response 66 std::memcpy(response, &oem_sel, *data_len); 67 return rc; 68 } 69 70 //--------------------------------------------------------------------- 71 // Called by Host on seeing a SMS_ATN bit set. Return a hardcoded 72 // value of 0x2 indicating we need Host read some data. 73 //------------------------------------------------------------------- 74 ipmi_ret_t ipmi_app_get_msg_flags(ipmi_netfn_t netfn, ipmi_cmd_t cmd, 75 ipmi_request_t request, 76 ipmi_response_t response, 77 ipmi_data_len_t data_len, 78 ipmi_context_t context) 79 { 80 // Generic return from IPMI commands. 81 ipmi_ret_t rc = IPMI_CC_OK; 82 83 // From IPMI spec V2.0 for Get Message Flags Command : 84 // bit:[1] from LSB : 1b = Event Message Buffer Full. 85 // Return as 0 if Event Message Buffer is not supported, 86 // or when the Event Message buffer is disabled. 87 // For now, it is not supported. 88 89 uint8_t set_event_msg_buffer_full = 0x0; 90 *data_len = sizeof(set_event_msg_buffer_full); 91 92 // Pack the actual response 93 std::memcpy(response, &set_event_msg_buffer_full, *data_len); 94 95 return rc; 96 } 97 98 ipmi_ret_t ipmi_app_get_bmc_global_enables(ipmi_netfn_t netfn, ipmi_cmd_t cmd, 99 ipmi_request_t request, 100 ipmi_response_t response, 101 ipmi_data_len_t data_len, 102 ipmi_context_t context) 103 { 104 ipmi_ret_t rc = IPMI_CC_OK; 105 if (0 != *data_len) 106 { 107 *data_len = 0; 108 return IPMI_CC_REQ_DATA_LEN_INVALID; 109 } 110 *data_len = sizeof(globalEnablesDefault); 111 *reinterpret_cast<uint8_t*>(response) = globalEnablesDefault; 112 return rc; 113 } 114 115 ipmi_ret_t ipmi_app_set_bmc_global_enables(ipmi_netfn_t netfn, ipmi_cmd_t cmd, 116 ipmi_request_t request, 117 ipmi_response_t response, 118 ipmi_data_len_t data_len, 119 ipmi_context_t context) 120 { 121 ipmi_ret_t rc = IPMI_CC_OK; 122 123 uint8_t reqMask = *reinterpret_cast<uint8_t*>(request); 124 if (sizeof(reqMask) != *data_len) 125 { 126 *data_len = 0; 127 return IPMI_CC_REQ_DATA_LEN_INVALID; 128 } 129 130 *data_len = 0; 131 // Recv Message Queue and SEL are enabled by default. 132 // Event Message buffer are disabled by default (not supported). 133 // Any request that try to change the mask will be rejected 134 if (reqMask != (selEnable | recvMsgQueueEnable)) 135 { 136 return IPMI_CC_INVALID_FIELD_REQUEST; 137 } 138 return rc; 139 } 140 141 namespace 142 { 143 // Static storage to keep the object alive during process life 144 std::unique_ptr<phosphor::host::command::Host> host 145 __attribute__((init_priority(101))); 146 std::unique_ptr<sdbusplus::server::manager::manager> objManager 147 __attribute__((init_priority(101))); 148 } // namespace 149 150 void register_netfn_app_functions() 151 { 152 153 // <Read Event Message Buffer> 154 ipmi_register_callback(NETFUN_APP, IPMI_CMD_READ_EVENT, NULL, 155 ipmi_app_read_event, SYSTEM_INTERFACE); 156 157 // <Set BMC Global Enables> 158 ipmi_register_callback(NETFUN_APP, IPMI_CMD_SET_BMC_GLOBAL_ENABLES, NULL, 159 ipmi_app_set_bmc_global_enables, SYSTEM_INTERFACE); 160 161 // <Get BMC Global Enables> 162 ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_BMC_GLOBAL_ENABLES, NULL, 163 ipmi_app_get_bmc_global_enables, SYSTEM_INTERFACE); 164 165 // <Get Message Flags> 166 ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_MSG_FLAGS, NULL, 167 ipmi_app_get_msg_flags, SYSTEM_INTERFACE); 168 169 // Create new xyz.openbmc_project.host object on the bus 170 auto objPath = std::string{CONTROL_HOST_OBJ_MGR} + '/' + HOST_NAME + '0'; 171 172 std::unique_ptr<sdbusplus::asio::connection>& sdbusp = 173 ipmid_get_sdbus_plus_handler(); 174 175 // Add sdbusplus ObjectManager. 176 objManager = std::make_unique<sdbusplus::server::manager::manager>( 177 *sdbusp, CONTROL_HOST_OBJ_MGR); 178 179 host = std::make_unique<phosphor::host::command::Host>(*sdbusp, 180 objPath.c_str()); 181 sdbusp->request_name(CONTROL_HOST_BUSNAME); 182 183 return; 184 } 185