1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/*M*
// $Workfile: ipmilipmi.c $
// $Revision: 0.1 $
// $Modtime: 18 Oct 2010 15:20:14 $
// $Author: arcress at users.sourceforge.net $
//
// This implements support for the /dev/lipmi interface from
// the Solaris 8 & 9 LIPMI driver.
//
// 10/18/10 ARC - created
*M*/
/*----------------------------------------------------------------------*
The BSD License
Copyright (c) 2010 Kontron America, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
a.. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
b.. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
c.. Neither the name of Kontron nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*----------------------------------------------------------------------*/
#ifdef SOLARIS
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stropts.h>
#include "ipmicmd.h" /* for uchar, NCMDS */
#define MAX_SEND_SIZE 34
#define MAX_RECV_SIZE 33 /*TODO: compare with RECV_MAX_PAYLOAD_SIZE */
#define IOCTL_IPMI_KCS_ACTION 0x01
/* I_STR should be defined in stropts.h */
extern ipmi_cmd_t ipmi_cmds[NCMDS];
static int ipmi_fd = -1;
static char *pdev = "/dev/lipmi";
#ifndef _SYS_STROPTS_H
/* see sys/stropts.h, sys/lipmi/lipmi_intf.h*/
typedef struct strioctl {
int ic_cmd;
int ic_timout;
int ic_len;
char *ic_dp;
} strioctl_t;
#endif
typedef struct bmc_req {
uchar fn;
uchar lun;
uchar cmd;
uchar datalength;
uchar data[MAX_SEND_SIZE];
} bmc_req_t;
typedef struct bmc_rsp {
uchar fn;
uchar lun;
uchar cmd;
uchar ccode;
uchar datalength;
uchar data[MAX_RECV_SIZE];
} bmc_rsp_t;
typedef struct lipmi_reqrsp { /*TODO: see sys/lipmi/lipmi_intf.h*/
bmc_req_t req;
bmc_rsp_t rsp;
} lipmi_reqrsp_t;
int ipmi_open_lipmi(char fdebugcmd)
{
int rc = -1;
if (ipmi_fd != -1) return(0);
ipmi_fd = open(pdev, O_RDWR);
if (ipmi_fd < 0) {
if (fdebugcmd) printf("ipmi_open_lipmi: cannot open %s, errno=%d\n",
pdev,errno);
return(rc);
}
rc = 0;
if (fdebugcmd) printf("ipmi_open_lipmi: successfully opened\n");
return(rc);
}
int ipmi_close_lipmi(void)
{
int rc = 0;
if (ipmi_fd != -1) {
close(ipmi_fd);
ipmi_fd = -1;
}
return(rc);
}
int ipmi_cmdraw_lipmi( uchar cmd, uchar netfn, uchar lun, uchar sa, uchar bus,
uchar *pdata, int sdata, uchar *presp, int *sresp,
uchar *pcc, char fdebugcmd)
{
int rv = -1;
struct strioctl istr;
static struct lipmi_reqrsp reqrsp;
int len;
uchar cc;
if (ipmi_fd == -1) return -1;
memset(&reqrsp, 0, sizeof(reqrsp));
reqrsp.req.fn = netfn;
reqrsp.req.lun = lun;
reqrsp.req.cmd = cmd;
reqrsp.req.datalength = sdata;
memcpy(reqrsp.req.data, pdata, sdata);
reqrsp.rsp.datalength = MAX_RECV_SIZE;
istr.ic_cmd = IOCTL_IPMI_KCS_ACTION;
istr.ic_timout = 0;
istr.ic_dp = (char *)&reqrsp;
istr.ic_len = sizeof(struct lipmi_reqrsp);
rv = ioctl(ipmi_fd, I_STR, &istr);
if (rv < 0) {
perror("LIPMI IOCTL: I_STR");
return rv;
}
cc = reqrsp.rsp.ccode;
len = reqrsp.rsp.datalength;
*pcc = cc;
*sresp = len;
if (cc == 0 && len > 0)
memcpy(presp, reqrsp.rsp.data, len);
return(rv);
}
int ipmi_cmd_lipmi(ushort cmd, uchar *pdata, int sdata, uchar *presp,
int *sresp, uchar *pcc, char fdebugcmd)
{
int rc, i;
for (i = 0; i < NCMDS; i++) {
if (ipmi_cmds[i].cmdtyp == cmd) break;
}
if (i >= NCMDS) {
printf("ipmi_cmd_lipmi: Unknown command %x\n",cmd);
return(-1);
}
if (cmd >= CMDMASK) cmd = cmd & CMDMASK; /* unmask it */
rc = ipmi_cmdraw_lipmi(cmd, ipmi_cmds[i].netfn, ipmi_cmds[i].lun,
ipmi_cmds[i].sa, ipmi_cmds[i].bus,
pdata,sdata,presp,sresp,pcc,fdebugcmd);
return(rc);
}
#endif
/* end of ipmilipmi.c */
|