]> git.ipfire.org Git - thirdparty/util-linux.git/blob - misc-utils/lsblk.c
Merge branch 'cal_column' of https://github.com/utix/util-linux
[thirdparty/util-linux.git] / misc-utils / lsblk.c
1 /*
2 * lsblk(8) - list block devices
3 *
4 * Copyright (C) 2010-2018 Red Hat, Inc. All rights reserved.
5 * Written by Milan Broz <mbroz@redhat.com>
6 * Karel Zak <kzak@redhat.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it would be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 #include <stdio.h>
23 #include <errno.h>
24 #include <getopt.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <dirent.h>
30 #include <fcntl.h>
31 #include <string.h>
32 #include <sys/ioctl.h>
33 #include <stdarg.h>
34 #include <locale.h>
35 #include <pwd.h>
36 #include <grp.h>
37 #include <ctype.h>
38 #include <assert.h>
39
40 #include <blkid.h>
41
42 #include "c.h"
43 #include "pathnames.h"
44 #include "blkdev.h"
45 #include "canonicalize.h"
46 #include "nls.h"
47 #include "xalloc.h"
48 #include "strutils.h"
49 #include "sysfs.h"
50 #include "closestream.h"
51 #include "optutils.h"
52 #include "fileutils.h"
53
54 #include "lsblk.h"
55
56 UL_DEBUG_DEFINE_MASK(lsblk);
57 UL_DEBUG_DEFINE_MASKNAMES(lsblk) = UL_DEBUG_EMPTY_MASKNAMES;
58
59 #define LSBLK_EXIT_SOMEOK 64
60 #define LSBLK_EXIT_ALLFAILED 32
61
62 static int column_id_to_number(int id);
63
64 /* column IDs */
65 enum {
66 COL_NAME = 0,
67 COL_KNAME,
68 COL_PATH,
69 COL_MAJMIN,
70 COL_FSAVAIL,
71 COL_FSSIZE,
72 COL_FSTYPE,
73 COL_FSUSED,
74 COL_FSUSEPERC,
75 COL_FSVERSION,
76 COL_TARGET,
77 COL_LABEL,
78 COL_UUID,
79 COL_PTUUID,
80 COL_PTTYPE,
81 COL_PARTTYPE,
82 COL_PARTTYPENAME,
83 COL_PARTLABEL,
84 COL_PARTUUID,
85 COL_PARTFLAGS,
86 COL_RA,
87 COL_RO,
88 COL_RM,
89 COL_HOTPLUG,
90 COL_MODEL,
91 COL_SERIAL,
92 COL_SIZE,
93 COL_STATE,
94 COL_OWNER,
95 COL_GROUP,
96 COL_MODE,
97 COL_ALIOFF,
98 COL_MINIO,
99 COL_OPTIO,
100 COL_PHYSEC,
101 COL_LOGSEC,
102 COL_ROTA,
103 COL_SCHED,
104 COL_RQ_SIZE,
105 COL_TYPE,
106 COL_DALIGN,
107 COL_DGRAN,
108 COL_DMAX,
109 COL_DZERO,
110 COL_WSAME,
111 COL_WWN,
112 COL_RAND,
113 COL_PKNAME,
114 COL_HCTL,
115 COL_TRANSPORT,
116 COL_SUBSYS,
117 COL_REV,
118 COL_VENDOR,
119 COL_ZONED,
120 COL_DAX
121 };
122
123 /* basic table settings */
124 enum {
125 LSBLK_ASCII = (1 << 0),
126 LSBLK_RAW = (1 << 1),
127 LSBLK_NOHEADINGS = (1 << 2),
128 LSBLK_EXPORT = (1 << 3),
129 LSBLK_TREE = (1 << 4),
130 LSBLK_JSON = (1 << 5),
131 };
132
133 /* Types used for qsort() and JSON */
134 enum {
135 COLTYPE_STR = 0, /* default */
136 COLTYPE_NUM = 1, /* always u64 number */
137 COLTYPE_SORTNUM = 2, /* string on output, u64 for qsort() */
138 COLTYPE_SIZE = 3, /* srring by default, number when --bytes */
139 COLTYPE_BOOL = 4 /* 0 or 1 */
140 };
141
142 /* column names */
143 struct colinfo {
144 const char *name; /* header */
145 double whint; /* width hint (N < 1 is in percent of termwidth) */
146 int flags; /* SCOLS_FL_* */
147 const char *help;
148 int type; /* COLTYPE_* */
149 };
150
151 /* columns descriptions */
152 static struct colinfo infos[] = {
153 [COL_NAME] = { "NAME", 0.25, SCOLS_FL_NOEXTREMES, N_("device name") },
154 [COL_KNAME] = { "KNAME", 0.3, 0, N_("internal kernel device name") },
155 [COL_PKNAME] = { "PKNAME", 0.3, 0, N_("internal parent kernel device name") },
156 [COL_PATH] = { "PATH", 0.3, 0, N_("path to the device node") },
157 [COL_MAJMIN] = { "MAJ:MIN", 6, 0, N_("major:minor device number"), COLTYPE_SORTNUM },
158
159 [COL_FSAVAIL] = { "FSAVAIL", 5, SCOLS_FL_RIGHT, N_("filesystem size available") },
160 [COL_FSSIZE] = { "FSSIZE", 5, SCOLS_FL_RIGHT, N_("filesystem size") },
161 [COL_FSTYPE] = { "FSTYPE", 0.1, SCOLS_FL_TRUNC, N_("filesystem type") },
162 [COL_FSUSED] = { "FSUSED", 5, SCOLS_FL_RIGHT, N_("filesystem size used") },
163 [COL_FSUSEPERC] = { "FSUSE%", 3, SCOLS_FL_RIGHT, N_("filesystem use percentage") },
164 [COL_FSVERSION] = { "FSVER", 0.1, SCOLS_FL_TRUNC, N_("filesystem version") },
165
166 [COL_TARGET] = { "MOUNTPOINT", 0.10, SCOLS_FL_TRUNC, N_("where the device is mounted") },
167 [COL_LABEL] = { "LABEL", 0.1, 0, N_("filesystem LABEL") },
168 [COL_UUID] = { "UUID", 36, 0, N_("filesystem UUID") },
169
170 [COL_PTUUID] = { "PTUUID", 36, 0, N_("partition table identifier (usually UUID)") },
171 [COL_PTTYPE] = { "PTTYPE", 0.1, 0, N_("partition table type") },
172
173 [COL_PARTTYPE] = { "PARTTYPE", 36, 0, N_("partition type code or UUID") },
174 [COL_PARTTYPENAME] = { "PARTTYPENAME", 0.1, 0, N_("partition type name") },
175 [COL_PARTLABEL] = { "PARTLABEL", 0.1, 0, N_("partition LABEL") },
176 [COL_PARTUUID] = { "PARTUUID", 36, 0, N_("partition UUID") },
177 [COL_PARTFLAGS] = { "PARTFLAGS", 36, 0, N_("partition flags") },
178
179 [COL_RA] = { "RA", 3, SCOLS_FL_RIGHT, N_("read-ahead of the device"), COLTYPE_NUM },
180 [COL_RO] = { "RO", 1, SCOLS_FL_RIGHT, N_("read-only device"), COLTYPE_BOOL },
181 [COL_RM] = { "RM", 1, SCOLS_FL_RIGHT, N_("removable device"), COLTYPE_BOOL },
182 [COL_HOTPLUG]= { "HOTPLUG", 1, SCOLS_FL_RIGHT, N_("removable or hotplug device (usb, pcmcia, ...)"), COLTYPE_BOOL },
183 [COL_ROTA] = { "ROTA", 1, SCOLS_FL_RIGHT, N_("rotational device"), COLTYPE_BOOL },
184 [COL_RAND] = { "RAND", 1, SCOLS_FL_RIGHT, N_("adds randomness"), COLTYPE_BOOL },
185 [COL_MODEL] = { "MODEL", 0.1, SCOLS_FL_TRUNC, N_("device identifier") },
186 [COL_SERIAL] = { "SERIAL", 0.1, SCOLS_FL_TRUNC, N_("disk serial number") },
187 [COL_SIZE] = { "SIZE", 5, SCOLS_FL_RIGHT, N_("size of the device"), COLTYPE_SIZE },
188 [COL_STATE] = { "STATE", 7, SCOLS_FL_TRUNC, N_("state of the device") },
189 [COL_OWNER] = { "OWNER", 0.1, SCOLS_FL_TRUNC, N_("user name"), },
190 [COL_GROUP] = { "GROUP", 0.1, SCOLS_FL_TRUNC, N_("group name") },
191 [COL_MODE] = { "MODE", 10, 0, N_("device node permissions") },
192 [COL_ALIOFF] = { "ALIGNMENT", 6, SCOLS_FL_RIGHT, N_("alignment offset"), COLTYPE_NUM },
193 [COL_MINIO] = { "MIN-IO", 6, SCOLS_FL_RIGHT, N_("minimum I/O size"), COLTYPE_NUM },
194 [COL_OPTIO] = { "OPT-IO", 6, SCOLS_FL_RIGHT, N_("optimal I/O size"), COLTYPE_NUM },
195 [COL_PHYSEC] = { "PHY-SEC", 7, SCOLS_FL_RIGHT, N_("physical sector size"), COLTYPE_NUM },
196 [COL_LOGSEC] = { "LOG-SEC", 7, SCOLS_FL_RIGHT, N_("logical sector size"), COLTYPE_NUM },
197 [COL_SCHED] = { "SCHED", 0.1, 0, N_("I/O scheduler name") },
198 [COL_RQ_SIZE]= { "RQ-SIZE", 5, SCOLS_FL_RIGHT, N_("request queue size"), COLTYPE_NUM },
199 [COL_TYPE] = { "TYPE", 4, 0, N_("device type") },
200 [COL_DALIGN] = { "DISC-ALN", 6, SCOLS_FL_RIGHT, N_("discard alignment offset"), COLTYPE_NUM },
201 [COL_DGRAN] = { "DISC-GRAN", 6, SCOLS_FL_RIGHT, N_("discard granularity"), COLTYPE_SIZE },
202 [COL_DMAX] = { "DISC-MAX", 6, SCOLS_FL_RIGHT, N_("discard max bytes"), COLTYPE_SIZE },
203 [COL_DZERO] = { "DISC-ZERO", 1, SCOLS_FL_RIGHT, N_("discard zeroes data"), COLTYPE_BOOL },
204 [COL_WSAME] = { "WSAME", 6, SCOLS_FL_RIGHT, N_("write same max bytes"), COLTYPE_SIZE },
205 [COL_WWN] = { "WWN", 18, 0, N_("unique storage identifier") },
206 [COL_HCTL] = { "HCTL", 10, 0, N_("Host:Channel:Target:Lun for SCSI") },
207 [COL_TRANSPORT] = { "TRAN", 6, 0, N_("device transport type") },
208 [COL_SUBSYS] = { "SUBSYSTEMS", 0.1, SCOLS_FL_NOEXTREMES, N_("de-duplicated chain of subsystems") },
209 [COL_REV] = { "REV", 4, SCOLS_FL_RIGHT, N_("device revision") },
210 [COL_VENDOR] = { "VENDOR", 0.1, SCOLS_FL_TRUNC, N_("device vendor") },
211 [COL_ZONED] = { "ZONED", 0.3, 0, N_("zone model") },
212 [COL_DAX] = { "DAX", 1, SCOLS_FL_RIGHT, N_("dax-capable device"), COLTYPE_BOOL },
213 };
214
215 struct lsblk *lsblk; /* global handler */
216
217 /*
218 * columns[] array specifies all currently wanted output column. The columns
219 * are defined by infos[] array and you can specify (on command line) each
220 * column twice. That's enough, dynamically allocated array of the columns is
221 * unnecessary overkill and over-engineering in this case
222 */
223 static int columns[ARRAY_SIZE(infos) * 2];
224 static size_t ncolumns;
225
226 static inline void add_column(int id)
227 {
228 if (ncolumns >= ARRAY_SIZE(columns))
229 errx(EXIT_FAILURE, _("too many columns specified, "
230 "the limit is %zu columns"),
231 ARRAY_SIZE(columns) - 1);
232 columns[ ncolumns++ ] = id;
233 }
234
235 static inline void add_uniq_column(int id)
236 {
237 if (column_id_to_number(id) < 0)
238 add_column(id);
239 }
240
241 static void lsblk_init_debug(void)
242 {
243 __UL_INIT_DEBUG_FROM_ENV(lsblk, LSBLK_DEBUG_, 0, LSBLK_DEBUG);
244 }
245
246 /*
247 * exclude/include devices filter based on major device numbers
248 */
249 static int excludes[256];
250 static size_t nexcludes;
251
252 static int includes[256];
253 static size_t nincludes;
254
255 static int is_maj_excluded(int maj)
256 {
257 size_t i;
258
259 assert(ARRAY_SIZE(excludes) > nexcludes);
260
261 if (!nexcludes)
262 return 0; /* filter not enabled, device not excluded */
263
264 for (i = 0; i < nexcludes; i++) {
265 if (excludes[i] == maj) {
266 DBG(FILTER, ul_debug("exclude: maj=%d", maj));
267 return 1;
268 }
269 }
270 return 0;
271 }
272
273 static int is_maj_included(int maj)
274 {
275 size_t i;
276
277 assert(ARRAY_SIZE(includes) > nincludes);
278
279 if (!nincludes)
280 return 1; /* filter not enabled, device is included */
281
282 for (i = 0; i < nincludes; i++) {
283 if (includes[i] == maj) {
284 DBG(FILTER, ul_debug("include: maj=%d", maj));
285 return 1;
286 }
287 }
288 return 0;
289 }
290
291 /* Converts column sequential number to column ID (COL_*) */
292 static int get_column_id(int num)
293 {
294 assert(num >= 0);
295 assert((size_t) num < ncolumns);
296 assert(columns[num] < (int) ARRAY_SIZE(infos));
297 return columns[num];
298 }
299
300 /* Returns column description for the column sequential number */
301 static struct colinfo *get_column_info(int num)
302 {
303 return &infos[ get_column_id(num) ];
304 }
305
306 /* Converts column name (as defined in the infos[] to the column ID */
307 static int column_name_to_id(const char *name, size_t namesz)
308 {
309 size_t i;
310
311 for (i = 0; i < ARRAY_SIZE(infos); i++) {
312 const char *cn = infos[i].name;
313
314 if (!strncasecmp(name, cn, namesz) && !*(cn + namesz))
315 return i;
316 }
317 warnx(_("unknown column: %s"), name);
318 return -1;
319 }
320
321 /* Converts column ID (COL_*) to column sequential number */
322 static int column_id_to_number(int id)
323 {
324 size_t i;
325
326 for (i = 0; i < ncolumns; i++)
327 if (columns[i] == id)
328 return i;
329 return -1;
330 }
331
332 /* Checks for DM prefix in the device name */
333 static int is_dm(const char *name)
334 {
335 return strncmp(name, "dm-", 3) ? 0 : 1;
336 }
337
338 /* Returns full pat to the device node (TODO: what about sysfs_blkdev_get_path()) */
339 static char *get_device_path(struct lsblk_device *dev)
340 {
341 char path[PATH_MAX];
342
343 assert(dev);
344 assert(dev->name);
345
346 if (is_dm(dev->name))
347 return __canonicalize_dm_name(lsblk->sysroot, dev->name);
348
349 snprintf(path, sizeof(path), "/dev/%s", dev->name);
350 sysfs_devname_sys_to_dev(path);
351 return xstrdup(path);
352 }
353
354 static int is_readonly_device(struct lsblk_device *dev)
355 {
356 int fd, ro = 0;
357
358 if (ul_path_scanf(dev->sysfs, "ro", "%d", &ro) == 1)
359 return ro;
360
361 /* fallback if "ro" attribute does not exist */
362 fd = open(dev->filename, O_RDONLY);
363 if (fd != -1) {
364 if (ioctl(fd, BLKROGET, &ro) != 0)
365 ro = 0;
366 close(fd);
367 }
368 return ro;
369 }
370
371 static char *get_scheduler(struct lsblk_device *dev)
372 {
373 char buf[128];
374 char *p, *res = NULL;
375
376 if (ul_path_read_buffer(dev->sysfs, buf, sizeof(buf), "queue/scheduler") == 0)
377 return NULL;
378 p = strchr(buf, '[');
379 if (p) {
380 res = p + 1;
381 p = strchr(res, ']');
382 if (p) {
383 *p = '\0';
384 res = xstrdup(res);
385 } else
386 res = NULL;
387 }
388 return res;
389 }
390
391 static char *get_type(struct lsblk_device *dev)
392 {
393 char *res = NULL, *p;
394
395 if (device_is_partition(dev))
396 return xstrdup("part");
397
398 if (is_dm(dev->name)) {
399 char *dm_uuid = NULL;
400
401 /* The DM_UUID prefix should be set to subsystem owning
402 * the device - LVM, CRYPT, DMRAID, MPATH, PART */
403 if (ul_path_read_string(dev->sysfs, &dm_uuid, "dm/uuid") > 0
404 && dm_uuid) {
405 char *tmp = dm_uuid;
406 char *dm_uuid_prefix = strsep(&tmp, "-");
407
408 if (dm_uuid_prefix) {
409 /* kpartx hack to remove partition number */
410 if (strncasecmp(dm_uuid_prefix, "part", 4) == 0)
411 dm_uuid_prefix[4] = '\0';
412
413 res = xstrdup(dm_uuid_prefix);
414 }
415 }
416
417 free(dm_uuid);
418 if (!res)
419 /* No UUID or no prefix - just mark it as DM device */
420 res = xstrdup("dm");
421
422 } else if (!strncmp(dev->name, "loop", 4)) {
423 res = xstrdup("loop");
424
425 } else if (!strncmp(dev->name, "md", 2)) {
426 char *md_level = NULL;
427
428 ul_path_read_string(dev->sysfs, &md_level, "md/level");
429 res = md_level ? md_level : xstrdup("md");
430
431 } else {
432 const char *type = NULL;
433 int x = 0;
434
435 if (ul_path_read_s32(dev->sysfs, &x, "device/type") == 0)
436 type = blkdev_scsi_type_to_name(x);
437 if (!type)
438 type = "disk";
439 res = xstrdup(type);
440 }
441
442 for (p = res; p && *p; p++)
443 *p = tolower((unsigned char) *p);
444 return res;
445 }
446
447 /* Thanks to lsscsi code for idea of detection logic used here */
448 static char *get_transport(struct lsblk_device *dev)
449 {
450 struct path_cxt *sysfs = dev->sysfs;
451 char *attr = NULL;
452 const char *trans = NULL;
453
454
455 /* SCSI - Serial Peripheral Interface */
456 if (sysfs_blkdev_scsi_host_is(sysfs, "spi"))
457 trans = "spi";
458
459 /* FC/FCoE - Fibre Channel / Fibre Channel over Ethernet */
460 else if (sysfs_blkdev_scsi_host_is(sysfs, "fc")) {
461 attr = sysfs_blkdev_scsi_host_strdup_attribute(sysfs, "fc", "symbolic_name");
462 if (!attr)
463 return NULL;
464 trans = strstr(attr, " over ") ? "fcoe" : "fc";
465 free(attr);
466 }
467
468 /* SAS - Serial Attached SCSI */
469 else if (sysfs_blkdev_scsi_host_is(sysfs, "sas") ||
470 sysfs_blkdev_scsi_has_attribute(sysfs, "sas_device"))
471 trans = "sas";
472
473
474 /* SBP - Serial Bus Protocol (FireWire) */
475 else if (sysfs_blkdev_scsi_has_attribute(sysfs, "ieee1394_id"))
476 trans = "sbp";
477
478 /* iSCSI */
479 else if (sysfs_blkdev_scsi_host_is(sysfs, "iscsi"))
480 trans ="iscsi";
481
482 /* USB - Universal Serial Bus */
483 else if (sysfs_blkdev_scsi_path_contains(sysfs, "usb"))
484 trans = "usb";
485
486 /* ATA, SATA */
487 else if (sysfs_blkdev_scsi_host_is(sysfs, "scsi")) {
488 attr = sysfs_blkdev_scsi_host_strdup_attribute(sysfs, "scsi", "proc_name");
489 if (!attr)
490 return NULL;
491 if (!strncmp(attr, "ahci", 4) || !strncmp(attr, "sata", 4))
492 trans = "sata";
493 else if (strstr(attr, "ata"))
494 trans = "ata";
495 free(attr);
496
497 } else if (strncmp(dev->name, "nvme", 4) == 0)
498 trans = "nvme";
499
500 return trans ? xstrdup(trans) : NULL;
501 }
502
503 static char *get_subsystems(struct lsblk_device *dev)
504 {
505 char path[PATH_MAX];
506 char *sub, *chain, *res = NULL;
507 size_t len = 0, last = 0;
508
509 chain = sysfs_blkdev_get_devchain(dev->sysfs, path, sizeof(path));
510 if (!chain)
511 return NULL;
512
513 while (sysfs_blkdev_next_subsystem(dev->sysfs, chain, &sub) == 0) {
514 size_t sz;
515
516 /* don't create "block:scsi:scsi", but "block:scsi" */
517 if (len && strcmp(res + last, sub) == 0) {
518 free(sub);
519 continue;
520 }
521
522 sz = strlen(sub);
523 res = xrealloc(res, len + sz + 2);
524 if (len)
525 res[len++] = ':';
526
527 memcpy(res + len, sub, sz + 1);
528 last = len;
529 len += sz;
530 free(sub);
531 }
532
533 return res;
534 }
535
536
537 #define is_parsable(_l) (scols_table_is_raw((_l)->table) || \
538 scols_table_is_export((_l)->table) || \
539 scols_table_is_json((_l)->table))
540
541 static char *mk_name(const char *name)
542 {
543 char *p;
544 if (!name)
545 return NULL;
546 if (lsblk->paths)
547 xasprintf(&p, "/dev/%s", name);
548 else
549 p = xstrdup(name);
550 if (p)
551 sysfs_devname_sys_to_dev(p);
552 return p;
553 }
554
555 static char *mk_dm_name(const char *name)
556 {
557 char *p;
558 if (!name)
559 return NULL;
560 if (lsblk->paths)
561 xasprintf(&p, "/dev/mapper/%s", name);
562 else
563 p = xstrdup(name);
564 return p;
565 }
566
567 /* stores data to scols cell userdata (invisible and independent on output)
568 * to make the original values accessible for sort functions
569 */
570 static void set_sortdata_u64(struct libscols_line *ln, int col, uint64_t x)
571 {
572 struct libscols_cell *ce = scols_line_get_cell(ln, col);
573 uint64_t *data;
574
575 if (!ce)
576 return;
577 data = xmalloc(sizeof(uint64_t));
578 *data = x;
579 scols_cell_set_userdata(ce, data);
580 }
581
582 /* do not modify *data on any error */
583 static void str2u64(const char *str, uint64_t *data)
584 {
585 uintmax_t num;
586 char *end = NULL;
587
588 errno = 0;
589 if (str == NULL || *str == '\0')
590 return;
591 num = strtoumax(str, &end, 10);
592
593 if (errno || str == end || (end && *end))
594 return;
595 *data = num;
596 }
597
598 static void unref_sortdata(struct libscols_table *tb)
599 {
600 struct libscols_iter *itr;
601 struct libscols_line *ln;
602
603 if (!tb || !lsblk->sort_col)
604 return;
605 itr = scols_new_iter(SCOLS_ITER_FORWARD);
606 if (!itr)
607 return;
608 while (scols_table_next_line(tb, itr, &ln) == 0) {
609 struct libscols_cell *ce = scols_line_get_column_cell(ln,
610 lsblk->sort_col);
611 void *data = scols_cell_get_userdata(ce);
612 free(data);
613 }
614
615 scols_free_iter(itr);
616 }
617
618 static char *get_vfs_attribute(struct lsblk_device *dev, int id)
619 {
620 char *sizestr;
621 uint64_t vfs_attr = 0;
622 char *mnt;
623
624 if (!dev->fsstat.f_blocks) {
625 mnt = lsblk_device_get_mountpoint(dev);
626 if (!mnt || dev->is_swap)
627 return NULL;
628 if (statvfs(mnt, &dev->fsstat) != 0)
629 return NULL;
630 }
631
632 switch(id) {
633 case COL_FSSIZE:
634 vfs_attr = dev->fsstat.f_frsize * dev->fsstat.f_blocks;
635 break;
636 case COL_FSAVAIL:
637 vfs_attr = dev->fsstat.f_frsize * dev->fsstat.f_bavail;
638 break;
639 case COL_FSUSED:
640 vfs_attr = dev->fsstat.f_frsize * (dev->fsstat.f_blocks - dev->fsstat.f_bfree);
641 break;
642 case COL_FSUSEPERC:
643 if (dev->fsstat.f_blocks == 0)
644 return xstrdup("-");
645
646 xasprintf(&sizestr, "%.0f%%",
647 (double)(dev->fsstat.f_blocks - dev->fsstat.f_bfree) /
648 dev->fsstat.f_blocks * 100);
649 return sizestr;
650 }
651
652 if (!vfs_attr)
653 sizestr = xstrdup("0");
654 else if (lsblk->bytes)
655 xasprintf(&sizestr, "%ju", vfs_attr);
656 else
657 sizestr = size_to_human_string(SIZE_SUFFIX_1LETTER, vfs_attr);
658
659 return sizestr;
660 }
661
662 static struct stat *device_get_stat(struct lsblk_device *dev)
663 {
664 if (!dev->st.st_rdev
665 && stat(dev->filename, &dev->st) != 0)
666 return NULL;
667
668 return &dev->st;
669 }
670
671 static int is_removable_device(struct lsblk_device *dev, struct lsblk_device *parent)
672 {
673 struct path_cxt *pc;
674
675 if (dev->removable != -1)
676 goto done;
677 if (ul_path_scanf(dev->sysfs, "removable", "%d", &dev->removable) == 1)
678 goto done;
679
680 if (parent) {
681 pc = sysfs_blkdev_get_parent(dev->sysfs);
682 if (!pc)
683 goto done;
684
685 /* dev is partition and parent is whole-disk */
686 if (pc == parent->sysfs)
687 dev->removable = is_removable_device(parent, NULL);
688
689 /* parent is something else, use sysfs parent */
690 else if (ul_path_scanf(pc, "removable", "%d", &dev->removable) != 1)
691 dev->removable = 0;
692 }
693 done:
694 if (dev->removable == -1)
695 dev->removable = 0;
696 return dev->removable;
697 }
698
699 static uint64_t device_get_discard_granularity(struct lsblk_device *dev)
700 {
701 if (dev->discard_granularity == (uint64_t) -1
702 && ul_path_read_u64(dev->sysfs, &dev->discard_granularity,
703 "queue/discard_granularity") != 0)
704 dev->discard_granularity = 0;
705
706 return dev->discard_granularity;
707 }
708
709 /*
710 * Generates data (string) for column specified by column ID for specified device. If sortdata
711 * is not NULL then returns number usable to sort the column if the data are available for the
712 * column.
713 */
714 static char *device_get_data(
715 struct lsblk_device *dev, /* device */
716 struct lsblk_device *parent, /* device parent as defined in the tree */
717 int id, /* column ID (COL_*) */
718 uint64_t *sortdata) /* returns sort data as number */
719 {
720 struct lsblk_devprop *prop = NULL;
721 char *str = NULL;
722
723 switch(id) {
724 case COL_NAME:
725 str = dev->dm_name ? mk_dm_name(dev->dm_name) : mk_name(dev->name);
726 break;
727 case COL_KNAME:
728 str = mk_name(dev->name);
729 break;
730 case COL_PKNAME:
731 if (parent)
732 str = mk_name(parent->name);
733 break;
734 case COL_PATH:
735 if (dev->filename)
736 str = xstrdup(dev->filename);
737 break;
738 case COL_OWNER:
739 if (lsblk->sysroot)
740 prop = lsblk_device_get_properties(dev);
741 if (prop && prop->owner) {
742 str = xstrdup(prop->owner);
743 } else {
744 struct stat *st = device_get_stat(dev);
745 struct passwd *pw = st ? getpwuid(st->st_uid) : NULL;
746 if (pw)
747 str = xstrdup(pw->pw_name);
748 }
749 break;
750 case COL_GROUP:
751 if (lsblk->sysroot)
752 prop = lsblk_device_get_properties(dev);
753 if (prop && prop->group) {
754 str = xstrdup(prop->group);
755 } else {
756 struct stat *st = device_get_stat(dev);
757 struct group *gr = st ? getgrgid(st->st_gid) : NULL;
758 if (gr)
759 str = xstrdup(gr->gr_name);
760 }
761 break;
762 case COL_MODE:
763 if (lsblk->sysroot)
764 prop = lsblk_device_get_properties(dev);
765 if (prop && prop->mode) {
766 str = xstrdup(prop->mode);
767 } else {
768 struct stat *st = device_get_stat(dev);
769 char md[11] = { '\0' };
770
771 if (st)
772 str = xstrdup(xstrmode(st->st_mode, md));
773 }
774 break;
775 case COL_MAJMIN:
776 if (is_parsable(lsblk))
777 xasprintf(&str, "%u:%u", dev->maj, dev->min);
778 else
779 xasprintf(&str, "%3u:%-3u", dev->maj, dev->min);
780 if (sortdata)
781 *sortdata = makedev(dev->maj, dev->min);
782 break;
783 case COL_FSTYPE:
784 prop = lsblk_device_get_properties(dev);
785 if (prop && prop->fstype)
786 str = xstrdup(prop->fstype);
787 break;
788 case COL_FSSIZE:
789 case COL_FSAVAIL:
790 case COL_FSUSED:
791 case COL_FSUSEPERC:
792 str = get_vfs_attribute(dev, id);
793 break;
794 case COL_FSVERSION:
795 prop = lsblk_device_get_properties(dev);
796 if (prop && prop->fsversion)
797 str = xstrdup(prop->fsversion);
798 break;
799 case COL_TARGET:
800 {
801 char *s = lsblk_device_get_mountpoint(dev);
802 if (s)
803 str = xstrdup(s);
804 else
805 str = NULL;
806 break;
807 }
808 case COL_LABEL:
809 prop = lsblk_device_get_properties(dev);
810 if (prop && prop->label)
811 str = xstrdup(prop->label);
812 break;
813 case COL_UUID:
814 prop = lsblk_device_get_properties(dev);
815 if (prop && prop->uuid)
816 str = xstrdup(prop->uuid);
817 break;
818 case COL_PTUUID:
819 prop = lsblk_device_get_properties(dev);
820 if (prop && prop->ptuuid)
821 str = xstrdup(prop->ptuuid);
822 break;
823 case COL_PTTYPE:
824 prop = lsblk_device_get_properties(dev);
825 if (prop && prop->pttype)
826 str = xstrdup(prop->pttype);
827 break;
828 case COL_PARTTYPE:
829 prop = lsblk_device_get_properties(dev);
830 if (prop && prop->parttype)
831 str = xstrdup(prop->parttype);
832 break;
833 case COL_PARTTYPENAME:
834 prop = lsblk_device_get_properties(dev);
835 if (prop && prop->parttype && prop->pttype) {
836 const char *x = lsblk_parttype_code_to_string(
837 prop->parttype, prop->pttype);
838 if (x)
839 str = xstrdup(x);
840 }
841 break;
842 case COL_PARTLABEL:
843 prop = lsblk_device_get_properties(dev);
844 if (prop && prop->partlabel)
845 str = xstrdup(prop->partlabel);
846 break;
847 case COL_PARTUUID:
848 prop = lsblk_device_get_properties(dev);
849 if (prop && prop->partuuid)
850 str = xstrdup(prop->partuuid);
851 break;
852 case COL_PARTFLAGS:
853 prop = lsblk_device_get_properties(dev);
854 if (prop && prop->partflags)
855 str = xstrdup(prop->partflags);
856 break;
857 case COL_WWN:
858 prop = lsblk_device_get_properties(dev);
859 if (prop && prop->wwn)
860 str = xstrdup(prop->wwn);
861 break;
862 case COL_RA:
863 ul_path_read_string(dev->sysfs, &str, "queue/read_ahead_kb");
864 if (sortdata)
865 str2u64(str, sortdata);
866 break;
867 case COL_RO:
868 str = xstrdup(is_readonly_device(dev) ? "1" : "0");
869 break;
870 case COL_RM:
871 str = xstrdup(is_removable_device(dev, parent) ? "1" : "0");
872 break;
873 case COL_HOTPLUG:
874 str = sysfs_blkdev_is_hotpluggable(dev->sysfs) ? xstrdup("1") : xstrdup("0");
875 break;
876 case COL_ROTA:
877 ul_path_read_string(dev->sysfs, &str, "queue/rotational");
878 break;
879 case COL_RAND:
880 ul_path_read_string(dev->sysfs, &str, "queue/add_random");
881 break;
882 case COL_MODEL:
883 if (!device_is_partition(dev) && dev->nslaves == 0) {
884 prop = lsblk_device_get_properties(dev);
885 if (prop && prop->model)
886 str = xstrdup(prop->model);
887 else
888 ul_path_read_string(dev->sysfs, &str, "device/model");
889 }
890 break;
891 case COL_SERIAL:
892 if (!device_is_partition(dev) && dev->nslaves == 0) {
893 prop = lsblk_device_get_properties(dev);
894 if (prop && prop->serial)
895 str = xstrdup(prop->serial);
896 else
897 ul_path_read_string(dev->sysfs, &str, "device/serial");
898 }
899 break;
900 case COL_REV:
901 if (!device_is_partition(dev) && dev->nslaves == 0)
902 ul_path_read_string(dev->sysfs, &str, "device/rev");
903 break;
904 case COL_VENDOR:
905 if (!device_is_partition(dev) && dev->nslaves == 0)
906 ul_path_read_string(dev->sysfs, &str, "device/vendor");
907 break;
908 case COL_SIZE:
909 if (!dev->size)
910 break;
911 if (lsblk->bytes)
912 xasprintf(&str, "%ju", dev->size);
913 else
914 str = size_to_human_string(SIZE_SUFFIX_1LETTER, dev->size);
915 if (sortdata)
916 *sortdata = dev->size;
917 break;
918 case COL_STATE:
919 if (!device_is_partition(dev) && !dev->dm_name)
920 ul_path_read_string(dev->sysfs, &str, "device/state");
921 else if (dev->dm_name) {
922 int x = 0;
923 if (ul_path_read_s32(dev->sysfs, &x, "dm/suspended") == 0)
924 str = xstrdup(x ? "suspended" : "running");
925 }
926 break;
927 case COL_ALIOFF:
928 ul_path_read_string(dev->sysfs, &str, "alignment_offset");
929 if (sortdata)
930 str2u64(str, sortdata);
931 break;
932 case COL_MINIO:
933 ul_path_read_string(dev->sysfs, &str, "queue/minimum_io_size");
934 if (sortdata)
935 str2u64(str, sortdata);
936 break;
937 case COL_OPTIO:
938 ul_path_read_string(dev->sysfs, &str, "queue/optimal_io_size");
939 if (sortdata)
940 str2u64(str, sortdata);
941 break;
942 case COL_PHYSEC:
943 ul_path_read_string(dev->sysfs, &str, "queue/physical_block_size");
944 if (sortdata)
945 str2u64(str, sortdata);
946 break;
947 case COL_LOGSEC:
948 ul_path_read_string(dev->sysfs, &str, "queue/logical_block_size");
949 if (sortdata)
950 str2u64(str, sortdata);
951 break;
952 case COL_SCHED:
953 str = get_scheduler(dev);
954 break;
955 case COL_RQ_SIZE:
956 ul_path_read_string(dev->sysfs, &str, "queue/nr_requests");
957 if (sortdata)
958 str2u64(str, sortdata);
959 break;
960 case COL_TYPE:
961 str = get_type(dev);
962 break;
963 case COL_HCTL:
964 {
965 int h, c, t, l;
966 if (sysfs_blkdev_scsi_get_hctl(dev->sysfs, &h, &c, &t, &l) == 0)
967 xasprintf(&str, "%d:%d:%d:%d", h, c, t, l);
968 break;
969 }
970 case COL_TRANSPORT:
971 str = get_transport(dev);
972 break;
973 case COL_SUBSYS:
974 str = get_subsystems(dev);
975 break;
976 case COL_DALIGN:
977 if (device_get_discard_granularity(dev) > 0)
978 ul_path_read_string(dev->sysfs, &str, "discard_alignment");
979 if (!str)
980 str = xstrdup("0");
981 if (sortdata)
982 str2u64(str, sortdata);
983 break;
984 case COL_DGRAN:
985 if (lsblk->bytes) {
986 ul_path_read_string(dev->sysfs, &str, "queue/discard_granularity");
987 if (sortdata)
988 str2u64(str, sortdata);
989 } else {
990 uint64_t x = device_get_discard_granularity(dev);
991 str = size_to_human_string(SIZE_SUFFIX_1LETTER, x);
992 if (sortdata)
993 *sortdata = x;
994 }
995 break;
996 case COL_DMAX:
997 if (lsblk->bytes) {
998 ul_path_read_string(dev->sysfs, &str, "queue/discard_max_bytes");
999 if (sortdata)
1000 str2u64(str, sortdata);
1001 } else {
1002 uint64_t x;
1003 if (ul_path_read_u64(dev->sysfs, &x, "queue/discard_max_bytes") == 0) {
1004 str = size_to_human_string(SIZE_SUFFIX_1LETTER, x);
1005 if (sortdata)
1006 *sortdata = x;
1007 }
1008 }
1009 break;
1010 case COL_DZERO:
1011 if (device_get_discard_granularity(dev) > 0)
1012 ul_path_read_string(dev->sysfs, &str, "queue/discard_zeroes_data");
1013 if (!str)
1014 str = xstrdup("0");
1015 break;
1016 case COL_WSAME:
1017 if (lsblk->bytes) {
1018 ul_path_read_string(dev->sysfs, &str, "queue/write_same_max_bytes");
1019 if (sortdata)
1020 str2u64(str, sortdata);
1021 } else {
1022 uint64_t x;
1023
1024 if (ul_path_read_u64(dev->sysfs, &x, "queue/write_same_max_bytes") == 0) {
1025 str = size_to_human_string(SIZE_SUFFIX_1LETTER, x);
1026 if (sortdata)
1027 *sortdata = x;
1028 }
1029 }
1030 if (!str)
1031 str = xstrdup("0");
1032 break;
1033 case COL_ZONED:
1034 ul_path_read_string(dev->sysfs, &str, "queue/zoned");
1035 break;
1036 case COL_DAX:
1037 ul_path_read_string(dev->sysfs, &str, "queue/dax");
1038 break;
1039 };
1040
1041 return str;
1042 }
1043
1044 /*
1045 * Adds data for all wanted columns about the device to the smartcols table
1046 */
1047 static void device_to_scols(
1048 struct lsblk_device *dev,
1049 struct lsblk_device *parent,
1050 struct libscols_table *tab,
1051 struct libscols_line *parent_line)
1052 {
1053 size_t i;
1054 struct libscols_line *ln;
1055 struct lsblk_iter itr;
1056 struct lsblk_device *child = NULL;
1057 int link_group = 0;
1058
1059
1060 DBG(DEV, ul_debugobj(dev, "add '%s' to scols", dev->name));
1061 ON_DBG(DEV, if (ul_path_isopen_dirfd(dev->sysfs)) ul_debugobj(dev, " %s ---> is open!", dev->name));
1062
1063 if (!parent && dev->wholedisk)
1064 parent = dev->wholedisk;
1065
1066 /* Do not print device more than once on --list if tree order is not requested */
1067 if (!(lsblk->flags & LSBLK_TREE) && !lsblk->force_tree_order && dev->is_printed)
1068 return;
1069
1070 if (lsblk->merge && list_count_entries(&dev->parents) > 1) {
1071 if (!lsblk_device_is_last_parent(dev, parent))
1072 return;
1073 link_group = 1;
1074 }
1075
1076 ln = scols_table_new_line(tab, link_group ? NULL : parent_line);
1077 if (!ln)
1078 err(EXIT_FAILURE, _("failed to allocate output line"));
1079
1080 dev->is_printed = 1;
1081
1082 if (link_group) {
1083 struct lsblk_device *p;
1084 struct libscols_line *gr = parent_line;
1085
1086 /* Merge all my parents to the one group */
1087 DBG(DEV, ul_debugobj(dev, " grouping parents [--merge]"));
1088 lsblk_reset_iter(&itr, LSBLK_ITER_FORWARD);
1089 while (lsblk_device_next_parent(dev, &itr, &p) == 0) {
1090 if (!p->scols_line) {
1091 DBG(DEV, ul_debugobj(dev, " *** ignore '%s' no scols line yet", p->name));
1092 continue;
1093 }
1094 DBG(DEV, ul_debugobj(dev, " group '%s'", p->name));
1095 scols_table_group_lines(tab, p->scols_line, gr, 0);
1096 }
1097
1098 /* Link the group -- this makes group->child connection */
1099 DBG(DEV, ul_debugobj(dev, " linking the group [--merge]"));
1100 scols_line_link_group(ln, gr, 0);
1101 }
1102
1103 /* read column specific data and set it to smartcols table line */
1104 for (i = 0; i < ncolumns; i++) {
1105 char *data;
1106 int id = get_column_id(i);
1107
1108 if (lsblk->sort_id != id)
1109 data = device_get_data(dev, parent, id, NULL);
1110 else {
1111 uint64_t sortdata = (uint64_t) -1;
1112
1113 data = device_get_data(dev, parent, id, &sortdata);
1114 if (data && sortdata != (uint64_t) -1)
1115 set_sortdata_u64(ln, i, sortdata);
1116 }
1117 DBG(DEV, ul_debugobj(dev, " refer data[%zu]=\"%s\"", i, data));
1118 if (data && scols_line_refer_data(ln, i, data))
1119 err(EXIT_FAILURE, _("failed to add output data"));
1120 }
1121
1122 dev->scols_line = ln;
1123
1124 if (dev->npartitions == 0)
1125 /* For partitions we often read from parental whole-disk sysfs,
1126 * otherwise we can close */
1127 ul_path_close_dirfd(dev->sysfs);
1128
1129 lsblk_reset_iter(&itr, LSBLK_ITER_FORWARD);
1130 while (lsblk_device_next_child(dev, &itr, &child) == 0) {
1131 DBG(DEV, ul_debugobj(dev, "%s -> continue to child", dev->name));
1132 device_to_scols(child, dev, tab, ln);
1133 DBG(DEV, ul_debugobj(dev, "%s <- child done", dev->name));
1134 }
1135
1136 /* Let's be careful with number of open files */
1137 ul_path_close_dirfd(dev->sysfs);
1138 }
1139
1140 /*
1141 * Walks on tree and adds one line for each device to the smartcols table
1142 */
1143 static void devtree_to_scols(struct lsblk_devtree *tr, struct libscols_table *tab)
1144 {
1145 struct lsblk_iter itr;
1146 struct lsblk_device *dev = NULL;
1147
1148 lsblk_reset_iter(&itr, LSBLK_ITER_FORWARD);
1149
1150 while (lsblk_devtree_next_root(tr, &itr, &dev) == 0)
1151 device_to_scols(dev, NULL, tab, NULL);
1152 }
1153
1154 /*
1155 * Reads very basic information about the device from sysfs into the device struct
1156 */
1157 static int initialize_device(struct lsblk_device *dev,
1158 struct lsblk_device *wholedisk,
1159 const char *name)
1160 {
1161 dev_t devno;
1162
1163 DBG(DEV, ul_debugobj(dev, "initialize %s [wholedisk=%p %s]",
1164 name, wholedisk, wholedisk ? wholedisk->name : ""));
1165
1166 if (sysfs_devname_is_hidden(lsblk->sysroot, name)) {
1167 DBG(DEV, ul_debugobj(dev, "%s: hidden, ignore", name));
1168 return -1;
1169 }
1170
1171 dev->name = xstrdup(name);
1172
1173 if (wholedisk) {
1174 dev->wholedisk = wholedisk;
1175 lsblk_ref_device(wholedisk);
1176 }
1177
1178 dev->filename = get_device_path(dev);
1179 if (!dev->filename) {
1180 DBG(DEV, ul_debugobj(dev, "%s: failed to get device path", dev->name));
1181 return -1;
1182 }
1183 DBG(DEV, ul_debugobj(dev, "%s: filename=%s", dev->name, dev->filename));
1184
1185 devno = __sysfs_devname_to_devno(lsblk->sysroot, dev->name, wholedisk ? wholedisk->name : NULL);
1186 if (!devno) {
1187 DBG(DEV, ul_debugobj(dev, "%s: unknown device name", dev->name));
1188 return -1;
1189 }
1190
1191 dev->sysfs = ul_new_sysfs_path(devno, wholedisk ? wholedisk->sysfs : NULL, lsblk->sysroot);
1192 if (!dev->sysfs) {
1193 DBG(DEV, ul_debugobj(dev, "%s: failed to initialize sysfs handler", dev->name));
1194 return -1;
1195 }
1196
1197 dev->maj = major(devno);
1198 dev->min = minor(devno);
1199 dev->size = 0;
1200
1201 if (ul_path_read_u64(dev->sysfs, &dev->size, "size") == 0) /* in sectors */
1202 dev->size <<= 9; /* in bytes */
1203
1204 /* Ignore devices of zero size */
1205 if (!lsblk->all_devices && dev->size == 0) {
1206 DBG(DEV, ul_debugobj(dev, "zero size device -- ignore"));
1207 return -1;
1208 }
1209 if (is_dm(dev->name)) {
1210 ul_path_read_string(dev->sysfs, &dev->dm_name, "dm/name");
1211 if (!dev->dm_name) {
1212 DBG(DEV, ul_debugobj(dev, "%s: failed to get dm name", dev->name));
1213 return -1;
1214 }
1215 }
1216
1217 dev->npartitions = sysfs_blkdev_count_partitions(dev->sysfs, dev->name);
1218 dev->nholders = ul_path_count_dirents(dev->sysfs, "holders");
1219 dev->nslaves = ul_path_count_dirents(dev->sysfs, "slaves");
1220
1221 DBG(DEV, ul_debugobj(dev, "%s: npartitions=%d, nholders=%d, nslaves=%d",
1222 dev->name, dev->npartitions, dev->nholders, dev->nslaves));
1223
1224 /* ignore non-SCSI devices */
1225 if (lsblk->scsi && sysfs_blkdev_scsi_get_hctl(dev->sysfs, NULL, NULL, NULL, NULL)) {
1226 DBG(DEV, ul_debugobj(dev, "non-scsi device -- ignore"));
1227 return -1;
1228 }
1229
1230 DBG(DEV, ul_debugobj(dev, "%s: context successfully initialized", dev->name));
1231 return 0;
1232 }
1233
1234 static struct lsblk_device *devtree_get_device_or_new(struct lsblk_devtree *tr,
1235 struct lsblk_device *disk,
1236 const char *name)
1237 {
1238 struct lsblk_device *dev = lsblk_devtree_get_device(tr, name);
1239
1240 if (!dev) {
1241 dev = lsblk_new_device();
1242 if (!dev)
1243 err(EXIT_FAILURE, _("failed to allocate device"));
1244
1245 if (initialize_device(dev, disk, name) != 0) {
1246 lsblk_unref_device(dev);
1247 return NULL;
1248 }
1249 lsblk_devtree_add_device(tr, dev);
1250 lsblk_unref_device(dev); /* keep it referenced by devtree only */
1251 } else
1252 DBG(DEV, ul_debugobj(dev, "%s: already processed", name));
1253
1254 return dev;
1255 }
1256
1257 static int process_dependencies(
1258 struct lsblk_devtree *tr,
1259 struct lsblk_device *dev,
1260 int do_partitions);
1261
1262 /*
1263 * Read devices from whole-disk device into tree
1264 */
1265 static int process_partitions(struct lsblk_devtree *tr, struct lsblk_device *disk)
1266 {
1267 DIR *dir;
1268 struct dirent *d;
1269
1270 assert(disk);
1271
1272 /*
1273 * Do not process further if there are no partitions for
1274 * this device or the device itself is a partition.
1275 */
1276 if (!disk->npartitions || device_is_partition(disk))
1277 return -EINVAL;
1278
1279 DBG(DEV, ul_debugobj(disk, "%s: probe whole-disk for partitions", disk->name));
1280
1281 dir = ul_path_opendir(disk->sysfs, NULL);
1282 if (!dir)
1283 err(EXIT_FAILURE, _("failed to open device directory in sysfs"));
1284
1285 while ((d = xreaddir(dir))) {
1286 struct lsblk_device *part;
1287
1288 if (!(sysfs_blkdev_is_partition_dirent(dir, d, disk->name)))
1289 continue;
1290
1291 DBG(DEV, ul_debugobj(disk, " checking %s", d->d_name));
1292
1293 part = devtree_get_device_or_new(tr, disk, d->d_name);
1294 if (!part)
1295 continue;
1296
1297 if (lsblk_device_new_dependence(disk, part) == 0)
1298 process_dependencies(tr, part, 0);
1299
1300 ul_path_close_dirfd(part->sysfs);
1301 }
1302
1303 /* For partitions we need parental (whole-disk) sysfs directory pretty
1304 * often, so close it now when all is done */
1305 ul_path_close_dirfd(disk->sysfs);
1306
1307 DBG(DEV, ul_debugobj(disk, "probe whole-disk for partitions -- done"));
1308 closedir(dir);
1309 return 0;
1310 }
1311
1312 static char *get_wholedisk_from_partition_dirent(DIR *dir, struct dirent *d, char *buf, size_t bufsz)
1313 {
1314 char *p;
1315 int len;
1316
1317 if ((len = readlinkat(dirfd(dir), d->d_name, buf, bufsz - 1)) < 0)
1318 return 0;
1319
1320 buf[len] = '\0';
1321
1322 /* The path ends with ".../<device>/<partition>" */
1323 p = strrchr(buf, '/');
1324 if (!p)
1325 return NULL;
1326 *p = '\0';
1327
1328 p = strrchr(buf, '/');
1329 if (!p)
1330 return NULL;
1331 p++;
1332
1333 return p;
1334 }
1335
1336 /*
1337 * Reads slaves/holders and partitions for specified device into device tree
1338 */
1339 static int process_dependencies(
1340 struct lsblk_devtree *tr,
1341 struct lsblk_device *dev,
1342 int do_partitions)
1343 {
1344 DIR *dir;
1345 struct dirent *d;
1346 const char *depname;
1347
1348 assert(dev);
1349
1350 if (lsblk->nodeps)
1351 return 0;
1352
1353 /* read all or specified partition */
1354 if (do_partitions && dev->npartitions)
1355 process_partitions(tr, dev);
1356
1357 DBG(DEV, ul_debugobj(dev, "%s: reading dependencies", dev->name));
1358
1359 if (!(lsblk->inverse ? dev->nslaves : dev->nholders)) {
1360 DBG(DEV, ul_debugobj(dev, " ignore (no slaves/holders)"));
1361 return 0;
1362 }
1363
1364 depname = lsblk->inverse ? "slaves" : "holders";
1365 dir = ul_path_opendir(dev->sysfs, depname);
1366 if (!dir) {
1367 DBG(DEV, ul_debugobj(dev, " ignore (no slaves/holders directory)"));
1368 return 0;
1369 }
1370 ul_path_close_dirfd(dev->sysfs);
1371
1372 DBG(DEV, ul_debugobj(dev, " %s: checking for '%s' dependence", dev->name, depname));
1373
1374 while ((d = xreaddir(dir))) {
1375 struct lsblk_device *dep = NULL;
1376 struct lsblk_device *disk = NULL;
1377
1378 /* Is the dependency a partition? */
1379 if (sysfs_blkdev_is_partition_dirent(dir, d, NULL)) {
1380
1381 char buf[PATH_MAX];
1382 char *diskname;
1383
1384 DBG(DEV, ul_debugobj(dev, " %s: dependence is partition", d->d_name));
1385
1386 diskname = get_wholedisk_from_partition_dirent(dir, d, buf, sizeof(buf));
1387 if (diskname)
1388 disk = devtree_get_device_or_new(tr, NULL, diskname);
1389 if (!disk) {
1390 DBG(DEV, ul_debugobj(dev, " ignore no wholedisk ???"));
1391 goto next;
1392 }
1393
1394 dep = devtree_get_device_or_new(tr, disk, d->d_name);
1395 if (!dep)
1396 goto next;
1397
1398 if (lsblk_device_new_dependence(dev, dep) == 0)
1399 process_dependencies(tr, dep, 1);
1400
1401 if (lsblk->inverse
1402 && lsblk_device_new_dependence(dep, disk) == 0)
1403 process_dependencies(tr, disk, 0);
1404 }
1405 /* The dependency is a whole device. */
1406 else {
1407 DBG(DEV, ul_debugobj(dev, " %s: %s: dependence is whole-disk",
1408 dev->name, d->d_name));
1409
1410 dep = devtree_get_device_or_new(tr, NULL, d->d_name);
1411 if (!dep)
1412 goto next;
1413
1414 if (lsblk_device_new_dependence(dev, dep) == 0)
1415 /* For inverse tree we don't want to show partitions
1416 * if the dependence is on whole-disk */
1417 process_dependencies(tr, dep, lsblk->inverse ? 0 : 1);
1418 }
1419 next:
1420 if (dep && dep->sysfs)
1421 ul_path_close_dirfd(dep->sysfs);
1422 if (disk && disk->sysfs)
1423 ul_path_close_dirfd(disk->sysfs);
1424 }
1425 closedir(dir);
1426
1427 DBG(DEV, ul_debugobj(dev, "%s: checking for '%s' -- done", dev->name, depname));
1428 return 0;
1429 }
1430
1431 /*
1432 * Defines the device as root node in the device tree and walks on all dependencies of the device.
1433 */
1434 static int __process_one_device(struct lsblk_devtree *tr, char *devname, dev_t devno)
1435 {
1436 struct lsblk_device *dev = NULL;
1437 struct lsblk_device *disk = NULL;
1438 char buf[PATH_MAX + 1], *name = NULL, *diskname = NULL;
1439 int real_part = 0, rc = -EINVAL;
1440
1441 if (devno == 0 && devname) {
1442 struct stat st;
1443
1444 DBG(DEV, ul_debug("%s: reading alone device", devname));
1445
1446 if (stat(devname, &st) || !S_ISBLK(st.st_mode)) {
1447 warnx(_("%s: not a block device"), devname);
1448 goto leave;
1449 }
1450 devno = st.st_rdev;
1451 } else if (devno) {
1452 DBG(DEV, ul_debug("%d:%d: reading alone device", major(devno), minor(devno)));
1453 } else {
1454 assert(devno || devname);
1455 return -EINVAL;
1456 }
1457
1458 /* TODO: sysfs_devno_to_devname() internally initializes path_cxt, it
1459 * would be better to use ul_new_sysfs_path() + sysfs_blkdev_get_name()
1460 * and reuse path_cxt for initialize_device()
1461 */
1462 name = sysfs_devno_to_devname(devno, buf, sizeof(buf));
1463 if (!name) {
1464 if (devname)
1465 warn(_("%s: failed to get sysfs name"), devname);
1466 goto leave;
1467 }
1468 name = xstrdup(name);
1469
1470 if (!strncmp(name, "dm-", 3)) {
1471 /* dm mapping is never a real partition! */
1472 real_part = 0;
1473 } else {
1474 dev_t diskno = 0;
1475
1476 if (blkid_devno_to_wholedisk(devno, buf, sizeof(buf), &diskno)) {
1477 warn(_("%s: failed to get whole-disk device number"), name);
1478 goto leave;
1479 }
1480 diskname = buf;
1481 real_part = devno != diskno;
1482 }
1483
1484 if (!real_part) {
1485 /*
1486 * Device is not a partition.
1487 */
1488 DBG(DEV, ul_debug(" non-partition"));
1489
1490 dev = devtree_get_device_or_new(tr, NULL, name);
1491 if (!dev)
1492 goto leave;
1493
1494 lsblk_devtree_add_root(tr, dev);
1495 process_dependencies(tr, dev, !lsblk->inverse);
1496 } else {
1497 /*
1498 * Partition, read sysfs name of the disk device
1499 */
1500 DBG(DEV, ul_debug(" partition"));
1501
1502 disk = devtree_get_device_or_new(tr, NULL, diskname);
1503 if (!disk)
1504 goto leave;
1505
1506 dev = devtree_get_device_or_new(tr, disk, name);
1507 if (!dev)
1508 goto leave;
1509
1510 lsblk_devtree_add_root(tr, dev);
1511 process_dependencies(tr, dev, 1);
1512
1513 if (lsblk->inverse
1514 && lsblk_device_new_dependence(dev, disk) == 0)
1515 process_dependencies(tr, disk, 0);
1516 else
1517 ul_path_close_dirfd(disk->sysfs);
1518 }
1519
1520 rc = 0;
1521 leave:
1522 if (dev && dev->sysfs)
1523 ul_path_close_dirfd(dev->sysfs);
1524 if (disk && disk->sysfs)
1525 ul_path_close_dirfd(disk->sysfs);
1526 free(name);
1527 return rc;
1528 }
1529
1530 static int process_one_device(struct lsblk_devtree *tr, char *devname)
1531 {
1532 assert(devname);
1533 return __process_one_device(tr, devname, 0);
1534 }
1535
1536 /*
1537 * The /sys/block contains only root devices, and no partitions. It seems more
1538 * simple to scan /sys/dev/block where are all devices without exceptions to get
1539 * top-level devices for the reverse tree.
1540 */
1541 static int process_all_devices_inverse(struct lsblk_devtree *tr)
1542 {
1543 DIR *dir;
1544 struct dirent *d;
1545 struct path_cxt *pc = ul_new_path(_PATH_SYS_DEVBLOCK);
1546
1547 assert(lsblk->inverse);
1548
1549 if (!pc)
1550 err(EXIT_FAILURE, _("failed to allocate /sys handler"));
1551
1552 ul_path_set_prefix(pc, lsblk->sysroot);
1553 dir = ul_path_opendir(pc, NULL);
1554 if (!dir)
1555 goto done;
1556
1557 DBG(DEV, ul_debug("iterate on " _PATH_SYS_DEVBLOCK));
1558
1559 while ((d = xreaddir(dir))) {
1560 dev_t devno;
1561 int maj, min;
1562
1563 DBG(DEV, ul_debug(" %s dentry", d->d_name));
1564
1565 if (sscanf(d->d_name, "%d:%d", &maj, &min) != 2)
1566 continue;
1567 devno = makedev(maj, min);
1568
1569 if (is_maj_excluded(maj) || !is_maj_included(maj))
1570 continue;
1571 if (ul_path_countf_dirents(pc, "%s/holders", d->d_name) != 0)
1572 continue;
1573 if (sysfs_devno_count_partitions(devno) != 0)
1574 continue;
1575 __process_one_device(tr, NULL, devno);
1576 }
1577
1578 closedir(dir);
1579 done:
1580 ul_unref_path(pc);
1581 DBG(DEV, ul_debug("iterate on " _PATH_SYS_DEVBLOCK " -- done"));
1582 return 0;
1583 }
1584
1585 /*
1586 * Reads root nodes (devices) from /sys/block into devices tree
1587 */
1588 static int process_all_devices(struct lsblk_devtree *tr)
1589 {
1590 DIR *dir;
1591 struct dirent *d;
1592 struct path_cxt *pc;
1593
1594 assert(lsblk->inverse == 0);
1595
1596 pc = ul_new_path(_PATH_SYS_BLOCK);
1597 if (!pc)
1598 err(EXIT_FAILURE, _("failed to allocate /sys handler"));
1599
1600 ul_path_set_prefix(pc, lsblk->sysroot);
1601 dir = ul_path_opendir(pc, NULL);
1602 if (!dir)
1603 goto done;
1604
1605 DBG(DEV, ul_debug("iterate on " _PATH_SYS_BLOCK));
1606
1607 while ((d = xreaddir(dir))) {
1608 struct lsblk_device *dev = NULL;
1609
1610 DBG(DEV, ul_debug(" %s dentry", d->d_name));
1611 dev = devtree_get_device_or_new(tr, NULL, d->d_name);
1612 if (!dev)
1613 goto next;
1614
1615 /* remove unwanted devices */
1616 if (is_maj_excluded(dev->maj) || !is_maj_included(dev->maj)) {
1617 DBG(DEV, ul_debug(" %s: ignore (by filter)", d->d_name));
1618 lsblk_devtree_remove_device(tr, dev);
1619 dev = NULL;
1620 goto next;
1621 }
1622
1623 if (dev->nslaves) {
1624 DBG(DEV, ul_debug(" %s: ignore (in-middle)", d->d_name));
1625 goto next;
1626 }
1627
1628 lsblk_devtree_add_root(tr, dev);
1629 process_dependencies(tr, dev, 1);
1630 next:
1631 /* Let's be careful with number of open files */
1632 if (dev && dev->sysfs)
1633 ul_path_close_dirfd(dev->sysfs);
1634 }
1635
1636 closedir(dir);
1637 done:
1638 ul_unref_path(pc);
1639 DBG(DEV, ul_debug("iterate on " _PATH_SYS_BLOCK " -- done"));
1640 return 0;
1641 }
1642
1643 /*
1644 * Parses major numbers as specified on lsblk command line
1645 */
1646 static void parse_excludes(const char *str0)
1647 {
1648 const char *str = str0;
1649
1650 while (str && *str) {
1651 char *end = NULL;
1652 unsigned long n;
1653
1654 errno = 0;
1655 n = strtoul(str, &end, 10);
1656
1657 if (end == str || (end && *end && *end != ','))
1658 errx(EXIT_FAILURE, _("failed to parse list '%s'"), str0);
1659 if (errno != 0 && (n == ULONG_MAX || n == 0))
1660 err(EXIT_FAILURE, _("failed to parse list '%s'"), str0);
1661 excludes[nexcludes++] = n;
1662
1663 if (nexcludes == ARRAY_SIZE(excludes))
1664 /* TRANSLATORS: The standard value for %d is 256. */
1665 errx(EXIT_FAILURE, _("the list of excluded devices is "
1666 "too large (limit is %d devices)"),
1667 (int)ARRAY_SIZE(excludes));
1668
1669 str = end && *end ? end + 1 : NULL;
1670 }
1671 }
1672
1673 /*
1674 * Parses major numbers as specified on lsblk command line
1675 * (TODO: what about refactor and merge parse_excludes() and parse_includes().)
1676 */
1677 static void parse_includes(const char *str0)
1678 {
1679 const char *str = str0;
1680
1681 while (str && *str) {
1682 char *end = NULL;
1683 unsigned long n;
1684
1685 errno = 0;
1686 n = strtoul(str, &end, 10);
1687
1688 if (end == str || (end && *end && *end != ','))
1689 errx(EXIT_FAILURE, _("failed to parse list '%s'"), str0);
1690 if (errno != 0 && (n == ULONG_MAX || n == 0))
1691 err(EXIT_FAILURE, _("failed to parse list '%s'"), str0);
1692 includes[nincludes++] = n;
1693
1694 if (nincludes == ARRAY_SIZE(includes))
1695 /* TRANSLATORS: The standard value for %d is 256. */
1696 errx(EXIT_FAILURE, _("the list of included devices is "
1697 "too large (limit is %d devices)"),
1698 (int)ARRAY_SIZE(includes));
1699 str = end && *end ? end + 1 : NULL;
1700 }
1701 }
1702
1703 /*
1704 * see set_sortdata_u64() and columns initialization in main()
1705 */
1706 static int cmp_u64_cells(struct libscols_cell *a,
1707 struct libscols_cell *b,
1708 __attribute__((__unused__)) void *data)
1709 {
1710 uint64_t *adata = (uint64_t *) scols_cell_get_userdata(a),
1711 *bdata = (uint64_t *) scols_cell_get_userdata(b);
1712
1713 if (adata == NULL && bdata == NULL)
1714 return 0;
1715 if (adata == NULL)
1716 return -1;
1717 if (bdata == NULL)
1718 return 1;
1719 return *adata == *bdata ? 0 : *adata >= *bdata ? 1 : -1;
1720 }
1721
1722 static void device_set_dedupkey(
1723 struct lsblk_device *dev,
1724 struct lsblk_device *parent,
1725 int id)
1726 {
1727 struct lsblk_iter itr;
1728 struct lsblk_device *child = NULL;
1729
1730 dev->dedupkey = device_get_data(dev, parent, id, NULL);
1731 if (dev->dedupkey)
1732 DBG(DEV, ul_debugobj(dev, "%s: de-duplication key: %s", dev->name, dev->dedupkey));
1733
1734 if (dev->npartitions == 0)
1735 /* For partitions we often read from parental whole-disk sysfs,
1736 * otherwise we can close */
1737 ul_path_close_dirfd(dev->sysfs);
1738
1739 lsblk_reset_iter(&itr, LSBLK_ITER_FORWARD);
1740
1741 while (lsblk_device_next_child(dev, &itr, &child) == 0)
1742 device_set_dedupkey(child, dev, id);
1743
1744 /* Let's be careful with number of open files */
1745 ul_path_close_dirfd(dev->sysfs);
1746 }
1747
1748 static void devtree_set_dedupkeys(struct lsblk_devtree *tr, int id)
1749 {
1750 struct lsblk_iter itr;
1751 struct lsblk_device *dev = NULL;
1752
1753 lsblk_reset_iter(&itr, LSBLK_ITER_FORWARD);
1754
1755 while (lsblk_devtree_next_root(tr, &itr, &dev) == 0)
1756 device_set_dedupkey(dev, NULL, id);
1757 }
1758
1759 static void __attribute__((__noreturn__)) usage(void)
1760 {
1761 FILE *out = stdout;
1762 size_t i;
1763
1764 fputs(USAGE_HEADER, out);
1765 fprintf(out, _(" %s [options] [<device> ...]\n"), program_invocation_short_name);
1766
1767 fputs(USAGE_SEPARATOR, out);
1768 fputs(_("List information about block devices.\n"), out);
1769
1770 fputs(USAGE_OPTIONS, out);
1771 fputs(_(" -D, --discard print discard capabilities\n"), out);
1772 fputs(_(" -E, --dedup <column> de-duplicate output by <column>\n"), out);
1773 fputs(_(" -I, --include <list> show only devices with specified major numbers\n"), out);
1774 fputs(_(" -J, --json use JSON output format\n"), out);
1775 fputs(_(" -O, --output-all output all columns\n"), out);
1776 fputs(_(" -P, --pairs use key=\"value\" output format\n"), out);
1777 fputs(_(" -S, --scsi output info about SCSI devices\n"), out);
1778 fputs(_(" -T, --tree[=<column>] use tree format output\n"), out);
1779 fputs(_(" -a, --all print all devices\n"), out);
1780 fputs(_(" -b, --bytes print SIZE in bytes rather than in human readable format\n"), out);
1781 fputs(_(" -d, --nodeps don't print slaves or holders\n"), out);
1782 fputs(_(" -e, --exclude <list> exclude devices by major number (default: RAM disks)\n"), out);
1783 fputs(_(" -f, --fs output info about filesystems\n"), out);
1784 fputs(_(" -i, --ascii use ascii characters only\n"), out);
1785 fputs(_(" -l, --list use list format output\n"), out);
1786 fputs(_(" -M, --merge group parents of sub-trees (usable for RAIDs, Multi-path)\n"), out);
1787 fputs(_(" -m, --perms output info about permissions\n"), out);
1788 fputs(_(" -n, --noheadings don't print headings\n"), out);
1789 fputs(_(" -o, --output <list> output columns\n"), out);
1790 fputs(_(" -p, --paths print complete device path\n"), out);
1791 fputs(_(" -r, --raw use raw output format\n"), out);
1792 fputs(_(" -s, --inverse inverse dependencies\n"), out);
1793 fputs(_(" -t, --topology output info about topology\n"), out);
1794 fputs(_(" -z, --zoned print zone model\n"), out);
1795 fputs(_(" -x, --sort <column> sort output by <column>\n"), out);
1796 fputs(_(" --sysroot <dir> use specified directory as system root\n"), out);
1797 fputs(USAGE_SEPARATOR, out);
1798 printf(USAGE_HELP_OPTIONS(22));
1799
1800 fprintf(out, USAGE_COLUMNS);
1801
1802 for (i = 0; i < ARRAY_SIZE(infos); i++)
1803 fprintf(out, " %11s %s\n", infos[i].name, _(infos[i].help));
1804
1805 printf(USAGE_MAN_TAIL("lsblk(8)"));
1806
1807 exit(EXIT_SUCCESS);
1808 }
1809
1810 static void check_sysdevblock(void)
1811 {
1812 if (access(_PATH_SYS_DEVBLOCK, R_OK) != 0)
1813 err(EXIT_FAILURE, _("failed to access sysfs directory: %s"),
1814 _PATH_SYS_DEVBLOCK);
1815 }
1816
1817 int main(int argc, char *argv[])
1818 {
1819 struct lsblk _ls = {
1820 .sort_id = -1,
1821 .dedup_id = -1,
1822 .flags = LSBLK_TREE,
1823 .tree_id = COL_NAME
1824 };
1825 struct lsblk_devtree *tr = NULL;
1826 int c, status = EXIT_FAILURE;
1827 char *outarg = NULL;
1828 size_t i;
1829 int force_tree = 0, has_tree_col = 0;
1830
1831 enum {
1832 OPT_SYSROOT = CHAR_MAX + 1
1833 };
1834
1835 static const struct option longopts[] = {
1836 { "all", no_argument, NULL, 'a' },
1837 { "bytes", no_argument, NULL, 'b' },
1838 { "nodeps", no_argument, NULL, 'd' },
1839 { "discard", no_argument, NULL, 'D' },
1840 { "dedup", required_argument, NULL, 'E' },
1841 { "zoned", no_argument, NULL, 'z' },
1842 { "help", no_argument, NULL, 'h' },
1843 { "json", no_argument, NULL, 'J' },
1844 { "output", required_argument, NULL, 'o' },
1845 { "output-all", no_argument, NULL, 'O' },
1846 { "merge", no_argument, NULL, 'M' },
1847 { "perms", no_argument, NULL, 'm' },
1848 { "noheadings", no_argument, NULL, 'n' },
1849 { "list", no_argument, NULL, 'l' },
1850 { "ascii", no_argument, NULL, 'i' },
1851 { "raw", no_argument, NULL, 'r' },
1852 { "inverse", no_argument, NULL, 's' },
1853 { "fs", no_argument, NULL, 'f' },
1854 { "exclude", required_argument, NULL, 'e' },
1855 { "include", required_argument, NULL, 'I' },
1856 { "topology", no_argument, NULL, 't' },
1857 { "paths", no_argument, NULL, 'p' },
1858 { "pairs", no_argument, NULL, 'P' },
1859 { "scsi", no_argument, NULL, 'S' },
1860 { "sort", required_argument, NULL, 'x' },
1861 { "sysroot", required_argument, NULL, OPT_SYSROOT },
1862 { "tree", optional_argument, NULL, 'T' },
1863 { "version", no_argument, NULL, 'V' },
1864 { NULL, 0, NULL, 0 },
1865 };
1866
1867 static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
1868 { 'D','O' },
1869 { 'I','e' },
1870 { 'J', 'P', 'r' },
1871 { 'O','S' },
1872 { 'O','f' },
1873 { 'O','m' },
1874 { 'O','o' },
1875 { 'O','t' },
1876 { 'P','T', 'l','r' },
1877 { 0 }
1878 };
1879 int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
1880
1881 setlocale(LC_ALL, "");
1882 bindtextdomain(PACKAGE, LOCALEDIR);
1883 textdomain(PACKAGE);
1884 close_stdout_atexit();
1885
1886 lsblk = &_ls;
1887
1888 lsblk_init_debug();
1889
1890 while((c = getopt_long(argc, argv,
1891 "abdDzE:e:fhJlnMmo:OpPiI:rstVST:x:", longopts, NULL)) != -1) {
1892
1893 err_exclusive_options(c, longopts, excl, excl_st);
1894
1895 switch(c) {
1896 case 'a':
1897 lsblk->all_devices = 1;
1898 break;
1899 case 'b':
1900 lsblk->bytes = 1;
1901 break;
1902 case 'd':
1903 lsblk->nodeps = 1;
1904 break;
1905 case 'D':
1906 add_uniq_column(COL_NAME);
1907 add_uniq_column(COL_DALIGN);
1908 add_uniq_column(COL_DGRAN);
1909 add_uniq_column(COL_DMAX);
1910 add_uniq_column(COL_DZERO);
1911 break;
1912 case 'z':
1913 add_uniq_column(COL_NAME);
1914 add_uniq_column(COL_ZONED);
1915 break;
1916 case 'e':
1917 parse_excludes(optarg);
1918 break;
1919 case 'J':
1920 lsblk->flags |= LSBLK_JSON;
1921 break;
1922 case 'l':
1923 lsblk->flags &= ~LSBLK_TREE; /* disable the default */
1924 break;
1925 case 'M':
1926 lsblk->merge = 1;
1927 break;
1928 case 'n':
1929 lsblk->flags |= LSBLK_NOHEADINGS;
1930 break;
1931 case 'o':
1932 outarg = optarg;
1933 break;
1934 case 'O':
1935 for (ncolumns = 0 ; ncolumns < ARRAY_SIZE(infos); ncolumns++)
1936 columns[ncolumns] = ncolumns;
1937 break;
1938 case 'p':
1939 lsblk->paths = 1;
1940 break;
1941 case 'P':
1942 lsblk->flags |= LSBLK_EXPORT;
1943 lsblk->flags &= ~LSBLK_TREE; /* disable the default */
1944 break;
1945 case 'i':
1946 lsblk->flags |= LSBLK_ASCII;
1947 break;
1948 case 'I':
1949 parse_includes(optarg);
1950 break;
1951 case 'r':
1952 lsblk->flags &= ~LSBLK_TREE; /* disable the default */
1953 lsblk->flags |= LSBLK_RAW; /* enable raw */
1954 break;
1955 case 's':
1956 lsblk->inverse = 1;
1957 break;
1958 case 'f':
1959 add_uniq_column(COL_NAME);
1960 add_uniq_column(COL_FSTYPE);
1961 add_uniq_column(COL_FSVERSION);
1962 add_uniq_column(COL_LABEL);
1963 add_uniq_column(COL_UUID);
1964 add_uniq_column(COL_FSAVAIL);
1965 add_uniq_column(COL_FSUSEPERC);
1966 add_uniq_column(COL_TARGET);
1967 break;
1968 case 'm':
1969 add_uniq_column(COL_NAME);
1970 add_uniq_column(COL_SIZE);
1971 add_uniq_column(COL_OWNER);
1972 add_uniq_column(COL_GROUP);
1973 add_uniq_column(COL_MODE);
1974 break;
1975 case 't':
1976 add_uniq_column(COL_NAME);
1977 add_uniq_column(COL_ALIOFF);
1978 add_uniq_column(COL_MINIO);
1979 add_uniq_column(COL_OPTIO);
1980 add_uniq_column(COL_PHYSEC);
1981 add_uniq_column(COL_LOGSEC);
1982 add_uniq_column(COL_ROTA);
1983 add_uniq_column(COL_SCHED);
1984 add_uniq_column(COL_RQ_SIZE);
1985 add_uniq_column(COL_RA);
1986 add_uniq_column(COL_WSAME);
1987 break;
1988 case 'S':
1989 lsblk->nodeps = 1;
1990 lsblk->scsi = 1;
1991 add_uniq_column(COL_NAME);
1992 add_uniq_column(COL_HCTL);
1993 add_uniq_column(COL_TYPE);
1994 add_uniq_column(COL_VENDOR);
1995 add_uniq_column(COL_MODEL);
1996 add_uniq_column(COL_REV);
1997 add_uniq_column(COL_TRANSPORT);
1998 break;
1999 case 'T':
2000 force_tree = 1;
2001 if (optarg)
2002 lsblk->tree_id = column_name_to_id(optarg, strlen(optarg));
2003 break;
2004 case OPT_SYSROOT:
2005 lsblk->sysroot = optarg;
2006 break;
2007 case 'E':
2008 lsblk->dedup_id = column_name_to_id(optarg, strlen(optarg));
2009 if (lsblk->dedup_id >= 0)
2010 break;
2011 errtryhelp(EXIT_FAILURE);
2012 break;
2013 case 'x':
2014 lsblk->flags &= ~LSBLK_TREE; /* disable the default */
2015 lsblk->sort_id = column_name_to_id(optarg, strlen(optarg));
2016 if (lsblk->sort_id >= 0)
2017 break;
2018 errtryhelp(EXIT_FAILURE);
2019 break;
2020
2021 case 'h':
2022 usage();
2023 case 'V':
2024 print_version(EXIT_SUCCESS);
2025 default:
2026 errtryhelp(EXIT_FAILURE);
2027 }
2028 }
2029
2030 if (force_tree)
2031 lsblk->flags |= LSBLK_TREE;
2032
2033 check_sysdevblock();
2034
2035 if (!ncolumns) {
2036 add_column(COL_NAME);
2037 add_column(COL_MAJMIN);
2038 add_column(COL_RM);
2039 add_column(COL_SIZE);
2040 add_column(COL_RO);
2041 add_column(COL_TYPE);
2042 add_column(COL_TARGET);
2043 }
2044
2045 if (outarg && string_add_to_idarray(outarg, columns, ARRAY_SIZE(columns),
2046 &ncolumns, column_name_to_id) < 0)
2047 return EXIT_FAILURE;
2048
2049 if (lsblk->all_devices == 0 && nexcludes == 0 && nincludes == 0)
2050 excludes[nexcludes++] = 1; /* default: ignore RAM disks */
2051
2052 if (lsblk->sort_id < 0)
2053 /* Since Linux 4.8 we have sort devices by default, because
2054 * /sys is no more sorted */
2055 lsblk->sort_id = COL_MAJMIN;
2056
2057 /* For --{inverse,raw,pairs} --list we still follow parent->child relation */
2058 if (!(lsblk->flags & LSBLK_TREE)
2059 && (lsblk->inverse || lsblk->flags & LSBLK_EXPORT || lsblk->flags & LSBLK_RAW))
2060 lsblk->force_tree_order = 1;
2061
2062 if (lsblk->sort_id >= 0 && column_id_to_number(lsblk->sort_id) < 0) {
2063 /* the sort column is not between output columns -- add as hidden */
2064 add_column(lsblk->sort_id);
2065 lsblk->sort_hidden = 1;
2066 }
2067
2068 if (lsblk->dedup_id >= 0 && column_id_to_number(lsblk->dedup_id) < 0) {
2069 /* the deduplication column is not between output columns -- add as hidden */
2070 add_column(lsblk->dedup_id);
2071 lsblk->dedup_hidden = 1;
2072 }
2073
2074 lsblk_mnt_init();
2075 scols_init_debug(0);
2076 ul_path_init_debug();
2077
2078 /*
2079 * initialize output columns
2080 */
2081 if (!(lsblk->table = scols_new_table()))
2082 errx(EXIT_FAILURE, _("failed to allocate output table"));
2083 scols_table_enable_raw(lsblk->table, !!(lsblk->flags & LSBLK_RAW));
2084 scols_table_enable_export(lsblk->table, !!(lsblk->flags & LSBLK_EXPORT));
2085 scols_table_enable_ascii(lsblk->table, !!(lsblk->flags & LSBLK_ASCII));
2086 scols_table_enable_json(lsblk->table, !!(lsblk->flags & LSBLK_JSON));
2087 scols_table_enable_noheadings(lsblk->table, !!(lsblk->flags & LSBLK_NOHEADINGS));
2088
2089 if (lsblk->flags & LSBLK_JSON)
2090 scols_table_set_name(lsblk->table, "blockdevices");
2091
2092 for (i = 0; i < ncolumns; i++) {
2093 struct colinfo *ci = get_column_info(i);
2094 struct libscols_column *cl;
2095 int id = get_column_id(i), fl = ci->flags;
2096
2097 if ((lsblk->flags & LSBLK_TREE)
2098 && has_tree_col == 0
2099 && id == lsblk->tree_id) {
2100 fl |= SCOLS_FL_TREE;
2101 fl &= ~SCOLS_FL_RIGHT;
2102 has_tree_col = 1;
2103 }
2104
2105 if (lsblk->sort_hidden && lsblk->sort_id == id)
2106 fl |= SCOLS_FL_HIDDEN;
2107 if (lsblk->dedup_hidden && lsblk->dedup_id == id)
2108 fl |= SCOLS_FL_HIDDEN;
2109
2110 if (force_tree
2111 && lsblk->flags & LSBLK_JSON
2112 && has_tree_col == 0
2113 && i + 1 == ncolumns)
2114 /* The "--tree --json" specified, but no column with
2115 * SCOLS_FL_TREE yet; force it for the last column
2116 */
2117 fl |= SCOLS_FL_TREE;
2118
2119 cl = scols_table_new_column(lsblk->table, ci->name, ci->whint, fl);
2120 if (!cl) {
2121 warn(_("failed to allocate output column"));
2122 goto leave;
2123 }
2124 if (!lsblk->sort_col && lsblk->sort_id == id) {
2125 lsblk->sort_col = cl;
2126 scols_column_set_cmpfunc(cl,
2127 ci->type == COLTYPE_NUM ? cmp_u64_cells :
2128 ci->type == COLTYPE_SIZE ? cmp_u64_cells :
2129 ci->type == COLTYPE_SORTNUM ? cmp_u64_cells : scols_cmpstr_cells,
2130 NULL);
2131 }
2132 if (lsblk->flags & LSBLK_JSON) {
2133 switch (ci->type) {
2134 case COLTYPE_SIZE:
2135 if (!lsblk->bytes)
2136 break;
2137 /* fallthrough */
2138 case COLTYPE_NUM:
2139 scols_column_set_json_type(cl, SCOLS_JSON_NUMBER);
2140 break;
2141 case COLTYPE_BOOL:
2142 scols_column_set_json_type(cl, SCOLS_JSON_BOOLEAN);
2143 break;
2144 default:
2145 scols_column_set_json_type(cl, SCOLS_JSON_STRING);
2146 break;
2147 }
2148 }
2149 }
2150
2151 tr = lsblk_new_devtree();
2152 if (!tr)
2153 err(EXIT_FAILURE, _("failed to allocate device tree"));
2154
2155 if (optind == argc) {
2156 int rc = lsblk->inverse ?
2157 process_all_devices_inverse(tr) :
2158 process_all_devices(tr);
2159
2160 status = rc == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
2161 } else {
2162 int cnt = 0, cnt_err = 0;
2163
2164 while (optind < argc) {
2165 if (process_one_device(tr, argv[optind++]) != 0)
2166 cnt_err++;
2167 cnt++;
2168 }
2169 status = cnt == 0 ? EXIT_FAILURE : /* nothing */
2170 cnt == cnt_err ? LSBLK_EXIT_ALLFAILED :/* all failed */
2171 cnt_err ? LSBLK_EXIT_SOMEOK : /* some ok */
2172 EXIT_SUCCESS; /* all success */
2173 }
2174
2175 if (lsblk->dedup_id > -1) {
2176 devtree_set_dedupkeys(tr, lsblk->dedup_id);
2177 lsblk_devtree_deduplicate_devices(tr);
2178 }
2179
2180 devtree_to_scols(tr, lsblk->table);
2181
2182 if (lsblk->sort_col)
2183 scols_sort_table(lsblk->table, lsblk->sort_col);
2184 if (lsblk->force_tree_order)
2185 scols_sort_table_by_tree(lsblk->table);
2186
2187 scols_print_table(lsblk->table);
2188
2189 leave:
2190 if (lsblk->sort_col)
2191 unref_sortdata(lsblk->table);
2192
2193 scols_unref_table(lsblk->table);
2194
2195 lsblk_mnt_deinit();
2196 lsblk_properties_deinit();
2197 lsblk_unref_devtree(tr);
2198
2199 return status;
2200 }