addr.c 54.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2
#include <linux/ceph/ceph_debug.h>
Sage Weil's avatar
Sage Weil committed
3 4 5 6

#include <linux/backing-dev.h>
#include <linux/fs.h>
#include <linux/mm.h>
7
#include <linux/swap.h>
Sage Weil's avatar
Sage Weil committed
8
#include <linux/pagemap.h>
9
#include <linux/slab.h>
Sage Weil's avatar
Sage Weil committed
10 11
#include <linux/pagevec.h>
#include <linux/task_io_accounting_ops.h>
12
#include <linux/signal.h>
13
#include <linux/iversion.h>
14
#include <linux/ktime.h>
15
#include <linux/netfs.h>
Sage Weil's avatar
Sage Weil committed
16 17

#include "super.h"
18
#include "mds_client.h"
19
#include "cache.h"
20
#include "metric.h"
21
#include <linux/ceph/osd_client.h>
22
#include <linux/ceph/striper.h>
Sage Weil's avatar
Sage Weil committed
23 24 25 26 27 28 29 30 31 32 33 34

/*
 * Ceph address space ops.
 *
 * There are a few funny things going on here.
 *
 * The page->private field is used to reference a struct
 * ceph_snap_context for _every_ dirty page.  This indicates which
 * snapshot the page was logically dirtied in, and thus which snap
 * context needs to be associated with the osd write during writeback.
 *
 * Similarly, struct ceph_inode_info maintains a set of counters to
Lucas De Marchi's avatar
Lucas De Marchi committed
35
 * count dirty pages on the inode.  In the absence of snapshots,
Sage Weil's avatar
Sage Weil committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
 * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
 *
 * When a snapshot is taken (that is, when the client receives
 * notification that a snapshot was taken), each inode with caps and
 * with dirty pages (dirty pages implies there is a cap) gets a new
 * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
 * order, new snaps go to the tail).  The i_wrbuffer_ref_head count is
 * moved to capsnap->dirty. (Unless a sync write is currently in
 * progress.  In that case, the capsnap is said to be "pending", new
 * writes cannot start, and the capsnap isn't "finalized" until the
 * write completes (or fails) and a final size/mtime for the inode for
 * that snap can be settled upon.)  i_wrbuffer_ref_head is reset to 0.
 *
 * On writeback, we must submit writes to the osd IN SNAP ORDER.  So,
 * we look for the first capsnap in i_cap_snaps and write out pages in
 * that snap context _only_.  Then we move on to the next capsnap,
 * eventually reaching the "live" or "head" context (i.e., pages that
 * are not yet snapped) and are writing the most recently dirtied
 * pages.
 *
 * Invalidate and so forth must take care to ensure the dirty page
 * accounting is preserved.
 */

60 61 62 63 64
#define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
#define CONGESTION_OFF_THRESH(congestion_kb)				\
	(CONGESTION_ON_THRESH(congestion_kb) -				\
	 (CONGESTION_ON_THRESH(congestion_kb) >> 2))

65
static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
66
					struct folio *folio, void **_fsdata);
67

68 69 70 71 72 73
static inline struct ceph_snap_context *page_snap_context(struct page *page)
{
	if (PagePrivate(page))
		return (void *)page->private;
	return NULL;
}
Sage Weil's avatar
Sage Weil committed
74 75 76 77 78 79 80 81 82 83 84 85

/*
 * Dirty a page.  Optimistically adjust accounting, on the assumption
 * that we won't race with invalidate.  If we do, readjust.
 */
static int ceph_set_page_dirty(struct page *page)
{
	struct address_space *mapping = page->mapping;
	struct inode *inode;
	struct ceph_inode_info *ci;
	struct ceph_snap_context *snapc;

86
	if (PageDirty(page)) {
Sage Weil's avatar
Sage Weil committed
87 88
		dout("%p set_page_dirty %p idx %lu -- already dirty\n",
		     mapping->host, page, page->index);
89
		BUG_ON(!PagePrivate(page));
Sage Weil's avatar
Sage Weil committed
90 91 92 93 94 95 96
		return 0;
	}

	inode = mapping->host;
	ci = ceph_inode(inode);

	/* dirty the head */
97
	spin_lock(&ci->i_ceph_lock);
98 99 100 101 102 103 104 105 106 107 108 109 110
	BUG_ON(ci->i_wr_ref == 0); // caller should hold Fw reference
	if (__ceph_have_pending_cap_snap(ci)) {
		struct ceph_cap_snap *capsnap =
				list_last_entry(&ci->i_cap_snaps,
						struct ceph_cap_snap,
						ci_item);
		snapc = ceph_get_snap_context(capsnap->context);
		capsnap->dirty_pages++;
	} else {
		BUG_ON(!ci->i_head_snapc);
		snapc = ceph_get_snap_context(ci->i_head_snapc);
		++ci->i_wrbuffer_ref_head;
	}
Sage Weil's avatar
Sage Weil committed
111
	if (ci->i_wrbuffer_ref == 0)
112
		ihold(inode);
Sage Weil's avatar
Sage Weil committed
113 114 115 116 117 118 119
	++ci->i_wrbuffer_ref;
	dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d "
	     "snapc %p seq %lld (%d snaps)\n",
	     mapping->host, page, page->index,
	     ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1,
	     ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
	     snapc, snapc->seq, snapc->num_snaps);
120
	spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
121

122 123
	/*
	 * Reference snap context in page->private.  Also set
124
	 * PagePrivate so that we get invalidate_folio callback.
125 126
	 */
	BUG_ON(PagePrivate(page));
127
	attach_page_private(page, snapc);
Sage Weil's avatar
Sage Weil committed
128

129
	return ceph_fscache_set_page_dirty(page);
Sage Weil's avatar
Sage Weil committed
130 131 132
}

/*
133 134 135
 * If we are truncating the full folio (i.e. offset == 0), adjust the
 * dirty folio counters appropriately.  Only called if there is private
 * data on the folio.
Sage Weil's avatar
Sage Weil committed
136
 */
137 138
static void ceph_invalidate_folio(struct folio *folio, size_t offset,
				size_t length)
Sage Weil's avatar
Sage Weil committed
139
{
140
	struct inode *inode;
Sage Weil's avatar
Sage Weil committed
141
	struct ceph_inode_info *ci;
142
	struct ceph_snap_context *snapc;
Sage Weil's avatar
Sage Weil committed
143

144
	inode = folio->mapping->host;
145 146
	ci = ceph_inode(inode);

147 148 149
	if (offset != 0 || length != folio_size(folio)) {
		dout("%p invalidate_folio idx %lu partial dirty page %zu~%zu\n",
		     inode, folio->index, offset, length);
150 151
		return;
	}
152

153 154 155 156
	WARN_ON(!folio_test_locked(folio));
	if (folio_get_private(folio)) {
		dout("%p invalidate_folio idx %lu full dirty page\n",
		     inode, folio->index);
157

158
		snapc = folio_detach_private(folio);
159 160 161
		ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
		ceph_put_snap_context(snapc);
	}
162

163
	folio_wait_fscache(folio);
Sage Weil's avatar
Sage Weil committed
164 165
}

166
static int ceph_releasepage(struct page *page, gfp_t gfp)
Sage Weil's avatar
Sage Weil committed
167
{
168 169 170 171 172 173 174 175
	struct inode *inode = page->mapping->host;

	dout("%llx:%llx releasepage %p idx %lu (%sdirty)\n",
	     ceph_vinop(inode), page,
	     page->index, PageDirty(page) ? "" : "not ");

	if (PagePrivate(page))
		return 0;
176

177
	if (PageFsCache(page)) {
178
		if (current_is_kswapd() || !(gfp & __GFP_FS))
179 180 181
			return 0;
		wait_on_page_fscache(page);
	}
182 183
	ceph_fscache_note_page_release(inode);
	return 1;
Sage Weil's avatar
Sage Weil committed
184 185
}

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
static void ceph_netfs_expand_readahead(struct netfs_read_request *rreq)
{
	struct inode *inode = rreq->mapping->host;
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_file_layout *lo = &ci->i_layout;
	u32 blockoff;
	u64 blockno;

	/* Expand the start downward */
	blockno = div_u64_rem(rreq->start, lo->stripe_unit, &blockoff);
	rreq->start = blockno * lo->stripe_unit;
	rreq->len += blockoff;

	/* Now, round up the length to the next block */
	rreq->len = roundup(rreq->len, lo->stripe_unit);
}

static bool ceph_netfs_clamp_length(struct netfs_read_subrequest *subreq)
{
	struct inode *inode = subreq->rreq->mapping->host;
	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
	struct ceph_inode_info *ci = ceph_inode(inode);
	u64 objno, objoff;
	u32 xlen;

	/* Truncate the extent at the end of the current block */
	ceph_calc_file_object_mapping(&ci->i_layout, subreq->start, subreq->len,
				      &objno, &objoff, &xlen);
	subreq->len = min(xlen, fsc->mount_options->rsize);
	return true;
}

static void finish_netfs_read(struct ceph_osd_request *req)
{
	struct ceph_fs_client *fsc = ceph_inode_to_client(req->r_inode);
	struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
	struct netfs_read_subrequest *subreq = req->r_priv;
	int num_pages;
	int err = req->r_result;

Xiubo Li's avatar
Xiubo Li committed
226
	ceph_update_read_metrics(&fsc->mdsc->metric, req->r_start_latency,
Xiubo Li's avatar
Xiubo Li committed
227
				 req->r_end_latency, osd_data->length, err);
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299

	dout("%s: result %d subreq->len=%zu i_size=%lld\n", __func__, req->r_result,
	     subreq->len, i_size_read(req->r_inode));

	/* no object means success but no data */
	if (err == -ENOENT)
		err = 0;
	else if (err == -EBLOCKLISTED)
		fsc->blocklisted = true;

	if (err >= 0 && err < subreq->len)
		__set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);

	netfs_subreq_terminated(subreq, err, true);

	num_pages = calc_pages_for(osd_data->alignment, osd_data->length);
	ceph_put_page_vector(osd_data->pages, num_pages, false);
	iput(req->r_inode);
}

static void ceph_netfs_issue_op(struct netfs_read_subrequest *subreq)
{
	struct netfs_read_request *rreq = subreq->rreq;
	struct inode *inode = rreq->mapping->host;
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
	struct ceph_osd_request *req;
	struct ceph_vino vino = ceph_vino(inode);
	struct iov_iter iter;
	struct page **pages;
	size_t page_off;
	int err = 0;
	u64 len = subreq->len;

	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout, vino, subreq->start, &len,
			0, 1, CEPH_OSD_OP_READ,
			CEPH_OSD_FLAG_READ | fsc->client->osdc.client->options->read_from_replica,
			NULL, ci->i_truncate_seq, ci->i_truncate_size, false);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		req = NULL;
		goto out;
	}

	dout("%s: pos=%llu orig_len=%zu len=%llu\n", __func__, subreq->start, subreq->len, len);
	iov_iter_xarray(&iter, READ, &rreq->mapping->i_pages, subreq->start, len);
	err = iov_iter_get_pages_alloc(&iter, &pages, len, &page_off);
	if (err < 0) {
		dout("%s: iov_ter_get_pages_alloc returned %d\n", __func__, err);
		goto out;
	}

	/* should always give us a page-aligned read */
	WARN_ON_ONCE(page_off);
	len = err;

	osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0, false, false);
	req->r_callback = finish_netfs_read;
	req->r_priv = subreq;
	req->r_inode = inode;
	ihold(inode);

	err = ceph_osdc_start_request(req->r_osdc, req, false);
	if (err)
		iput(inode);
out:
	ceph_osdc_put_request(req);
	if (err)
		netfs_subreq_terminated(subreq, err, false);
	dout("%s: result %d\n", __func__, err);
}

300 301 302 303 304 305 306 307 308 309
static void ceph_readahead_cleanup(struct address_space *mapping, void *priv)
{
	struct inode *inode = mapping->host;
	struct ceph_inode_info *ci = ceph_inode(inode);
	int got = (uintptr_t)priv;

	if (got)
		ceph_put_cap_refs(ci, got);
}

310
static const struct netfs_read_request_ops ceph_netfs_read_ops = {
311 312 313 314 315
	.is_cache_enabled	= ceph_is_cache_enabled,
	.begin_cache_operation	= ceph_begin_cache_operation,
	.issue_op		= ceph_netfs_issue_op,
	.expand_readahead	= ceph_netfs_expand_readahead,
	.clamp_length		= ceph_netfs_clamp_length,
316
	.check_write_begin	= ceph_netfs_check_write_begin,
317
	.cleanup		= ceph_readahead_cleanup,
318 319 320
};

/* read a single page, without unlocking it. */
321
static int ceph_readpage(struct file *file, struct page *subpage)
322
{
323
	struct folio *folio = page_folio(subpage);
324 325 326
	struct inode *inode = file_inode(file);
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_vino vino = ceph_vino(inode);
327 328
	size_t len = folio_size(folio);
	u64 off = folio_file_pos(folio);
329 330 331 332 333 334 335

	if (ci->i_inline_version != CEPH_INLINE_NONE) {
		/*
		 * Uptodate inline data should have been added
		 * into page cache while getting Fcr caps.
		 */
		if (off == 0) {
336
			folio_unlock(folio);
337 338
			return -EINVAL;
		}
339 340 341
		zero_user_segment(&folio->page, 0, folio_size(folio));
		folio_mark_uptodate(folio);
		folio_unlock(folio);
342 343 344
		return 0;
	}

345 346
	dout("readpage ino %llx.%llx file %p off %llu len %zu folio %p index %lu\n",
	     vino.ino, vino.snap, file, off, len, folio, folio_index(folio));
347

348
	return netfs_readpage(file, folio, &ceph_netfs_read_ops, NULL);
349 350
}

351
static void ceph_readahead(struct readahead_control *ractl)
Sage Weil's avatar
Sage Weil committed
352
{
353 354 355
	struct inode *inode = file_inode(ractl->file);
	struct ceph_file_info *fi = ractl->file->private_data;
	struct ceph_rw_context *rw_ctx;
356 357 358
	int got = 0;
	int ret = 0;

359 360 361 362
	if (ceph_inode(inode)->i_inline_version != CEPH_INLINE_NONE)
		return;

	rw_ctx = ceph_find_rw_context(fi);
363
	if (!rw_ctx) {
364 365 366 367
		/*
		 * readahead callers do not necessarily hold Fcb caps
		 * (e.g. fadvise, madvise).
		 */
368
		int want = CEPH_CAP_FILE_CACHE;
369 370 371

		ret = ceph_try_get_caps(inode, CEPH_CAP_FILE_RD, want, true, &got);
		if (ret < 0)
372
			dout("start_read %p, error getting cap\n", inode);
373
		else if (!(got & want))
374
			dout("start_read %p, no cache cap\n", inode);
Sage Weil's avatar
Sage Weil committed
375

376 377
		if (ret <= 0)
			return;
378
	}
379
	netfs_readahead(ractl, &ceph_netfs_read_ops, (void *)(uintptr_t)got);
Sage Weil's avatar
Sage Weil committed
380 381
}

382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
#ifdef CONFIG_CEPH_FSCACHE
static void ceph_set_page_fscache(struct page *page)
{
	set_page_fscache(page);
}

static void ceph_fscache_write_terminated(void *priv, ssize_t error, bool was_async)
{
	struct inode *inode = priv;

	if (IS_ERR_VALUE(error) && error != -ENOBUFS)
		ceph_fscache_invalidate(inode, false);
}

static void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
{
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct fscache_cookie *cookie = ceph_fscache_cookie(ci);

	fscache_write_to_cache(cookie, inode->i_mapping, off, len, i_size_read(inode),
			       ceph_fscache_write_terminated, inode, caching);
}
#else
static inline void ceph_set_page_fscache(struct page *page)
{
}

static inline void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
{
}
#endif /* CONFIG_CEPH_FSCACHE */

414 415 416 417 418 419
struct ceph_writeback_ctl
{
	loff_t i_size;
	u64 truncate_size;
	u32 truncate_seq;
	bool size_stable;
420
	bool head_snapc;
421 422
};

Sage Weil's avatar
Sage Weil committed
423 424 425 426
/*
 * Get ref for the oldest snapc for an inode with dirty data... that is, the
 * only snap context we are allowed to write back.
 */
427
static struct ceph_snap_context *
428 429
get_oldest_context(struct inode *inode, struct ceph_writeback_ctl *ctl,
		   struct ceph_snap_context *page_snapc)
Sage Weil's avatar
Sage Weil committed
430 431 432 433 434
{
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_snap_context *snapc = NULL;
	struct ceph_cap_snap *capsnap = NULL;

435
	spin_lock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
436 437 438
	list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
		dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap,
		     capsnap->context, capsnap->dirty_pages);
439 440 441 442 443 444 445 446 447 448 449 450 451 452
		if (!capsnap->dirty_pages)
			continue;

		/* get i_size, truncate_{seq,size} for page_snapc? */
		if (snapc && capsnap->context != page_snapc)
			continue;

		if (ctl) {
			if (capsnap->writing) {
				ctl->i_size = i_size_read(inode);
				ctl->size_stable = false;
			} else {
				ctl->i_size = capsnap->size;
				ctl->size_stable = true;
453
			}
454 455
			ctl->truncate_size = capsnap->truncate_size;
			ctl->truncate_seq = capsnap->truncate_seq;
456
			ctl->head_snapc = false;
Sage Weil's avatar
Sage Weil committed
457
		}
458 459 460 461 462 463 464 465 466

		if (snapc)
			break;

		snapc = ceph_get_snap_context(capsnap->context);
		if (!page_snapc ||
		    page_snapc == snapc ||
		    page_snapc->seq > snapc->seq)
			break;
Sage Weil's avatar
Sage Weil committed
467
	}
468
	if (!snapc && ci->i_wrbuffer_ref_head) {
469
		snapc = ceph_get_snap_context(ci->i_head_snapc);
Sage Weil's avatar
Sage Weil committed
470 471
		dout(" head snapc %p has %d dirty pages\n",
		     snapc, ci->i_wrbuffer_ref_head);
472 473 474 475 476
		if (ctl) {
			ctl->i_size = i_size_read(inode);
			ctl->truncate_size = ci->i_truncate_size;
			ctl->truncate_seq = ci->i_truncate_seq;
			ctl->size_stable = false;
477
			ctl->head_snapc = true;
478
		}
Sage Weil's avatar
Sage Weil committed
479
	}
480
	spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
481 482 483
	return snapc;
}

484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
static u64 get_writepages_data_length(struct inode *inode,
				      struct page *page, u64 start)
{
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_snap_context *snapc = page_snap_context(page);
	struct ceph_cap_snap *capsnap = NULL;
	u64 end = i_size_read(inode);

	if (snapc != ci->i_head_snapc) {
		bool found = false;
		spin_lock(&ci->i_ceph_lock);
		list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
			if (capsnap->context == snapc) {
				if (!capsnap->writing)
					end = capsnap->size;
				found = true;
				break;
			}
		}
		spin_unlock(&ci->i_ceph_lock);
		WARN_ON(!found);
	}
506 507
	if (end > page_offset(page) + thp_size(page))
		end = page_offset(page) + thp_size(page);
508 509 510
	return end > start ? end - start : 0;
}

Sage Weil's avatar
Sage Weil committed
511 512 513
/*
 * Write a single page, but leave the page locked.
 *
514
 * If we get a write error, mark the mapping for error, but still adjust the
Sage Weil's avatar
Sage Weil committed
515 516 517 518
 * dirty page accounting (i.e., page is no longer dirty).
 */
static int writepage_nounlock(struct page *page, struct writeback_control *wbc)
{
519
	struct folio *folio = page_folio(page);
520 521 522
	struct inode *inode = page->mapping->host;
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
523
	struct ceph_snap_context *snapc, *oldest;
524
	loff_t page_off = page_offset(page);
525
	int err;
526
	loff_t len = thp_size(page);
527
	struct ceph_writeback_ctl ceph_wbc;
528 529
	struct ceph_osd_client *osdc = &fsc->client->osdc;
	struct ceph_osd_request *req;
530
	bool caching = ceph_is_cache_enabled(inode);
Sage Weil's avatar
Sage Weil committed
531 532 533 534

	dout("writepage %p idx %lu\n", page, page->index);

	/* verify this is a writeable snap context */
535
	snapc = page_snap_context(page);
536
	if (!snapc) {
Sage Weil's avatar
Sage Weil committed
537
		dout("writepage %p page %p not dirty?\n", inode, page);
538
		return 0;
Sage Weil's avatar
Sage Weil committed
539
	}
540
	oldest = get_oldest_context(inode, &ceph_wbc, snapc);
541
	if (snapc->seq > oldest->seq) {
Sage Weil's avatar
Sage Weil committed
542
		dout("writepage %p page %p snapc %p not writeable - noop\n",
543
		     inode, page, snapc);
Sage Weil's avatar
Sage Weil committed
544
		/* we should only noop if called by kswapd */
545
		WARN_ON(!(current->flags & PF_MEMALLOC));
546
		ceph_put_snap_context(oldest);
547
		redirty_page_for_writepage(wbc, page);
548
		return 0;
Sage Weil's avatar
Sage Weil committed
549
	}
550
	ceph_put_snap_context(oldest);
Sage Weil's avatar
Sage Weil committed
551 552

	/* is this a partial page at end of file? */
553
	if (page_off >= ceph_wbc.i_size) {
554 555 556
		dout("folio at %lu beyond eof %llu\n", folio->index,
				ceph_wbc.i_size);
		folio_invalidate(folio, 0, folio_size(folio));
557
		return 0;
558
	}
559

560 561
	if (ceph_wbc.i_size < page_off + len)
		len = ceph_wbc.i_size - page_off;
Sage Weil's avatar
Sage Weil committed
562

563
	dout("writepage %p page %p index %lu on %llu~%llu snapc %p seq %lld\n",
564
	     inode, page, page->index, page_off, len, snapc, snapc->seq);
Sage Weil's avatar
Sage Weil committed
565

566
	if (atomic_long_inc_return(&fsc->writeback_count) >
567
	    CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
568
		set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
569

570 571 572 573
	req = ceph_osdc_new_request(osdc, &ci->i_layout, ceph_vino(inode), page_off, &len, 0, 1,
				    CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE, snapc,
				    ceph_wbc.truncate_seq, ceph_wbc.truncate_size,
				    true);
574
	if (IS_ERR(req))
575
		return PTR_ERR(req);
576 577 578 579 580

	set_page_writeback(page);
	if (caching)
		ceph_set_page_fscache(page);
	ceph_fscache_write_to_cache(inode, page_off, len, caching);
581 582

	/* it may be a short write due to an object boundary */
583
	WARN_ON_ONCE(len > thp_size(page));
584 585 586 587 588 589 590 591
	osd_req_op_extent_osd_data_pages(req, 0, &page, len, 0, false, false);
	dout("writepage %llu~%llu (%llu bytes)\n", page_off, len, len);

	req->r_mtime = inode->i_mtime;
	err = ceph_osdc_start_request(osdc, req, true);
	if (!err)
		err = ceph_osdc_wait_request(osdc, req);

Xiubo Li's avatar
Xiubo Li committed
592
	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
Xiubo Li's avatar
Xiubo Li committed
593
				  req->r_end_latency, len, err);
594 595 596 597 598

	ceph_osdc_put_request(req);
	if (err == 0)
		err = len;

Sage Weil's avatar
Sage Weil committed
599
	if (err < 0) {
600 601 602 603 604 605 606 607
		struct writeback_control tmp_wbc;
		if (!wbc)
			wbc = &tmp_wbc;
		if (err == -ERESTARTSYS) {
			/* killed by SIGKILL */
			dout("writepage interrupted page %p\n", page);
			redirty_page_for_writepage(wbc, page);
			end_page_writeback(page);
608
			return err;
609
		}
610 611
		if (err == -EBLOCKLISTED)
			fsc->blocklisted = true;
612 613
		dout("writepage setting page/mapping error %d %p\n",
		     err, page);
Sage Weil's avatar
Sage Weil committed
614
		mapping_set_error(&inode->i_data, err);
615
		wbc->pages_skipped++;
Sage Weil's avatar
Sage Weil committed
616 617 618 619
	} else {
		dout("writepage cleaned page %p\n", page);
		err = 0;  /* vfs expects us to return 0 */
	}
620 621
	oldest = detach_page_private(page);
	WARN_ON_ONCE(oldest != snapc);
Sage Weil's avatar
Sage Weil committed
622 623
	end_page_writeback(page);
	ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
624
	ceph_put_snap_context(snapc);  /* page's reference */
625 626 627 628 629

	if (atomic_long_dec_return(&fsc->writeback_count) <
	    CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
		clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);

Sage Weil's avatar
Sage Weil committed
630 631 632 633 634
	return err;
}

static int ceph_writepage(struct page *page, struct writeback_control *wbc)
{
635 636 637
	int err;
	struct inode *inode = page->mapping->host;
	BUG_ON(!inode);
638
	ihold(inode);
639 640 641

	wait_on_page_fscache(page);

642
	err = writepage_nounlock(page, wbc);
643 644 645 646 647
	if (err == -ERESTARTSYS) {
		/* direct memory reclaimer was killed by SIGKILL. return 0
		 * to prevent caller from setting mapping/page error */
		err = 0;
	}
Sage Weil's avatar
Sage Weil committed
648
	unlock_page(page);
649
	iput(inode);
Sage Weil's avatar
Sage Weil committed
650 651 652 653 654 655 656 657 658
	return err;
}

/*
 * async writeback completion handler.
 *
 * If we get an error, set the mapping error bit, but not the individual
 * page error bits.
 */
659
static void writepages_finish(struct ceph_osd_request *req)
Sage Weil's avatar
Sage Weil committed
660 661 662
{
	struct inode *inode = req->r_inode;
	struct ceph_inode_info *ci = ceph_inode(inode);
663
	struct ceph_osd_data *osd_data;
Sage Weil's avatar
Sage Weil committed
664
	struct page *page;
Yan, Zheng's avatar
Yan, Zheng committed
665 666 667
	int num_pages, total_pages = 0;
	int i, j;
	int rc = req->r_result;
Sage Weil's avatar
Sage Weil committed
668 669
	struct ceph_snap_context *snapc = req->r_snapc;
	struct address_space *mapping = inode->i_mapping;
670
	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Xiubo Li's avatar
Xiubo Li committed
671
	unsigned int len = 0;
Yan, Zheng's avatar
Yan, Zheng committed
672
	bool remove_page;
Sage Weil's avatar
Sage Weil committed
673

Yan, Zheng's avatar
Yan, Zheng committed
674
	dout("writepages_finish %p rc %d\n", inode, rc);
675
	if (rc < 0) {
Sage Weil's avatar
Sage Weil committed
676
		mapping_set_error(mapping, rc);
677
		ceph_set_error_write(ci);
678 679
		if (rc == -EBLOCKLISTED)
			fsc->blocklisted = true;
680 681 682
	} else {
		ceph_clear_error_write(ci);
	}
Yan, Zheng's avatar
Yan, Zheng committed
683 684 685 686 687 688 689 690 691

	/*
	 * We lost the cache cap, need to truncate the page before
	 * it is unlocked, otherwise we'd truncate it later in the
	 * page truncation thread, possibly losing some data that
	 * raced its way in
	 */
	remove_page = !(ceph_caps_issued(ci) &
			(CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO));
Sage Weil's avatar
Sage Weil committed
692 693

	/* clean all pages */
Yan, Zheng's avatar
Yan, Zheng committed
694 695 696
	for (i = 0; i < req->r_num_ops; i++) {
		if (req->r_ops[i].op != CEPH_OSD_OP_WRITE)
			break;
697

Yan, Zheng's avatar
Yan, Zheng committed
698 699
		osd_data = osd_req_op_extent_osd_data(req, i);
		BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
Xiubo Li's avatar
Xiubo Li committed
700
		len += osd_data->length;
Yan, Zheng's avatar
Yan, Zheng committed
701 702 703 704 705 706 707 708 709 710 711
		num_pages = calc_pages_for((u64)osd_data->alignment,
					   (u64)osd_data->length);
		total_pages += num_pages;
		for (j = 0; j < num_pages; j++) {
			page = osd_data->pages[j];
			BUG_ON(!page);
			WARN_ON(!PageUptodate(page));

			if (atomic_long_dec_return(&fsc->writeback_count) <
			     CONGESTION_OFF_THRESH(
					fsc->mount_options->congestion_kb))
712
				clear_bdi_congested(inode_to_bdi(inode),
Yan, Zheng's avatar
Yan, Zheng committed
713 714
						    BLK_RW_ASYNC);

715
			ceph_put_snap_context(detach_page_private(page));
Yan, Zheng's avatar
Yan, Zheng committed
716
			end_page_writeback(page);
717
			dout("unlocking %p\n", page);
Yan, Zheng's avatar
Yan, Zheng committed
718 719 720 721 722 723 724 725 726

			if (remove_page)
				generic_error_remove_page(inode->i_mapping,
							  page);

			unlock_page(page);
		}
		dout("writepages_finish %p wrote %llu bytes cleaned %d pages\n",
		     inode, osd_data->length, rc >= 0 ? num_pages : 0);
727

728
		release_pages(osd_data->pages, num_pages);
Sage Weil's avatar
Sage Weil committed
729 730
	}

Xiubo Li's avatar
Xiubo Li committed
731 732 733
	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
				  req->r_end_latency, len, rc);

Yan, Zheng's avatar
Yan, Zheng committed
734 735 736
	ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc);

	osd_data = osd_req_op_extent_osd_data(req, 0);
737
	if (osd_data->pages_from_pool)
738
		mempool_free(osd_data->pages, ceph_wb_pagevec_pool);
Sage Weil's avatar
Sage Weil committed
739
	else
740
		kfree(osd_data->pages);
Sage Weil's avatar
Sage Weil committed
741 742 743 744 745 746 747 748 749 750 751
	ceph_osdc_put_request(req);
}

/*
 * initiate async writeback
 */
static int ceph_writepages_start(struct address_space *mapping,
				 struct writeback_control *wbc)
{
	struct inode *inode = mapping->host;
	struct ceph_inode_info *ci = ceph_inode(inode);
752 753
	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
	struct ceph_vino vino = ceph_vino(inode);
754
	pgoff_t index, start_index, end = -1;
755
	struct ceph_snap_context *snapc = NULL, *last_snapc = NULL, *pgsnapc;
Sage Weil's avatar
Sage Weil committed
756 757
	struct pagevec pvec;
	int rc = 0;
Fabian Frederick's avatar
Fabian Frederick committed
758
	unsigned int wsize = i_blocksize(inode);
Sage Weil's avatar
Sage Weil committed
759
	struct ceph_osd_request *req = NULL;
760
	struct ceph_writeback_ctl ceph_wbc;
761
	bool should_loop, range_whole = false;
762
	bool done = false;
763
	bool caching = ceph_is_cache_enabled(inode);
Sage Weil's avatar
Sage Weil committed
764

Yanhu Cao's avatar
Yanhu Cao committed
765
	dout("writepages_start %p (mode=%s)\n", inode,
Sage Weil's avatar
Sage Weil committed
766 767 768
	     wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
	     (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));

769
	if (ceph_inode_is_shutdown(inode)) {
770 771 772 773 774
		if (ci->i_wrbuffer_ref > 0) {
			pr_warn_ratelimited(
				"writepage_start %p %lld forced umount\n",
				inode, ceph_ino(inode));
		}
775
		mapping_set_error(mapping, -EIO);
Sage Weil's avatar
Sage Weil committed
776 777
		return -EIO; /* we're in a forced umount, don't write! */
	}
Yan, Zheng's avatar
Yan, Zheng committed
778
	if (fsc->mount_options->wsize < wsize)
779
		wsize = fsc->mount_options->wsize;
Sage Weil's avatar
Sage Weil committed
780

781
	pagevec_init(&pvec);
Sage Weil's avatar
Sage Weil committed
782

783
	start_index = wbc->range_cyclic ? mapping->writeback_index : 0;
784
	index = start_index;
Sage Weil's avatar
Sage Weil committed
785 786 787

retry:
	/* find oldest snap context with dirty data */
788
	snapc = get_oldest_context(inode, &ceph_wbc, NULL);
Sage Weil's avatar
Sage Weil committed
789 790 791 792 793 794 795 796
	if (!snapc) {
		/* hmm, why does writepages get called when there
		   is no dirty data? */
		dout(" no snap context with dirty data?\n");
		goto out;
	}
	dout(" oldest snapc is %p seq %lld (%d snaps)\n",
	     snapc, snapc->seq, snapc->num_snaps);
797

798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
	should_loop = false;
	if (ceph_wbc.head_snapc && snapc != last_snapc) {
		/* where to start/end? */
		if (wbc->range_cyclic) {
			index = start_index;
			end = -1;
			if (index > 0)
				should_loop = true;
			dout(" cyclic, start at %lu\n", index);
		} else {
			index = wbc->range_start >> PAGE_SHIFT;
			end = wbc->range_end >> PAGE_SHIFT;
			if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
				range_whole = true;
			dout(" not cyclic, %lu to %lu\n", index, end);
		}
	} else if (!ceph_wbc.head_snapc) {
		/* Do not respect wbc->range_{start,end}. Dirty pages
		 * in that range can be associated with newer snapc.
		 * They are not writeable until we write all dirty pages
		 * associated with 'snapc' get written */
819
		if (index > 0)
820 821
			should_loop = true;
		dout(" non-head snapc, range whole\n");
Sage Weil's avatar
Sage Weil committed
822
	}
823 824

	ceph_put_snap_context(last_snapc);
Sage Weil's avatar
Sage Weil committed
825 826
	last_snapc = snapc;

827
	while (!done && index <= end) {
Yan, Zheng's avatar
Yan, Zheng committed
828
		int num_ops = 0, op_idx;
829
		unsigned i, pvec_pages, max_pages, locked_pages = 0;
Yan, Zheng's avatar
Yan, Zheng committed
830
		struct page **pages = NULL, **data_pages;
Sage Weil's avatar
Sage Weil committed
831
		struct page *page;
832
		pgoff_t strip_unit_end = 0;
Yan, Zheng's avatar
Yan, Zheng committed
833
		u64 offset = 0, len = 0;
834
		bool from_pool = false;
Sage Weil's avatar
Sage Weil committed
835

836
		max_pages = wsize >> PAGE_SHIFT;
Sage Weil's avatar
Sage Weil committed
837 838

get_more_pages:
839 840
		pvec_pages = pagevec_lookup_range_tag(&pvec, mapping, &index,
						end, PAGECACHE_TAG_DIRTY);
841
		dout("pagevec_lookup_range_tag got %d\n", pvec_pages);
Sage Weil's avatar
Sage Weil committed
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
		if (!pvec_pages && !locked_pages)
			break;
		for (i = 0; i < pvec_pages && locked_pages < max_pages; i++) {
			page = pvec.pages[i];
			dout("? %p idx %lu\n", page, page->index);
			if (locked_pages == 0)
				lock_page(page);  /* first page */
			else if (!trylock_page(page))
				break;

			/* only dirty pages, or our accounting breaks */
			if (unlikely(!PageDirty(page)) ||
			    unlikely(page->mapping != mapping)) {
				dout("!dirty or !mapping %p\n", page);
				unlock_page(page);
857
				continue;
Sage Weil's avatar
Sage Weil committed
858
			}
859 860 861 862 863
			/* only if matching snap context */
			pgsnapc = page_snap_context(page);
			if (pgsnapc != snapc) {
				dout("page snapc %p %lld != oldest %p %lld\n",
				     pgsnapc, pgsnapc->seq, snapc, snapc->seq);
864 865 866 867
				if (!should_loop &&
				    !ceph_wbc.head_snapc &&
				    wbc->sync_mode != WB_SYNC_NONE)
					should_loop = true;
Sage Weil's avatar
Sage Weil committed
868
				unlock_page(page);
869
				continue;
Sage Weil's avatar
Sage Weil committed
870
			}
871
			if (page_offset(page) >= ceph_wbc.i_size) {
872 873 874 875
				struct folio *folio = page_folio(page);

				dout("folio at %lu beyond eof %llu\n",
				     folio->index, ceph_wbc.i_size);
876
				if ((ceph_wbc.size_stable ||
877 878 879 880 881
				    folio_pos(folio) >= i_size_read(inode)) &&
				    folio_clear_dirty_for_io(folio))
					folio_invalidate(folio, 0,
							folio_size(folio));
				folio_unlock(folio);
882 883 884 885
				continue;
			}
			if (strip_unit_end && (page->index > strip_unit_end)) {
				dout("end of strip unit %p\n", page);
Sage Weil's avatar
Sage Weil committed
886 887 888
				unlock_page(page);
				break;
			}
889
			if (PageWriteback(page) || PageFsCache(page)) {
890 891 892 893 894 895 896
				if (wbc->sync_mode == WB_SYNC_NONE) {
					dout("%p under writeback\n", page);
					unlock_page(page);
					continue;
				}
				dout("waiting on writeback %p\n", page);
				wait_on_page_writeback(page);
897
				wait_on_page_fscache(page);
Sage Weil's avatar
Sage Weil committed
898 899 900 901 902
			}

			if (!clear_page_dirty_for_io(page)) {
				dout("%p !clear_page_dirty_for_io\n", page);
				unlock_page(page);
903
				continue;
Sage Weil's avatar
Sage Weil committed
904 905
			}

906 907 908
			/*
			 * We have something to write.  If this is
			 * the first locked page this time through,
Yan, Zheng's avatar
Yan, Zheng committed
909 910
			 * calculate max possinle write size and
			 * allocate a page array
911
			 */
Sage Weil's avatar
Sage Weil committed
912
			if (locked_pages == 0) {
Yan, Zheng's avatar
Yan, Zheng committed
913 914
				u64 objnum;
				u64 objoff;
915
				u32 xlen;
Yan, Zheng's avatar
Yan, Zheng committed
916

Sage Weil's avatar
Sage Weil committed
917
				/* prepare async write request */
918
				offset = (u64)page_offset(page);
919 920 921 922 923
				ceph_calc_file_object_mapping(&ci->i_layout,
							      offset, wsize,
							      &objnum, &objoff,
							      &xlen);
				len = xlen;
924

Yanhu Cao's avatar
Yanhu Cao committed
925
				num_ops = 1;
Yan, Zheng's avatar
Yan, Zheng committed
926
				strip_unit_end = page->index +
927
					((len - 1) >> PAGE_SHIFT);
Alex Elder's avatar
Alex Elder committed
928

Yan, Zheng's avatar
Yan, Zheng committed
929
				BUG_ON(pages);
Alex Elder's avatar
Alex Elder committed
930
				max_pages = calc_pages_for(0, (u64)len);
931 932 933
				pages = kmalloc_array(max_pages,
						      sizeof(*pages),
						      GFP_NOFS);
Alex Elder's avatar
Alex Elder committed
934
				if (!pages) {
935 936
					from_pool = true;
					pages = mempool_alloc(ceph_wb_pagevec_pool, GFP_NOFS);
937
					BUG_ON(!pages);
Alex Elder's avatar
Alex Elder committed
938
				}
Yan, Zheng's avatar
Yan, Zheng committed
939 940 941

				len = 0;
			} else if (page->index !=
942
				   (offset + len) >> PAGE_SHIFT) {
943 944
				if (num_ops >= (from_pool ?  CEPH_OSD_SLAB_OPS :
							     CEPH_OSD_MAX_OPS)) {
Yan, Zheng's avatar
Yan, Zheng committed
945 946 947 948 949 950 951 952
					redirty_page_for_writepage(wbc, page);
					unlock_page(page);
					break;
				}

				num_ops++;
				offset = (u64)page_offset(page);
				len = 0;
Sage Weil's avatar
Sage Weil committed
953 954 955 956 957
			}

			/* note position of first page in pvec */
			dout("%p will write page %p idx %lu\n",
			     inode, page, page->index);
958

Yan, Zheng's avatar
Yan, Zheng committed
959 960
			if (atomic_long_inc_return(&fsc->writeback_count) >
			    CONGESTION_ON_THRESH(
961
				    fsc->mount_options->congestion_kb)) {
962
				set_bdi_congested(inode_to_bdi(inode),
Sage Weil's avatar
Sage Weil committed
963
						  BLK_RW_ASYNC);
964 965
			}

966 967 968 969

			pages[locked_pages++] = page;
			pvec.pages[i] = NULL;

970
			len += thp_size(page);
Sage Weil's avatar
Sage Weil committed
971 972 973 974 975 976
		}

		/* did we get anything? */
		if (!locked_pages)
			goto release_pvec_pages;
		if (i) {
977 978 979 980 981 982 983 984 985 986
			unsigned j, n = 0;
			/* shift unused page to beginning of pvec */
			for (j = 0; j < pvec_pages; j++) {
				if (!pvec.pages[j])
					continue;
				if (n < j)
					pvec.pages[n] = pvec.pages[j];
				n++;
			}
			pvec.nr = n;
Sage Weil's avatar
Sage Weil committed
987 988 989 990

			if (pvec_pages && i == pvec_pages &&
			    locked_pages < max_pages) {
				dout("reached end pvec, trying for more\n");
991
				pagevec_release(&pvec);
Sage Weil's avatar
Sage Weil committed
992 993 994 995
				goto get_more_pages;
			}
		}

Yan, Zheng's avatar
Yan, Zheng committed
996
new_request:
997
		offset = page_offset(pages[0]);
Yan, Zheng's avatar
Yan, Zheng committed
998 999 1000 1001 1002
		len = wsize;

		req = ceph_osdc_new_request(&fsc->client->osdc,
					&ci->i_layout, vino,
					offset, &len, 0, num_ops,
1003 1004 1005
					CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
					snapc, ceph_wbc.truncate_seq,
					ceph_wbc.truncate_size, false);
Yan, Zheng's avatar
Yan, Zheng committed
1006 1007 1008 1009 1010 1011 1012
		if (IS_ERR(req)) {
			req = ceph_osdc_new_request(&fsc->client->osdc,
						&ci->i_layout, vino,
						offset, &len, 0,
						min(num_ops,
						    CEPH_OSD_SLAB_OPS),
						CEPH_OSD_OP_WRITE,
1013
						CEPH_OSD_FLAG_WRITE,
1014 1015
						snapc, ceph_wbc.truncate_seq,
						ceph_wbc.truncate_size, true);
Yan, Zheng's avatar
Yan, Zheng committed
1016
			BUG_ON(IS_ERR(req));
1017
		}
Yan, Zheng's avatar
Yan, Zheng committed
1018
		BUG_ON(len < page_offset(pages[locked_pages - 1]) +
1019
			     thp_size(page) - offset);
Yan, Zheng's avatar
Yan, Zheng committed
1020 1021 1022

		req->r_callback = writepages_finish;
		req->r_inode = inode;
Sage Weil's avatar
Sage Weil committed
1023

Yan, Zheng's avatar
Yan, Zheng committed
1024 1025 1026 1027 1028 1029
		/* Format the osd request message and submit the write */
		len = 0;
		data_pages = pages;
		op_idx = 0;
		for (i = 0; i < locked_pages; i++) {
			u64 cur_offset = page_offset(pages[i]);
1030 1031 1032 1033
			/*
			 * Discontinuity in page range? Ceph can handle that by just passing
			 * multiple extents in the write op.
			 */
Yan, Zheng's avatar
Yan, Zheng committed
1034
			if (offset + len != cur_offset) {
1035
				/* If it's full, stop here */
Yanhu Cao's avatar
Yanhu Cao committed
1036
				if (op_idx + 1 == req->r_num_ops)
Yan, Zheng's avatar
Yan, Zheng committed
1037
					break;
1038 1039 1040 1041 1042

				/* Kick off an fscache write with what we have so far. */
				ceph_fscache_write_to_cache(inode, offset, len, caching);

				/* Start a new extent */
Yan, Zheng's avatar
Yan, Zheng committed
1043 1044 1045 1046 1047 1048
				osd_req_op_extent_dup_last(req, op_idx,
							   cur_offset - offset);
				dout("writepages got pages at %llu~%llu\n",
				     offset, len);
				osd_req_op_extent_osd_data_pages(req, op_idx,
							data_pages, len, 0,
1049
							from_pool, false);
Yan, Zheng's avatar
Yan, Zheng committed
1050
				osd_req_op_extent_update(req, op_idx, len);
1051

Yan, Zheng's avatar
Yan, Zheng committed
1052
				len = 0;
1053
				offset = cur_offset;
Yan, Zheng's avatar
Yan, Zheng committed
1054 1055 1056 1057 1058
				data_pages = pages + i;
				op_idx++;
			}

			set_page_writeback(pages[i]);
1059 1060
			if (caching)
				ceph_set_page_fscache(pages[i]);
1061
			len += thp_size(page);
Yan, Zheng's avatar
Yan, Zheng committed
1062
		}
1063
		ceph_fscache_write_to_cache(inode, offset, len, caching);
Yan, Zheng's avatar
Yan, Zheng committed
1064

1065 1066
		if (ceph_wbc.size_stable) {
			len = min(len, ceph_wbc.i_size - offset);
Yan, Zheng's avatar
Yan, Zheng committed
1067 1068 1069 1070
		} else if (i == locked_pages) {
			/* writepages_finish() clears writeback pages
			 * according to the data length, so make sure
			 * data length covers all locked pages */
1071
			u64 min_len = len + 1 - thp_size(page);
1072 1073
			len = get_writepages_data_length(inode, pages[i - 1],
							 offset);
Yan, Zheng's avatar
Yan, Zheng committed
1074 1075 1076
			len = max(len, min_len);
		}
		dout("writepages got pages at %llu~%llu\n", offset, len);
1077

Yan, Zheng's avatar
Yan, Zheng committed
1078
		osd_req_op_extent_osd_data_pages(req, op_idx, data_pages, len,
1079
						 0, from_pool, false);
Yan, Zheng's avatar
Yan, Zheng committed
1080
		osd_req_op_extent_update(req, op_idx, len);
1081

Yan, Zheng's avatar
Yan, Zheng committed
1082 1083
		BUG_ON(op_idx + 1 != req->r_num_ops);

1084
		from_pool = false;
Yan, Zheng's avatar
Yan, Zheng committed
1085 1086 1087 1088 1089 1090 1091
		if (i < locked_pages) {
			BUG_ON(num_ops <= req->r_num_ops);
			num_ops -= req->r_num_ops;
			locked_pages -= i;

			/* allocate new pages array for next request */
			data_pages = pages;
1092 1093
			pages = kmalloc_array(locked_pages, sizeof(*pages),
					      GFP_NOFS);
Yan, Zheng's avatar
Yan, Zheng committed
1094
			if (!pages) {
1095 1096
				from_pool = true;
				pages = mempool_alloc(ceph_wb_pagevec_pool, GFP_NOFS);
Yan, Zheng's avatar
Yan, Zheng committed
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
				BUG_ON(!pages);
			}
			memcpy(pages, data_pages + i,
			       locked_pages * sizeof(*pages));
			memset(data_pages + i, 0,
			       locked_pages * sizeof(*pages));
		} else {
			BUG_ON(num_ops != req->r_num_ops);
			index = pages[i - 1]->index + 1;
			/* request message now owns the pages array */
			pages = NULL;
		}
1109

1110
		req->r_mtime = inode->i_mtime;
1111 1112
		rc = ceph_osdc_start_request(&fsc->client->osdc, req, true);
		BUG_ON(rc);
Sage Weil's avatar
Sage Weil committed
1113 1114
		req = NULL;

Yan, Zheng's avatar
Yan, Zheng committed
1115 1116 1117 1118
		wbc->nr_to_write -= i;
		if (pages)
			goto new_request;

1119 1120 1121 1122 1123 1124 1125
		/*
		 * We stop writing back only if we are not doing
		 * integrity sync. In case of integrity sync we have to
		 * keep going until we have written all the pages
		 * we tagged for writeback prior to entering this loop.
		 */
		if (wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE)
1126
			done = true;
Sage Weil's avatar
Sage Weil committed
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136

release_pvec_pages:
		dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr,
		     pvec.nr ? pvec.pages[0] : NULL);
		pagevec_release(&pvec);
	}

	if (should_loop && !done) {
		/* more to do; loop back to beginning of file */
		dout("writepages looping back to beginning of file\n");
1137
		end = start_index - 1; /* OK even when start_index == 0 */
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148

		/* to write dirty pages associated with next snapc,
		 * we need to wait until current writes complete */
		if (wbc->sync_mode != WB_SYNC_NONE &&
		    start_index == 0 && /* all dirty pages were checked */
		    !ceph_wbc.head_snapc) {
			struct page *page;
			unsigned i, nr;
			index = 0;
			while ((index <= end) &&
			       (nr = pagevec_lookup_tag(&pvec, mapping, &index,
1149
						PAGECACHE_TAG_WRITEBACK))) {
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
				for (i = 0; i < nr; i++) {
					page = pvec.pages[i];
					if (page_snap_context(page) != snapc)
						continue;
					wait_on_page_writeback(page);
				}
				pagevec_release(&pvec);
				cond_resched();
			}
		}

1161
		start_index = 0;
Sage Weil's avatar
Sage Weil committed
1162 1163 1164 1165 1166 1167 1168 1169
		index = 0;
		goto retry;
	}

	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
		mapping->writeback_index = index;

out:
1170
	ceph_osdc_put_request(req);
1171 1172
	ceph_put_snap_context(last_snapc);
	dout("writepages dend - startone, rc = %d\n", rc);
Sage Weil's avatar
Sage Weil committed
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
	return rc;
}



/*
 * See if a given @snapc is either writeable, or already written.
 */
static int context_is_writeable_or_written(struct inode *inode,
					   struct ceph_snap_context *snapc)
{
1184
	struct ceph_snap_context *oldest = get_oldest_context(inode, NULL, NULL);
1185 1186 1187 1188
	int ret = !oldest || snapc->seq <= oldest->seq;

	ceph_put_snap_context(oldest);
	return ret;
Sage Weil's avatar
Sage Weil committed
1189 1190
}

1191 1192 1193
/**
 * ceph_find_incompatible - find an incompatible context and return it
 * @page: page being dirtied
1194
 *
1195 1196 1197 1198 1199 1200
 * We are only allowed to write into/dirty a page if the page is
 * clean, or already dirty within the same snap context. Returns a
 * conflicting context if there is one, NULL if there isn't, or a
 * negative error code on other errors.
 *
 * Must be called with page lock held.
Sage Weil's avatar
Sage Weil committed
1201
 */
1202
static struct ceph_snap_context *
1203
ceph_find_incompatible(struct page *page)
Sage Weil's avatar
Sage Weil committed
1204
{
1205
	struct inode *inode = page->mapping->host;
Sage Weil's avatar
Sage Weil committed
1206 1207
	struct ceph_inode_info *ci = ceph_inode(inode);

1208 1209 1210 1211
	if (ceph_inode_is_shutdown(inode)) {
		dout(" page %p %llx:%llx is shutdown\n", page,
		     ceph_vinop(inode));
		return ERR_PTR(-ESTALE);
1212 1213
	}

1214 1215 1216 1217 1218 1219 1220 1221
	for (;;) {
		struct ceph_snap_context *snapc, *oldest;

		wait_on_page_writeback(page);

		snapc = page_snap_context(page);
		if (!snapc || snapc == ci->i_head_snapc)
			break;
Sage Weil's avatar
Sage Weil committed
1222 1223 1224 1225 1226

		/*
		 * this page is already dirty in another (older) snap
		 * context!  is it writeable now?
		 */
1227
		oldest = get_oldest_context(inode, NULL, NULL);
1228
		if (snapc->seq > oldest->seq) {
1229
			/* not writeable -- return it for the caller to deal with */
1230
			ceph_put_snap_context(oldest);
1231 1232
			dout(" page %p snapc %p not current or oldest\n", page, snapc);
			return ceph_get_snap_context(snapc);
Sage Weil's avatar
Sage Weil committed
1233
		}
1234
		ceph_put_snap_context(oldest);
Sage Weil's avatar
Sage Weil committed
1235 1236

		/* yay, writeable, do it now (without dropping page lock) */
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
		dout(" page %p snapc %p not current, but oldest\n", page, snapc);
		if (clear_page_dirty_for_io(page)) {
			int r = writepage_nounlock(page, NULL);
			if (r < 0)
				return ERR_PTR(r);
		}
	}
	return NULL;
}

1247
static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
1248
					struct folio *folio, void **_fsdata)
1249 1250 1251 1252 1253
{
	struct inode *inode = file_inode(file);
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_snap_context *snapc;

1254
	snapc = ceph_find_incompatible(folio_page(folio, 0));
1255 1256 1257
	if (snapc) {
		int r;

1258 1259
		folio_unlock(folio);
		folio_put(folio);
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
		if (IS_ERR(snapc))
			return PTR_ERR(snapc);

		ceph_queue_writeback(inode);
		r = wait_event_killable(ci->i_cap_wq,
					context_is_writeable_or_written(inode, snapc));
		ceph_put_snap_context(snapc);
		return r == 0 ? -EAGAIN : r;
	}
	return 0;
}

1272 1273 1274 1275
/*
 * We are only allowed to write into/dirty the page if the page is
 * clean, or already dirty within the same snap context.
 */
1276
static int ceph_write_begin(struct file *file, struct address_space *mapping,
1277
			    loff_t pos, unsigned len, unsigned aop_flags,
1278
			    struct page **pagep, void **fsdata)
1279 1280 1281
{
	struct inode *inode = file_inode(file);
	struct ceph_inode_info *ci = ceph_inode(inode);
1282
	struct folio *folio = NULL;
1283
	pgoff_t index = pos >> PAGE_SHIFT;
1284
	int r;
Sage Weil's avatar
Sage Weil committed
1285

1286 1287 1288 1289 1290
	/*
	 * Uninlining should have already been done and everything updated, EXCEPT
	 * for inline_version sent to the MDS.
	 */
	if (ci->i_inline_version != CEPH_INLINE_NONE) {
1291 1292 1293 1294 1295 1296
		unsigned int fgp_flags = FGP_LOCK | FGP_WRITE | FGP_CREAT | FGP_STABLE;
		if (aop_flags & AOP_FLAG_NOFS)
			fgp_flags |= FGP_NOFS;
		folio = __filemap_get_folio(mapping, index, fgp_flags,
					    mapping_gfp_mask(mapping));
		if (!folio)
1297
			return -ENOMEM;
1298

1299
		/*
1300
		 * The inline_version on a new inode is set to 1. If that's the
1301
		 * case, then the folio is brand new and isn't yet Uptodate.
1302
		 */
1303 1304
		r = 0;
		if (index == 0 && ci->i_inline_version != 1) {
1305
			if (!folio_test_uptodate(folio)) {
1306 1307 1308 1309 1310
				WARN_ONCE(1, "ceph: write_begin called on still-inlined inode (inline_version %llu)!\n",
					  ci->i_inline_version);
				r = -EINVAL;
			}
			goto out;
1311
		}
1312 1313
		zero_user_segment(&folio->page, 0, folio_size(folio));
		folio_mark_uptodate(folio);
1314
		goto out;
1315
	}
1316

1317
	r = netfs_write_begin(file, inode->i_mapping, pos, len, 0, &folio, NULL,
1318 1319 1320
			      &ceph_netfs_read_ops, NULL);
out:
	if (r == 0)
1321
		folio_wait_fscache(folio);
1322
	if (r < 0) {
1323 1324
		if (folio)
			folio_put(folio);
1325
	} else {
1326 1327
		WARN_ON_ONCE(!folio_test_locked(folio));
		*pagep = &folio->page;
1328
	}
1329 1330 1331
	return r;
}

Sage Weil's avatar
Sage Weil committed
1332 1333
/*
 * we don't do anything in here that simple_write_end doesn't do
1334
 * except adjust dirty page accounting
Sage Weil's avatar
Sage Weil committed
1335 1336 1337
 */
static int ceph_write_end(struct file *file, struct address_space *mapping,
			  loff_t pos, unsigned len, unsigned copied,
1338
			  struct page *subpage, void *fsdata)
Sage Weil's avatar
Sage Weil committed
1339
{
1340
	struct folio *folio = page_folio(subpage);
Al Viro's avatar
Al Viro committed
1341
	struct inode *inode = file_inode(file);
1342
	bool check_cap = false;
Sage Weil's avatar
Sage Weil committed
1343

1344 1345
	dout("write_end file %p inode %p folio %p %d~%d (%d)\n", file,
	     inode, folio, (int)pos, (int)copied, (int)len);
Sage Weil's avatar
Sage Weil committed
1346

1347
	if (!folio_test_uptodate(folio)) {
1348
		/* just return that nothing was copied on a short copy */
Al Viro's avatar
Al Viro committed
1349 1350 1351 1352
		if (copied < len) {
			copied = 0;
			goto out;
		}
1353
		folio_mark_uptodate(folio);
Al Viro's avatar
Al Viro committed
1354
	}
Sage Weil's avatar
Sage Weil committed
1355 1356

	/* did file size increase? */
1357
	if (pos+copied > i_size_read(inode))
Sage Weil's avatar
Sage Weil committed
1358 1359
		check_cap = ceph_inode_set_size(inode, pos+copied);

1360
	folio_mark_dirty(folio);
Sage Weil's avatar
Sage Weil committed
1361

Al Viro's avatar
Al Viro committed
1362
out:
1363 1364
	folio_unlock(folio);
	folio_put(folio);
Sage Weil's avatar
Sage Weil committed
1365 1366 1367 1368 1369 1370 1371 1372 1373

	if (check_cap)
		ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL);

	return copied;
}

const struct address_space_operations ceph_aops = {
	.readpage = ceph_readpage,
1374
	.readahead = ceph_readahead,
Sage Weil's avatar
Sage Weil committed
1375 1376 1377 1378 1379
	.writepage = ceph_writepage,
	.writepages = ceph_writepages_start,
	.write_begin = ceph_write_begin,
	.write_end = ceph_write_end,
	.set_page_dirty = ceph_set_page_dirty,
1380
	.invalidate_folio = ceph_invalidate_folio,
Sage Weil's avatar
Sage Weil committed
1381
	.releasepage = ceph_releasepage,
Jeff Layton's avatar
Jeff Layton committed
1382
	.direct_IO = noop_direct_IO,
Sage Weil's avatar
Sage Weil committed
1383 1384
};

1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
static void ceph_block_sigs(sigset_t *oldset)
{
	sigset_t mask;
	siginitsetinv(&mask, sigmask(SIGKILL));
	sigprocmask(SIG_BLOCK, &mask, oldset);
}

static void ceph_restore_sigs(sigset_t *oldset)
{
	sigprocmask(SIG_SETMASK, oldset, NULL);
}
Sage Weil's avatar
Sage Weil committed
1396 1397 1398 1399

/*
 * vm ops
 */
1400
static vm_fault_t ceph_filemap_fault(struct vm_fault *vmf)
1401
{
1402
	struct vm_area_struct *vma = vmf->vma;
1403 1404 1405
	struct inode *inode = file_inode(vma->vm_file);
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_file_info *fi = vma->vm_file->private_data;
1406
	loff_t off = (loff_t)vmf->pgoff << PAGE_SHIFT;
1407
	int want, got, err;
1408
	sigset_t oldset;
1409
	vm_fault_t ret = VM_FAULT_SIGBUS;
1410

1411 1412 1413
	if (ceph_inode_is_shutdown(inode))
		return ret;

1414
	ceph_block_sigs(&oldset);
1415

1416 1417
	dout("filemap_fault %p %llx.%llx %llu trying to get caps\n",
	     inode, ceph_vinop(inode), off);
1418 1419 1420 1421
	if (fi->fmode & CEPH_FILE_MODE_LAZY)
		want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
	else
		want = CEPH_CAP_FILE_CACHE;
1422 1423

	got = 0;
1424
	err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_RD, want, -1, &got);
1425
	if (err < 0)
1426
		goto out_restore;
1427

1428 1429
	dout("filemap_fault %p %llu got cap refs on %s\n",
	     inode, off, ceph_cap_string(got));
1430

Yan, Zheng's avatar
Yan, Zheng committed
1431
	if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) ||
1432
	    ci->i_inline_version == CEPH_INLINE_NONE) {
1433 1434
		CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
		ceph_add_rw_context(fi, &rw_ctx);
1435
		ret = filemap_fault(vmf);
1436
		ceph_del_rw_context(fi, &rw_ctx);
1437 1438
		dout("filemap_fault %p %llu drop cap refs %s ret %x\n",
		     inode, off, ceph_cap_string(got), ret);
1439
	} else
1440
		err = -EAGAIN;
1441 1442 1443

	ceph_put_cap_refs(ci, got);

1444
	if (err != -EAGAIN)
1445
		goto out_restore;
Yan, Zheng's avatar
Yan, Zheng committed
1446 1447

	/* read inline data */
1448
	if (off >= PAGE_SIZE) {
Yan, Zheng's avatar
Yan, Zheng committed
1449 1450 1451 1452
		/* does not support inline data > PAGE_SIZE */
		ret = VM_FAULT_SIGBUS;
	} else {
		struct address_space *mapping = inode->i_mapping;
1453 1454 1455 1456 1457
		struct page *page;

		filemap_invalidate_lock_shared(mapping);
		page = find_or_create_page(mapping, 0,
				mapping_gfp_constraint(mapping, ~__GFP_FS));
Yan, Zheng's avatar
Yan, Zheng committed
1458 1459
		if (!page) {
			ret = VM_FAULT_OOM;
1460
			goto out_inline;
Yan, Zheng's avatar
Yan, Zheng committed
1461
		}
1462
		err = __ceph_do_getattr(inode, page,
Yan, Zheng's avatar
Yan, Zheng committed
1463
					 CEPH_STAT_CAP_INLINE_DATA, true);
1464
		if (err < 0 || off >= i_size_read(inode)) {
Yan, Zheng's avatar
Yan, Zheng committed
1465
			unlock_page(page);
1466
			put_page(page);
1467
			ret = vmf_error(err);
1468
			goto out_inline;
Yan, Zheng's avatar
Yan, Zheng committed
1469
		}
1470 1471
		if (err < PAGE_SIZE)
			zero_user_segment(page, err, PAGE_SIZE);
Yan, Zheng's avatar
Yan, Zheng committed
1472 1473 1474 1475 1476
		else
			flush_dcache_page(page);
		SetPageUptodate(page);
		vmf->page = page;
		ret = VM_FAULT_MAJOR | VM_FAULT_LOCKED;
1477
out_inline:
1478
		filemap_invalidate_unlock_shared(mapping);
1479 1480
		dout("filemap_fault %p %llu read inline data ret %x\n",
		     inode, off, ret);
Yan, Zheng's avatar
Yan, Zheng committed
1481
	}
1482 1483
out_restore:
	ceph_restore_sigs(&oldset);
1484 1485
	if (err < 0)
		ret = vmf_error(err);
1486

1487 1488
	return ret;
}
Sage Weil's avatar
Sage Weil committed
1489

1490
static vm_fault_t ceph_page_mkwrite(struct vm_fault *vmf)
Sage Weil's avatar
Sage Weil committed
1491
{
1492
	struct vm_area_struct *vma = vmf->vma;
Al Viro's avatar
Al Viro committed
1493
	struct inode *inode = file_inode(vma->vm_file);
1494 1495
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_file_info *fi = vma->vm_file->private_data;
1496
	struct ceph_cap_flush *prealloc_cf;
1497
	struct page *page = vmf->page;
1498
	loff_t off = page_offset(page);
1499 1500
	loff_t size = i_size_read(inode);
	size_t len;
1501
	int want, got, err;
1502
	sigset_t oldset;
1503
	vm_fault_t ret = VM_FAULT_SIGBUS;
1504

1505 1506 1507
	if (ceph_inode_is_shutdown(inode))
		return ret;

1508 1509
	prealloc_cf = ceph_alloc_cap_flush();
	if (!prealloc_cf)
1510
		return VM_FAULT_OOM;
1511

1512
	sb_start_pagefault(inode->i_sb);
1513
	ceph_block_sigs(&oldset);
1514

1515 1516 1517 1518 1519 1520
	if (ci->i_inline_version != CEPH_INLINE_NONE) {
		struct page *locked_page = NULL;
		if (off == 0) {
			lock_page(page);
			locked_page = page;
		}
1521
		err = ceph_uninline_data(vma->vm_file, locked_page);
1522 1523
		if (locked_page)
			unlock_page(locked_page);
1524
		if (err < 0)
1525
			goto out_free;
1526 1527
	}

1528 1529
	if (off + thp_size(page) <= size)
		len = thp_size(page);
Sage Weil's avatar
Sage Weil committed
1530
	else
1531
		len = offset_in_thp(page, size);
Sage Weil's avatar
Sage Weil committed
1532

1533 1534 1535 1536 1537 1538
	dout("page_mkwrite %p %llx.%llx %llu~%zd getting caps i_size %llu\n",
	     inode, ceph_vinop(inode), off, len, size);
	if (fi->fmode & CEPH_FILE_MODE_LAZY)
		want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
	else
		want = CEPH_CAP_FILE_BUFFER;
1539 1540

	got = 0;
1541
	err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_WR, want, off + len, &got);
1542
	if (err < 0)
1543
		goto out_free;
1544

1545 1546 1547 1548 1549
	dout("page_mkwrite %p %llu~%zd got cap refs on %s\n",
	     inode, off, len, ceph_cap_string(got));

	/* Update time before taking page lock */
	file_update_time(vma->vm_file);
1550
	inode_inc_iversion_raw(inode);
1551

1552
	do {
1553 1554
		struct ceph_snap_context *snapc;

1555
		lock_page(page);
1556

1557
		if (page_mkwrite_check_truncate(page, inode) < 0) {
1558 1559 1560 1561 1562
			unlock_page(page);
			ret = VM_FAULT_NOPAGE;
			break;
		}

1563 1564
		snapc = ceph_find_incompatible(page);
		if (!snapc) {
1565 1566 1567
			/* success.  we'll keep the page locked. */
			set_page_dirty(page);
			ret = VM_FAULT_LOCKED;
1568 1569 1570 1571 1572 1573 1574 1575
			break;
		}

		unlock_page(page);

		if (IS_ERR(snapc)) {
			ret = VM_FAULT_SIGBUS;
			break;
1576
		}
1577 1578 1579 1580 1581 1582

		ceph_queue_writeback(inode);
		err = wait_event_killable(ci->i_cap_wq,
				context_is_writeable_or_written(inode, snapc));
		ceph_put_snap_context(snapc);
	} while (err == 0);
1583

1584 1585
	if (ret == VM_FAULT_LOCKED ||
	    ci->i_inline_version != CEPH_INLINE_NONE) {
1586 1587
		int dirty;
		spin_lock(&ci->i_ceph_lock);
1588
		ci->i_inline_version = CEPH_INLINE_NONE;
1589 1590
		dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
					       &prealloc_cf);
1591 1592 1593 1594 1595
		spin_unlock(&ci->i_ceph_lock);
		if (dirty)
			__mark_inode_dirty(inode, dirty);
	}

1596
	dout("page_mkwrite %p %llu~%zd dropping cap refs on %s ret %x\n",
1597
	     inode, off, len, ceph_cap_string(got), ret);
1598
	ceph_put_cap_refs_async(ci, got);
1599
out_free:
1600
	ceph_restore_sigs(&oldset);
1601
	sb_end_pagefault(inode->i_sb);
1602
	ceph_free_cap_flush(prealloc_cf);
1603 1604
	if (err < 0)
		ret = vmf_error(err);
Sage Weil's avatar
Sage Weil committed
1605 1606 1607
	return ret;
}

1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
			   char	*data, size_t len)
{
	struct address_space *mapping = inode->i_mapping;
	struct page *page;

	if (locked_page) {
		page = locked_page;
	} else {
		if (i_size_read(inode) == 0)
			return;
		page = find_or_create_page(mapping, 0,
1620 1621
					   mapping_gfp_constraint(mapping,
					   ~__GFP_FS));
1622 1623 1624 1625
		if (!page)
			return;
		if (PageUptodate(page)) {
			unlock_page(page);
1626
			put_page(page);
1627 1628 1629 1630
			return;
		}
	}

1631
	dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
1632 1633 1634 1635 1636 1637 1638 1639 1640
	     inode, ceph_vinop(inode), len, locked_page);

	if (len > 0) {
		void *kaddr = kmap_atomic(page);
		memcpy(kaddr, data, len);
		kunmap_atomic(kaddr);
	}

	if (page != locked_page) {
1641 1642
		if (len < PAGE_SIZE)
			zero_user_segment(page, len, PAGE_SIZE);
1643 1644 1645 1646 1647
		else
			flush_dcache_page(page);

		SetPageUptodate(page);
		unlock_page(page);
1648
		put_page(page);
1649 1650 1651
	}
}

1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
int ceph_uninline_data(struct file *filp, struct page *locked_page)
{
	struct inode *inode = file_inode(filp);
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
	struct ceph_osd_request *req;
	struct page *page = NULL;
	u64 len, inline_version;
	int err = 0;
	bool from_pagecache = false;

	spin_lock(&ci->i_ceph_lock);
	inline_version = ci->i_inline_version;
	spin_unlock(&ci->i_ceph_lock);

	dout("uninline_data %p %llx.%llx inline_version %llu\n",
	     inode, ceph_vinop(inode), inline_version);

	if (inline_version == 1 || /* initial version, no data */
	    inline_version == CEPH_INLINE_NONE)
		goto out;

	if (locked_page) {
		page = locked_page;
		WARN_ON(!PageUptodate(page));
	} else if (ceph_caps_issued(ci) &
		   (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) {
		page = find_get_page(inode->i_mapping, 0);
		if (page) {
			if (PageUptodate(page)) {
				from_pagecache = true;
				lock_page(page);
			} else {
1685
				put_page(page);
1686 1687 1688 1689 1690 1691 1692
				page = NULL;
			}
		}
	}

	if (page) {
		len = i_size_read(inode);
1693 1694
		if (len > PAGE_SIZE)
			len = PAGE_SIZE;
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713
	} else {
		page = __page_cache_alloc(GFP_NOFS);
		if (!page) {
			err = -ENOMEM;
			goto out;
		}
		err = __ceph_do_getattr(inode, page,
					CEPH_STAT_CAP_INLINE_DATA, true);
		if (err < 0) {
			/* no inline data */
			if (err == -ENODATA)
				err = 0;
			goto out;
		}
		len = err;
	}

	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
				    ceph_vino(inode), 0, &len, 0, 1,
1714
				    CEPH_OSD_OP_CREATE, CEPH_OSD_FLAG_WRITE,
Ilya Dryomov's avatar
Ilya Dryomov committed
1715
				    NULL, 0, 0, false);
1716 1717 1718 1719 1720
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto out;
	}

1721
	req->r_mtime = inode->i_mtime;
1722 1723 1724 1725 1726 1727 1728 1729 1730
	err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
	if (!err)
		err = ceph_osdc_wait_request(&fsc->client->osdc, req);
	ceph_osdc_put_request(req);
	if (err < 0)
		goto out;

	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
				    ceph_vino(inode), 0, &len, 1, 3,
1731
				    CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
Ilya Dryomov's avatar
Ilya Dryomov committed
1732 1733
				    NULL, ci->i_truncate_seq,
				    ci->i_truncate_size, false);
1734 1735 1736 1737 1738 1739 1740
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto out;
	}

	osd_req_op_extent_osd_data_pages(req, 1, &page, len, 0, false, false);

Yan, Zheng's avatar
Yan, Zheng committed
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761
	{
		__le64 xattr_buf = cpu_to_le64(inline_version);
		err = osd_req_op_xattr_init(req, 0, CEPH_OSD_OP_CMPXATTR,
					    "inline_version", &xattr_buf,
					    sizeof(xattr_buf),
					    CEPH_OSD_CMPXATTR_OP_GT,
					    CEPH_OSD_CMPXATTR_MODE_U64);
		if (err)
			goto out_put;
	}

	{
		char xattr_buf[32];
		int xattr_len = snprintf(xattr_buf, sizeof(xattr_buf),
					 "%llu", inline_version);
		err = osd_req_op_xattr_init(req, 2, CEPH_OSD_OP_SETXATTR,
					    "inline_version",
					    xattr_buf, xattr_len, 0, 0);
		if (err)
			goto out_put;
	}
1762

1763
	req->r_mtime = inode->i_mtime;
1764 1765 1766
	err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
	if (!err)
		err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1767

Xiubo Li's avatar
Xiubo Li committed
1768
	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
Xiubo Li's avatar
Xiubo Li committed
1769
				  req->r_end_latency, len, err);
1770

1771 1772 1773 1774 1775 1776 1777 1778
out_put:
	ceph_osdc_put_request(req);
	if (err == -ECANCELED)
		err = 0;
out:
	if (page && page != locked_page) {
		if (from_pagecache) {
			unlock_page(page);
1779
			put_page(page);
1780 1781 1782 1783 1784 1785 1786 1787 1788
		} else
			__free_pages(page, 0);
	}

	dout("uninline_data %p %llx.%llx inline_version %llu = %d\n",
	     inode, ceph_vinop(inode), inline_version, err);
	return err;
}

1789
static const struct vm_operations_struct ceph_vmops = {
1790
	.fault		= ceph_filemap_fault,
Sage Weil's avatar
Sage Weil committed
1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
	.page_mkwrite	= ceph_page_mkwrite,
};

int ceph_mmap(struct file *file, struct vm_area_struct *vma)
{
	struct address_space *mapping = file->f_mapping;

	if (!mapping->a_ops->readpage)
		return -ENOEXEC;
	file_accessed(file);
	vma->vm_ops = &ceph_vmops;
	return 0;
}
1804 1805 1806 1807 1808 1809

enum {
	POOL_READ	= 1,
	POOL_WRITE	= 2,
};

1810 1811
static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
				s64 pool, struct ceph_string *pool_ns)
1812 1813 1814 1815 1816 1817 1818
{
	struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
	struct ceph_mds_client *mdsc = fsc->mdsc;
	struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
	struct rb_node **p, *parent;
	struct ceph_pool_perm *perm;
	struct page **pages;
1819
	size_t pool_ns_len;
1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
	int err = 0, err2 = 0, have = 0;

	down_read(&mdsc->pool_perm_rwsem);
	p = &mdsc->pool_perm_tree.rb_node;
	while (*p) {
		perm = rb_entry(*p, struct ceph_pool_perm, node);
		if (pool < perm->pool)
			p = &(*p)->rb_left;
		else if (pool > perm->pool)
			p = &(*p)->rb_right;
		else {
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841
			int ret = ceph_compare_string(pool_ns,
						perm->pool_ns,
						perm->pool_ns_len);
			if (ret < 0)
				p = &(*p)->rb_left;
			else if (ret > 0)
				p = &(*p)->rb_right;
			else {
				have = perm->perm;
				break;
			}
1842 1843 1844 1845 1846 1847
		}
	}
	up_read(&mdsc->pool_perm_rwsem);
	if (*p)
		goto out;

1848 1849 1850 1851 1852
	if (pool_ns)
		dout("__ceph_pool_perm_get pool %lld ns %.*s no perm cached\n",
		     pool, (int)pool_ns->len, pool_ns->str);
	else
		dout("__ceph_pool_perm_get pool %lld no perm cached\n", pool);
1853 1854

	down_write(&mdsc->pool_perm_rwsem);
1855
	p = &mdsc->pool_perm_tree.rb_node;
1856 1857 1858 1859 1860 1861 1862 1863 1864
	parent = NULL;
	while (*p) {
		parent = *p;
		perm = rb_entry(parent, struct ceph_pool_perm, node);
		if (pool < perm->pool)
			p = &(*p)->rb_left;
		else if (pool > perm->pool)
			p = &(*p)->rb_right;
		else {
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
			int ret = ceph_compare_string(pool_ns,
						perm->pool_ns,
						perm->pool_ns_len);
			if (ret < 0)
				p = &(*p)->rb_left;
			else if (ret > 0)
				p = &(*p)->rb_right;
			else {
				have = perm->perm;
				break;
			}
1876 1877 1878 1879 1880 1881 1882
		}
	}
	if (*p) {
		up_write(&mdsc->pool_perm_rwsem);
		goto out;
	}

Ilya Dryomov's avatar
Ilya Dryomov committed
1883
	rd_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
1884 1885 1886 1887 1888 1889 1890 1891 1892
					 1, false, GFP_NOFS);
	if (!rd_req) {
		err = -ENOMEM;
		goto out_unlock;
	}

	rd_req->r_flags = CEPH_OSD_FLAG_READ;
	osd_req_op_init(rd_req, 0, CEPH_OSD_OP_STAT, 0);
	rd_req->r_base_oloc.pool = pool;
1893 1894
	if (pool_ns)
		rd_req->r_base_oloc.pool_ns = ceph_get_string(pool_ns);
1895
	ceph_oid_printf(&rd_req->r_base_oid, "%llx.00000000", ci->i_vino.ino);
1896

1897 1898 1899
	err = ceph_osdc_alloc_messages(rd_req, GFP_NOFS);
	if (err)
		goto out_unlock;
1900

Ilya Dryomov's avatar
Ilya Dryomov committed
1901
	wr_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
1902 1903 1904 1905 1906 1907
					 1, false, GFP_NOFS);
	if (!wr_req) {
		err = -ENOMEM;
		goto out_unlock;
	}

1908
	wr_req->r_flags = CEPH_OSD_FLAG_WRITE;
1909
	osd_req_op_init(wr_req, 0, CEPH_OSD_OP_CREATE, CEPH_OSD_OP_FLAG_EXCL);
1910
	ceph_oloc_copy(&wr_req->r_base_oloc, &rd_req->r_base_oloc);
1911
	ceph_oid_copy(&wr_req->r_base_oid, &rd_req->r_base_oid);
1912

1913 1914 1915
	err = ceph_osdc_alloc_messages(wr_req, GFP_NOFS);
	if (err)
		goto out_unlock;
1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927

	/* one page should be large enough for STAT data */
	pages = ceph_alloc_page_vector(1, GFP_KERNEL);
	if (IS_ERR(pages)) {
		err = PTR_ERR(pages);
		goto out_unlock;
	}

	osd_req_op_raw_data_in_pages(rd_req, 0, pages, PAGE_SIZE,
				     0, false, true);
	err = ceph_osdc_start_request(&fsc->client->osdc, rd_req, false);

1928
	wr_req->r_mtime = ci->vfs_inode.i_mtime;
1929 1930 1931 1932 1933 1934 1935 1936 1937
	err2 = ceph_osdc_start_request(&fsc->client->osdc, wr_req, false);

	if (!err)
		err = ceph_osdc_wait_request(&fsc->client->osdc, rd_req);
	if (!err2)
		err2 = ceph_osdc_wait_request(&fsc->client->osdc, wr_req);

	if (err >= 0 || err == -ENOENT)
		have |= POOL_READ;
1938
	else if (err != -EPERM) {
1939 1940
		if (err == -EBLOCKLISTED)
			fsc->blocklisted = true;
1941
		goto out_unlock;
1942
	}
1943 1944 1945 1946

	if (err2 == 0 || err2 == -EEXIST)
		have |= POOL_WRITE;
	else if (err2 != -EPERM) {
1947 1948
		if (err2 == -EBLOCKLISTED)
			fsc->blocklisted = true;
1949 1950 1951 1952
		err = err2;
		goto out_unlock;
	}

1953 1954
	pool_ns_len = pool_ns ? pool_ns->len : 0;
	perm = kmalloc(sizeof(*perm) + pool_ns_len + 1, GFP_NOFS);
1955 1956 1957 1958 1959 1960 1961
	if (!perm) {
		err = -ENOMEM;
		goto out_unlock;
	}

	perm->pool = pool;
	perm->perm = have;
1962 1963 1964 1965 1966
	perm->pool_ns_len = pool_ns_len;
	if (pool_ns_len > 0)
		memcpy(perm->pool_ns, pool_ns->str, pool_ns_len);
	perm->pool_ns[pool_ns_len] = 0;

1967 1968 1969 1970 1971 1972
	rb_link_node(&perm->node, parent, p);
	rb_insert_color(&perm->node, &mdsc->pool_perm_tree);
	err = 0;
out_unlock:
	up_write(&mdsc->pool_perm_rwsem);

1973 1974
	ceph_osdc_put_request(rd_req);
	ceph_osdc_put_request(wr_req);
1975 1976 1977
out:
	if (!err)
		err = have;
1978 1979 1980 1981 1982
	if (pool_ns)
		dout("__ceph_pool_perm_get pool %lld ns %.*s result = %d\n",
		     pool, (int)pool_ns->len, pool_ns->str, err);
	else
		dout("__ceph_pool_perm_get pool %lld result = %d\n", pool, err);
1983 1984 1985
	return err;
}

1986
int ceph_pool_perm_check(struct inode *inode, int need)
1987
{
1988
	struct ceph_inode_info *ci = ceph_inode(inode);
1989
	struct ceph_string *pool_ns;
1990
	s64 pool;
1991 1992
	int ret, flags;

1993 1994 1995 1996
	/* Only need to do this for regular files */
	if (!S_ISREG(inode->i_mode))
		return 0;

1997 1998 1999 2000 2001 2002 2003 2004 2005
	if (ci->i_vino.snap != CEPH_NOSNAP) {
		/*
		 * Pool permission check needs to write to the first object.
		 * But for snapshot, head of the first object may have alread
		 * been deleted. Skip check to avoid creating orphan object.
		 */
		return 0;
	}

2006
	if (ceph_test_mount_opt(ceph_inode_to_client(inode),
2007 2008 2009 2010 2011
				NOPOOLPERM))
		return 0;

	spin_lock(&ci->i_ceph_lock);
	flags = ci->i_ceph_flags;
2012
	pool = ci->i_layout.pool_id;
2013 2014 2015 2016
	spin_unlock(&ci->i_ceph_lock);
check:
	if (flags & CEPH_I_POOL_PERM) {
		if ((need & CEPH_CAP_FILE_RD) && !(flags & CEPH_I_POOL_RD)) {
2017
			dout("ceph_pool_perm_check pool %lld no read perm\n",
2018 2019 2020 2021
			     pool);
			return -EPERM;
		}
		if ((need & CEPH_CAP_FILE_WR) && !(flags & CEPH_I_POOL_WR)) {
2022
			dout("ceph_pool_perm_check pool %lld no write perm\n",
2023 2024 2025 2026 2027 2028
			     pool);
			return -EPERM;
		}
		return 0;
	}

2029 2030 2031
	pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
	ret = __ceph_pool_perm_get(ci, pool, pool_ns);
	ceph_put_string(pool_ns);
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041
	if (ret < 0)
		return ret;

	flags = CEPH_I_POOL_PERM;
	if (ret & POOL_READ)
		flags |= CEPH_I_POOL_RD;
	if (ret & POOL_WRITE)
		flags |= CEPH_I_POOL_WR;

	spin_lock(&ci->i_ceph_lock);
2042 2043 2044
	if (pool == ci->i_layout.pool_id &&
	    pool_ns == rcu_dereference_raw(ci->i_layout.pool_ns)) {
		ci->i_ceph_flags |= flags;
2045
        } else {
2046
		pool = ci->i_layout.pool_id;
2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
		flags = ci->i_ceph_flags;
	}
	spin_unlock(&ci->i_ceph_lock);
	goto check;
}

void ceph_pool_perm_destroy(struct ceph_mds_client *mdsc)
{
	struct ceph_pool_perm *perm;
	struct rb_node *n;

	while (!RB_EMPTY_ROOT(&mdsc->pool_perm_tree)) {
		n = rb_first(&mdsc->pool_perm_tree);
		perm = rb_entry(n, struct ceph_pool_perm, node);
		rb_erase(n, &mdsc->pool_perm_tree);
		kfree(perm);
	}
}