summaryrefslogtreecommitdiffstats
path: root/src/shared/blockdev-util.h
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2022-09-18 23:33:26 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-09-28 10:42:23 +0200
commitfd690a4b7fbb0c823c2b0df4d2096a1b441f7482 (patch)
tree2be0e58865d77b18d61c62dd583990fa617b4b43 /src/shared/blockdev-util.h
parentblockdev-util: re-implement block_get_originating() by using sd_device (diff)
downloadsystemd-fd690a4b7fbb0c823c2b0df4d2096a1b441f7482.tar.xz
systemd-fd690a4b7fbb0c823c2b0df4d2096a1b441f7482.zip
blockdev-util: introduce block_device_new_from_fd() and block_device_new_from_path()
These are possible replacements of get_block_device(), get_block_device_harder(), path_get_whole_disk(), and friends.
Diffstat (limited to 'src/shared/blockdev-util.h')
-rw-r--r--src/shared/blockdev-util.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/shared/blockdev-util.h b/src/shared/blockdev-util.h
index 1f612157fc..b2c14102ae 100644
--- a/src/shared/blockdev-util.h
+++ b/src/shared/blockdev-util.h
@@ -14,6 +14,17 @@
#define xsprintf_sys_block_path(buf, suffix, devno) \
xsprintf(buf, "/sys/dev/block/%u:%u%s", major(devno), minor(devno), strempty(suffix))
+typedef enum BlockDeviceLookupFlag {
+ BLOCK_DEVICE_LOOKUP_WHOLE_DISK = 1 << 0, /* whole block device, e.g. sda, nvme0n1, or loop0. */
+ BLOCK_DEVICE_LOOKUP_BACKING = 1 << 1, /* fd may be regular file or directory on file system, in
+ * which case backing block device is determined. */
+ BLOCK_DEVICE_LOOKUP_ORIGINATING = 1 << 2, /* Try to find the underlying layer device for stacked
+ * block device, e.g. LUKS-style DM. */
+} BlockDeviceLookupFlag;
+
+int block_device_new_from_fd(int fd, BlockDeviceLookupFlag flag, sd_device **ret);
+int block_device_new_from_path(const char *path, BlockDeviceLookupFlag flag, sd_device **ret);
+
int block_device_is_whole_disk(sd_device *dev);
int block_device_get_whole_disk(sd_device *dev, sd_device **ret);