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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2015 OmniTI Computer Consulting, Inc. All rights reserved.
* Copyright (c) 2018, Joyent, Inc.
* Copyright 2020 Oxide Computer Company
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <sys/sysmacros.h>
#include <sys/param.h>
#include <smbios.h>
#include <alloca.h>
#include <limits.h>
#include <unistd.h>
#include <strings.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <ctype.h>
#include <libjedec.h>
#define SMBIOS_SUCCESS 0
#define SMBIOS_ERROR 1
#define SMBIOS_USAGE 2
static const char *g_pname;
static int g_hdr;
static int opt_e;
static int opt_i = -1;
static int opt_O;
static int opt_s;
static int opt_t = -1;
static int opt_x;
static boolean_t
smbios_vergteq(smbios_version_t *v, uint_t major, uint_t minor)
{
if (v->smbv_major > major)
return (B_TRUE);
if (v->smbv_major == major &&
v->smbv_minor >= minor)
return (B_TRUE);
return (B_FALSE);
}
/*PRINTFLIKE2*/
static void
smbios_warn(smbios_hdl_t *shp, const char *format, ...)
{
va_list ap;
va_start(ap, format);
(void) vfprintf(stderr, format, ap);
va_end(ap);
if (shp != NULL) {
(void) fprintf(stderr, ": %s",
smbios_errmsg(smbios_errno(shp)));
}
(void) fprintf(stderr, "\n");
}
/*PRINTFLIKE2*/
static void
oprintf(FILE *fp, const char *format, ...)
{
va_list ap;
va_start(ap, format);
(void) vfprintf(fp, format, ap);
va_end(ap);
}
/*PRINTFLIKE3*/
static void
desc_printf(const char *d, FILE *fp, const char *format, ...)
{
va_list ap;
va_start(ap, format);
(void) vfprintf(fp, format, ap);
va_end(ap);
if (d != NULL)
(void) fprintf(fp, " (%s)\n", d);
else
(void) fprintf(fp, "\n");
}
static void
flag_printf(FILE *fp, const char *s, uint_t flags, size_t bits,
const char *(*flag_name)(uint_t), const char *(*flag_desc)(uint_t))
{
size_t i;
oprintf(fp, " %s: 0x%x\n", s, flags);
for (i = 0; i < bits; i++) {
uint_t f = 1 << i;
const char *n;
if (!(flags & f))
continue;
if ((n = flag_name(f)) != NULL)
desc_printf(flag_desc(f), fp, "\t%s", n);
else
desc_printf(flag_desc(f), fp, "\t0x%x", f);
}
}
static void
flag64_printf(FILE *fp, const char *s, uint64_t flags, size_t bits,
const char *(*flag_name)(uint64_t), const char *(*flag_desc)(uint64_t))
{
size_t i;
oprintf(fp, " %s: 0x%llx\n", s, (u_longlong_t)flags);
for (i = 0; i < bits; i++) {
u_longlong_t f = 1ULL << i;
const char *n;
if (!(flags & f))
continue;
if ((n = flag_name(f)) != NULL)
desc_printf(flag_desc(f), fp, "\t%s", n);
else
desc_printf(flag_desc(f), fp, "\t0x%llx", f);
}
}
static void
id_printf(FILE *fp, const char *s, id_t id)
{
switch (id) {
case SMB_ID_NONE:
oprintf(fp, "%sNone\n", s);
break;
case SMB_ID_NOTSUP:
oprintf(fp, "%sNot Supported\n", s);
break;
default:
oprintf(fp, "%s%u\n", s, (uint_t)id);
}
}
static void
jedec_print(FILE *fp, const char *desc, uint_t id)
{
const char *name;
uint_t cont, vendor;
/*
* SMBIOS encodes data in the way that the underlying memory standard
* does. In this case, the upper byte indicates the vendor that we care
* about while the lower byte indicates the number of continuations that
* are needed. libjedec indexes this based on zero (e.g. table 1 is zero
* continuations), which is how the spec encodes it. We add one so that
* we can match how the spec describes it.
*/
vendor = id >> 8;
cont = id & 0x7f;
name = libjedec_vendor_string(cont, vendor);
if (name == NULL) {
oprintf(fp, " %s: Bank: 0x%x Vendor: 0x%x\n", desc, cont + 1,
vendor);
} else {
oprintf(fp, " %s: Bank: 0x%x Vendor: 0x%x (%s)\n", desc,
cont + 1, vendor, name);
}
}
/*
* Print a 128-bit data as a series of 16 hex digits.
*/
static void
u128_print(FILE *fp, const char *desc, const uint8_t *data)
{
uint_t i;
oprintf(fp, "%s: ", desc);
for (i = 0; i < 16; i++) {
oprintf(fp, " %02x", data[i]);
}
oprintf(fp, "\n");
}
static int
check_oem(smbios_hdl_t *shp)
{
int i;
int cnt;
int rv;
id_t oem_id;
smbios_struct_t s;
const char **oem_str;
rv = smbios_lookup_type(shp, SMB_TYPE_OEMSTR, &s);
if (rv != 0) {
return (-1);
}
oem_id = s.smbstr_id;
cnt = smbios_info_strtab(shp, oem_id, 0, NULL);
if (cnt > 0) {
oem_str = alloca(sizeof (char *) * cnt);
(void) smbios_info_strtab(shp, oem_id, cnt, oem_str);
for (i = 0; i < cnt; i++) {
if (strncmp(oem_str[i], SMB_PRMS1,
strlen(SMB_PRMS1) + 1) == 0) {
return (0);
}
}
}
return (-1);
}
static void
print_smbios_21(smbios_21_entry_t *ep, FILE *fp)
{
int i;
oprintf(fp, "Entry Point Anchor Tag: %*.*s\n",
(int)sizeof (ep->smbe_eanchor), (int)sizeof (ep->smbe_eanchor),
ep->smbe_eanchor);
oprintf(fp, "Entry Point Checksum: 0x%x\n", ep->smbe_ecksum);
oprintf(fp, "Entry Point Length: %u\n", ep->smbe_elen);
oprintf(fp, "Entry Point Version: %u.%u\n",
ep->smbe_major, ep->smbe_minor);
oprintf(fp, "Max Structure Size: %u\n", ep->smbe_maxssize);
oprintf(fp, "Entry Point Revision: 0x%x\n", ep->smbe_revision);
oprintf(fp, "Entry Point Revision Data:");
for (i = 0; i < sizeof (ep->smbe_format); i++)
oprintf(fp, " 0x%02x", ep->smbe_format[i]);
oprintf(fp, "\n");
oprintf(fp, "Intermediate Anchor Tag: %*.*s\n",
(int)sizeof (ep->smbe_ianchor), (int)sizeof (ep->smbe_ianchor),
ep->smbe_ianchor);
oprintf(fp, "Intermediate Checksum: 0x%x\n", ep->smbe_icksum);
oprintf(fp, "Structure Table Length: %u\n", ep->smbe_stlen);
oprintf(fp, "Structure Table Address: 0x%x\n", ep->smbe_staddr);
oprintf(fp, "Structure Table Entries: %u\n", ep->smbe_stnum);
oprintf(fp, "DMI BCD Revision: 0x%x\n", ep->smbe_bcdrev);
}
static void
print_smbios_30(smbios_30_entry_t *ep, FILE *fp)
{
oprintf(fp, "Entry Point Anchor Tag: %*.*s\n",
(int)sizeof (ep->smbe_eanchor), (int)sizeof (ep->smbe_eanchor),
ep->smbe_eanchor);
oprintf(fp, "Entry Point Checksum: 0x%x\n", ep->smbe_ecksum);
oprintf(fp, "Entry Point Length: %u\n", ep->smbe_elen);
oprintf(fp, "SMBIOS Version: %u.%u\n",
ep->smbe_major, ep->smbe_minor);
oprintf(fp, "SMBIOS DocRev: 0x%x\n", ep->smbe_docrev);
oprintf(fp, "Entry Point Revision: 0x%x\n", ep->smbe_revision);
oprintf(fp, "Structure Table Length: %u\n", ep->smbe_stlen);
oprintf(fp, "Structure Table Address: 0x%" PRIx64 "\n",
ep->smbe_staddr);
}
static void
print_smbios(smbios_hdl_t *shp, FILE *fp)
{
smbios_entry_t ep;
switch (smbios_info_smbios(shp, &ep)) {
case SMBIOS_ENTRY_POINT_21:
print_smbios_21(&ep.ep21, fp);
break;
case SMBIOS_ENTRY_POINT_30:
print_smbios_30(&ep.ep30, fp);
break;
}
}
static void
print_common(const smbios_info_t *ip, FILE *fp)
{
if (ip->smbi_manufacturer[0] != '\0')
oprintf(fp, " Manufacturer: %s\n", ip->smbi_manufacturer);
if (ip->smbi_product[0] != '\0')
oprintf(fp, " Product: %s\n", ip->smbi_product);
if (ip->smbi_version[0] != '\0')
oprintf(fp, " Version: %s\n", ip->smbi_version);
if (ip->smbi_serial[0] != '\0')
oprintf(fp, " Serial Number: %s\n", ip->smbi_serial);
if (ip->smbi_asset[0] != '\0')
oprintf(fp, " Asset Tag: %s\n", ip->smbi_asset);
if (ip->smbi_location[0] != '\0')
oprintf(fp, " Location Tag: %s\n", ip->smbi_location);
if (ip->smbi_part[0] != '\0')
oprintf(fp, " Part Number: %s\n", ip->smbi_part);
}
static void
print_bios(smbios_hdl_t *shp, FILE *fp)
{
smbios_bios_t b;
(void) smbios_info_bios(shp, &b);
oprintf(fp, " Vendor: %s\n", b.smbb_vendor);
oprintf(fp, " Version String: %s\n", b.smbb_version);
oprintf(fp, " Release Date: %s\n", b.smbb_reldate);
oprintf(fp, " Address Segment: 0x%x\n", b.smbb_segment);
oprintf(fp, " ROM Size: %" PRIu64 " bytes\n", b.smbb_extromsize);
oprintf(fp, " Image Size: %u bytes\n", b.smbb_runsize);
flag64_printf(fp, "Characteristics",
b.smbb_cflags, sizeof (b.smbb_cflags) * NBBY,
smbios_bios_flag_name, smbios_bios_flag_desc);
if (b.smbb_nxcflags > SMB_BIOSXB_1) {
flag_printf(fp, "Characteristics Extension Byte 1",
b.smbb_xcflags[SMB_BIOSXB_1],
sizeof (b.smbb_xcflags[SMB_BIOSXB_1]) * NBBY,
smbios_bios_xb1_name, smbios_bios_xb1_desc);
}
if (b.smbb_nxcflags > SMB_BIOSXB_2) {
flag_printf(fp, "Characteristics Extension Byte 2",
b.smbb_xcflags[SMB_BIOSXB_2],
sizeof (b.smbb_xcflags[SMB_BIOSXB_2]) * NBBY,
smbios_bios_xb2_name, smbios_bios_xb2_desc);
}
if (b.smbb_nxcflags > SMB_BIOSXB_BIOS_MIN) {
oprintf(fp, " Version Number: %u.%u\n",
b.smbb_biosv.smbv_major, b.smbb_biosv.smbv_minor);
}
/*
* If the major and minor versions are 0xff then that indicates that the
* embedded controller does not exist.
*/
if (b.smbb_nxcflags > SMB_BIOSXB_ECFW_MIN &&
b.smbb_ecfwv.smbv_major != 0xff &&
b.smbb_ecfwv.smbv_minor != 0xff) {
oprintf(fp, " Embedded Ctlr Firmware Version Number: %u.%u\n",
b.smbb_ecfwv.smbv_major, b.smbb_ecfwv.smbv_minor);
}
}
static void
print_system(smbios_hdl_t *shp, FILE *fp)
{
smbios_system_t s;
uint_t i;
(void) smbios_info_system(shp, &s);
/*
* SMBIOS definition section 3.3.2.1 is clear that the first three
* fields are little-endian, but this utility traditionally got this
* wrong, and followed RFC 4122. We keep this old behavior, but also
* provide a corrected UUID.
*/
oprintf(fp, " UUID: ");
oprintf(fp, "%02x%02x%02x%02x-%02x%02x-%02x%02x-",
s.smbs_uuid[0], s.smbs_uuid[1], s.smbs_uuid[2], s.smbs_uuid[3],
s.smbs_uuid[4], s.smbs_uuid[5], s.smbs_uuid[6], s.smbs_uuid[7]);
for (i = 8; i < s.smbs_uuidlen; i++) {
oprintf(fp, "%02x", s.smbs_uuid[i]);
if (i == 9)
oprintf(fp, "-");
}
oprintf(fp, "\n");
oprintf(fp, " UUID (Endian-corrected): ");
oprintf(fp, "%08x-%04hx-%04hx-", *((uint_t *)&s.smbs_uuid[0]),
*((ushort_t *)&s.smbs_uuid[4]),
*((ushort_t *)&s.smbs_uuid[6]));
for (i = 8; i < s.smbs_uuidlen; i++) {
oprintf(fp, "%02x", s.smbs_uuid[i]);
if (i == 9)
oprintf(fp, "-");
}
oprintf(fp, "\n");
desc_printf(smbios_system_wakeup_desc(s.smbs_wakeup),
fp, " Wake-Up Event: 0x%x", s.smbs_wakeup);
oprintf(fp, " SKU Number: %s\n", s.smbs_sku);
oprintf(fp, " Family: %s\n", s.smbs_family);
}
static void
print_bboard(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_bboard_t b;
int chdl_cnt;
(void) smbios_info_bboard(shp, id, &b);
oprintf(fp, " Chassis: %u\n", (uint_t)b.smbb_chassis);
flag_printf(fp, "Flags", b.smbb_flags, sizeof (b.smbb_flags) * NBBY,
smbios_bboard_flag_name, smbios_bboard_flag_desc);
desc_printf(smbios_bboard_type_desc(b.smbb_type),
fp, " Board Type: 0x%x", b.smbb_type);
chdl_cnt = b.smbb_contn;
if (chdl_cnt != 0) {
id_t *chdl;
uint16_t hdl;
int i, n, cnt;
chdl = alloca(chdl_cnt * sizeof (id_t));
cnt = smbios_info_contains(shp, id, chdl_cnt, chdl);
if (cnt > SMB_CONT_MAX)
return;
n = MIN(chdl_cnt, cnt);
oprintf(fp, "\n");
for (i = 0; i < n; i++) {
hdl = (uint16_t)chdl[i];
oprintf(fp, " Contained Handle: %u\n", hdl);
}
}
}
static void
print_chassis(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_chassis_t c;
int elem_cnt;
(void) smbios_info_chassis(shp, id, &c);
oprintf(fp, " OEM Data: 0x%x\n", c.smbc_oemdata);
oprintf(fp, " SKU number: %s\n",
c.smbc_sku[0] == '\0' ? "<unknown>" : c.smbc_sku);
oprintf(fp, " Lock Present: %s\n", c.smbc_lock ? "Y" : "N");
desc_printf(smbios_chassis_type_desc(c.smbc_type),
fp, " Chassis Type: 0x%x", c.smbc_type);
desc_printf(smbios_chassis_state_desc(c.smbc_bustate),
fp, " Boot-Up State: 0x%x", c.smbc_bustate);
desc_printf(smbios_chassis_state_desc(c.smbc_psstate),
fp, " Power Supply State: 0x%x", c.smbc_psstate);
desc_printf(smbios_chassis_state_desc(c.smbc_thstate),
fp, " Thermal State: 0x%x", c.smbc_thstate);
oprintf(fp, " Chassis Height: %uu\n", c.smbc_uheight);
oprintf(fp, " Power Cords: %u\n", c.smbc_cords);
elem_cnt = c.smbc_elems;
oprintf(fp, " Element Records: %u\n", elem_cnt);
if (elem_cnt > 0) {
id_t *elems;
uint8_t type;
int i, n, cnt;
elems = alloca(c.smbc_elems * sizeof (id_t));
cnt = smbios_info_contains(shp, id, elem_cnt, elems);
if (cnt > SMB_CONT_MAX)
return;
n = MIN(elem_cnt, cnt);
oprintf(fp, "\n");
for (i = 0; i < n; i++) {
type = (uint8_t)elems[i];
if (type & 0x80) {
/* SMBIOS structrure Type */
desc_printf(smbios_type_name(type & 0x7f), fp,
" Contained SMBIOS structure Type: %u",
type & 0x80);
} else {
/* SMBIOS Base Board Type */
desc_printf(smbios_bboard_type_desc(type), fp,
" Contained SMBIOS Base Board Type: 0x%x",
type);
}
}
}
}
static void
print_processor(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_processor_t p;
uint_t status;
(void) smbios_info_processor(shp, id, &p);
status = SMB_PRSTATUS_STATUS(p.smbp_status);
desc_printf(smbios_processor_family_desc(p.smbp_family),
fp, " Family: %u", p.smbp_family);
oprintf(fp, " CPUID: 0x%llx\n", (u_longlong_t)p.smbp_cpuid);
desc_printf(smbios_processor_type_desc(p.smbp_type),
fp, " Type: %u", p.smbp_type);
desc_printf(smbios_processor_upgrade_desc(p.smbp_upgrade),
fp, " Socket Upgrade: %u", p.smbp_upgrade);
oprintf(fp, " Socket Status: %s\n",
SMB_PRSTATUS_PRESENT(p.smbp_status) ?
"Populated" : "Not Populated");
desc_printf(smbios_processor_status_desc(status),
fp, " Processor Status: %u", status);
if (SMB_PRV_LEGACY(p.smbp_voltage)) {
oprintf(fp, " Supported Voltages:");
switch (p.smbp_voltage) {
case SMB_PRV_5V:
oprintf(fp, " 5.0V");
break;
case SMB_PRV_33V:
oprintf(fp, " 3.3V");
break;
case SMB_PRV_29V:
oprintf(fp, " 2.9V");
break;
}
oprintf(fp, "\n");
} else {
oprintf(fp, " Supported Voltages: %.1fV\n",
(float)SMB_PRV_VOLTAGE(p.smbp_voltage) / 10);
}
if (p.smbp_corecount != 0) {
oprintf(fp, " Core Count: %u\n", p.smbp_corecount);
} else {
oprintf(fp, " Core Count: Unknown\n");
}
if (p.smbp_coresenabled != 0) {
oprintf(fp, " Cores Enabled: %u\n", p.smbp_coresenabled);
} else {
oprintf(fp, " Cores Enabled: Unknown\n");
}
if (p.smbp_threadcount != 0) {
oprintf(fp, " Thread Count: %u\n", p.smbp_threadcount);
} else {
oprintf(fp, " Thread Count: Unknown\n");
}
if (p.smbp_cflags) {
flag_printf(fp, "Processor Characteristics",
p.smbp_cflags, sizeof (p.smbp_cflags) * NBBY,
smbios_processor_core_flag_name,
smbios_processor_core_flag_desc);
}
if (p.smbp_clkspeed != 0)
oprintf(fp, " External Clock Speed: %uMHz\n", p.smbp_clkspeed);
else
oprintf(fp, " External Clock Speed: Unknown\n");
if (p.smbp_maxspeed != 0)
oprintf(fp, " Maximum Speed: %uMHz\n", p.smbp_maxspeed);
else
oprintf(fp, " Maximum Speed: Unknown\n");
if (p.smbp_curspeed != 0)
oprintf(fp, " Current Speed: %uMHz\n", p.smbp_curspeed);
else
oprintf(fp, " Current Speed: Unknown\n");
id_printf(fp, " L1 Cache Handle: ", p.smbp_l1cache);
id_printf(fp, " L2 Cache Handle: ", p.smbp_l2cache);
id_printf(fp, " L3 Cache Handle: ", p.smbp_l3cache);
}
static void
print_cache(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_cache_t c;
(void) smbios_info_cache(shp, id, &c);
oprintf(fp, " Level: %u\n", c.smba_level);
oprintf(fp, " Maximum Installed Size: %" PRIu64 " bytes\n",
c.smba_maxsize2);
if (c.smba_size2 != 0) {
oprintf(fp, " Installed Size: %" PRIu64 " bytes\n",
c.smba_size2);
} else {
oprintf(fp, " Installed Size: Not Installed\n");
}
if (c.smba_speed != 0)
oprintf(fp, " Speed: %uns\n", c.smba_speed);
else
oprintf(fp, " Speed: Unknown\n");
flag_printf(fp, "Supported SRAM Types",
c.smba_stype, sizeof (c.smba_stype) * NBBY,
smbios_cache_ctype_name, smbios_cache_ctype_desc);
desc_printf(smbios_cache_ctype_desc(c.smba_ctype),
fp, " Current SRAM Type: 0x%x", c.smba_ctype);
desc_printf(smbios_cache_ecc_desc(c.smba_etype),
fp, " Error Correction Type: %u", c.smba_etype);
desc_printf(smbios_cache_logical_desc(c.smba_ltype),
fp, " Logical Cache Type: %u", c.smba_ltype);
desc_printf(smbios_cache_assoc_desc(c.smba_assoc),
fp, " Associativity: %u", c.smba_assoc);
desc_printf(smbios_cache_mode_desc(c.smba_mode),
fp, " Mode: %u", c.smba_mode);
desc_printf(smbios_cache_loc_desc(c.smba_location),
fp, " Location: %u", c.smba_location);
flag_printf(fp, "Flags", c.smba_flags, sizeof (c.smba_flags) * NBBY,
smbios_cache_flag_name, smbios_cache_flag_desc);
}
static void
print_port(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_port_t p;
(void) smbios_info_port(shp, id, &p);
oprintf(fp, " Internal Reference Designator: %s\n", p.smbo_iref);
oprintf(fp, " External Reference Designator: %s\n", p.smbo_eref);
desc_printf(smbios_port_conn_desc(p.smbo_itype),
fp, " Internal Connector Type: %u", p.smbo_itype);
desc_printf(smbios_port_conn_desc(p.smbo_etype),
fp, " External Connector Type: %u", p.smbo_etype);
desc_printf(smbios_port_type_desc(p.smbo_ptype),
fp, " Port Type: %u", p.smbo_ptype);
}
static void
print_slot(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_slot_t s;
smbios_version_t v;
(void) smbios_info_slot(shp, id, &s);
smbios_info_smbios_version(shp, &v);
oprintf(fp, " Reference Designator: %s\n", s.smbl_name);
oprintf(fp, " Slot ID: 0x%x\n", s.smbl_id);
desc_printf(smbios_slot_type_desc(s.smbl_type),
fp, " Type: 0x%x", s.smbl_type);
desc_printf(smbios_slot_width_desc(s.smbl_width),
fp, " Width: 0x%x", s.smbl_width);
desc_printf(smbios_slot_usage_desc(s.smbl_usage),
fp, " Usage: 0x%x", s.smbl_usage);
desc_printf(smbios_slot_length_desc(s.smbl_length),
fp, " Length: 0x%x", s.smbl_length);
flag_printf(fp, "Slot Characteristics 1",
s.smbl_ch1, sizeof (s.smbl_ch1) * NBBY,
smbios_slot_ch1_name, smbios_slot_ch1_desc);
flag_printf(fp, "Slot Characteristics 2",
s.smbl_ch2, sizeof (s.smbl_ch2) * NBBY,
smbios_slot_ch2_name, smbios_slot_ch2_desc);
if (check_oem(shp) != 0 && !smbios_vergteq(&v, 2, 6))
return;
oprintf(fp, " Segment Group: %u\n", s.smbl_sg);
oprintf(fp, " Bus Number: %u\n", s.smbl_bus);
oprintf(fp, " Device/Function Number: %u/%u\n", s.smbl_df >> 3,
s.smbl_df & 0x7);
if (s.smbl_dbw != 0) {
oprintf(fp, " Data Bus Width: %d\n", s.smbl_dbw);
}
if (s.smbl_npeers > 0) {
smbios_slot_peer_t *peer;
uint_t i, npeers;
if (smbios_info_slot_peers(shp, id, &npeers, &peer) != 0) {
smbios_warn(shp, "failed to read slot peer "
"information");
return;
}
for (i = 0; i < npeers; i++) {
oprintf(fp, " Slot Peer %u:\n", i);
oprintf(fp, " Segment group: %u\n",
peer[i].smblp_group);
oprintf(fp, " Bus/Device/Function: %u/%u/%u\n",
peer[i].smblp_bus, peer[i].smblp_device,
peer[i].smblp_function);
oprintf(fp, " Electrical width: %u\n",
peer[i].smblp_data_width);
}
smbios_info_slot_peers_free(shp, npeers, peer);
}
if (s.smbl_info != 0) {
if (s.smbl_type >= SMB_SLT_PCIE &&
s.smbl_type <= SMB_SLT_PCIEG6P) {
oprintf(fp, " PCIe Generation: %d\n", s.smbl_info);
} else {
oprintf(fp, " Slot Type: 0x%x\n", s.smbl_info);
}
}
if (s.smbl_pwidth != 0) {
desc_printf(smbios_slot_width_desc(s.smbl_pwidth),
fp, " Physical Width: 0x%x", s.smbl_pwidth);
}
if (s.smbl_pitch != 0) {
oprintf(fp, " Slot Pitch: %u.%u mm\n", s.smbl_pitch / 100,
s.smbl_pitch % 100);
}
}
static void
print_obdevs_ext(smbios_hdl_t *shp, id_t id, FILE *fp)
{
boolean_t enabled;
smbios_obdev_ext_t oe;
const char *type;
(void) smbios_info_obdevs_ext(shp, id, &oe);
/*
* Bit 7 is always whether or not the device is enabled while bits 0:6
* are the actual device type.
*/
enabled = oe.smboe_dtype >> 7;
type = smbios_onboard_type_desc(oe.smboe_dtype & 0x7f);
oprintf(fp, " Reference Designator: %s\n", oe.smboe_name);
oprintf(fp, " Device Enabled: %s\n", enabled == B_TRUE ? "true" :
"false");
oprintf(fp, " Device Type: %s\n", type);
oprintf(fp, " Device Type Instance: %u\n", oe.smboe_dti);
oprintf(fp, " Segment Group Number: %u\n", oe.smboe_sg);
oprintf(fp, " Bus Number: %u\n", oe.smboe_bus);
oprintf(fp, " Device/Function Number: %u\n", oe.smboe_df);
}
static void
print_obdevs(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_obdev_t *argv;
int i, argc;
if ((argc = smbios_info_obdevs(shp, id, 0, NULL)) > 0) {
argv = alloca(sizeof (smbios_obdev_t) * argc);
(void) smbios_info_obdevs(shp, id, argc, argv);
for (i = 0; i < argc; i++)
oprintf(fp, " %s\n", argv[i].smbd_name);
}
}
static void
print_strtab(smbios_hdl_t *shp, id_t id, FILE *fp)
{
const char **argv;
int i, argc;
if ((argc = smbios_info_strtab(shp, id, 0, NULL)) > 0) {
argv = alloca(sizeof (char *) * argc);
(void) smbios_info_strtab(shp, id, argc, argv);
for (i = 0; i < argc; i++)
oprintf(fp, " %s\n", argv[i]);
}
}
static void
print_lang(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_lang_t l;
(void) smbios_info_lang(shp, &l);
oprintf(fp, " Current Language: %s\n", l.smbla_cur);
oprintf(fp, " Language String Format: %u\n", l.smbla_fmt);
oprintf(fp, " Number of Installed Languages: %u\n", l.smbla_num);
oprintf(fp, " Installed Languages:\n");
print_strtab(shp, id, fp);
}
/*ARGSUSED*/
static void
print_evlog(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_evlog_t ev;
uint32_t i;
(void) smbios_info_eventlog(shp, &ev);
oprintf(fp, " Log Area Size: %lu bytes\n", (ulong_t)ev.smbev_size);
oprintf(fp, " Header Offset: %lu\n", (ulong_t)ev.smbev_hdr);
oprintf(fp, " Data Offset: %lu\n", (ulong_t)ev.smbev_data);
desc_printf(smbios_evlog_method_desc(ev.smbev_method),
fp, " Data Access Method: %u", ev.smbev_method);
flag_printf(fp, "Log Flags",
ev.smbev_flags, sizeof (ev.smbev_flags) * NBBY,
smbios_evlog_flag_name, smbios_evlog_flag_desc);
desc_printf(smbios_evlog_format_desc(ev.smbev_format),
fp, " Log Header Format: %u", ev.smbev_format);
oprintf(fp, " Update Token: 0x%x\n", ev.smbev_token);
oprintf(fp, " Data Access Address: ");
switch (ev.smbev_method) {
case SMB_EVM_1x1i_1x1d:
case SMB_EVM_2x1i_1x1d:
case SMB_EVM_1x2i_1x1d:
oprintf(fp, "Index Address 0x%x, Data Address 0x%x\n",
ev.smbev_addr.eva_io.evi_iaddr,
ev.smbev_addr.eva_io.evi_daddr);
break;
case SMB_EVM_GPNV:
oprintf(fp, "0x%x\n", ev.smbev_addr.eva_gpnv);
break;
default:
oprintf(fp, "0x%x\n", ev.smbev_addr.eva_addr);
}
oprintf(fp, " Type Descriptors:\n");
for (i = 0; i < ev.smbev_typec; i++) {
oprintf(fp, " %u: Log Type 0x%x, Data Type 0x%x\n", i,
ev.smbev_typev[i].smbevt_ltype,
ev.smbev_typev[i].smbevt_dtype);
}
}
static void
print_bytes(const uint8_t *data, size_t size, FILE *fp)
{
size_t row, rows = P2ROUNDUP(size, 16) / 16;
size_t col, cols;
char buf[17];
uint8_t x;
oprintf(fp, "\n offset: 0 1 2 3 4 5 6 7 8 9 a b c d e f "
"0123456789abcdef\n");
for (row = 0; row < rows; row++) {
oprintf(fp, " %#6lx: ", (ulong_t)row * 16);
cols = MIN(size - row * 16, 16);
for (col = 0; col < cols; col++) {
if (col % 4 == 0)
oprintf(fp, " ");
x = *data++;
oprintf(fp, "%02x", x);
buf[col] = x <= ' ' || x > '~' ? '.' : x;
}
for (; col < 16; col++) {
if (col % 4 == 0)
oprintf(fp, " ");
oprintf(fp, " ");
buf[col] = ' ';
}
buf[col] = '\0';
oprintf(fp, " %s\n", buf);
}
oprintf(fp, "\n");
}
static void
print_memarray(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_memarray_t ma;
(void) smbios_info_memarray(shp, id, &ma);
desc_printf(smbios_memarray_loc_desc(ma.smbma_location),
fp, " Location: %u", ma.smbma_location);
desc_printf(smbios_memarray_use_desc(ma.smbma_use),
fp, " Use: %u", ma.smbma_use);
desc_printf(smbios_memarray_ecc_desc(ma.smbma_ecc),
fp, " ECC: %u", ma.smbma_ecc);
oprintf(fp, " Number of Slots/Sockets: %u\n", ma.smbma_ndevs);
id_printf(fp, " Memory Error Data: ", ma.smbma_err);
oprintf(fp, " Max Capacity: %llu bytes\n",
(u_longlong_t)ma.smbma_size);
}
static void
print_memdevice(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_memdevice_t md;
(void) smbios_info_memdevice(shp, id, &md);
id_printf(fp, " Physical Memory Array: ", md.smbmd_array);
id_printf(fp, " Memory Error Data: ", md.smbmd_error);
if (md.smbmd_twidth != -1u)
oprintf(fp, " Total Width: %u bits\n", md.smbmd_twidth);
else
oprintf(fp, " Total Width: Unknown\n");
if (md.smbmd_dwidth != -1u)
oprintf(fp, " Data Width: %u bits\n", md.smbmd_dwidth);
else
oprintf(fp, " Data Width: Unknown\n");
switch (md.smbmd_size) {
case -1ull:
oprintf(fp, " Size: Unknown\n");
break;
case 0:
oprintf(fp, " Size: Not Populated\n");
break;
default:
oprintf(fp, " Size: %llu bytes\n",
(u_longlong_t)md.smbmd_size);
}
desc_printf(smbios_memdevice_form_desc(md.smbmd_form),
fp, " Form Factor: %u", md.smbmd_form);
if (md.smbmd_set == 0)
oprintf(fp, " Set: None\n");
else if (md.smbmd_set == (uint8_t)-1u)
oprintf(fp, " Set: Unknown\n");
else
oprintf(fp, " Set: %u\n", md.smbmd_set);
if (md.smbmd_rank != 0) {
desc_printf(smbios_memdevice_rank_desc(md.smbmd_rank),
fp, " Rank: %u", md.smbmd_rank);
} else {
oprintf(fp, " Rank: Unknown\n");
}
desc_printf(smbios_memdevice_type_desc(md.smbmd_type),
fp, " Memory Type: %u", md.smbmd_type);
flag_printf(fp, "Flags", md.smbmd_flags, sizeof (md.smbmd_flags) * NBBY,
smbios_memdevice_flag_name, smbios_memdevice_flag_desc);
if (md.smbmd_extspeed != 0) {
oprintf(fp, " Speed: %" PRIu64 " MT/s\n", md.smbmd_extspeed);
} else {
oprintf(fp, " Speed: Unknown\n");
}
if (md.smbmd_extclkspeed != 0) {
oprintf(fp, " Configured Speed: %" PRIu64 " MT/s\n",
md.smbmd_extclkspeed);
} else {
oprintf(fp, " Configured Speed: Unknown\n");
}
oprintf(fp, " Device Locator: %s\n", md.smbmd_dloc);
oprintf(fp, " Bank Locator: %s\n", md.smbmd_bloc);
if (md.smbmd_minvolt != 0) {
oprintf(fp, " Minimum Voltage: %.2fV\n",
md.smbmd_minvolt / 1000.0);
} else {
oprintf(fp, " Minimum Voltage: Unknown\n");
}
if (md.smbmd_maxvolt != 0) {
oprintf(fp, " Maximum Voltage: %.2fV\n",
md.smbmd_maxvolt / 1000.0);
} else {
oprintf(fp, " Maximum Voltage: Unknown\n");
}
if (md.smbmd_confvolt != 0) {
oprintf(fp, " Configured Voltage: %.2fV\n",
md.smbmd_confvolt / 1000.0);
} else {
oprintf(fp, " Configured Voltage: Unknown\n");
}
if (md.smbmd_memtech != 0) {
desc_printf(smbios_memdevice_memtech_desc(md.smbmd_memtech),
fp, " Memory Technology: %u", md.smbmd_memtech);
}
if (md.smbmd_opcap_flags != 0) {
flag_printf(fp, "Operating Mode Capabilities",
md.smbmd_opcap_flags, sizeof (md.smbmd_opcap_flags) * NBBY,
smbios_memdevice_op_capab_name,
smbios_memdevice_op_capab_desc);
}
if (md.smbmd_firmware_rev[0] != '\0') {
oprintf(fp, " Firmware Revision: %s\n", md.smbmd_firmware_rev);
}
if (md.smbmd_modmfg_id != 0) {
jedec_print(fp, "Module Manufacturer ID", md.smbmd_modmfg_id);
}
if (md.smbmd_modprod_id != 0) {
jedec_print(fp, "Module Product ID", md.smbmd_modprod_id);
}
if (md.smbmd_cntrlmfg_id != 0) {
jedec_print(fp, "Memory Subsystem Controller Manufacturer ID",
md.smbmd_cntrlmfg_id);
}
if (md.smbmd_cntrlprod_id != 0) {
jedec_print(fp, "Memory Subsystem Controller Product ID",
md.smbmd_cntrlprod_id);
}
if (md.smbmd_nvsize == UINT64_MAX) {
oprintf(fp, " Non-volatile Size: Unknown\n");
} else if (md.smbmd_nvsize != 0) {
oprintf(fp, " Non-volatile Size: %llu bytes\n",
(u_longlong_t)md.smbmd_nvsize);
}
if (md.smbmd_volatile_size == UINT64_MAX) {
oprintf(fp, " Volatile Size: Unknown\n");
} else if (md.smbmd_volatile_size != 0) {
oprintf(fp, " Volatile Size: %llu bytes\n",
(u_longlong_t)md.smbmd_volatile_size);
}
if (md.smbmd_cache_size == UINT64_MAX) {
oprintf(fp, " Cache Size: Unknown\n");
} else if (md.smbmd_cache_size != 0) {
oprintf(fp, " Cache Size: %llu bytes\n",
(u_longlong_t)md.smbmd_cache_size);
}
if (md.smbmd_logical_size == UINT64_MAX) {
oprintf(fp, " Logical Size: Unknown\n");
} else if (md.smbmd_logical_size != 0) {
oprintf(fp, " Logical Size: %llu bytes\n",
(u_longlong_t)md.smbmd_logical_size);
}
}
static void
print_memarrmap(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_memarrmap_t ma;
(void) smbios_info_memarrmap(shp, id, &ma);
id_printf(fp, " Physical Memory Array: ", ma.smbmam_array);
oprintf(fp, " Devices per Row: %u\n", ma.smbmam_width);
oprintf(fp, " Physical Address: 0x%llx\n Size: %llu bytes\n",
(u_longlong_t)ma.smbmam_addr, (u_longlong_t)ma.smbmam_size);
}
static void
print_memdevmap(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_memdevmap_t md;
(void) smbios_info_memdevmap(shp, id, &md);
id_printf(fp, " Memory Device: ", md.smbmdm_device);
id_printf(fp, " Memory Array Mapped Address: ", md.smbmdm_arrmap);
oprintf(fp, " Physical Address: 0x%llx\n Size: %llu bytes\n",
(u_longlong_t)md.smbmdm_addr, (u_longlong_t)md.smbmdm_size);
oprintf(fp, " Partition Row Position: %u\n", md.smbmdm_rpos);
oprintf(fp, " Interleave Position: %u\n", md.smbmdm_ipos);
oprintf(fp, " Interleave Data Depth: %u\n", md.smbmdm_idepth);
}
static void
print_hwsec(smbios_hdl_t *shp, FILE *fp)
{
smbios_hwsec_t h;
(void) smbios_info_hwsec(shp, &h);
desc_printf(smbios_hwsec_desc(h.smbh_pwr_ps),
fp, " Power-On Password Status: %u", h.smbh_pwr_ps);
desc_printf(smbios_hwsec_desc(h.smbh_kbd_ps),
fp, " Keyboard Password Status: %u", h.smbh_kbd_ps);
desc_printf(smbios_hwsec_desc(h.smbh_adm_ps),
fp, " Administrator Password Status: %u", h.smbh_adm_ps);
desc_printf(smbios_hwsec_desc(h.smbh_pan_ps),
fp, " Front Panel Reset Status: %u", h.smbh_pan_ps);
}
static void
print_vprobe(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_vprobe_t vp;
if (smbios_info_vprobe(shp, id, &vp) != 0) {
smbios_warn(shp, "failed to read voltage probe information");
return;
}
oprintf(fp, " Description: %s\n", vp.smbvp_description != NULL ?
vp.smbvp_description : "unknown");
desc_printf(smbios_vprobe_loc_desc(vp.smbvp_location),
fp, " Location: %u", vp.smbvp_location);
desc_printf(smbios_vprobe_status_desc(vp.smbvp_status),
fp, " Status: %u", vp.smbvp_status);
if (vp.smbvp_maxval != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Maximum Possible Voltage: %u mV\n",
vp.smbvp_maxval);
} else {
oprintf(fp, " Maximum Possible Voltage: unknown\n");
}
if (vp.smbvp_minval != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Minimum Possible Voltage: %u mV\n",
vp.smbvp_minval);
} else {
oprintf(fp, " Minimum Possible Voltage: unknown\n");
}
if (vp.smbvp_resolution != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Resolution: %u.%u mV\n",
vp.smbvp_resolution / 10,
vp.smbvp_resolution % 10);
} else {
oprintf(fp, " Probe Resolution: unknown\n");
}
if (vp.smbvp_tolerance != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Tolerance: +/-%u mV\n",
vp.smbvp_tolerance);
} else {
oprintf(fp, " Probe Tolerance: unknown\n");
}
if (vp.smbvp_accuracy != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Accuracy: +/-%u.%02u%%\n",
vp.smbvp_accuracy / 100,
vp.smbvp_accuracy % 100);
} else {
oprintf(fp, " Probe Accuracy: unknown\n");
}
oprintf(fp, " OEM- or BIOS- defined value: 0x%x\n", vp.smbvp_oem);
if (vp.smbvp_nominal != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Nominal Value: %u mV\n", vp.smbvp_nominal);
} else {
oprintf(fp, " Probe Nominal Value: unknown\n");
}
}
static void
print_cooldev(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_cooldev_t cd;
if (smbios_info_cooldev(shp, id, &cd) != 0) {
smbios_warn(shp, "failed to read cooling device "
"information");
return;
}
id_printf(fp, " Temperature Probe Handle: ", cd.smbcd_tprobe);
desc_printf(smbios_cooldev_type_desc(cd.smbcd_type),
fp, " Device Type: %u", cd.smbcd_type);
desc_printf(smbios_cooldev_status_desc(cd.smbcd_status),
fp, " Status: %u", cd.smbcd_status);
oprintf(fp, " Cooling Unit Group: %u\n", cd.smbcd_group);
oprintf(fp, " OEM- or BIOS- defined data: 0x%x\n", cd.smbcd_oem);
if (cd.smbcd_nominal != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Nominal Speed: %u RPM\n", cd.smbcd_nominal);
} else {
oprintf(fp, " Nominal Speed: unknown\n");
}
if (cd.smbcd_descr != NULL && cd.smbcd_descr[0] != '\0') {
oprintf(fp, " Description: %s\n", cd.smbcd_descr);
}
}
static void
print_tprobe(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_tprobe_t tp;
if (smbios_info_tprobe(shp, id, &tp) != 0) {
smbios_warn(shp, "failed to read temperature probe "
"information");
return;
}
oprintf(fp, " Description: %s\n", tp.smbtp_description != NULL ?
tp.smbtp_description : "unknown");
desc_printf(smbios_tprobe_loc_desc(tp.smbtp_location),
fp, " Location: %u", tp.smbtp_location);
desc_printf(smbios_tprobe_status_desc(tp.smbtp_status),
fp, " Status: %u", tp.smbtp_status);
if (tp.smbtp_maxval != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Maximum Possible Temperature: %u.%u C\n",
tp.smbtp_maxval / 10, tp.smbtp_maxval % 10);
} else {
oprintf(fp, " Maximum Possible Temperature: unknown\n");
}
if (tp.smbtp_minval != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Minimum Possible Temperature: %u.%u C\n",
tp.smbtp_minval / 10, tp.smbtp_minval % 10);
} else {
oprintf(fp, " Minimum Possible Temperature: unknown\n");
}
if (tp.smbtp_resolution != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Resolution: %u.%03u C\n",
tp.smbtp_resolution / 1000,
tp.smbtp_resolution % 1000);
} else {
oprintf(fp, " Probe Resolution: unknown\n");
}
if (tp.smbtp_tolerance != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Tolerance: +/-%u.%u C\n",
tp.smbtp_tolerance / 10, tp.smbtp_tolerance % 10);
} else {
oprintf(fp, " Probe Tolerance: unknown\n");
}
if (tp.smbtp_accuracy != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Accuracy: +/-%u.%02u%%\n",
tp.smbtp_accuracy / 100,
tp.smbtp_accuracy % 100);
} else {
oprintf(fp, " Probe Accuracy: unknown\n");
}
oprintf(fp, " OEM- or BIOS- defined value: 0x%x\n", tp.smbtp_oem);
if (tp.smbtp_nominal != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Nominal Value: %u.%u C\n",
tp.smbtp_nominal / 10, tp.smbtp_nominal % 10);
} else {
oprintf(fp, " Probe Nominal Value: unknown\n");
}
}
static void
print_iprobe(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_iprobe_t ip;
if (smbios_info_iprobe(shp, id, &ip) != 0) {
smbios_warn(shp, "failed to read current probe information");
return;
}
oprintf(fp, " Description: %s\n", ip.smbip_description != NULL ?
ip.smbip_description : "unknown");
desc_printf(smbios_iprobe_loc_desc(ip.smbip_location),
fp, " Location: %u", ip.smbip_location);
desc_printf(smbios_iprobe_status_desc(ip.smbip_status),
fp, " Status: %u", ip.smbip_status);
if (ip.smbip_maxval != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Maximum Possible Current: %u mA\n",
ip.smbip_maxval);
} else {
oprintf(fp, " Maximum Possible Current: unknown\n");
}
if (ip.smbip_minval != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Minimum Possible Current: %u mA\n",
ip.smbip_minval);
} else {
oprintf(fp, " Minimum Possible Current: unknown\n");
}
if (ip.smbip_resolution != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Resolution: %u.%u mA\n",
ip.smbip_resolution / 10,
ip.smbip_resolution % 10);
} else {
oprintf(fp, " Probe Resolution: unknown\n");
}
if (ip.smbip_tolerance != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Tolerance: +/-%u mA\n",
ip.smbip_tolerance);
} else {
oprintf(fp, " Probe Tolerance: unknown\n");
}
if (ip.smbip_accuracy != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Accuracy: +/-%u.%02u%%\n",
ip.smbip_accuracy / 100,
ip.smbip_accuracy % 100);
} else {
oprintf(fp, " Probe Accuracy: unknown\n");
}
oprintf(fp, " OEM- or BIOS- defined value: 0x%x\n", ip.smbip_oem);
if (ip.smbip_nominal != SMB_PROBE_UNKNOWN_VALUE) {
oprintf(fp, " Probe Nominal Value: %u mA\n", ip.smbip_nominal);
} else {
oprintf(fp, " Probe Nominal Value: unknown\n");
}
}
static void
print_boot(smbios_hdl_t *shp, FILE *fp)
{
smbios_boot_t b;
(void) smbios_info_boot(shp, &b);
desc_printf(smbios_boot_desc(b.smbt_status),
fp, " Boot Status Code: 0x%x", b.smbt_status);
if (b.smbt_size != 0) {
oprintf(fp, " Boot Data (%lu bytes):\n", (ulong_t)b.smbt_size);
print_bytes(b.smbt_data, b.smbt_size, fp);
}
}
static void
print_ipmi(smbios_hdl_t *shp, FILE *fp)
{
smbios_ipmi_t i;
(void) smbios_info_ipmi(shp, &i);
desc_printf(smbios_ipmi_type_desc(i.smbip_type),
fp, " Type: %u", i.smbip_type);
oprintf(fp, " BMC IPMI Version: %u.%u\n",
i.smbip_vers.smbv_major, i.smbip_vers.smbv_minor);
oprintf(fp, " i2c Bus Slave Address: 0x%x\n", i.smbip_i2c);
oprintf(fp, " NV Storage Device Bus ID: 0x%x\n", i.smbip_bus);
oprintf(fp, " BMC Base Address: 0x%llx\n", (u_longlong_t)i.smbip_addr);
oprintf(fp, " Interrupt Number: %u\n", i.smbip_intr);
oprintf(fp, " Register Spacing: %u\n", i.smbip_regspacing);
flag_printf(fp, "Flags", i.smbip_flags, sizeof (i.smbip_flags) * NBBY,
smbios_ipmi_flag_name, smbios_ipmi_flag_desc);
}
static void
print_powersup(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_powersup_t p;
if (smbios_info_powersup(shp, id, &p) != 0) {
smbios_warn(shp, "failed to read power supply information");
return;
}
oprintf(fp, " Power Supply Group: %u\n", p.smbps_group);
if (p.smbps_maxout != 0x8000) {
oprintf(fp, " Maximum Output: %llu mW\n", p.smbps_maxout);
} else {
oprintf(fp, " Maximum Output: unknown\n");
}
flag_printf(fp, "Characteristics", p.smbps_flags,
sizeof (p.smbps_flags) * NBBY, smbios_powersup_flag_name,
smbios_powersup_flag_desc);
desc_printf(smbios_powersup_input_desc(p.smbps_ivrs),
fp, " Input Voltage Range Switching: %u", p.smbps_ivrs);
desc_printf(smbios_powersup_status_desc(p.smbps_status),
fp, " Status: %u", p.smbps_status);
desc_printf(smbios_powersup_type_desc(p.smbps_pstype),
fp, " Type: %u", p.smbps_pstype);
if (p.smbps_vprobe != 0xffff) {
oprintf(fp, " Voltage Probe Handle: %lu\n", p.smbps_vprobe);
}
if (p.smbps_cooldev != 0xffff) {
oprintf(fp, " Cooling Device Handle: %lu\n", p.smbps_cooldev);
}
if (p.smbps_iprobe != 0xffff) {
oprintf(fp, " Current Probe Handle: %lu\n", p.smbps_iprobe);
}
}
static void
print_processor_info_riscv(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_processor_info_riscv_t rv;
if (smbios_info_processor_riscv(shp, id, &rv) != 0) {
smbios_warn(shp, "failed to read RISC-V specific processor "
"information");
return;
}
if (rv.smbpirv_boothart != 0) {
oprintf(fp, " Boot Hart\n");
}
u128_print(fp, " Hart ID", rv.smbpirv_hartid);
u128_print(fp, " Vendor ID", rv.smbpirv_vendid);
u128_print(fp, " Architecture ID", rv.smbpirv_archid);
u128_print(fp, " Implementation ID", rv.smbpirv_machid);
flag64_printf(fp, " ISA", rv.smbpirv_isa,
sizeof (rv.smbpirv_isa) * NBBY, smbios_riscv_isa_name,
smbios_riscv_isa_desc);
flag_printf(fp, " Privilege Levels", rv.smbpirv_privlvl,
sizeof (rv.smbpirv_privlvl) * NBBY, smbios_riscv_priv_name,
smbios_riscv_priv_desc);
u128_print(fp, " Machine Exception Trap Delegation",
rv.smbpirv_metdi);
u128_print(fp, " Machine Interrupt Trap Delegation",
rv.smbpirv_mitdi);
desc_printf(smbios_riscv_width_desc(rv.smbpirv_xlen),
fp, " Register Width: 0x%x", rv.smbpirv_xlen);
desc_printf(smbios_riscv_width_desc(rv.smbpirv_mxlen),
fp, " M-Mode Register Width: 0x%x", rv.smbpirv_mxlen);
desc_printf(smbios_riscv_width_desc(rv.smbpirv_sxlen),
fp, " S-Mode Register Width: 0x%x", rv.smbpirv_sxlen);
desc_printf(smbios_riscv_width_desc(rv.smbpirv_uxlen),
fp, " U-Mode Register Width: 0x%x", rv.smbpirv_uxlen);
}
static void
print_processor_info(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_processor_info_t p;
if (smbios_info_processor_info(shp, id, &p) != 0) {
smbios_warn(shp, "failed to read processor additional "
"information");
return;
}
id_printf(fp, " Processor Handle: ", p.smbpi_processor);
desc_printf(smbios_processor_info_type_desc(p.smbpi_ptype),
fp, " Processor Type: %u", p.smbpi_ptype);
switch (p.smbpi_ptype) {
case SMB_PROCINFO_T_RV32:
case SMB_PROCINFO_T_RV64:
case SMB_PROCINFO_T_RV128:
oprintf(fp, " RISC-V Additional Processor Information:\n");
print_processor_info_riscv(shp, id, fp);
break;
default:
break;
}
}
static void
print_battery(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_battery_t bat;
if (smbios_info_battery(shp, id, &bat) != 0) {
smbios_warn(shp, "failed to read battery information");
return;
}
if (bat.smbb_date != NULL) {
oprintf(fp, " Manufacture Date: %s\n", bat.smbb_date);
}
if (bat.smbb_serial != NULL) {
oprintf(fp, " Serial Number: %s\n", bat.smbb_serial);
}
if (bat.smbb_chem != SMB_BDC_UNKNOWN) {
desc_printf(smbios_battery_chem_desc(bat.smbb_chem),
fp, " Battery Chemistry: 0x%x", bat.smbb_chem);
}
if (bat.smbb_cap != 0) {
oprintf(fp, " Design Capacity: %u mWh\n", bat.smbb_cap);
} else {
oprintf(fp, " Design Capacity: unknown\n");
}
if (bat.smbb_volt != 0) {
oprintf(fp, " Design Voltage: %u mV\n", bat.smbb_volt);
} else {
oprintf(fp, " Design Voltage: unknown\n");
}
oprintf(fp, " SBDS Version Number: %s\n", bat.smbb_version);
if (bat.smbb_err != UINT8_MAX) {
oprintf(fp, " Maximum Error: %u\n", bat.smbb_err);
} else {
oprintf(fp, " Maximum Error: unknown\n", bat.smbb_err);
}
oprintf(fp, " SBDS Serial Number: %04x\n", bat.smbb_ssn);
oprintf(fp, " SBDS Manufacture Date: %u-%02u-%02u\n", bat.smbb_syear,
bat.smbb_smonth, bat.smbb_sday);
oprintf(fp, " SBDS Device Chemistry: %s\n", bat.smbb_schem);
oprintf(fp, " OEM-specific Information: 0x%08x\n", bat.smbb_oemdata);
}
static void
print_pointdev(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_pointdev_t pd;
if (smbios_info_pointdev(shp, id, &pd) != 0) {
smbios_warn(shp, "failed to read pointer device information");
return;
}
desc_printf(smbios_pointdev_type_desc(pd.smbpd_type),
fp, " Type: %u", pd.smbpd_type);
desc_printf(smbios_pointdev_iface_desc(pd.smbpd_iface),
fp, " Interface: %u", pd.smbpd_iface);
oprintf(fp, " Buttons: %u\n", pd.smbpd_nbuttons);
}
static void
print_extprocessor(smbios_hdl_t *shp, id_t id, FILE *fp)
{
int i;
smbios_processor_ext_t ep;
if (check_oem(shp) != 0)
return;
(void) smbios_info_extprocessor(shp, id, &ep);
oprintf(fp, " Processor: %u\n", ep.smbpe_processor);
oprintf(fp, " FRU: %u\n", ep.smbpe_fru);
oprintf(fp, " Initial APIC ID count: %u\n\n", ep.smbpe_n);
for (i = 0; i < ep.smbpe_n; i++) {
oprintf(fp, " Logical Strand %u: Initial APIC ID: %u\n", i,
ep.smbpe_apicid[i]);
}
}
static void
print_extport(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_port_ext_t epo;
if (check_oem(shp) != 0)
return;
(void) smbios_info_extport(shp, id, &epo);
oprintf(fp, " Chassis Handle: %u\n", epo.smbporte_chassis);
oprintf(fp, " Port Connector Handle: %u\n", epo.smbporte_port);
oprintf(fp, " Device Type: %u\n", epo.smbporte_dtype);
oprintf(fp, " Device Handle: %u\n", epo.smbporte_devhdl);
oprintf(fp, " PHY: %u\n", epo.smbporte_phy);
}
static void
print_pciexrc(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_pciexrc_t pcie;
if (check_oem(shp) != 0)
return;
(void) smbios_info_pciexrc(shp, id, &pcie);
oprintf(fp, " Component ID: %u\n", pcie.smbpcie_bb);
oprintf(fp, " BDF: 0x%x\n", pcie.smbpcie_bdf);
}
static void
print_extmemarray(smbios_hdl_t *shp, id_t id, FILE *fp)
{
smbios_memarray_ext_t em;
if (check_oem(shp) != 0)
return;
(void) smbios_info_extmemarray(shp, id, &em);
oprintf(fp, " Physical Memory Array Handle: %u\n", em.smbmae_ma);
oprintf(fp, " Component Parent Handle: %u\n", em.smbmae_comp);
oprintf(fp, " BDF: 0x%x\n", em.smbmae_bdf);
}
static void
print_extmemdevice(smbios_hdl_t *shp, id_t id, FILE *fp)
{
int i;
smbios_memdevice_ext_t emd;
if (check_oem(shp) != 0)
return;
(void) smbios_info_extmemdevice(shp, id, &emd);
oprintf(fp, " Memory Device Handle: %u\n", emd.smbmdeve_md);
oprintf(fp, " DRAM Channel: %u\n", emd.smbmdeve_drch);
oprintf(fp, " Number of Chip Selects: %u\n", emd.smbmdeve_ncs);
for (i = 0; i < emd.smbmdeve_ncs; i++) {
oprintf(fp, " Chip Select: %u\n", emd.smbmdeve_cs[i]);
}
}
static int
print_struct(smbios_hdl_t *shp, const smbios_struct_t *sp, void *fp)
{
smbios_info_t info;
int hex = opt_x;
const char *s;
if (opt_t != -1 && opt_t != sp->smbstr_type)
return (0); /* skip struct if type doesn't match -t */
if (!opt_O && (sp->smbstr_type == SMB_TYPE_MEMCTL ||
sp->smbstr_type == SMB_TYPE_MEMMOD))
return (0); /* skip struct if type is obsolete */
if (g_hdr++ == 0 || !opt_s)
oprintf(fp, "%-5s %-4s %s\n", "ID", "SIZE", "TYPE");
oprintf(fp, "%-5u %-4lu",
(uint_t)sp->smbstr_id, (ulong_t)sp->smbstr_size);
if ((s = smbios_type_name(sp->smbstr_type)) != NULL)
oprintf(fp, " %s (type %u)", s, sp->smbstr_type);
else if (sp->smbstr_type > SMB_TYPE_OEM_LO &&
sp->smbstr_type < SMB_TYPE_OEM_HI)
oprintf(fp, " %s+%u (type %u)", "SMB_TYPE_OEM_LO",
sp->smbstr_type - SMB_TYPE_OEM_LO, sp->smbstr_type);
else
oprintf(fp, " %u", sp->smbstr_type);
if ((s = smbios_type_desc(sp->smbstr_type)) != NULL)
oprintf(fp, " (%s)\n", s);
else
oprintf(fp, "\n");
if (opt_s)
return (0); /* only print header line if -s specified */
if (smbios_info_common(shp, sp->smbstr_id, &info) == 0) {
oprintf(fp, "\n");
print_common(&info, fp);
}
switch (sp->smbstr_type) {
case SMB_TYPE_BIOS:
oprintf(fp, "\n");
print_bios(shp, fp);
break;
case SMB_TYPE_SYSTEM:
oprintf(fp, "\n");
print_system(shp, fp);
break;
case SMB_TYPE_BASEBOARD:
oprintf(fp, "\n");
print_bboard(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_CHASSIS:
oprintf(fp, "\n");
print_chassis(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_PROCESSOR:
oprintf(fp, "\n");
print_processor(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_CACHE:
oprintf(fp, "\n");
print_cache(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_PORT:
oprintf(fp, "\n");
print_port(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_SLOT:
oprintf(fp, "\n");
print_slot(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_OBDEVS:
oprintf(fp, "\n");
print_obdevs(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_OEMSTR:
case SMB_TYPE_SYSCONFSTR:
oprintf(fp, "\n");
print_strtab(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_LANG:
oprintf(fp, "\n");
print_lang(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_EVENTLOG:
oprintf(fp, "\n");
print_evlog(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_MEMARRAY:
oprintf(fp, "\n");
print_memarray(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_MEMDEVICE:
oprintf(fp, "\n");
print_memdevice(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_MEMARRAYMAP:
oprintf(fp, "\n");
print_memarrmap(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_MEMDEVICEMAP:
oprintf(fp, "\n");
print_memdevmap(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_BATTERY:
oprintf(fp, "\n");
print_battery(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_POINTDEV:
oprintf(fp, "\n");
print_pointdev(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_SECURITY:
oprintf(fp, "\n");
print_hwsec(shp, fp);
break;
case SMB_TYPE_VPROBE:
oprintf(fp, "\n");
print_vprobe(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_COOLDEV:
oprintf(fp, "\n");
print_cooldev(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_TPROBE:
oprintf(fp, "\n");
print_tprobe(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_IPROBE:
oprintf(fp, "\n");
print_iprobe(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_BOOT:
oprintf(fp, "\n");
print_boot(shp, fp);
break;
case SMB_TYPE_IPMIDEV:
oprintf(fp, "\n");
print_ipmi(shp, fp);
break;
case SMB_TYPE_POWERSUP:
oprintf(fp, "\n");
print_powersup(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_OBDEVEXT:
oprintf(fp, "\n");
print_obdevs_ext(shp, sp->smbstr_id, fp);
break;
case SMB_TYPE_PROCESSOR_INFO:
oprintf(fp, "\n");
print_processor_info(shp, sp->smbstr_id, fp);
break;
case SUN_OEM_EXT_PROCESSOR:
oprintf(fp, "\n");
print_extprocessor(shp, sp->smbstr_id, fp);
break;
case SUN_OEM_EXT_PORT:
oprintf(fp, "\n");
print_extport(shp, sp->smbstr_id, fp);
break;
case SUN_OEM_PCIEXRC:
oprintf(fp, "\n");
print_pciexrc(shp, sp->smbstr_id, fp);
break;
case SUN_OEM_EXT_MEMARRAY:
oprintf(fp, "\n");
print_extmemarray(shp, sp->smbstr_id, fp);
break;
case SUN_OEM_EXT_MEMDEVICE:
oprintf(fp, "\n");
print_extmemdevice(shp, sp->smbstr_id, fp);
break;
default:
hex++;
}
if (hex)
print_bytes(sp->smbstr_data, sp->smbstr_size, fp);
else
oprintf(fp, "\n");
return (0);
}
static uint16_t
getu16(const char *name, const char *s)
{
u_longlong_t val;
char *p;
errno = 0;
val = strtoull(s, &p, 0);
if (errno != 0 || p == s || *p != '\0' || val > UINT16_MAX) {
(void) fprintf(stderr, "%s: invalid %s argument -- %s\n",
g_pname, name, s);
exit(SMBIOS_USAGE);
}
return ((uint16_t)val);
}
static uint16_t
getstype(const char *name, const char *s)
{
const char *ts;
uint16_t t;
for (t = 0; t < SMB_TYPE_OEM_LO; t++) {
if ((ts = smbios_type_name(t)) != NULL && strcmp(s, ts) == 0)
return (t);
}
(void) fprintf(stderr, "%s: invalid %s argument -- %s\n",
g_pname, name, s);
exit(SMBIOS_USAGE);
/*NOTREACHED*/
}
static int
usage(FILE *fp)
{
(void) fprintf(fp, "Usage: %s "
"[-BeOsx] [-i id] [-t type] [-w file] [file]\n\n", g_pname);
(void) fprintf(fp,
"\t-B disable header validation for broken BIOSes\n"
"\t-e display SMBIOS entry point information\n"
"\t-i display only the specified structure\n"
"\t-O display obsolete structure types\n"
"\t-s display only a summary of structure identifiers and types\n"
"\t-t display only the specified structure type\n"
"\t-w write the raw data to the specified file\n"
"\t-x display raw data for structures\n");
return (SMBIOS_USAGE);
}
int
main(int argc, char *argv[])
{
const char *ifile = NULL;
const char *ofile = NULL;
int oflags = 0;
smbios_hdl_t *shp;
smbios_struct_t s;
int err, fd, c;
char *p;
if ((p = strrchr(argv[0], '/')) == NULL)
g_pname = argv[0];
else
g_pname = p + 1;
while (optind < argc) {
while ((c = getopt(argc, argv, "Bei:Ost:w:xZ")) != EOF) {
switch (c) {
case 'B':
oflags |= SMB_O_NOCKSUM | SMB_O_NOVERS;
break;
case 'e':
opt_e++;
break;
case 'i':
opt_i = getu16("struct ID", optarg);
break;
case 'O':
opt_O++;
break;
case 's':
opt_s++;
break;
case 't':
if (isdigit(optarg[0]))
opt_t = getu16("struct type", optarg);
else
opt_t = getstype("struct type", optarg);
break;
case 'w':
ofile = optarg;
break;
case 'x':
opt_x++;
break;
case 'Z':
oflags |= SMB_O_ZIDS; /* undocumented */
break;
default:
return (usage(stderr));
}
}
if (optind < argc) {
if (ifile != NULL) {
(void) fprintf(stderr, "%s: illegal "
"argument -- %s\n", g_pname, argv[optind]);
return (SMBIOS_USAGE);
}
ifile = argv[optind++];
}
}
if ((shp = smbios_open(ifile, SMB_VERSION, oflags, &err)) == NULL) {
(void) fprintf(stderr, "%s: failed to load SMBIOS: %s\n",
g_pname, smbios_errmsg(err));
return (SMBIOS_ERROR);
}
if (opt_i == -1 && opt_t == -1 && opt_e == 0 &&
smbios_truncated(shp))
(void) fprintf(stderr, "%s: SMBIOS table is truncated\n",
g_pname);
if (ofile != NULL) {
if ((fd = open(ofile, O_WRONLY|O_CREAT|O_TRUNC, 0666)) == -1) {
(void) fprintf(stderr, "%s: failed to open %s: %s\n",
g_pname, ofile, strerror(errno));
err = SMBIOS_ERROR;
} else if (smbios_write(shp, fd) != 0) {
(void) fprintf(stderr, "%s: failed to write %s: %s\n",
g_pname, ofile, smbios_errmsg(smbios_errno(shp)));
err = SMBIOS_ERROR;
}
smbios_close(shp);
return (err);
}
if (opt_e) {
print_smbios(shp, stdout);
smbios_close(shp);
return (SMBIOS_SUCCESS);
}
if (opt_O && (opt_i != -1 || opt_t != -1))
opt_O++; /* -i or -t imply displaying obsolete records */
if (opt_i != -1)
err = smbios_lookup_id(shp, opt_i, &s);
else
err = smbios_iter(shp, print_struct, stdout);
if (err != 0) {
(void) fprintf(stderr, "%s: failed to access SMBIOS: %s\n",
g_pname, smbios_errmsg(smbios_errno(shp)));
smbios_close(shp);
return (SMBIOS_ERROR);
}
if (opt_i != -1)
(void) print_struct(shp, &s, stdout);
smbios_close(shp);
return (SMBIOS_SUCCESS);
}
|