]> git.ipfire.org Git - thirdparty/util-linux.git/blob - misc-utils/lsblk.h
lsblk: add --noempty
[thirdparty/util-linux.git] / misc-utils / lsblk.h
1 /*
2 * Copyright (C) 2010-2018 Red Hat, Inc. All rights reserved.
3 * Written by Milan Broz <mbroz@redhat.com>
4 * Karel Zak <kzak@redhat.com>
5 */
6 #ifndef UTIL_LINUX_LSBLK_H
7 #define UTIL_LINUX_LSBLK_H
8
9 #include <stdint.h>
10 #include <inttypes.h>
11 #include <sys/stat.h>
12 #include <sys/statvfs.h>
13
14 #include <libsmartcols.h>
15 #include <libmount.h>
16
17 #include "c.h"
18 #include "list.h"
19 #include "debug.h"
20
21 #define LSBLK_DEBUG_INIT (1 << 1)
22 #define LSBLK_DEBUG_FILTER (1 << 2)
23 #define LSBLK_DEBUG_DEV (1 << 3)
24 #define LSBLK_DEBUG_TREE (1 << 4)
25 #define LSBLK_DEBUG_DEP (1 << 5)
26 #define LSBLK_DEBUG_ALL 0xFFFF
27
28 UL_DEBUG_DECLARE_MASK(lsblk);
29 #define DBG(m, x) __UL_DBG(lsblk, LSBLK_DEBUG_, m, x)
30 #define ON_DBG(m, x) __UL_DBG_CALL(lsblk, LSBLK_DEBUG_, m, x)
31
32 #define UL_DEBUG_CURRENT_MASK UL_DEBUG_MASK(lsblk)
33 #include "debugobj.h"
34
35 struct lsblk {
36 struct libscols_table *table; /* output table */
37 struct libscols_column *sort_col;/* sort output by this column */
38
39 int sort_id; /* id of the sort column */
40 int tree_id; /* od of column used for tree */
41
42 int dedup_id;
43
44
45 const char *sysroot;
46 int flags; /* LSBLK_* */
47
48 unsigned int all_devices:1; /* print all devices, including empty */
49 unsigned int bytes:1; /* print SIZE in bytes */
50 unsigned int inverse:1; /* print inverse dependencies */
51 unsigned int merge:1; /* merge sub-trees */
52 unsigned int nodeps:1; /* don't print slaves/holders */
53 unsigned int scsi:1; /* print only device with HCTL (SCSI) */
54 unsigned int paths:1; /* print devnames with "/dev" prefix */
55 unsigned int sort_hidden:1; /* sort column not between output columns */
56 unsigned int dedup_hidden :1; /* deduplication column not between output columns */
57 unsigned int force_tree_order:1;/* sort lines by parent->tree relation */
58 unsigned int noempty:1; /* hide empty devices */
59 };
60
61 extern struct lsblk *lsblk; /* global handler */
62
63 struct lsblk_devprop {
64 /* udev / blkid based */
65 char *fstype; /* detected fs, NULL or "?" if cannot detect */
66 char *fsversion; /* filesystem version */
67 char *uuid; /* filesystem UUID (or stack uuid) */
68 char *ptuuid; /* partition table UUID */
69 char *pttype; /* partition table type */
70 char *label; /* filesystem label */
71 char *parttype; /* partition type UUID */
72 char *partuuid; /* partition UUID */
73 char *partlabel; /* partition label */
74 char *partflags; /* partition flags */
75 char *wwn; /* storage WWN */
76 char *serial; /* disk serial number */
77 char *model; /* disk model */
78
79 /* lsblk specific (for --sysroot only) */
80 char *owner; /* user name */
81 char *group; /* group name */
82 char *mode; /* access mode in ls(1)-like notation */
83 };
84
85 /* Device dependence
86 *
87 * Note that the same device may be slave/holder for more another devices. It
88 * means we need to allocate list member rather than use @child directly.
89 */
90 struct lsblk_devdep {
91 struct list_head ls_childs; /* item in parent->childs */
92 struct list_head ls_parents; /* item in child->parents */
93
94 struct lsblk_device *child;
95 struct lsblk_device *parent;
96 };
97
98 struct lsblk_device {
99 int refcount;
100
101 struct list_head childs; /* list with lsblk_devdep */
102 struct list_head parents;
103 struct list_head ls_roots; /* item in devtree->roots list */
104 struct list_head ls_devices; /* item in devtree->devices list */
105
106 struct lsblk_device *wholedisk; /* for partitions */
107
108 struct libscols_line *scols_line;
109
110 struct lsblk_devprop *properties;
111 struct stat st;
112
113 char *name; /* kernel name in /sys/block */
114 char *dm_name; /* DM name (dm/block) */
115
116 char *filename; /* path to device node */
117 char *dedupkey; /* de-duplication key */
118
119 struct path_cxt *sysfs;
120
121 struct libmnt_fs **fss; /* filesystems attached to the device */
122 size_t nfss; /* number of items in fss[] */
123
124 struct statvfs fsstat; /* statvfs() result */
125
126 int npartitions; /* # of partitions this device has */
127 int nholders; /* # of devices mapped directly to this device
128 * /sys/block/.../holders */
129 int nslaves; /* # of devices this device maps to */
130 int maj, min; /* devno */
131
132 uint64_t discard_granularity; /* sunknown:-1, yes:1, not:0 */
133
134 uint64_t size; /* device size */
135 int removable; /* unknown:-1, yes:1, not:0 */
136
137 unsigned int is_mounted : 1,
138 is_swap : 1,
139 is_printed : 1,
140 udev_requested : 1,
141 blkid_requested : 1,
142 file_requested : 1;
143 };
144
145 #define device_is_partition(_x) ((_x)->wholedisk != NULL)
146
147 /* Unfortunately, pktcdvd dependence on block device is not defined by
148 * slave/holder symlinks. The struct lsblk_devnomap represents one line in
149 * /sys/class/pktcdvd/device_map
150 */
151 struct lsblk_devnomap {
152 dev_t slave; /* packet device devno */
153 dev_t holder; /* block device devno */
154
155 struct list_head ls_devnomap;
156 };
157
158
159 /*
160 * Note that lsblk tree uses bottom devices (devices without slaves) as root
161 * of the tree, and partitions are interpreted as a dependence too; it means:
162 * sda -> sda1 -> md0
163 *
164 * The flag 'is_inverted' turns the tree over (root is device without holders):
165 * md0 -> sda1 -> sda
166 */
167 struct lsblk_devtree {
168 int refcount;
169
170 struct list_head roots; /* tree root devices */
171 struct list_head devices; /* all devices */
172 struct list_head pktcdvd_map; /* devnomap->ls_devnomap */
173
174 unsigned int is_inverse : 1, /* inverse tree */
175 pktcdvd_read : 1;
176 };
177
178
179 /*
180 * Generic iterator
181 */
182 struct lsblk_iter {
183 struct list_head *p; /* current position */
184 struct list_head *head; /* start position */
185 int direction; /* LSBLK_ITER_{FOR,BACK}WARD */
186 };
187
188 #define LSBLK_ITER_FORWARD 0
189 #define LSBLK_ITER_BACKWARD 1
190
191 #define IS_ITER_FORWARD(_i) ((_i)->direction == LSBLK_ITER_FORWARD)
192 #define IS_ITER_BACKWARD(_i) ((_i)->direction == LSBLK_ITER_BACKWARD)
193
194 #define LSBLK_ITER_INIT(itr, list) \
195 do { \
196 (itr)->p = IS_ITER_FORWARD(itr) ? \
197 (list)->next : (list)->prev; \
198 (itr)->head = (list); \
199 } while(0)
200
201 #define LSBLK_ITER_ITERATE(itr, res, restype, member) \
202 do { \
203 res = list_entry((itr)->p, restype, member); \
204 (itr)->p = IS_ITER_FORWARD(itr) ? \
205 (itr)->p->next : (itr)->p->prev; \
206 } while(0)
207
208
209 /* lsblk-mnt.c */
210 extern void lsblk_mnt_init(void);
211 extern void lsblk_mnt_deinit(void);
212
213 extern void lsblk_device_free_filesystems(struct lsblk_device *dev);
214 extern const char *lsblk_device_get_mountpoint(struct lsblk_device *dev);
215 extern struct libmnt_fs **lsblk_device_get_filesystems(struct lsblk_device *dev, size_t *n);
216
217 /* lsblk-properties.c */
218 extern void lsblk_device_free_properties(struct lsblk_devprop *p);
219 extern struct lsblk_devprop *lsblk_device_get_properties(struct lsblk_device *dev);
220 extern void lsblk_properties_deinit(void);
221
222 extern const char *lsblk_parttype_code_to_string(const char *code, const char *pttype);
223
224 /* lsblk-devtree.c */
225 void lsblk_reset_iter(struct lsblk_iter *itr, int direction);
226 struct lsblk_device *lsblk_new_device(void);
227 void lsblk_ref_device(struct lsblk_device *dev);
228 void lsblk_unref_device(struct lsblk_device *dev);
229 int lsblk_device_new_dependence(struct lsblk_device *parent, struct lsblk_device *child);
230 int lsblk_device_has_child(struct lsblk_device *dev, struct lsblk_device *child);
231 int lsblk_device_next_child(struct lsblk_device *dev,
232 struct lsblk_iter *itr,
233 struct lsblk_device **child);
234
235 dev_t lsblk_devtree_pktcdvd_get_mate(struct lsblk_devtree *tr, dev_t devno, int is_slave);
236
237 int lsblk_device_is_last_parent(struct lsblk_device *dev, struct lsblk_device *parent);
238 int lsblk_device_next_parent(
239 struct lsblk_device *dev,
240 struct lsblk_iter *itr,
241 struct lsblk_device **parent);
242
243 struct lsblk_devtree *lsblk_new_devtree(void);
244 void lsblk_ref_devtree(struct lsblk_devtree *tr);
245 void lsblk_unref_devtree(struct lsblk_devtree *tr);
246 int lsblk_devtree_add_root(struct lsblk_devtree *tr, struct lsblk_device *dev);
247 int lsblk_devtree_remove_root(struct lsblk_devtree *tr, struct lsblk_device *dev);
248 int lsblk_devtree_next_root(struct lsblk_devtree *tr,
249 struct lsblk_iter *itr,
250 struct lsblk_device **dev);
251 int lsblk_devtree_add_device(struct lsblk_devtree *tr, struct lsblk_device *dev);
252 int lsblk_devtree_next_device(struct lsblk_devtree *tr,
253 struct lsblk_iter *itr,
254 struct lsblk_device **dev);
255 int lsblk_devtree_has_device(struct lsblk_devtree *tr, struct lsblk_device *dev);
256 struct lsblk_device *lsblk_devtree_get_device(struct lsblk_devtree *tr, const char *name);
257 int lsblk_devtree_remove_device(struct lsblk_devtree *tr, struct lsblk_device *dev);
258 int lsblk_devtree_deduplicate_devices(struct lsblk_devtree *tr);
259
260 #endif /* UTIL_LINUX_LSBLK_H */