• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

systemd / systemd / 13339601146

14 Feb 2025 08:02PM UTC coverage: 71.699% (-0.1%) from 71.823%
13339601146

push

github

web-flow
mkosi: Fix mkosi.clangd (#36387)

- Add missing '--' delimiter
- Use the new BuildSubdirectory JSON field to figure out the build
  subdirectory.
- Remove the /usr/include path mapping for now. This means we can't
  jump into system headers anymore if they don't exist on the host,
  we can find a way to add this back later if it turns out to be
  crucial.

293171 of 408891 relevant lines covered (71.7%)

715519.06 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

67.2
/src/shared/loop-util.c
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2

3
#if HAVE_VALGRIND_MEMCHECK_H
4
#include <valgrind/memcheck.h>
5
#endif
6

7
#include <errno.h>
8
#include <fcntl.h>
9
#include <linux/blkpg.h>
10
#include <linux/fs.h>
11
#include <linux/loop.h>
12
#include <sys/file.h>
13
#include <sys/ioctl.h>
14
#include <unistd.h>
15

16
#include "sd-device.h"
17

18
#include "alloc-util.h"
19
#include "blockdev-util.h"
20
#include "data-fd-util.h"
21
#include "device-util.h"
22
#include "devnum-util.h"
23
#include "dissect-image.h"
24
#include "env-util.h"
25
#include "errno-util.h"
26
#include "fd-util.h"
27
#include "fs-util.h"
28
#include "fileio.h"
29
#include "loop-util.h"
30
#include "missing_loop.h"
31
#include "parse-util.h"
32
#include "path-util.h"
33
#include "random-util.h"
34
#include "stat-util.h"
35
#include "stdio-util.h"
36
#include "string-util.h"
37
#include "tmpfile-util.h"
38

39
static void cleanup_clear_loop_close(int *fd) {
1,866✔
40
        if (*fd < 0)
1,866✔
41
                return;
42

43
        (void) ioctl(*fd, LOOP_CLR_FD);
×
44
        (void) safe_close(*fd);
×
45
}
46

47
static int loop_is_bound(int fd) {
1,866✔
48
        struct loop_info64 info;
1,866✔
49

50
        if (ioctl(ASSERT_FD(fd), LOOP_GET_STATUS64, &info) < 0) {
1,866✔
51
                if (errno == ENXIO)
1,866✔
52
                        return false; /* not bound! */
1,866✔
53

54
                return -errno;
×
55
        }
56

57
        return true; /* bound! */
58
}
59

60
static int open_lock_fd(int primary_fd, int operation) {
1,887✔
61
        _cleanup_close_ int lock_fd = -EBADF;
1,887✔
62

63
        assert(IN_SET(operation & ~LOCK_NB, LOCK_SH, LOCK_EX));
1,887✔
64

65
        lock_fd = fd_reopen(ASSERT_FD(primary_fd), O_RDONLY|O_CLOEXEC|O_NONBLOCK|O_NOCTTY);
1,887✔
66
        if (lock_fd < 0)
1,887✔
67
                return lock_fd;
68

69
        if (flock(lock_fd, operation) < 0)
1,887✔
70
                return -errno;
×
71

72
        return TAKE_FD(lock_fd);
73
}
74

75
static int loop_configure_verify_direct_io(int fd, const struct loop_config *c) {
1,866✔
76
        assert(fd >= 0);
1,866✔
77
        assert(c);
1,866✔
78

79
        if (FLAGS_SET(c->info.lo_flags, LO_FLAGS_DIRECT_IO)) {
1,866✔
80
                struct loop_info64 info;
1,865✔
81

82
                if (ioctl(fd, LOOP_GET_STATUS64, &info) < 0)
1,865✔
83
                        return log_debug_errno(errno, "Failed to issue LOOP_GET_STATUS64: %m");
×
84

85
#if HAVE_VALGRIND_MEMCHECK_H
86
                VALGRIND_MAKE_MEM_DEFINED(&info, sizeof(info));
87
#endif
88

89
                /* On older kernels (<= 5.3) it was necessary to set the block size of the loopback block
90
                 * device to the logical block size of the underlying file system. Since there was no nice
91
                 * way to query the value, we are not bothering to do this however. On newer kernels the
92
                 * block size is propagated automatically and does not require intervention from us. We'll
93
                 * check here if enabling direct IO worked, to make this easily debuggable however.
94
                 *
95
                 * (Should anyone really care and actually wants direct IO on old kernels: it might be worth
96
                 * enabling direct IO with iteratively larger block sizes until it eventually works.)
97
                 *
98
                 * On older kernels (e.g.: 5.10) when this is attempted on a file stored on a dm-crypt
99
                 * backed partition the kernel will start returning I/O errors when accessing the mounted
100
                 * loop device, so return a recognizable error that causes the operation to be started
101
                 * from scratch without the LO_FLAGS_DIRECT_IO flag. */
102
                if (!FLAGS_SET(info.lo_flags, LO_FLAGS_DIRECT_IO))
1,865✔
103
                        return log_debug_errno(
×
104
                                        SYNTHETIC_ERRNO(ENOANO),
105
                                        "Could not enable direct IO mode, retrying in buffered IO mode.");
106
        }
107

108
        return 0;
109
}
110

111
static int loop_configure_verify(int fd, const struct loop_config *c) {
1,866✔
112
        bool broken = false;
1,866✔
113
        int r;
1,866✔
114

115
        assert(fd >= 0);
1,866✔
116
        assert(c);
1,866✔
117

118
        if (c->block_size != 0) {
1,866✔
119
                uint32_t ssz;
1,866✔
120

121
                r = blockdev_get_sector_size(fd, &ssz);
1,866✔
122
                if (r < 0)
1,866✔
123
                        return r;
×
124

125
                if (ssz != c->block_size) {
1,866✔
126
                        log_debug("LOOP_CONFIGURE didn't honour requested block size %" PRIu32 ", got %" PRIu32 " instead. Ignoring.", c->block_size, ssz);
1,866✔
127
                        broken = true;
128
                }
129
        }
130

131
        if (c->info.lo_sizelimit != 0) {
1,866✔
132
                /* Kernel 5.8 vanilla doesn't properly propagate the size limit into the
133
                 * block device. If it's used, let's immediately check if it had the desired
134
                 * effect hence. And if not use classic LOOP_SET_STATUS64. */
135
                uint64_t z;
44✔
136

137
                r = blockdev_get_device_size(fd, &z);
44✔
138
                if (r < 0)
44✔
139
                        return r;
×
140

141
                if (z != c->info.lo_sizelimit) {
44✔
142
                        log_debug("LOOP_CONFIGURE is broken, doesn't honour .info.lo_sizelimit. Falling back to LOOP_SET_STATUS64.");
44✔
143
                        broken = true;
144
                }
145
        }
146

147
        if (FLAGS_SET(c->info.lo_flags, LO_FLAGS_PARTSCAN)) {
1,866✔
148
                /* Kernel 5.8 vanilla doesn't properly propagate the partition scanning flag
149
                 * into the block device. Let's hence verify if things work correctly here
150
                 * before returning. */
151

152
                r = blockdev_partscan_enabled_fd(fd);
1,753✔
153
                if (r < 0)
1,753✔
154
                        return r;
155
                if (r == 0) {
1,753✔
156
                        log_debug("LOOP_CONFIGURE is broken, doesn't honour LO_FLAGS_PARTSCAN. Falling back to LOOP_SET_STATUS64.");
×
157
                        broken = true;
158
                }
159
        }
160

161
        r = loop_configure_verify_direct_io(fd, c);
1,866✔
162
        if (r < 0)
1,866✔
163
                return r;
164

165
        return !broken;
1,866✔
166
}
167

168
static int loop_configure_fallback(int fd, const struct loop_config *c) {
×
169
        struct loop_info64 info_copy;
×
170
        int r;
×
171

172
        assert(fd >= 0);
×
173
        assert(c);
×
174

175
        /* Only some of the flags LOOP_CONFIGURE can set are also settable via LOOP_SET_STATUS64, hence mask
176
         * them out. */
177
        info_copy = c->info;
×
178
        info_copy.lo_flags &= LOOP_SET_STATUS_SETTABLE_FLAGS;
×
179

180
        /* Since kernel commit 5db470e229e22b7eda6e23b5566e532c96fb5bc3 (kernel v5.0) the LOOP_SET_STATUS64
181
         * ioctl can return EAGAIN in case we change the info.lo_offset field, if someone else is accessing the
182
         * block device while we try to reconfigure it. This is a pretty common case, since udev might
183
         * instantly start probing the device as soon as we attach an fd to it. Hence handle it in two ways:
184
         * first, let's take the BSD lock to ensure that udev will not step in between the point in
185
         * time where we attach the fd and where we reconfigure the device. Secondly, let's wait 50ms on
186
         * EAGAIN and retry. The former should be an efficient mechanism to avoid we have to wait 50ms
187
         * needlessly if we are just racing against udev. The latter is protection against all other cases,
188
         * i.e. peers that do not take the BSD lock. */
189

190
        for (unsigned n_attempts = 0;;) {
×
191
                if (ioctl(fd, LOOP_SET_STATUS64, &info_copy) >= 0)
×
192
                        break;
193

194
                if (errno != EAGAIN || ++n_attempts >= 64)
×
195
                        return log_debug_errno(errno, "Failed to configure loopback block device: %m");
×
196

197
                /* Sleep some random time, but at least 10ms, at most 250ms. Increase the delay the more
198
                 * failed attempts we see */
199
                (void) usleep_safe(UINT64_C(10) * USEC_PER_MSEC +
×
200
                              random_u64_range(UINT64_C(240) * USEC_PER_MSEC * n_attempts/64));
×
201
        }
202

203
        /* Work around a kernel bug, where changing offset/size of the loopback device doesn't correctly
204
         * invalidate the buffer cache. For details see:
205
         *
206
         *     https://android.googlesource.com/platform/system/apex/+/bef74542fbbb4cd629793f4efee8e0053b360570
207
         *
208
         * This was fixed in kernel 5.0, see:
209
         *
210
         *     https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=5db470e229e22b7eda6e23b5566e532c96fb5bc3
211
         *
212
         * We'll run the work-around here in the legacy LOOP_SET_STATUS64 codepath. In the LOOP_CONFIGURE
213
         * codepath above it should not be necessary. */
214
        if (c->info.lo_offset != 0 || c->info.lo_sizelimit != 0)
×
215
                if (ioctl(fd, BLKFLSBUF, 0) < 0)
×
216
                        log_debug_errno(errno, "Failed to issue BLKFLSBUF ioctl, ignoring: %m");
×
217

218
        /* If a block size is requested then try to configure it. If that doesn't work, ignore errors, but
219
         * afterwards, let's validate what is in effect, and if it doesn't match what we want, fail */
220
        if (c->block_size != 0) {
×
221
                uint32_t ssz;
×
222

223
                if (ioctl(fd, LOOP_SET_BLOCK_SIZE, (unsigned long) c->block_size) < 0)
×
224
                        log_debug_errno(errno, "Failed to set sector size, ignoring: %m");
×
225

226
                r = blockdev_get_sector_size(fd, &ssz);
×
227
                if (r < 0)
×
228
                        return log_debug_errno(r, "Failed to read sector size: %m");
×
229
                if (ssz != c->block_size)
×
230
                        return log_debug_errno(SYNTHETIC_ERRNO(EIO), "Sector size of loopback device doesn't match what we requested, refusing.");
×
231
        }
232

233
        /* LO_FLAGS_DIRECT_IO is a flags we need to configure via explicit ioctls. */
234
        if (FLAGS_SET(c->info.lo_flags, LO_FLAGS_DIRECT_IO))
×
235
                if (ioctl(fd, LOOP_SET_DIRECT_IO, 1UL) < 0)
×
236
                        log_debug_errno(errno, "Failed to enable direct IO mode, ignoring: %m");
×
237

238
        return loop_configure_verify_direct_io(fd, c);
×
239
}
240

241
static int loop_configure(
1,866✔
242
                int nr,
243
                int open_flags,
244
                int lock_op,
245
                const struct loop_config *c,
246
                LoopDevice **ret) {
247

248
        static bool loop_configure_broken = false;
1,866✔
249

250
        _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
1,866✔
251
        _cleanup_(cleanup_clear_loop_close) int loop_with_fd = -EBADF; /* This must be declared before lock_fd. */
×
252
        _cleanup_close_ int fd = -EBADF, lock_fd = -EBADF;
3,732✔
253
        _cleanup_free_ char *node = NULL;
1,866✔
254
        uint64_t diskseq = 0;
1,866✔
255
        dev_t devno;
1,866✔
256
        int r;
1,866✔
257

258
        assert(nr >= 0);
1,866✔
259
        assert(c);
1,866✔
260
        assert(ret);
1,866✔
261

262
        if (asprintf(&node, "/dev/loop%i", nr) < 0)
1,866✔
263
                return log_oom_debug();
×
264

265
        r = sd_device_new_from_devname(&dev, node);
1,866✔
266
        if (r < 0)
1,866✔
267
                return log_debug_errno(r, "Failed to create sd_device object for \"%s\": %m", node);
×
268

269
        r = sd_device_get_devnum(dev, &devno);
1,866✔
270
        if (r < 0)
1,866✔
271
                return log_device_debug_errno(dev, r, "Failed to get devnum: %m");
×
272

273
        fd = sd_device_open(dev, O_CLOEXEC|O_NONBLOCK|O_NOCTTY|open_flags);
1,866✔
274
        if (fd < 0)
1,866✔
275
                return log_device_debug_errno(dev, fd, "Failed to open device: %m");
×
276

277
        /* Let's lock the device before we do anything. We take the BSD lock on a second, separately opened
278
         * fd for the device. udev after all watches for close() events (specifically IN_CLOSE_WRITE) on
279
         * block devices to reprobe them, hence by having a separate fd we will later close() we can ensure
280
         * we trigger udev after everything is done. If we'd lock our own fd instead and keep it open for a
281
         * long time udev would possibly never run on it again, even though the fd is unlocked, simply
282
         * because we never close() it. It also has the nice benefit we can use the _cleanup_close_ logic to
283
         * automatically release the lock, after we are done. */
284
        lock_fd = open_lock_fd(fd, LOCK_EX);
1,866✔
285
        if (lock_fd < 0)
1,866✔
286
                return log_device_debug_errno(dev, lock_fd, "Failed to acquire lock: %m");
×
287

288
        log_device_debug(dev, "Acquired exclusive lock.");
1,892✔
289

290
        /* Let's see if backing file is really unattached. Someone may already attach a backing file without
291
         * taking BSD lock. */
292
        r = loop_is_bound(fd);
1,866✔
293
        if (r < 0)
1,866✔
294
                return log_device_debug_errno(dev, r, "Failed to check if the loopback block device is bound: %m");
×
295
        if (r > 0)
1,866✔
296
                return log_device_debug_errno(dev, SYNTHETIC_ERRNO(EBUSY),
×
297
                                              "The loopback block device is already bound, ignoring.");
298

299
        /* Let's see if the device is really detached, i.e. currently has no associated partition block
300
         * devices. On various kernels (such as 5.8) it is possible to have a loopback block device that
301
         * superficially is detached but still has partition block devices associated for it. Let's then
302
         * manually remove the partitions via BLKPG, and tell the caller we did that via EUCLEAN, so they try
303
         * again. */
304
        r = block_device_remove_all_partitions(dev, fd);
1,866✔
305
        if (r < 0)
1,866✔
306
                return log_device_debug_errno(dev, r, "Failed to remove partitions on the loopback block device: %m");
×
307
        if (r > 0)
1,866✔
308
                /* Removed all partitions. Let's report this to the caller, to try again, and count this as
309
                 * an attempt. */
310
                return log_device_debug_errno(dev, SYNTHETIC_ERRNO(EUCLEAN),
×
311
                                              "Removed partitions on the loopback block device.");
312

313
        if (!loop_configure_broken) {
1,866✔
314
                if (ioctl(fd, LOOP_CONFIGURE, c) < 0) {
1,866✔
315
                        /* Do fallback only if LOOP_CONFIGURE is not supported, propagate all other errors. */
316
                        if (!ERRNO_IS_IOCTL_NOT_SUPPORTED(errno))
×
317
                                return log_device_debug_errno(dev, errno, "ioctl(LOOP_CONFIGURE) failed: %m");
×
318

319
                        loop_configure_broken = true;
×
320
                } else {
321
                        loop_with_fd = TAKE_FD(fd);
1,866✔
322

323
                        r = loop_configure_verify(loop_with_fd, c);
1,866✔
324
                        if (r < 0)
1,866✔
325
                                return log_device_debug_errno(dev, r, "Failed to verify if loopback block device is correctly configured: %m");
×
326
                        if (r == 0) {
1,866✔
327
                                /* LOOP_CONFIGURE doesn't work. Remember that. */
328
                                loop_configure_broken = true;
×
329

330
                                /* We return EBUSY here instead of retrying immediately with LOOP_SET_FD,
331
                                 * because LOOP_CLR_FD is async: if the operation cannot be executed right
332
                                 * away it just sets the autoclear flag on the device. This means there's a
333
                                 * good chance we cannot actually reuse the loopback device right-away. Hence
334
                                 * let's assume it's busy, avoid the trouble and let the calling loop call us
335
                                 * again with a new, likely unused device. */
336
                                return -EBUSY;
×
337
                        }
338
                }
339
        }
340

341
        if (loop_configure_broken) {
1,866✔
342
                if (ioctl(fd, LOOP_SET_FD, c->fd) < 0)
×
343
                        return log_device_debug_errno(dev, errno, "ioctl(LOOP_SET_FD) failed: %m");
×
344

345
                loop_with_fd = TAKE_FD(fd);
×
346

347
                r = loop_configure_fallback(loop_with_fd, c);
×
348
                if (r < 0)
×
349
                        return r;
350
        }
351

352
        r = fd_get_diskseq(loop_with_fd, &diskseq);
1,866✔
353
        if (r < 0 && r != -EOPNOTSUPP)
1,866✔
354
                return log_device_debug_errno(dev, r, "Failed to get diskseq: %m");
×
355

356
        switch (lock_op & ~LOCK_NB) {
1,866✔
357
        case LOCK_EX: /* Already in effect */
358
                break;
359
        case LOCK_SH: /* Downgrade */
1,793✔
360
                if (flock(lock_fd, lock_op) < 0)
1,793✔
361
                        return log_device_debug_errno(dev, errno, "Failed to downgrade lock level: %m");
×
362
                break;
363
        case LOCK_UN: /* Release */
×
364
                lock_fd = safe_close(lock_fd);
×
365
                break;
366
        default:
×
367
                assert_not_reached();
×
368
        }
369

370
        uint64_t device_size;
1,866✔
371
        r = blockdev_get_device_size(loop_with_fd, &device_size);
1,866✔
372
        if (r < 0)
1,866✔
373
                return log_device_debug_errno(dev, r, "Failed to get loopback device size: %m");
×
374

375
        LoopDevice *d = new(LoopDevice, 1);
1,866✔
376
        if (!d)
1,866✔
377
                return log_oom_debug();
×
378

379
        *d = (LoopDevice) {
1,866✔
380
                .n_ref = 1,
381
                .fd = TAKE_FD(loop_with_fd),
1,866✔
382
                .lock_fd = TAKE_FD(lock_fd),
1,866✔
383
                .node = TAKE_PTR(node),
1,866✔
384
                .nr = nr,
385
                .devno = devno,
386
                .dev = TAKE_PTR(dev),
1,866✔
387
                .diskseq = diskseq,
388
                .sector_size = c->block_size,
1,866✔
389
                .device_size = device_size,
390
                .created = true,
391
        };
392

393
        *ret = TAKE_PTR(d);
1,866✔
394
        return 0;
1,866✔
395
}
396

397
static int loop_device_make_internal(
4,014✔
398
                const char *path,
399
                int fd,
400
                int open_flags,
401
                uint64_t offset,
402
                uint64_t size,
403
                uint32_t sector_size,
404
                uint32_t loop_flags,
405
                int lock_op,
406
                LoopDevice **ret) {
407

408
        _cleanup_(loop_device_unrefp) LoopDevice *d = NULL;
×
409
        _cleanup_close_ int reopened_fd = -EBADF, control = -EBADF;
8,028✔
410
        _cleanup_free_ char *backing_file = NULL;
4,014✔
411
        struct loop_config config;
4,014✔
412
        int r, f_flags;
4,014✔
413
        struct stat st;
4,014✔
414

415
        assert(ret);
4,014✔
416
        assert(IN_SET(open_flags, O_RDWR, O_RDONLY));
4,014✔
417

418
        if (fstat(ASSERT_FD(fd), &st) < 0)
4,014✔
419
                return -errno;
×
420

421
        if (S_ISBLK(st.st_mode)) {
4,014✔
422
                if (offset == 0 && IN_SET(size, 0, UINT64_MAX))
1✔
423
                        /* If this is already a block device and we are supposed to cover the whole of it
424
                         * then store an fd to the original open device node — and do not actually create an
425
                         * unnecessary loopback device for it. */
426
                        return loop_device_open_from_fd(fd, open_flags, lock_op, ret);
×
427
        } else {
428
                r = stat_verify_regular(&st);
4,013✔
429
                if (r < 0)
4,013✔
430
                        return r;
431
        }
432

433
        if (path) {
1,886✔
434
                r = path_make_absolute_cwd(path, &backing_file);
1,812✔
435
                if (r < 0)
1,812✔
436
                        return r;
437

438
                path_simplify(backing_file);
1,812✔
439
        } else {
440
                r = fd_get_path(fd, &backing_file);
74✔
441
                if (r < 0)
74✔
442
                        return r;
443
        }
444

445
        f_flags = fcntl(fd, F_GETFL);
1,886✔
446
        if (f_flags < 0)
1,886✔
447
                return -errno;
×
448

449
        if (FLAGS_SET(loop_flags, LO_FLAGS_DIRECT_IO) != FLAGS_SET(f_flags, O_DIRECT)) {
1,886✔
450
                /* If LO_FLAGS_DIRECT_IO is requested, then make sure we have the fd open with O_DIRECT, as
451
                 * that's required. Conversely, if it's off require that O_DIRECT is off too (that's because
452
                 * new kernels will implicitly enable LO_FLAGS_DIRECT_IO if O_DIRECT is set).
453
                 *
454
                 * Our intention here is that LO_FLAGS_DIRECT_IO is the primary knob, and O_DIRECT derived
455
                 * from that automatically. */
456

457
                reopened_fd = fd_reopen(fd, (FLAGS_SET(loop_flags, LO_FLAGS_DIRECT_IO) ? O_DIRECT : 0)|O_CLOEXEC|O_NONBLOCK|open_flags);
73✔
458
                if (reopened_fd < 0) {
73✔
459
                        if (!FLAGS_SET(loop_flags, LO_FLAGS_DIRECT_IO))
×
460
                                return log_debug_errno(reopened_fd, "Failed to reopen file descriptor without O_DIRECT: %m");
×
461

462
                        /* Some file systems might not support O_DIRECT, let's gracefully continue without it then. */
463
                        log_debug_errno(reopened_fd, "Failed to enable O_DIRECT for backing file descriptor for loopback device. Continuing without.");
×
464
                        loop_flags &= ~LO_FLAGS_DIRECT_IO;
×
465
                } else
466
                        fd = reopened_fd; /* From now on, operate on our new O_DIRECT fd */
467
        }
468

469
        control = open("/dev/loop-control", O_RDWR|O_CLOEXEC|O_NOCTTY|O_NONBLOCK);
1,886✔
470
        if (control < 0)
1,886✔
471
                return -errno;
20✔
472

473
        if (sector_size == 0)
1,866✔
474
                /* If no sector size is specified, default to the classic default */
475
                sector_size = 512;
×
476
        else if (sector_size == UINT32_MAX) {
1,866✔
477

478
                if (S_ISBLK(st.st_mode))
1,793✔
479
                        /* If the sector size is specified as UINT32_MAX we'll propagate the sector size of
480
                         * the underlying block device. */
481
                        r = blockdev_get_sector_size(fd, &sector_size);
×
482
                else {
483
                        _cleanup_close_ int non_direct_io_fd = -EBADF;
4,014✔
484
                        int probe_fd;
1,793✔
485

486
                        assert(S_ISREG(st.st_mode));
1,793✔
487

488
                        /* If sector size is specified as UINT32_MAX, we'll try to probe the right sector
489
                         * size of the image in question by looking for the GPT partition header at various
490
                         * offsets. This of course only works if the image already has a disk label.
491
                         *
492
                         * So here we actually want to read the file contents ourselves. This is quite likely
493
                         * not going to work if we managed to enable O_DIRECT, because in such a case there
494
                         * are some pretty strict alignment requirements to offset, size and target, but
495
                         * there's no way to query what alignment specifically is actually required. Hence,
496
                         * let's avoid the mess, and temporarily open an fd without O_DIRECT for the probing
497
                         * logic. */
498

499
                        if (FLAGS_SET(loop_flags, LO_FLAGS_DIRECT_IO)) {
1,793✔
500
                                non_direct_io_fd = fd_reopen(fd, O_RDONLY|O_CLOEXEC|O_NONBLOCK);
1,792✔
501
                                if (non_direct_io_fd < 0)
1,792✔
502
                                        return non_direct_io_fd;
×
503

504
                                probe_fd = non_direct_io_fd;
505
                        } else
506
                                probe_fd = fd;
507

508
                        r = probe_sector_size(probe_fd, &sector_size);
1,793✔
509
                }
510
                if (r < 0)
1,793✔
511
                        return r;
512
        }
513

514
        config = (struct loop_config) {
3,732✔
515
                .fd = fd,
516
                .block_size = sector_size,
517
                .info = {
518
                        /* Use the specified flags, but configure the read-only flag from the open flags, and force autoclear */
519
                        .lo_flags = (loop_flags & ~LO_FLAGS_READ_ONLY) | ((open_flags & O_ACCMODE) == O_RDONLY ? LO_FLAGS_READ_ONLY : 0) | LO_FLAGS_AUTOCLEAR,
1,866✔
520
                        .lo_offset = offset,
521
                        .lo_sizelimit = size == UINT64_MAX ? 0 : size,
1,866✔
522
                },
523
        };
524

525
        /* Loop around LOOP_CTL_GET_FREE, since at the moment we attempt to open the returned device it might
526
         * be gone already, taken by somebody else racing against us. */
527
        for (unsigned n_attempts = 0;;) {
1,866✔
528
                usec_t usec;
1,866✔
529
                int nr;
1,866✔
530

531
                /* Let's take a lock on the control device first. On a busy system, where many programs
532
                 * attempt to allocate a loopback device at the same time, we might otherwise keep looping
533
                 * around relatively heavy operations: asking for a free loopback device, then opening it,
534
                 * validating it, attaching something to it. Let's serialize this whole operation, to make
535
                 * unnecessary busywork less likely. Note that this is just something we do to optimize our
536
                 * own code (and whoever else decides to use LOCK_EX locks for this), taking this lock is not
537
                 * necessary, it just means it's less likely we have to iterate through this loop again and
538
                 * again if our own code races against our own code.
539
                 *
540
                 * Note: our lock protocol is to take the /dev/loop-control lock first, and the block device
541
                 * lock second, if both are taken, and always in this order, to avoid ABBA locking issues. */
542
                if (flock(control, LOCK_EX) < 0)
1,866✔
543
                        return -errno;
×
544

545
                nr = ioctl(control, LOOP_CTL_GET_FREE);
1,866✔
546
                if (nr < 0)
1,866✔
547
                        return -errno;
×
548

549
                r = loop_configure(nr, open_flags, lock_op, &config, &d);
1,866✔
550
                if (r >= 0)
1,866✔
551
                        break;
552

553
                /* -ENODEV or friends: Somebody might've gotten the same number from the kernel, used the
554
                 * device, and called LOOP_CTL_REMOVE on it. Let's retry with a new number.
555
                 * -EBUSY: a file descriptor is already bound to the loopback block device.
556
                 * -EUCLEAN: some left-over partition devices that were cleaned up.
557
                 * -ENOANO: we tried to use LO_FLAGS_DIRECT_IO but the kernel rejected it. */
558
                if (!ERRNO_IS_DEVICE_ABSENT(r) && !IN_SET(r, -EBUSY, -EUCLEAN, -ENOANO))
×
559
                        return r;
560

561
                /* OK, this didn't work, let's try again a bit later, but first release the lock on the
562
                 * control device */
563
                if (flock(control, LOCK_UN) < 0)
×
564
                        return -errno;
×
565

566
                if (++n_attempts >= 64) /* Give up eventually */
×
567
                        return -EBUSY;
568

569
                /* If we failed to enable direct IO mode, let's retry without it. We restart the process as
570
                 * on some combination of kernel version and storage filesystem, the kernel is very unhappy
571
                 * about a failed DIRECT_IO enablement and throws I/O errors. */
572
                if (r == -ENOANO && FLAGS_SET(config.info.lo_flags, LO_FLAGS_DIRECT_IO)) {
×
573
                        config.info.lo_flags &= ~LO_FLAGS_DIRECT_IO;
×
574
                        open_flags &= ~O_DIRECT;
×
575

576
                        int non_direct_io_fd = fd_reopen(config.fd, O_CLOEXEC|O_NONBLOCK|open_flags);
×
577
                        if (non_direct_io_fd < 0)
×
578
                                return log_debug_errno(
×
579
                                                non_direct_io_fd,
580
                                                "Failed to reopen file descriptor without O_DIRECT: %m");
581

582
                        safe_close(reopened_fd);
×
583
                        fd = config.fd = /* For cleanups */ reopened_fd = non_direct_io_fd;
×
584
                }
585

586
                /* Wait some random time, to make collision less likely. Let's pick a random time in the
587
                 * range 0ms…250ms, linearly scaled by the number of failed attempts. */
588
                usec = random_u64_range(UINT64_C(10) * USEC_PER_MSEC +
×
589
                                        UINT64_C(240) * USEC_PER_MSEC * n_attempts/64);
×
590
                log_debug("Trying again after %s.", FORMAT_TIMESPAN(usec, USEC_PER_MSEC));
×
591
                (void) usleep_safe(usec);
×
592
        }
593

594
        d->backing_file = TAKE_PTR(backing_file);
1,866✔
595
        d->backing_inode = st.st_ino;
1,866✔
596
        d->backing_devno = st.st_dev;
1,866✔
597

598
        log_debug("Successfully acquired %s, devno=%u:%u, nr=%i, diskseq=%" PRIu64,
1,866✔
599
                  d->node,
600
                  major(d->devno), minor(d->devno),
601
                  d->nr,
602
                  d->diskseq);
603

604
        *ret = TAKE_PTR(d);
1,866✔
605
        return 0;
1,866✔
606
}
607

608
static uint32_t loop_flags_mangle(uint32_t loop_flags) {
4,014✔
609
        int r;
4,014✔
610

611
        r = getenv_bool("SYSTEMD_LOOP_DIRECT_IO");
4,014✔
612
        if (r < 0 && r != -ENXIO)
4,014✔
613
                log_debug_errno(r, "Failed to parse $SYSTEMD_LOOP_DIRECT_IO, ignoring: %m");
×
614

615
        return UPDATE_FLAG(loop_flags, LO_FLAGS_DIRECT_IO, r != 0); /* Turn on LO_FLAGS_DIRECT_IO by default, unless explicitly configured to off. */
4,014✔
616
}
617

618
int loop_device_make(
73✔
619
                int fd,
620
                int open_flags,
621
                uint64_t offset,
622
                uint64_t size,
623
                uint32_t sector_size,
624
                uint32_t loop_flags,
625
                int lock_op,
626
                LoopDevice **ret) {
627

628
        assert(fd >= 0);
73✔
629
        assert(ret);
73✔
630

631
        return loop_device_make_internal(
73✔
632
                        NULL,
633
                        fd,
634
                        open_flags,
635
                        offset,
636
                        size,
637
                        sector_size,
638
                        loop_flags_mangle(loop_flags),
639
                        lock_op,
640
                        ret);
641
}
642

643
int loop_device_make_by_path_at(
3,941✔
644
                int dir_fd,
645
                const char *path,
646
                int open_flags,
647
                uint32_t sector_size,
648
                uint32_t loop_flags,
649
                int lock_op,
650
                LoopDevice **ret) {
651

652
        int r, basic_flags, direct_flags, rdwr_flags;
3,941✔
653
        _cleanup_close_ int fd = -EBADF;
3,941✔
654
        bool direct = false;
3,941✔
655

656
        assert(dir_fd >= 0 || dir_fd == AT_FDCWD);
3,941✔
657
        assert(path);
3,941✔
658
        assert(ret);
3,941✔
659
        assert(open_flags < 0 || IN_SET(open_flags, O_RDWR, O_RDONLY));
3,941✔
660

661
        /* Passing < 0 as open_flags here means we'll try to open the device writable if we can, retrying
662
         * read-only if we cannot. */
663

664
        loop_flags = loop_flags_mangle(loop_flags);
3,941✔
665

666
        /* Let's open with O_DIRECT if we can. But not all file systems support that, hence fall back to
667
         * non-O_DIRECT mode automatically, if it fails. */
668

669
        basic_flags = O_CLOEXEC|O_NONBLOCK|O_NOCTTY;
3,941✔
670
        direct_flags = FLAGS_SET(loop_flags, LO_FLAGS_DIRECT_IO) ? O_DIRECT : 0;
3,941✔
671
        rdwr_flags = open_flags >= 0 ? open_flags : O_RDWR;
3,941✔
672

673
        fd = xopenat(dir_fd, path, basic_flags|direct_flags|rdwr_flags);
3,941✔
674
        if (fd < 0 && direct_flags != 0) /* If we had O_DIRECT on, and things failed with that, let's immediately try again without */
3,941✔
675
                fd = xopenat(dir_fd, path, basic_flags|rdwr_flags);
2,129✔
676
        else
677
                direct = direct_flags != 0;
×
678
        if (fd < 0) {
3,941✔
679
                r = fd;
1✔
680

681
                /* Retry read-only? */
682
                if (open_flags >= 0 || !(ERRNO_IS_PRIVILEGE(r) || r == -EROFS))
1✔
683
                        return r;
684

685
                fd = xopenat(dir_fd, path, basic_flags|direct_flags|O_RDONLY);
×
686
                if (fd < 0 && direct_flags != 0) /* as above */
×
687
                        fd = xopenat(dir_fd, path, basic_flags|O_RDONLY);
×
688
                else
689
                        direct = direct_flags != 0;
×
690
                if (fd < 0)
×
691
                        return r; /* Propagate original error */
692

693
                open_flags = O_RDONLY;
694
        } else if (open_flags < 0)
3,940✔
695
                open_flags = O_RDWR;
74✔
696

697
        log_debug("Opened '%s' in %s access mode%s, with O_DIRECT %s%s.",
15,586✔
698
                  path,
699
                  open_flags == O_RDWR ? "O_RDWR" : "O_RDONLY",
700
                  open_flags != rdwr_flags ? " (O_RDWR was requested but not allowed)" : "",
701
                  direct ? "enabled" : "disabled",
702
                  direct != (direct_flags != 0) ? " (O_DIRECT was requested but not supported)" : "");
703

704
        return loop_device_make_internal(
3,940✔
705
                        dir_fd == AT_FDCWD ? path : NULL,
706
                        fd,
707
                        open_flags,
708
                        /* offset = */ 0,
709
                        /* size = */ 0,
710
                        sector_size,
711
                        loop_flags,
712
                        lock_op,
713
                        ret);
714
}
715

716
int loop_device_make_by_path_memory(
1✔
717
                const char *path,
718
                int open_flags,
719
                uint32_t sector_size,
720
                uint32_t loop_flags,
721
                int lock_op,
722
                LoopDevice **ret) {
723

724
        _cleanup_close_ int fd = -EBADF, mfd = -EBADF;
1✔
725
        _cleanup_free_ char *fn = NULL;
1✔
726
        struct stat st;
1✔
727
        int r;
1✔
728

729
        assert(path);
1✔
730
        assert(IN_SET(open_flags, O_RDWR, O_RDONLY));
1✔
731
        assert(ret);
1✔
732

733
        loop_flags &= ~LO_FLAGS_DIRECT_IO; /* memfds don't support O_DIRECT, hence LO_FLAGS_DIRECT_IO can't be used either */
1✔
734

735
        fd = open(path, O_CLOEXEC|O_NONBLOCK|O_NOCTTY|O_RDONLY);
1✔
736
        if (fd < 0)
1✔
737
                return -errno;
×
738

739
        if (fstat(fd, &st) < 0)
1✔
740
                return -errno;
×
741

742
        if (!S_ISREG(st.st_mode) && !S_ISBLK(st.st_mode))
1✔
743
                return -EBADF;
744

745
        r = path_extract_filename(path, &fn);
1✔
746
        if (r < 0)
1✔
747
                return r;
748

749
        mfd = memfd_clone_fd(fd, fn, open_flags|O_CLOEXEC);
1✔
750
        if (mfd < 0)
1✔
751
                return mfd;
752

753
        fd = safe_close(fd); /* Let's close the original early */
1✔
754

755
        return loop_device_make_internal(NULL, mfd, open_flags, 0, 0, sector_size, loop_flags, lock_op, ret);
1✔
756
}
757

758
static LoopDevice* loop_device_free(LoopDevice *d) {
1,813✔
759
        _cleanup_close_ int control = -EBADF;
1,813✔
760
        int r;
1,813✔
761

762
        if (!d)
1,813✔
763
                return NULL;
764

765
        /* Release any lock we might have on the device first. We want to open+lock the /dev/loop-control
766
         * device below, but our lock protocol says that if both control and block device locks are taken,
767
         * the control lock needs to be taken first, the block device lock second — in order to avoid ABBA
768
         * locking issues. Moreover, we want to issue LOOP_CLR_FD on the block device further down, and that
769
         * would fail if we had another fd open to the device. */
770
        d->lock_fd = safe_close(d->lock_fd);
1,813✔
771

772
        /* Let's open the control device early, and lock it, so that we can release our block device and
773
         * delete it in a synchronized fashion, and allocators won't needlessly see the block device as free
774
         * while we are about to delete it. */
775
        if (!LOOP_DEVICE_IS_FOREIGN(d) && !d->relinquished) {
1,813✔
776
                control = open("/dev/loop-control", O_RDWR|O_CLOEXEC|O_NOCTTY|O_NONBLOCK);
1,671✔
777
                if (control < 0)
1,671✔
778
                        log_debug_errno(errno, "Failed to open loop control device, cannot remove loop device '%s', ignoring: %m", strna(d->node));
×
779
                else if (flock(control, LOCK_EX) < 0)
1,671✔
780
                        log_debug_errno(errno, "Failed to lock loop control device, ignoring: %m");
×
781
        }
782

783
        /* Then let's release the loopback block device */
784
        if (d->fd >= 0) {
1,813✔
785
                /* Implicitly sync the device, since otherwise in-flight blocks might not get written */
786
                if (fsync(d->fd) < 0)
1,813✔
787
                        log_debug_errno(errno, "Failed to sync loop block device, ignoring: %m");
×
788

789
                if (!LOOP_DEVICE_IS_FOREIGN(d) && !d->relinquished) {
1,813✔
790
                        /* We are supposed to clear the loopback device. Let's do this synchronously: lock
791
                         * the device, manually remove all partitions and then clear it. This should ensure
792
                         * udev doesn't concurrently access the devices, and we can be reasonably sure that
793
                         * once we are done here the device is cleared and all its partition children
794
                         * removed. Note that we lock our primary device fd here (and not a separate locking
795
                         * fd, as we do during allocation, since we want to keep the lock all the way through
796
                         * the LOOP_CLR_FD, but that call would fail if we had more than one fd open.) */
797

798
                        if (flock(d->fd, LOCK_EX) < 0)
1,671✔
799
                                log_debug_errno(errno, "Failed to lock loop block device, ignoring: %m");
×
800

801
                        r = block_device_remove_all_partitions(d->dev, d->fd);
1,671✔
802
                        if (r < 0)
1,671✔
803
                                log_debug_errno(r, "Failed to remove partitions of loopback block device, ignoring: %m");
×
804

805
                        if (ioctl(d->fd, LOOP_CLR_FD) < 0)
1,671✔
806
                                log_debug_errno(errno, "Failed to clear loop device, ignoring: %m");
×
807
                }
808

809
                safe_close(d->fd);
1,813✔
810
        }
811

812
        /* Now that the block device is released, let's also try to remove it */
813
        if (control >= 0) {
1,813✔
814
                useconds_t delay = 5 * USEC_PER_MSEC;  /* A total delay of 5090 ms between 39 attempts,
815
                                                        * (4*5 + 5*10 + 5*20 + … + 3*640) = 5090. */
816

817
                for (unsigned attempt = 1;; attempt++) {
38✔
818
                        if (ioctl(control, LOOP_CTL_REMOVE, d->nr) >= 0)
1,709✔
819
                                break;
820
                        if (errno != EBUSY || attempt > 38) {
38✔
821
                                log_debug_errno(errno, "Failed to remove device %s: %m", strna(d->node));
×
822
                                break;
823
                        }
824
                        if (attempt % 5 == 0) {
38✔
825
                                log_debug("Device is still busy after %u attempts…", attempt);
3✔
826
                                delay *= 2;
3✔
827
                        }
828

829
                        (void) usleep_safe(delay);
38✔
830
                }
831
        }
832

833
        free(d->node);
1,813✔
834
        sd_device_unref(d->dev);
1,813✔
835
        free(d->backing_file);
1,813✔
836
        return mfree(d);
1,813✔
837
}
838

839
DEFINE_TRIVIAL_REF_UNREF_FUNC(LoopDevice, loop_device, loop_device_free);
5,610✔
840

841
void loop_device_relinquish(LoopDevice *d) {
139✔
842
        assert(d);
139✔
843

844
        /* Don't attempt to clean up the loop device anymore from this point on. Leave the clean-ing up to the kernel
845
         * itself, using the loop device "auto-clear" logic we already turned on when creating the device. */
846

847
        d->relinquished = true;
139✔
848
}
139✔
849

850
void loop_device_unrelinquish(LoopDevice *d) {
17✔
851
        assert(d);
17✔
852
        d->relinquished = false;
17✔
853
}
17✔
854

855
int loop_device_open(
20✔
856
                sd_device *dev,
857
                int open_flags,
858
                int lock_op,
859
                LoopDevice **ret) {
860

861
        _cleanup_close_ int fd = -EBADF, lock_fd = -EBADF;
20✔
862
        _cleanup_free_ char *node = NULL, *backing_file = NULL;
20✔
863
        dev_t devnum, backing_devno = 0;
20✔
864
        struct loop_info64 info;
20✔
865
        ino_t backing_inode = 0;
20✔
866
        uint64_t diskseq = 0;
20✔
867
        LoopDevice *d;
20✔
868
        const char *s;
20✔
869
        int r, nr = -1;
20✔
870

871
        assert(dev);
20✔
872
        assert(IN_SET(open_flags, O_RDWR, O_RDONLY));
20✔
873
        assert(ret);
20✔
874

875
        /* Even if fd is provided through the argument in loop_device_open_from_fd(), we reopen the inode
876
         * here, instead of keeping just a dup() clone of it around, since we want to ensure that the
877
         * O_DIRECT flag of the handle we keep is off, we have our own file index, and have the right
878
         * read/write mode in effect. */
879
        fd = sd_device_open(dev, O_CLOEXEC|O_NONBLOCK|O_NOCTTY|open_flags);
20✔
880
        if (fd < 0)
20✔
881
                return fd;
882

883
        if ((lock_op & ~LOCK_NB) != LOCK_UN) {
20✔
884
                lock_fd = open_lock_fd(fd, lock_op);
20✔
885
                if (lock_fd < 0)
20✔
886
                        return lock_fd;
887
        }
888

889
        if (ioctl(fd, LOOP_GET_STATUS64, &info) >= 0) {
20✔
890
#if HAVE_VALGRIND_MEMCHECK_H
891
                /* Valgrind currently doesn't know LOOP_GET_STATUS64. Remove this once it does */
892
                VALGRIND_MAKE_MEM_DEFINED(&info, sizeof(info));
893
#endif
894
                nr = info.lo_number;
20✔
895

896
                if (sd_device_get_sysattr_value(dev, "loop/backing_file", &s) >= 0) {
20✔
897
                        backing_file = strdup(s);
12✔
898
                        if (!backing_file)
12✔
899
                                return -ENOMEM;
900
                }
901

902
                backing_devno = info.lo_device;
20✔
903
                backing_inode = info.lo_inode;
20✔
904
        }
905

906
        r = fd_get_diskseq(fd, &diskseq);
20✔
907
        if (r < 0 && r != -EOPNOTSUPP)
20✔
908
                return r;
909

910
        uint32_t sector_size;
20✔
911
        r = blockdev_get_sector_size(fd, &sector_size);
20✔
912
        if (r < 0)
20✔
913
                return r;
914

915
        uint64_t device_size;
20✔
916
        r = blockdev_get_device_size(fd, &device_size);
20✔
917
        if (r < 0)
20✔
918
                return r;
919

920
        r = sd_device_get_devnum(dev, &devnum);
20✔
921
        if (r < 0)
20✔
922
                return r;
923

924
        r = sd_device_get_devname(dev, &s);
20✔
925
        if (r < 0)
20✔
926
                return r;
927

928
        node = strdup(s);
20✔
929
        if (!node)
20✔
930
                return -ENOMEM;
931

932
        d = new(LoopDevice, 1);
20✔
933
        if (!d)
20✔
934
                return -ENOMEM;
935

936
        *d = (LoopDevice) {
40✔
937
                .n_ref = 1,
938
                .fd = TAKE_FD(fd),
20✔
939
                .lock_fd = TAKE_FD(lock_fd),
20✔
940
                .nr = nr,
941
                .node = TAKE_PTR(node),
20✔
942
                .dev = sd_device_ref(dev),
20✔
943
                .backing_file = TAKE_PTR(backing_file),
20✔
944
                .backing_inode = backing_inode,
945
                .backing_devno = backing_devno,
946
                .relinquished = true, /* It's not ours, don't try to destroy it when this object is freed */
947
                .devno = devnum,
948
                .diskseq = diskseq,
949
                .sector_size = sector_size,
950
                .device_size = device_size,
951
                .created = false,
952
        };
953

954
        *ret = d;
20✔
955
        return 0;
20✔
956
}
957

958
int loop_device_open_from_fd(
2✔
959
                int fd,
960
                int open_flags,
961
                int lock_op,
962
                LoopDevice **ret) {
963

964
        _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
2✔
965
        int r;
2✔
966

967
        r = block_device_new_from_fd(ASSERT_FD(fd), 0, &dev);
2✔
968
        if (r < 0)
2✔
969
                return r;
970

971
        return loop_device_open(dev, open_flags, lock_op, ret);
2✔
972
}
973

974
int loop_device_open_from_path(
×
975
                const char *path,
976
                int open_flags,
977
                int lock_op,
978
                LoopDevice **ret) {
979

980
        _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
×
981
        int r;
×
982

983
        assert(path);
×
984

985
        r = block_device_new_from_path(path, 0, &dev);
×
986
        if (r < 0)
×
987
                return r;
988

989
        return loop_device_open(dev, open_flags, lock_op, ret);
×
990
}
991

992
static int resize_partition(int partition_fd, uint64_t offset, uint64_t size) {
×
993
        char sysfs[STRLEN("/sys/dev/block/:/partition") + 2*DECIMAL_STR_MAX(dev_t) + 1];
×
994
        _cleanup_free_ char *buffer = NULL;
×
995
        uint64_t current_offset, current_size, partno;
×
996
        _cleanup_close_ int whole_fd = -EBADF;
×
997
        struct stat st;
×
998
        dev_t devno;
×
999
        int r;
×
1000

1001
        /* Resizes the partition the loopback device refer to (assuming it refers to one instead of an actual
1002
         * loopback device), and changes the offset, if needed. This is a fancy wrapper around
1003
         * BLKPG_RESIZE_PARTITION. */
1004

1005
        if (fstat(ASSERT_FD(partition_fd), &st) < 0)
×
1006
                return -errno;
×
1007

1008
        assert(S_ISBLK(st.st_mode));
×
1009

1010
        xsprintf(sysfs, "/sys/dev/block/" DEVNUM_FORMAT_STR "/partition", DEVNUM_FORMAT_VAL(st.st_rdev));
×
1011
        r = read_one_line_file(sysfs, &buffer);
×
1012
        if (r == -ENOENT) /* not a partition, cannot resize */
×
1013
                return -ENOTTY;
1014
        if (r < 0)
×
1015
                return r;
1016
        r = safe_atou64(buffer, &partno);
×
1017
        if (r < 0)
×
1018
                return r;
1019

1020
        xsprintf(sysfs, "/sys/dev/block/" DEVNUM_FORMAT_STR "/start", DEVNUM_FORMAT_VAL(st.st_rdev));
×
1021

1022
        buffer = mfree(buffer);
×
1023
        r = read_one_line_file(sysfs, &buffer);
×
1024
        if (r < 0)
×
1025
                return r;
1026
        r = safe_atou64(buffer, &current_offset);
×
1027
        if (r < 0)
×
1028
                return r;
1029
        if (current_offset > UINT64_MAX/512U)
×
1030
                return -EINVAL;
1031
        current_offset *= 512U;
×
1032

1033
        r = blockdev_get_device_size(partition_fd, &current_size);
×
1034
        if (r < 0)
×
1035
                return r;
1036

1037
        if (size == UINT64_MAX && offset == UINT64_MAX)
×
1038
                return 0;
1039
        if (current_size == size && current_offset == offset)
×
1040
                return 0;
1041

1042
        xsprintf(sysfs, "/sys/dev/block/" DEVNUM_FORMAT_STR "/../dev", DEVNUM_FORMAT_VAL(st.st_rdev));
×
1043

1044
        buffer = mfree(buffer);
×
1045
        r = read_one_line_file(sysfs, &buffer);
×
1046
        if (r < 0)
×
1047
                return r;
1048
        r = parse_devnum(buffer, &devno);
×
1049
        if (r < 0)
×
1050
                return r;
1051

1052
        whole_fd = r = device_open_from_devnum(S_IFBLK, devno, O_RDWR|O_CLOEXEC|O_NONBLOCK|O_NOCTTY, NULL);
×
1053
        if (r < 0)
×
1054
                return r;
1055

1056
        return block_device_resize_partition(
×
1057
                        whole_fd,
1058
                        partno,
1059
                        offset == UINT64_MAX ? current_offset : offset,
1060
                        size == UINT64_MAX ? current_size : size);
1061
}
1062

1063
int loop_device_refresh_size(LoopDevice *d, uint64_t offset, uint64_t size) {
5✔
1064
        struct loop_info64 info;
5✔
1065

1066
        assert(d);
5✔
1067
        assert(d->fd >= 0);
5✔
1068

1069
        /* Changes the offset/start of the loop device relative to the beginning of the underlying file or
1070
         * block device. If this loop device actually refers to a partition and not a loopback device, we'll
1071
         * try to adjust the partition offsets instead.
1072
         *
1073
         * If either offset or size is UINT64_MAX we won't change that parameter. */
1074

1075
        if (d->nr < 0) /* not a loopback device */
5✔
1076
                return resize_partition(d->fd, offset, size);
×
1077

1078
        if (ioctl(d->fd, LOOP_GET_STATUS64, &info) < 0)
5✔
1079
                return -errno;
×
1080

1081
#if HAVE_VALGRIND_MEMCHECK_H
1082
        /* Valgrind currently doesn't know LOOP_GET_STATUS64. Remove this once it does */
1083
        VALGRIND_MAKE_MEM_DEFINED(&info, sizeof(info));
1084
#endif
1085

1086
        if (size == UINT64_MAX && offset == UINT64_MAX)
5✔
1087
                return 0;
1088
        if (info.lo_sizelimit == size && info.lo_offset == offset)
5✔
1089
                return 0;
1090

1091
        if (size != UINT64_MAX)
5✔
1092
                info.lo_sizelimit = size;
5✔
1093
        if (offset != UINT64_MAX)
5✔
1094
                info.lo_offset = offset;
×
1095

1096
        return RET_NERRNO(ioctl(d->fd, LOOP_SET_STATUS64, &info));
5✔
1097
}
1098

1099
int loop_device_flock(LoopDevice *d, int operation) {
126✔
1100
        assert(IN_SET(operation & ~LOCK_NB, LOCK_UN, LOCK_SH, LOCK_EX));
126✔
1101
        assert(d);
126✔
1102

1103
        /* When unlocking just close the lock fd */
1104
        if ((operation & ~LOCK_NB) == LOCK_UN) {
126✔
1105
                d->lock_fd = safe_close(d->lock_fd);
124✔
1106
                return 0;
124✔
1107
        }
1108

1109
        /* If we had no lock fd so far, create one and lock it right-away */
1110
        if (d->lock_fd < 0) {
2✔
1111
                d->lock_fd = open_lock_fd(ASSERT_FD(d->fd), operation);
1✔
1112
                if (d->lock_fd < 0)
1✔
1113
                        return d->lock_fd;
1114

1115
                return 0;
1✔
1116
        }
1117

1118
        /* Otherwise change the current lock mode on the existing fd */
1119
        return RET_NERRNO(flock(d->lock_fd, operation));
1✔
1120
}
1121

1122
int loop_device_sync(LoopDevice *d) {
38✔
1123
        assert(d);
38✔
1124

1125
        /* We also do this implicitly in loop_device_unref(). Doing this explicitly here has the benefit that
1126
         * we can check the return value though. */
1127

1128
        return RET_NERRNO(fsync(ASSERT_FD(d->fd)));
38✔
1129
}
1130

1131
int loop_device_set_autoclear(LoopDevice *d, bool autoclear) {
7✔
1132
        struct loop_info64 info;
7✔
1133

1134
        assert(d);
7✔
1135

1136
        if (ioctl(ASSERT_FD(d->fd), LOOP_GET_STATUS64, &info) < 0)
7✔
1137
                return -errno;
×
1138

1139
        if (autoclear == FLAGS_SET(info.lo_flags, LO_FLAGS_AUTOCLEAR))
7✔
1140
                return 0;
1141

1142
        SET_FLAG(info.lo_flags, LO_FLAGS_AUTOCLEAR, autoclear);
7✔
1143

1144
        if (ioctl(d->fd, LOOP_SET_STATUS64, &info) < 0)
7✔
1145
                return -errno;
×
1146

1147
        return 1;
1148
}
1149

1150
int loop_device_set_filename(LoopDevice *d, const char *name) {
3✔
1151
        struct loop_info64 info;
3✔
1152

1153
        assert(d);
3✔
1154

1155
        /* Sets the .lo_file_name of the loopback device. This is supposed to contain the path to the file
1156
         * backing the block device, but is actually just a free-form string you can pass to the kernel. Most
1157
         * tools that actually care for the backing file path use the sysfs attribute file loop/backing_file
1158
         * which is a kernel generated string, subject to file system namespaces and such.
1159
         *
1160
         * .lo_file_name is useful since userspace can select it freely when creating a loopback block
1161
         * device, and we can use it for /dev/disk/by-loop-ref/ symlinks, and similar, so that apps can
1162
         * recognize their own loopback files. */
1163

1164
        if (name && strlen(name) >= sizeof(info.lo_file_name))
3✔
1165
                return -ENOBUFS;
3✔
1166

1167
        if (ioctl(ASSERT_FD(d->fd), LOOP_GET_STATUS64, &info) < 0)
3✔
1168
                return -errno;
×
1169

1170
        if (strneq((char*) info.lo_file_name, strempty(name), sizeof(info.lo_file_name)))
3✔
1171
                return 0;
1172

1173
        if (name) {
3✔
1174
                strncpy((char*) info.lo_file_name, name, sizeof(info.lo_file_name)-1);
3✔
1175
                info.lo_file_name[sizeof(info.lo_file_name)-1] = 0;
3✔
1176
        } else
1177
                memzero(info.lo_file_name, sizeof(info.lo_file_name));
×
1178

1179
        if (ioctl(d->fd, LOOP_SET_STATUS64, &info) < 0)
3✔
1180
                return -errno;
×
1181

1182
        return 1;
1183
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc