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
|
/* $NetBSD: $ */
/* $FreeBSD: $ */
/* $OpenBSD: eltsub.c,v 1.4 2003/04/03 18:49:51 deraadt Exp $ */
/*
* Copyright (c) 2000 by Matthew Jacob
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer,
* without modification, immediately at the beginning of the file.
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* Alternatively, this software may be distributed under the terms of the
* the GNU Public License ("GPL").
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
*
* Matthew Jacob
* Feral Software
* mjacob@feral.com
*/
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include SESINC
char *geteltnm(int);
static char *scode2ascii(u_char);
char *stat2ascii(int, u_char *);
char *
geteltnm(type)
int type;
{
static char rbuf[132];
switch (type) {
case SESTYP_UNSPECIFIED:
snprintf(rbuf, sizeof rbuf, "Unspecified");
break;
case SESTYP_DEVICE:
snprintf(rbuf, sizeof rbuf, "Device");
break;
case SESTYP_POWER:
snprintf(rbuf, sizeof rbuf, "Power supply");
break;
case SESTYP_FAN:
snprintf(rbuf, sizeof rbuf, "Cooling element");
break;
case SESTYP_THERM:
snprintf(rbuf, sizeof rbuf, "Temperature sensors");
break;
case SESTYP_DOORLOCK:
snprintf(rbuf, sizeof rbuf, "Door Lock");
break;
case SESTYP_ALARM:
snprintf(rbuf, sizeof rbuf, "Audible alarm");
break;
case SESTYP_ESCC:
snprintf(rbuf, sizeof rbuf, "Enclosure services controller electronics");
break;
case SESTYP_SCC:
snprintf(rbuf, sizeof rbuf, "SCC controller electronics");
break;
case SESTYP_NVRAM:
snprintf(rbuf, sizeof rbuf, "Nonvolatile cache");
break;
case SESTYP_UPS:
snprintf(rbuf, sizeof rbuf, "Uninterruptible power supply");
break;
case SESTYP_DISPLAY:
snprintf(rbuf, sizeof rbuf, "Display");
break;
case SESTYP_KEYPAD:
snprintf(rbuf, sizeof rbuf, "Key pad entry device");
break;
case SESTYP_SCSIXVR:
snprintf(rbuf, sizeof rbuf, "SCSI port/transceiver");
break;
case SESTYP_LANGUAGE:
snprintf(rbuf, sizeof rbuf, "Language");
break;
case SESTYP_COMPORT:
snprintf(rbuf, sizeof rbuf, "Communication Port");
break;
case SESTYP_VOM:
snprintf(rbuf, sizeof rbuf, "Voltage Sensor");
break;
case SESTYP_AMMETER:
snprintf(rbuf, sizeof rbuf, "Current Sensor");
break;
case SESTYP_SCSI_TGT:
snprintf(rbuf, sizeof rbuf, "SCSI target port");
break;
case SESTYP_SCSI_INI:
snprintf(rbuf, sizeof rbuf, "SCSI initiator port");
break;
case SESTYP_SUBENC:
snprintf(rbuf, sizeof rbuf, "Simple sub-enclosure");
break;
default:
(void) snprintf(rbuf, sizeof rbuf, "<Type 0x%x>", type);
break;
}
return (rbuf);
}
static char *
scode2ascii(code)
u_char code;
{
static char rbuf[32];
switch (code & 0xf) {
case SES_OBJSTAT_UNSUPPORTED:
snprintf(rbuf, sizeof rbuf, "status not supported");
break;
case SES_OBJSTAT_OK:
snprintf(rbuf, sizeof rbuf, "ok");
break;
case SES_OBJSTAT_CRIT:
snprintf(rbuf, sizeof rbuf, "critical");
break;
case SES_OBJSTAT_NONCRIT:
snprintf(rbuf, sizeof rbuf, "non-critical");
break;
case SES_OBJSTAT_UNRECOV:
snprintf(rbuf, sizeof rbuf, "unrecoverable");
break;
case SES_OBJSTAT_NOTINSTALLED:
snprintf(rbuf, sizeof rbuf, "not installed");
break;
case SES_OBJSTAT_UNKNOWN:
snprintf(rbuf, sizeof rbuf, "unknown status");
break;
case SES_OBJSTAT_NOTAVAIL:
snprintf(rbuf, sizeof rbuf, "status not available");
break;
default:
snprintf(rbuf, sizeof rbuf, "unknown status code %x", code & 0xf);
break;
}
return (rbuf);
}
char *
stat2ascii(eletype, cstat)
int eletype;
u_char *cstat;
{
static char ebuf[256], *scode;
scode = scode2ascii(cstat[0]);
snprintf(ebuf, sizeof ebuf, "Status=%s (bytes=0x%02x 0x%02x 0x%02x 0x%02x)",
scode, cstat[0], cstat[1], cstat[2], cstat[3]);
return (ebuf);
}
|