xref: /openbmc/linux/fs/zonefs/super.c (revision a701d28e)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Simple file system for zoned block devices exposing zones as files.
4  *
5  * Copyright (C) 2019 Western Digital Corporation or its affiliates.
6  */
7 #include <linux/module.h>
8 #include <linux/fs.h>
9 #include <linux/magic.h>
10 #include <linux/iomap.h>
11 #include <linux/init.h>
12 #include <linux/slab.h>
13 #include <linux/blkdev.h>
14 #include <linux/statfs.h>
15 #include <linux/writeback.h>
16 #include <linux/quotaops.h>
17 #include <linux/seq_file.h>
18 #include <linux/parser.h>
19 #include <linux/uio.h>
20 #include <linux/mman.h>
21 #include <linux/sched/mm.h>
22 #include <linux/crc32.h>
23 #include <linux/task_io_accounting_ops.h>
24 
25 #include "zonefs.h"
26 
27 static inline int zonefs_zone_mgmt(struct inode *inode,
28 				   enum req_opf op)
29 {
30 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
31 	int ret;
32 
33 	lockdep_assert_held(&zi->i_truncate_mutex);
34 
35 	ret = blkdev_zone_mgmt(inode->i_sb->s_bdev, op, zi->i_zsector,
36 			       zi->i_zone_size >> SECTOR_SHIFT, GFP_NOFS);
37 	if (ret) {
38 		zonefs_err(inode->i_sb,
39 			   "Zone management operation %s at %llu failed %d\n",
40 			   blk_op_str(op), zi->i_zsector, ret);
41 		return ret;
42 	}
43 
44 	return 0;
45 }
46 
47 static inline void zonefs_i_size_write(struct inode *inode, loff_t isize)
48 {
49 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
50 
51 	i_size_write(inode, isize);
52 	/*
53 	 * A full zone is no longer open/active and does not need
54 	 * explicit closing.
55 	 */
56 	if (isize >= zi->i_max_size)
57 		zi->i_flags &= ~ZONEFS_ZONE_OPEN;
58 }
59 
60 static int zonefs_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
61 			      unsigned int flags, struct iomap *iomap,
62 			      struct iomap *srcmap)
63 {
64 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
65 	struct super_block *sb = inode->i_sb;
66 	loff_t isize;
67 
68 	/* All I/Os should always be within the file maximum size */
69 	if (WARN_ON_ONCE(offset + length > zi->i_max_size))
70 		return -EIO;
71 
72 	/*
73 	 * Sequential zones can only accept direct writes. This is already
74 	 * checked when writes are issued, so warn if we see a page writeback
75 	 * operation.
76 	 */
77 	if (WARN_ON_ONCE(zi->i_ztype == ZONEFS_ZTYPE_SEQ &&
78 			 (flags & IOMAP_WRITE) && !(flags & IOMAP_DIRECT)))
79 		return -EIO;
80 
81 	/*
82 	 * For conventional zones, all blocks are always mapped. For sequential
83 	 * zones, all blocks after always mapped below the inode size (zone
84 	 * write pointer) and unwriten beyond.
85 	 */
86 	mutex_lock(&zi->i_truncate_mutex);
87 	isize = i_size_read(inode);
88 	if (offset >= isize)
89 		iomap->type = IOMAP_UNWRITTEN;
90 	else
91 		iomap->type = IOMAP_MAPPED;
92 	if (flags & IOMAP_WRITE)
93 		length = zi->i_max_size - offset;
94 	else
95 		length = min(length, isize - offset);
96 	mutex_unlock(&zi->i_truncate_mutex);
97 
98 	iomap->offset = ALIGN_DOWN(offset, sb->s_blocksize);
99 	iomap->length = ALIGN(offset + length, sb->s_blocksize) - iomap->offset;
100 	iomap->bdev = inode->i_sb->s_bdev;
101 	iomap->addr = (zi->i_zsector << SECTOR_SHIFT) + iomap->offset;
102 
103 	return 0;
104 }
105 
106 static const struct iomap_ops zonefs_iomap_ops = {
107 	.iomap_begin	= zonefs_iomap_begin,
108 };
109 
110 static int zonefs_readpage(struct file *unused, struct page *page)
111 {
112 	return iomap_readpage(page, &zonefs_iomap_ops);
113 }
114 
115 static void zonefs_readahead(struct readahead_control *rac)
116 {
117 	iomap_readahead(rac, &zonefs_iomap_ops);
118 }
119 
120 /*
121  * Map blocks for page writeback. This is used only on conventional zone files,
122  * which implies that the page range can only be within the fixed inode size.
123  */
124 static int zonefs_map_blocks(struct iomap_writepage_ctx *wpc,
125 			     struct inode *inode, loff_t offset)
126 {
127 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
128 
129 	if (WARN_ON_ONCE(zi->i_ztype != ZONEFS_ZTYPE_CNV))
130 		return -EIO;
131 	if (WARN_ON_ONCE(offset >= i_size_read(inode)))
132 		return -EIO;
133 
134 	/* If the mapping is already OK, nothing needs to be done */
135 	if (offset >= wpc->iomap.offset &&
136 	    offset < wpc->iomap.offset + wpc->iomap.length)
137 		return 0;
138 
139 	return zonefs_iomap_begin(inode, offset, zi->i_max_size - offset,
140 				  IOMAP_WRITE, &wpc->iomap, NULL);
141 }
142 
143 static const struct iomap_writeback_ops zonefs_writeback_ops = {
144 	.map_blocks		= zonefs_map_blocks,
145 };
146 
147 static int zonefs_writepage(struct page *page, struct writeback_control *wbc)
148 {
149 	struct iomap_writepage_ctx wpc = { };
150 
151 	return iomap_writepage(page, wbc, &wpc, &zonefs_writeback_ops);
152 }
153 
154 static int zonefs_writepages(struct address_space *mapping,
155 			     struct writeback_control *wbc)
156 {
157 	struct iomap_writepage_ctx wpc = { };
158 
159 	return iomap_writepages(mapping, wbc, &wpc, &zonefs_writeback_ops);
160 }
161 
162 static const struct address_space_operations zonefs_file_aops = {
163 	.readpage		= zonefs_readpage,
164 	.readahead		= zonefs_readahead,
165 	.writepage		= zonefs_writepage,
166 	.writepages		= zonefs_writepages,
167 	.set_page_dirty		= iomap_set_page_dirty,
168 	.releasepage		= iomap_releasepage,
169 	.invalidatepage		= iomap_invalidatepage,
170 	.migratepage		= iomap_migrate_page,
171 	.is_partially_uptodate	= iomap_is_partially_uptodate,
172 	.error_remove_page	= generic_error_remove_page,
173 	.direct_IO		= noop_direct_IO,
174 };
175 
176 static void zonefs_update_stats(struct inode *inode, loff_t new_isize)
177 {
178 	struct super_block *sb = inode->i_sb;
179 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
180 	loff_t old_isize = i_size_read(inode);
181 	loff_t nr_blocks;
182 
183 	if (new_isize == old_isize)
184 		return;
185 
186 	spin_lock(&sbi->s_lock);
187 
188 	/*
189 	 * This may be called for an update after an IO error.
190 	 * So beware of the values seen.
191 	 */
192 	if (new_isize < old_isize) {
193 		nr_blocks = (old_isize - new_isize) >> sb->s_blocksize_bits;
194 		if (sbi->s_used_blocks > nr_blocks)
195 			sbi->s_used_blocks -= nr_blocks;
196 		else
197 			sbi->s_used_blocks = 0;
198 	} else {
199 		sbi->s_used_blocks +=
200 			(new_isize - old_isize) >> sb->s_blocksize_bits;
201 		if (sbi->s_used_blocks > sbi->s_blocks)
202 			sbi->s_used_blocks = sbi->s_blocks;
203 	}
204 
205 	spin_unlock(&sbi->s_lock);
206 }
207 
208 /*
209  * Check a zone condition and adjust its file inode access permissions for
210  * offline and readonly zones. Return the inode size corresponding to the
211  * amount of readable data in the zone.
212  */
213 static loff_t zonefs_check_zone_condition(struct inode *inode,
214 					  struct blk_zone *zone, bool warn,
215 					  bool mount)
216 {
217 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
218 
219 	switch (zone->cond) {
220 	case BLK_ZONE_COND_OFFLINE:
221 		/*
222 		 * Dead zone: make the inode immutable, disable all accesses
223 		 * and set the file size to 0 (zone wp set to zone start).
224 		 */
225 		if (warn)
226 			zonefs_warn(inode->i_sb, "inode %lu: offline zone\n",
227 				    inode->i_ino);
228 		inode->i_flags |= S_IMMUTABLE;
229 		inode->i_mode &= ~0777;
230 		zone->wp = zone->start;
231 		return 0;
232 	case BLK_ZONE_COND_READONLY:
233 		/*
234 		 * The write pointer of read-only zones is invalid. If such a
235 		 * zone is found during mount, the file size cannot be retrieved
236 		 * so we treat the zone as offline (mount == true case).
237 		 * Otherwise, keep the file size as it was when last updated
238 		 * so that the user can recover data. In both cases, writes are
239 		 * always disabled for the zone.
240 		 */
241 		if (warn)
242 			zonefs_warn(inode->i_sb, "inode %lu: read-only zone\n",
243 				    inode->i_ino);
244 		inode->i_flags |= S_IMMUTABLE;
245 		if (mount) {
246 			zone->cond = BLK_ZONE_COND_OFFLINE;
247 			inode->i_mode &= ~0777;
248 			zone->wp = zone->start;
249 			return 0;
250 		}
251 		inode->i_mode &= ~0222;
252 		return i_size_read(inode);
253 	default:
254 		if (zi->i_ztype == ZONEFS_ZTYPE_CNV)
255 			return zi->i_max_size;
256 		return (zone->wp - zone->start) << SECTOR_SHIFT;
257 	}
258 }
259 
260 struct zonefs_ioerr_data {
261 	struct inode	*inode;
262 	bool		write;
263 };
264 
265 static int zonefs_io_error_cb(struct blk_zone *zone, unsigned int idx,
266 			      void *data)
267 {
268 	struct zonefs_ioerr_data *err = data;
269 	struct inode *inode = err->inode;
270 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
271 	struct super_block *sb = inode->i_sb;
272 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
273 	loff_t isize, data_size;
274 
275 	/*
276 	 * Check the zone condition: if the zone is not "bad" (offline or
277 	 * read-only), read errors are simply signaled to the IO issuer as long
278 	 * as there is no inconsistency between the inode size and the amount of
279 	 * data writen in the zone (data_size).
280 	 */
281 	data_size = zonefs_check_zone_condition(inode, zone, true, false);
282 	isize = i_size_read(inode);
283 	if (zone->cond != BLK_ZONE_COND_OFFLINE &&
284 	    zone->cond != BLK_ZONE_COND_READONLY &&
285 	    !err->write && isize == data_size)
286 		return 0;
287 
288 	/*
289 	 * At this point, we detected either a bad zone or an inconsistency
290 	 * between the inode size and the amount of data written in the zone.
291 	 * For the latter case, the cause may be a write IO error or an external
292 	 * action on the device. Two error patterns exist:
293 	 * 1) The inode size is lower than the amount of data in the zone:
294 	 *    a write operation partially failed and data was writen at the end
295 	 *    of the file. This can happen in the case of a large direct IO
296 	 *    needing several BIOs and/or write requests to be processed.
297 	 * 2) The inode size is larger than the amount of data in the zone:
298 	 *    this can happen with a deferred write error with the use of the
299 	 *    device side write cache after getting successful write IO
300 	 *    completions. Other possibilities are (a) an external corruption,
301 	 *    e.g. an application reset the zone directly, or (b) the device
302 	 *    has a serious problem (e.g. firmware bug).
303 	 *
304 	 * In all cases, warn about inode size inconsistency and handle the
305 	 * IO error according to the zone condition and to the mount options.
306 	 */
307 	if (zi->i_ztype == ZONEFS_ZTYPE_SEQ && isize != data_size)
308 		zonefs_warn(sb, "inode %lu: invalid size %lld (should be %lld)\n",
309 			    inode->i_ino, isize, data_size);
310 
311 	/*
312 	 * First handle bad zones signaled by hardware. The mount options
313 	 * errors=zone-ro and errors=zone-offline result in changing the
314 	 * zone condition to read-only and offline respectively, as if the
315 	 * condition was signaled by the hardware.
316 	 */
317 	if (zone->cond == BLK_ZONE_COND_OFFLINE ||
318 	    sbi->s_mount_opts & ZONEFS_MNTOPT_ERRORS_ZOL) {
319 		zonefs_warn(sb, "inode %lu: read/write access disabled\n",
320 			    inode->i_ino);
321 		if (zone->cond != BLK_ZONE_COND_OFFLINE) {
322 			zone->cond = BLK_ZONE_COND_OFFLINE;
323 			data_size = zonefs_check_zone_condition(inode, zone,
324 								false, false);
325 		}
326 	} else if (zone->cond == BLK_ZONE_COND_READONLY ||
327 		   sbi->s_mount_opts & ZONEFS_MNTOPT_ERRORS_ZRO) {
328 		zonefs_warn(sb, "inode %lu: write access disabled\n",
329 			    inode->i_ino);
330 		if (zone->cond != BLK_ZONE_COND_READONLY) {
331 			zone->cond = BLK_ZONE_COND_READONLY;
332 			data_size = zonefs_check_zone_condition(inode, zone,
333 								false, false);
334 		}
335 	}
336 
337 	/*
338 	 * If the filesystem is mounted with the explicit-open mount option, we
339 	 * need to clear the ZONEFS_ZONE_OPEN flag if the zone transitioned to
340 	 * the read-only or offline condition, to avoid attempting an explicit
341 	 * close of the zone when the inode file is closed.
342 	 */
343 	if ((sbi->s_mount_opts & ZONEFS_MNTOPT_EXPLICIT_OPEN) &&
344 	    (zone->cond == BLK_ZONE_COND_OFFLINE ||
345 	     zone->cond == BLK_ZONE_COND_READONLY))
346 		zi->i_flags &= ~ZONEFS_ZONE_OPEN;
347 
348 	/*
349 	 * If error=remount-ro was specified, any error result in remounting
350 	 * the volume as read-only.
351 	 */
352 	if ((sbi->s_mount_opts & ZONEFS_MNTOPT_ERRORS_RO) && !sb_rdonly(sb)) {
353 		zonefs_warn(sb, "remounting filesystem read-only\n");
354 		sb->s_flags |= SB_RDONLY;
355 	}
356 
357 	/*
358 	 * Update block usage stats and the inode size  to prevent access to
359 	 * invalid data.
360 	 */
361 	zonefs_update_stats(inode, data_size);
362 	zonefs_i_size_write(inode, data_size);
363 	zi->i_wpoffset = data_size;
364 
365 	return 0;
366 }
367 
368 /*
369  * When an file IO error occurs, check the file zone to see if there is a change
370  * in the zone condition (e.g. offline or read-only). For a failed write to a
371  * sequential zone, the zone write pointer position must also be checked to
372  * eventually correct the file size and zonefs inode write pointer offset
373  * (which can be out of sync with the drive due to partial write failures).
374  */
375 static void __zonefs_io_error(struct inode *inode, bool write)
376 {
377 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
378 	struct super_block *sb = inode->i_sb;
379 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
380 	unsigned int noio_flag;
381 	unsigned int nr_zones =
382 		zi->i_zone_size >> (sbi->s_zone_sectors_shift + SECTOR_SHIFT);
383 	struct zonefs_ioerr_data err = {
384 		.inode = inode,
385 		.write = write,
386 	};
387 	int ret;
388 
389 	/*
390 	 * Memory allocations in blkdev_report_zones() can trigger a memory
391 	 * reclaim which may in turn cause a recursion into zonefs as well as
392 	 * struct request allocations for the same device. The former case may
393 	 * end up in a deadlock on the inode truncate mutex, while the latter
394 	 * may prevent IO forward progress. Executing the report zones under
395 	 * the GFP_NOIO context avoids both problems.
396 	 */
397 	noio_flag = memalloc_noio_save();
398 	ret = blkdev_report_zones(sb->s_bdev, zi->i_zsector, nr_zones,
399 				  zonefs_io_error_cb, &err);
400 	if (ret != nr_zones)
401 		zonefs_err(sb, "Get inode %lu zone information failed %d\n",
402 			   inode->i_ino, ret);
403 	memalloc_noio_restore(noio_flag);
404 }
405 
406 static void zonefs_io_error(struct inode *inode, bool write)
407 {
408 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
409 
410 	mutex_lock(&zi->i_truncate_mutex);
411 	__zonefs_io_error(inode, write);
412 	mutex_unlock(&zi->i_truncate_mutex);
413 }
414 
415 static int zonefs_file_truncate(struct inode *inode, loff_t isize)
416 {
417 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
418 	loff_t old_isize;
419 	enum req_opf op;
420 	int ret = 0;
421 
422 	/*
423 	 * Only sequential zone files can be truncated and truncation is allowed
424 	 * only down to a 0 size, which is equivalent to a zone reset, and to
425 	 * the maximum file size, which is equivalent to a zone finish.
426 	 */
427 	if (zi->i_ztype != ZONEFS_ZTYPE_SEQ)
428 		return -EPERM;
429 
430 	if (!isize)
431 		op = REQ_OP_ZONE_RESET;
432 	else if (isize == zi->i_max_size)
433 		op = REQ_OP_ZONE_FINISH;
434 	else
435 		return -EPERM;
436 
437 	inode_dio_wait(inode);
438 
439 	/* Serialize against page faults */
440 	down_write(&zi->i_mmap_sem);
441 
442 	/* Serialize against zonefs_iomap_begin() */
443 	mutex_lock(&zi->i_truncate_mutex);
444 
445 	old_isize = i_size_read(inode);
446 	if (isize == old_isize)
447 		goto unlock;
448 
449 	ret = zonefs_zone_mgmt(inode, op);
450 	if (ret)
451 		goto unlock;
452 
453 	/*
454 	 * If the mount option ZONEFS_MNTOPT_EXPLICIT_OPEN is set,
455 	 * take care of open zones.
456 	 */
457 	if (zi->i_flags & ZONEFS_ZONE_OPEN) {
458 		/*
459 		 * Truncating a zone to EMPTY or FULL is the equivalent of
460 		 * closing the zone. For a truncation to 0, we need to
461 		 * re-open the zone to ensure new writes can be processed.
462 		 * For a truncation to the maximum file size, the zone is
463 		 * closed and writes cannot be accepted anymore, so clear
464 		 * the open flag.
465 		 */
466 		if (!isize)
467 			ret = zonefs_zone_mgmt(inode, REQ_OP_ZONE_OPEN);
468 		else
469 			zi->i_flags &= ~ZONEFS_ZONE_OPEN;
470 	}
471 
472 	zonefs_update_stats(inode, isize);
473 	truncate_setsize(inode, isize);
474 	zi->i_wpoffset = isize;
475 
476 unlock:
477 	mutex_unlock(&zi->i_truncate_mutex);
478 	up_write(&zi->i_mmap_sem);
479 
480 	return ret;
481 }
482 
483 static int zonefs_inode_setattr(struct dentry *dentry, struct iattr *iattr)
484 {
485 	struct inode *inode = d_inode(dentry);
486 	int ret;
487 
488 	if (unlikely(IS_IMMUTABLE(inode)))
489 		return -EPERM;
490 
491 	ret = setattr_prepare(dentry, iattr);
492 	if (ret)
493 		return ret;
494 
495 	/*
496 	 * Since files and directories cannot be created nor deleted, do not
497 	 * allow setting any write attributes on the sub-directories grouping
498 	 * files by zone type.
499 	 */
500 	if ((iattr->ia_valid & ATTR_MODE) && S_ISDIR(inode->i_mode) &&
501 	    (iattr->ia_mode & 0222))
502 		return -EPERM;
503 
504 	if (((iattr->ia_valid & ATTR_UID) &&
505 	     !uid_eq(iattr->ia_uid, inode->i_uid)) ||
506 	    ((iattr->ia_valid & ATTR_GID) &&
507 	     !gid_eq(iattr->ia_gid, inode->i_gid))) {
508 		ret = dquot_transfer(inode, iattr);
509 		if (ret)
510 			return ret;
511 	}
512 
513 	if (iattr->ia_valid & ATTR_SIZE) {
514 		ret = zonefs_file_truncate(inode, iattr->ia_size);
515 		if (ret)
516 			return ret;
517 	}
518 
519 	setattr_copy(inode, iattr);
520 
521 	return 0;
522 }
523 
524 static const struct inode_operations zonefs_file_inode_operations = {
525 	.setattr	= zonefs_inode_setattr,
526 };
527 
528 static int zonefs_file_fsync(struct file *file, loff_t start, loff_t end,
529 			     int datasync)
530 {
531 	struct inode *inode = file_inode(file);
532 	int ret = 0;
533 
534 	if (unlikely(IS_IMMUTABLE(inode)))
535 		return -EPERM;
536 
537 	/*
538 	 * Since only direct writes are allowed in sequential files, page cache
539 	 * flush is needed only for conventional zone files.
540 	 */
541 	if (ZONEFS_I(inode)->i_ztype == ZONEFS_ZTYPE_CNV)
542 		ret = file_write_and_wait_range(file, start, end);
543 	if (!ret)
544 		ret = blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL);
545 
546 	if (ret)
547 		zonefs_io_error(inode, true);
548 
549 	return ret;
550 }
551 
552 static vm_fault_t zonefs_filemap_fault(struct vm_fault *vmf)
553 {
554 	struct zonefs_inode_info *zi = ZONEFS_I(file_inode(vmf->vma->vm_file));
555 	vm_fault_t ret;
556 
557 	down_read(&zi->i_mmap_sem);
558 	ret = filemap_fault(vmf);
559 	up_read(&zi->i_mmap_sem);
560 
561 	return ret;
562 }
563 
564 static vm_fault_t zonefs_filemap_page_mkwrite(struct vm_fault *vmf)
565 {
566 	struct inode *inode = file_inode(vmf->vma->vm_file);
567 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
568 	vm_fault_t ret;
569 
570 	if (unlikely(IS_IMMUTABLE(inode)))
571 		return VM_FAULT_SIGBUS;
572 
573 	/*
574 	 * Sanity check: only conventional zone files can have shared
575 	 * writeable mappings.
576 	 */
577 	if (WARN_ON_ONCE(zi->i_ztype != ZONEFS_ZTYPE_CNV))
578 		return VM_FAULT_NOPAGE;
579 
580 	sb_start_pagefault(inode->i_sb);
581 	file_update_time(vmf->vma->vm_file);
582 
583 	/* Serialize against truncates */
584 	down_read(&zi->i_mmap_sem);
585 	ret = iomap_page_mkwrite(vmf, &zonefs_iomap_ops);
586 	up_read(&zi->i_mmap_sem);
587 
588 	sb_end_pagefault(inode->i_sb);
589 	return ret;
590 }
591 
592 static const struct vm_operations_struct zonefs_file_vm_ops = {
593 	.fault		= zonefs_filemap_fault,
594 	.map_pages	= filemap_map_pages,
595 	.page_mkwrite	= zonefs_filemap_page_mkwrite,
596 };
597 
598 static int zonefs_file_mmap(struct file *file, struct vm_area_struct *vma)
599 {
600 	/*
601 	 * Conventional zones accept random writes, so their files can support
602 	 * shared writable mappings. For sequential zone files, only read
603 	 * mappings are possible since there are no guarantees for write
604 	 * ordering between msync() and page cache writeback.
605 	 */
606 	if (ZONEFS_I(file_inode(file))->i_ztype == ZONEFS_ZTYPE_SEQ &&
607 	    (vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
608 		return -EINVAL;
609 
610 	file_accessed(file);
611 	vma->vm_ops = &zonefs_file_vm_ops;
612 
613 	return 0;
614 }
615 
616 static loff_t zonefs_file_llseek(struct file *file, loff_t offset, int whence)
617 {
618 	loff_t isize = i_size_read(file_inode(file));
619 
620 	/*
621 	 * Seeks are limited to below the zone size for conventional zones
622 	 * and below the zone write pointer for sequential zones. In both
623 	 * cases, this limit is the inode size.
624 	 */
625 	return generic_file_llseek_size(file, offset, whence, isize, isize);
626 }
627 
628 static int zonefs_file_write_dio_end_io(struct kiocb *iocb, ssize_t size,
629 					int error, unsigned int flags)
630 {
631 	struct inode *inode = file_inode(iocb->ki_filp);
632 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
633 
634 	if (error) {
635 		zonefs_io_error(inode, true);
636 		return error;
637 	}
638 
639 	if (size && zi->i_ztype != ZONEFS_ZTYPE_CNV) {
640 		/*
641 		 * Note that we may be seeing completions out of order,
642 		 * but that is not a problem since a write completed
643 		 * successfully necessarily means that all preceding writes
644 		 * were also successful. So we can safely increase the inode
645 		 * size to the write end location.
646 		 */
647 		mutex_lock(&zi->i_truncate_mutex);
648 		if (i_size_read(inode) < iocb->ki_pos + size) {
649 			zonefs_update_stats(inode, iocb->ki_pos + size);
650 			zonefs_i_size_write(inode, iocb->ki_pos + size);
651 		}
652 		mutex_unlock(&zi->i_truncate_mutex);
653 	}
654 
655 	return 0;
656 }
657 
658 static const struct iomap_dio_ops zonefs_write_dio_ops = {
659 	.end_io			= zonefs_file_write_dio_end_io,
660 };
661 
662 static ssize_t zonefs_file_dio_append(struct kiocb *iocb, struct iov_iter *from)
663 {
664 	struct inode *inode = file_inode(iocb->ki_filp);
665 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
666 	struct block_device *bdev = inode->i_sb->s_bdev;
667 	unsigned int max;
668 	struct bio *bio;
669 	ssize_t size;
670 	int nr_pages;
671 	ssize_t ret;
672 
673 	max = queue_max_zone_append_sectors(bdev_get_queue(bdev));
674 	max = ALIGN_DOWN(max << SECTOR_SHIFT, inode->i_sb->s_blocksize);
675 	iov_iter_truncate(from, max);
676 
677 	nr_pages = iov_iter_npages(from, BIO_MAX_PAGES);
678 	if (!nr_pages)
679 		return 0;
680 
681 	bio = bio_alloc_bioset(GFP_NOFS, nr_pages, &fs_bio_set);
682 	if (!bio)
683 		return -ENOMEM;
684 
685 	bio_set_dev(bio, bdev);
686 	bio->bi_iter.bi_sector = zi->i_zsector;
687 	bio->bi_write_hint = iocb->ki_hint;
688 	bio->bi_ioprio = iocb->ki_ioprio;
689 	bio->bi_opf = REQ_OP_ZONE_APPEND | REQ_SYNC | REQ_IDLE;
690 	if (iocb->ki_flags & IOCB_DSYNC)
691 		bio->bi_opf |= REQ_FUA;
692 
693 	ret = bio_iov_iter_get_pages(bio, from);
694 	if (unlikely(ret)) {
695 		bio_io_error(bio);
696 		return ret;
697 	}
698 	size = bio->bi_iter.bi_size;
699 	task_io_account_write(ret);
700 
701 	if (iocb->ki_flags & IOCB_HIPRI)
702 		bio_set_polled(bio, iocb);
703 
704 	ret = submit_bio_wait(bio);
705 
706 	bio_put(bio);
707 
708 	zonefs_file_write_dio_end_io(iocb, size, ret, 0);
709 	if (ret >= 0) {
710 		iocb->ki_pos += size;
711 		return size;
712 	}
713 
714 	return ret;
715 }
716 
717 /*
718  * Handle direct writes. For sequential zone files, this is the only possible
719  * write path. For these files, check that the user is issuing writes
720  * sequentially from the end of the file. This code assumes that the block layer
721  * delivers write requests to the device in sequential order. This is always the
722  * case if a block IO scheduler implementing the ELEVATOR_F_ZBD_SEQ_WRITE
723  * elevator feature is being used (e.g. mq-deadline). The block layer always
724  * automatically select such an elevator for zoned block devices during the
725  * device initialization.
726  */
727 static ssize_t zonefs_file_dio_write(struct kiocb *iocb, struct iov_iter *from)
728 {
729 	struct inode *inode = file_inode(iocb->ki_filp);
730 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
731 	struct super_block *sb = inode->i_sb;
732 	bool sync = is_sync_kiocb(iocb);
733 	bool append = false;
734 	size_t count;
735 	ssize_t ret;
736 
737 	/*
738 	 * For async direct IOs to sequential zone files, refuse IOCB_NOWAIT
739 	 * as this can cause write reordering (e.g. the first aio gets EAGAIN
740 	 * on the inode lock but the second goes through but is now unaligned).
741 	 */
742 	if (zi->i_ztype == ZONEFS_ZTYPE_SEQ && !sync &&
743 	    (iocb->ki_flags & IOCB_NOWAIT))
744 		return -EOPNOTSUPP;
745 
746 	if (iocb->ki_flags & IOCB_NOWAIT) {
747 		if (!inode_trylock(inode))
748 			return -EAGAIN;
749 	} else {
750 		inode_lock(inode);
751 	}
752 
753 	ret = generic_write_checks(iocb, from);
754 	if (ret <= 0)
755 		goto inode_unlock;
756 
757 	iov_iter_truncate(from, zi->i_max_size - iocb->ki_pos);
758 	count = iov_iter_count(from);
759 
760 	if ((iocb->ki_pos | count) & (sb->s_blocksize - 1)) {
761 		ret = -EINVAL;
762 		goto inode_unlock;
763 	}
764 
765 	/* Enforce sequential writes (append only) in sequential zones */
766 	if (zi->i_ztype == ZONEFS_ZTYPE_SEQ) {
767 		mutex_lock(&zi->i_truncate_mutex);
768 		if (iocb->ki_pos != zi->i_wpoffset) {
769 			mutex_unlock(&zi->i_truncate_mutex);
770 			ret = -EINVAL;
771 			goto inode_unlock;
772 		}
773 		mutex_unlock(&zi->i_truncate_mutex);
774 		append = sync;
775 	}
776 
777 	if (append)
778 		ret = zonefs_file_dio_append(iocb, from);
779 	else
780 		ret = iomap_dio_rw(iocb, from, &zonefs_iomap_ops,
781 				   &zonefs_write_dio_ops, sync);
782 	if (zi->i_ztype == ZONEFS_ZTYPE_SEQ &&
783 	    (ret > 0 || ret == -EIOCBQUEUED)) {
784 		if (ret > 0)
785 			count = ret;
786 		mutex_lock(&zi->i_truncate_mutex);
787 		zi->i_wpoffset += count;
788 		mutex_unlock(&zi->i_truncate_mutex);
789 	}
790 
791 inode_unlock:
792 	inode_unlock(inode);
793 
794 	return ret;
795 }
796 
797 static ssize_t zonefs_file_buffered_write(struct kiocb *iocb,
798 					  struct iov_iter *from)
799 {
800 	struct inode *inode = file_inode(iocb->ki_filp);
801 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
802 	ssize_t ret;
803 
804 	/*
805 	 * Direct IO writes are mandatory for sequential zone files so that the
806 	 * write IO issuing order is preserved.
807 	 */
808 	if (zi->i_ztype != ZONEFS_ZTYPE_CNV)
809 		return -EIO;
810 
811 	if (iocb->ki_flags & IOCB_NOWAIT) {
812 		if (!inode_trylock(inode))
813 			return -EAGAIN;
814 	} else {
815 		inode_lock(inode);
816 	}
817 
818 	ret = generic_write_checks(iocb, from);
819 	if (ret <= 0)
820 		goto inode_unlock;
821 
822 	iov_iter_truncate(from, zi->i_max_size - iocb->ki_pos);
823 
824 	ret = iomap_file_buffered_write(iocb, from, &zonefs_iomap_ops);
825 	if (ret > 0)
826 		iocb->ki_pos += ret;
827 	else if (ret == -EIO)
828 		zonefs_io_error(inode, true);
829 
830 inode_unlock:
831 	inode_unlock(inode);
832 	if (ret > 0)
833 		ret = generic_write_sync(iocb, ret);
834 
835 	return ret;
836 }
837 
838 static ssize_t zonefs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
839 {
840 	struct inode *inode = file_inode(iocb->ki_filp);
841 
842 	if (unlikely(IS_IMMUTABLE(inode)))
843 		return -EPERM;
844 
845 	if (sb_rdonly(inode->i_sb))
846 		return -EROFS;
847 
848 	/* Write operations beyond the zone size are not allowed */
849 	if (iocb->ki_pos >= ZONEFS_I(inode)->i_max_size)
850 		return -EFBIG;
851 
852 	if (iocb->ki_flags & IOCB_DIRECT) {
853 		ssize_t ret = zonefs_file_dio_write(iocb, from);
854 		if (ret != -ENOTBLK)
855 			return ret;
856 	}
857 
858 	return zonefs_file_buffered_write(iocb, from);
859 }
860 
861 static int zonefs_file_read_dio_end_io(struct kiocb *iocb, ssize_t size,
862 				       int error, unsigned int flags)
863 {
864 	if (error) {
865 		zonefs_io_error(file_inode(iocb->ki_filp), false);
866 		return error;
867 	}
868 
869 	return 0;
870 }
871 
872 static const struct iomap_dio_ops zonefs_read_dio_ops = {
873 	.end_io			= zonefs_file_read_dio_end_io,
874 };
875 
876 static ssize_t zonefs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
877 {
878 	struct inode *inode = file_inode(iocb->ki_filp);
879 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
880 	struct super_block *sb = inode->i_sb;
881 	loff_t isize;
882 	ssize_t ret;
883 
884 	/* Offline zones cannot be read */
885 	if (unlikely(IS_IMMUTABLE(inode) && !(inode->i_mode & 0777)))
886 		return -EPERM;
887 
888 	if (iocb->ki_pos >= zi->i_max_size)
889 		return 0;
890 
891 	if (iocb->ki_flags & IOCB_NOWAIT) {
892 		if (!inode_trylock_shared(inode))
893 			return -EAGAIN;
894 	} else {
895 		inode_lock_shared(inode);
896 	}
897 
898 	/* Limit read operations to written data */
899 	mutex_lock(&zi->i_truncate_mutex);
900 	isize = i_size_read(inode);
901 	if (iocb->ki_pos >= isize) {
902 		mutex_unlock(&zi->i_truncate_mutex);
903 		ret = 0;
904 		goto inode_unlock;
905 	}
906 	iov_iter_truncate(to, isize - iocb->ki_pos);
907 	mutex_unlock(&zi->i_truncate_mutex);
908 
909 	if (iocb->ki_flags & IOCB_DIRECT) {
910 		size_t count = iov_iter_count(to);
911 
912 		if ((iocb->ki_pos | count) & (sb->s_blocksize - 1)) {
913 			ret = -EINVAL;
914 			goto inode_unlock;
915 		}
916 		file_accessed(iocb->ki_filp);
917 		ret = iomap_dio_rw(iocb, to, &zonefs_iomap_ops,
918 				   &zonefs_read_dio_ops, is_sync_kiocb(iocb));
919 	} else {
920 		ret = generic_file_read_iter(iocb, to);
921 		if (ret == -EIO)
922 			zonefs_io_error(inode, false);
923 	}
924 
925 inode_unlock:
926 	inode_unlock_shared(inode);
927 
928 	return ret;
929 }
930 
931 static inline bool zonefs_file_use_exp_open(struct inode *inode, struct file *file)
932 {
933 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
934 	struct zonefs_sb_info *sbi = ZONEFS_SB(inode->i_sb);
935 
936 	if (!(sbi->s_mount_opts & ZONEFS_MNTOPT_EXPLICIT_OPEN))
937 		return false;
938 
939 	if (zi->i_ztype != ZONEFS_ZTYPE_SEQ)
940 		return false;
941 
942 	if (!(file->f_mode & FMODE_WRITE))
943 		return false;
944 
945 	return true;
946 }
947 
948 static int zonefs_open_zone(struct inode *inode)
949 {
950 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
951 	struct zonefs_sb_info *sbi = ZONEFS_SB(inode->i_sb);
952 	int ret = 0;
953 
954 	mutex_lock(&zi->i_truncate_mutex);
955 
956 	zi->i_wr_refcnt++;
957 	if (zi->i_wr_refcnt == 1) {
958 
959 		if (atomic_inc_return(&sbi->s_open_zones) > sbi->s_max_open_zones) {
960 			atomic_dec(&sbi->s_open_zones);
961 			ret = -EBUSY;
962 			goto unlock;
963 		}
964 
965 		if (i_size_read(inode) < zi->i_max_size) {
966 			ret = zonefs_zone_mgmt(inode, REQ_OP_ZONE_OPEN);
967 			if (ret) {
968 				zi->i_wr_refcnt--;
969 				atomic_dec(&sbi->s_open_zones);
970 				goto unlock;
971 			}
972 			zi->i_flags |= ZONEFS_ZONE_OPEN;
973 		}
974 	}
975 
976 unlock:
977 	mutex_unlock(&zi->i_truncate_mutex);
978 
979 	return ret;
980 }
981 
982 static int zonefs_file_open(struct inode *inode, struct file *file)
983 {
984 	int ret;
985 
986 	ret = generic_file_open(inode, file);
987 	if (ret)
988 		return ret;
989 
990 	if (zonefs_file_use_exp_open(inode, file))
991 		return zonefs_open_zone(inode);
992 
993 	return 0;
994 }
995 
996 static void zonefs_close_zone(struct inode *inode)
997 {
998 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
999 	int ret = 0;
1000 
1001 	mutex_lock(&zi->i_truncate_mutex);
1002 	zi->i_wr_refcnt--;
1003 	if (!zi->i_wr_refcnt) {
1004 		struct zonefs_sb_info *sbi = ZONEFS_SB(inode->i_sb);
1005 		struct super_block *sb = inode->i_sb;
1006 
1007 		/*
1008 		 * If the file zone is full, it is not open anymore and we only
1009 		 * need to decrement the open count.
1010 		 */
1011 		if (!(zi->i_flags & ZONEFS_ZONE_OPEN))
1012 			goto dec;
1013 
1014 		ret = zonefs_zone_mgmt(inode, REQ_OP_ZONE_CLOSE);
1015 		if (ret) {
1016 			__zonefs_io_error(inode, false);
1017 			/*
1018 			 * Leaving zones explicitly open may lead to a state
1019 			 * where most zones cannot be written (zone resources
1020 			 * exhausted). So take preventive action by remounting
1021 			 * read-only.
1022 			 */
1023 			if (zi->i_flags & ZONEFS_ZONE_OPEN &&
1024 			    !(sb->s_flags & SB_RDONLY)) {
1025 				zonefs_warn(sb, "closing zone failed, remounting filesystem read-only\n");
1026 				sb->s_flags |= SB_RDONLY;
1027 			}
1028 		}
1029 		zi->i_flags &= ~ZONEFS_ZONE_OPEN;
1030 dec:
1031 		atomic_dec(&sbi->s_open_zones);
1032 	}
1033 	mutex_unlock(&zi->i_truncate_mutex);
1034 }
1035 
1036 static int zonefs_file_release(struct inode *inode, struct file *file)
1037 {
1038 	/*
1039 	 * If we explicitly open a zone we must close it again as well, but the
1040 	 * zone management operation can fail (either due to an IO error or as
1041 	 * the zone has gone offline or read-only). Make sure we don't fail the
1042 	 * close(2) for user-space.
1043 	 */
1044 	if (zonefs_file_use_exp_open(inode, file))
1045 		zonefs_close_zone(inode);
1046 
1047 	return 0;
1048 }
1049 
1050 static const struct file_operations zonefs_file_operations = {
1051 	.open		= zonefs_file_open,
1052 	.release	= zonefs_file_release,
1053 	.fsync		= zonefs_file_fsync,
1054 	.mmap		= zonefs_file_mmap,
1055 	.llseek		= zonefs_file_llseek,
1056 	.read_iter	= zonefs_file_read_iter,
1057 	.write_iter	= zonefs_file_write_iter,
1058 	.splice_read	= generic_file_splice_read,
1059 	.splice_write	= iter_file_splice_write,
1060 	.iopoll		= iomap_dio_iopoll,
1061 };
1062 
1063 static struct kmem_cache *zonefs_inode_cachep;
1064 
1065 static struct inode *zonefs_alloc_inode(struct super_block *sb)
1066 {
1067 	struct zonefs_inode_info *zi;
1068 
1069 	zi = kmem_cache_alloc(zonefs_inode_cachep, GFP_KERNEL);
1070 	if (!zi)
1071 		return NULL;
1072 
1073 	inode_init_once(&zi->i_vnode);
1074 	mutex_init(&zi->i_truncate_mutex);
1075 	init_rwsem(&zi->i_mmap_sem);
1076 	zi->i_wr_refcnt = 0;
1077 
1078 	return &zi->i_vnode;
1079 }
1080 
1081 static void zonefs_free_inode(struct inode *inode)
1082 {
1083 	kmem_cache_free(zonefs_inode_cachep, ZONEFS_I(inode));
1084 }
1085 
1086 /*
1087  * File system stat.
1088  */
1089 static int zonefs_statfs(struct dentry *dentry, struct kstatfs *buf)
1090 {
1091 	struct super_block *sb = dentry->d_sb;
1092 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
1093 	enum zonefs_ztype t;
1094 	u64 fsid;
1095 
1096 	buf->f_type = ZONEFS_MAGIC;
1097 	buf->f_bsize = sb->s_blocksize;
1098 	buf->f_namelen = ZONEFS_NAME_MAX;
1099 
1100 	spin_lock(&sbi->s_lock);
1101 
1102 	buf->f_blocks = sbi->s_blocks;
1103 	if (WARN_ON(sbi->s_used_blocks > sbi->s_blocks))
1104 		buf->f_bfree = 0;
1105 	else
1106 		buf->f_bfree = buf->f_blocks - sbi->s_used_blocks;
1107 	buf->f_bavail = buf->f_bfree;
1108 
1109 	for (t = 0; t < ZONEFS_ZTYPE_MAX; t++) {
1110 		if (sbi->s_nr_files[t])
1111 			buf->f_files += sbi->s_nr_files[t] + 1;
1112 	}
1113 	buf->f_ffree = 0;
1114 
1115 	spin_unlock(&sbi->s_lock);
1116 
1117 	fsid = le64_to_cpup((void *)sbi->s_uuid.b) ^
1118 		le64_to_cpup((void *)sbi->s_uuid.b + sizeof(u64));
1119 	buf->f_fsid = u64_to_fsid(fsid);
1120 
1121 	return 0;
1122 }
1123 
1124 enum {
1125 	Opt_errors_ro, Opt_errors_zro, Opt_errors_zol, Opt_errors_repair,
1126 	Opt_explicit_open, Opt_err,
1127 };
1128 
1129 static const match_table_t tokens = {
1130 	{ Opt_errors_ro,	"errors=remount-ro"},
1131 	{ Opt_errors_zro,	"errors=zone-ro"},
1132 	{ Opt_errors_zol,	"errors=zone-offline"},
1133 	{ Opt_errors_repair,	"errors=repair"},
1134 	{ Opt_explicit_open,	"explicit-open" },
1135 	{ Opt_err,		NULL}
1136 };
1137 
1138 static int zonefs_parse_options(struct super_block *sb, char *options)
1139 {
1140 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
1141 	substring_t args[MAX_OPT_ARGS];
1142 	char *p;
1143 
1144 	if (!options)
1145 		return 0;
1146 
1147 	while ((p = strsep(&options, ",")) != NULL) {
1148 		int token;
1149 
1150 		if (!*p)
1151 			continue;
1152 
1153 		token = match_token(p, tokens, args);
1154 		switch (token) {
1155 		case Opt_errors_ro:
1156 			sbi->s_mount_opts &= ~ZONEFS_MNTOPT_ERRORS_MASK;
1157 			sbi->s_mount_opts |= ZONEFS_MNTOPT_ERRORS_RO;
1158 			break;
1159 		case Opt_errors_zro:
1160 			sbi->s_mount_opts &= ~ZONEFS_MNTOPT_ERRORS_MASK;
1161 			sbi->s_mount_opts |= ZONEFS_MNTOPT_ERRORS_ZRO;
1162 			break;
1163 		case Opt_errors_zol:
1164 			sbi->s_mount_opts &= ~ZONEFS_MNTOPT_ERRORS_MASK;
1165 			sbi->s_mount_opts |= ZONEFS_MNTOPT_ERRORS_ZOL;
1166 			break;
1167 		case Opt_errors_repair:
1168 			sbi->s_mount_opts &= ~ZONEFS_MNTOPT_ERRORS_MASK;
1169 			sbi->s_mount_opts |= ZONEFS_MNTOPT_ERRORS_REPAIR;
1170 			break;
1171 		case Opt_explicit_open:
1172 			sbi->s_mount_opts |= ZONEFS_MNTOPT_EXPLICIT_OPEN;
1173 			break;
1174 		default:
1175 			return -EINVAL;
1176 		}
1177 	}
1178 
1179 	return 0;
1180 }
1181 
1182 static int zonefs_show_options(struct seq_file *seq, struct dentry *root)
1183 {
1184 	struct zonefs_sb_info *sbi = ZONEFS_SB(root->d_sb);
1185 
1186 	if (sbi->s_mount_opts & ZONEFS_MNTOPT_ERRORS_RO)
1187 		seq_puts(seq, ",errors=remount-ro");
1188 	if (sbi->s_mount_opts & ZONEFS_MNTOPT_ERRORS_ZRO)
1189 		seq_puts(seq, ",errors=zone-ro");
1190 	if (sbi->s_mount_opts & ZONEFS_MNTOPT_ERRORS_ZOL)
1191 		seq_puts(seq, ",errors=zone-offline");
1192 	if (sbi->s_mount_opts & ZONEFS_MNTOPT_ERRORS_REPAIR)
1193 		seq_puts(seq, ",errors=repair");
1194 
1195 	return 0;
1196 }
1197 
1198 static int zonefs_remount(struct super_block *sb, int *flags, char *data)
1199 {
1200 	sync_filesystem(sb);
1201 
1202 	return zonefs_parse_options(sb, data);
1203 }
1204 
1205 static const struct super_operations zonefs_sops = {
1206 	.alloc_inode	= zonefs_alloc_inode,
1207 	.free_inode	= zonefs_free_inode,
1208 	.statfs		= zonefs_statfs,
1209 	.remount_fs	= zonefs_remount,
1210 	.show_options	= zonefs_show_options,
1211 };
1212 
1213 static const struct inode_operations zonefs_dir_inode_operations = {
1214 	.lookup		= simple_lookup,
1215 	.setattr	= zonefs_inode_setattr,
1216 };
1217 
1218 static void zonefs_init_dir_inode(struct inode *parent, struct inode *inode,
1219 				  enum zonefs_ztype type)
1220 {
1221 	struct super_block *sb = parent->i_sb;
1222 
1223 	inode->i_ino = blkdev_nr_zones(sb->s_bdev->bd_disk) + type + 1;
1224 	inode_init_owner(inode, parent, S_IFDIR | 0555);
1225 	inode->i_op = &zonefs_dir_inode_operations;
1226 	inode->i_fop = &simple_dir_operations;
1227 	set_nlink(inode, 2);
1228 	inc_nlink(parent);
1229 }
1230 
1231 static void zonefs_init_file_inode(struct inode *inode, struct blk_zone *zone,
1232 				   enum zonefs_ztype type)
1233 {
1234 	struct super_block *sb = inode->i_sb;
1235 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
1236 	struct zonefs_inode_info *zi = ZONEFS_I(inode);
1237 
1238 	inode->i_ino = zone->start >> sbi->s_zone_sectors_shift;
1239 	inode->i_mode = S_IFREG | sbi->s_perm;
1240 
1241 	zi->i_ztype = type;
1242 	zi->i_zsector = zone->start;
1243 	zi->i_zone_size = zone->len << SECTOR_SHIFT;
1244 
1245 	zi->i_max_size = min_t(loff_t, MAX_LFS_FILESIZE,
1246 			       zone->capacity << SECTOR_SHIFT);
1247 	zi->i_wpoffset = zonefs_check_zone_condition(inode, zone, true, true);
1248 
1249 	inode->i_uid = sbi->s_uid;
1250 	inode->i_gid = sbi->s_gid;
1251 	inode->i_size = zi->i_wpoffset;
1252 	inode->i_blocks = zi->i_max_size >> SECTOR_SHIFT;
1253 
1254 	inode->i_op = &zonefs_file_inode_operations;
1255 	inode->i_fop = &zonefs_file_operations;
1256 	inode->i_mapping->a_ops = &zonefs_file_aops;
1257 
1258 	sb->s_maxbytes = max(zi->i_max_size, sb->s_maxbytes);
1259 	sbi->s_blocks += zi->i_max_size >> sb->s_blocksize_bits;
1260 	sbi->s_used_blocks += zi->i_wpoffset >> sb->s_blocksize_bits;
1261 }
1262 
1263 static struct dentry *zonefs_create_inode(struct dentry *parent,
1264 					const char *name, struct blk_zone *zone,
1265 					enum zonefs_ztype type)
1266 {
1267 	struct inode *dir = d_inode(parent);
1268 	struct dentry *dentry;
1269 	struct inode *inode;
1270 
1271 	dentry = d_alloc_name(parent, name);
1272 	if (!dentry)
1273 		return NULL;
1274 
1275 	inode = new_inode(parent->d_sb);
1276 	if (!inode)
1277 		goto dput;
1278 
1279 	inode->i_ctime = inode->i_mtime = inode->i_atime = dir->i_ctime;
1280 	if (zone)
1281 		zonefs_init_file_inode(inode, zone, type);
1282 	else
1283 		zonefs_init_dir_inode(dir, inode, type);
1284 	d_add(dentry, inode);
1285 	dir->i_size++;
1286 
1287 	return dentry;
1288 
1289 dput:
1290 	dput(dentry);
1291 
1292 	return NULL;
1293 }
1294 
1295 struct zonefs_zone_data {
1296 	struct super_block	*sb;
1297 	unsigned int		nr_zones[ZONEFS_ZTYPE_MAX];
1298 	struct blk_zone		*zones;
1299 };
1300 
1301 /*
1302  * Create a zone group and populate it with zone files.
1303  */
1304 static int zonefs_create_zgroup(struct zonefs_zone_data *zd,
1305 				enum zonefs_ztype type)
1306 {
1307 	struct super_block *sb = zd->sb;
1308 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
1309 	struct blk_zone *zone, *next, *end;
1310 	const char *zgroup_name;
1311 	char *file_name;
1312 	struct dentry *dir;
1313 	unsigned int n = 0;
1314 	int ret;
1315 
1316 	/* If the group is empty, there is nothing to do */
1317 	if (!zd->nr_zones[type])
1318 		return 0;
1319 
1320 	file_name = kmalloc(ZONEFS_NAME_MAX, GFP_KERNEL);
1321 	if (!file_name)
1322 		return -ENOMEM;
1323 
1324 	if (type == ZONEFS_ZTYPE_CNV)
1325 		zgroup_name = "cnv";
1326 	else
1327 		zgroup_name = "seq";
1328 
1329 	dir = zonefs_create_inode(sb->s_root, zgroup_name, NULL, type);
1330 	if (!dir) {
1331 		ret = -ENOMEM;
1332 		goto free;
1333 	}
1334 
1335 	/*
1336 	 * The first zone contains the super block: skip it.
1337 	 */
1338 	end = zd->zones + blkdev_nr_zones(sb->s_bdev->bd_disk);
1339 	for (zone = &zd->zones[1]; zone < end; zone = next) {
1340 
1341 		next = zone + 1;
1342 		if (zonefs_zone_type(zone) != type)
1343 			continue;
1344 
1345 		/*
1346 		 * For conventional zones, contiguous zones can be aggregated
1347 		 * together to form larger files. Note that this overwrites the
1348 		 * length of the first zone of the set of contiguous zones
1349 		 * aggregated together. If one offline or read-only zone is
1350 		 * found, assume that all zones aggregated have the same
1351 		 * condition.
1352 		 */
1353 		if (type == ZONEFS_ZTYPE_CNV &&
1354 		    (sbi->s_features & ZONEFS_F_AGGRCNV)) {
1355 			for (; next < end; next++) {
1356 				if (zonefs_zone_type(next) != type)
1357 					break;
1358 				zone->len += next->len;
1359 				zone->capacity += next->capacity;
1360 				if (next->cond == BLK_ZONE_COND_READONLY &&
1361 				    zone->cond != BLK_ZONE_COND_OFFLINE)
1362 					zone->cond = BLK_ZONE_COND_READONLY;
1363 				else if (next->cond == BLK_ZONE_COND_OFFLINE)
1364 					zone->cond = BLK_ZONE_COND_OFFLINE;
1365 			}
1366 			if (zone->capacity != zone->len) {
1367 				zonefs_err(sb, "Invalid conventional zone capacity\n");
1368 				ret = -EINVAL;
1369 				goto free;
1370 			}
1371 		}
1372 
1373 		/*
1374 		 * Use the file number within its group as file name.
1375 		 */
1376 		snprintf(file_name, ZONEFS_NAME_MAX - 1, "%u", n);
1377 		if (!zonefs_create_inode(dir, file_name, zone, type)) {
1378 			ret = -ENOMEM;
1379 			goto free;
1380 		}
1381 
1382 		n++;
1383 	}
1384 
1385 	zonefs_info(sb, "Zone group \"%s\" has %u file%s\n",
1386 		    zgroup_name, n, n > 1 ? "s" : "");
1387 
1388 	sbi->s_nr_files[type] = n;
1389 	ret = 0;
1390 
1391 free:
1392 	kfree(file_name);
1393 
1394 	return ret;
1395 }
1396 
1397 static int zonefs_get_zone_info_cb(struct blk_zone *zone, unsigned int idx,
1398 				   void *data)
1399 {
1400 	struct zonefs_zone_data *zd = data;
1401 
1402 	/*
1403 	 * Count the number of usable zones: the first zone at index 0 contains
1404 	 * the super block and is ignored.
1405 	 */
1406 	switch (zone->type) {
1407 	case BLK_ZONE_TYPE_CONVENTIONAL:
1408 		zone->wp = zone->start + zone->len;
1409 		if (idx)
1410 			zd->nr_zones[ZONEFS_ZTYPE_CNV]++;
1411 		break;
1412 	case BLK_ZONE_TYPE_SEQWRITE_REQ:
1413 	case BLK_ZONE_TYPE_SEQWRITE_PREF:
1414 		if (idx)
1415 			zd->nr_zones[ZONEFS_ZTYPE_SEQ]++;
1416 		break;
1417 	default:
1418 		zonefs_err(zd->sb, "Unsupported zone type 0x%x\n",
1419 			   zone->type);
1420 		return -EIO;
1421 	}
1422 
1423 	memcpy(&zd->zones[idx], zone, sizeof(struct blk_zone));
1424 
1425 	return 0;
1426 }
1427 
1428 static int zonefs_get_zone_info(struct zonefs_zone_data *zd)
1429 {
1430 	struct block_device *bdev = zd->sb->s_bdev;
1431 	int ret;
1432 
1433 	zd->zones = kvcalloc(blkdev_nr_zones(bdev->bd_disk),
1434 			     sizeof(struct blk_zone), GFP_KERNEL);
1435 	if (!zd->zones)
1436 		return -ENOMEM;
1437 
1438 	/* Get zones information from the device */
1439 	ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES,
1440 				  zonefs_get_zone_info_cb, zd);
1441 	if (ret < 0) {
1442 		zonefs_err(zd->sb, "Zone report failed %d\n", ret);
1443 		return ret;
1444 	}
1445 
1446 	if (ret != blkdev_nr_zones(bdev->bd_disk)) {
1447 		zonefs_err(zd->sb, "Invalid zone report (%d/%u zones)\n",
1448 			   ret, blkdev_nr_zones(bdev->bd_disk));
1449 		return -EIO;
1450 	}
1451 
1452 	return 0;
1453 }
1454 
1455 static inline void zonefs_cleanup_zone_info(struct zonefs_zone_data *zd)
1456 {
1457 	kvfree(zd->zones);
1458 }
1459 
1460 /*
1461  * Read super block information from the device.
1462  */
1463 static int zonefs_read_super(struct super_block *sb)
1464 {
1465 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
1466 	struct zonefs_super *super;
1467 	u32 crc, stored_crc;
1468 	struct page *page;
1469 	struct bio_vec bio_vec;
1470 	struct bio bio;
1471 	int ret;
1472 
1473 	page = alloc_page(GFP_KERNEL);
1474 	if (!page)
1475 		return -ENOMEM;
1476 
1477 	bio_init(&bio, &bio_vec, 1);
1478 	bio.bi_iter.bi_sector = 0;
1479 	bio.bi_opf = REQ_OP_READ;
1480 	bio_set_dev(&bio, sb->s_bdev);
1481 	bio_add_page(&bio, page, PAGE_SIZE, 0);
1482 
1483 	ret = submit_bio_wait(&bio);
1484 	if (ret)
1485 		goto free_page;
1486 
1487 	super = kmap(page);
1488 
1489 	ret = -EINVAL;
1490 	if (le32_to_cpu(super->s_magic) != ZONEFS_MAGIC)
1491 		goto unmap;
1492 
1493 	stored_crc = le32_to_cpu(super->s_crc);
1494 	super->s_crc = 0;
1495 	crc = crc32(~0U, (unsigned char *)super, sizeof(struct zonefs_super));
1496 	if (crc != stored_crc) {
1497 		zonefs_err(sb, "Invalid checksum (Expected 0x%08x, got 0x%08x)",
1498 			   crc, stored_crc);
1499 		goto unmap;
1500 	}
1501 
1502 	sbi->s_features = le64_to_cpu(super->s_features);
1503 	if (sbi->s_features & ~ZONEFS_F_DEFINED_FEATURES) {
1504 		zonefs_err(sb, "Unknown features set 0x%llx\n",
1505 			   sbi->s_features);
1506 		goto unmap;
1507 	}
1508 
1509 	if (sbi->s_features & ZONEFS_F_UID) {
1510 		sbi->s_uid = make_kuid(current_user_ns(),
1511 				       le32_to_cpu(super->s_uid));
1512 		if (!uid_valid(sbi->s_uid)) {
1513 			zonefs_err(sb, "Invalid UID feature\n");
1514 			goto unmap;
1515 		}
1516 	}
1517 
1518 	if (sbi->s_features & ZONEFS_F_GID) {
1519 		sbi->s_gid = make_kgid(current_user_ns(),
1520 				       le32_to_cpu(super->s_gid));
1521 		if (!gid_valid(sbi->s_gid)) {
1522 			zonefs_err(sb, "Invalid GID feature\n");
1523 			goto unmap;
1524 		}
1525 	}
1526 
1527 	if (sbi->s_features & ZONEFS_F_PERM)
1528 		sbi->s_perm = le32_to_cpu(super->s_perm);
1529 
1530 	if (memchr_inv(super->s_reserved, 0, sizeof(super->s_reserved))) {
1531 		zonefs_err(sb, "Reserved area is being used\n");
1532 		goto unmap;
1533 	}
1534 
1535 	import_uuid(&sbi->s_uuid, super->s_uuid);
1536 	ret = 0;
1537 
1538 unmap:
1539 	kunmap(page);
1540 free_page:
1541 	__free_page(page);
1542 
1543 	return ret;
1544 }
1545 
1546 /*
1547  * Check that the device is zoned. If it is, get the list of zones and create
1548  * sub-directories and files according to the device zone configuration and
1549  * format options.
1550  */
1551 static int zonefs_fill_super(struct super_block *sb, void *data, int silent)
1552 {
1553 	struct zonefs_zone_data zd;
1554 	struct zonefs_sb_info *sbi;
1555 	struct inode *inode;
1556 	enum zonefs_ztype t;
1557 	int ret;
1558 
1559 	if (!bdev_is_zoned(sb->s_bdev)) {
1560 		zonefs_err(sb, "Not a zoned block device\n");
1561 		return -EINVAL;
1562 	}
1563 
1564 	/*
1565 	 * Initialize super block information: the maximum file size is updated
1566 	 * when the zone files are created so that the format option
1567 	 * ZONEFS_F_AGGRCNV which increases the maximum file size of a file
1568 	 * beyond the zone size is taken into account.
1569 	 */
1570 	sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
1571 	if (!sbi)
1572 		return -ENOMEM;
1573 
1574 	spin_lock_init(&sbi->s_lock);
1575 	sb->s_fs_info = sbi;
1576 	sb->s_magic = ZONEFS_MAGIC;
1577 	sb->s_maxbytes = 0;
1578 	sb->s_op = &zonefs_sops;
1579 	sb->s_time_gran	= 1;
1580 
1581 	/*
1582 	 * The block size is set to the device physical sector size to ensure
1583 	 * that write operations on 512e devices (512B logical block and 4KB
1584 	 * physical block) are always aligned to the device physical blocks,
1585 	 * as mandated by the ZBC/ZAC specifications.
1586 	 */
1587 	sb_set_blocksize(sb, bdev_physical_block_size(sb->s_bdev));
1588 	sbi->s_zone_sectors_shift = ilog2(bdev_zone_sectors(sb->s_bdev));
1589 	sbi->s_uid = GLOBAL_ROOT_UID;
1590 	sbi->s_gid = GLOBAL_ROOT_GID;
1591 	sbi->s_perm = 0640;
1592 	sbi->s_mount_opts = ZONEFS_MNTOPT_ERRORS_RO;
1593 	sbi->s_max_open_zones = bdev_max_open_zones(sb->s_bdev);
1594 	atomic_set(&sbi->s_open_zones, 0);
1595 	if (!sbi->s_max_open_zones &&
1596 	    sbi->s_mount_opts & ZONEFS_MNTOPT_EXPLICIT_OPEN) {
1597 		zonefs_info(sb, "No open zones limit. Ignoring explicit_open mount option\n");
1598 		sbi->s_mount_opts &= ~ZONEFS_MNTOPT_EXPLICIT_OPEN;
1599 	}
1600 
1601 	ret = zonefs_read_super(sb);
1602 	if (ret)
1603 		return ret;
1604 
1605 	ret = zonefs_parse_options(sb, data);
1606 	if (ret)
1607 		return ret;
1608 
1609 	memset(&zd, 0, sizeof(struct zonefs_zone_data));
1610 	zd.sb = sb;
1611 	ret = zonefs_get_zone_info(&zd);
1612 	if (ret)
1613 		goto cleanup;
1614 
1615 	zonefs_info(sb, "Mounting %u zones",
1616 		    blkdev_nr_zones(sb->s_bdev->bd_disk));
1617 
1618 	/* Create root directory inode */
1619 	ret = -ENOMEM;
1620 	inode = new_inode(sb);
1621 	if (!inode)
1622 		goto cleanup;
1623 
1624 	inode->i_ino = blkdev_nr_zones(sb->s_bdev->bd_disk);
1625 	inode->i_mode = S_IFDIR | 0555;
1626 	inode->i_ctime = inode->i_mtime = inode->i_atime = current_time(inode);
1627 	inode->i_op = &zonefs_dir_inode_operations;
1628 	inode->i_fop = &simple_dir_operations;
1629 	set_nlink(inode, 2);
1630 
1631 	sb->s_root = d_make_root(inode);
1632 	if (!sb->s_root)
1633 		goto cleanup;
1634 
1635 	/* Create and populate files in zone groups directories */
1636 	for (t = 0; t < ZONEFS_ZTYPE_MAX; t++) {
1637 		ret = zonefs_create_zgroup(&zd, t);
1638 		if (ret)
1639 			break;
1640 	}
1641 
1642 cleanup:
1643 	zonefs_cleanup_zone_info(&zd);
1644 
1645 	return ret;
1646 }
1647 
1648 static struct dentry *zonefs_mount(struct file_system_type *fs_type,
1649 				   int flags, const char *dev_name, void *data)
1650 {
1651 	return mount_bdev(fs_type, flags, dev_name, data, zonefs_fill_super);
1652 }
1653 
1654 static void zonefs_kill_super(struct super_block *sb)
1655 {
1656 	struct zonefs_sb_info *sbi = ZONEFS_SB(sb);
1657 
1658 	if (sb->s_root)
1659 		d_genocide(sb->s_root);
1660 	kill_block_super(sb);
1661 	kfree(sbi);
1662 }
1663 
1664 /*
1665  * File system definition and registration.
1666  */
1667 static struct file_system_type zonefs_type = {
1668 	.owner		= THIS_MODULE,
1669 	.name		= "zonefs",
1670 	.mount		= zonefs_mount,
1671 	.kill_sb	= zonefs_kill_super,
1672 	.fs_flags	= FS_REQUIRES_DEV,
1673 };
1674 
1675 static int __init zonefs_init_inodecache(void)
1676 {
1677 	zonefs_inode_cachep = kmem_cache_create("zonefs_inode_cache",
1678 			sizeof(struct zonefs_inode_info), 0,
1679 			(SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT),
1680 			NULL);
1681 	if (zonefs_inode_cachep == NULL)
1682 		return -ENOMEM;
1683 	return 0;
1684 }
1685 
1686 static void zonefs_destroy_inodecache(void)
1687 {
1688 	/*
1689 	 * Make sure all delayed rcu free inodes are flushed before we
1690 	 * destroy the inode cache.
1691 	 */
1692 	rcu_barrier();
1693 	kmem_cache_destroy(zonefs_inode_cachep);
1694 }
1695 
1696 static int __init zonefs_init(void)
1697 {
1698 	int ret;
1699 
1700 	BUILD_BUG_ON(sizeof(struct zonefs_super) != ZONEFS_SUPER_SIZE);
1701 
1702 	ret = zonefs_init_inodecache();
1703 	if (ret)
1704 		return ret;
1705 
1706 	ret = register_filesystem(&zonefs_type);
1707 	if (ret) {
1708 		zonefs_destroy_inodecache();
1709 		return ret;
1710 	}
1711 
1712 	return 0;
1713 }
1714 
1715 static void __exit zonefs_exit(void)
1716 {
1717 	zonefs_destroy_inodecache();
1718 	unregister_filesystem(&zonefs_type);
1719 }
1720 
1721 MODULE_AUTHOR("Damien Le Moal");
1722 MODULE_DESCRIPTION("Zone file system for zoned block devices");
1723 MODULE_LICENSE("GPL");
1724 module_init(zonefs_init);
1725 module_exit(zonefs_exit);
1726