xref: /openbmc/linux/fs/erofs/data.c (revision b780d3fc)
147e4937aSGao Xiang // SPDX-License-Identifier: GPL-2.0-only
247e4937aSGao Xiang /*
347e4937aSGao Xiang  * Copyright (C) 2017-2018 HUAWEI, Inc.
4592e7cd0SAlexander A. Klimov  *             https://www.huawei.com/
5c5aa903aSGao Xiang  * Copyright (C) 2021, Alibaba Cloud
647e4937aSGao Xiang  */
747e4937aSGao Xiang #include "internal.h"
847e4937aSGao Xiang #include <linux/prefetch.h>
95375e7c8SJeffle Xu #include <linux/sched/mm.h>
1006252e9cSGao Xiang #include <linux/dax.h>
1147e4937aSGao Xiang #include <trace/events/erofs.h>
1247e4937aSGao Xiang 
13fdf80a47SGao Xiang void erofs_unmap_metabuf(struct erofs_buf *buf)
14fdf80a47SGao Xiang {
15fdf80a47SGao Xiang 	if (buf->kmap_type == EROFS_KMAP)
16927e5010SGao Xiang 		kunmap_local(buf->base);
17fdf80a47SGao Xiang 	buf->base = NULL;
18fdf80a47SGao Xiang 	buf->kmap_type = EROFS_NO_KMAP;
19fdf80a47SGao Xiang }
20fdf80a47SGao Xiang 
21fdf80a47SGao Xiang void erofs_put_metabuf(struct erofs_buf *buf)
22fdf80a47SGao Xiang {
23fdf80a47SGao Xiang 	if (!buf->page)
24fdf80a47SGao Xiang 		return;
25fdf80a47SGao Xiang 	erofs_unmap_metabuf(buf);
26fdf80a47SGao Xiang 	put_page(buf->page);
27fdf80a47SGao Xiang 	buf->page = NULL;
28fdf80a47SGao Xiang }
29fdf80a47SGao Xiang 
30fe5de585SGao Xiang void *erofs_bread(struct erofs_buf *buf, struct inode *inode,
31fdf80a47SGao Xiang 		  erofs_blk_t blkaddr, enum erofs_kmap_type type)
32fdf80a47SGao Xiang {
33fe5de585SGao Xiang 	struct address_space *const mapping = inode->i_mapping;
34fdf80a47SGao Xiang 	erofs_off_t offset = blknr_to_addr(blkaddr);
35fdf80a47SGao Xiang 	pgoff_t index = offset >> PAGE_SHIFT;
36fdf80a47SGao Xiang 	struct page *page = buf->page;
375375e7c8SJeffle Xu 	struct folio *folio;
385375e7c8SJeffle Xu 	unsigned int nofs_flag;
39fdf80a47SGao Xiang 
40fdf80a47SGao Xiang 	if (!page || page->index != index) {
41fdf80a47SGao Xiang 		erofs_put_metabuf(buf);
425375e7c8SJeffle Xu 
435375e7c8SJeffle Xu 		nofs_flag = memalloc_nofs_save();
445375e7c8SJeffle Xu 		folio = read_cache_folio(mapping, index, NULL, NULL);
455375e7c8SJeffle Xu 		memalloc_nofs_restore(nofs_flag);
465375e7c8SJeffle Xu 		if (IS_ERR(folio))
475375e7c8SJeffle Xu 			return folio;
485375e7c8SJeffle Xu 
49fdf80a47SGao Xiang 		/* should already be PageUptodate, no need to lock page */
505375e7c8SJeffle Xu 		page = folio_file_page(folio, index);
51fdf80a47SGao Xiang 		buf->page = page;
52fdf80a47SGao Xiang 	}
53fdf80a47SGao Xiang 	if (buf->kmap_type == EROFS_NO_KMAP) {
54fdf80a47SGao Xiang 		if (type == EROFS_KMAP)
55927e5010SGao Xiang 			buf->base = kmap_local_page(page);
56fdf80a47SGao Xiang 		buf->kmap_type = type;
57fdf80a47SGao Xiang 	} else if (buf->kmap_type != type) {
58fdf80a47SGao Xiang 		DBG_BUGON(1);
59fdf80a47SGao Xiang 		return ERR_PTR(-EFAULT);
60fdf80a47SGao Xiang 	}
61fdf80a47SGao Xiang 	if (type == EROFS_NO_KMAP)
62fdf80a47SGao Xiang 		return NULL;
63fdf80a47SGao Xiang 	return buf->base + (offset & ~PAGE_MASK);
64fdf80a47SGao Xiang }
65fdf80a47SGao Xiang 
66fe5de585SGao Xiang void *erofs_read_metabuf(struct erofs_buf *buf, struct super_block *sb,
67fe5de585SGao Xiang 			 erofs_blk_t blkaddr, enum erofs_kmap_type type)
68fe5de585SGao Xiang {
695375e7c8SJeffle Xu 	if (erofs_is_fscache_mode(sb))
705375e7c8SJeffle Xu 		return erofs_bread(buf, EROFS_SB(sb)->s_fscache->inode,
715375e7c8SJeffle Xu 				   blkaddr, type);
725375e7c8SJeffle Xu 
73fe5de585SGao Xiang 	return erofs_bread(buf, sb->s_bdev->bd_inode, blkaddr, type);
74fe5de585SGao Xiang }
75fe5de585SGao Xiang 
7647e4937aSGao Xiang static int erofs_map_blocks_flatmode(struct inode *inode,
7747e4937aSGao Xiang 				     struct erofs_map_blocks *map,
7847e4937aSGao Xiang 				     int flags)
7947e4937aSGao Xiang {
8047e4937aSGao Xiang 	erofs_blk_t nblocks, lastblk;
8147e4937aSGao Xiang 	u64 offset = map->m_la;
82a5876e24SGao Xiang 	struct erofs_inode *vi = EROFS_I(inode);
838a765682SGao Xiang 	bool tailendpacking = (vi->datalayout == EROFS_INODE_FLAT_INLINE);
8447e4937aSGao Xiang 
85fdf80a47SGao Xiang 	nblocks = DIV_ROUND_UP(inode->i_size, EROFS_BLKSIZ);
868a765682SGao Xiang 	lastblk = nblocks - tailendpacking;
8747e4937aSGao Xiang 
8847e4937aSGao Xiang 	/* there is no hole in flatmode */
8947e4937aSGao Xiang 	map->m_flags = EROFS_MAP_MAPPED;
9047e4937aSGao Xiang 	if (offset < blknr_to_addr(lastblk)) {
9147e4937aSGao Xiang 		map->m_pa = blknr_to_addr(vi->raw_blkaddr) + map->m_la;
9247e4937aSGao Xiang 		map->m_plen = blknr_to_addr(lastblk) - offset;
938a765682SGao Xiang 	} else if (tailendpacking) {
94*b780d3fcSGao Xiang 		map->m_pa = erofs_iloc(inode) + vi->inode_isize +
95*b780d3fcSGao Xiang 			vi->xattr_isize + erofs_blkoff(offset);
9647e4937aSGao Xiang 		map->m_plen = inode->i_size - offset;
9747e4937aSGao Xiang 
98469407a3SGao Xiang 		/* inline data should be located in the same meta block */
99469407a3SGao Xiang 		if (erofs_blkoff(map->m_pa) + map->m_plen > EROFS_BLKSIZ) {
1004f761fa2SGao Xiang 			erofs_err(inode->i_sb,
1014f761fa2SGao Xiang 				  "inline data cross block boundary @ nid %llu",
10247e4937aSGao Xiang 				  vi->nid);
10347e4937aSGao Xiang 			DBG_BUGON(1);
104469407a3SGao Xiang 			return -EFSCORRUPTED;
10547e4937aSGao Xiang 		}
10647e4937aSGao Xiang 		map->m_flags |= EROFS_MAP_META;
10747e4937aSGao Xiang 	} else {
1084f761fa2SGao Xiang 		erofs_err(inode->i_sb,
1094f761fa2SGao Xiang 			  "internal error @ nid: %llu (size %llu), m_la 0x%llx",
11047e4937aSGao Xiang 			  vi->nid, inode->i_size, map->m_la);
11147e4937aSGao Xiang 		DBG_BUGON(1);
112469407a3SGao Xiang 		return -EIO;
11347e4937aSGao Xiang 	}
114469407a3SGao Xiang 	return 0;
11547e4937aSGao Xiang }
11647e4937aSGao Xiang 
11794d78946SJeffle Xu int erofs_map_blocks(struct inode *inode,
118c5aa903aSGao Xiang 		     struct erofs_map_blocks *map, int flags)
119c5aa903aSGao Xiang {
120c5aa903aSGao Xiang 	struct super_block *sb = inode->i_sb;
121c5aa903aSGao Xiang 	struct erofs_inode *vi = EROFS_I(inode);
122c5aa903aSGao Xiang 	struct erofs_inode_chunk_index *idx;
123fdf80a47SGao Xiang 	struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
124c5aa903aSGao Xiang 	u64 chunknr;
125c5aa903aSGao Xiang 	unsigned int unit;
126c5aa903aSGao Xiang 	erofs_off_t pos;
127fdf80a47SGao Xiang 	void *kaddr;
128c5aa903aSGao Xiang 	int err = 0;
129c5aa903aSGao Xiang 
130469407a3SGao Xiang 	trace_erofs_map_blocks_enter(inode, map, flags);
131dfeab2e9SGao Xiang 	map->m_deviceid = 0;
132c5aa903aSGao Xiang 	if (map->m_la >= inode->i_size) {
133c5aa903aSGao Xiang 		/* leave out-of-bound access unmapped */
134c5aa903aSGao Xiang 		map->m_flags = 0;
135c5aa903aSGao Xiang 		map->m_plen = 0;
136c5aa903aSGao Xiang 		goto out;
137c5aa903aSGao Xiang 	}
138c5aa903aSGao Xiang 
139469407a3SGao Xiang 	if (vi->datalayout != EROFS_INODE_CHUNK_BASED) {
140469407a3SGao Xiang 		err = erofs_map_blocks_flatmode(inode, map, flags);
141469407a3SGao Xiang 		goto out;
142469407a3SGao Xiang 	}
143c5aa903aSGao Xiang 
144c5aa903aSGao Xiang 	if (vi->chunkformat & EROFS_CHUNK_FORMAT_INDEXES)
145c5aa903aSGao Xiang 		unit = sizeof(*idx);			/* chunk index */
146c5aa903aSGao Xiang 	else
147c5aa903aSGao Xiang 		unit = EROFS_BLOCK_MAP_ENTRY_SIZE;	/* block map */
148c5aa903aSGao Xiang 
149c5aa903aSGao Xiang 	chunknr = map->m_la >> vi->chunkbits;
150*b780d3fcSGao Xiang 	pos = ALIGN(erofs_iloc(inode) + vi->inode_isize +
151c5aa903aSGao Xiang 		    vi->xattr_isize, unit) + unit * chunknr;
152c5aa903aSGao Xiang 
153fdf80a47SGao Xiang 	kaddr = erofs_read_metabuf(&buf, sb, erofs_blknr(pos), EROFS_KMAP);
154fdf80a47SGao Xiang 	if (IS_ERR(kaddr)) {
155fdf80a47SGao Xiang 		err = PTR_ERR(kaddr);
156469407a3SGao Xiang 		goto out;
157469407a3SGao Xiang 	}
158c5aa903aSGao Xiang 	map->m_la = chunknr << vi->chunkbits;
159c5aa903aSGao Xiang 	map->m_plen = min_t(erofs_off_t, 1UL << vi->chunkbits,
160c5aa903aSGao Xiang 			    roundup(inode->i_size - map->m_la, EROFS_BLKSIZ));
161c5aa903aSGao Xiang 
162c5aa903aSGao Xiang 	/* handle block map */
163c5aa903aSGao Xiang 	if (!(vi->chunkformat & EROFS_CHUNK_FORMAT_INDEXES)) {
164fdf80a47SGao Xiang 		__le32 *blkaddr = kaddr + erofs_blkoff(pos);
165c5aa903aSGao Xiang 
166c5aa903aSGao Xiang 		if (le32_to_cpu(*blkaddr) == EROFS_NULL_ADDR) {
167c5aa903aSGao Xiang 			map->m_flags = 0;
168c5aa903aSGao Xiang 		} else {
169c5aa903aSGao Xiang 			map->m_pa = blknr_to_addr(le32_to_cpu(*blkaddr));
170c5aa903aSGao Xiang 			map->m_flags = EROFS_MAP_MAPPED;
171c5aa903aSGao Xiang 		}
172c5aa903aSGao Xiang 		goto out_unlock;
173c5aa903aSGao Xiang 	}
174c5aa903aSGao Xiang 	/* parse chunk indexes */
175fdf80a47SGao Xiang 	idx = kaddr + erofs_blkoff(pos);
176c5aa903aSGao Xiang 	switch (le32_to_cpu(idx->blkaddr)) {
177c5aa903aSGao Xiang 	case EROFS_NULL_ADDR:
178c5aa903aSGao Xiang 		map->m_flags = 0;
179c5aa903aSGao Xiang 		break;
180c5aa903aSGao Xiang 	default:
181dfeab2e9SGao Xiang 		map->m_deviceid = le16_to_cpu(idx->device_id) &
182dfeab2e9SGao Xiang 			EROFS_SB(sb)->device_id_mask;
183c5aa903aSGao Xiang 		map->m_pa = blknr_to_addr(le32_to_cpu(idx->blkaddr));
184c5aa903aSGao Xiang 		map->m_flags = EROFS_MAP_MAPPED;
185c5aa903aSGao Xiang 		break;
186c5aa903aSGao Xiang 	}
187c5aa903aSGao Xiang out_unlock:
188fdf80a47SGao Xiang 	erofs_put_metabuf(&buf);
189c5aa903aSGao Xiang out:
190469407a3SGao Xiang 	if (!err)
191c5aa903aSGao Xiang 		map->m_llen = map->m_plen;
192469407a3SGao Xiang 	trace_erofs_map_blocks_exit(inode, map, flags, 0);
193c5aa903aSGao Xiang 	return err;
194c5aa903aSGao Xiang }
195c5aa903aSGao Xiang 
196dfeab2e9SGao Xiang int erofs_map_dev(struct super_block *sb, struct erofs_map_dev *map)
197dfeab2e9SGao Xiang {
198dfeab2e9SGao Xiang 	struct erofs_dev_context *devs = EROFS_SB(sb)->devs;
199dfeab2e9SGao Xiang 	struct erofs_device_info *dif;
200dfeab2e9SGao Xiang 	int id;
201dfeab2e9SGao Xiang 
202dfeab2e9SGao Xiang 	/* primary device by default */
203dfeab2e9SGao Xiang 	map->m_bdev = sb->s_bdev;
204dfeab2e9SGao Xiang 	map->m_daxdev = EROFS_SB(sb)->dax_dev;
205de205114SChristoph Hellwig 	map->m_dax_part_off = EROFS_SB(sb)->dax_part_off;
206955b478eSJeffle Xu 	map->m_fscache = EROFS_SB(sb)->s_fscache;
207dfeab2e9SGao Xiang 
208dfeab2e9SGao Xiang 	if (map->m_deviceid) {
209dfeab2e9SGao Xiang 		down_read(&devs->rwsem);
210dfeab2e9SGao Xiang 		dif = idr_find(&devs->tree, map->m_deviceid - 1);
211dfeab2e9SGao Xiang 		if (!dif) {
212dfeab2e9SGao Xiang 			up_read(&devs->rwsem);
213dfeab2e9SGao Xiang 			return -ENODEV;
214dfeab2e9SGao Xiang 		}
215dfeab2e9SGao Xiang 		map->m_bdev = dif->bdev;
216dfeab2e9SGao Xiang 		map->m_daxdev = dif->dax_dev;
217de205114SChristoph Hellwig 		map->m_dax_part_off = dif->dax_part_off;
218955b478eSJeffle Xu 		map->m_fscache = dif->fscache;
219dfeab2e9SGao Xiang 		up_read(&devs->rwsem);
220dfeab2e9SGao Xiang 	} else if (devs->extra_devices) {
221dfeab2e9SGao Xiang 		down_read(&devs->rwsem);
222dfeab2e9SGao Xiang 		idr_for_each_entry(&devs->tree, dif, id) {
223dfeab2e9SGao Xiang 			erofs_off_t startoff, length;
224dfeab2e9SGao Xiang 
225dfeab2e9SGao Xiang 			if (!dif->mapped_blkaddr)
226dfeab2e9SGao Xiang 				continue;
227dfeab2e9SGao Xiang 			startoff = blknr_to_addr(dif->mapped_blkaddr);
228dfeab2e9SGao Xiang 			length = blknr_to_addr(dif->blocks);
229dfeab2e9SGao Xiang 
230dfeab2e9SGao Xiang 			if (map->m_pa >= startoff &&
231dfeab2e9SGao Xiang 			    map->m_pa < startoff + length) {
232dfeab2e9SGao Xiang 				map->m_pa -= startoff;
233dfeab2e9SGao Xiang 				map->m_bdev = dif->bdev;
234dfeab2e9SGao Xiang 				map->m_daxdev = dif->dax_dev;
235de205114SChristoph Hellwig 				map->m_dax_part_off = dif->dax_part_off;
236955b478eSJeffle Xu 				map->m_fscache = dif->fscache;
237dfeab2e9SGao Xiang 				break;
238dfeab2e9SGao Xiang 			}
239dfeab2e9SGao Xiang 		}
240dfeab2e9SGao Xiang 		up_read(&devs->rwsem);
241dfeab2e9SGao Xiang 	}
242dfeab2e9SGao Xiang 	return 0;
243dfeab2e9SGao Xiang }
244dfeab2e9SGao Xiang 
245a08e67a0SHuang Jianan static int erofs_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
246a08e67a0SHuang Jianan 		unsigned int flags, struct iomap *iomap, struct iomap *srcmap)
247a08e67a0SHuang Jianan {
248a08e67a0SHuang Jianan 	int ret;
249a08e67a0SHuang Jianan 	struct erofs_map_blocks map;
250dfeab2e9SGao Xiang 	struct erofs_map_dev mdev;
251a08e67a0SHuang Jianan 
252a08e67a0SHuang Jianan 	map.m_la = offset;
253a08e67a0SHuang Jianan 	map.m_llen = length;
254a08e67a0SHuang Jianan 
255c5aa903aSGao Xiang 	ret = erofs_map_blocks(inode, &map, EROFS_GET_BLOCKS_RAW);
256a08e67a0SHuang Jianan 	if (ret < 0)
257a08e67a0SHuang Jianan 		return ret;
258a08e67a0SHuang Jianan 
259dfeab2e9SGao Xiang 	mdev = (struct erofs_map_dev) {
260dfeab2e9SGao Xiang 		.m_deviceid = map.m_deviceid,
261dfeab2e9SGao Xiang 		.m_pa = map.m_pa,
262dfeab2e9SGao Xiang 	};
263dfeab2e9SGao Xiang 	ret = erofs_map_dev(inode->i_sb, &mdev);
264dfeab2e9SGao Xiang 	if (ret)
265dfeab2e9SGao Xiang 		return ret;
266dfeab2e9SGao Xiang 
267a08e67a0SHuang Jianan 	iomap->offset = map.m_la;
268e33f42b2SGao Xiang 	if (flags & IOMAP_DAX)
269de205114SChristoph Hellwig 		iomap->dax_dev = mdev.m_daxdev;
270e33f42b2SGao Xiang 	else
271de205114SChristoph Hellwig 		iomap->bdev = mdev.m_bdev;
272a08e67a0SHuang Jianan 	iomap->length = map.m_llen;
273a08e67a0SHuang Jianan 	iomap->flags = 0;
274771c994eSGao Xiang 	iomap->private = NULL;
275a08e67a0SHuang Jianan 
276a08e67a0SHuang Jianan 	if (!(map.m_flags & EROFS_MAP_MAPPED)) {
277a08e67a0SHuang Jianan 		iomap->type = IOMAP_HOLE;
278a08e67a0SHuang Jianan 		iomap->addr = IOMAP_NULL_ADDR;
279a08e67a0SHuang Jianan 		if (!iomap->length)
280a08e67a0SHuang Jianan 			iomap->length = length;
281a08e67a0SHuang Jianan 		return 0;
282a08e67a0SHuang Jianan 	}
283a08e67a0SHuang Jianan 
284a08e67a0SHuang Jianan 	if (map.m_flags & EROFS_MAP_META) {
285fdf80a47SGao Xiang 		void *ptr;
286fdf80a47SGao Xiang 		struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
287771c994eSGao Xiang 
288771c994eSGao Xiang 		iomap->type = IOMAP_INLINE;
289fdf80a47SGao Xiang 		ptr = erofs_read_metabuf(&buf, inode->i_sb,
290fdf80a47SGao Xiang 					 erofs_blknr(mdev.m_pa), EROFS_KMAP);
291fdf80a47SGao Xiang 		if (IS_ERR(ptr))
292fdf80a47SGao Xiang 			return PTR_ERR(ptr);
293fdf80a47SGao Xiang 		iomap->inline_data = ptr + erofs_blkoff(mdev.m_pa);
294fdf80a47SGao Xiang 		iomap->private = buf.base;
295771c994eSGao Xiang 	} else {
296a08e67a0SHuang Jianan 		iomap->type = IOMAP_MAPPED;
297dfeab2e9SGao Xiang 		iomap->addr = mdev.m_pa;
298e33f42b2SGao Xiang 		if (flags & IOMAP_DAX)
299e33f42b2SGao Xiang 			iomap->addr += mdev.m_dax_part_off;
300771c994eSGao Xiang 	}
301a08e67a0SHuang Jianan 	return 0;
302a08e67a0SHuang Jianan }
303a08e67a0SHuang Jianan 
304771c994eSGao Xiang static int erofs_iomap_end(struct inode *inode, loff_t pos, loff_t length,
305771c994eSGao Xiang 		ssize_t written, unsigned int flags, struct iomap *iomap)
306771c994eSGao Xiang {
307fdf80a47SGao Xiang 	void *ptr = iomap->private;
308771c994eSGao Xiang 
309fdf80a47SGao Xiang 	if (ptr) {
310fdf80a47SGao Xiang 		struct erofs_buf buf = {
311fdf80a47SGao Xiang 			.page = kmap_to_page(ptr),
312fdf80a47SGao Xiang 			.base = ptr,
313fdf80a47SGao Xiang 			.kmap_type = EROFS_KMAP,
314fdf80a47SGao Xiang 		};
315fdf80a47SGao Xiang 
316771c994eSGao Xiang 		DBG_BUGON(iomap->type != IOMAP_INLINE);
317fdf80a47SGao Xiang 		erofs_put_metabuf(&buf);
318771c994eSGao Xiang 	} else {
319771c994eSGao Xiang 		DBG_BUGON(iomap->type == IOMAP_INLINE);
320771c994eSGao Xiang 	}
321771c994eSGao Xiang 	return written;
322771c994eSGao Xiang }
323771c994eSGao Xiang 
324a08e67a0SHuang Jianan static const struct iomap_ops erofs_iomap_ops = {
325a08e67a0SHuang Jianan 	.iomap_begin = erofs_iomap_begin,
326771c994eSGao Xiang 	.iomap_end = erofs_iomap_end,
327a08e67a0SHuang Jianan };
328a08e67a0SHuang Jianan 
329eadcd6b5SGao Xiang int erofs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
330eadcd6b5SGao Xiang 		 u64 start, u64 len)
331eadcd6b5SGao Xiang {
332eadcd6b5SGao Xiang 	if (erofs_inode_is_data_compressed(EROFS_I(inode)->datalayout)) {
333eadcd6b5SGao Xiang #ifdef CONFIG_EROFS_FS_ZIP
334eadcd6b5SGao Xiang 		return iomap_fiemap(inode, fieinfo, start, len,
335eadcd6b5SGao Xiang 				    &z_erofs_iomap_report_ops);
336eadcd6b5SGao Xiang #else
337eadcd6b5SGao Xiang 		return -EOPNOTSUPP;
338eadcd6b5SGao Xiang #endif
339eadcd6b5SGao Xiang 	}
340eadcd6b5SGao Xiang 	return iomap_fiemap(inode, fieinfo, start, len, &erofs_iomap_ops);
341eadcd6b5SGao Xiang }
342eadcd6b5SGao Xiang 
343771c994eSGao Xiang /*
344771c994eSGao Xiang  * since we dont have write or truncate flows, so no inode
345771c994eSGao Xiang  * locking needs to be held at the moment.
346771c994eSGao Xiang  */
3477479c505SMatthew Wilcox (Oracle) static int erofs_read_folio(struct file *file, struct folio *folio)
348771c994eSGao Xiang {
3497479c505SMatthew Wilcox (Oracle) 	return iomap_read_folio(folio, &erofs_iomap_ops);
350771c994eSGao Xiang }
351771c994eSGao Xiang 
352771c994eSGao Xiang static void erofs_readahead(struct readahead_control *rac)
353771c994eSGao Xiang {
354771c994eSGao Xiang 	return iomap_readahead(rac, &erofs_iomap_ops);
355771c994eSGao Xiang }
356771c994eSGao Xiang 
357771c994eSGao Xiang static sector_t erofs_bmap(struct address_space *mapping, sector_t block)
358771c994eSGao Xiang {
359771c994eSGao Xiang 	return iomap_bmap(mapping, block, &erofs_iomap_ops);
360771c994eSGao Xiang }
361771c994eSGao Xiang 
362a08e67a0SHuang Jianan static ssize_t erofs_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
363a08e67a0SHuang Jianan {
364de8a801aSGao Xiang 	struct inode *inode = file_inode(iocb->ki_filp);
365de8a801aSGao Xiang 
366a08e67a0SHuang Jianan 	/* no need taking (shared) inode lock since it's a ro filesystem */
367a08e67a0SHuang Jianan 	if (!iov_iter_count(to))
368a08e67a0SHuang Jianan 		return 0;
369a08e67a0SHuang Jianan 
37006252e9cSGao Xiang #ifdef CONFIG_FS_DAX
371de8a801aSGao Xiang 	if (IS_DAX(inode))
37206252e9cSGao Xiang 		return dax_iomap_rw(iocb, to, &erofs_iomap_ops);
37306252e9cSGao Xiang #endif
374a08e67a0SHuang Jianan 	if (iocb->ki_flags & IOCB_DIRECT) {
375de8a801aSGao Xiang 		struct block_device *bdev = inode->i_sb->s_bdev;
376de8a801aSGao Xiang 		unsigned int blksize_mask;
377a08e67a0SHuang Jianan 
378de8a801aSGao Xiang 		if (bdev)
379de8a801aSGao Xiang 			blksize_mask = bdev_logical_block_size(bdev) - 1;
380de8a801aSGao Xiang 		else
381de8a801aSGao Xiang 			blksize_mask = (1 << inode->i_blkbits) - 1;
382de8a801aSGao Xiang 
383de8a801aSGao Xiang 		if ((iocb->ki_pos | iov_iter_count(to) |
384de8a801aSGao Xiang 		     iov_iter_alignment(to)) & blksize_mask)
385de8a801aSGao Xiang 			return -EINVAL;
386de8a801aSGao Xiang 
387a08e67a0SHuang Jianan 		return iomap_dio_rw(iocb, to, &erofs_iomap_ops,
388786f847fSChristoph Hellwig 				    NULL, 0, NULL, 0);
389a08e67a0SHuang Jianan 	}
390a08e67a0SHuang Jianan 	return filemap_read(iocb, to, 0);
391a08e67a0SHuang Jianan }
392a08e67a0SHuang Jianan 
39347e4937aSGao Xiang /* for uncompressed (aligned) files and raw access for other files */
39447e4937aSGao Xiang const struct address_space_operations erofs_raw_access_aops = {
3957479c505SMatthew Wilcox (Oracle) 	.read_folio = erofs_read_folio,
396771c994eSGao Xiang 	.readahead = erofs_readahead,
39747e4937aSGao Xiang 	.bmap = erofs_bmap,
398a08e67a0SHuang Jianan 	.direct_IO = noop_direct_IO,
399ce529cc2SJingbo Xu 	.release_folio = iomap_release_folio,
400ce529cc2SJingbo Xu 	.invalidate_folio = iomap_invalidate_folio,
401a08e67a0SHuang Jianan };
402a08e67a0SHuang Jianan 
40306252e9cSGao Xiang #ifdef CONFIG_FS_DAX
40406252e9cSGao Xiang static vm_fault_t erofs_dax_huge_fault(struct vm_fault *vmf,
40506252e9cSGao Xiang 		enum page_entry_size pe_size)
40606252e9cSGao Xiang {
40706252e9cSGao Xiang 	return dax_iomap_fault(vmf, pe_size, NULL, NULL, &erofs_iomap_ops);
40806252e9cSGao Xiang }
40906252e9cSGao Xiang 
41006252e9cSGao Xiang static vm_fault_t erofs_dax_fault(struct vm_fault *vmf)
41106252e9cSGao Xiang {
41206252e9cSGao Xiang 	return erofs_dax_huge_fault(vmf, PE_SIZE_PTE);
41306252e9cSGao Xiang }
41406252e9cSGao Xiang 
41506252e9cSGao Xiang static const struct vm_operations_struct erofs_dax_vm_ops = {
41606252e9cSGao Xiang 	.fault		= erofs_dax_fault,
41706252e9cSGao Xiang 	.huge_fault	= erofs_dax_huge_fault,
41806252e9cSGao Xiang };
41906252e9cSGao Xiang 
42006252e9cSGao Xiang static int erofs_file_mmap(struct file *file, struct vm_area_struct *vma)
42106252e9cSGao Xiang {
42206252e9cSGao Xiang 	if (!IS_DAX(file_inode(file)))
42306252e9cSGao Xiang 		return generic_file_readonly_mmap(file, vma);
42406252e9cSGao Xiang 
42506252e9cSGao Xiang 	if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
42606252e9cSGao Xiang 		return -EINVAL;
42706252e9cSGao Xiang 
42806252e9cSGao Xiang 	vma->vm_ops = &erofs_dax_vm_ops;
42906252e9cSGao Xiang 	vma->vm_flags |= VM_HUGEPAGE;
43006252e9cSGao Xiang 	return 0;
43106252e9cSGao Xiang }
43206252e9cSGao Xiang #else
43306252e9cSGao Xiang #define erofs_file_mmap	generic_file_readonly_mmap
43406252e9cSGao Xiang #endif
43506252e9cSGao Xiang 
436a08e67a0SHuang Jianan const struct file_operations erofs_file_fops = {
437a08e67a0SHuang Jianan 	.llseek		= generic_file_llseek,
438a08e67a0SHuang Jianan 	.read_iter	= erofs_file_read_iter,
43906252e9cSGao Xiang 	.mmap		= erofs_file_mmap,
440a08e67a0SHuang Jianan 	.splice_read	= generic_file_splice_read,
44147e4937aSGao Xiang };
442