blob: ae3f5067bddf977fbf7502d64210d19117851340 [file] [log] [blame]
Chris Austen4d98c1e2015-10-13 14:33:50 -05001#include "oemhandler.h"
2#include <host-ipmid/ipmid-api.h>
3#include <stdio.h>
4#include <string.h>
5
6void register_netfn_oem_partial_esel() __attribute__((constructor));
7
8const char *g_esel_path = "/tmp/";
Chris Austen29a8e0f2015-10-30 11:44:38 -05009uint16_t g_record_id = 0x0001;
Chris Austen4d98c1e2015-10-13 14:33:50 -050010
11
12///////////////////////////////////////////////////////////////////////////////
Patrick Williams24fa5a92015-10-30 14:53:57 -050013// For the First partial add eSEL the SEL Record ID and offset
14// value should be 0x0000. The extended data needs to be in
15// the form of an IPMI SEL Event Record, with Event sensor type
16// of 0xDF and Event Message format of 0x04. The returned
Chris Austen4d98c1e2015-10-13 14:33:50 -050017// Record ID should be used for all partial eSEL adds.
18//
Patrick Williams24fa5a92015-10-30 14:53:57 -050019// This function creates a /tmp/esel# file to store the
Chris Austen4d98c1e2015-10-13 14:33:50 -050020// incoming partial esel. It is the role of some other
Patrick Williams24fa5a92015-10-30 14:53:57 -050021// function to commit the error log in to long term
22// storage. Likely via the ipmi add_sel command.
Chris Austen4d98c1e2015-10-13 14:33:50 -050023///////////////////////////////////////////////////////////////////////////////
Patrick Williams24fa5a92015-10-30 14:53:57 -050024ipmi_ret_t ipmi_ibm_oem_partial_esel(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Chris Austen17160ce2015-10-30 11:44:38 -050025 ipmi_request_t request, ipmi_response_t response,
26 ipmi_data_len_t data_len, ipmi_context_t context)
Chris Austen4d98c1e2015-10-13 14:33:50 -050027{
28 esel_request_t *reqptr = (esel_request_t*) request;
29 FILE *fp;
Chris Austen29a8e0f2015-10-30 11:44:38 -050030 // TODO: Issue 5: This is not endian-safe.
31 short *recid = (short*) &reqptr->selrecordls;
32 short *offset = (short*) &reqptr->offsetls;
Chris Austen4d98c1e2015-10-13 14:33:50 -050033 uint8_t rlen;
34 ipmi_ret_t rc = IPMI_CC_OK;
35 char string[64];
36 const char *pio;
37
Chris Austen4d98c1e2015-10-13 14:33:50 -050038
Chris Austen29a8e0f2015-10-30 11:44:38 -050039 if (!*recid && !*offset) {
Chris Austen17160ce2015-10-30 11:44:38 -050040 // OpenPOWER Host Interface spec says if RecordID and Offset are
41 // 0 then then this is a new request
42 pio = "wb";
Chris Austen29a8e0f2015-10-30 11:44:38 -050043 snprintf(string, sizeof(string), "%s%s%04x", g_esel_path, "esel", g_record_id);
Chris Austen17160ce2015-10-30 11:44:38 -050044 } else {
45 pio = "rb+";
46 snprintf(string, sizeof(string), "%s%s%02x%02x", g_esel_path, "esel", reqptr->selrecordms, reqptr->selrecordls);
47 }
Chris Austen4d98c1e2015-10-13 14:33:50 -050048
Chris Austen4d98c1e2015-10-13 14:33:50 -050049 rlen = (*data_len) - (uint8_t) (sizeof(esel_request_t));
50
51
Patrick Williams24fa5a92015-10-30 14:53:57 -050052 printf("IPMI PARTIAL ESEL for %s Offset = %d Length = %d\n",
Chris Austen29a8e0f2015-10-30 11:44:38 -050053 string, *offset, rlen);
Chris Austen4d98c1e2015-10-13 14:33:50 -050054
55
Chris Austen4d98c1e2015-10-13 14:33:50 -050056 if ((fp = fopen(string, pio)) != NULL) {
Chris Austen29a8e0f2015-10-30 11:44:38 -050057 fseek(fp, *offset, SEEK_SET);
Chris Austen4d98c1e2015-10-13 14:33:50 -050058 fwrite(reqptr+1,rlen,1,fp);
59 fclose(fp);
60
Chris Austen4d98c1e2015-10-13 14:33:50 -050061 *data_len = sizeof(g_record_id);
62 memcpy(response, &g_record_id, *data_len);
Chris Austen4d98c1e2015-10-13 14:33:50 -050063 } else {
64 fprintf(stderr, "Error trying to perform %s for esel%s\n",pio, string);
65 rc = IPMI_CC_INVALID;
66 *data_len = 0;
67 }
Patrick Williams24fa5a92015-10-30 14:53:57 -050068
Chris Austenfd8c1cc2015-11-11 00:46:42 -060069 // The first bit prepresents that this is the last partial packet
70 // coming down. If that is the case advance the record id so we
71 // don't overlap logs. This allows anyone to establish a log
72 // directory system.
73 if (reqptr->progress & 1 ) {
74 g_record_id++;
75 }
76
Chris Austen4d98c1e2015-10-13 14:33:50 -050077 return rc;
78}
79
80
81void register_netfn_oem_partial_esel()
82{
83 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_OEM, IPMI_CMD_PESEL);
84 ipmi_register_callback(NETFUN_OEM, IPMI_CMD_PESEL, NULL, ipmi_ibm_oem_partial_esel);
85 return;
86}