data.c 9.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// SPDX-License-Identifier: GPL-2.0
/*
 * linux/drivers/staging/erofs/data.c
 *
 * Copyright (C) 2017-2018 HUAWEI, Inc.
 *             http://www.huawei.com/
 * Created by Gao Xiang <gaoxiang25@huawei.com>
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file COPYING in the main directory of the Linux
 * distribution for more details.
 */
#include "internal.h"
#include <linux/prefetch.h>

C
Chao Yu 已提交
16 17
#include <trace/events/erofs.h>

18 19 20 21 22
static inline void read_endio(struct bio *bio)
{
	int i;
	struct bio_vec *bvec;
	const blk_status_t err = bio->bi_status;
23
	struct bvec_iter_all iter_all;
24

25
	bio_for_each_segment_all(bvec, bio, i, iter_all) {
26 27 28
		struct page *page = bvec->bv_page;

		/* page is already locked */
29
		DBG_BUGON(PageUptodate(page));
30 31 32 33 34 35 36 37 38 39 40 41 42

		if (unlikely(err))
			SetPageError(page);
		else
			SetPageUptodate(page);

		unlock_page(page);
		/* page could be reclaimed now */
	}
	bio_put(bio);
}

/* prio -- true is used for dir */
43
struct page *__erofs_get_meta_page(struct super_block *sb,
44
				   erofs_blk_t blkaddr, bool prio, bool nofail)
45
{
46 47 48 49 50 51
	struct inode *const bd_inode = sb->s_bdev->bd_inode;
	struct address_space *const mapping = bd_inode->i_mapping;
	/* prefer retrying in the allocator to blindly looping below */
	const gfp_t gfp = mapping_gfp_constraint(mapping, ~__GFP_FS) |
		(nofail ? __GFP_NOFAIL : 0);
	unsigned int io_retries = nofail ? EROFS_IO_MAX_RETRIES_NOFAIL : 0;
52
	struct page *page;
53
	int err;
54 55

repeat:
56
	page = find_or_create_page(mapping, blkaddr, gfp);
57
	if (unlikely(!page)) {
58 59 60 61
		DBG_BUGON(nofail);
		return ERR_PTR(-ENOMEM);
	}
	DBG_BUGON(!PageLocked(page));
62 63 64 65

	if (!PageUptodate(page)) {
		struct bio *bio;

66 67 68 69 70 71
		bio = erofs_grab_bio(sb, blkaddr, 1, read_endio, nofail);
		if (IS_ERR(bio)) {
			DBG_BUGON(nofail);
			err = PTR_ERR(bio);
			goto err_out;
		}
72

73
		err = bio_add_page(bio, page, PAGE_SIZE, 0);
74 75 76 77
		if (unlikely(err != PAGE_SIZE)) {
			err = -EFAULT;
			goto err_out;
		}
78 79

		__submit_bio(bio, REQ_OP_READ,
80
			     REQ_META | (prio ? REQ_PRIO : 0));
81 82 83

		lock_page(page);

84
		/* this page has been truncated by others */
85
		if (unlikely(page->mapping != mapping)) {
86
unlock_repeat:
87 88 89 90 91 92 93
			unlock_page(page);
			put_page(page);
			goto repeat;
		}

		/* more likely a read error */
		if (unlikely(!PageUptodate(page))) {
94 95 96 97 98 99
			if (io_retries) {
				--io_retries;
				goto unlock_repeat;
			}
			err = -EIO;
			goto err_out;
100 101 102
		}
	}
	return page;
103 104 105 106 107

err_out:
	unlock_page(page);
	put_page(page);
	return ERR_PTR(err);
108 109 110
}

static int erofs_map_blocks_flatmode(struct inode *inode,
111 112
				     struct erofs_map_blocks *map,
				     int flags)
113
{
114
	int err = 0;
115 116 117 118
	erofs_blk_t nblocks, lastblk;
	u64 offset = map->m_la;
	struct erofs_vnode *vi = EROFS_V(inode);

C
Chao Yu 已提交
119
	trace_erofs_map_blocks_flatmode_enter(inode, map, flags);
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145

	nblocks = DIV_ROUND_UP(inode->i_size, PAGE_SIZE);
	lastblk = nblocks - is_inode_layout_inline(inode);

	if (unlikely(offset >= inode->i_size)) {
		/* leave out-of-bound access unmapped */
		map->m_flags = 0;
		map->m_plen = 0;
		goto out;
	}

	/* there is no hole in flatmode */
	map->m_flags = EROFS_MAP_MAPPED;

	if (offset < blknr_to_addr(lastblk)) {
		map->m_pa = blknr_to_addr(vi->raw_blkaddr) + map->m_la;
		map->m_plen = blknr_to_addr(lastblk) - offset;
	} else if (is_inode_layout_inline(inode)) {
		/* 2 - inode inline B: inode, [xattrs], inline last blk... */
		struct erofs_sb_info *sbi = EROFS_SB(inode->i_sb);

		map->m_pa = iloc(sbi, vi->nid) + vi->inode_isize +
			vi->xattr_isize + erofs_blkoff(map->m_la);
		map->m_plen = inode->i_size - offset;

		/* inline data should locate in one meta block */
146 147 148 149 150 151
		if (erofs_blkoff(map->m_pa) + map->m_plen > PAGE_SIZE) {
			DBG_BUGON(1);
			err = -EIO;
			goto err_out;
		}

152 153 154
		map->m_flags |= EROFS_MAP_META;
	} else {
		errln("internal error @ nid: %llu (size %llu), m_la 0x%llx",
155
		      vi->nid, inode->i_size, map->m_la);
156 157 158
		DBG_BUGON(1);
		err = -EIO;
		goto err_out;
159 160 161 162
	}

out:
	map->m_llen = map->m_plen;
163 164

err_out:
C
Chao Yu 已提交
165
	trace_erofs_map_blocks_flatmode_exit(inode, map, flags, 0);
166
	return err;
167 168 169
}

int erofs_map_blocks(struct inode *inode,
170
		     struct erofs_map_blocks *map, int flags)
171
{
172
	if (unlikely(is_inode_layout_compression(inode))) {
173
		int err = z_erofs_map_blocks_iter(inode, map, flags);
174

175 176 177 178
		if (map->mpage) {
			put_page(map->mpage);
			map->mpage = NULL;
		}
179 180
		return err;
	}
181 182 183
	return erofs_map_blocks_flatmode(inode, map, flags);
}

184 185 186 187 188 189
static inline struct bio *erofs_read_raw_page(struct bio *bio,
					      struct address_space *mapping,
					      struct page *page,
					      erofs_off_t *last_block,
					      unsigned int nblocks,
					      bool ra)
190 191 192 193 194
{
	struct inode *inode = mapping->host;
	erofs_off_t current_block = (erofs_off_t)page->index;
	int err;

195
	DBG_BUGON(!nblocks);
196 197 198 199 200 201 202 203 204 205 206 207 208

	if (PageUptodate(page)) {
		err = 0;
		goto has_updated;
	}

	if (cleancache_get_page(page) == 0) {
		err = 0;
		SetPageUptodate(page);
		goto has_updated;
	}

	/* note that for readpage case, bio also equals to NULL */
209
	if (bio &&
210 211
	    /* not continuous */
	    *last_block + 1 != current_block) {
212 213 214 215 216
submit_bio_retry:
		__submit_bio(bio, REQ_OP_READ, 0);
		bio = NULL;
	}

217
	if (!bio) {
218 219 220
		struct erofs_map_blocks map = {
			.m_la = blknr_to_addr(current_block),
		};
221
		erofs_blk_t blknr;
222
		unsigned int blkoff;
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237

		err = erofs_map_blocks(inode, &map, EROFS_GET_BLOCKS_RAW);
		if (unlikely(err))
			goto err_out;

		/* zero out the holed page */
		if (unlikely(!(map.m_flags & EROFS_MAP_MAPPED))) {
			zero_user_segment(page, 0, PAGE_SIZE);
			SetPageUptodate(page);

			/* imply err = 0, see erofs_map_blocks */
			goto has_updated;
		}

		/* for RAW access mode, m_plen must be equal to m_llen */
238
		DBG_BUGON(map.m_plen != map.m_llen);
239

240 241 242
		blknr = erofs_blknr(map.m_pa);
		blkoff = erofs_blkoff(map.m_pa);

243 244 245 246 247
		/* deal with inline page */
		if (map.m_flags & EROFS_MAP_META) {
			void *vsrc, *vto;
			struct page *ipage;

248
			DBG_BUGON(map.m_plen > PAGE_SIZE);
249

250
			ipage = erofs_get_meta_page(inode->i_sb, blknr, 0);
251 252 253 254 255 256 257 258

			if (IS_ERR(ipage)) {
				err = PTR_ERR(ipage);
				goto err_out;
			}

			vsrc = kmap_atomic(ipage);
			vto = kmap_atomic(page);
259
			memcpy(vto, vsrc + blkoff, map.m_plen);
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
			memset(vto + map.m_plen, 0, PAGE_SIZE - map.m_plen);
			kunmap_atomic(vto);
			kunmap_atomic(vsrc);
			flush_dcache_page(page);

			SetPageUptodate(page);
			/* TODO: could we unlock the page earlier? */
			unlock_page(ipage);
			put_page(ipage);

			/* imply err = 0, see erofs_map_blocks */
			goto has_updated;
		}

		/* pa must be block-aligned for raw reading */
275
		DBG_BUGON(erofs_blkoff(map.m_pa));
276 277 278 279 280 281 282

		/* max # of continuous pages */
		if (nblocks > DIV_ROUND_UP(map.m_plen, PAGE_SIZE))
			nblocks = DIV_ROUND_UP(map.m_plen, PAGE_SIZE);
		if (nblocks > BIO_MAX_PAGES)
			nblocks = BIO_MAX_PAGES;

283
		bio = erofs_grab_bio(inode->i_sb,
284
				     blknr, nblocks, read_endio, false);
285 286 287 288 289 290

		if (IS_ERR(bio)) {
			err = PTR_ERR(bio);
			bio = NULL;
			goto err_out;
		}
291 292 293 294 295 296 297 298 299 300
	}

	err = bio_add_page(bio, page, PAGE_SIZE, 0);
	/* out of the extent or bio is full */
	if (err < PAGE_SIZE)
		goto submit_bio_retry;

	*last_block = current_block;

	/* shift in advance in case of it followed by too many gaps */
301
	if (bio->bi_iter.bi_size >= bio->bi_max_vecs * PAGE_SIZE) {
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
		/* err should reassign to 0 after submitting */
		err = 0;
		goto submit_bio_out;
	}

	return bio;

err_out:
	/* for sync reading, set page error immediately */
	if (!ra) {
		SetPageError(page);
		ClearPageUptodate(page);
	}
has_updated:
	unlock_page(page);

	/* if updated manually, continuous pages has a gap */
319
	if (bio)
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
submit_bio_out:
		__submit_bio(bio, REQ_OP_READ, 0);

	return unlikely(err) ? ERR_PTR(err) : NULL;
}

/*
 * since we dont have write or truncate flows, so no inode
 * locking needs to be held at the moment.
 */
static int erofs_raw_access_readpage(struct file *file, struct page *page)
{
	erofs_off_t last_block;
	struct bio *bio;

C
Chao Yu 已提交
335 336
	trace_erofs_readpage(page, true);

337
	bio = erofs_read_raw_page(NULL, page->mapping,
338
				  page, &last_block, 1, false);
339 340 341 342

	if (IS_ERR(bio))
		return PTR_ERR(bio);

343
	DBG_BUGON(bio);	/* since we have only one bio -- must be NULL */
344 345 346 347
	return 0;
}

static int erofs_raw_access_readpages(struct file *filp,
348 349 350
				      struct address_space *mapping,
				      struct list_head *pages,
				      unsigned int nr_pages)
351 352 353 354
{
	erofs_off_t last_block;
	struct bio *bio = NULL;
	gfp_t gfp = readahead_gfp_mask(mapping);
C
Chao Yu 已提交
355 356 357
	struct page *page = list_last_entry(pages, struct page, lru);

	trace_erofs_readpages(mapping->host, page, nr_pages, true);
358 359

	for (; nr_pages; --nr_pages) {
C
Chao Yu 已提交
360
		page = list_entry(pages->prev, struct page, lru);
361 362 363 364 365 366

		prefetchw(&page->flags);
		list_del(&page->lru);

		if (!add_to_page_cache_lru(page, mapping, page->index, gfp)) {
			bio = erofs_read_raw_page(bio, mapping, page,
367
						  &last_block, nr_pages, true);
368 369 370 371

			/* all the page errors are ignored when readahead */
			if (IS_ERR(bio)) {
				pr_err("%s, readahead error at page %lu of nid %llu\n",
372 373
				       __func__, page->index,
				       EROFS_V(mapping->host)->nid);
374 375 376 377 378 379 380 381

				bio = NULL;
			}
		}

		/* pages could still be locked */
		put_page(page);
	}
382
	DBG_BUGON(!list_empty(pages));
383 384

	/* the rare case (end in gaps) */
385
	if (unlikely(bio))
386 387 388 389 390 391 392 393 394 395
		__submit_bio(bio, REQ_OP_READ, 0);
	return 0;
}

/* for uncompressed (aligned) files and raw access for other files */
const struct address_space_operations erofs_raw_access_aops = {
	.readpage = erofs_raw_access_readpage,
	.readpages = erofs_raw_access_readpages,
};