]> git.ipfire.org Git - thirdparty/util-linux.git/blame - sys-utils/lscpu.c
lscpu: fix mem leak [coverity scan]
[thirdparty/util-linux.git] / sys-utils / lscpu.c
CommitLineData
5dd7507c
CQ
1/*
2 * lscpu - CPU architecture information helper
3 *
4 * Copyright (C) 2008 Cai Qian <qcai@redhat.com>
5 * Copyright (C) 2008 Karel Zak <kzak@redhat.com>
6 *
80dde62f 7 * This program is free software; you can redistribute it and/or modify
5dd7507c 8 * it under the terms of the GNU General Public License as published by
80dde62f 9 * the Free Software Foundation; either version 2 of the License, or
5dd7507c
CQ
10 * (at your option) any later version.
11 *
80dde62f 12 * This program is distributed in the hope that it would be useful,
5dd7507c
CQ
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
7cebf0bb
SK
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
5dd7507c
CQ
20 */
21
5bd31c6d 22#include <assert.h>
5dd7507c
CQ
23#include <ctype.h>
24#include <dirent.h>
5dd7507c
CQ
25#include <errno.h>
26#include <fcntl.h>
27#include <getopt.h>
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
31#include <sys/utsname.h>
32#include <unistd.h>
33#include <stdarg.h>
39561c70
KZ
34#include <sys/types.h>
35#include <sys/stat.h>
5dd7507c 36
6d9b1c19
KZ
37#if (defined(__x86_64__) || defined(__i386__))
38# if !defined( __SANITIZE_ADDRESS__)
39# define INCLUDE_VMWARE_BDOOR
40# else
41# warning VMWARE detection disabled by __SANITIZE_ADDRESS__
42# endif
b7744730
RM
43#endif
44
45#ifdef INCLUDE_VMWARE_BDOOR
46# include <stdint.h>
47# include <signal.h>
48# include <strings.h>
49# include <setjmp.h>
65322517 50# ifdef HAVE_SYS_IO_H
b7744730
RM
51# include <sys/io.h>
52# endif
53#endif
54
bd9b94d1
SB
55#if defined(HAVE_LIBRTAS)
56#include <librtas.h>
57#endif
58
83db4eb2
OO
59#include <libsmartcols.h>
60
7e03f383 61#include "cpuset.h"
5dd7507c 62#include "nls.h"
4581647a 63#include "xalloc.h"
eb76ca98 64#include "c.h"
477251f8
KZ
65#include "strutils.h"
66#include "bitops.h"
8148217b 67#include "path.h"
efb8854f 68#include "closestream.h"
41a8940d 69#include "optutils.h"
fb2627ce 70#include "lscpu.h"
477251f8 71
5dd7507c
CQ
72#define CACHE_MAX 100
73
74/* /sys paths */
d50363cd 75#define _PATH_SYS_SYSTEM "/sys/devices/system"
0ebbe9f1 76#define _PATH_SYS_HYP_FEATURES "/sys/hypervisor/properties/features"
7e03f383 77#define _PATH_SYS_CPU _PATH_SYS_SYSTEM "/cpu"
e9074a16 78#define _PATH_SYS_NODE _PATH_SYS_SYSTEM "/node"
d50363cd 79#define _PATH_PROC_XEN "/proc/xen"
c8b64f6d 80#define _PATH_PROC_XENCAP _PATH_PROC_XEN "/capabilities"
d50363cd
KZ
81#define _PATH_PROC_CPUINFO "/proc/cpuinfo"
82#define _PATH_PROC_PCIDEVS "/proc/bus/pci/devices"
b8ec7bdf 83#define _PATH_PROC_SYSINFO "/proc/sysinfo"
fb2627ce
OO
84#define _PATH_PROC_STATUS "/proc/self/status"
85#define _PATH_PROC_VZ "/proc/vz"
86#define _PATH_PROC_BC "/proc/bc"
5bd31c6d 87#define _PATH_PROC_DEVICETREE "/proc/device-tree"
fb2627ce 88#define _PATH_DEV_MEM "/dev/mem"
7572fb2b 89#define _PATH_PROC_OSRELEASE "/proc/sys/kernel/osrelease"
5dd7507c 90
0ebbe9f1
DZ
91/* Xen Domain feature flag used for /sys/hypervisor/properties/features */
92#define XENFEAT_supervisor_mode_kernel 3
93#define XENFEAT_mmu_pt_update_preserve_ad 5
94#define XENFEAT_hvm_callback_vector 8
95
96#define XEN_FEATURES_PV_MASK (1U << XENFEAT_mmu_pt_update_preserve_ad)
97#define XEN_FEATURES_PVH_MASK ( (1U << XENFEAT_supervisor_mode_kernel) \
98 | (1U << XENFEAT_hvm_callback_vector) )
99
c8b64f6d
KZ
100/* virtualization types */
101enum {
102 VIRT_NONE = 0,
103 VIRT_PARA,
857d9cdf
KZ
104 VIRT_FULL,
105 VIRT_CONT
c8b64f6d 106};
2ba641e5 107static const char *virt_types[] = {
c8b64f6d
KZ
108 [VIRT_NONE] = N_("none"),
109 [VIRT_PARA] = N_("para"),
857d9cdf
KZ
110 [VIRT_FULL] = N_("full"),
111 [VIRT_CONT] = N_("container"),
c8b64f6d
KZ
112};
113
2ba641e5 114static const char *hv_vendors[] = {
c8b64f6d
KZ
115 [HYPER_NONE] = NULL,
116 [HYPER_XEN] = "Xen",
117 [HYPER_KVM] = "KVM",
99fbc877 118 [HYPER_MSHV] = "Microsoft",
b8ec7bdf 119 [HYPER_VMWARE] = "VMware",
fb2627ce
OO
120 [HYPER_IBM] = "IBM",
121 [HYPER_VSERVER] = "Linux-VServer",
122 [HYPER_UML] = "User-mode Linux",
123 [HYPER_INNOTEK] = "Innotek GmbH",
124 [HYPER_HITACHI] = "Hitachi",
96ce475f
RM
125 [HYPER_PARALLELS] = "Parallels",
126 [HYPER_VBOX] = "Oracle",
5bd31c6d
RM
127 [HYPER_OS400] = "OS/400",
128 [HYPER_PHYP] = "pHyp",
7572fb2b
SB
129 [HYPER_SPAR] = "Unisys s-Par",
130 [HYPER_WSL] = "Windows Subsystem for Linux"
96ce475f
RM
131};
132
2ba641e5 133static const int hv_vendor_pci[] = {
96ce475f
RM
134 [HYPER_NONE] = 0x0000,
135 [HYPER_XEN] = 0x5853,
136 [HYPER_KVM] = 0x0000,
137 [HYPER_MSHV] = 0x1414,
138 [HYPER_VMWARE] = 0x15ad,
139 [HYPER_VBOX] = 0x80ee,
140};
141
2ba641e5 142static const int hv_graphics_pci[] = {
96ce475f
RM
143 [HYPER_NONE] = 0x0000,
144 [HYPER_XEN] = 0x0001,
145 [HYPER_KVM] = 0x0000,
146 [HYPER_MSHV] = 0x5353,
147 [HYPER_VMWARE] = 0x0710,
148 [HYPER_VBOX] = 0xbeef,
c8b64f6d
KZ
149};
150
f633ad4e 151/* CPU modes */
79e8b41a 152enum {
f633ad4e
KZ
153 MODE_32BIT = (1 << 1),
154 MODE_64BIT = (1 << 2)
79e8b41a 155};
c8b64f6d 156
e8aa16ee
KZ
157/* cache(s) description */
158struct cpu_cache {
7e03f383
KZ
159 char *name;
160 char *size;
161
162 int nsharedmaps;
163 cpu_set_t **sharedmaps;
e8aa16ee
KZ
164};
165
a0fff77e
HC
166/* dispatching modes */
167enum {
168 DISP_HORIZONTAL = 0,
169 DISP_VERTICAL = 1
170};
171
2ba641e5 172static const char *disp_modes[] = {
a0fff77e
HC
173 [DISP_HORIZONTAL] = N_("horizontal"),
174 [DISP_VERTICAL] = N_("vertical")
175};
176
2b8fcb81
HC
177/* cpu polarization */
178enum {
179 POLAR_UNKNOWN = 0,
180 POLAR_VLOW,
181 POLAR_VMEDIUM,
182 POLAR_VHIGH,
183 POLAR_HORIZONTAL
184};
185
8005924a
KZ
186struct polarization_modes {
187 char *parsable;
188 char *readable;
189};
190
2ba641e5 191static struct polarization_modes polar_modes[] = {
8005924a
KZ
192 [POLAR_UNKNOWN] = {"U", "-"},
193 [POLAR_VLOW] = {"VL", "vert-low"},
194 [POLAR_VMEDIUM] = {"VM", "vert-medium"},
195 [POLAR_VHIGH] = {"VH", "vert-high"},
196 [POLAR_HORIZONTAL] = {"H", "horizontal"},
2b8fcb81
HC
197};
198
e8aa16ee
KZ
199/* global description */
200struct lscpu_desc {
5dd7507c
CQ
201 char *arch;
202 char *vendor;
0c28f0c8 203 char *machinetype; /* s390 */
5dd7507c
CQ
204 char *family;
205 char *model;
1461094c 206 char *modelname;
c95e3889
RM
207 char *revision; /* alternative for model (ppc) */
208 char *cpu; /* alternative for modelname (ppc, sparc) */
c8b64f6d 209 char *virtflag; /* virtualization flag (vmx, svm) */
10829cd7 210 char *hypervisor; /* hypervisor software */
c8b64f6d
KZ
211 int hyper; /* hypervisor vendor ID */
212 int virtype; /* VIRT_PARA|FULL|NONE ? */
5dd7507c 213 char *mhz;
4632b288
HC
214 char *dynamic_mhz; /* dynamic mega hertz (s390) */
215 char *static_mhz; /* static mega hertz (s390) */
e065a597
DB
216 char **maxmhz; /* maximum mega hertz */
217 char **minmhz; /* minimum mega hertz */
5dd7507c 218 char *stepping;
9b8d4d5f 219 char *bogomips;
5dd7507c 220 char *flags;
2c497d32 221 char *mtid; /* maximum thread id (s390) */
a0fff77e 222 int dispatching; /* none, horizontal or vertical */
79e8b41a
KZ
223 int mode; /* rm, lm or/and tm */
224
a5cfffff
TK
225 int ncpuspos; /* maximal possible CPUs */
226 int ncpus; /* number of present CPUs */
227 cpu_set_t *present; /* mask with present CPUs */
aac1e59e 228 cpu_set_t *online; /* mask with online CPUs */
7e03f383 229
4f642863
AT
230 int nthreads; /* number of online threads */
231
232 int ncaches;
233 struct cpu_cache *caches;
234
28b1658f
HC
235 int necaches; /* extra caches (s390) */
236 struct cpu_cache *ecaches;
237
4f642863
AT
238 /*
239 * All maps are sequentially indexed (0..ncpuspos), the array index
240 * does not have match with cpuX number as presented by kernel. You
241 * have to use real_cpu_num() to get the real cpuX number.
242 *
243 * For example, the possible system CPUs are: 1,3,5, it means that
244 * ncpuspos=3, so all arrays are in range 0..3.
245 */
246 int *idx2cpunum; /* mapping index to CPU num */
247
7e03f383 248 int nnodes; /* number of NUMA modes */
e9074a16 249 int *idx2nodenum; /* Support for discontinuous nodes */
7e03f383
KZ
250 cpu_set_t **nodemaps; /* array with NUMA nodes */
251
b3adf6ef
HC
252 /* drawers -- based on drawer_siblings (internal kernel map of cpuX's
253 * hardware threads within the same drawer */
254 int ndrawers; /* number of all online drawers */
255 cpu_set_t **drawermaps; /* unique drawer_siblings */
0d2b5d2a 256 int *drawerids; /* physical drawer ids */
b3adf6ef 257
56baaa4e
HC
258 /* books -- based on book_siblings (internal kernel map of cpuX's
259 * hardware threads within the same book */
260 int nbooks; /* number of all online books */
261 cpu_set_t **bookmaps; /* unique book_siblings */
0d2b5d2a 262 int *bookids; /* physical book ids */
56baaa4e 263
7e03f383
KZ
264 /* sockets -- based on core_siblings (internal kernel map of cpuX's
265 * hardware threads within the same physical_package_id (socket)) */
e282eec2 266 int nsockets; /* number of all online sockets */
7e03f383 267 cpu_set_t **socketmaps; /* unique core_siblings */
0d2b5d2a 268 int *socketids; /* physical socket ids */
7e03f383 269
9e930041 270 /* cores -- based on thread_siblings (internal kernel map of cpuX's
7e03f383 271 * hardware threads within the same core as cpuX) */
e282eec2 272 int ncores; /* number of all online cores */
7e03f383 273 cpu_set_t **coremaps; /* unique thread_siblings */
0d2b5d2a 274 int *coreids; /* physical core ids */
7e03f383 275
2b8fcb81 276 int *polarization; /* cpu polarization */
596b8845 277 int *addresses; /* physical cpu addresses */
d231eea1 278 int *configured; /* cpu configured */
bd9b94d1
SB
279 int physsockets; /* Physical sockets (modules) */
280 int physchips; /* Physical chips */
281 int physcoresperchip; /* Physical cores per chip */
5dd7507c
CQ
282};
283
8005924a
KZ
284enum {
285 OUTPUT_SUMMARY = 0, /* default */
286 OUTPUT_PARSABLE, /* -p */
ba45d8c1 287 OUTPUT_READABLE, /* -e */
8005924a
KZ
288};
289
8148217b
HC
290enum {
291 SYSTEM_LIVE = 0, /* analyzing a live system */
292 SYSTEM_SNAPSHOT, /* analyzing a snapshot of a different system */
293};
294
8005924a 295struct lscpu_modifier {
a7e5300c 296 int mode; /* OUTPUT_* */
8148217b 297 int system; /* SYSTEM_* */
a7e5300c
HC
298 unsigned int hex:1, /* print CPU masks rather than CPU lists */
299 compat:1, /* use backwardly compatible format */
7afc2387 300 online:1, /* print online CPUs */
0d2b5d2a 301 offline:1, /* print offline CPUs */
19a5510b 302 json:1, /* JSON output format */
0d2b5d2a 303 physical:1; /* use physical numbers */
8005924a
KZ
304};
305
7e03f383 306static int maxcpus; /* size in bits of kernel cpu mask */
5dd7507c 307
aac1e59e 308#define is_cpu_online(_d, _cpu) \
a5cfffff
TK
309 ((_d) && (_d)->online ? \
310 CPU_ISSET_S((_cpu), CPU_ALLOC_SIZE(maxcpus), (_d)->online) : 0)
311#define is_cpu_present(_d, _cpu) \
312 ((_d) && (_d)->present ? \
313 CPU_ISSET_S((_cpu), CPU_ALLOC_SIZE(maxcpus), (_d)->present) : 0)
aac1e59e 314
4f642863
AT
315#define real_cpu_num(_d, _i) ((_d)->idx2cpunum[(_i)])
316
477251f8 317/*
3d27b76a 318 * IDs
477251f8
KZ
319 */
320enum {
321 COL_CPU,
322 COL_CORE,
323 COL_SOCKET,
324 COL_NODE,
325 COL_BOOK,
b3adf6ef 326 COL_DRAWER,
2b8fcb81 327 COL_CACHE,
596b8845 328 COL_POLARIZATION,
d231eea1
HC
329 COL_ADDRESS,
330 COL_CONFIGURED,
a7e5300c 331 COL_ONLINE,
e065a597
DB
332 COL_MAXMHZ,
333 COL_MINMHZ,
477251f8
KZ
334};
335
3d27b76a
KZ
336/* column description
337 */
338struct lscpu_coldesc {
339 const char *name;
340 const char *help;
341
342 unsigned int is_abbr:1; /* name is abbreviation */
477251f8
KZ
343};
344
3d27b76a
KZ
345static struct lscpu_coldesc coldescs[] =
346{
347 [COL_CPU] = { "CPU", N_("logical CPU number"), 1 },
348 [COL_CORE] = { "CORE", N_("logical core number") },
349 [COL_SOCKET] = { "SOCKET", N_("logical socket number") },
350 [COL_NODE] = { "NODE", N_("logical NUMA node number") },
351 [COL_BOOK] = { "BOOK", N_("logical book number") },
b3adf6ef 352 [COL_DRAWER] = { "DRAWER", N_("logical drawer number") },
3d27b76a
KZ
353 [COL_CACHE] = { "CACHE", N_("shows how caches are shared between CPUs") },
354 [COL_POLARIZATION] = { "POLARIZATION", N_("CPU dispatching mode on virtual hardware") },
355 [COL_ADDRESS] = { "ADDRESS", N_("physical address of a CPU") },
356 [COL_CONFIGURED] = { "CONFIGURED", N_("shows if the hypervisor has allocated the CPU") },
44320710 357 [COL_ONLINE] = { "ONLINE", N_("shows if Linux currently makes use of the CPU") },
4df28845
BS
358 [COL_MAXMHZ] = { "MAXMHZ", N_("shows the maximum MHz of the CPU") },
359 [COL_MINMHZ] = { "MINMHZ", N_("shows the minimum MHz of the CPU") }
3d27b76a 360};
477251f8 361
583f14cc
KZ
362static int
363column_name_to_id(const char *name, size_t namesz)
477251f8 364{
329fd1c3 365 size_t i;
477251f8 366
3d27b76a
KZ
367 for (i = 0; i < ARRAY_SIZE(coldescs); i++) {
368 const char *cn = coldescs[i].name;
477251f8
KZ
369
370 if (!strncasecmp(name, cn, namesz) && !*(cn + namesz))
371 return i;
372 }
373 warnx(_("unknown column: %s"), name);
374 return -1;
375}
376
5dd7507c
CQ
377/* Lookup a pattern and get the value from cpuinfo.
378 * Format is:
379 *
380 * "<pattern> : <key>"
381 */
583f14cc
KZ
382static int
383lookup(char *line, char *pattern, char **value)
5dd7507c
CQ
384{
385 char *p, *v;
386 int len = strlen(pattern);
387
e5fc6d6f
RM
388 /* don't re-fill already found tags, first one wins */
389 if (!*line || *value)
5dd7507c
CQ
390 return 0;
391
392 /* pattern */
393 if (strncmp(line, pattern, len))
394 return 0;
395
396 /* white spaces */
397 for (p = line + len; isspace(*p); p++);
398
399 /* separator */
400 if (*p != ':')
401 return 0;
402
403 /* white spaces */
404 for (++p; isspace(*p); p++);
405
406 /* value */
407 if (!*p)
408 return 0;
409 v = p;
410
411 /* end of value */
412 len = strlen(line) - 1;
413 for (p = line + len; isspace(*(p-1)); p--);
414 *p = '\0';
415
416 *value = xstrdup(v);
417 return 1;
418}
419
28b1658f
HC
420/* Parse extra cache lines contained within /proc/cpuinfo but which are not
421 * part of the cache topology information within the sysfs filesystem.
422 * This is true for all shared caches on e.g. s390. When there are layers of
423 * hypervisors in between it is not knows which CPUs share which caches.
424 * Therefore information about shared caches is only available in
425 * /proc/cpuinfo.
426 * Format is:
427 * "cache<nr> : level=<lvl> type=<type> scope=<scope> size=<size> line_size=<lsz> associativity=<as>"
428 */
429static int
430lookup_cache(char *line, struct lscpu_desc *desc)
431{
432 struct cpu_cache *cache;
433 long long size;
434 char *p, type;
435 int level;
436
437 /* Make sure line starts with "cache<nr> :" */
438 if (strncmp(line, "cache", 5))
439 return 0;
440 for (p = line + 5; isdigit(*p); p++);
441 for (; isspace(*p); p++);
442 if (*p != ':')
443 return 0;
444
445 p = strstr(line, "scope=") + 6;
446 /* Skip private caches, also present in sysfs */
447 if (!p || strncmp(p, "Private", 7) == 0)
448 return 0;
449 p = strstr(line, "level=");
81a307bd
KZ
450 if (!p || sscanf(p, "level=%d", &level) != 1)
451 return 0;
28b1658f 452 p = strstr(line, "type=") + 5;
81a307bd
KZ
453 if (!p || !*p)
454 return 0;
28b1658f
HC
455 type = 0;
456 if (strncmp(p, "Data", 4) == 0)
457 type = 'd';
458 if (strncmp(p, "Instruction", 11) == 0)
459 type = 'i';
460 p = strstr(line, "size=");
81a307bd
KZ
461 if (!p || sscanf(p, "size=%lld", &size) != 1)
462 return 0;
463
28b1658f
HC
464 desc->necaches++;
465 desc->ecaches = xrealloc(desc->ecaches,
466 desc->necaches * sizeof(struct cpu_cache));
467 cache = &desc->ecaches[desc->necaches - 1];
468 memset(cache, 0 , sizeof(*cache));
469 if (type)
470 xasprintf(&cache->name, "L%d%c", level, type);
471 else
472 xasprintf(&cache->name, "L%d", level);
473 xasprintf(&cache->size, "%lldK", size);
474 return 1;
475}
476
f633ad4e
KZ
477/* Don't init the mode for platforms where we are not able to
478 * detect that CPU supports 64-bit mode.
479 */
480static int
8148217b 481init_mode(struct lscpu_modifier *mod)
f633ad4e
KZ
482{
483 int m = 0;
484
8148217b 485 if (mod->system == SYSTEM_SNAPSHOT)
4e740fd8
KZ
486 /* reading info from any /{sys,proc} dump, don't mix it with
487 * information about our real CPU */
488 return 0;
489
f633ad4e
KZ
490#if defined(__alpha__) || defined(__ia64__)
491 m |= MODE_64BIT; /* 64bit platforms only */
492#endif
493 /* platforms with 64bit flag in /proc/cpuinfo, define
494 * 32bit default here */
495#if defined(__i386__) || defined(__x86_64__) || \
c487c90c 496 defined(__s390x__) || defined(__s390__) || defined(__sparc_v9__)
f633ad4e
KZ
497 m |= MODE_32BIT;
498#endif
499 return m;
500}
501
bd9b94d1
SB
502#if defined(HAVE_LIBRTAS)
503#define PROCESSOR_MODULE_INFO 43
504static int strbe16toh(const char *buf, int offset)
505{
506 return (buf[offset] << 8) + buf[offset+1];
507}
508
509static void read_physical_info_powerpc(struct lscpu_desc *desc)
510{
511 char buf[BUFSIZ];
512 int rc, len, ntypes;
513
514 desc->physsockets = desc->physchips = desc->physcoresperchip = 0;
515
516 rc = rtas_get_sysparm(PROCESSOR_MODULE_INFO, sizeof(buf), buf);
517 if (rc < 0)
518 return;
519
520 len = strbe16toh(buf, 0);
521 if (len < 8)
522 return;
523
524 ntypes = strbe16toh(buf, 2);
525
526 assert(ntypes <= 1);
527 if (!ntypes)
528 return;
529
530 desc->physsockets = strbe16toh(buf, 4);
531 desc->physchips = strbe16toh(buf, 6);
532 desc->physcoresperchip = strbe16toh(buf, 8);
533}
534#else
535static void read_physical_info_powerpc(
536 struct lscpu_desc *desc __attribute__((__unused__)))
537{
538}
539#endif
540
5dd7507c 541static void
8148217b 542read_basicinfo(struct lscpu_desc *desc, struct lscpu_modifier *mod)
5dd7507c 543{
d50363cd 544 FILE *fp = path_fopen("r", 1, _PATH_PROC_CPUINFO);
5dd7507c
CQ
545 char buf[BUFSIZ];
546 struct utsname utsbuf;
a5cfffff 547 size_t setsize;
5dd7507c
CQ
548
549 /* architecture */
550 if (uname(&utsbuf) == -1)
551 err(EXIT_FAILURE, _("error: uname failed"));
e8aa16ee 552 desc->arch = xstrdup(utsbuf.machine);
5dd7507c 553
5dd7507c
CQ
554 /* details */
555 while (fgets(buf, sizeof(buf), fp) != NULL) {
e8aa16ee
KZ
556 if (lookup(buf, "vendor", &desc->vendor)) ;
557 else if (lookup(buf, "vendor_id", &desc->vendor)) ;
e8aa16ee
KZ
558 else if (lookup(buf, "family", &desc->family)) ;
559 else if (lookup(buf, "cpu family", &desc->family)) ;
86c4817e
RM
560 else if (lookup(buf, "model", &desc->model)) ;
561 else if (lookup(buf, "model name", &desc->modelname)) ;
e8aa16ee
KZ
562 else if (lookup(buf, "stepping", &desc->stepping)) ;
563 else if (lookup(buf, "cpu MHz", &desc->mhz)) ;
4632b288
HC
564 else if (lookup(buf, "cpu MHz dynamic", &desc->dynamic_mhz)) ; /* s390 */
565 else if (lookup(buf, "cpu MHz static", &desc->static_mhz)) ; /* s390 */
f633ad4e
KZ
566 else if (lookup(buf, "flags", &desc->flags)) ; /* x86 */
567 else if (lookup(buf, "features", &desc->flags)) ; /* s390 */
a3c455ac 568 else if (lookup(buf, "Features", &desc->flags)) ; /* aarch64 */
c487c90c 569 else if (lookup(buf, "type", &desc->flags)) ; /* sparc64 */
9b8d4d5f 570 else if (lookup(buf, "bogomips", &desc->bogomips)) ;
a3c455ac 571 else if (lookup(buf, "BogoMIPS", &desc->bogomips)) ; /* aarch64 */
abcd6368 572 else if (lookup(buf, "bogomips per cpu", &desc->bogomips)) ; /* s390 */
c95e3889
RM
573 else if (lookup(buf, "cpu", &desc->cpu)) ;
574 else if (lookup(buf, "revision", &desc->revision)) ;
a3c455ac 575 else if (lookup(buf, "CPU revision", &desc->revision)) ; /* aarch64 */
2c497d32 576 else if (lookup(buf, "max thread id", &desc->mtid)) ; /* s390 */
28b1658f 577 else if (lookup_cache(buf, desc)) ;
5dd7507c
CQ
578 else
579 continue;
580 }
c8b64f6d 581
8148217b 582 desc->mode = init_mode(mod);
f633ad4e 583
e8aa16ee
KZ
584 if (desc->flags) {
585 snprintf(buf, sizeof(buf), " %s ", desc->flags);
c8b64f6d 586 if (strstr(buf, " svm "))
8290a249 587 desc->virtflag = xstrdup("svm");
c8b64f6d 588 else if (strstr(buf, " vmx "))
8290a249 589 desc->virtflag = xstrdup("vmx");
79e8b41a 590 if (strstr(buf, " lm "))
f633ad4e
KZ
591 desc->mode |= MODE_32BIT | MODE_64BIT; /* x86_64 */
592 if (strstr(buf, " zarch "))
593 desc->mode |= MODE_32BIT | MODE_64BIT; /* s390x */
c487c90c
KZ
594 if (strstr(buf, " sun4v ") || strstr(buf, " sun4u "))
595 desc->mode |= MODE_32BIT | MODE_64BIT; /* sparc64 */
c8b64f6d
KZ
596 }
597
4581b716
KZ
598 if (desc->arch && mod->system != SYSTEM_SNAPSHOT) {
599 if (strcmp(desc->arch, "ppc64") == 0)
600 desc->mode |= MODE_32BIT | MODE_64BIT;
601 else if (strcmp(desc->arch, "ppc") == 0)
602 desc->mode |= MODE_32BIT;
603 }
604
5dd7507c 605 fclose(fp);
7e03f383 606
1d56b55e 607 if (path_exist(_PATH_SYS_CPU "/kernel_max"))
3d6e5c35 608 /* note that kernel_max is maximum index [NR_CPUS-1] */
1d56b55e 609 maxcpus = path_read_s32(_PATH_SYS_CPU "/kernel_max") + 1;
7e03f383 610
8148217b 611 else if (mod->system == SYSTEM_LIVE)
7e03f383
KZ
612 /* the root is '/' so we are working with data from the current kernel */
613 maxcpus = get_max_number_of_cpus();
701e2b8e
KZ
614
615 if (maxcpus <= 0)
616 /* error or we are reading some /sys snapshot instead of the
617 * real /sys, let's use any crazy number... */
a5cfffff
TK
618 maxcpus = 2048;
619
620 setsize = CPU_ALLOC_SIZE(maxcpus);
621
1d56b55e
RM
622 if (path_exist(_PATH_SYS_CPU "/possible")) {
623 cpu_set_t *tmp = path_read_cpulist(maxcpus, _PATH_SYS_CPU "/possible");
4f642863
AT
624 int num, idx;
625
a5cfffff 626 desc->ncpuspos = CPU_COUNT_S(setsize, tmp);
4f642863
AT
627 desc->idx2cpunum = xcalloc(desc->ncpuspos, sizeof(int));
628
629 for (num = 0, idx = 0; num < maxcpus; num++) {
630 if (CPU_ISSET(num, tmp))
631 desc->idx2cpunum[idx++] = num;
632 }
a5cfffff
TK
633 cpuset_free(tmp);
634 } else
635 err(EXIT_FAILURE, _("failed to determine number of CPUs: %s"),
1d56b55e 636 _PATH_SYS_CPU "/possible");
a5cfffff
TK
637
638
639 /* get mask for present CPUs */
1d56b55e
RM
640 if (path_exist(_PATH_SYS_CPU "/present")) {
641 desc->present = path_read_cpulist(maxcpus, _PATH_SYS_CPU "/present");
a5cfffff
TK
642 desc->ncpus = CPU_COUNT_S(setsize, desc->present);
643 }
aac1e59e
KZ
644
645 /* get mask for online CPUs */
1d56b55e
RM
646 if (path_exist(_PATH_SYS_CPU "/online")) {
647 desc->online = path_read_cpulist(maxcpus, _PATH_SYS_CPU "/online");
e282eec2
KZ
648 desc->nthreads = CPU_COUNT_S(setsize, desc->online);
649 }
a0fff77e
HC
650
651 /* get dispatching mode */
1d56b55e
RM
652 if (path_exist(_PATH_SYS_CPU "/dispatching"))
653 desc->dispatching = path_read_s32(_PATH_SYS_CPU "/dispatching");
a0fff77e
HC
654 else
655 desc->dispatching = -1;
bd9b94d1
SB
656
657 if (mod->system == SYSTEM_LIVE)
658 read_physical_info_powerpc(desc);
0c28f0c8 659
904ffe1f
KZ
660 if ((fp = path_fopen("r", 0, _PATH_PROC_SYSINFO))) {
661 while (fgets(buf, sizeof(buf), fp) != NULL && !desc->machinetype)
0c28f0c8 662 lookup(buf, "Type", &desc->machinetype);
904ffe1f 663 fclose(fp);
0c28f0c8 664 }
5dd7507c
CQ
665}
666
c8b64f6d 667static int
140014a4 668has_pci_device(unsigned int vendor, unsigned int device)
c8b64f6d
KZ
669{
670 FILE *f;
13cf6fc8 671 unsigned int num, fn, ven, dev;
c8b64f6d
KZ
672 int res = 1;
673
d50363cd 674 f = path_fopen("r", 0, _PATH_PROC_PCIDEVS);
c8b64f6d
KZ
675 if (!f)
676 return 0;
677
678 /* for more details about bus/pci/devices format see
679 * drivers/pci/proc.c in linux kernel
680 */
681 while(fscanf(f, "%02x%02x\t%04x%04x\t%*[^\n]",
682 &num, &fn, &ven, &dev) == 4) {
683
684 if (ven == vendor && dev == device)
685 goto found;
686 }
687
688 res = 0;
689found:
690 fclose(f);
691 return res;
692}
693
694#if defined(__x86_64__) || defined(__i386__)
695
696/*
697 * This CPUID leaf returns the information about the hypervisor.
698 * EAX : maximum input value for CPUID supported by the hypervisor.
699 * EBX, ECX, EDX : Hypervisor vendor ID signature. E.g. VMwareVMware.
700 */
701#define HYPERVISOR_INFO_LEAF 0x40000000
702
703static inline void
704cpuid(unsigned int op, unsigned int *eax, unsigned int *ebx,
705 unsigned int *ecx, unsigned int *edx)
706{
c9239f23
MF
707 __asm__(
708#if defined(__PIC__) && defined(__i386__)
709 /* x86 PIC cannot clobber ebx -- gcc bitches */
7845b91d 710 "xchg %%ebx, %%esi;"
c9239f23 711 "cpuid;"
7845b91d 712 "xchg %%esi, %%ebx;"
c9239f23
MF
713 : "=S" (*ebx),
714#else
715 "cpuid;"
716 : "=b" (*ebx),
717#endif
718 "=a" (*eax),
c8b64f6d
KZ
719 "=c" (*ecx),
720 "=d" (*edx)
bc54770d 721 : "1" (op), "c"(0));
c8b64f6d
KZ
722}
723
724static void
e8aa16ee 725read_hypervisor_cpuid(struct lscpu_desc *desc)
c8b64f6d
KZ
726{
727 unsigned int eax = 0, ebx = 0, ecx = 0, edx = 0;
728 char hyper_vendor_id[13];
729
730 memset(hyper_vendor_id, 0, sizeof(hyper_vendor_id));
731
732 cpuid(HYPERVISOR_INFO_LEAF, &eax, &ebx, &ecx, &edx);
733 memcpy(hyper_vendor_id + 0, &ebx, 4);
734 memcpy(hyper_vendor_id + 4, &ecx, 4);
735 memcpy(hyper_vendor_id + 8, &edx, 4);
736 hyper_vendor_id[12] = '\0';
737
738 if (!hyper_vendor_id[0])
739 return;
740
741 if (!strncmp("XenVMMXenVMM", hyper_vendor_id, 12))
e8aa16ee 742 desc->hyper = HYPER_XEN;
c8b64f6d 743 else if (!strncmp("KVMKVMKVM", hyper_vendor_id, 9))
e8aa16ee 744 desc->hyper = HYPER_KVM;
c8b64f6d 745 else if (!strncmp("Microsoft Hv", hyper_vendor_id, 12))
e8aa16ee 746 desc->hyper = HYPER_MSHV;
99fbc877
SH
747 else if (!strncmp("VMwareVMware", hyper_vendor_id, 12))
748 desc->hyper = HYPER_VMWARE;
4597b692
BR
749 else if (!strncmp("UnisysSpar64", hyper_vendor_id, 12))
750 desc->hyper = HYPER_SPAR;
c8b64f6d
KZ
751}
752
b7744730 753#else /* ! (__x86_64__ || __i386__) */
c8b64f6d 754static void
6d791b4c 755read_hypervisor_cpuid(struct lscpu_desc *desc __attribute__((__unused__)))
c8b64f6d
KZ
756{
757}
758#endif
759
3565bd7a
KZ
760static int is_compatible(const char *path, const char *str)
761{
e03b613e 762 FILE *fd = path_fopen("r", 0, "%s", path);
3565bd7a 763
3565bd7a
KZ
764 if (fd) {
765 char buf[256];
766 size_t i, len;
767
768 memset(buf, 0, sizeof(buf));
769 len = fread(buf, 1, sizeof(buf) - 1, fd);
770 fclose(fd);
771
772 for (i = 0; i < len;) {
773 if (!strcmp(&buf[i], str))
774 return 1;
775 i += strlen(&buf[i]);
776 i++;
777 }
778 }
779
780 return 0;
781}
782
5bd31c6d
RM
783static int
784read_hypervisor_powerpc(struct lscpu_desc *desc)
785{
786 assert(!desc->hyper);
787
79738105 788 /* IBM iSeries: legacy, para-virtualized on top of OS/400 */
5bd31c6d
RM
789 if (path_exist("/proc/iSeries")) {
790 desc->hyper = HYPER_OS400;
791 desc->virtype = VIRT_PARA;
79738105
KZ
792
793 /* PowerNV (POWER Non-Virtualized, bare-metal) */
e03b613e
KZ
794 } else if (is_compatible(_PATH_PROC_DEVICETREE "/compatible", "ibm,powernv")) {
795 desc->hyper = HYPER_NONE;
796 desc->virtype = VIRT_NONE;
79738105 797
d45984be 798 /* PowerVM (IBM's proprietary hypervisor, aka pHyp) */
5bd31c6d
RM
799 } else if (path_exist(_PATH_PROC_DEVICETREE "/ibm,partition-name")
800 && path_exist(_PATH_PROC_DEVICETREE "/hmc-managed?")
801 && !path_exist(_PATH_PROC_DEVICETREE "/chosen/qemu,graphic-width")) {
802 FILE *fd;
803 desc->hyper = HYPER_PHYP;
804 desc->virtype = VIRT_PARA;
805 fd = path_fopen("r", 0, _PATH_PROC_DEVICETREE "/ibm,partition-name");
806 if (fd) {
807 char buf[256];
6cbf75e5 808 if (fscanf(fd, "%255s", buf) == 1 && !strcmp(buf, "full"))
5bd31c6d
RM
809 desc->virtype = VIRT_NONE;
810 fclose(fd);
811 }
79738105
KZ
812
813 /* Qemu */
e03b613e
KZ
814 } else if (is_compatible(_PATH_PROC_DEVICETREE "/compatible", "qemu,pseries")) {
815 desc->hyper = HYPER_KVM;
816 desc->virtype = VIRT_PARA;
5bd31c6d 817 }
5bd31c6d
RM
818 return desc->hyper;
819}
820
b7744730
RM
821#ifdef INCLUDE_VMWARE_BDOOR
822
823#define VMWARE_BDOOR_MAGIC 0x564D5868
824#define VMWARE_BDOOR_PORT 0x5658
825#define VMWARE_BDOOR_CMD_GETVERSION 10
826
77242032 827static UL_ASAN_BLACKLIST
7845b91d
MF
828void vmware_bdoor(uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx)
829{
830 __asm__(
831#if defined(__PIC__) && defined(__i386__)
832 /* x86 PIC cannot clobber ebx -- gcc bitches */
833 "xchg %%ebx, %%esi;"
834 "inl (%%dx), %%eax;"
835 "xchg %%esi, %%ebx;"
836 : "=S" (*ebx),
837#else
838 "inl (%%dx), %%eax;"
839 : "=b" (*ebx),
840#endif
841 "=a" (*eax),
842 "=c" (*ecx),
843 "=d" (*edx)
844 : "0" (VMWARE_BDOOR_MAGIC),
845 "1" (VMWARE_BDOOR_CMD_GETVERSION),
846 "2" (VMWARE_BDOOR_PORT),
847 "3" (0)
848 : "memory");
849}
b7744730
RM
850
851static jmp_buf segv_handler_env;
852
853static void
854segv_handler(__attribute__((__unused__)) int sig,
855 __attribute__((__unused__)) siginfo_t *info,
856 __attribute__((__unused__)) void *ignored)
857{
858 siglongjmp(segv_handler_env, 1);
859}
860
861static int
862is_vmware_platform(void)
863{
864 uint32_t eax, ebx, ecx, edx;
865 struct sigaction act, oact;
866
b5d61108
KZ
867 /*
868 * FIXME: Not reliable for non-root users. Note it works as expected if
869 * vmware_bdoor() is not optimized for PIE, but then it fails to build
870 * on 32bit x86 systems. See lscpu git log for more details (commit
871 * 7845b91dbc7690064a2be6df690e4aaba728fb04). kzak [3-Nov-2016]
872 */
873 if (getuid() != 0)
874 return 0;
875
b7744730
RM
876 /*
877 * The assembly routine for vmware detection works
878 * fine under vmware, even if ran as regular user. But
879 * on real HW or under other hypervisors, it segfaults (which is
880 * expected). So we temporarily install SIGSEGV handler to catch
881 * the signal. All this magic is needed because lscpu
882 * isn't supposed to require root privileges.
883 */
884 if (sigsetjmp(segv_handler_env, 1))
885 return 0;
886
9dd2d497 887 memset(&act, 0, sizeof(act));
b7744730
RM
888 act.sa_sigaction = segv_handler;
889 act.sa_flags = SA_SIGINFO;
890
891 if (sigaction(SIGSEGV, &act, &oact))
223939d9 892 err(EXIT_FAILURE, _("cannot set signal handler"));
b7744730 893
7845b91d 894 vmware_bdoor(&eax, &ebx, &ecx, &edx);
b7744730
RM
895
896 if (sigaction(SIGSEGV, &oact, NULL))
223939d9 897 err(EXIT_FAILURE, _("cannot restore signal handler"));
b7744730
RM
898
899 return eax != (uint32_t)-1 && ebx == VMWARE_BDOOR_MAGIC;
900}
901
902#else /* ! INCLUDE_VMWARE_BDOOR */
903
904static int
905is_vmware_platform(void)
906{
907 return 0;
908}
909
910#endif /* INCLUDE_VMWARE_BDOOR */
911
c8b64f6d 912static void
eff79ceb 913read_hypervisor(struct lscpu_desc *desc, struct lscpu_modifier *mod)
c8b64f6d 914{
fb2627ce
OO
915 FILE *fd;
916
7572fb2b
SB
917 /* We have to detect WSL first. is_vmware_platform() crashes on Windows 10. */
918
904ffe1f 919 if ((fd = path_fopen("r", 0, _PATH_PROC_OSRELEASE))) {
7572fb2b
SB
920 char buf[256];
921
922 if (fgets(buf, sizeof(buf), fd) != NULL) {
923 if (strstr(buf, "Microsoft")) {
924 desc->hyper = HYPER_WSL;
925 desc->virtype = VIRT_CONT;
926 }
927 }
928 fclose(fd);
929 if (desc->virtype)
930 return;
931 }
932
fb2627ce 933 if (mod->system != SYSTEM_SNAPSHOT) {
eff79ceb 934 read_hypervisor_cpuid(desc);
fb2627ce
OO
935 if (!desc->hyper)
936 desc->hyper = read_hypervisor_dmi();
b7744730
RM
937 if (!desc->hyper && is_vmware_platform())
938 desc->hyper = HYPER_VMWARE;
fb2627ce 939 }
c8b64f6d 940
0ebbe9f1 941 if (desc->hyper) {
e8aa16ee 942 desc->virtype = VIRT_FULL;
c8b64f6d 943
b4d1fbda 944 if (desc->hyper == HYPER_XEN) {
0ebbe9f1
DZ
945 uint32_t features;
946
947 fd = path_fopen("r", 0, _PATH_SYS_HYP_FEATURES);
948 if (fd && fscanf(fd, "%x", &features) == 1) {
949 /* Xen PV domain */
950 if (features & XEN_FEATURES_PV_MASK)
951 desc->virtype = VIRT_PARA;
952 /* Xen PVH domain */
953 else if ((features & XEN_FEATURES_PVH_MASK)
954 == XEN_FEATURES_PVH_MASK)
955 desc->virtype = VIRT_PARA;
956 fclose(fd);
957 } else {
958 err(EXIT_FAILURE, _("failed to read from: %s"),
959 _PATH_SYS_HYP_FEATURES);
960 }
961 }
962 } else if (read_hypervisor_powerpc(desc) > 0) {}
5bd31c6d 963
fb2627ce 964 /* Xen para-virt or dom0 */
d50363cd 965 else if (path_exist(_PATH_PROC_XEN)) {
c8b64f6d 966 int dom0 = 0;
fb2627ce 967 fd = path_fopen("r", 0, _PATH_PROC_XENCAP);
c8b64f6d
KZ
968
969 if (fd) {
970 char buf[256];
971
6cbf75e5 972 if (fscanf(fd, "%255s", buf) == 1 &&
c8b64f6d
KZ
973 !strcmp(buf, "control_d"))
974 dom0 = 1;
975 fclose(fd);
976 }
e8aa16ee
KZ
977 desc->virtype = dom0 ? VIRT_NONE : VIRT_PARA;
978 desc->hyper = HYPER_XEN;
c8b64f6d 979
fb2627ce 980 /* Xen full-virt on non-x86_64 */
96ce475f 981 } else if (has_pci_device( hv_vendor_pci[HYPER_XEN], hv_graphics_pci[HYPER_XEN])) {
e8aa16ee
KZ
982 desc->hyper = HYPER_XEN;
983 desc->virtype = VIRT_FULL;
96ce475f
RM
984 } else if (has_pci_device( hv_vendor_pci[HYPER_VMWARE], hv_graphics_pci[HYPER_VMWARE])) {
985 desc->hyper = HYPER_VMWARE;
986 desc->virtype = VIRT_FULL;
987 } else if (has_pci_device( hv_vendor_pci[HYPER_VBOX], hv_graphics_pci[HYPER_VBOX])) {
988 desc->hyper = HYPER_VBOX;
989 desc->virtype = VIRT_FULL;
fb2627ce
OO
990
991 /* IBM PR/SM */
904ffe1f 992 } else if ((fd = path_fopen("r", 0, _PATH_PROC_SYSINFO))) {
b8ec7bdf
HC
993 char buf[BUFSIZ];
994
995 desc->hyper = HYPER_IBM;
10829cd7 996 desc->hypervisor = "PR/SM";
b8ec7bdf 997 desc->virtype = VIRT_FULL;
904ffe1f 998 while (fgets(buf, sizeof(buf), fd) != NULL) {
10829cd7
HC
999 char *str;
1000
b8ec7bdf
HC
1001 if (!strstr(buf, "Control Program:"))
1002 continue;
1003 if (!strstr(buf, "KVM"))
1004 desc->hyper = HYPER_IBM;
1005 else
1006 desc->hyper = HYPER_KVM;
10829cd7
HC
1007 str = strchr(buf, ':');
1008 if (!str)
1009 continue;
9d8537ff
KZ
1010 xasprintf(&str, "%s", str + 1);
1011
10829cd7
HC
1012 /* remove leading, trailing and repeating whitespace */
1013 while (*str == ' ')
1014 str++;
1015 desc->hypervisor = str;
1016 str += strlen(str) - 1;
1017 while ((*str == '\n') || (*str == ' '))
1018 *(str--) = '\0';
1019 while ((str = strstr(desc->hypervisor, " ")))
1020 memmove(str, str + 1, strlen(str));
b8ec7bdf 1021 }
904ffe1f 1022 fclose(fd);
c8b64f6d 1023 }
fb2627ce
OO
1024
1025 /* OpenVZ/Virtuozzo - /proc/vz dir should exist
1026 * /proc/bc should not */
857d9cdf 1027 else if (path_exist(_PATH_PROC_VZ) && !path_exist(_PATH_PROC_BC)) {
fb2627ce 1028 desc->hyper = HYPER_PARALLELS;
857d9cdf 1029 desc->virtype = VIRT_CONT;
fb2627ce
OO
1030
1031 /* IBM */
857d9cdf 1032 } else if (desc->vendor &&
fb2627ce 1033 (strcmp(desc->vendor, "PowerVM Lx86") == 0 ||
857d9cdf 1034 strcmp(desc->vendor, "IBM/S390") == 0)) {
fb2627ce 1035 desc->hyper = HYPER_IBM;
857d9cdf 1036 desc->virtype = VIRT_FULL;
fb2627ce
OO
1037
1038 /* User-mode-linux */
857d9cdf 1039 } else if (desc->modelname && strstr(desc->modelname, "UML")) {
fb2627ce 1040 desc->hyper = HYPER_UML;
857d9cdf 1041 desc->virtype = VIRT_PARA;
fb2627ce
OO
1042
1043 /* Linux-VServer */
904ffe1f 1044 } else if ((fd = path_fopen("r", 0, _PATH_PROC_STATUS))) {
fb2627ce
OO
1045 char buf[BUFSIZ];
1046 char *val = NULL;
1047
fb2627ce
OO
1048 while (fgets(buf, sizeof(buf), fd) != NULL) {
1049 if (lookup(buf, "VxID", &val))
1050 break;
1051 }
1052 fclose(fd);
1053
1054 if (val) {
c6f6afc1
KZ
1055 char *org = val;
1056
fb2627ce
OO
1057 while (isdigit(*val))
1058 ++val;
857d9cdf 1059 if (!*val) {
fb2627ce 1060 desc->hyper = HYPER_VSERVER;
857d9cdf
KZ
1061 desc->virtype = VIRT_CONT;
1062 }
c6f6afc1 1063 free(org);
fb2627ce
OO
1064 }
1065 }
c8b64f6d
KZ
1066}
1067
455fe9a0 1068/* add @set to the @ary, unnecessary set is deallocated. */
7e03f383
KZ
1069static int add_cpuset_to_array(cpu_set_t **ary, int *items, cpu_set_t *set)
1070{
1071 int i;
1072 size_t setsize = CPU_ALLOC_SIZE(maxcpus);
1073
1074 if (!ary)
1075 return -1;
1076
1077 for (i = 0; i < *items; i++) {
1078 if (CPU_EQUAL_S(setsize, set, ary[i]))
1079 break;
1080 }
1081 if (i == *items) {
1082 ary[*items] = set;
1083 ++*items;
1084 return 0;
1085 }
1086 CPU_FREE(set);
1087 return 1;
1088}
1089
5dd7507c 1090static void
4f642863 1091read_topology(struct lscpu_desc *desc, int idx)
5dd7507c 1092{
b3adf6ef
HC
1093 cpu_set_t *thread_siblings, *core_siblings;
1094 cpu_set_t *book_siblings, *drawer_siblings;
0d2b5d2a
HC
1095 int coreid, socketid, bookid, drawerid;
1096 int i, num = real_cpu_num(desc, idx);
7e03f383
KZ
1097
1098 if (!path_exist(_PATH_SYS_CPU "/cpu%d/topology/thread_siblings", num))
1099 return;
5dd7507c 1100
ca01695b 1101 thread_siblings = path_read_cpuset(maxcpus, _PATH_SYS_CPU
7e03f383 1102 "/cpu%d/topology/thread_siblings", num);
ca01695b 1103 core_siblings = path_read_cpuset(maxcpus, _PATH_SYS_CPU
7e03f383 1104 "/cpu%d/topology/core_siblings", num);
56baaa4e 1105 book_siblings = NULL;
4f642863 1106 if (path_exist(_PATH_SYS_CPU "/cpu%d/topology/book_siblings", num))
ca01695b 1107 book_siblings = path_read_cpuset(maxcpus, _PATH_SYS_CPU
56baaa4e 1108 "/cpu%d/topology/book_siblings", num);
b3adf6ef
HC
1109 drawer_siblings = NULL;
1110 if (path_exist(_PATH_SYS_CPU "/cpu%d/topology/drawer_siblings", num))
1111 drawer_siblings = path_read_cpuset(maxcpus, _PATH_SYS_CPU
1112 "/cpu%d/topology/drawer_siblings", num);
0d2b5d2a
HC
1113 coreid = -1;
1114 if (path_exist(_PATH_SYS_CPU "/cpu%d/topology/core_id", num))
1115 coreid = path_read_s32(_PATH_SYS_CPU
1116 "/cpu%d/topology/core_id", num);
1117 socketid = -1;
1118 if (path_exist(_PATH_SYS_CPU "/cpu%d/topology/physical_package_id", num))
1119 socketid = path_read_s32(_PATH_SYS_CPU
1120 "/cpu%d/topology/physical_package_id", num);
1121 bookid = -1;
1122 if (path_exist(_PATH_SYS_CPU "/cpu%d/topology/book_id", num))
1123 bookid = path_read_s32(_PATH_SYS_CPU
1124 "/cpu%d/topology/book_id", num);
1125 drawerid = -1;
1126 if (path_exist(_PATH_SYS_CPU "/cpu%d/topology/drawer_id", num))
1127 drawerid = path_read_s32(_PATH_SYS_CPU
1128 "/cpu%d/topology/drawer_id", num);
aac1e59e
KZ
1129
1130 if (!desc->coremaps) {
b3adf6ef 1131 int ndrawers, nbooks, nsockets, ncores, nthreads;
7e03f383
KZ
1132 size_t setsize = CPU_ALLOC_SIZE(maxcpus);
1133
1134 /* threads within one core */
1135 nthreads = CPU_COUNT_S(setsize, thread_siblings);
d4bfa64d
KZ
1136 if (!nthreads)
1137 nthreads = 1;
1138
7e03f383
KZ
1139 /* cores within one socket */
1140 ncores = CPU_COUNT_S(setsize, core_siblings) / nthreads;
d4bfa64d
KZ
1141 if (!ncores)
1142 ncores = 1;
1143
1144 /* number of sockets within one book. Because of odd /
1145 * non-present cpu maps and to keep calculation easy we make
1146 * sure that nsockets and nbooks is at least 1.
32a46618 1147 */
d4bfa64d
KZ
1148 nsockets = desc->ncpus / nthreads / ncores;
1149 if (!nsockets)
1150 nsockets = 1;
1151
56baaa4e 1152 /* number of books */
d4bfa64d
KZ
1153 nbooks = desc->ncpus / nthreads / ncores / nsockets;
1154 if (!nbooks)
1155 nbooks = 1;
e282eec2 1156
b3adf6ef
HC
1157 /* number of drawers */
1158 ndrawers = desc->ncpus / nbooks / nthreads / ncores / nsockets;
1159 if (!ndrawers)
1160 ndrawers = 1;
1161
e282eec2 1162 /* all threads, see also read_basicinfo()
32a46618 1163 * -- fallback for kernels without
e282eec2
KZ
1164 * /sys/devices/system/cpu/online.
1165 */
1166 if (!desc->nthreads)
b3adf6ef 1167 desc->nthreads = ndrawers * nbooks * nsockets * ncores * nthreads;
d4bfa64d 1168
a5cfffff 1169 /* For each map we make sure that it can have up to ncpuspos
9d1a3a18
HC
1170 * entries. This is because we cannot reliably calculate the
1171 * number of cores, sockets and books on all architectures.
1172 * E.g. completely virtualized architectures like s390 may
1173 * have multiple sockets of different sizes.
1174 */
a5cfffff
TK
1175 desc->coremaps = xcalloc(desc->ncpuspos, sizeof(cpu_set_t *));
1176 desc->socketmaps = xcalloc(desc->ncpuspos, sizeof(cpu_set_t *));
0d2b5d2a
HC
1177 desc->coreids = xcalloc(desc->ncpuspos, sizeof(*desc->drawerids));
1178 desc->socketids = xcalloc(desc->ncpuspos, sizeof(*desc->drawerids));
1179 for (i = 0; i < desc->ncpuspos; i++)
1180 desc->coreids[i] = desc->socketids[i] = -1;
1181 if (book_siblings) {
a5cfffff 1182 desc->bookmaps = xcalloc(desc->ncpuspos, sizeof(cpu_set_t *));
0d2b5d2a
HC
1183 desc->bookids = xcalloc(desc->ncpuspos, sizeof(*desc->drawerids));
1184 for (i = 0; i < desc->ncpuspos; i++)
1185 desc->bookids[i] = -1;
1186 }
1187 if (drawer_siblings) {
b3adf6ef 1188 desc->drawermaps = xcalloc(desc->ncpuspos, sizeof(cpu_set_t *));
0d2b5d2a
HC
1189 desc->drawerids = xcalloc(desc->ncpuspos, sizeof(*desc->drawerids));
1190 for (i = 0; i < desc->ncpuspos; i++)
1191 desc->drawerids[i] = -1;
1192 }
7e03f383 1193 }
5dd7507c 1194
7e03f383 1195 add_cpuset_to_array(desc->socketmaps, &desc->nsockets, core_siblings);
0d2b5d2a 1196 desc->coreids[idx] = coreid;
7e03f383 1197 add_cpuset_to_array(desc->coremaps, &desc->ncores, thread_siblings);
0d2b5d2a
HC
1198 desc->socketids[idx] = socketid;
1199 if (book_siblings) {
56baaa4e 1200 add_cpuset_to_array(desc->bookmaps, &desc->nbooks, book_siblings);
0d2b5d2a
HC
1201 desc->bookids[idx] = bookid;
1202 }
1203 if (drawer_siblings) {
b3adf6ef 1204 add_cpuset_to_array(desc->drawermaps, &desc->ndrawers, drawer_siblings);
0d2b5d2a
HC
1205 desc->drawerids[idx] = drawerid;
1206 }
7e03f383 1207}
4f642863 1208
2b8fcb81 1209static void
4f642863 1210read_polarization(struct lscpu_desc *desc, int idx)
2b8fcb81
HC
1211{
1212 char mode[64];
4f642863 1213 int num = real_cpu_num(desc, idx);
2b8fcb81
HC
1214
1215 if (desc->dispatching < 0)
1216 return;
1217 if (!path_exist(_PATH_SYS_CPU "/cpu%d/polarization", num))
1218 return;
1219 if (!desc->polarization)
a5cfffff 1220 desc->polarization = xcalloc(desc->ncpuspos, sizeof(int));
ca01695b 1221 path_read_str(mode, sizeof(mode), _PATH_SYS_CPU "/cpu%d/polarization", num);
2b8fcb81 1222 if (strncmp(mode, "vertical:low", sizeof(mode)) == 0)
4f642863 1223 desc->polarization[idx] = POLAR_VLOW;
2b8fcb81 1224 else if (strncmp(mode, "vertical:medium", sizeof(mode)) == 0)
4f642863 1225 desc->polarization[idx] = POLAR_VMEDIUM;
2b8fcb81 1226 else if (strncmp(mode, "vertical:high", sizeof(mode)) == 0)
4f642863 1227 desc->polarization[idx] = POLAR_VHIGH;
2b8fcb81 1228 else if (strncmp(mode, "horizontal", sizeof(mode)) == 0)
4f642863 1229 desc->polarization[idx] = POLAR_HORIZONTAL;
2b8fcb81 1230 else
4f642863 1231 desc->polarization[idx] = POLAR_UNKNOWN;
2b8fcb81 1232}
7e03f383 1233
596b8845 1234static void
4f642863 1235read_address(struct lscpu_desc *desc, int idx)
596b8845 1236{
4f642863
AT
1237 int num = real_cpu_num(desc, idx);
1238
596b8845
HC
1239 if (!path_exist(_PATH_SYS_CPU "/cpu%d/address", num))
1240 return;
1241 if (!desc->addresses)
a5cfffff 1242 desc->addresses = xcalloc(desc->ncpuspos, sizeof(int));
4f642863 1243 desc->addresses[idx] = path_read_s32(_PATH_SYS_CPU "/cpu%d/address", num);
596b8845 1244}
7e03f383 1245
d231eea1 1246static void
4f642863 1247read_configured(struct lscpu_desc *desc, int idx)
d231eea1 1248{
4f642863
AT
1249 int num = real_cpu_num(desc, idx);
1250
d231eea1
HC
1251 if (!path_exist(_PATH_SYS_CPU "/cpu%d/configure", num))
1252 return;
1253 if (!desc->configured)
a5cfffff 1254 desc->configured = xcalloc(desc->ncpuspos, sizeof(int));
4f642863 1255 desc->configured[idx] = path_read_s32(_PATH_SYS_CPU "/cpu%d/configure", num);
d231eea1
HC
1256}
1257
44320710 1258static void
4f642863 1259read_max_mhz(struct lscpu_desc *desc, int idx)
44320710 1260{
4f642863
AT
1261 int num = real_cpu_num(desc, idx);
1262
44320710
SK
1263 if (!path_exist(_PATH_SYS_CPU "/cpu%d/cpufreq/cpuinfo_max_freq", num))
1264 return;
e065a597
DB
1265 if (!desc->maxmhz)
1266 desc->maxmhz = xcalloc(desc->ncpuspos, sizeof(char *));
4f642863 1267 xasprintf(&(desc->maxmhz[idx]), "%.4f",
44320710
SK
1268 (float)path_read_s32(_PATH_SYS_CPU
1269 "/cpu%d/cpufreq/cpuinfo_max_freq", num) / 1000);
1270}
1271
e065a597 1272static void
4f642863 1273read_min_mhz(struct lscpu_desc *desc, int idx)
e065a597 1274{
4f642863
AT
1275 int num = real_cpu_num(desc, idx);
1276
e065a597
DB
1277 if (!path_exist(_PATH_SYS_CPU "/cpu%d/cpufreq/cpuinfo_min_freq", num))
1278 return;
1279 if (!desc->minmhz)
1280 desc->minmhz = xcalloc(desc->ncpuspos, sizeof(char *));
4f642863 1281 xasprintf(&(desc->minmhz[idx]), "%.4f",
e065a597
DB
1282 (float)path_read_s32(_PATH_SYS_CPU
1283 "/cpu%d/cpufreq/cpuinfo_min_freq", num) / 1000);
1284}
1285
7e03f383
KZ
1286static int
1287cachecmp(const void *a, const void *b)
1288{
1289 struct cpu_cache *c1 = (struct cpu_cache *) a;
1290 struct cpu_cache *c2 = (struct cpu_cache *) b;
1291
1292 return strcmp(c2->name, c1->name);
5dd7507c
CQ
1293}
1294
1295static void
4f642863 1296read_cache(struct lscpu_desc *desc, int idx)
5dd7507c
CQ
1297{
1298 char buf[256];
7e03f383 1299 int i;
4f642863 1300 int num = real_cpu_num(desc, idx);
5dd7507c 1301
aac1e59e 1302 if (!desc->ncaches) {
1d56b55e 1303 while(path_exist(_PATH_SYS_CPU "/cpu%d/cache/index%d",
7e03f383
KZ
1304 num, desc->ncaches))
1305 desc->ncaches++;
5dd7507c 1306
7e03f383
KZ
1307 if (!desc->ncaches)
1308 return;
5dd7507c 1309
08de16d0 1310 desc->caches = xcalloc(desc->ncaches, sizeof(*desc->caches));
7e03f383
KZ
1311 }
1312 for (i = 0; i < desc->ncaches; i++) {
1313 struct cpu_cache *ca = &desc->caches[i];
1314 cpu_set_t *map;
1315
1d56b55e 1316 if (!path_exist(_PATH_SYS_CPU "/cpu%d/cache/index%d",
dcdead42
HC
1317 num, i))
1318 continue;
7e03f383
KZ
1319 if (!ca->name) {
1320 int type, level;
1321
1322 /* cache type */
ca01695b 1323 path_read_str(buf, sizeof(buf),
7e03f383
KZ
1324 _PATH_SYS_CPU "/cpu%d/cache/index%d/type",
1325 num, i);
1326 if (!strcmp(buf, "Data"))
1327 type = 'd';
1328 else if (!strcmp(buf, "Instruction"))
1329 type = 'i';
1330 else
1331 type = 0;
1332
1333 /* cache level */
ca01695b 1334 level = path_read_s32(_PATH_SYS_CPU "/cpu%d/cache/index%d/level",
7e03f383
KZ
1335 num, i);
1336 if (type)
1337 snprintf(buf, sizeof(buf), "L%d%c", level, type);
1338 else
1339 snprintf(buf, sizeof(buf), "L%d", level);
1340
1341 ca->name = xstrdup(buf);
1342
1343 /* cache size */
10d927ab
RM
1344 if (path_exist(_PATH_SYS_CPU "/cpu%d/cache/index%d/size",num, i)) {
1345 path_read_str(buf, sizeof(buf),
1346 _PATH_SYS_CPU "/cpu%d/cache/index%d/size", num, i);
1347 ca->size = xstrdup(buf);
1348 } else {
1349 ca->size = xstrdup("unknown size");
1350 }
7e03f383 1351 }
5dd7507c 1352
7e03f383 1353 /* information about how CPUs share different caches */
ca01695b 1354 map = path_read_cpuset(maxcpus,
8148217b
HC
1355 _PATH_SYS_CPU "/cpu%d/cache/index%d/shared_cpu_map",
1356 num, i);
5dd7507c 1357
08de16d0 1358 if (!ca->sharedmaps)
a5cfffff 1359 ca->sharedmaps = xcalloc(desc->ncpuspos, sizeof(cpu_set_t *));
7e03f383 1360 add_cpuset_to_array(ca->sharedmaps, &ca->nsharedmaps, map);
5dd7507c
CQ
1361 }
1362}
1363
e9074a16
KZ
1364static inline int is_node_dirent(struct dirent *d)
1365{
1366 return
1367 d &&
1368#ifdef _DIRENT_HAVE_D_TYPE
c0cf4ae9 1369 (d->d_type == DT_DIR || d->d_type == DT_UNKNOWN) &&
e9074a16
KZ
1370#endif
1371 strncmp(d->d_name, "node", 4) == 0 &&
1372 isdigit_string(d->d_name + 4);
1373}
1374
39c758d1
KZ
1375static int
1376nodecmp(const void *ap, const void *bp)
1377{
1378 int *a = (int *) ap, *b = (int *) bp;
1379 return *a - *b;
1380}
1381
5dd7507c 1382static void
e8aa16ee 1383read_nodes(struct lscpu_desc *desc)
5dd7507c 1384{
e9074a16
KZ
1385 int i = 0;
1386 DIR *dir;
1387 struct dirent *d;
1388 char *path;
5dd7507c
CQ
1389
1390 /* number of NUMA node */
e9074a16
KZ
1391 path = path_strdup(_PATH_SYS_NODE);
1392 dir = opendir(path);
1393 free(path);
7e03f383 1394
e9074a16
KZ
1395 while (dir && (d = readdir(dir))) {
1396 if (is_node_dirent(d))
1397 desc->nnodes++;
1398 }
1399
1400 if (!desc->nnodes) {
1401 if (dir)
1402 closedir(dir);
7e03f383 1403 return;
e9074a16 1404 }
5dd7507c 1405
08de16d0 1406 desc->nodemaps = xcalloc(desc->nnodes, sizeof(cpu_set_t *));
e9074a16
KZ
1407 desc->idx2nodenum = xmalloc(desc->nnodes * sizeof(int));
1408
1409 if (dir) {
1410 rewinddir(dir);
1411 while ((d = readdir(dir)) && i < desc->nnodes) {
1412 if (is_node_dirent(d))
1413 desc->idx2nodenum[i++] = strtol_or_err(((d->d_name) + 4),
1414 _("Failed to extract the node number"));
1415 }
1416 closedir(dir);
39c758d1 1417 qsort(desc->idx2nodenum, desc->nnodes, sizeof(int), nodecmp);
e9074a16 1418 }
5dd7507c
CQ
1419
1420 /* information about how nodes share different CPUs */
7e03f383 1421 for (i = 0; i < desc->nnodes; i++)
ca01695b 1422 desc->nodemaps[i] = path_read_cpuset(maxcpus,
1d56b55e 1423 _PATH_SYS_NODE "/node%d/cpumap",
e9074a16 1424 desc->idx2nodenum[i]);
5dd7507c
CQ
1425}
1426
e3b3a2f3 1427static char *
4f642863 1428get_cell_data(struct lscpu_desc *desc, int idx, int col,
e3b3a2f3
KZ
1429 struct lscpu_modifier *mod,
1430 char *buf, size_t bufsz)
5dd7507c 1431{
7e03f383 1432 size_t setsize = CPU_ALLOC_SIZE(maxcpus);
4f642863
AT
1433 size_t i;
1434 int cpu = real_cpu_num(desc, idx);
e3b3a2f3
KZ
1435
1436 *buf = '\0';
5dd7507c 1437
477251f8
KZ
1438 switch (col) {
1439 case COL_CPU:
e3b3a2f3 1440 snprintf(buf, bufsz, "%d", cpu);
477251f8
KZ
1441 break;
1442 case COL_CORE:
0d2b5d2a
HC
1443 if (mod->physical) {
1444 if (desc->coreids[idx] == -1)
1445 snprintf(buf, bufsz, "-");
1446 else
1447 snprintf(buf, bufsz, "%d", desc->coreids[idx]);
1448 } else {
1449 if (cpuset_ary_isset(cpu, desc->coremaps,
1450 desc->ncores, setsize, &i) == 0)
1451 snprintf(buf, bufsz, "%zu", i);
1452 }
477251f8
KZ
1453 break;
1454 case COL_SOCKET:
0d2b5d2a
HC
1455 if (mod->physical) {
1456 if (desc->socketids[idx] == -1)
1457 snprintf(buf, bufsz, "-");
1458 else
1459 snprintf(buf, bufsz, "%d", desc->socketids[idx]);
1460 } else {
1461 if (cpuset_ary_isset(cpu, desc->socketmaps,
1462 desc->nsockets, setsize, &i) == 0)
1463 snprintf(buf, bufsz, "%zu", i);
1464 }
477251f8
KZ
1465 break;
1466 case COL_NODE:
e9d659ea 1467 if (cpuset_ary_isset(cpu, desc->nodemaps,
4f642863 1468 desc->nnodes, setsize, &i) == 0)
e9074a16 1469 snprintf(buf, bufsz, "%d", desc->idx2nodenum[i]);
477251f8 1470 break;
b3adf6ef 1471 case COL_DRAWER:
0d2b5d2a
HC
1472 if (mod->physical) {
1473 if (desc->drawerids[idx] == -1)
1474 snprintf(buf, bufsz, "-");
1475 else
1476 snprintf(buf, bufsz, "%d", desc->drawerids[idx]);
1477 } else {
1478 if (cpuset_ary_isset(cpu, desc->drawermaps,
1479 desc->ndrawers, setsize, &i) == 0)
1480 snprintf(buf, bufsz, "%zu", i);
1481 }
b3adf6ef 1482 break;
477251f8 1483 case COL_BOOK:
0d2b5d2a
HC
1484 if (mod->physical) {
1485 if (desc->bookids[idx] == -1)
1486 snprintf(buf, bufsz, "-");
1487 else
1488 snprintf(buf, bufsz, "%d", desc->bookids[idx]);
1489 } else {
1490 if (cpuset_ary_isset(cpu, desc->bookmaps,
1491 desc->nbooks, setsize, &i) == 0)
1492 snprintf(buf, bufsz, "%zu", i);
1493 }
477251f8
KZ
1494 break;
1495 case COL_CACHE:
e3b3a2f3
KZ
1496 {
1497 char *p = buf;
1498 size_t sz = bufsz;
1499 int j;
1500
7e03f383
KZ
1501 for (j = desc->ncaches - 1; j >= 0; j--) {
1502 struct cpu_cache *ca = &desc->caches[j];
e9d659ea
KZ
1503
1504 if (cpuset_ary_isset(cpu, ca->sharedmaps,
4f642863 1505 ca->nsharedmaps, setsize, &i) == 0) {
73f2bec5 1506 int x = snprintf(p, sz, "%zu", i);
06fa5817 1507 if (x < 0 || (size_t) x >= sz)
e3b3a2f3
KZ
1508 return NULL;
1509 p += x;
1510 sz -= x;
1511 }
1512 if (j != 0) {
06fa5817
YK
1513 if (sz < 2)
1514 return NULL;
e3b3a2f3
KZ
1515 *p++ = mod->compat ? ',' : ':';
1516 *p = '\0';
0c5bbafa 1517 sz--;
e3b3a2f3 1518 }
5dd7507c 1519 }
477251f8 1520 break;
e3b3a2f3 1521 }
2b8fcb81 1522 case COL_POLARIZATION:
ba45d8c1 1523 if (desc->polarization) {
4f642863 1524 int x = desc->polarization[idx];
ba45d8c1 1525
e3b3a2f3 1526 snprintf(buf, bufsz, "%s",
ba45d8c1
KZ
1527 mod->mode == OUTPUT_PARSABLE ?
1528 polar_modes[x].parsable :
1529 polar_modes[x].readable);
1530 }
2b8fcb81 1531 break;
596b8845
HC
1532 case COL_ADDRESS:
1533 if (desc->addresses)
4f642863 1534 snprintf(buf, bufsz, "%d", desc->addresses[idx]);
596b8845 1535 break;
d231eea1 1536 case COL_CONFIGURED:
e43fc13e
HC
1537 if (!desc->configured)
1538 break;
1539 if (mod->mode == OUTPUT_PARSABLE)
f205c90a 1540 snprintf(buf, bufsz, "%s",
4f642863 1541 desc->configured[idx] ? _("Y") : _("N"));
e43fc13e 1542 else
f205c90a 1543 snprintf(buf, bufsz, "%s",
4f642863 1544 desc->configured[idx] ? _("yes") : _("no"));
d231eea1 1545 break;
a7e5300c 1546 case COL_ONLINE:
e43fc13e
HC
1547 if (!desc->online)
1548 break;
1549 if (mod->mode == OUTPUT_PARSABLE)
f205c90a 1550 snprintf(buf, bufsz, "%s",
e43fc13e
HC
1551 is_cpu_online(desc, cpu) ? _("Y") : _("N"));
1552 else
f205c90a 1553 snprintf(buf, bufsz, "%s",
847b982e 1554 is_cpu_online(desc, cpu) ? _("yes") : _("no"));
a7e5300c 1555 break;
e065a597
DB
1556 case COL_MAXMHZ:
1557 if (desc->maxmhz)
4f642863 1558 xstrncpy(buf, desc->maxmhz[idx], bufsz);
e065a597
DB
1559 break;
1560 case COL_MINMHZ:
1561 if (desc->minmhz)
4f642863 1562 xstrncpy(buf, desc->minmhz[idx], bufsz);
44320710 1563 break;
477251f8 1564 }
e3b3a2f3
KZ
1565 return buf;
1566}
1567
1568static char *
1569get_cell_header(struct lscpu_desc *desc, int col,
1570 struct lscpu_modifier *mod,
1571 char *buf, size_t bufsz)
1572{
1573 *buf = '\0';
1574
1575 if (col == COL_CACHE) {
1576 char *p = buf;
1577 size_t sz = bufsz;
1578 int i;
1579
1580 for (i = desc->ncaches - 1; i >= 0; i--) {
1581 int x = snprintf(p, sz, "%s", desc->caches[i].name);
06fa5817 1582 if (x < 0 || (size_t) x >= sz)
e3b3a2f3
KZ
1583 return NULL;
1584 sz -= x;
1585 p += x;
1586 if (i > 0) {
06fa5817
YK
1587 if (sz < 2)
1588 return NULL;
e3b3a2f3
KZ
1589 *p++ = mod->compat ? ',' : ':';
1590 *p = '\0';
0c5bbafa 1591 sz--;
e3b3a2f3
KZ
1592 }
1593 }
1594 if (desc->ncaches)
1595 return buf;
1596 }
756d79cd 1597 snprintf(buf, bufsz, "%s", coldescs[col].name);
e3b3a2f3 1598 return buf;
477251f8
KZ
1599}
1600
1601/*
ba45d8c1 1602 * [-p] backend, we support two parsable formats:
477251f8
KZ
1603 *
1604 * 1) "compatible" -- this format is compatible with the original lscpu(1)
1605 * output and it contains fixed set of the columns. The CACHE columns are at
1606 * the end of the line and the CACHE is not printed if the number of the caches
1607 * is zero. The CACHE columns are separated by two commas, for example:
1608 *
1609 * $ lscpu --parse
1610 * # CPU,Core,Socket,Node,,L1d,L1i,L2
1611 * 0,0,0,0,,0,0,0
1612 * 1,1,0,0,,1,1,0
1613 *
1614 * 2) "user defined output" -- this format prints always all columns without
1615 * special prefix for CACHE column. If there are not CACHEs then the column is
1616 * empty and the header "Cache" is printed rather than a real name of the cache.
1617 * The CACHE columns are separated by ':'.
1618 *
1619 * $ lscpu --parse=CPU,CORE,SOCKET,NODE,CACHE
1620 * # CPU,Core,Socket,Node,L1d:L1i:L2
1621 * 0,0,0,0,0:0:0
1622 * 1,1,0,0,1:1:0
1623 */
1624static void
8005924a
KZ
1625print_parsable(struct lscpu_desc *desc, int cols[], int ncols,
1626 struct lscpu_modifier *mod)
477251f8 1627{
e3b3a2f3
KZ
1628 char buf[BUFSIZ], *data;
1629 int i;
477251f8 1630
e3b3a2f3
KZ
1631 /*
1632 * Header
1633 */
477251f8
KZ
1634 printf(_(
1635 "# The following is the parsable format, which can be fed to other\n"
1636 "# programs. Each different item in every column has an unique ID\n"
1637 "# starting from zero.\n"));
1638
1639 fputs("# ", stdout);
1640 for (i = 0; i < ncols; i++) {
3d27b76a 1641 int col = cols[i];
b9d18bc3 1642
3d27b76a 1643 if (col == COL_CACHE) {
8005924a 1644 if (mod->compat && !desc->ncaches)
477251f8 1645 continue;
8005924a 1646 if (mod->compat && i != 0)
477251f8 1647 putchar(',');
477251f8 1648 }
e3b3a2f3
KZ
1649 if (i > 0)
1650 putchar(',');
1651
3d27b76a 1652 data = get_cell_header(desc, col, mod, buf, sizeof(buf));
b9d18bc3 1653
3d27b76a
KZ
1654 if (data && * data && col != COL_CACHE &&
1655 !coldescs[col].is_abbr) {
1656 /*
1657 * For normal column names use mixed case (e.g. "Socket")
1658 */
1659 char *p = data + 1;
1660
14e8be8a
PU
1661 while (p && *p != '\0') {
1662 *p = tolower((unsigned int) *p);
1663 p++;
1664 }
3d27b76a 1665 }
e3b3a2f3 1666 fputs(data && *data ? data : "", stdout);
477251f8
KZ
1667 }
1668 putchar('\n');
1669
e3b3a2f3
KZ
1670 /*
1671 * Data
1672 */
a5cfffff 1673 for (i = 0; i < desc->ncpuspos; i++) {
e3b3a2f3 1674 int c;
4f642863 1675 int cpu = real_cpu_num(desc, i);
e3b3a2f3 1676
4f642863 1677 if (!mod->offline && desc->online && !is_cpu_online(desc, cpu))
7afc2387 1678 continue;
4f642863 1679 if (!mod->online && desc->online && is_cpu_online(desc, cpu))
477251f8 1680 continue;
4f642863 1681 if (desc->present && !is_cpu_present(desc, cpu))
a5cfffff 1682 continue;
477251f8 1683 for (c = 0; c < ncols; c++) {
8005924a 1684 if (mod->compat && cols[c] == COL_CACHE) {
477251f8
KZ
1685 if (!desc->ncaches)
1686 continue;
1687 if (c > 0)
1688 putchar(',');
1689 }
1690 if (c > 0)
1691 putchar(',');
e3b3a2f3
KZ
1692
1693 data = get_cell_data(desc, i, cols[c], mod,
1694 buf, sizeof(buf));
1695 fputs(data && *data ? data : "", stdout);
477251f8 1696 }
5dd7507c
CQ
1697 putchar('\n');
1698 }
1699}
1700
ba45d8c1
KZ
1701/*
1702 * [-e] backend
1703 */
1704static void
1705print_readable(struct lscpu_desc *desc, int cols[], int ncols,
1706 struct lscpu_modifier *mod)
1707{
1708 int i;
e7213e34
KZ
1709 char buf[BUFSIZ];
1710 const char *data;
710ed55d 1711 struct libscols_table *table;
ba45d8c1 1712
710ed55d
KZ
1713 scols_init_debug(0);
1714
1715 table = scols_new_table();
83db4eb2 1716 if (!table)
ba45d8c1 1717 err(EXIT_FAILURE, _("failed to initialize output table"));
19a5510b
KZ
1718 if (mod->json) {
1719 scols_table_enable_json(table, 1);
1720 scols_table_set_name(table, "cpus");
1721 }
ba45d8c1
KZ
1722
1723 for (i = 0; i < ncols; i++) {
b9d18bc3 1724 data = get_cell_header(desc, cols[i], mod, buf, sizeof(buf));
c6f6afc1 1725 if (!scols_table_new_column(table, data, 0, 0))
e7213e34 1726 err(EXIT_FAILURE, _("failed to initialize output column"));
ba45d8c1
KZ
1727 }
1728
a5cfffff 1729 for (i = 0; i < desc->ncpuspos; i++) {
ba45d8c1 1730 int c;
83db4eb2 1731 struct libscols_line *line;
4f642863 1732 int cpu = real_cpu_num(desc, i);
ba45d8c1 1733
4f642863 1734 if (!mod->offline && desc->online && !is_cpu_online(desc, cpu))
7afc2387 1735 continue;
4f642863 1736 if (!mod->online && desc->online && is_cpu_online(desc, cpu))
ba45d8c1 1737 continue;
4f642863 1738 if (desc->present && !is_cpu_present(desc, cpu))
a5cfffff 1739 continue;
ba45d8c1 1740
83db4eb2 1741 line = scols_table_new_line(table, NULL);
e7213e34
KZ
1742 if (!line)
1743 err(EXIT_FAILURE, _("failed to initialize output line"));
ba45d8c1
KZ
1744
1745 for (c = 0; c < ncols; c++) {
1746 data = get_cell_data(desc, i, cols[c], mod,
1747 buf, sizeof(buf));
e7213e34
KZ
1748 if (!data || !*data)
1749 data = "-";
bf1eab07
KZ
1750 if (scols_line_set_data(line, c, data))
1751 err_oom();
ba45d8c1
KZ
1752 }
1753 }
1754
83db4eb2
OO
1755 scols_print_table(table);
1756 scols_unref_table(table);
ba45d8c1 1757}
5dd7507c 1758
c82b12a0
KZ
1759
1760static void __attribute__ ((__format__(printf, 3, 4)))
1761 add_summary_sprint(struct libscols_table *tb,
1762 const char *txt,
1763 const char *fmt,
1764 ...)
1765{
1766 struct libscols_line *ln = scols_table_new_line(tb, NULL);
1767 char *data;
1768 va_list args;
1769
1770 if (!ln)
1771 err(EXIT_FAILURE, _("failed to initialize output line"));
1772
1773 /* description column */
1774 scols_line_set_data(ln, 0, txt);
1775
1776 /* data column */
1777 va_start(args, fmt);
1778 xvasprintf(&data, fmt, args);
1779 va_end(args);
1780
1781 if (data)
1782 scols_line_refer_data(ln, 1, data);
1783}
1784
1785#define add_summary_n(tb, txt, num) add_summary_sprint(tb, txt, "%d", num)
1786#define add_summary_s(tb, txt, str) add_summary_sprint(tb, txt, "%s", str)
5dd7507c
CQ
1787
1788static void
c82b12a0
KZ
1789print_cpuset(struct libscols_table *tb,
1790 const char *key, cpu_set_t *set, int hex)
4f912c6a
KZ
1791{
1792 size_t setsize = CPU_ALLOC_SIZE(maxcpus);
1793 size_t setbuflen = 7 * maxcpus;
1794 char setbuf[setbuflen], *p;
1795
1796 if (hex) {
1797 p = cpumask_create(setbuf, setbuflen, set, setsize);
c82b12a0 1798 add_summary_s(tb, key, p);
4f912c6a
KZ
1799 } else {
1800 p = cpulist_create(setbuf, setbuflen, set, setsize);
c82b12a0 1801 add_summary_s(tb, key, p);
4f912c6a 1802 }
4f912c6a
KZ
1803}
1804
ba45d8c1
KZ
1805/*
1806 * default output
1807 */
4f912c6a 1808static void
8005924a 1809print_summary(struct lscpu_desc *desc, struct lscpu_modifier *mod)
5dd7507c 1810{
7e03f383
KZ
1811 char buf[512];
1812 int i;
aac1e59e 1813 size_t setsize = CPU_ALLOC_SIZE(maxcpus);
c82b12a0
KZ
1814 struct libscols_table *tb;
1815
1816 scols_init_debug(0);
1817
1818 tb = scols_new_table();
1819 if (!tb)
1820 err(EXIT_FAILURE, _("failed to initialize output table"));
7e03f383 1821
c82b12a0 1822 scols_table_enable_noheadings(tb, 1);
19a5510b
KZ
1823 if (mod->json) {
1824 scols_table_enable_json(tb, 1);
1825 scols_table_set_name(tb, "lscpu");
1826 }
79e8b41a 1827
19a5510b 1828 if (scols_table_new_column(tb, "field", 0, 0) == NULL ||
c82b12a0
KZ
1829 scols_table_new_column(tb, "data", 0, SCOLS_FL_NOEXTREMES) == NULL)
1830 err(EXIT_FAILURE, _("failed to initialize output column"));
1831
1832 add_summary_s(tb, _("Architecture:"), desc->arch);
f633ad4e 1833 if (desc->mode) {
2d7bee25 1834 char mbuf[64], *p = mbuf;
79e8b41a 1835
f633ad4e 1836 if (desc->mode & MODE_32BIT) {
79e8b41a
KZ
1837 strcpy(p, "32-bit, ");
1838 p += 8;
1839 }
f633ad4e 1840 if (desc->mode & MODE_64BIT) {
79e8b41a
KZ
1841 strcpy(p, "64-bit, ");
1842 p += 8;
1843 }
1844 *(p - 2) = '\0';
c82b12a0 1845 add_summary_s(tb, _("CPU op-mode(s):"), mbuf);
79e8b41a 1846 }
aabe2441 1847#if !defined(WORDS_BIGENDIAN)
c82b12a0 1848 add_summary_s(tb, _("Byte Order:"), "Little Endian");
9b8d4d5f 1849#else
c82b12a0 1850 add_summary_s(tb, _("Byte Order:"), "Big Endian");
9b8d4d5f 1851#endif
c82b12a0 1852 add_summary_n(tb, _("CPU(s):"), desc->ncpus);
4f912c6a 1853
5d4ba40d 1854 if (desc->online)
c82b12a0
KZ
1855 print_cpuset(tb, mod->hex ? _("On-line CPU(s) mask:") :
1856 _("On-line CPU(s) list:"),
8005924a 1857 desc->online, mod->hex);
4f912c6a 1858
5d4ba40d 1859 if (desc->online && CPU_COUNT_S(setsize, desc->online) != desc->ncpus) {
4f912c6a
KZ
1860 cpu_set_t *set;
1861
1862 /* Linux kernel provides cpuset of off-line CPUs that contains
1863 * all configured CPUs (see /sys/devices/system/cpu/offline),
1864 * but want to print real (present in system) off-line CPUs only.
1865 */
1866 set = cpuset_alloc(maxcpus, NULL, NULL);
1867 if (!set)
1868 err(EXIT_FAILURE, _("failed to callocate cpu set"));
1869 CPU_ZERO_S(setsize, set);
a5cfffff 1870 for (i = 0; i < desc->ncpuspos; i++) {
4f642863
AT
1871 int cpu = real_cpu_num(desc, i);
1872 if (!is_cpu_online(desc, cpu) && is_cpu_present(desc, cpu))
1873 CPU_SET_S(cpu, setsize, set);
4f912c6a 1874 }
c82b12a0
KZ
1875 print_cpuset(tb, mod->hex ? _("Off-line CPU(s) mask:") :
1876 _("Off-line CPU(s) list:"),
8005924a 1877 set, mod->hex);
4f912c6a
KZ
1878 cpuset_free(set);
1879 }
5dd7507c 1880
7e03f383 1881 if (desc->nsockets) {
2c497d32
HC
1882 int threads_per_core, cores_per_socket, sockets_per_book;
1883 int books_per_drawer, drawers;
904ffe1f 1884 FILE *fd;
8648ca96 1885
2c497d32
HC
1886 threads_per_core = cores_per_socket = sockets_per_book = 0;
1887 books_per_drawer = drawers = 0;
8648ca96
HC
1888 /* s390 detects its cpu topology via /proc/sysinfo, if present.
1889 * Using simply the cpu topology masks in sysfs will not give
1890 * usable results since everything is virtualized. E.g.
1891 * virtual core 0 may have only 1 cpu, but virtual core 2 may
1892 * five cpus.
1893 * If the cpu topology is not exported (e.g. 2nd level guest)
1894 * fall back to old calculation scheme.
1895 */
904ffe1f 1896 if ((fd = path_fopen("r", 0, _PATH_PROC_SYSINFO))) {
2d7bee25 1897 char pbuf[BUFSIZ];
b3adf6ef 1898 int t0, t1;
8648ca96 1899
2d7bee25
SK
1900 while (fd && fgets(pbuf, sizeof(pbuf), fd) != NULL) {
1901 if (sscanf(pbuf, "CPU Topology SW:%d%d%d%d%d%d",
b3adf6ef
HC
1902 &t0, &t1, &drawers, &books_per_drawer,
1903 &sockets_per_book,
8648ca96
HC
1904 &cores_per_socket) == 6)
1905 break;
1906 }
ad655c88
KZ
1907 if (fd)
1908 fclose(fd);
8648ca96 1909 }
2c497d32
HC
1910 if (desc->mtid)
1911 threads_per_core = atoi(desc->mtid) + 1;
c82b12a0 1912 add_summary_n(tb, _("Thread(s) per core:"),
2c497d32 1913 threads_per_core ?: desc->nthreads / desc->ncores);
c82b12a0 1914 add_summary_n(tb, _("Core(s) per socket:"),
8648ca96 1915 cores_per_socket ?: desc->ncores / desc->nsockets);
56baaa4e 1916 if (desc->nbooks) {
c82b12a0 1917 add_summary_n(tb, _("Socket(s) per book:"),
8648ca96 1918 sockets_per_book ?: desc->nsockets / desc->nbooks);
b3adf6ef 1919 if (desc->ndrawers) {
c82b12a0 1920 add_summary_n(tb, _("Book(s) per drawer:"),
b3adf6ef 1921 books_per_drawer ?: desc->nbooks / desc->ndrawers);
c82b12a0 1922 add_summary_n(tb, _("Drawer(s):"), drawers ?: desc->ndrawers);
b3adf6ef 1923 } else {
c82b12a0 1924 add_summary_n(tb, _("Book(s):"), books_per_drawer ?: desc->nbooks);
b3adf6ef 1925 }
56baaa4e 1926 } else {
c82b12a0 1927 add_summary_n(tb, _("Socket(s):"), sockets_per_book ?: desc->nsockets);
56baaa4e 1928 }
5dd7507c 1929 }
7e03f383 1930 if (desc->nnodes)
c82b12a0 1931 add_summary_n(tb, _("NUMA node(s):"), desc->nnodes);
e8aa16ee 1932 if (desc->vendor)
c82b12a0 1933 add_summary_s(tb, _("Vendor ID:"), desc->vendor);
0c28f0c8 1934 if (desc->machinetype)
c82b12a0 1935 add_summary_s(tb, _("Machine type:"), desc->machinetype);
e8aa16ee 1936 if (desc->family)
c82b12a0 1937 add_summary_s(tb, _("CPU family:"), desc->family);
c95e3889 1938 if (desc->model || desc->revision)
c82b12a0 1939 add_summary_s(tb, _("Model:"), desc->revision ? desc->revision : desc->model);
c95e3889 1940 if (desc->modelname || desc->cpu)
c82b12a0 1941 add_summary_s(tb, _("Model name:"), desc->cpu ? desc->cpu : desc->modelname);
e8aa16ee 1942 if (desc->stepping)
c82b12a0 1943 add_summary_s(tb, _("Stepping:"), desc->stepping);
e8aa16ee 1944 if (desc->mhz)
c82b12a0 1945 add_summary_s(tb, _("CPU MHz:"), desc->mhz);
4632b288 1946 if (desc->dynamic_mhz)
c82b12a0 1947 add_summary_s(tb, _("CPU dynamic MHz:"), desc->dynamic_mhz);
4632b288 1948 if (desc->static_mhz)
c82b12a0 1949 add_summary_s(tb, _("CPU static MHz:"), desc->static_mhz);
e065a597 1950 if (desc->maxmhz)
c82b12a0 1951 add_summary_s(tb, _("CPU max MHz:"), desc->maxmhz[0]);
e065a597 1952 if (desc->minmhz)
c82b12a0 1953 add_summary_s(tb, _("CPU min MHz:"), desc->minmhz[0]);
9b8d4d5f 1954 if (desc->bogomips)
c82b12a0 1955 add_summary_s(tb, _("BogoMIPS:"), desc->bogomips);
e8aa16ee
KZ
1956 if (desc->virtflag) {
1957 if (!strcmp(desc->virtflag, "svm"))
c82b12a0 1958 add_summary_s(tb, _("Virtualization:"), "AMD-V");
e8aa16ee 1959 else if (!strcmp(desc->virtflag, "vmx"))
c82b12a0 1960 add_summary_s(tb, _("Virtualization:"), "VT-x");
5dd7507c 1961 }
10829cd7 1962 if (desc->hypervisor)
c82b12a0 1963 add_summary_s(tb, _("Hypervisor:"), desc->hypervisor);
e8aa16ee 1964 if (desc->hyper) {
c82b12a0
KZ
1965 add_summary_s(tb, _("Hypervisor vendor:"), hv_vendors[desc->hyper]);
1966 add_summary_s(tb, _("Virtualization type:"), _(virt_types[desc->virtype]));
c8b64f6d 1967 }
a0fff77e 1968 if (desc->dispatching >= 0)
c82b12a0 1969 add_summary_s(tb, _("Dispatching mode:"), _(disp_modes[desc->dispatching]));
7e03f383 1970 if (desc->ncaches) {
2d7bee25 1971 char cbuf[512];
5dd7507c 1972
7e03f383 1973 for (i = desc->ncaches - 1; i >= 0; i--) {
2d7bee25 1974 snprintf(cbuf, sizeof(cbuf),
7e03f383 1975 _("%s cache:"), desc->caches[i].name);
c82b12a0 1976 add_summary_s(tb, cbuf, desc->caches[i].size);
7e03f383
KZ
1977 }
1978 }
28b1658f
HC
1979 if (desc->necaches) {
1980 char cbuf[512];
1981
1982 for (i = desc->necaches - 1; i >= 0; i--) {
1983 snprintf(cbuf, sizeof(cbuf),
1984 _("%s cache:"), desc->ecaches[i].name);
c82b12a0 1985 add_summary_s(tb, cbuf, desc->ecaches[i].size);
28b1658f
HC
1986 }
1987 }
1988
4f912c6a 1989 for (i = 0; i < desc->nnodes; i++) {
e9074a16 1990 snprintf(buf, sizeof(buf), _("NUMA node%d CPU(s):"), desc->idx2nodenum[i]);
c82b12a0 1991 print_cpuset(tb, buf, desc->nodemaps[i], mod->hex);
5dd7507c 1992 }
ee1f1057 1993
bd9b94d1 1994 if (desc->physsockets) {
c82b12a0
KZ
1995 add_summary_n(tb, _("Physical sockets:"), desc->physsockets);
1996 add_summary_n(tb, _("Physical chips:"), desc->physchips);
1997 add_summary_n(tb, _("Physical cores/chip:"), desc->physcoresperchip);
bd9b94d1 1998 }
c82b12a0
KZ
1999
2000 if (desc->flags)
2001 add_summary_s(tb, _("Flags:"), desc->flags);
2002
2003 scols_print_table(tb);
2004 scols_unref_table(tb);
5dd7507c
CQ
2005}
2006
39561c70 2007static void __attribute__((__noreturn__)) usage(FILE *out)
5dd7507c 2008{
b9d18bc3
KZ
2009 size_t i;
2010
2011 fputs(USAGE_HEADER, out);
c6f095cf 2012 fprintf(out, _(" %s [options]\n"), program_invocation_short_name);
7f1ec5e8 2013
451dbcfa
BS
2014 fputs(USAGE_SEPARATOR, out);
2015 fputs(_("Display information about the CPU architecture.\n"), out);
2016
b9d18bc3 2017 fputs(USAGE_OPTIONS, out);
c6f095cf
BS
2018 fputs(_(" -a, --all print both online and offline CPUs (default for -e)\n"), out);
2019 fputs(_(" -b, --online print online CPUs only (default for -p)\n"), out);
2020 fputs(_(" -c, --offline print offline CPUs only\n"), out);
19a5510b 2021 fputs(_(" -J, --json use JSON for default or extended format\n"), out);
c6f095cf
BS
2022 fputs(_(" -e, --extended[=<list>] print out an extended readable format\n"), out);
2023 fputs(_(" -p, --parse[=<list>] print out a parsable format\n"), out);
2024 fputs(_(" -s, --sysroot <dir> use specified directory as system root\n"), out);
2025 fputs(_(" -x, --hex print hexadecimal masks rather than lists of CPUs\n"), out);
0d2b5d2a 2026 fputs(_(" -y, --physical print physical instead of logical IDs\n"), out);
c6f095cf
BS
2027 fputs(USAGE_SEPARATOR, out);
2028 fputs(USAGE_HELP, out);
2029 fputs(USAGE_VERSION, out);
b9d18bc3
KZ
2030
2031 fprintf(out, _("\nAvailable columns:\n"));
2032
3d27b76a
KZ
2033 for (i = 0; i < ARRAY_SIZE(coldescs); i++)
2034 fprintf(out, " %13s %s\n", coldescs[i].name, _(coldescs[i].help));
2035
a587cc55 2036 fprintf(out, USAGE_MAN_TAIL("lscpu(1)"));
4f912c6a 2037
39561c70 2038 exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
5dd7507c
CQ
2039}
2040
2041int main(int argc, char *argv[])
2042{
8005924a 2043 struct lscpu_modifier _mod = { .mode = OUTPUT_SUMMARY }, *mod = &_mod;
87918040 2044 struct lscpu_desc _desc = { .flags = NULL }, *desc = &_desc;
8005924a 2045 int c, i;
3d27b76a 2046 int columns[ARRAY_SIZE(coldescs)], ncolumns = 0;
7fc12cd2 2047 int cpu_modifier_specified = 0;
5dd7507c 2048
6c7d5ae9 2049 static const struct option longopts[] = {
87918040
SK
2050 { "all", no_argument, NULL, 'a' },
2051 { "online", no_argument, NULL, 'b' },
2052 { "offline", no_argument, NULL, 'c' },
2053 { "help", no_argument, NULL, 'h' },
2054 { "extended", optional_argument, NULL, 'e' },
19a5510b 2055 { "json", no_argument, NULL, 'J' },
87918040
SK
2056 { "parse", optional_argument, NULL, 'p' },
2057 { "sysroot", required_argument, NULL, 's' },
2058 { "physical", no_argument, NULL, 'y' },
2059 { "hex", no_argument, NULL, 'x' },
2060 { "version", no_argument, NULL, 'V' },
2061 { NULL, 0, NULL, 0 }
5dd7507c
CQ
2062 };
2063
8e97eb4b
KZ
2064 static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
2065 { 'a','b','c' },
2066 { 'e','p' },
2067 { 0 }
2068 };
2069 int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
2070
2f8f1388 2071 setlocale(LC_ALL, "");
5dd7507c
CQ
2072 bindtextdomain(PACKAGE, LOCALEDIR);
2073 textdomain(PACKAGE);
efb8854f 2074 atexit(close_stdout);
5dd7507c 2075
19a5510b 2076 while ((c = getopt_long(argc, argv, "abce::hJp::s:xyV", longopts, NULL)) != -1) {
8e97eb4b
KZ
2077
2078 err_exclusive_options(c, longopts, excl, excl_st);
2079
5dd7507c 2080 switch (c) {
0ad29ff6 2081 case 'a':
7afc2387 2082 mod->online = mod->offline = 1;
7fc12cd2 2083 cpu_modifier_specified = 1;
0ad29ff6 2084 break;
23e9e95a
KZ
2085 case 'b':
2086 mod->online = 1;
7fc12cd2 2087 cpu_modifier_specified = 1;
23e9e95a 2088 break;
7afc2387
HC
2089 case 'c':
2090 mod->offline = 1;
7fc12cd2 2091 cpu_modifier_specified = 1;
7afc2387 2092 break;
5dd7507c 2093 case 'h':
39561c70 2094 usage(stdout);
19a5510b
KZ
2095 case 'J':
2096 mod->json = 1;
2097 break;
5dd7507c 2098 case 'p':
ba45d8c1 2099 case 'e':
477251f8
KZ
2100 if (optarg) {
2101 if (*optarg == '=')
2102 optarg++;
2103 ncolumns = string_to_idarray(optarg,
2104 columns, ARRAY_SIZE(columns),
2105 column_name_to_id);
2106 if (ncolumns < 0)
2107 return EXIT_FAILURE;
477251f8 2108 }
ba45d8c1 2109 mod->mode = c == 'p' ? OUTPUT_PARSABLE : OUTPUT_READABLE;
5dd7507c 2110 break;
47b6e8b6 2111 case 's':
ca01695b 2112 path_set_prefix(optarg);
8148217b 2113 mod->system = SYSTEM_SNAPSHOT;
47b6e8b6 2114 break;
4f912c6a 2115 case 'x':
8005924a 2116 mod->hex = 1;
4f912c6a 2117 break;
0d2b5d2a
HC
2118 case 'y':
2119 mod->physical = 1;
2120 break;
44de912c 2121 case 'V':
f6277500 2122 printf(UTIL_LINUX_VERSION);
44de912c 2123 return EXIT_SUCCESS;
5dd7507c 2124 default:
677ec86c 2125 errtryhelp(EXIT_FAILURE);
5dd7507c
CQ
2126 }
2127 }
7bbb7829 2128
7fc12cd2
HC
2129 if (cpu_modifier_specified && mod->mode == OUTPUT_SUMMARY) {
2130 fprintf(stderr,
2131 _("%s: options --all, --online and --offline may only "
ac56e555 2132 "be used with options --extended or --parse.\n"),
7fc12cd2
HC
2133 program_invocation_short_name);
2134 return EXIT_FAILURE;
2135 }
2136
7bbb7829
HC
2137 if (argc != optind)
2138 usage(stderr);
2139
7afc2387
HC
2140 /* set default cpu display mode if none was specified */
2141 if (!mod->online && !mod->offline) {
2142 mod->online = 1;
2143 mod->offline = mod->mode == OUTPUT_READABLE ? 1 : 0;
2144 }
5dd7507c 2145
8148217b 2146 read_basicinfo(desc, mod);
5dd7507c 2147
a5cfffff 2148 for (i = 0; i < desc->ncpuspos; i++) {
0002704e
HC
2149 /* only consider present CPUs */
2150 if (desc->present &&
2151 !CPU_ISSET(real_cpu_num(desc, i), desc->present))
2152 continue;
7e03f383
KZ
2153 read_topology(desc, i);
2154 read_cache(desc, i);
2b8fcb81 2155 read_polarization(desc, i);
596b8845 2156 read_address(desc, i);
d231eea1 2157 read_configured(desc, i);
44320710 2158 read_max_mhz(desc, i);
e065a597 2159 read_min_mhz(desc, i);
47b6e8b6 2160 }
7e03f383 2161
960bf130
KZ
2162 if (desc->caches)
2163 qsort(desc->caches, desc->ncaches,
2164 sizeof(struct cpu_cache), cachecmp);
7e03f383 2165
28b1658f
HC
2166 if (desc->ecaches)
2167 qsort(desc->ecaches, desc->necaches,
2168 sizeof(struct cpu_cache), cachecmp);
2169
7e03f383 2170 read_nodes(desc);
eff79ceb 2171 read_hypervisor(desc, mod);
c8b64f6d 2172
8005924a 2173 switch(mod->mode) {
ba45d8c1
KZ
2174 case OUTPUT_SUMMARY:
2175 print_summary(desc, mod);
2176 break;
2177 case OUTPUT_PARSABLE:
2178 if (!ncolumns) {
2179 columns[ncolumns++] = COL_CPU;
2180 columns[ncolumns++] = COL_CORE;
2181 columns[ncolumns++] = COL_SOCKET;
2182 columns[ncolumns++] = COL_NODE;
2183 columns[ncolumns++] = COL_CACHE;
2184 mod->compat = 1;
2185 }
2186 print_parsable(desc, columns, ncolumns, mod);
2187 break;
2188 case OUTPUT_READABLE:
2189 if (!ncolumns) {
2190 /* No list was given. Just print whatever is there. */
2191 columns[ncolumns++] = COL_CPU;
2192 if (desc->nodemaps)
8005924a 2193 columns[ncolumns++] = COL_NODE;
b3adf6ef
HC
2194 if (desc->drawermaps)
2195 columns[ncolumns++] = COL_DRAWER;
ba45d8c1
KZ
2196 if (desc->bookmaps)
2197 columns[ncolumns++] = COL_BOOK;
2198 if (desc->socketmaps)
2199 columns[ncolumns++] = COL_SOCKET;
2200 if (desc->coremaps)
2201 columns[ncolumns++] = COL_CORE;
2202 if (desc->caches)
8005924a 2203 columns[ncolumns++] = COL_CACHE;
a7e5300c
HC
2204 if (desc->online)
2205 columns[ncolumns++] = COL_ONLINE;
d231eea1
HC
2206 if (desc->configured)
2207 columns[ncolumns++] = COL_CONFIGURED;
ba45d8c1
KZ
2208 if (desc->polarization)
2209 columns[ncolumns++] = COL_POLARIZATION;
2210 if (desc->addresses)
2211 columns[ncolumns++] = COL_ADDRESS;
e065a597
DB
2212 if (desc->maxmhz)
2213 columns[ncolumns++] = COL_MAXMHZ;
2214 if (desc->minmhz)
2215 columns[ncolumns++] = COL_MINMHZ;
ba45d8c1
KZ
2216 }
2217 print_readable(desc, columns, ncolumns, mod);
2218 break;
8005924a 2219 }
5dd7507c 2220
cf474aac 2221 return EXIT_SUCCESS;
5dd7507c 2222}