]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/blockdev-util.c
Merge pull request #18990 from yuwata/network-dhcpv6-use-domains
[thirdparty/systemd.git] / src / basic / blockdev-util.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <sys/file.h>
4 #include <unistd.h>
5
6 #include "alloc-util.h"
7 #include "blockdev-util.h"
8 #include "btrfs-util.h"
9 #include "dirent-util.h"
10 #include "fd-util.h"
11 #include "fileio.h"
12 #include "missing_magic.h"
13 #include "parse-util.h"
14 #include "stat-util.h"
15
16 int block_get_whole_disk(dev_t d, dev_t *ret) {
17 char p[SYS_BLOCK_PATH_MAX("/partition")];
18 _cleanup_free_ char *s = NULL;
19 dev_t devt;
20 int r;
21
22 assert(ret);
23
24 if (major(d) == 0)
25 return -ENODEV;
26
27 /* If it has a queue this is good enough for us */
28 xsprintf_sys_block_path(p, "/queue", d);
29 if (access(p, F_OK) >= 0) {
30 *ret = d;
31 return 0;
32 }
33 if (errno != ENOENT)
34 return -errno;
35
36 /* If it is a partition find the originating device */
37 xsprintf_sys_block_path(p, "/partition", d);
38 if (access(p, F_OK) < 0)
39 return -errno;
40
41 /* Get parent dev_t */
42 xsprintf_sys_block_path(p, "/../dev", d);
43 r = read_one_line_file(p, &s);
44 if (r < 0)
45 return r;
46
47 r = parse_dev(s, &devt);
48 if (r < 0)
49 return r;
50
51 /* Only return this if it is really good enough for us. */
52 xsprintf_sys_block_path(p, "/queue", devt);
53 if (access(p, F_OK) < 0)
54 return -errno;
55
56 *ret = devt;
57 return 1;
58 }
59
60 int get_block_device(const char *path, dev_t *ret) {
61 _cleanup_close_ int fd = -1;
62 struct stat st;
63 int r;
64
65 assert(path);
66 assert(ret);
67
68 /* Gets the block device directly backing a file system. If the block device is encrypted, returns
69 * the device mapper block device. */
70
71 fd = open(path, O_RDONLY|O_NOFOLLOW|O_CLOEXEC);
72 if (fd < 0)
73 return -errno;
74
75 if (fstat(fd, &st))
76 return -errno;
77
78 if (major(st.st_dev) != 0) {
79 *ret = st.st_dev;
80 return 1;
81 }
82
83 r = btrfs_get_block_device_fd(fd, ret);
84 if (r > 0)
85 return 1;
86 if (r != -ENOTTY) /* not btrfs */
87 return r;
88
89 *ret = 0;
90 return 0;
91 }
92
93 int block_get_originating(dev_t dt, dev_t *ret) {
94 _cleanup_closedir_ DIR *d = NULL;
95 _cleanup_free_ char *t = NULL;
96 char p[SYS_BLOCK_PATH_MAX("/slaves")];
97 _cleanup_free_ char *first_found = NULL;
98 struct dirent *de;
99 const char *q;
100 dev_t devt;
101 int r;
102
103 /* For the specified block device tries to chase it through the layers, in case LUKS-style DM stacking is used,
104 * trying to find the next underlying layer. */
105
106 xsprintf_sys_block_path(p, "/slaves", dt);
107 d = opendir(p);
108 if (!d)
109 return -errno;
110
111 FOREACH_DIRENT_ALL(de, d, return -errno) {
112
113 if (dot_or_dot_dot(de->d_name))
114 continue;
115
116 if (!IN_SET(de->d_type, DT_LNK, DT_UNKNOWN))
117 continue;
118
119 if (first_found) {
120 _cleanup_free_ char *u = NULL, *v = NULL, *a = NULL, *b = NULL;
121
122 /* We found a device backed by multiple other devices. We don't really support
123 * automatic discovery on such setups, with the exception of dm-verity partitions. In
124 * this case there are two backing devices: the data partition and the hash
125 * partition. We are fine with such setups, however, only if both partitions are on
126 * the same physical device. Hence, let's verify this by iterating over every node
127 * in the 'slaves/' directory and comparing them with the first that gets returned by
128 * readdir(), to ensure they all point to the same device. */
129
130 u = path_join(p, de->d_name, "../dev");
131 if (!u)
132 return -ENOMEM;
133
134 v = path_join(p, first_found, "../dev");
135 if (!v)
136 return -ENOMEM;
137
138 r = read_one_line_file(u, &a);
139 if (r < 0)
140 return log_debug_errno(r, "Failed to read %s: %m", u);
141
142 r = read_one_line_file(v, &b);
143 if (r < 0)
144 return log_debug_errno(r, "Failed to read %s: %m", v);
145
146 /* Check if the parent device is the same. If not, then the two backing devices are on
147 * different physical devices, and we don't support that. */
148 if (!streq(a, b))
149 return -ENOTUNIQ;
150 } else {
151 first_found = strdup(de->d_name);
152 if (!first_found)
153 return -ENOMEM;
154 }
155 }
156
157 if (!first_found)
158 return -ENOENT;
159
160 q = strjoina(p, "/", first_found, "/dev");
161
162 r = read_one_line_file(q, &t);
163 if (r < 0)
164 return r;
165
166 r = parse_dev(t, &devt);
167 if (r < 0)
168 return -EINVAL;
169
170 if (major(devt) == 0)
171 return -ENOENT;
172
173 *ret = devt;
174 return 1;
175 }
176
177 int get_block_device_harder(const char *path, dev_t *ret) {
178 int r;
179
180 assert(path);
181 assert(ret);
182
183 /* Gets the backing block device for a file system, and handles LUKS encrypted file systems, looking for its
184 * immediate parent, if there is one. */
185
186 r = get_block_device(path, ret);
187 if (r <= 0)
188 return r;
189
190 r = block_get_originating(*ret, ret);
191 if (r < 0)
192 log_debug_errno(r, "Failed to chase block device '%s', ignoring: %m", path);
193
194 return 1;
195 }
196
197 int lock_whole_block_device(dev_t devt, int operation) {
198 _cleanup_free_ char *whole_node = NULL;
199 _cleanup_close_ int lock_fd = -1;
200 dev_t whole_devt;
201 int r;
202
203 /* Let's get a BSD file lock on the whole block device, as per: https://systemd.io/BLOCK_DEVICE_LOCKING */
204
205 r = block_get_whole_disk(devt, &whole_devt);
206 if (r < 0)
207 return r;
208
209 r = device_path_make_major_minor(S_IFBLK, whole_devt, &whole_node);
210 if (r < 0)
211 return r;
212
213 lock_fd = open(whole_node, O_RDONLY|O_CLOEXEC|O_NONBLOCK);
214 if (lock_fd < 0)
215 return -errno;
216
217 if (flock(lock_fd, operation) < 0)
218 return -errno;
219
220 return TAKE_FD(lock_fd);
221 }
222
223 int blockdev_partscan_enabled(int fd) {
224 _cleanup_free_ char *p = NULL, *buf = NULL;
225 unsigned long long ull;
226 struct stat st;
227 int r;
228
229 /* Checks if partition scanning is correctly enabled on the block device */
230
231 if (fstat(fd, &st) < 0)
232 return -errno;
233
234 if (!S_ISBLK(st.st_mode))
235 return -ENOTBLK;
236
237 if (asprintf(&p, "/sys/dev/block/%u:%u/capability", major(st.st_rdev), minor(st.st_rdev)) < 0)
238 return -ENOMEM;
239
240 r = read_one_line_file(p, &buf);
241 if (r == -ENOENT) /* If the capability file doesn't exist then we are most likely looking at a
242 * partition block device, not the whole block device. And that means we have no
243 * partition scanning on for it (we do for its parent, but not for the partition
244 * itself). */
245 return false;
246 if (r < 0)
247 return r;
248
249 r = safe_atollu_full(buf, 16, &ull);
250 if (r < 0)
251 return r;
252
253 #ifndef GENHD_FL_NO_PART_SCAN
254 #define GENHD_FL_NO_PART_SCAN (0x0200)
255 #endif
256
257 return !FLAGS_SET(ull, GENHD_FL_NO_PART_SCAN);
258 }