1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_IOCTL_H
3 #define _BCACHEFS_IOCTL_H
5 #include <linux/uuid.h>
7 #include "bcachefs_format.h"
8 #include "bkey_types.h"
11 * Flags common to multiple ioctls:
13 #define BCH_FORCE_IF_DATA_LOST (1 << 0)
14 #define BCH_FORCE_IF_METADATA_LOST (1 << 1)
15 #define BCH_FORCE_IF_DATA_DEGRADED (1 << 2)
16 #define BCH_FORCE_IF_METADATA_DEGRADED (1 << 3)
18 #define BCH_FORCE_IF_LOST \
19 (BCH_FORCE_IF_DATA_LOST| \
20 BCH_FORCE_IF_METADATA_LOST)
21 #define BCH_FORCE_IF_DEGRADED \
22 (BCH_FORCE_IF_DATA_DEGRADED| \
23 BCH_FORCE_IF_METADATA_DEGRADED)
26 * If cleared, ioctl that refer to a device pass it as a pointer to a pathname
27 * (e.g. /dev/sda1); if set, the dev field is the device's index within the
30 #define BCH_BY_INDEX (1 << 4)
33 * For BCH_IOCTL_READ_SUPER: get superblock of a specific device, not filesystem
36 #define BCH_READ_DEV (1 << 5)
38 /* global control dev: */
40 /* These are currently broken, and probably unnecessary: */
42 #define BCH_IOCTL_ASSEMBLE _IOW(0xbc, 1, struct bch_ioctl_assemble)
43 #define BCH_IOCTL_INCREMENTAL _IOW(0xbc, 2, struct bch_ioctl_incremental)
45 struct bch_ioctl_assemble {
52 struct bch_ioctl_incremental {
59 /* filesystem ioctls: */
61 #define BCH_IOCTL_QUERY_UUID _IOR(0xbc, 1, struct bch_ioctl_query_uuid)
63 /* These only make sense when we also have incremental assembly */
65 #define BCH_IOCTL_START _IOW(0xbc, 2, struct bch_ioctl_start)
66 #define BCH_IOCTL_STOP _IO(0xbc, 3)
69 #define BCH_IOCTL_DISK_ADD _IOW(0xbc, 4, struct bch_ioctl_disk)
70 #define BCH_IOCTL_DISK_REMOVE _IOW(0xbc, 5, struct bch_ioctl_disk)
71 #define BCH_IOCTL_DISK_ONLINE _IOW(0xbc, 6, struct bch_ioctl_disk)
72 #define BCH_IOCTL_DISK_OFFLINE _IOW(0xbc, 7, struct bch_ioctl_disk)
73 #define BCH_IOCTL_DISK_SET_STATE _IOW(0xbc, 8, struct bch_ioctl_disk_set_state)
74 #define BCH_IOCTL_DATA _IOW(0xbc, 10, struct bch_ioctl_data)
75 #define BCH_IOCTL_FS_USAGE _IOWR(0xbc, 11, struct bch_ioctl_fs_usage)
76 #define BCH_IOCTL_DEV_USAGE _IOWR(0xbc, 11, struct bch_ioctl_dev_usage)
77 #define BCH_IOCTL_READ_SUPER _IOW(0xbc, 12, struct bch_ioctl_read_super)
78 #define BCH_IOCTL_DISK_GET_IDX _IOW(0xbc, 13, struct bch_ioctl_disk_get_idx)
79 #define BCH_IOCTL_DISK_RESIZE _IOW(0xbc, 14, struct bch_ioctl_disk_resize)
80 #define BCH_IOCTL_DISK_RESIZE_JOURNAL _IOW(0xbc,15, struct bch_ioctl_disk_resize_journal)
82 #define BCH_IOCTL_SUBVOLUME_CREATE _IOW(0xbc, 16, struct bch_ioctl_subvolume)
83 #define BCH_IOCTL_SUBVOLUME_DESTROY _IOW(0xbc, 17, struct bch_ioctl_subvolume)
85 #define BCH_IOCTL_DEV_USAGE_V2 _IOWR(0xbc, 18, struct bch_ioctl_dev_usage_v2)
87 #define BCH_IOCTL_FSCK_OFFLINE _IOW(0xbc, 19, struct bch_ioctl_fsck_offline)
88 #define BCH_IOCTL_FSCK_ONLINE _IOW(0xbc, 20, struct bch_ioctl_fsck_online)
89 #define BCH_IOCTL_QUERY_ACCOUNTING _IOW(0xbc, 21, struct bch_ioctl_query_accounting)
91 /* ioctl below act on a particular file, not the filesystem as a whole: */
93 #define BCHFS_IOC_REINHERIT_ATTRS _IOR(0xbc, 64, const char __user *)
96 * BCH_IOCTL_QUERY_UUID: get filesystem UUID
98 * Returns user visible UUID, not internal UUID (which may not ever be changed);
99 * the filesystem's sysfs directory may be found under /sys/fs/bcachefs with
102 struct bch_ioctl_query_uuid {
107 struct bch_ioctl_start {
114 * BCH_IOCTL_DISK_ADD: add a new device to an existing filesystem
116 * The specified device must not be open or in use. On success, the new device
117 * will be an online member of the filesystem just like any other member.
119 * The device must first be prepared by userspace by formatting with a bcachefs
120 * superblock, which is only used for passing in superblock options/parameters
121 * for that device (in struct bch_member). The new device's superblock should
122 * not claim to be a member of any existing filesystem - UUIDs on it will be
127 * BCH_IOCTL_DISK_REMOVE: permanently remove a member device from a filesystem
129 * Any data present on @dev will be permanently deleted, and @dev will be
130 * removed from its slot in the filesystem's list of member devices. The device
131 * may be either offline or offline.
133 * Will fail removing @dev would leave us with insufficient read write devices
134 * or degraded/unavailable data, unless the approprate BCH_FORCE_IF_* flags are
139 * BCH_IOCTL_DISK_ONLINE: given a disk that is already a member of a filesystem
140 * but is not open (e.g. because we started in degraded mode), bring it online
142 * all existing data on @dev will be available once the device is online,
143 * exactly as if @dev was present when the filesystem was first mounted
147 * BCH_IOCTL_DISK_OFFLINE: offline a disk, causing the kernel to close that
148 * block device, without removing it from the filesystem (so it can be brought
151 * Data present on @dev will be unavailable while @dev is offline (unless
152 * replicated), but will still be intact and untouched if @dev is brought back
155 * Will fail (similarly to BCH_IOCTL_DISK_SET_STATE) if offlining @dev would
156 * leave us with insufficient read write devices or degraded/unavailable data,
157 * unless the approprate BCH_FORCE_IF_* flags are set.
160 struct bch_ioctl_disk {
167 * BCH_IOCTL_DISK_SET_STATE: modify state of a member device of a filesystem
169 * @new_state - one of the bch_member_state states (rw, ro, failed,
172 * Will refuse to change member state if we would then have insufficient devices
173 * to write to, or if it would result in degraded data (when @new_state is
174 * failed or spare) unless the appropriate BCH_FORCE_IF_* flags are set.
176 struct bch_ioctl_disk_set_state {
183 #define BCH_DATA_OPS() \
187 x(rewrite_old_nodes, 3) \
188 x(drop_extra_replicas, 4)
191 #define x(t, n) BCH_DATA_OP_##t = n,
198 * BCH_IOCTL_DATA: operations that walk and manipulate filesystem data (e.g.
199 * scrub, rereplicate, migrate).
201 * This ioctl kicks off a job in the background, and returns a file descriptor.
202 * Reading from the file descriptor returns a struct bch_ioctl_data_event,
203 * indicating current progress, and closing the file descriptor will stop the
204 * job. The file descriptor is O_CLOEXEC.
206 struct bch_ioctl_data {
212 struct bpos start_pos;
224 } __packed __aligned(8);
226 enum bch_data_event {
227 BCH_DATA_EVENT_PROGRESS = 0,
228 /* XXX: add an event for reporting errors */
229 BCH_DATA_EVENT_NR = 1,
232 struct bch_ioctl_data_progress {
240 } __packed __aligned(8);
242 struct bch_ioctl_data_event {
246 struct bch_ioctl_data_progress p;
249 } __packed __aligned(8);
251 struct bch_replicas_usage {
253 struct bch_replicas_entry_v1 r;
256 static inline unsigned replicas_usage_bytes(struct bch_replicas_usage *u)
258 return offsetof(struct bch_replicas_usage, r) + replicas_entry_bytes(&u->r);
261 static inline struct bch_replicas_usage *
262 replicas_usage_next(struct bch_replicas_usage *u)
264 return (void *) u + replicas_usage_bytes(u);
269 * BCH_IOCTL_FS_USAGE: query filesystem disk space usage
271 * Returns disk space usage broken out by data type, number of replicas, and
272 * by component device
274 * @replica_entries_bytes - size, in bytes, allocated for replica usage entries
276 * On success, @replica_entries_bytes will be changed to indicate the number of
277 * bytes actually used.
279 * Returns -ERANGE if @replica_entries_bytes was too small
281 struct bch_ioctl_fs_usage {
284 __u64 online_reserved;
285 __u64 persistent_reserved[BCH_REPLICAS_MAX];
287 __u32 replica_entries_bytes;
290 struct bch_replicas_usage replicas[];
295 * BCH_IOCTL_DEV_USAGE: query device disk space usage
297 * Returns disk space usage broken out by data type - both by buckets and
300 struct bch_ioctl_dev_usage {
311 struct bch_ioctl_dev_usage_type {
319 struct bch_ioctl_dev_usage_v2 {
329 struct bch_ioctl_dev_usage_type d[];
333 * BCH_IOCTL_READ_SUPER: read filesystem superblock
335 * Equivalent to reading the superblock directly from the block device, except
336 * avoids racing with the kernel writing the superblock or having to figure out
337 * which block device to read
339 * @sb - buffer to read into
340 * @size - size of userspace allocated buffer
341 * @dev - device to read superblock for, if BCH_READ_DEV flag is
344 * Returns -ERANGE if buffer provided is too small
346 struct bch_ioctl_read_super {
355 * BCH_IOCTL_DISK_GET_IDX: give a path to a block device, query filesystem to
356 * determine if disk is a (online) member - if so, returns device's index
358 * Returns -ENOENT if not found
360 struct bch_ioctl_disk_get_idx {
365 * BCH_IOCTL_DISK_RESIZE: resize filesystem on a device
367 * @dev - member to resize
368 * @nbuckets - new number of buckets
370 struct bch_ioctl_disk_resize {
378 * BCH_IOCTL_DISK_RESIZE_JOURNAL: resize journal on a device
380 * @dev - member to resize
381 * @nbuckets - new number of buckets
383 struct bch_ioctl_disk_resize_journal {
390 struct bch_ioctl_subvolume {
399 #define BCH_SUBVOL_SNAPSHOT_CREATE (1U << 0)
400 #define BCH_SUBVOL_SNAPSHOT_RO (1U << 1)
403 * BCH_IOCTL_FSCK_OFFLINE: run fsck from the 'bcachefs fsck' userspace command,
404 * but with the kernel's implementation of fsck:
406 struct bch_ioctl_fsck_offline {
408 __u64 opts; /* string */
410 __u64 devs[] __counted_by(nr_devs);
414 * BCH_IOCTL_FSCK_ONLINE: run fsck from the 'bcachefs fsck' userspace command,
415 * but with the kernel's implementation of fsck:
417 struct bch_ioctl_fsck_online {
419 __u64 opts; /* string */
423 * BCH_IOCTL_QUERY_ACCOUNTING: query filesystem disk accounting
425 * Returns disk space usage broken out by data type, number of replicas, and
426 * by component device
428 * @replica_entries_bytes - size, in bytes, allocated for replica usage entries
430 * On success, @replica_entries_bytes will be changed to indicate the number of
431 * bytes actually used.
433 * Returns -ERANGE if @replica_entries_bytes was too small
435 struct bch_ioctl_query_accounting {
438 __u64 online_reserved;
440 __u32 accounting_u64s; /* input parameter */
441 __u32 accounting_types_mask; /* input parameter */
443 struct bkey_i_accounting accounting[];
446 #endif /* _BCACHEFS_IOCTL_H */