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