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