1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22 /*
23 * Copyright 2015 OmniTI Computer Consulting, Inc. All rights reserved.
24 * Copyright 2019 Joyent, Inc.
25 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
26 * Use is subject to license terms.
27 */
28
29 /*
30 * SMBIOS Information Routines
31 *
32 * The routines in this file are used to convert from the SMBIOS data format to
33 * a more reasonable and stable set of structures offered as part of our ABI.
34 * These functions take the general form:
35 *
36 * stp = smb_lookup_type(shp, foo);
37 * smb_foo_t foo;
38 *
39 * smb_info_bcopy(stp->smbst_hdr, &foo, sizeof (foo));
40 * bzero(caller's struct);
41 *
42 * copy/convert foo members into caller's struct
43 *
44 * We copy the internal structure on to an automatic variable so as to avoid
45 * checks everywhere for structures that the BIOS has improperly truncated, and
46 * also to automatically handle the case of a structure that has been extended.
47 * When necessary, this code can use smb_gteq() to determine whether the SMBIOS
48 * data is of a particular revision that is supposed to contain a new field.
49 *
50 * Note, when trying to bzero the caller's struct you have to be careful about
51 * versions. One can only bzero the initial version that existed in illumos. In
52 * other words, if someone passes an older library handle that doesn't support a
53 * version you cannot assume that their structures have those additional members
54 * in them. Instead, a 'base' version is introduced for such types that have
55 * differences and instead we only bzero out the base version and then handle
56 * the additional members. In general, because all additional members will be
57 * assigned, there's no reason to zero them out unless they are arrays that
58 * won't be entirely filled in.
59 *
60 * Due to history, anything added after the update from version 2.4, in other
61 * words additions from or after '5094 Update libsmbios with recent items'
62 * (4e901881) is currently being used for this. While we don't allow software
63 * compiling against this to get an older form, this was the first major update
64 * and a good starting point for us to enforce this behavior which is useful for
65 * moving forward to making this more public.
66 */
67
68 #include <sys/smbios_impl.h>
69 #include <sys/byteorder.h>
70 #include <sys/debug.h>
71
72 #ifdef _KERNEL
73 #include <sys/sunddi.h>
74 #else
75 #include <fcntl.h>
76 #include <unistd.h>
77 #include <string.h>
78 #endif
79
80 /*
81 * A large number of SMBIOS structures contain a set of common strings used to
82 * describe a h/w component's serial number, manufacturer, etc. These fields
83 * helpfully have different names and offsets and sometimes aren't consistent.
84 * To simplify life for our clients, we factor these common things out into
85 * smbios_info_t, which can be retrieved for any structure. The following
86 * table describes the mapping from a given structure to the smbios_info_t.
87 * Multiple SMBIOS stuctures' contained objects are also handled here.
88 */
89 static const struct smb_infospec {
90 uint8_t is_type; /* structure type */
91 uint8_t is_manu; /* manufacturer offset */
92 uint8_t is_product; /* product name offset */
93 uint8_t is_version; /* version offset */
94 uint8_t is_serial; /* serial number offset */
95 uint8_t is_asset; /* asset tag offset */
96 uint8_t is_location; /* location string offset */
97 uint8_t is_part; /* part number offset */
98 uint8_t is_contc; /* contained count */
99 uint8_t is_contsz; /* contained size */
100 uint8_t is_contv; /* contained objects */
101 } _smb_infospecs[] = {
102 { SMB_TYPE_SYSTEM,
103 offsetof(smb_system_t, smbsi_manufacturer),
104 offsetof(smb_system_t, smbsi_product),
105 offsetof(smb_system_t, smbsi_version),
106 offsetof(smb_system_t, smbsi_serial),
107 0,
108 0,
109 0,
110 0,
111 0,
112 0 },
113 { SMB_TYPE_BASEBOARD,
114 offsetof(smb_bboard_t, smbbb_manufacturer),
115 offsetof(smb_bboard_t, smbbb_product),
116 offsetof(smb_bboard_t, smbbb_version),
117 offsetof(smb_bboard_t, smbbb_serial),
118 offsetof(smb_bboard_t, smbbb_asset),
119 offsetof(smb_bboard_t, smbbb_location),
120 0,
121 offsetof(smb_bboard_t, smbbb_cn),
122 SMB_CONT_WORD,
123 offsetof(smb_bboard_t, smbbb_cv) },
124 { SMB_TYPE_CHASSIS,
125 offsetof(smb_chassis_t, smbch_manufacturer),
126 0,
127 offsetof(smb_chassis_t, smbch_version),
128 offsetof(smb_chassis_t, smbch_serial),
129 offsetof(smb_chassis_t, smbch_asset),
130 0,
131 0,
132 offsetof(smb_chassis_t, smbch_cn),
133 SMB_CONT_BYTE,
134 offsetof(smb_chassis_t, smbch_cv) },
135 { SMB_TYPE_PROCESSOR,
136 offsetof(smb_processor_t, smbpr_manufacturer),
137 0,
138 offsetof(smb_processor_t, smbpr_version),
139 offsetof(smb_processor_t, smbpr_serial),
140 offsetof(smb_processor_t, smbpr_asset),
141 offsetof(smb_processor_t, smbpr_socket),
142 offsetof(smb_processor_t, smbpr_part),
143 0,
144 0,
145 0 },
146 { SMB_TYPE_CACHE,
147 0,
148 0,
149 0,
150 0,
151 0,
152 offsetof(smb_cache_t, smbca_socket),
153 0,
154 0,
155 0,
156 0 },
157 { SMB_TYPE_PORT,
158 0,
159 0,
160 0,
161 0,
162 0,
163 offsetof(smb_port_t, smbpo_iref),
164 0,
165 0,
166 0,
167 0 },
168 { SMB_TYPE_SLOT,
169 0,
170 0,
171 0,
172 0,
173 0,
174 offsetof(smb_slot_t, smbsl_name),
175 0,
176 0,
177 0,
178 0 },
179 { SMB_TYPE_MEMDEVICE,
180 offsetof(smb_memdevice_t, smbmdev_manufacturer),
181 0,
182 0,
183 offsetof(smb_memdevice_t, smbmdev_serial),
184 offsetof(smb_memdevice_t, smbmdev_asset),
185 offsetof(smb_memdevice_t, smbmdev_dloc),
186 offsetof(smb_memdevice_t, smbmdev_part),
187 0,
188 0,
189 0 },
190 { SMB_TYPE_POWERSUP,
191 offsetof(smb_powersup_t, smbpsup_manufacturer),
192 offsetof(smb_powersup_t, smbpsup_devname),
193 offsetof(smb_powersup_t, smbpsup_rev),
194 offsetof(smb_powersup_t, smbpsup_serial),
195 offsetof(smb_powersup_t, smbpsup_asset),
196 offsetof(smb_powersup_t, smbpsup_loc),
197 offsetof(smb_powersup_t, smbpsup_part),
198 0,
199 0,
200 0 },
201 { SMB_TYPE_EOT }
202 };
203
204 static const char *
smb_info_strptr(const smb_struct_t * stp,uint8_t off,int * n)205 smb_info_strptr(const smb_struct_t *stp, uint8_t off, int *n)
206 {
207 const uint8_t *sp = (const uint8_t *)(uintptr_t)stp->smbst_hdr;
208
209 if (off != 0 && sp + off < stp->smbst_end) {
210 (*n)++; /* indicate success for caller */
211 return (smb_strptr(stp, sp[off]));
212 }
213
214 return (smb_strptr(stp, 0));
215 }
216
217 static void
smb_info_bcopy(const smb_header_t * hp,void * dst,size_t dstlen)218 smb_info_bcopy(const smb_header_t *hp, void *dst, size_t dstlen)
219 {
220 if (dstlen > hp->smbh_len) {
221 bcopy(hp, dst, hp->smbh_len);
222 bzero((char *)dst + hp->smbh_len, dstlen - hp->smbh_len);
223 } else
224 bcopy(hp, dst, dstlen);
225 }
226
227 smbios_entry_point_t
smbios_info_smbios(smbios_hdl_t * shp,smbios_entry_t * ep)228 smbios_info_smbios(smbios_hdl_t *shp, smbios_entry_t *ep)
229 {
230 bcopy(&shp->sh_ent, ep, sizeof (smbios_entry_t));
231 return (shp->sh_ent_type);
232 }
233
234 void
smbios_info_smbios_version(smbios_hdl_t * shp,smbios_version_t * v)235 smbios_info_smbios_version(smbios_hdl_t *shp, smbios_version_t *v)
236 {
237 v->smbv_major = SMB_MAJOR(shp->sh_smbvers);
238 v->smbv_minor = SMB_MINOR(shp->sh_smbvers);
239 }
240
241 #ifndef _KERNEL
242 static char smbios_product_override[256];
243 static boolean_t smbios_product_checked;
244 #endif
245
246 int
smbios_info_common(smbios_hdl_t * shp,id_t id,smbios_info_t * ip)247 smbios_info_common(smbios_hdl_t *shp, id_t id, smbios_info_t *ip)
248 {
249 const smb_struct_t *stp = smb_lookup_id(shp, id);
250 const struct smb_infospec *isp;
251 int n = 0;
252
253 if (stp == NULL)
254 return (-1); /* errno is set for us */
255
256 for (isp = _smb_infospecs; isp->is_type != SMB_TYPE_EOT; isp++) {
257 if (isp->is_type == stp->smbst_hdr->smbh_type)
258 break;
259 }
260
261 ip->smbi_manufacturer = smb_info_strptr(stp, isp->is_manu, &n);
262 ip->smbi_product = smb_info_strptr(stp, isp->is_product, &n);
263 ip->smbi_version = smb_info_strptr(stp, isp->is_version, &n);
264 ip->smbi_serial = smb_info_strptr(stp, isp->is_serial, &n);
265 ip->smbi_asset = smb_info_strptr(stp, isp->is_asset, &n);
266 ip->smbi_location = smb_info_strptr(stp, isp->is_location, &n);
267 ip->smbi_part = smb_info_strptr(stp, isp->is_part, &n);
268
269 /*
270 * This private file allows developers to experiment with reporting
271 * different platform strings from SMBIOS. It is not a supported
272 * mechanism in the long term, and does not work in the kernel.
273 */
274 #ifndef _KERNEL
275 if (isp->is_type == SMB_TYPE_SYSTEM) {
276 if (!smbios_product_checked) {
277 int fd = open("/etc/smbios_product", O_RDONLY);
278 if (fd >= 0) {
279 (void) read(fd, smbios_product_override,
280 sizeof (smbios_product_override) - 1);
281 (void) close(fd);
282 }
283 smbios_product_checked = B_TRUE;
284 }
285
286 if (smbios_product_override[0] != '\0')
287 ip->smbi_product = smbios_product_override;
288 }
289 #endif
290
291 /*
292 * If we have a port with an empty internal reference designator string
293 * try using the external reference designator string instead.
294 */
295 if (isp->is_type == SMB_TYPE_PORT && ip->smbi_location[0] == '\0') {
296 ip->smbi_location = smb_info_strptr(stp,
297 offsetof(smb_port_t, smbpo_eref), &n);
298 }
299
300 return (n ? 0 : smb_set_errno(shp, ESMB_NOINFO));
301 }
302
303 /*
304 * Returns the actual number of contained objects.
305 *
306 * idc - number of contained objects
307 * idv - returned array of contained objects
308 */
309 int
smbios_info_contains(smbios_hdl_t * shp,id_t id,uint_t idc,id_t * idv)310 smbios_info_contains(smbios_hdl_t *shp, id_t id, uint_t idc, id_t *idv)
311 {
312 const smb_struct_t *stp = smb_lookup_id(shp, id);
313 const struct smb_infospec *isp;
314 id_t *cp;
315 uint_t size;
316 uint8_t cnt;
317 int i, n;
318
319 if (stp == NULL) {
320 return (-1); /* errno is set for us */
321 }
322
323 for (isp = _smb_infospecs; isp->is_type != SMB_TYPE_EOT; isp++) {
324 if (isp->is_type == stp->smbst_hdr->smbh_type)
325 break;
326 }
327 if (isp->is_type == SMB_TYPE_EOT)
328 return (smb_set_errno(shp, ESMB_TYPE));
329
330 size = isp->is_contsz;
331 cnt = *((uint8_t *)(uintptr_t)stp->smbst_hdr + isp->is_contc);
332 cp = (id_t *)((uintptr_t)stp->smbst_hdr + isp->is_contv);
333
334 n = MIN(cnt, idc);
335 for (i = 0; i < n; i++) {
336 if (size == SMB_CONT_WORD)
337 idv[i] = *((uint8_t *)(uintptr_t)cp + (i * 2));
338 else if (size == SMB_CONT_BYTE)
339 idv[i] = *((uint8_t *)(uintptr_t)cp + (i * 3));
340 else
341 return (smb_set_errno(shp, ESMB_INVAL));
342 }
343
344 return (cnt);
345 }
346
347 id_t
smbios_info_bios(smbios_hdl_t * shp,smbios_bios_t * bp)348 smbios_info_bios(smbios_hdl_t *shp, smbios_bios_t *bp)
349 {
350 const smb_struct_t *stp = smb_lookup_type(shp, SMB_TYPE_BIOS);
351 const smb_bios_t *bip;
352
353 if (stp == NULL)
354 return (-1); /* errno is set for us */
355
356 if (stp->smbst_hdr->smbh_len < sizeof (smb_bios_t) - sizeof (uint8_t))
357 return (smb_set_errno(shp, ESMB_CORRUPT));
358
359 bip = (smb_bios_t *)(uintptr_t)stp->smbst_hdr;
360 bzero(bp, sizeof (smb_base_bios_t));
361 if (smb_libgteq(shp, SMB_VERSION_31)) {
362 bp->smbb_extromsize = 0;
363 }
364
365 bp->smbb_vendor = smb_strptr(stp, bip->smbbi_vendor);
366 bp->smbb_version = smb_strptr(stp, bip->smbbi_version);
367 bp->smbb_segment = bip->smbbi_segment;
368 bp->smbb_reldate = smb_strptr(stp, bip->smbbi_reldate);
369 bp->smbb_romsize = 64 * 1024 * ((uint32_t)bip->smbbi_romsize + 1);
370 bp->smbb_runsize = 16 * (0x10000 - (uint32_t)bip->smbbi_segment);
371 bp->smbb_cflags = bip->smbbi_cflags;
372
373 /*
374 * If one or more extension bytes are present, reset smbb_xcflags to
375 * point to them. Otherwise leave this member set to NULL.
376 */
377 if (stp->smbst_hdr->smbh_len >= sizeof (smb_bios_t)) {
378 bp->smbb_xcflags = bip->smbbi_xcflags;
379 bp->smbb_nxcflags = stp->smbst_hdr->smbh_len -
380 sizeof (smb_bios_t) + 1;
381
382 if (bp->smbb_nxcflags > SMB_BIOSXB_ECFW_MIN &&
383 smb_gteq(shp, SMB_VERSION_24)) {
384 bp->smbb_biosv.smbv_major =
385 bip->smbbi_xcflags[SMB_BIOSXB_BIOS_MAJ];
386 bp->smbb_biosv.smbv_minor =
387 bip->smbbi_xcflags[SMB_BIOSXB_BIOS_MIN];
388 bp->smbb_ecfwv.smbv_major =
389 bip->smbbi_xcflags[SMB_BIOSXB_ECFW_MAJ];
390 bp->smbb_ecfwv.smbv_minor =
391 bip->smbbi_xcflags[SMB_BIOSXB_ECFW_MIN];
392 }
393
394 if (bp->smbb_nxcflags > SMB_BIOSXB_EXTROM + 1 &&
395 smb_gteq(shp, SMB_VERSION_31)) {
396 uint16_t val;
397 uint64_t rs;
398
399 /*
400 * Because of the fact that the extended size is a
401 * uint16_t and we'd need to define an explicit
402 * endian-aware way to access it, we don't include it in
403 * the number of extended flags below and thus subtract
404 * its size.
405 */
406 bp->smbb_nxcflags -= sizeof (uint16_t);
407 bcopy(&bip->smbbi_xcflags[SMB_BIOSXB_EXTROM], &val,
408 sizeof (val));
409 val = LE_16(val);
410
411 /*
412 * The upper two bits of the extended rom size are used
413 * to indicate whether the other 14 bits are in MB or
414 * GB.
415 */
416 rs = SMB_BIOS_EXTROM_VALUE_MASK(val);
417 switch (SMB_BIOS_EXTROM_SHIFT_MASK(val)) {
418 case 0:
419 rs *= 1024ULL * 1024ULL;
420 break;
421 case 1:
422 rs *= 1024ULL * 1024ULL * 1024ULL;
423 break;
424 default:
425 rs = 0;
426 break;
427 }
428
429 if (smb_libgteq(shp, SMB_VERSION_31)) {
430 bp->smbb_extromsize = rs;
431 }
432 }
433 }
434
435 if (smb_libgteq(shp, SMB_VERSION_31) && bp->smbb_extromsize == 0) {
436 bp->smbb_extromsize = bp->smbb_romsize;
437 }
438
439 return (stp->smbst_hdr->smbh_hdl);
440 }
441
442 id_t
smbios_info_system(smbios_hdl_t * shp,smbios_system_t * sip)443 smbios_info_system(smbios_hdl_t *shp, smbios_system_t *sip)
444 {
445 const smb_struct_t *stp = smb_lookup_type(shp, SMB_TYPE_SYSTEM);
446 smb_system_t si;
447
448 if (stp == NULL)
449 return (-1); /* errno is set for us */
450
451 smb_info_bcopy(stp->smbst_hdr, &si, sizeof (si));
452 bzero(sip, sizeof (smbios_system_t));
453
454 sip->smbs_uuid = ((smb_system_t *)stp->smbst_hdr)->smbsi_uuid;
455 sip->smbs_uuidlen = sizeof (si.smbsi_uuid);
456 sip->smbs_wakeup = si.smbsi_wakeup;
457 sip->smbs_sku = smb_strptr(stp, si.smbsi_sku);
458 sip->smbs_family = smb_strptr(stp, si.smbsi_family);
459
460 return (stp->smbst_hdr->smbh_hdl);
461 }
462
463 int
smbios_info_bboard(smbios_hdl_t * shp,id_t id,smbios_bboard_t * bbp)464 smbios_info_bboard(smbios_hdl_t *shp, id_t id, smbios_bboard_t *bbp)
465 {
466 const smb_struct_t *stp = smb_lookup_id(shp, id);
467 smb_bboard_t bb;
468
469 if (stp == NULL)
470 return (-1); /* errno is set for us */
471
472 if (stp->smbst_hdr->smbh_type != SMB_TYPE_BASEBOARD)
473 return (smb_set_errno(shp, ESMB_TYPE));
474
475 smb_info_bcopy(stp->smbst_hdr, &bb, sizeof (bb));
476 bzero(bbp, sizeof (smbios_bboard_t));
477
478 bbp->smbb_chassis = bb.smbbb_chassis;
479 bbp->smbb_flags = bb.smbbb_flags;
480 bbp->smbb_type = bb.smbbb_type;
481 bbp->smbb_contn = bb.smbbb_cn;
482
483 return (0);
484 }
485
486 int
smbios_info_chassis(smbios_hdl_t * shp,id_t id,smbios_chassis_t * chp)487 smbios_info_chassis(smbios_hdl_t *shp, id_t id, smbios_chassis_t *chp)
488 {
489 const smb_struct_t *stp = smb_lookup_id(shp, id);
490 /* Length is measurable by one byte, so it'll be no more than 255. */
491 uint8_t buf[256];
492 smb_chassis_t *ch = (smb_chassis_t *)&buf[0];
493
494 if (stp == NULL)
495 return (-1); /* errno is set for us */
496
497 if (stp->smbst_hdr->smbh_type != SMB_TYPE_CHASSIS)
498 return (smb_set_errno(shp, ESMB_TYPE));
499
500 smb_info_bcopy(stp->smbst_hdr, ch, sizeof (buf));
501 bzero(chp, sizeof (smb_base_chassis_t));
502 if (smb_libgteq(shp, SMB_VERSION_27)) {
503 bzero(chp->smbc_sku, sizeof (chp->smbc_sku));
504 }
505
506 chp->smbc_oemdata = ch->smbch_oemdata;
507 chp->smbc_lock = (ch->smbch_type & SMB_CHT_LOCK) != 0;
508 chp->smbc_type = ch->smbch_type & ~SMB_CHT_LOCK;
509 chp->smbc_bustate = ch->smbch_bustate;
510 chp->smbc_psstate = ch->smbch_psstate;
511 chp->smbc_thstate = ch->smbch_thstate;
512 chp->smbc_security = ch->smbch_security;
513 chp->smbc_uheight = ch->smbch_uheight;
514 chp->smbc_cords = ch->smbch_cords;
515 chp->smbc_elems = ch->smbch_cn;
516 chp->smbc_elemlen = ch->smbch_cm;
517
518 if (smb_libgteq(shp, SMB_VERSION_27)) {
519 (void) strlcpy(chp->smbc_sku, SMB_CH_SKU(ch),
520 sizeof (chp->smbc_sku));
521 }
522
523 return (0);
524 }
525
526 int
smbios_info_processor(smbios_hdl_t * shp,id_t id,smbios_processor_t * pp)527 smbios_info_processor(smbios_hdl_t *shp, id_t id, smbios_processor_t *pp)
528 {
529 const smb_struct_t *stp = smb_lookup_id(shp, id);
530 smb_processor_t p;
531
532 if (stp == NULL)
533 return (-1); /* errno is set for us */
534
535 if (stp->smbst_hdr->smbh_type != SMB_TYPE_PROCESSOR)
536 return (smb_set_errno(shp, ESMB_TYPE));
537
538 smb_info_bcopy(stp->smbst_hdr, &p, sizeof (p));
539 bzero(pp, sizeof (smb_base_processor_t));
540
541 pp->smbp_cpuid = p.smbpr_cpuid;
542 pp->smbp_type = p.smbpr_type;
543 pp->smbp_family = p.smbpr_family;
544 pp->smbp_voltage = p.smbpr_voltage;
545 pp->smbp_maxspeed = p.smbpr_maxspeed;
546 pp->smbp_curspeed = p.smbpr_curspeed;
547 pp->smbp_status = p.smbpr_status;
548 pp->smbp_upgrade = p.smbpr_upgrade;
549 pp->smbp_l1cache = p.smbpr_l1cache;
550 pp->smbp_l2cache = p.smbpr_l2cache;
551 pp->smbp_l3cache = p.smbpr_l3cache;
552
553 if (smb_libgteq(shp, SMB_VERSION_25)) {
554 pp->smbp_corecount = p.smbpr_corecount;
555 pp->smbp_coresenabled = p.smbpr_coresenabled;
556 pp->smbp_threadcount = p.smbpr_threadcount;
557 pp->smbp_cflags = p.smbpr_cflags;
558 }
559
560 if (smb_libgteq(shp, SMB_VERSION_26)) {
561 pp->smbp_family2 = p.smbpr_family2;
562 }
563
564 if (smb_libgteq(shp, SMB_VERSION_30)) {
565 pp->smbp_corecount2 = p.smbpr_corecount2;
566 pp->smbp_coresenabled2 = p.smbpr_coresenabled2;
567 pp->smbp_threadcount2 = p.smbpr_threadcount2;
568 }
569
570 return (0);
571 }
572
573 int
smbios_info_cache(smbios_hdl_t * shp,id_t id,smbios_cache_t * cap)574 smbios_info_cache(smbios_hdl_t *shp, id_t id, smbios_cache_t *cap)
575 {
576 const smb_struct_t *stp = smb_lookup_id(shp, id);
577 smb_cache_t c;
578
579 if (stp == NULL)
580 return (-1); /* errno is set for us */
581
582 if (stp->smbst_hdr->smbh_type != SMB_TYPE_CACHE)
583 return (smb_set_errno(shp, ESMB_TYPE));
584
585 smb_info_bcopy(stp->smbst_hdr, &c, sizeof (c));
586 bzero(cap, sizeof (smb_base_cache_t));
587
588 cap->smba_maxsize = SMB_CACHE_SIZE(c.smbca_maxsize);
589 cap->smba_size = SMB_CACHE_SIZE(c.smbca_size);
590 cap->smba_stype = c.smbca_stype;
591 cap->smba_ctype = c.smbca_ctype;
592 cap->smba_speed = c.smbca_speed;
593 cap->smba_etype = c.smbca_etype;
594 cap->smba_ltype = c.smbca_ltype;
595 cap->smba_assoc = c.smbca_assoc;
596 cap->smba_level = SMB_CACHE_CFG_LEVEL(c.smbca_config);
597 cap->smba_mode = SMB_CACHE_CFG_MODE(c.smbca_config);
598 cap->smba_location = SMB_CACHE_CFG_LOCATION(c.smbca_config);
599
600 if (SMB_CACHE_CFG_ENABLED(c.smbca_config))
601 cap->smba_flags |= SMB_CAF_ENABLED;
602
603 if (SMB_CACHE_CFG_SOCKETED(c.smbca_config))
604 cap->smba_flags |= SMB_CAF_SOCKETED;
605
606 if (smb_libgteq(shp, SMB_VERSION_31)) {
607 cap->smba_maxsize2 = SMB_CACHE_EXT_SIZE(c.smbca_maxsize2);
608 cap->smba_size2 = SMB_CACHE_EXT_SIZE(c.smbca_size2);
609
610 if (cap->smba_maxsize2 == 0) {
611 cap->smba_maxsize2 = cap->smba_maxsize;
612 }
613
614 if (cap->smba_size2 == 0) {
615 cap->smba_size2 = cap->smba_size;
616 }
617 }
618
619 return (0);
620 }
621
622 int
smbios_info_port(smbios_hdl_t * shp,id_t id,smbios_port_t * pop)623 smbios_info_port(smbios_hdl_t *shp, id_t id, smbios_port_t *pop)
624 {
625 const smb_struct_t *stp = smb_lookup_id(shp, id);
626 smb_port_t p;
627
628 if (stp == NULL)
629 return (-1); /* errno is set for us */
630
631 if (stp->smbst_hdr->smbh_type != SMB_TYPE_PORT)
632 return (smb_set_errno(shp, ESMB_TYPE));
633
634 smb_info_bcopy(stp->smbst_hdr, &p, sizeof (p));
635 bzero(pop, sizeof (smbios_port_t));
636
637 pop->smbo_iref = smb_strptr(stp, p.smbpo_iref);
638 pop->smbo_eref = smb_strptr(stp, p.smbpo_eref);
639
640 pop->smbo_itype = p.smbpo_itype;
641 pop->smbo_etype = p.smbpo_etype;
642 pop->smbo_ptype = p.smbpo_ptype;
643
644 return (0);
645 }
646
647 int
smbios_info_slot(smbios_hdl_t * shp,id_t id,smbios_slot_t * sp)648 smbios_info_slot(smbios_hdl_t *shp, id_t id, smbios_slot_t *sp)
649 {
650 const smb_struct_t *stp = smb_lookup_id(shp, id);
651 smb_slot_t s;
652
653 if (stp == NULL)
654 return (-1); /* errno is set for us */
655
656 if (stp->smbst_hdr->smbh_type != SMB_TYPE_SLOT)
657 return (smb_set_errno(shp, ESMB_TYPE));
658
659 smb_info_bcopy(stp->smbst_hdr, &s, sizeof (s));
660 bzero(sp, sizeof (smb_base_slot_t));
661
662 sp->smbl_name = smb_strptr(stp, s.smbsl_name);
663 sp->smbl_type = s.smbsl_type;
664 sp->smbl_width = s.smbsl_width;
665 sp->smbl_usage = s.smbsl_usage;
666 sp->smbl_length = s.smbsl_length;
667 sp->smbl_id = s.smbsl_id;
668 sp->smbl_ch1 = s.smbsl_ch1;
669 sp->smbl_ch2 = s.smbsl_ch2;
670 sp->smbl_sg = s.smbsl_sg;
671 sp->smbl_bus = s.smbsl_bus;
672 sp->smbl_df = s.smbsl_df;
673
674 if (smb_libgteq(shp, SMB_VERSION_32)) {
675 sp->smbl_dbw = s.smbsl_dbw;
676 sp->smbl_npeers = s.smbsl_npeers;
677 }
678
679 return (0);
680 }
681
682 void
smbios_info_slot_peers_free(smbios_hdl_t * shp,uint_t npeers,smbios_slot_peer_t * peer)683 smbios_info_slot_peers_free(smbios_hdl_t *shp, uint_t npeers,
684 smbios_slot_peer_t *peer)
685 {
686 size_t sz = npeers * sizeof (smbios_slot_peer_t);
687
688 if (npeers == 0) {
689 ASSERT3P(peer, ==, NULL);
690 return;
691 }
692
693 smb_free(peer, sz);
694 }
695
696 int
smbios_info_slot_peers(smbios_hdl_t * shp,id_t id,uint_t * npeers,smbios_slot_peer_t ** peerp)697 smbios_info_slot_peers(smbios_hdl_t *shp, id_t id, uint_t *npeers,
698 smbios_slot_peer_t **peerp)
699 {
700 const smb_struct_t *stp = smb_lookup_id(shp, id);
701 const smb_slot_t *slotp;
702 smbios_slot_peer_t *peer;
703 size_t minlen;
704 uint_t i;
705
706 if (stp == NULL)
707 return (-1); /* errno is set for us */
708
709 slotp = (const smb_slot_t *)stp->smbst_hdr;
710
711 if (stp->smbst_hdr->smbh_type != SMB_TYPE_SLOT)
712 return (smb_set_errno(shp, ESMB_TYPE));
713
714 if (stp->smbst_hdr->smbh_len <= offsetof(smb_slot_t, smbsl_npeers) ||
715 slotp->smbsl_npeers == 0) {
716 *npeers = 0;
717 *peerp = NULL;
718 return (0);
719 }
720
721 /*
722 * Make sure that the size of the structure makes sense for the number
723 * of peers reported.
724 */
725 minlen = slotp->smbsl_npeers * sizeof (smb_slot_peer_t) +
726 offsetof(smb_slot_t, smbsl_npeers);
727 if (stp->smbst_hdr->smbh_len < minlen) {
728 return (smb_set_errno(shp, ESMB_SHORT));
729 }
730
731 if ((peer = smb_alloc(slotp->smbsl_npeers *
732 sizeof (smbios_slot_peer_t))) == NULL) {
733 return (smb_set_errno(shp, ESMB_NOMEM));
734 }
735
736 for (i = 0; i < slotp->smbsl_npeers; i++) {
737 peer[i].smblp_group = slotp->smbsl_peers[i].smbspb_group_no;
738 peer[i].smblp_bus = slotp->smbsl_peers[i].smbspb_bus;
739 peer[i].smblp_device = slotp->smbsl_peers[i].smbspb_df >> 3;
740 peer[i].smblp_function = slotp->smbsl_peers[i].smbspb_df & 0x7;
741 peer[i].smblp_data_width = slotp->smbsl_peers[i].smbspb_width;
742 }
743
744 *npeers = slotp->smbsl_npeers;
745 *peerp = peer;
746
747 return (0);
748 }
749
750 int
smbios_info_obdevs_ext(smbios_hdl_t * shp,id_t id,smbios_obdev_ext_t * oep)751 smbios_info_obdevs_ext(smbios_hdl_t *shp, id_t id, smbios_obdev_ext_t *oep)
752 {
753 const smb_struct_t *stp = smb_lookup_id(shp, id);
754 smb_obdev_ext_t obe;
755
756 if (stp == NULL)
757 return (-1); /* errno is set for us */
758
759 if (stp->smbst_hdr->smbh_type != SMB_TYPE_OBDEVEXT)
760 return (smb_set_errno(shp, ESMB_TYPE));
761
762 smb_info_bcopy(stp->smbst_hdr, &obe, sizeof (obe));
763 bzero(oep, sizeof (smbios_obdev_ext_t));
764
765 oep->smboe_name = smb_strptr(stp, obe.smbobe_name);
766 oep->smboe_dtype = obe.smbobe_dtype;
767 oep->smboe_dti = obe.smbobe_dti;
768 oep->smboe_sg = obe.smbobe_sg;
769 oep->smboe_bus = obe.smbobe_bus;
770 oep->smboe_df = obe.smbobe_df;
771
772 return (0);
773 }
774
775 int
smbios_info_obdevs(smbios_hdl_t * shp,id_t id,int obc,smbios_obdev_t * obp)776 smbios_info_obdevs(smbios_hdl_t *shp, id_t id, int obc, smbios_obdev_t *obp)
777 {
778 const smb_struct_t *stp = smb_lookup_id(shp, id);
779 const smb_obdev_t *op;
780 int i, m, n;
781
782 if (stp == NULL)
783 return (-1); /* errno is set for us */
784
785 if (stp->smbst_hdr->smbh_type != SMB_TYPE_OBDEVS)
786 return (smb_set_errno(shp, ESMB_TYPE));
787
788 op = (smb_obdev_t *)((uintptr_t)stp->smbst_hdr + sizeof (smb_header_t));
789 m = (stp->smbst_hdr->smbh_len - sizeof (smb_header_t)) / sizeof (*op);
790 n = MIN(m, obc);
791
792 for (i = 0; i < n; i++, op++, obp++) {
793 obp->smbd_name = smb_strptr(stp, op->smbob_name);
794 obp->smbd_type = op->smbob_type & ~SMB_OBT_ENABLED;
795 obp->smbd_enabled = (op->smbob_type & SMB_OBT_ENABLED) != 0;
796 }
797
798 return (m);
799 }
800
801 /*
802 * The implementation structures for OEMSTR, SYSCONFSTR, and LANG all use the
803 * first byte to indicate the size of a string table at the end of the record.
804 * Therefore, smbios_info_strtab() can be used to retrieve the table size and
805 * strings for any of these underlying record types.
806 */
807 int
smbios_info_strtab(smbios_hdl_t * shp,id_t id,int argc,const char * argv[])808 smbios_info_strtab(smbios_hdl_t *shp, id_t id, int argc, const char *argv[])
809 {
810 const smb_struct_t *stp = smb_lookup_id(shp, id);
811 smb_strtab_t s;
812 int i, n;
813
814 if (stp == NULL)
815 return (-1); /* errno is set for us */
816
817 if (stp->smbst_hdr->smbh_type != SMB_TYPE_OEMSTR &&
818 stp->smbst_hdr->smbh_type != SMB_TYPE_SYSCONFSTR &&
819 stp->smbst_hdr->smbh_type != SMB_TYPE_LANG)
820 return (smb_set_errno(shp, ESMB_TYPE));
821
822 smb_info_bcopy(stp->smbst_hdr, &s, sizeof (s));
823 n = MIN(s.smbtb_count, argc);
824
825 for (i = 0; i < n; i++)
826 argv[i] = smb_strptr(stp, i + 1);
827
828 return (s.smbtb_count);
829 }
830
831 id_t
smbios_info_lang(smbios_hdl_t * shp,smbios_lang_t * lp)832 smbios_info_lang(smbios_hdl_t *shp, smbios_lang_t *lp)
833 {
834 const smb_struct_t *stp = smb_lookup_type(shp, SMB_TYPE_LANG);
835 smb_lang_t l;
836
837 if (stp == NULL)
838 return (-1); /* errno is set for us */
839
840 smb_info_bcopy(stp->smbst_hdr, &l, sizeof (l));
841 bzero(lp, sizeof (smbios_lang_t));
842
843 lp->smbla_cur = smb_strptr(stp, l.smblang_cur);
844 lp->smbla_fmt = l.smblang_flags & 1;
845 lp->smbla_num = l.smblang_num;
846
847 return (stp->smbst_hdr->smbh_hdl);
848 }
849
850 id_t
smbios_info_eventlog(smbios_hdl_t * shp,smbios_evlog_t * evp)851 smbios_info_eventlog(smbios_hdl_t *shp, smbios_evlog_t *evp)
852 {
853 const smb_struct_t *stp = smb_lookup_type(shp, SMB_TYPE_EVENTLOG);
854 const smb_sel_t *sel;
855 size_t len;
856
857 if (stp == NULL)
858 return (-1); /* errno is set for us */
859
860 if (stp->smbst_hdr->smbh_len < sizeof (smb_sel_t) - sizeof (uint8_t))
861 return (smb_set_errno(shp, ESMB_CORRUPT));
862
863 sel = (smb_sel_t *)(uintptr_t)stp->smbst_hdr;
864 len = stp->smbst_hdr->smbh_len - sizeof (smb_sel_t) + sizeof (uint8_t);
865 bzero(evp, sizeof (smbios_evlog_t));
866
867 if (len < sel->smbsel_typec * sel->smbsel_typesz)
868 return (smb_set_errno(shp, ESMB_CORRUPT));
869
870 evp->smbev_size = sel->smbsel_len;
871 evp->smbev_hdr = sel->smbsel_hdroff;
872 evp->smbev_data = sel->smbsel_dataoff;
873 evp->smbev_method = sel->smbsel_method;
874 evp->smbev_flags = sel->smbsel_status;
875 evp->smbev_format = sel->smbsel_format;
876 evp->smbev_token = sel->smbsel_token;
877 evp->smbev_addr.eva_addr = sel->smbsel_addr;
878
879 if (sel->smbsel_typesz == sizeof (smbios_evtype_t)) {
880 evp->smbev_typec = sel->smbsel_typec;
881 evp->smbev_typev = (void *)(uintptr_t)sel->smbsel_typev;
882 }
883
884 return (stp->smbst_hdr->smbh_hdl);
885 }
886
887 int
smbios_info_memarray(smbios_hdl_t * shp,id_t id,smbios_memarray_t * map)888 smbios_info_memarray(smbios_hdl_t *shp, id_t id, smbios_memarray_t *map)
889 {
890 const smb_struct_t *stp = smb_lookup_id(shp, id);
891 smb_memarray_t m;
892
893 if (stp == NULL)
894 return (-1); /* errno is set for us */
895
896 if (stp->smbst_hdr->smbh_type != SMB_TYPE_MEMARRAY)
897 return (smb_set_errno(shp, ESMB_TYPE));
898
899 smb_info_bcopy(stp->smbst_hdr, &m, sizeof (m));
900 bzero(map, sizeof (smbios_memarray_t));
901
902 map->smbma_location = m.smbmarr_loc;
903 map->smbma_use = m.smbmarr_use;
904 map->smbma_ecc = m.smbmarr_ecc;
905 map->smbma_ndevs = m.smbmarr_ndevs;
906 map->smbma_err = m.smbmarr_err;
907
908 if (m.smbmarr_cap != 0x80000000)
909 map->smbma_size = (uint64_t)m.smbmarr_cap * 1024;
910 else if (m.smbmarr_extcap != 0)
911 map->smbma_size = m.smbmarr_extcap;
912 else
913 map->smbma_size = 0; /* unknown */
914
915 return (0);
916 }
917
918 int
smbios_info_memarrmap(smbios_hdl_t * shp,id_t id,smbios_memarrmap_t * map)919 smbios_info_memarrmap(smbios_hdl_t *shp, id_t id, smbios_memarrmap_t *map)
920 {
921 const smb_struct_t *stp = smb_lookup_id(shp, id);
922 smb_memarrmap_t m;
923
924 if (stp == NULL)
925 return (-1); /* errno is set for us */
926
927 if (stp->smbst_hdr->smbh_type != SMB_TYPE_MEMARRAYMAP)
928 return (smb_set_errno(shp, ESMB_TYPE));
929
930 smb_info_bcopy(stp->smbst_hdr, &m, sizeof (m));
931 bzero(map, sizeof (smbios_memarrmap_t));
932
933 map->smbmam_array = m.smbamap_array;
934 map->smbmam_width = m.smbamap_width;
935
936 if (m.smbamap_start != 0xFFFFFFFF && m.smbamap_end != 0xFFFFFFFF) {
937 map->smbmam_addr = (uint64_t)m.smbamap_start * 1024;
938 map->smbmam_size = (uint64_t)
939 (m.smbamap_end - m.smbamap_start + 1) * 1024;
940 } else if (m.smbamap_extstart != 0 && m.smbamap_extend != 0) {
941 map->smbmam_addr = m.smbamap_extstart;
942 map->smbmam_size = m.smbamap_extend - m.smbamap_extstart + 1;
943 }
944
945 return (0);
946 }
947
948 int
smbios_info_memdevice(smbios_hdl_t * shp,id_t id,smbios_memdevice_t * mdp)949 smbios_info_memdevice(smbios_hdl_t *shp, id_t id, smbios_memdevice_t *mdp)
950 {
951 const smb_struct_t *stp = smb_lookup_id(shp, id);
952 smb_memdevice_t m;
953
954 if (stp == NULL)
955 return (-1); /* errno is set for us */
956
957 if (stp->smbst_hdr->smbh_type != SMB_TYPE_MEMDEVICE)
958 return (smb_set_errno(shp, ESMB_TYPE));
959
960 smb_info_bcopy(stp->smbst_hdr, &m, sizeof (m));
961 bzero(mdp, sizeof (smb_base_memdevice_t));
962
963 mdp->smbmd_array = m.smbmdev_array;
964 mdp->smbmd_error = m.smbmdev_error;
965 mdp->smbmd_twidth = m.smbmdev_twidth == 0xFFFF ? -1U : m.smbmdev_twidth;
966 mdp->smbmd_dwidth = m.smbmdev_dwidth == 0xFFFF ? -1U : m.smbmdev_dwidth;
967
968 if (m.smbmdev_size == 0x7FFF) {
969 mdp->smbmd_size = (uint64_t)m.smbmdev_extsize;
970 mdp->smbmd_size *= 1024 * 1024; /* convert MB to bytes */
971 } else if (m.smbmdev_size != 0xFFFF) {
972 mdp->smbmd_size = (uint64_t)(m.smbmdev_size & ~SMB_MDS_KBYTES);
973 if (m.smbmdev_size & SMB_MDS_KBYTES)
974 mdp->smbmd_size *= 1024;
975 else
976 mdp->smbmd_size *= 1024 * 1024;
977 } else
978 mdp->smbmd_size = -1ULL; /* size unknown */
979
980 mdp->smbmd_form = m.smbmdev_form;
981 mdp->smbmd_set = m.smbmdev_set;
982 mdp->smbmd_type = m.smbmdev_type;
983 mdp->smbmd_speed = m.smbmdev_speed;
984 mdp->smbmd_flags = m.smbmdev_flags;
985 mdp->smbmd_dloc = smb_strptr(stp, m.smbmdev_dloc);
986 mdp->smbmd_bloc = smb_strptr(stp, m.smbmdev_bloc);
987
988 if (smb_libgteq(shp, SMB_VERSION_26)) {
989 mdp->smbmd_rank = m.smbmdev_attrs & 0x0F;
990 }
991
992 if (smb_libgteq(shp, SMB_VERSION_27)) {
993 mdp->smbmd_clkspeed = m.smbmdev_clkspeed;
994 }
995
996 if (smb_libgteq(shp, SMB_VERSION_28)) {
997 mdp->smbmd_minvolt = m.smbmdev_minvolt;
998 mdp->smbmd_maxvolt = m.smbmdev_maxvolt;
999 mdp->smbmd_confvolt = m.smbmdev_confvolt;
1000 }
1001
1002 if (smb_libgteq(shp, SMB_VERSION_32)) {
1003 mdp->smbmd_memtech = m.smbmdev_memtech;
1004 mdp->smbmd_opcap_flags = m.smbmdev_opmode;
1005 mdp->smbmd_firmware_rev = smb_strptr(stp,
1006 m.smbmdev_fwver);
1007 mdp->smbmd_modmfg_id = m.smbmdev_modulemfgid;
1008 mdp->smbmd_modprod_id = m.smbmdev_moduleprodid;
1009 mdp->smbmd_cntrlmfg_id = m.smbmdev_memsysmfgid;
1010 mdp->smbmd_cntrlprod_id = m.smbmdev_memsysprodid;
1011 mdp->smbmd_nvsize = m.smbmdev_nvsize;
1012 mdp->smbmd_volatile_size = m.smbmdev_volsize;
1013 mdp->smbmd_cache_size = m.smbmdev_cachesize;
1014 mdp->smbmd_logical_size = m.smbmdev_logicalsize;
1015 }
1016
1017 return (0);
1018 }
1019
1020 int
smbios_info_memdevmap(smbios_hdl_t * shp,id_t id,smbios_memdevmap_t * mdp)1021 smbios_info_memdevmap(smbios_hdl_t *shp, id_t id, smbios_memdevmap_t *mdp)
1022 {
1023 const smb_struct_t *stp = smb_lookup_id(shp, id);
1024 smb_memdevmap_t m;
1025
1026 if (stp == NULL)
1027 return (-1); /* errno is set for us */
1028
1029 if (stp->smbst_hdr->smbh_type != SMB_TYPE_MEMDEVICEMAP)
1030 return (smb_set_errno(shp, ESMB_TYPE));
1031
1032 smb_info_bcopy(stp->smbst_hdr, &m, sizeof (m));
1033 bzero(mdp, sizeof (smbios_memdevmap_t));
1034
1035 mdp->smbmdm_device = m.smbdmap_device;
1036 mdp->smbmdm_arrmap = m.smbdmap_array;
1037 mdp->smbmdm_rpos = m.smbdmap_rpos;
1038 mdp->smbmdm_ipos = m.smbdmap_ipos;
1039 mdp->smbmdm_idepth = m.smbdmap_idepth;
1040
1041 if (m.smbdmap_start != 0xFFFFFFFF && m.smbdmap_end != 0xFFFFFFFF) {
1042 mdp->smbmdm_addr = (uint64_t)m.smbdmap_start * 1024;
1043 mdp->smbmdm_size = (uint64_t)
1044 (m.smbdmap_end - m.smbdmap_start + 1) * 1024;
1045 } else if (m.smbdmap_extstart != 0 && m.smbdmap_extend != 0) {
1046 mdp->smbmdm_addr = m.smbdmap_extstart;
1047 mdp->smbmdm_size = m.smbdmap_extend - m.smbdmap_extstart + 1;
1048 }
1049
1050 return (0);
1051 }
1052
1053 id_t
smbios_info_hwsec(smbios_hdl_t * shp,smbios_hwsec_t * hsp)1054 smbios_info_hwsec(smbios_hdl_t *shp, smbios_hwsec_t *hsp)
1055 {
1056 const smb_struct_t *stp = smb_lookup_type(shp, SMB_TYPE_SECURITY);
1057 smb_hwsec_t hs;
1058
1059 if (stp == NULL)
1060 return (-1); /* errno is set for us */
1061
1062 smb_info_bcopy(stp->smbst_hdr, &hs, sizeof (hs));
1063 bzero(hsp, sizeof (smbios_hwsec_t));
1064
1065 hsp->smbh_pwr_ps = SMB_HWS_PWR_PS(hs.smbhs_settings);
1066 hsp->smbh_kbd_ps = SMB_HWS_KBD_PS(hs.smbhs_settings);
1067 hsp->smbh_adm_ps = SMB_HWS_ADM_PS(hs.smbhs_settings);
1068 hsp->smbh_pan_ps = SMB_HWS_PAN_PS(hs.smbhs_settings);
1069
1070 return (stp->smbst_hdr->smbh_hdl);
1071 }
1072
1073 id_t
smbios_info_boot(smbios_hdl_t * shp,smbios_boot_t * bp)1074 smbios_info_boot(smbios_hdl_t *shp, smbios_boot_t *bp)
1075 {
1076 const smb_struct_t *stp = smb_lookup_type(shp, SMB_TYPE_BOOT);
1077 const smb_boot_t *b;
1078
1079 if (stp == NULL)
1080 return (-1); /* errno is set for us */
1081
1082 bzero(bp, sizeof (smbios_boot_t));
1083
1084 b = (smb_boot_t *)(uintptr_t)stp->smbst_hdr;
1085
1086 bp->smbt_status = b->smbbo_status[0];
1087 bp->smbt_size = stp->smbst_hdr->smbh_len - sizeof (smb_boot_t);
1088 bp->smbt_data = bp->smbt_size ? &b->smbbo_status[1] : NULL;
1089
1090 return (stp->smbst_hdr->smbh_hdl);
1091 }
1092
1093 id_t
smbios_info_ipmi(smbios_hdl_t * shp,smbios_ipmi_t * ip)1094 smbios_info_ipmi(smbios_hdl_t *shp, smbios_ipmi_t *ip)
1095 {
1096 const smb_struct_t *stp = smb_lookup_type(shp, SMB_TYPE_IPMIDEV);
1097 smb_ipmi_t i;
1098
1099 if (stp == NULL)
1100 return (-1); /* errno is set for us */
1101
1102 smb_info_bcopy(stp->smbst_hdr, &i, sizeof (i));
1103 bzero(ip, sizeof (smbios_ipmi_t));
1104
1105 ip->smbip_type = i.smbipm_type;
1106 ip->smbip_vers.smbv_major = SMB_IPM_SPEC_MAJOR(i.smbipm_spec);
1107 ip->smbip_vers.smbv_minor = SMB_IPM_SPEC_MINOR(i.smbipm_spec);
1108 ip->smbip_i2c = i.smbipm_i2c;
1109 ip->smbip_addr = i.smbipm_addr & ~SMB_IPM_ADDR_IO;
1110 ip->smbip_intr = i.smbipm_intr;
1111
1112 if (i.smbipm_bus != (uint8_t)-1)
1113 ip->smbip_bus = i.smbipm_bus;
1114 else
1115 ip->smbip_bus = -1u;
1116
1117 if (SMB_IPM_INFO_LSB(i.smbipm_info))
1118 ip->smbip_addr |= 1; /* turn on least-significant bit of addr */
1119
1120 if (i.smbipm_addr & SMB_IPM_ADDR_IO) {
1121 switch (SMB_IPM_INFO_REGS(i.smbipm_info)) {
1122 case SMB_IPM_REGS_1B:
1123 ip->smbip_regspacing = 1;
1124 break;
1125 case SMB_IPM_REGS_4B:
1126 ip->smbip_regspacing = 4;
1127 break;
1128 case SMB_IPM_REGS_16B:
1129 ip->smbip_regspacing = 16;
1130 break;
1131 default:
1132 ip->smbip_regspacing = 1;
1133 }
1134 ip->smbip_flags |= SMB_IPMI_F_IOADDR;
1135 }
1136
1137 if (SMB_IPM_INFO_ISPEC(i.smbipm_info))
1138 ip->smbip_flags |= SMB_IPMI_F_INTRSPEC;
1139
1140 if (SMB_IPM_INFO_IPOL(i.smbipm_info) == SMB_IPM_IPOL_HI)
1141 ip->smbip_flags |= SMB_IPMI_F_INTRHIGH;
1142
1143 if (SMB_IPM_INFO_IMODE(i.smbipm_info) == SMB_IPM_IMODE_EDGE)
1144 ip->smbip_flags |= SMB_IPMI_F_INTREDGE;
1145
1146 return (stp->smbst_hdr->smbh_hdl);
1147 }
1148
1149 static boolean_t
smbios_has_oemstr(smbios_hdl_t * shp,const char * oemstr)1150 smbios_has_oemstr(smbios_hdl_t *shp, const char *oemstr)
1151 {
1152 const smb_struct_t *stp = shp->sh_structs;
1153 smb_strtab_t s;
1154 int i, j;
1155
1156 for (i = 0; i < shp->sh_nstructs; i++, stp++) {
1157 if (stp->smbst_hdr->smbh_type != SMB_TYPE_OEMSTR)
1158 continue;
1159
1160 smb_info_bcopy(stp->smbst_hdr, &s, sizeof (s));
1161 for (j = 0; j < s.smbtb_count; j++)
1162 if (strcmp(smb_strptr(stp, j + 1), oemstr) == 0)
1163 return (B_TRUE);
1164 }
1165
1166 return (B_FALSE);
1167 }
1168
1169 static const char *
smb_serial_valid(const char * serial)1170 smb_serial_valid(const char *serial)
1171 {
1172 char buf[MAXNAMELEN];
1173 int i = 0;
1174
1175 if (serial == NULL)
1176 return (NULL);
1177
1178 (void) strlcpy(buf, serial, sizeof (buf));
1179
1180 while (buf[i] != '\0' && buf[i] == ' ')
1181 i++;
1182
1183 if (buf[i] == '\0' || strstr(buf, SMB_DEFAULT1) != NULL ||
1184 strstr(buf, SMB_DEFAULT2) != NULL)
1185 return (NULL);
1186
1187 return (serial);
1188 }
1189
1190 /*
1191 * Get chassis SN or product SN
1192 */
1193 static int
smb_get_sn(smbios_hdl_t * shp,const char ** psnp,const char ** csnp)1194 smb_get_sn(smbios_hdl_t *shp, const char **psnp, const char **csnp)
1195 {
1196 const smb_struct_t *stp;
1197 smbios_info_t s1, s3;
1198
1199 if (psnp == NULL || csnp == NULL)
1200 return (smb_set_errno(shp, ESMB_INVAL));
1201
1202 *psnp = *csnp = NULL;
1203
1204 /*
1205 * If SMBIOS meets Sun's PRMS requirements, retrieve product SN
1206 * from type 1 structure, and chassis SN from type 3 structure.
1207 * Otherwise return SN in type 1 structure as chassis SN.
1208 */
1209
1210 /* Get type 1 SN */
1211 if ((stp = smb_lookup_type(shp, SMB_TYPE_SYSTEM)) == NULL ||
1212 smbios_info_common(shp, stp->smbst_hdr->smbh_hdl, &s1) == SMB_ERR)
1213 s1.smbi_serial = NULL;
1214
1215 /* Get type 3 SN */
1216 if ((stp = smb_lookup_type(shp, SMB_TYPE_CHASSIS)) == NULL ||
1217 smbios_info_common(shp, stp->smbst_hdr->smbh_hdl, &s3) == SMB_ERR)
1218 s3.smbi_serial = NULL;
1219
1220 if (smbios_has_oemstr(shp, SMB_PRMS1)) {
1221 *psnp = smb_serial_valid(s1.smbi_serial);
1222 *csnp = smb_serial_valid(s3.smbi_serial);
1223 } else {
1224 *csnp = smb_serial_valid(s1.smbi_serial);
1225 }
1226
1227 return (0);
1228 }
1229
1230 const char *
smbios_psn(smbios_hdl_t * shp)1231 smbios_psn(smbios_hdl_t *shp)
1232 {
1233 const char *psn, *csn;
1234
1235 return (smb_get_sn(shp, &psn, &csn) == SMB_ERR ? NULL : psn);
1236 }
1237
1238 const char *
smbios_csn(smbios_hdl_t * shp)1239 smbios_csn(smbios_hdl_t *shp)
1240 {
1241 const char *psn, *csn;
1242
1243 return (smb_get_sn(shp, &psn, &csn) == SMB_ERR ? NULL : csn);
1244 }
1245
1246 int
smbios_info_extprocessor(smbios_hdl_t * shp,id_t id,smbios_processor_ext_t * epp)1247 smbios_info_extprocessor(smbios_hdl_t *shp, id_t id,
1248 smbios_processor_ext_t *epp)
1249 {
1250 const smb_struct_t *stp = smb_lookup_id(shp, id);
1251 smb_processor_ext_t *exp;
1252
1253 if (stp == NULL)
1254 return (-1); /* errno is set for us */
1255
1256 if (stp->smbst_hdr->smbh_type != SUN_OEM_EXT_PROCESSOR)
1257 return (smb_set_errno(shp, ESMB_TYPE));
1258
1259 exp = (smb_processor_ext_t *)(uintptr_t)stp->smbst_hdr;
1260 bzero(epp, sizeof (smbios_processor_ext_t));
1261
1262 epp->smbpe_processor = exp->smbpre_processor;
1263 epp->smbpe_fru = exp->smbpre_fru;
1264 epp->smbpe_n = exp->smbpre_n;
1265 epp->smbpe_apicid = exp->smbpre_apicid;
1266
1267 return (0);
1268 }
1269
1270 int
smbios_info_extport(smbios_hdl_t * shp,id_t id,smbios_port_ext_t * eportp)1271 smbios_info_extport(smbios_hdl_t *shp, id_t id, smbios_port_ext_t *eportp)
1272 {
1273 const smb_struct_t *stp = smb_lookup_id(shp, id);
1274 smb_port_ext_t *ep;
1275
1276 if (stp == NULL)
1277 return (-1); /* errno is set for us */
1278
1279 if (stp->smbst_hdr->smbh_type != SUN_OEM_EXT_PORT)
1280 return (smb_set_errno(shp, ESMB_TYPE));
1281
1282 ep = (smb_port_ext_t *)(uintptr_t)stp->smbst_hdr;
1283 bzero(eportp, sizeof (smbios_port_ext_t));
1284
1285 eportp->smbporte_chassis = ep->smbpoe_chassis;
1286 eportp->smbporte_port = ep->smbpoe_port;
1287 eportp->smbporte_dtype = ep->smbpoe_dtype;
1288 eportp->smbporte_devhdl = ep->smbpoe_devhdl;
1289 eportp->smbporte_phy = ep->smbpoe_phy;
1290
1291 return (0);
1292 }
1293
1294 int
smbios_info_pciexrc(smbios_hdl_t * shp,id_t id,smbios_pciexrc_t * rcp)1295 smbios_info_pciexrc(smbios_hdl_t *shp, id_t id,
1296 smbios_pciexrc_t *rcp)
1297 {
1298 const smb_struct_t *stp = smb_lookup_id(shp, id);
1299 smb_pciexrc_t rc;
1300
1301 if (stp == NULL)
1302 return (-1); /* errno is set for us */
1303
1304 if (stp->smbst_hdr->smbh_type != SUN_OEM_PCIEXRC)
1305 return (smb_set_errno(shp, ESMB_TYPE));
1306
1307 smb_info_bcopy(stp->smbst_hdr, &rc, sizeof (rc));
1308 bzero(rcp, sizeof (smbios_pciexrc_t));
1309
1310 rcp->smbpcie_bb = rc.smbpciexrc_bboard;
1311 rcp->smbpcie_bdf = rc.smbpciexrc_bdf;
1312
1313 return (0);
1314 }
1315
1316 int
smbios_info_extmemarray(smbios_hdl_t * shp,id_t id,smbios_memarray_ext_t * emap)1317 smbios_info_extmemarray(smbios_hdl_t *shp, id_t id, smbios_memarray_ext_t *emap)
1318 {
1319 const smb_struct_t *stp = smb_lookup_id(shp, id);
1320 smb_memarray_ext_t exma;
1321
1322 if (stp == NULL)
1323 return (-1); /* errno is set for us */
1324
1325 if (stp->smbst_hdr->smbh_type != SUN_OEM_EXT_MEMARRAY)
1326 return (smb_set_errno(shp, ESMB_TYPE));
1327
1328 smb_info_bcopy(stp->smbst_hdr, &exma, sizeof (exma));
1329 bzero(emap, sizeof (smbios_memarray_ext_t));
1330
1331 emap->smbmae_ma = exma.smbmarre_ma;
1332 emap->smbmae_comp = exma.smbmarre_component;
1333 emap->smbmae_bdf = exma.smbmarre_bdf;
1334
1335 return (0);
1336 }
1337
1338 int
smbios_info_extmemdevice(smbios_hdl_t * shp,id_t id,smbios_memdevice_ext_t * emdp)1339 smbios_info_extmemdevice(smbios_hdl_t *shp, id_t id,
1340 smbios_memdevice_ext_t *emdp)
1341 {
1342 const smb_struct_t *stp = smb_lookup_id(shp, id);
1343 smb_memdevice_ext_t exmd;
1344
1345 if (stp == NULL)
1346 return (-1); /* errno is set for us */
1347
1348 if (stp->smbst_hdr->smbh_type != SUN_OEM_EXT_MEMDEVICE)
1349 return (smb_set_errno(shp, ESMB_TYPE));
1350
1351 smb_info_bcopy(stp->smbst_hdr, &exmd, sizeof (exmd));
1352 bzero(emdp, sizeof (smbios_memdevice_ext_t));
1353
1354 emdp->smbmdeve_md = exmd.smbmdeve_mdev;
1355 emdp->smbmdeve_drch = exmd.smbmdeve_dchan;
1356 emdp->smbmdeve_ncs = exmd.smbmdeve_ncs;
1357 emdp->smbmdeve_cs = exmd.smbmdeve_cs;
1358
1359 return (0);
1360 }
1361
1362 int
smbios_info_powersup(smbios_hdl_t * shp,id_t id,smbios_powersup_t * psup)1363 smbios_info_powersup(smbios_hdl_t *shp, id_t id, smbios_powersup_t *psup)
1364 {
1365 const smb_struct_t *stp = smb_lookup_id(shp, id);
1366 smb_powersup_t psu;
1367
1368 if (stp == NULL)
1369 return (-1); /* errno is set for us */
1370
1371 if (stp->smbst_hdr->smbh_type != SMB_TYPE_POWERSUP)
1372 return (smb_set_errno(shp, ESMB_TYPE));
1373
1374 /* The minimum length required by the spec is 0x10. */
1375 if (stp->smbst_hdr->smbh_len < 0x10)
1376 return (smb_set_errno(shp, ESMB_SHORT));
1377
1378 bzero(psup, sizeof (*psup));
1379 smb_info_bcopy(stp->smbst_hdr, &psu, sizeof (psu));
1380 psup->smbps_group = psu.smbpsup_group;
1381 psup->smbps_maxout = psu.smbpsup_max;
1382
1383 if (SMB_PSU_CHARS_ISHOT(psu.smbpsup_char))
1384 psup->smbps_flags |= SMB_POWERSUP_F_HOT;
1385 if (SMB_PSU_CHARS_ISPRES(psu.smbpsup_char))
1386 psup->smbps_flags |= SMB_POWERSUP_F_PRESENT;
1387 if (SMB_PSU_CHARS_ISUNPLUG(psu.smbpsup_char))
1388 psup->smbps_flags |= SMB_POWERSUP_F_UNPLUG;
1389
1390 psup->smbps_ivrs = SMB_PSU_CHARS_IVRS(psu.smbpsup_char);
1391 psup->smbps_status = SMB_PSU_CHARS_STATUS(psu.smbpsup_char);
1392 psup->smbps_pstype = SMB_PSU_CHARS_TYPE(psu.smbpsup_char);
1393
1394 if (stp->smbst_hdr->smbh_len >= 0x12) {
1395 psup->smbps_vprobe = psu.smbpsup_vprobe;
1396 } else {
1397 psup->smbps_vprobe = 0xffff;
1398 }
1399
1400 if (stp->smbst_hdr->smbh_len >= 0x14) {
1401 psup->smbps_cooldev = psu.smbpsup_cooldev;
1402 } else {
1403 psup->smbps_cooldev = 0xffff;
1404 }
1405
1406 if (stp->smbst_hdr->smbh_len >= 0x16) {
1407 psup->smbps_iprobe = psu.smbpsup_iprobe;
1408 } else {
1409 psup->smbps_iprobe = 0xffff;
1410 }
1411
1412 return (0);
1413 }
1414
1415 int
smbios_info_vprobe(smbios_hdl_t * shp,id_t id,smbios_vprobe_t * vprobe)1416 smbios_info_vprobe(smbios_hdl_t *shp, id_t id, smbios_vprobe_t *vprobe)
1417 {
1418 const smb_struct_t *stp = smb_lookup_id(shp, id);
1419 smb_vprobe_t vp;
1420
1421 if (stp == NULL)
1422 return (-1); /* errno is set for us */
1423
1424 if (stp->smbst_hdr->smbh_type != SMB_TYPE_VPROBE)
1425 return (smb_set_errno(shp, ESMB_TYPE));
1426
1427 if (stp->smbst_hdr->smbh_len < SMB_VPROBE_MINLEN)
1428 return (smb_set_errno(shp, ESMB_SHORT));
1429
1430 bzero(vprobe, sizeof (*vprobe));
1431 smb_info_bcopy(stp->smbst_hdr, &vp, sizeof (vp));
1432 vprobe->smbvp_description = smb_strptr(stp, vp.smbvpr_descr);
1433 vprobe->smbvp_location = SMB_VPROBE_LOCATION(vp.smbvpr_locstat);
1434 vprobe->smbvp_status = SMB_VPROBE_STATUS(vp.smbvpr_locstat);
1435 vprobe->smbvp_maxval = vp.smbvpr_maxval;
1436 vprobe->smbvp_minval = vp.smbvpr_minval;
1437 vprobe->smbvp_resolution = vp.smbvpr_resolution;
1438 vprobe->smbvp_tolerance = vp.smbvpr_tolerance;
1439 vprobe->smbvp_accuracy = vp.smbvpr_accuracy;
1440
1441 if (stp->smbst_hdr->smbh_len >= SMB_VPROBE_NOMINAL_MINLEN) {
1442 vprobe->smbvp_nominal = vp.smbvpr_nominal;
1443 } else {
1444 vprobe->smbvp_nominal = SMB_PROBE_UNKNOWN_VALUE;
1445 }
1446
1447 return (0);
1448 }
1449
1450 int
smbios_info_cooldev(smbios_hdl_t * shp,id_t id,smbios_cooldev_t * cooldev)1451 smbios_info_cooldev(smbios_hdl_t *shp, id_t id, smbios_cooldev_t *cooldev)
1452 {
1453 const smb_struct_t *stp = smb_lookup_id(shp, id);
1454 smb_cooldev_t cd;
1455
1456 if (stp == NULL)
1457 return (-1); /* errno is set for us */
1458
1459 if (stp->smbst_hdr->smbh_type != SMB_TYPE_COOLDEV)
1460 return (smb_set_errno(shp, ESMB_TYPE));
1461
1462 if (stp->smbst_hdr->smbh_len < SMB_COOLDEV_MINLEN)
1463 return (smb_set_errno(shp, ESMB_SHORT));
1464
1465 bzero(cooldev, sizeof (*cooldev));
1466 smb_info_bcopy(stp->smbst_hdr, &cd, sizeof (cd));
1467 cooldev->smbcd_tprobe = cd.smbcdev_tprobe;
1468 cooldev->smbcd_type = SMB_COOLDEV_TYPE(cd.smbcdev_typstat);
1469 cooldev->smbcd_status = SMB_COOLDEV_STATUS(cd.smbcdev_typstat);
1470 cooldev->smbcd_group = cd.smbcdev_group;
1471 cooldev->smbcd_oem = cd.smbcdev_oem;
1472
1473 if (stp->smbst_hdr->smbh_len >= SMB_COOLDEV_NOMINAL_MINLEN) {
1474 cooldev->smbcd_nominal = cd.smbcdev_nominal;
1475 } else {
1476 cooldev->smbcd_nominal = SMB_PROBE_UNKNOWN_VALUE;
1477 }
1478
1479 /*
1480 * The description field was added in SMBIOS version 2.7. The
1481 * SMB_TYPE_COOLDEV support was only added after all of the 2.7+ fields
1482 * were added in the spec. So while a user may request an older version,
1483 * we don't have to worry about old structures and just simply skip it
1484 * if they're not asking for it.
1485 */
1486 if (smb_libgteq(shp, SMB_VERSION_27) &&
1487 smb_gteq(shp, SMB_VERSION_27) &&
1488 stp->smbst_hdr->smbh_len >= SMB_COOLDEV_DESCR_MINLEN) {
1489 cooldev->smbcd_descr = smb_strptr(stp, cd.smbcdev_descr);
1490 } else {
1491 cooldev->smbcd_descr = NULL;
1492 }
1493
1494 return (0);
1495 }
1496
1497 int
smbios_info_tprobe(smbios_hdl_t * shp,id_t id,smbios_tprobe_t * tprobe)1498 smbios_info_tprobe(smbios_hdl_t *shp, id_t id, smbios_tprobe_t *tprobe)
1499 {
1500 const smb_struct_t *stp = smb_lookup_id(shp, id);
1501 smb_tprobe_t tp;
1502
1503 if (stp == NULL)
1504 return (-1); /* errno is set for us */
1505
1506 if (stp->smbst_hdr->smbh_type != SMB_TYPE_TPROBE)
1507 return (smb_set_errno(shp, ESMB_TYPE));
1508
1509 if (stp->smbst_hdr->smbh_len < SMB_TPROBE_MINLEN)
1510 return (smb_set_errno(shp, ESMB_SHORT));
1511
1512 bzero(tprobe, sizeof (*tprobe));
1513 smb_info_bcopy(stp->smbst_hdr, &tp, sizeof (tp));
1514 tprobe->smbtp_description = smb_strptr(stp, tp.smbtpr_descr);
1515 tprobe->smbtp_location = SMB_TPROBE_LOCATION(tp.smbtpr_locstat);
1516 tprobe->smbtp_status = SMB_TPROBE_STATUS(tp.smbtpr_locstat);
1517 tprobe->smbtp_maxval = tp.smbtpr_maxval;
1518 tprobe->smbtp_minval = tp.smbtpr_minval;
1519 tprobe->smbtp_resolution = tp.smbtpr_resolution;
1520 tprobe->smbtp_tolerance = tp.smbtpr_tolerance;
1521 tprobe->smbtp_accuracy = tp.smbtpr_accuracy;
1522
1523 if (stp->smbst_hdr->smbh_len >= SMB_TPROBE_NOMINAL_MINLEN) {
1524 tprobe->smbtp_nominal = tp.smbtpr_nominal;
1525 } else {
1526 tprobe->smbtp_nominal = SMB_PROBE_UNKNOWN_VALUE;
1527 }
1528
1529 return (0);
1530 }
1531
1532 int
smbios_info_iprobe(smbios_hdl_t * shp,id_t id,smbios_iprobe_t * iprobe)1533 smbios_info_iprobe(smbios_hdl_t *shp, id_t id, smbios_iprobe_t *iprobe)
1534 {
1535 const smb_struct_t *sip = smb_lookup_id(shp, id);
1536 smb_iprobe_t ip;
1537
1538 if (sip == NULL)
1539 return (-1); /* errno is set for us */
1540
1541 if (sip->smbst_hdr->smbh_type != SMB_TYPE_IPROBE)
1542 return (smb_set_errno(shp, ESMB_TYPE));
1543
1544 if (sip->smbst_hdr->smbh_len < SMB_IPROBE_MINLEN)
1545 return (smb_set_errno(shp, ESMB_SHORT));
1546
1547 bzero(iprobe, sizeof (*iprobe));
1548 smb_info_bcopy(sip->smbst_hdr, &ip, sizeof (ip));
1549 iprobe->smbip_description = smb_strptr(sip, ip.smbipr_descr);
1550 iprobe->smbip_location = SMB_IPROBE_LOCATION(ip.smbipr_locstat);
1551 iprobe->smbip_status = SMB_IPROBE_STATUS(ip.smbipr_locstat);
1552 iprobe->smbip_maxval = ip.smbipr_maxval;
1553 iprobe->smbip_minval = ip.smbipr_minval;
1554 iprobe->smbip_resolution = ip.smbipr_resolution;
1555 iprobe->smbip_tolerance = ip.smbipr_tolerance;
1556 iprobe->smbip_accuracy = ip.smbipr_accuracy;
1557
1558 if (sip->smbst_hdr->smbh_len >= SMB_IPROBE_NOMINAL_MINLEN) {
1559 iprobe->smbip_nominal = ip.smbipr_nominal;
1560 } else {
1561 iprobe->smbip_nominal = SMB_PROBE_UNKNOWN_VALUE;
1562 }
1563
1564 return (0);
1565 }
1566