xref: /openbmc/linux/fs/ceph/inode.c (revision d8b16b3d)
1 #include <linux/ceph/ceph_debug.h>
2 
3 #include <linux/module.h>
4 #include <linux/fs.h>
5 #include <linux/smp_lock.h>
6 #include <linux/slab.h>
7 #include <linux/string.h>
8 #include <linux/uaccess.h>
9 #include <linux/kernel.h>
10 #include <linux/namei.h>
11 #include <linux/writeback.h>
12 #include <linux/vmalloc.h>
13 #include <linux/pagevec.h>
14 
15 #include "super.h"
16 #include "mds_client.h"
17 #include <linux/ceph/decode.h>
18 
19 /*
20  * Ceph inode operations
21  *
22  * Implement basic inode helpers (get, alloc) and inode ops (getattr,
23  * setattr, etc.), xattr helpers, and helpers for assimilating
24  * metadata returned by the MDS into our cache.
25  *
26  * Also define helpers for doing asynchronous writeback, invalidation,
27  * and truncation for the benefit of those who can't afford to block
28  * (typically because they are in the message handler path).
29  */
30 
31 static const struct inode_operations ceph_symlink_iops;
32 
33 static void ceph_invalidate_work(struct work_struct *work);
34 static void ceph_writeback_work(struct work_struct *work);
35 static void ceph_vmtruncate_work(struct work_struct *work);
36 
37 /*
38  * find or create an inode, given the ceph ino number
39  */
40 struct inode *ceph_get_inode(struct super_block *sb, struct ceph_vino vino)
41 {
42 	struct inode *inode;
43 	ino_t t = ceph_vino_to_ino(vino);
44 
45 	inode = iget5_locked(sb, t, ceph_ino_compare, ceph_set_ino_cb, &vino);
46 	if (inode == NULL)
47 		return ERR_PTR(-ENOMEM);
48 	if (inode->i_state & I_NEW) {
49 		dout("get_inode created new inode %p %llx.%llx ino %llx\n",
50 		     inode, ceph_vinop(inode), (u64)inode->i_ino);
51 		unlock_new_inode(inode);
52 	}
53 
54 	dout("get_inode on %lu=%llx.%llx got %p\n", inode->i_ino, vino.ino,
55 	     vino.snap, inode);
56 	return inode;
57 }
58 
59 /*
60  * get/constuct snapdir inode for a given directory
61  */
62 struct inode *ceph_get_snapdir(struct inode *parent)
63 {
64 	struct ceph_vino vino = {
65 		.ino = ceph_ino(parent),
66 		.snap = CEPH_SNAPDIR,
67 	};
68 	struct inode *inode = ceph_get_inode(parent->i_sb, vino);
69 	struct ceph_inode_info *ci = ceph_inode(inode);
70 
71 	BUG_ON(!S_ISDIR(parent->i_mode));
72 	if (IS_ERR(inode))
73 		return inode;
74 	inode->i_mode = parent->i_mode;
75 	inode->i_uid = parent->i_uid;
76 	inode->i_gid = parent->i_gid;
77 	inode->i_op = &ceph_dir_iops;
78 	inode->i_fop = &ceph_dir_fops;
79 	ci->i_snap_caps = CEPH_CAP_PIN; /* so we can open */
80 	ci->i_rbytes = 0;
81 	return inode;
82 }
83 
84 const struct inode_operations ceph_file_iops = {
85 	.permission = ceph_permission,
86 	.setattr = ceph_setattr,
87 	.getattr = ceph_getattr,
88 	.setxattr = ceph_setxattr,
89 	.getxattr = ceph_getxattr,
90 	.listxattr = ceph_listxattr,
91 	.removexattr = ceph_removexattr,
92 };
93 
94 
95 /*
96  * We use a 'frag tree' to keep track of the MDS's directory fragments
97  * for a given inode (usually there is just a single fragment).  We
98  * need to know when a child frag is delegated to a new MDS, or when
99  * it is flagged as replicated, so we can direct our requests
100  * accordingly.
101  */
102 
103 /*
104  * find/create a frag in the tree
105  */
106 static struct ceph_inode_frag *__get_or_create_frag(struct ceph_inode_info *ci,
107 						    u32 f)
108 {
109 	struct rb_node **p;
110 	struct rb_node *parent = NULL;
111 	struct ceph_inode_frag *frag;
112 	int c;
113 
114 	p = &ci->i_fragtree.rb_node;
115 	while (*p) {
116 		parent = *p;
117 		frag = rb_entry(parent, struct ceph_inode_frag, node);
118 		c = ceph_frag_compare(f, frag->frag);
119 		if (c < 0)
120 			p = &(*p)->rb_left;
121 		else if (c > 0)
122 			p = &(*p)->rb_right;
123 		else
124 			return frag;
125 	}
126 
127 	frag = kmalloc(sizeof(*frag), GFP_NOFS);
128 	if (!frag) {
129 		pr_err("__get_or_create_frag ENOMEM on %p %llx.%llx "
130 		       "frag %x\n", &ci->vfs_inode,
131 		       ceph_vinop(&ci->vfs_inode), f);
132 		return ERR_PTR(-ENOMEM);
133 	}
134 	frag->frag = f;
135 	frag->split_by = 0;
136 	frag->mds = -1;
137 	frag->ndist = 0;
138 
139 	rb_link_node(&frag->node, parent, p);
140 	rb_insert_color(&frag->node, &ci->i_fragtree);
141 
142 	dout("get_or_create_frag added %llx.%llx frag %x\n",
143 	     ceph_vinop(&ci->vfs_inode), f);
144 	return frag;
145 }
146 
147 /*
148  * find a specific frag @f
149  */
150 struct ceph_inode_frag *__ceph_find_frag(struct ceph_inode_info *ci, u32 f)
151 {
152 	struct rb_node *n = ci->i_fragtree.rb_node;
153 
154 	while (n) {
155 		struct ceph_inode_frag *frag =
156 			rb_entry(n, struct ceph_inode_frag, node);
157 		int c = ceph_frag_compare(f, frag->frag);
158 		if (c < 0)
159 			n = n->rb_left;
160 		else if (c > 0)
161 			n = n->rb_right;
162 		else
163 			return frag;
164 	}
165 	return NULL;
166 }
167 
168 /*
169  * Choose frag containing the given value @v.  If @pfrag is
170  * specified, copy the frag delegation info to the caller if
171  * it is present.
172  */
173 u32 ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
174 		     struct ceph_inode_frag *pfrag,
175 		     int *found)
176 {
177 	u32 t = ceph_frag_make(0, 0);
178 	struct ceph_inode_frag *frag;
179 	unsigned nway, i;
180 	u32 n;
181 
182 	if (found)
183 		*found = 0;
184 
185 	mutex_lock(&ci->i_fragtree_mutex);
186 	while (1) {
187 		WARN_ON(!ceph_frag_contains_value(t, v));
188 		frag = __ceph_find_frag(ci, t);
189 		if (!frag)
190 			break; /* t is a leaf */
191 		if (frag->split_by == 0) {
192 			if (pfrag)
193 				memcpy(pfrag, frag, sizeof(*pfrag));
194 			if (found)
195 				*found = 1;
196 			break;
197 		}
198 
199 		/* choose child */
200 		nway = 1 << frag->split_by;
201 		dout("choose_frag(%x) %x splits by %d (%d ways)\n", v, t,
202 		     frag->split_by, nway);
203 		for (i = 0; i < nway; i++) {
204 			n = ceph_frag_make_child(t, frag->split_by, i);
205 			if (ceph_frag_contains_value(n, v)) {
206 				t = n;
207 				break;
208 			}
209 		}
210 		BUG_ON(i == nway);
211 	}
212 	dout("choose_frag(%x) = %x\n", v, t);
213 
214 	mutex_unlock(&ci->i_fragtree_mutex);
215 	return t;
216 }
217 
218 /*
219  * Process dirfrag (delegation) info from the mds.  Include leaf
220  * fragment in tree ONLY if ndist > 0.  Otherwise, only
221  * branches/splits are included in i_fragtree)
222  */
223 static int ceph_fill_dirfrag(struct inode *inode,
224 			     struct ceph_mds_reply_dirfrag *dirinfo)
225 {
226 	struct ceph_inode_info *ci = ceph_inode(inode);
227 	struct ceph_inode_frag *frag;
228 	u32 id = le32_to_cpu(dirinfo->frag);
229 	int mds = le32_to_cpu(dirinfo->auth);
230 	int ndist = le32_to_cpu(dirinfo->ndist);
231 	int i;
232 	int err = 0;
233 
234 	mutex_lock(&ci->i_fragtree_mutex);
235 	if (ndist == 0) {
236 		/* no delegation info needed. */
237 		frag = __ceph_find_frag(ci, id);
238 		if (!frag)
239 			goto out;
240 		if (frag->split_by == 0) {
241 			/* tree leaf, remove */
242 			dout("fill_dirfrag removed %llx.%llx frag %x"
243 			     " (no ref)\n", ceph_vinop(inode), id);
244 			rb_erase(&frag->node, &ci->i_fragtree);
245 			kfree(frag);
246 		} else {
247 			/* tree branch, keep and clear */
248 			dout("fill_dirfrag cleared %llx.%llx frag %x"
249 			     " referral\n", ceph_vinop(inode), id);
250 			frag->mds = -1;
251 			frag->ndist = 0;
252 		}
253 		goto out;
254 	}
255 
256 
257 	/* find/add this frag to store mds delegation info */
258 	frag = __get_or_create_frag(ci, id);
259 	if (IS_ERR(frag)) {
260 		/* this is not the end of the world; we can continue
261 		   with bad/inaccurate delegation info */
262 		pr_err("fill_dirfrag ENOMEM on mds ref %llx.%llx fg %x\n",
263 		       ceph_vinop(inode), le32_to_cpu(dirinfo->frag));
264 		err = -ENOMEM;
265 		goto out;
266 	}
267 
268 	frag->mds = mds;
269 	frag->ndist = min_t(u32, ndist, CEPH_MAX_DIRFRAG_REP);
270 	for (i = 0; i < frag->ndist; i++)
271 		frag->dist[i] = le32_to_cpu(dirinfo->dist[i]);
272 	dout("fill_dirfrag %llx.%llx frag %x ndist=%d\n",
273 	     ceph_vinop(inode), frag->frag, frag->ndist);
274 
275 out:
276 	mutex_unlock(&ci->i_fragtree_mutex);
277 	return err;
278 }
279 
280 
281 /*
282  * initialize a newly allocated inode.
283  */
284 struct inode *ceph_alloc_inode(struct super_block *sb)
285 {
286 	struct ceph_inode_info *ci;
287 	int i;
288 
289 	ci = kmem_cache_alloc(ceph_inode_cachep, GFP_NOFS);
290 	if (!ci)
291 		return NULL;
292 
293 	dout("alloc_inode %p\n", &ci->vfs_inode);
294 
295 	ci->i_version = 0;
296 	ci->i_time_warp_seq = 0;
297 	ci->i_ceph_flags = 0;
298 	ci->i_release_count = 0;
299 	ci->i_symlink = NULL;
300 
301 	ci->i_fragtree = RB_ROOT;
302 	mutex_init(&ci->i_fragtree_mutex);
303 
304 	ci->i_xattrs.blob = NULL;
305 	ci->i_xattrs.prealloc_blob = NULL;
306 	ci->i_xattrs.dirty = false;
307 	ci->i_xattrs.index = RB_ROOT;
308 	ci->i_xattrs.count = 0;
309 	ci->i_xattrs.names_size = 0;
310 	ci->i_xattrs.vals_size = 0;
311 	ci->i_xattrs.version = 0;
312 	ci->i_xattrs.index_version = 0;
313 
314 	ci->i_caps = RB_ROOT;
315 	ci->i_auth_cap = NULL;
316 	ci->i_dirty_caps = 0;
317 	ci->i_flushing_caps = 0;
318 	INIT_LIST_HEAD(&ci->i_dirty_item);
319 	INIT_LIST_HEAD(&ci->i_flushing_item);
320 	ci->i_cap_flush_seq = 0;
321 	ci->i_cap_flush_last_tid = 0;
322 	memset(&ci->i_cap_flush_tid, 0, sizeof(ci->i_cap_flush_tid));
323 	init_waitqueue_head(&ci->i_cap_wq);
324 	ci->i_hold_caps_min = 0;
325 	ci->i_hold_caps_max = 0;
326 	INIT_LIST_HEAD(&ci->i_cap_delay_list);
327 	ci->i_cap_exporting_mds = 0;
328 	ci->i_cap_exporting_mseq = 0;
329 	ci->i_cap_exporting_issued = 0;
330 	INIT_LIST_HEAD(&ci->i_cap_snaps);
331 	ci->i_head_snapc = NULL;
332 	ci->i_snap_caps = 0;
333 
334 	for (i = 0; i < CEPH_FILE_MODE_NUM; i++)
335 		ci->i_nr_by_mode[i] = 0;
336 
337 	ci->i_truncate_seq = 0;
338 	ci->i_truncate_size = 0;
339 	ci->i_truncate_pending = 0;
340 
341 	ci->i_max_size = 0;
342 	ci->i_reported_size = 0;
343 	ci->i_wanted_max_size = 0;
344 	ci->i_requested_max_size = 0;
345 
346 	ci->i_pin_ref = 0;
347 	ci->i_rd_ref = 0;
348 	ci->i_rdcache_ref = 0;
349 	ci->i_wr_ref = 0;
350 	ci->i_wrbuffer_ref = 0;
351 	ci->i_wrbuffer_ref_head = 0;
352 	ci->i_shared_gen = 0;
353 	ci->i_rdcache_gen = 0;
354 	ci->i_rdcache_revoking = 0;
355 
356 	INIT_LIST_HEAD(&ci->i_unsafe_writes);
357 	INIT_LIST_HEAD(&ci->i_unsafe_dirops);
358 	spin_lock_init(&ci->i_unsafe_lock);
359 
360 	ci->i_snap_realm = NULL;
361 	INIT_LIST_HEAD(&ci->i_snap_realm_item);
362 	INIT_LIST_HEAD(&ci->i_snap_flush_item);
363 
364 	INIT_WORK(&ci->i_wb_work, ceph_writeback_work);
365 	INIT_WORK(&ci->i_pg_inv_work, ceph_invalidate_work);
366 
367 	INIT_WORK(&ci->i_vmtruncate_work, ceph_vmtruncate_work);
368 
369 	return &ci->vfs_inode;
370 }
371 
372 void ceph_destroy_inode(struct inode *inode)
373 {
374 	struct ceph_inode_info *ci = ceph_inode(inode);
375 	struct ceph_inode_frag *frag;
376 	struct rb_node *n;
377 
378 	dout("destroy_inode %p ino %llx.%llx\n", inode, ceph_vinop(inode));
379 
380 	ceph_queue_caps_release(inode);
381 
382 	/*
383 	 * we may still have a snap_realm reference if there are stray
384 	 * caps in i_cap_exporting_issued or i_snap_caps.
385 	 */
386 	if (ci->i_snap_realm) {
387 		struct ceph_mds_client *mdsc =
388 			ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
389 		struct ceph_snap_realm *realm = ci->i_snap_realm;
390 
391 		dout(" dropping residual ref to snap realm %p\n", realm);
392 		spin_lock(&realm->inodes_with_caps_lock);
393 		list_del_init(&ci->i_snap_realm_item);
394 		spin_unlock(&realm->inodes_with_caps_lock);
395 		ceph_put_snap_realm(mdsc, realm);
396 	}
397 
398 	kfree(ci->i_symlink);
399 	while ((n = rb_first(&ci->i_fragtree)) != NULL) {
400 		frag = rb_entry(n, struct ceph_inode_frag, node);
401 		rb_erase(n, &ci->i_fragtree);
402 		kfree(frag);
403 	}
404 
405 	__ceph_destroy_xattrs(ci);
406 	if (ci->i_xattrs.blob)
407 		ceph_buffer_put(ci->i_xattrs.blob);
408 	if (ci->i_xattrs.prealloc_blob)
409 		ceph_buffer_put(ci->i_xattrs.prealloc_blob);
410 
411 	kmem_cache_free(ceph_inode_cachep, ci);
412 }
413 
414 
415 /*
416  * Helpers to fill in size, ctime, mtime, and atime.  We have to be
417  * careful because either the client or MDS may have more up to date
418  * info, depending on which capabilities are held, and whether
419  * time_warp_seq or truncate_seq have increased.  (Ordinarily, mtime
420  * and size are monotonically increasing, except when utimes() or
421  * truncate() increments the corresponding _seq values.)
422  */
423 int ceph_fill_file_size(struct inode *inode, int issued,
424 			u32 truncate_seq, u64 truncate_size, u64 size)
425 {
426 	struct ceph_inode_info *ci = ceph_inode(inode);
427 	int queue_trunc = 0;
428 
429 	if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) > 0 ||
430 	    (truncate_seq == ci->i_truncate_seq && size > inode->i_size)) {
431 		dout("size %lld -> %llu\n", inode->i_size, size);
432 		inode->i_size = size;
433 		inode->i_blocks = (size + (1<<9) - 1) >> 9;
434 		ci->i_reported_size = size;
435 		if (truncate_seq != ci->i_truncate_seq) {
436 			dout("truncate_seq %u -> %u\n",
437 			     ci->i_truncate_seq, truncate_seq);
438 			ci->i_truncate_seq = truncate_seq;
439 			/*
440 			 * If we hold relevant caps, or in the case where we're
441 			 * not the only client referencing this file and we
442 			 * don't hold those caps, then we need to check whether
443 			 * the file is either opened or mmaped
444 			 */
445 			if ((issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_RD|
446 				       CEPH_CAP_FILE_WR|CEPH_CAP_FILE_BUFFER|
447 				       CEPH_CAP_FILE_EXCL|
448 				       CEPH_CAP_FILE_LAZYIO)) ||
449 			    mapping_mapped(inode->i_mapping) ||
450 			    __ceph_caps_file_wanted(ci)) {
451 				ci->i_truncate_pending++;
452 				queue_trunc = 1;
453 			}
454 		}
455 	}
456 	if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) >= 0 &&
457 	    ci->i_truncate_size != truncate_size) {
458 		dout("truncate_size %lld -> %llu\n", ci->i_truncate_size,
459 		     truncate_size);
460 		ci->i_truncate_size = truncate_size;
461 	}
462 	return queue_trunc;
463 }
464 
465 void ceph_fill_file_time(struct inode *inode, int issued,
466 			 u64 time_warp_seq, struct timespec *ctime,
467 			 struct timespec *mtime, struct timespec *atime)
468 {
469 	struct ceph_inode_info *ci = ceph_inode(inode);
470 	int warn = 0;
471 
472 	if (issued & (CEPH_CAP_FILE_EXCL|
473 		      CEPH_CAP_FILE_WR|
474 		      CEPH_CAP_FILE_BUFFER)) {
475 		if (timespec_compare(ctime, &inode->i_ctime) > 0) {
476 			dout("ctime %ld.%09ld -> %ld.%09ld inc w/ cap\n",
477 			     inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
478 			     ctime->tv_sec, ctime->tv_nsec);
479 			inode->i_ctime = *ctime;
480 		}
481 		if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) > 0) {
482 			/* the MDS did a utimes() */
483 			dout("mtime %ld.%09ld -> %ld.%09ld "
484 			     "tw %d -> %d\n",
485 			     inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
486 			     mtime->tv_sec, mtime->tv_nsec,
487 			     ci->i_time_warp_seq, (int)time_warp_seq);
488 
489 			inode->i_mtime = *mtime;
490 			inode->i_atime = *atime;
491 			ci->i_time_warp_seq = time_warp_seq;
492 		} else if (time_warp_seq == ci->i_time_warp_seq) {
493 			/* nobody did utimes(); take the max */
494 			if (timespec_compare(mtime, &inode->i_mtime) > 0) {
495 				dout("mtime %ld.%09ld -> %ld.%09ld inc\n",
496 				     inode->i_mtime.tv_sec,
497 				     inode->i_mtime.tv_nsec,
498 				     mtime->tv_sec, mtime->tv_nsec);
499 				inode->i_mtime = *mtime;
500 			}
501 			if (timespec_compare(atime, &inode->i_atime) > 0) {
502 				dout("atime %ld.%09ld -> %ld.%09ld inc\n",
503 				     inode->i_atime.tv_sec,
504 				     inode->i_atime.tv_nsec,
505 				     atime->tv_sec, atime->tv_nsec);
506 				inode->i_atime = *atime;
507 			}
508 		} else if (issued & CEPH_CAP_FILE_EXCL) {
509 			/* we did a utimes(); ignore mds values */
510 		} else {
511 			warn = 1;
512 		}
513 	} else {
514 		/* we have no write caps; whatever the MDS says is true */
515 		if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) >= 0) {
516 			inode->i_ctime = *ctime;
517 			inode->i_mtime = *mtime;
518 			inode->i_atime = *atime;
519 			ci->i_time_warp_seq = time_warp_seq;
520 		} else {
521 			warn = 1;
522 		}
523 	}
524 	if (warn) /* time_warp_seq shouldn't go backwards */
525 		dout("%p mds time_warp_seq %llu < %u\n",
526 		     inode, time_warp_seq, ci->i_time_warp_seq);
527 }
528 
529 /*
530  * Populate an inode based on info from mds.  May be called on new or
531  * existing inodes.
532  */
533 static int fill_inode(struct inode *inode,
534 		      struct ceph_mds_reply_info_in *iinfo,
535 		      struct ceph_mds_reply_dirfrag *dirinfo,
536 		      struct ceph_mds_session *session,
537 		      unsigned long ttl_from, int cap_fmode,
538 		      struct ceph_cap_reservation *caps_reservation)
539 {
540 	struct ceph_mds_reply_inode *info = iinfo->in;
541 	struct ceph_inode_info *ci = ceph_inode(inode);
542 	int i;
543 	int issued, implemented;
544 	struct timespec mtime, atime, ctime;
545 	u32 nsplits;
546 	struct ceph_buffer *xattr_blob = NULL;
547 	int err = 0;
548 	int queue_trunc = 0;
549 
550 	dout("fill_inode %p ino %llx.%llx v %llu had %llu\n",
551 	     inode, ceph_vinop(inode), le64_to_cpu(info->version),
552 	     ci->i_version);
553 
554 	/*
555 	 * prealloc xattr data, if it looks like we'll need it.  only
556 	 * if len > 4 (meaning there are actually xattrs; the first 4
557 	 * bytes are the xattr count).
558 	 */
559 	if (iinfo->xattr_len > 4) {
560 		xattr_blob = ceph_buffer_new(iinfo->xattr_len, GFP_NOFS);
561 		if (!xattr_blob)
562 			pr_err("fill_inode ENOMEM xattr blob %d bytes\n",
563 			       iinfo->xattr_len);
564 	}
565 
566 	spin_lock(&inode->i_lock);
567 
568 	/*
569 	 * provided version will be odd if inode value is projected,
570 	 * even if stable.  skip the update if we have a newer info
571 	 * (e.g., due to inode info racing form multiple MDSs), or if
572 	 * we are getting projected (unstable) inode info.
573 	 */
574 	if (le64_to_cpu(info->version) > 0 &&
575 	    (ci->i_version & ~1) > le64_to_cpu(info->version))
576 		goto no_change;
577 
578 	issued = __ceph_caps_issued(ci, &implemented);
579 	issued |= implemented | __ceph_caps_dirty(ci);
580 
581 	/* update inode */
582 	ci->i_version = le64_to_cpu(info->version);
583 	inode->i_version++;
584 	inode->i_rdev = le32_to_cpu(info->rdev);
585 
586 	if ((issued & CEPH_CAP_AUTH_EXCL) == 0) {
587 		inode->i_mode = le32_to_cpu(info->mode);
588 		inode->i_uid = le32_to_cpu(info->uid);
589 		inode->i_gid = le32_to_cpu(info->gid);
590 		dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
591 		     inode->i_uid, inode->i_gid);
592 	}
593 
594 	if ((issued & CEPH_CAP_LINK_EXCL) == 0)
595 		inode->i_nlink = le32_to_cpu(info->nlink);
596 
597 	/* be careful with mtime, atime, size */
598 	ceph_decode_timespec(&atime, &info->atime);
599 	ceph_decode_timespec(&mtime, &info->mtime);
600 	ceph_decode_timespec(&ctime, &info->ctime);
601 	queue_trunc = ceph_fill_file_size(inode, issued,
602 					  le32_to_cpu(info->truncate_seq),
603 					  le64_to_cpu(info->truncate_size),
604 					  le64_to_cpu(info->size));
605 	ceph_fill_file_time(inode, issued,
606 			    le32_to_cpu(info->time_warp_seq),
607 			    &ctime, &mtime, &atime);
608 
609 	ci->i_max_size = le64_to_cpu(info->max_size);
610 	ci->i_layout = info->layout;
611 	inode->i_blkbits = fls(le32_to_cpu(info->layout.fl_stripe_unit)) - 1;
612 
613 	/* xattrs */
614 	/* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
615 	if ((issued & CEPH_CAP_XATTR_EXCL) == 0 &&
616 	    le64_to_cpu(info->xattr_version) > ci->i_xattrs.version) {
617 		if (ci->i_xattrs.blob)
618 			ceph_buffer_put(ci->i_xattrs.blob);
619 		ci->i_xattrs.blob = xattr_blob;
620 		if (xattr_blob)
621 			memcpy(ci->i_xattrs.blob->vec.iov_base,
622 			       iinfo->xattr_data, iinfo->xattr_len);
623 		ci->i_xattrs.version = le64_to_cpu(info->xattr_version);
624 		xattr_blob = NULL;
625 	}
626 
627 	inode->i_mapping->a_ops = &ceph_aops;
628 	inode->i_mapping->backing_dev_info =
629 		&ceph_sb_to_client(inode->i_sb)->backing_dev_info;
630 
631 	switch (inode->i_mode & S_IFMT) {
632 	case S_IFIFO:
633 	case S_IFBLK:
634 	case S_IFCHR:
635 	case S_IFSOCK:
636 		init_special_inode(inode, inode->i_mode, inode->i_rdev);
637 		inode->i_op = &ceph_file_iops;
638 		break;
639 	case S_IFREG:
640 		inode->i_op = &ceph_file_iops;
641 		inode->i_fop = &ceph_file_fops;
642 		break;
643 	case S_IFLNK:
644 		inode->i_op = &ceph_symlink_iops;
645 		if (!ci->i_symlink) {
646 			int symlen = iinfo->symlink_len;
647 			char *sym;
648 
649 			BUG_ON(symlen != inode->i_size);
650 			spin_unlock(&inode->i_lock);
651 
652 			err = -ENOMEM;
653 			sym = kmalloc(symlen+1, GFP_NOFS);
654 			if (!sym)
655 				goto out;
656 			memcpy(sym, iinfo->symlink, symlen);
657 			sym[symlen] = 0;
658 
659 			spin_lock(&inode->i_lock);
660 			if (!ci->i_symlink)
661 				ci->i_symlink = sym;
662 			else
663 				kfree(sym); /* lost a race */
664 		}
665 		break;
666 	case S_IFDIR:
667 		inode->i_op = &ceph_dir_iops;
668 		inode->i_fop = &ceph_dir_fops;
669 
670 		ci->i_files = le64_to_cpu(info->files);
671 		ci->i_subdirs = le64_to_cpu(info->subdirs);
672 		ci->i_rbytes = le64_to_cpu(info->rbytes);
673 		ci->i_rfiles = le64_to_cpu(info->rfiles);
674 		ci->i_rsubdirs = le64_to_cpu(info->rsubdirs);
675 		ceph_decode_timespec(&ci->i_rctime, &info->rctime);
676 
677 		/* set dir completion flag? */
678 		if (ci->i_files == 0 && ci->i_subdirs == 0 &&
679 		    ceph_snap(inode) == CEPH_NOSNAP &&
680 		    (le32_to_cpu(info->cap.caps) & CEPH_CAP_FILE_SHARED) &&
681 		    (issued & CEPH_CAP_FILE_EXCL) == 0 &&
682 		    (ci->i_ceph_flags & CEPH_I_COMPLETE) == 0) {
683 			dout(" marking %p complete (empty)\n", inode);
684 			ci->i_ceph_flags |= CEPH_I_COMPLETE;
685 			ci->i_max_offset = 2;
686 		}
687 
688 		/* it may be better to set st_size in getattr instead? */
689 		if (ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), RBYTES))
690 			inode->i_size = ci->i_rbytes;
691 		break;
692 	default:
693 		pr_err("fill_inode %llx.%llx BAD mode 0%o\n",
694 		       ceph_vinop(inode), inode->i_mode);
695 	}
696 
697 no_change:
698 	spin_unlock(&inode->i_lock);
699 
700 	/* queue truncate if we saw i_size decrease */
701 	if (queue_trunc)
702 		ceph_queue_vmtruncate(inode);
703 
704 	/* populate frag tree */
705 	/* FIXME: move me up, if/when version reflects fragtree changes */
706 	nsplits = le32_to_cpu(info->fragtree.nsplits);
707 	mutex_lock(&ci->i_fragtree_mutex);
708 	for (i = 0; i < nsplits; i++) {
709 		u32 id = le32_to_cpu(info->fragtree.splits[i].frag);
710 		struct ceph_inode_frag *frag = __get_or_create_frag(ci, id);
711 
712 		if (IS_ERR(frag))
713 			continue;
714 		frag->split_by = le32_to_cpu(info->fragtree.splits[i].by);
715 		dout(" frag %x split by %d\n", frag->frag, frag->split_by);
716 	}
717 	mutex_unlock(&ci->i_fragtree_mutex);
718 
719 	/* were we issued a capability? */
720 	if (info->cap.caps) {
721 		if (ceph_snap(inode) == CEPH_NOSNAP) {
722 			ceph_add_cap(inode, session,
723 				     le64_to_cpu(info->cap.cap_id),
724 				     cap_fmode,
725 				     le32_to_cpu(info->cap.caps),
726 				     le32_to_cpu(info->cap.wanted),
727 				     le32_to_cpu(info->cap.seq),
728 				     le32_to_cpu(info->cap.mseq),
729 				     le64_to_cpu(info->cap.realm),
730 				     info->cap.flags,
731 				     caps_reservation);
732 		} else {
733 			spin_lock(&inode->i_lock);
734 			dout(" %p got snap_caps %s\n", inode,
735 			     ceph_cap_string(le32_to_cpu(info->cap.caps)));
736 			ci->i_snap_caps |= le32_to_cpu(info->cap.caps);
737 			if (cap_fmode >= 0)
738 				__ceph_get_fmode(ci, cap_fmode);
739 			spin_unlock(&inode->i_lock);
740 		}
741 	} else if (cap_fmode >= 0) {
742 		pr_warning("mds issued no caps on %llx.%llx\n",
743 			   ceph_vinop(inode));
744 		__ceph_get_fmode(ci, cap_fmode);
745 	}
746 
747 	/* update delegation info? */
748 	if (dirinfo)
749 		ceph_fill_dirfrag(inode, dirinfo);
750 
751 	err = 0;
752 
753 out:
754 	if (xattr_blob)
755 		ceph_buffer_put(xattr_blob);
756 	return err;
757 }
758 
759 /*
760  * caller should hold session s_mutex.
761  */
762 static void update_dentry_lease(struct dentry *dentry,
763 				struct ceph_mds_reply_lease *lease,
764 				struct ceph_mds_session *session,
765 				unsigned long from_time)
766 {
767 	struct ceph_dentry_info *di = ceph_dentry(dentry);
768 	long unsigned duration = le32_to_cpu(lease->duration_ms);
769 	long unsigned ttl = from_time + (duration * HZ) / 1000;
770 	long unsigned half_ttl = from_time + (duration * HZ / 2) / 1000;
771 	struct inode *dir;
772 
773 	/* only track leases on regular dentries */
774 	if (dentry->d_op != &ceph_dentry_ops)
775 		return;
776 
777 	spin_lock(&dentry->d_lock);
778 	dout("update_dentry_lease %p mask %d duration %lu ms ttl %lu\n",
779 	     dentry, le16_to_cpu(lease->mask), duration, ttl);
780 
781 	/* make lease_rdcache_gen match directory */
782 	dir = dentry->d_parent->d_inode;
783 	di->lease_shared_gen = ceph_inode(dir)->i_shared_gen;
784 
785 	if (lease->mask == 0)
786 		goto out_unlock;
787 
788 	if (di->lease_gen == session->s_cap_gen &&
789 	    time_before(ttl, dentry->d_time))
790 		goto out_unlock;  /* we already have a newer lease. */
791 
792 	if (di->lease_session && di->lease_session != session)
793 		goto out_unlock;
794 
795 	ceph_dentry_lru_touch(dentry);
796 
797 	if (!di->lease_session)
798 		di->lease_session = ceph_get_mds_session(session);
799 	di->lease_gen = session->s_cap_gen;
800 	di->lease_seq = le32_to_cpu(lease->seq);
801 	di->lease_renew_after = half_ttl;
802 	di->lease_renew_from = 0;
803 	dentry->d_time = ttl;
804 out_unlock:
805 	spin_unlock(&dentry->d_lock);
806 	return;
807 }
808 
809 /*
810  * Set dentry's directory position based on the current dir's max, and
811  * order it in d_subdirs, so that dcache_readdir behaves.
812  */
813 static void ceph_set_dentry_offset(struct dentry *dn)
814 {
815 	struct dentry *dir = dn->d_parent;
816 	struct inode *inode = dn->d_parent->d_inode;
817 	struct ceph_dentry_info *di;
818 
819 	BUG_ON(!inode);
820 
821 	di = ceph_dentry(dn);
822 
823 	spin_lock(&inode->i_lock);
824 	if ((ceph_inode(inode)->i_ceph_flags & CEPH_I_COMPLETE) == 0) {
825 		spin_unlock(&inode->i_lock);
826 		return;
827 	}
828 	di->offset = ceph_inode(inode)->i_max_offset++;
829 	spin_unlock(&inode->i_lock);
830 
831 	spin_lock(&dcache_lock);
832 	spin_lock(&dn->d_lock);
833 	list_move(&dn->d_u.d_child, &dir->d_subdirs);
834 	dout("set_dentry_offset %p %lld (%p %p)\n", dn, di->offset,
835 	     dn->d_u.d_child.prev, dn->d_u.d_child.next);
836 	spin_unlock(&dn->d_lock);
837 	spin_unlock(&dcache_lock);
838 }
839 
840 /*
841  * splice a dentry to an inode.
842  * caller must hold directory i_mutex for this to be safe.
843  *
844  * we will only rehash the resulting dentry if @prehash is
845  * true; @prehash will be set to false (for the benefit of
846  * the caller) if we fail.
847  */
848 static struct dentry *splice_dentry(struct dentry *dn, struct inode *in,
849 				    bool *prehash, bool set_offset)
850 {
851 	struct dentry *realdn;
852 
853 	BUG_ON(dn->d_inode);
854 
855 	/* dn must be unhashed */
856 	if (!d_unhashed(dn))
857 		d_drop(dn);
858 	realdn = d_materialise_unique(dn, in);
859 	if (IS_ERR(realdn)) {
860 		pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n",
861 		       PTR_ERR(realdn), dn, in, ceph_vinop(in));
862 		if (prehash)
863 			*prehash = false; /* don't rehash on error */
864 		dn = realdn; /* note realdn contains the error */
865 		goto out;
866 	} else if (realdn) {
867 		dout("dn %p (%d) spliced with %p (%d) "
868 		     "inode %p ino %llx.%llx\n",
869 		     dn, atomic_read(&dn->d_count),
870 		     realdn, atomic_read(&realdn->d_count),
871 		     realdn->d_inode, ceph_vinop(realdn->d_inode));
872 		dput(dn);
873 		dn = realdn;
874 	} else {
875 		BUG_ON(!ceph_dentry(dn));
876 		dout("dn %p attached to %p ino %llx.%llx\n",
877 		     dn, dn->d_inode, ceph_vinop(dn->d_inode));
878 	}
879 	if ((!prehash || *prehash) && d_unhashed(dn))
880 		d_rehash(dn);
881 	if (set_offset)
882 		ceph_set_dentry_offset(dn);
883 out:
884 	return dn;
885 }
886 
887 /*
888  * Incorporate results into the local cache.  This is either just
889  * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
890  * after a lookup).
891  *
892  * A reply may contain
893  *         a directory inode along with a dentry.
894  *  and/or a target inode
895  *
896  * Called with snap_rwsem (read).
897  */
898 int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req,
899 		    struct ceph_mds_session *session)
900 {
901 	struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
902 	struct inode *in = NULL;
903 	struct ceph_mds_reply_inode *ininfo;
904 	struct ceph_vino vino;
905 	struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
906 	int i = 0;
907 	int err = 0;
908 
909 	dout("fill_trace %p is_dentry %d is_target %d\n", req,
910 	     rinfo->head->is_dentry, rinfo->head->is_target);
911 
912 #if 0
913 	/*
914 	 * Debugging hook:
915 	 *
916 	 * If we resend completed ops to a recovering mds, we get no
917 	 * trace.  Since that is very rare, pretend this is the case
918 	 * to ensure the 'no trace' handlers in the callers behave.
919 	 *
920 	 * Fill in inodes unconditionally to avoid breaking cap
921 	 * invariants.
922 	 */
923 	if (rinfo->head->op & CEPH_MDS_OP_WRITE) {
924 		pr_info("fill_trace faking empty trace on %lld %s\n",
925 			req->r_tid, ceph_mds_op_name(rinfo->head->op));
926 		if (rinfo->head->is_dentry) {
927 			rinfo->head->is_dentry = 0;
928 			err = fill_inode(req->r_locked_dir,
929 					 &rinfo->diri, rinfo->dirfrag,
930 					 session, req->r_request_started, -1);
931 		}
932 		if (rinfo->head->is_target) {
933 			rinfo->head->is_target = 0;
934 			ininfo = rinfo->targeti.in;
935 			vino.ino = le64_to_cpu(ininfo->ino);
936 			vino.snap = le64_to_cpu(ininfo->snapid);
937 			in = ceph_get_inode(sb, vino);
938 			err = fill_inode(in, &rinfo->targeti, NULL,
939 					 session, req->r_request_started,
940 					 req->r_fmode);
941 			iput(in);
942 		}
943 	}
944 #endif
945 
946 	if (!rinfo->head->is_target && !rinfo->head->is_dentry) {
947 		dout("fill_trace reply is empty!\n");
948 		if (rinfo->head->result == 0 && req->r_locked_dir)
949 			ceph_invalidate_dir_request(req);
950 		return 0;
951 	}
952 
953 	if (rinfo->head->is_dentry) {
954 		struct inode *dir = req->r_locked_dir;
955 
956 		err = fill_inode(dir, &rinfo->diri, rinfo->dirfrag,
957 				 session, req->r_request_started, -1,
958 				 &req->r_caps_reservation);
959 		if (err < 0)
960 			return err;
961 	}
962 
963 	/*
964 	 * ignore null lease/binding on snapdir ENOENT, or else we
965 	 * will have trouble splicing in the virtual snapdir later
966 	 */
967 	if (rinfo->head->is_dentry && !req->r_aborted &&
968 	    (rinfo->head->is_target || strncmp(req->r_dentry->d_name.name,
969 					       fsc->mount_options->snapdir_name,
970 					       req->r_dentry->d_name.len))) {
971 		/*
972 		 * lookup link rename   : null -> possibly existing inode
973 		 * mknod symlink mkdir  : null -> new inode
974 		 * unlink               : linked -> null
975 		 */
976 		struct inode *dir = req->r_locked_dir;
977 		struct dentry *dn = req->r_dentry;
978 		bool have_dir_cap, have_lease;
979 
980 		BUG_ON(!dn);
981 		BUG_ON(!dir);
982 		BUG_ON(dn->d_parent->d_inode != dir);
983 		BUG_ON(ceph_ino(dir) !=
984 		       le64_to_cpu(rinfo->diri.in->ino));
985 		BUG_ON(ceph_snap(dir) !=
986 		       le64_to_cpu(rinfo->diri.in->snapid));
987 
988 		/* do we have a lease on the whole dir? */
989 		have_dir_cap =
990 			(le32_to_cpu(rinfo->diri.in->cap.caps) &
991 			 CEPH_CAP_FILE_SHARED);
992 
993 		/* do we have a dn lease? */
994 		have_lease = have_dir_cap ||
995 			(le16_to_cpu(rinfo->dlease->mask) &
996 			 CEPH_LOCK_DN);
997 
998 		if (!have_lease)
999 			dout("fill_trace  no dentry lease or dir cap\n");
1000 
1001 		/* rename? */
1002 		if (req->r_old_dentry && req->r_op == CEPH_MDS_OP_RENAME) {
1003 			dout(" src %p '%.*s' dst %p '%.*s'\n",
1004 			     req->r_old_dentry,
1005 			     req->r_old_dentry->d_name.len,
1006 			     req->r_old_dentry->d_name.name,
1007 			     dn, dn->d_name.len, dn->d_name.name);
1008 			dout("fill_trace doing d_move %p -> %p\n",
1009 			     req->r_old_dentry, dn);
1010 
1011 			/* d_move screws up d_subdirs order */
1012 			ceph_i_clear(dir, CEPH_I_COMPLETE);
1013 
1014 			d_move(req->r_old_dentry, dn);
1015 			dout(" src %p '%.*s' dst %p '%.*s'\n",
1016 			     req->r_old_dentry,
1017 			     req->r_old_dentry->d_name.len,
1018 			     req->r_old_dentry->d_name.name,
1019 			     dn, dn->d_name.len, dn->d_name.name);
1020 
1021 			/* ensure target dentry is invalidated, despite
1022 			   rehashing bug in vfs_rename_dir */
1023 			ceph_invalidate_dentry_lease(dn);
1024 
1025 			/* take overwritten dentry's readdir offset */
1026 			dout("dn %p gets %p offset %lld (old offset %lld)\n",
1027 			     req->r_old_dentry, dn, ceph_dentry(dn)->offset,
1028 			     ceph_dentry(req->r_old_dentry)->offset);
1029 			ceph_dentry(req->r_old_dentry)->offset =
1030 				ceph_dentry(dn)->offset;
1031 
1032 			dn = req->r_old_dentry;  /* use old_dentry */
1033 			in = dn->d_inode;
1034 		}
1035 
1036 		/* null dentry? */
1037 		if (!rinfo->head->is_target) {
1038 			dout("fill_trace null dentry\n");
1039 			if (dn->d_inode) {
1040 				dout("d_delete %p\n", dn);
1041 				d_delete(dn);
1042 			} else {
1043 				dout("d_instantiate %p NULL\n", dn);
1044 				d_instantiate(dn, NULL);
1045 				if (have_lease && d_unhashed(dn))
1046 					d_rehash(dn);
1047 				update_dentry_lease(dn, rinfo->dlease,
1048 						    session,
1049 						    req->r_request_started);
1050 			}
1051 			goto done;
1052 		}
1053 
1054 		/* attach proper inode */
1055 		ininfo = rinfo->targeti.in;
1056 		vino.ino = le64_to_cpu(ininfo->ino);
1057 		vino.snap = le64_to_cpu(ininfo->snapid);
1058 		in = dn->d_inode;
1059 		if (!in) {
1060 			in = ceph_get_inode(sb, vino);
1061 			if (IS_ERR(in)) {
1062 				pr_err("fill_trace bad get_inode "
1063 				       "%llx.%llx\n", vino.ino, vino.snap);
1064 				err = PTR_ERR(in);
1065 				d_delete(dn);
1066 				goto done;
1067 			}
1068 			dn = splice_dentry(dn, in, &have_lease, true);
1069 			if (IS_ERR(dn)) {
1070 				err = PTR_ERR(dn);
1071 				goto done;
1072 			}
1073 			req->r_dentry = dn;  /* may have spliced */
1074 			igrab(in);
1075 		} else if (ceph_ino(in) == vino.ino &&
1076 			   ceph_snap(in) == vino.snap) {
1077 			igrab(in);
1078 		} else {
1079 			dout(" %p links to %p %llx.%llx, not %llx.%llx\n",
1080 			     dn, in, ceph_ino(in), ceph_snap(in),
1081 			     vino.ino, vino.snap);
1082 			have_lease = false;
1083 			in = NULL;
1084 		}
1085 
1086 		if (have_lease)
1087 			update_dentry_lease(dn, rinfo->dlease, session,
1088 					    req->r_request_started);
1089 		dout(" final dn %p\n", dn);
1090 		i++;
1091 	} else if (req->r_op == CEPH_MDS_OP_LOOKUPSNAP ||
1092 		   req->r_op == CEPH_MDS_OP_MKSNAP) {
1093 		struct dentry *dn = req->r_dentry;
1094 
1095 		/* fill out a snapdir LOOKUPSNAP dentry */
1096 		BUG_ON(!dn);
1097 		BUG_ON(!req->r_locked_dir);
1098 		BUG_ON(ceph_snap(req->r_locked_dir) != CEPH_SNAPDIR);
1099 		ininfo = rinfo->targeti.in;
1100 		vino.ino = le64_to_cpu(ininfo->ino);
1101 		vino.snap = le64_to_cpu(ininfo->snapid);
1102 		in = ceph_get_inode(sb, vino);
1103 		if (IS_ERR(in)) {
1104 			pr_err("fill_inode get_inode badness %llx.%llx\n",
1105 			       vino.ino, vino.snap);
1106 			err = PTR_ERR(in);
1107 			d_delete(dn);
1108 			goto done;
1109 		}
1110 		dout(" linking snapped dir %p to dn %p\n", in, dn);
1111 		dn = splice_dentry(dn, in, NULL, true);
1112 		if (IS_ERR(dn)) {
1113 			err = PTR_ERR(dn);
1114 			goto done;
1115 		}
1116 		req->r_dentry = dn;  /* may have spliced */
1117 		igrab(in);
1118 		rinfo->head->is_dentry = 1;  /* fool notrace handlers */
1119 	}
1120 
1121 	if (rinfo->head->is_target) {
1122 		vino.ino = le64_to_cpu(rinfo->targeti.in->ino);
1123 		vino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
1124 
1125 		if (in == NULL || ceph_ino(in) != vino.ino ||
1126 		    ceph_snap(in) != vino.snap) {
1127 			in = ceph_get_inode(sb, vino);
1128 			if (IS_ERR(in)) {
1129 				err = PTR_ERR(in);
1130 				goto done;
1131 			}
1132 		}
1133 		req->r_target_inode = in;
1134 
1135 		err = fill_inode(in,
1136 				 &rinfo->targeti, NULL,
1137 				 session, req->r_request_started,
1138 				 (le32_to_cpu(rinfo->head->result) == 0) ?
1139 				 req->r_fmode : -1,
1140 				 &req->r_caps_reservation);
1141 		if (err < 0) {
1142 			pr_err("fill_inode badness %p %llx.%llx\n",
1143 			       in, ceph_vinop(in));
1144 			goto done;
1145 		}
1146 	}
1147 
1148 done:
1149 	dout("fill_trace done err=%d\n", err);
1150 	return err;
1151 }
1152 
1153 /*
1154  * Prepopulate our cache with readdir results, leases, etc.
1155  */
1156 int ceph_readdir_prepopulate(struct ceph_mds_request *req,
1157 			     struct ceph_mds_session *session)
1158 {
1159 	struct dentry *parent = req->r_dentry;
1160 	struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1161 	struct qstr dname;
1162 	struct dentry *dn;
1163 	struct inode *in;
1164 	int err = 0, i;
1165 	struct inode *snapdir = NULL;
1166 	struct ceph_mds_request_head *rhead = req->r_request->front.iov_base;
1167 	u64 frag = le32_to_cpu(rhead->args.readdir.frag);
1168 	struct ceph_dentry_info *di;
1169 
1170 	if (le32_to_cpu(rinfo->head->op) == CEPH_MDS_OP_LSSNAP) {
1171 		snapdir = ceph_get_snapdir(parent->d_inode);
1172 		parent = d_find_alias(snapdir);
1173 		dout("readdir_prepopulate %d items under SNAPDIR dn %p\n",
1174 		     rinfo->dir_nr, parent);
1175 	} else {
1176 		dout("readdir_prepopulate %d items under dn %p\n",
1177 		     rinfo->dir_nr, parent);
1178 		if (rinfo->dir_dir)
1179 			ceph_fill_dirfrag(parent->d_inode, rinfo->dir_dir);
1180 	}
1181 
1182 	for (i = 0; i < rinfo->dir_nr; i++) {
1183 		struct ceph_vino vino;
1184 
1185 		dname.name = rinfo->dir_dname[i];
1186 		dname.len = rinfo->dir_dname_len[i];
1187 		dname.hash = full_name_hash(dname.name, dname.len);
1188 
1189 		vino.ino = le64_to_cpu(rinfo->dir_in[i].in->ino);
1190 		vino.snap = le64_to_cpu(rinfo->dir_in[i].in->snapid);
1191 
1192 retry_lookup:
1193 		dn = d_lookup(parent, &dname);
1194 		dout("d_lookup on parent=%p name=%.*s got %p\n",
1195 		     parent, dname.len, dname.name, dn);
1196 
1197 		if (!dn) {
1198 			dn = d_alloc(parent, &dname);
1199 			dout("d_alloc %p '%.*s' = %p\n", parent,
1200 			     dname.len, dname.name, dn);
1201 			if (dn == NULL) {
1202 				dout("d_alloc badness\n");
1203 				err = -ENOMEM;
1204 				goto out;
1205 			}
1206 			err = ceph_init_dentry(dn);
1207 			if (err < 0) {
1208 				dput(dn);
1209 				goto out;
1210 			}
1211 		} else if (dn->d_inode &&
1212 			   (ceph_ino(dn->d_inode) != vino.ino ||
1213 			    ceph_snap(dn->d_inode) != vino.snap)) {
1214 			dout(" dn %p points to wrong inode %p\n",
1215 			     dn, dn->d_inode);
1216 			d_delete(dn);
1217 			dput(dn);
1218 			goto retry_lookup;
1219 		} else {
1220 			/* reorder parent's d_subdirs */
1221 			spin_lock(&dcache_lock);
1222 			spin_lock(&dn->d_lock);
1223 			list_move(&dn->d_u.d_child, &parent->d_subdirs);
1224 			spin_unlock(&dn->d_lock);
1225 			spin_unlock(&dcache_lock);
1226 		}
1227 
1228 		di = dn->d_fsdata;
1229 		di->offset = ceph_make_fpos(frag, i + req->r_readdir_offset);
1230 
1231 		/* inode */
1232 		if (dn->d_inode) {
1233 			in = dn->d_inode;
1234 		} else {
1235 			in = ceph_get_inode(parent->d_sb, vino);
1236 			if (IS_ERR(in)) {
1237 				dout("new_inode badness\n");
1238 				d_delete(dn);
1239 				dput(dn);
1240 				err = PTR_ERR(in);
1241 				goto out;
1242 			}
1243 			dn = splice_dentry(dn, in, NULL, false);
1244 			if (IS_ERR(dn))
1245 				dn = NULL;
1246 		}
1247 
1248 		if (fill_inode(in, &rinfo->dir_in[i], NULL, session,
1249 			       req->r_request_started, -1,
1250 			       &req->r_caps_reservation) < 0) {
1251 			pr_err("fill_inode badness on %p\n", in);
1252 			goto next_item;
1253 		}
1254 		if (dn)
1255 			update_dentry_lease(dn, rinfo->dir_dlease[i],
1256 					    req->r_session,
1257 					    req->r_request_started);
1258 next_item:
1259 		if (dn)
1260 			dput(dn);
1261 	}
1262 	req->r_did_prepopulate = true;
1263 
1264 out:
1265 	if (snapdir) {
1266 		iput(snapdir);
1267 		dput(parent);
1268 	}
1269 	dout("readdir_prepopulate done\n");
1270 	return err;
1271 }
1272 
1273 int ceph_inode_set_size(struct inode *inode, loff_t size)
1274 {
1275 	struct ceph_inode_info *ci = ceph_inode(inode);
1276 	int ret = 0;
1277 
1278 	spin_lock(&inode->i_lock);
1279 	dout("set_size %p %llu -> %llu\n", inode, inode->i_size, size);
1280 	inode->i_size = size;
1281 	inode->i_blocks = (size + (1 << 9) - 1) >> 9;
1282 
1283 	/* tell the MDS if we are approaching max_size */
1284 	if ((size << 1) >= ci->i_max_size &&
1285 	    (ci->i_reported_size << 1) < ci->i_max_size)
1286 		ret = 1;
1287 
1288 	spin_unlock(&inode->i_lock);
1289 	return ret;
1290 }
1291 
1292 /*
1293  * Write back inode data in a worker thread.  (This can't be done
1294  * in the message handler context.)
1295  */
1296 void ceph_queue_writeback(struct inode *inode)
1297 {
1298 	if (queue_work(ceph_inode_to_client(inode)->wb_wq,
1299 		       &ceph_inode(inode)->i_wb_work)) {
1300 		dout("ceph_queue_writeback %p\n", inode);
1301 		igrab(inode);
1302 	} else {
1303 		dout("ceph_queue_writeback %p failed\n", inode);
1304 	}
1305 }
1306 
1307 static void ceph_writeback_work(struct work_struct *work)
1308 {
1309 	struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
1310 						  i_wb_work);
1311 	struct inode *inode = &ci->vfs_inode;
1312 
1313 	dout("writeback %p\n", inode);
1314 	filemap_fdatawrite(&inode->i_data);
1315 	iput(inode);
1316 }
1317 
1318 /*
1319  * queue an async invalidation
1320  */
1321 void ceph_queue_invalidate(struct inode *inode)
1322 {
1323 	if (queue_work(ceph_inode_to_client(inode)->pg_inv_wq,
1324 		       &ceph_inode(inode)->i_pg_inv_work)) {
1325 		dout("ceph_queue_invalidate %p\n", inode);
1326 		igrab(inode);
1327 	} else {
1328 		dout("ceph_queue_invalidate %p failed\n", inode);
1329 	}
1330 }
1331 
1332 /*
1333  * invalidate any pages that are not dirty or under writeback.  this
1334  * includes pages that are clean and mapped.
1335  */
1336 static void ceph_invalidate_nondirty_pages(struct address_space *mapping)
1337 {
1338 	struct pagevec pvec;
1339 	pgoff_t next = 0;
1340 	int i;
1341 
1342 	pagevec_init(&pvec, 0);
1343 	while (pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
1344 		for (i = 0; i < pagevec_count(&pvec); i++) {
1345 			struct page *page = pvec.pages[i];
1346 			pgoff_t index;
1347 			int skip_page =
1348 				(PageDirty(page) || PageWriteback(page));
1349 
1350 			if (!skip_page)
1351 				skip_page = !trylock_page(page);
1352 
1353 			/*
1354 			 * We really shouldn't be looking at the ->index of an
1355 			 * unlocked page.  But we're not allowed to lock these
1356 			 * pages.  So we rely upon nobody altering the ->index
1357 			 * of this (pinned-by-us) page.
1358 			 */
1359 			index = page->index;
1360 			if (index > next)
1361 				next = index;
1362 			next++;
1363 
1364 			if (skip_page)
1365 				continue;
1366 
1367 			generic_error_remove_page(mapping, page);
1368 			unlock_page(page);
1369 		}
1370 		pagevec_release(&pvec);
1371 		cond_resched();
1372 	}
1373 }
1374 
1375 /*
1376  * Invalidate inode pages in a worker thread.  (This can't be done
1377  * in the message handler context.)
1378  */
1379 static void ceph_invalidate_work(struct work_struct *work)
1380 {
1381 	struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
1382 						  i_pg_inv_work);
1383 	struct inode *inode = &ci->vfs_inode;
1384 	u32 orig_gen;
1385 	int check = 0;
1386 
1387 	spin_lock(&inode->i_lock);
1388 	dout("invalidate_pages %p gen %d revoking %d\n", inode,
1389 	     ci->i_rdcache_gen, ci->i_rdcache_revoking);
1390 	if (ci->i_rdcache_gen == 0 ||
1391 	    ci->i_rdcache_revoking != ci->i_rdcache_gen) {
1392 		BUG_ON(ci->i_rdcache_revoking > ci->i_rdcache_gen);
1393 		/* nevermind! */
1394 		ci->i_rdcache_revoking = 0;
1395 		spin_unlock(&inode->i_lock);
1396 		goto out;
1397 	}
1398 	orig_gen = ci->i_rdcache_gen;
1399 	spin_unlock(&inode->i_lock);
1400 
1401 	ceph_invalidate_nondirty_pages(inode->i_mapping);
1402 
1403 	spin_lock(&inode->i_lock);
1404 	if (orig_gen == ci->i_rdcache_gen) {
1405 		dout("invalidate_pages %p gen %d successful\n", inode,
1406 		     ci->i_rdcache_gen);
1407 		ci->i_rdcache_gen = 0;
1408 		ci->i_rdcache_revoking = 0;
1409 		check = 1;
1410 	} else {
1411 		dout("invalidate_pages %p gen %d raced, gen now %d\n",
1412 		     inode, orig_gen, ci->i_rdcache_gen);
1413 	}
1414 	spin_unlock(&inode->i_lock);
1415 
1416 	if (check)
1417 		ceph_check_caps(ci, 0, NULL);
1418 out:
1419 	iput(inode);
1420 }
1421 
1422 
1423 /*
1424  * called by trunc_wq; take i_mutex ourselves
1425  *
1426  * We also truncate in a separate thread as well.
1427  */
1428 static void ceph_vmtruncate_work(struct work_struct *work)
1429 {
1430 	struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
1431 						  i_vmtruncate_work);
1432 	struct inode *inode = &ci->vfs_inode;
1433 
1434 	dout("vmtruncate_work %p\n", inode);
1435 	mutex_lock(&inode->i_mutex);
1436 	__ceph_do_pending_vmtruncate(inode);
1437 	mutex_unlock(&inode->i_mutex);
1438 	iput(inode);
1439 }
1440 
1441 /*
1442  * Queue an async vmtruncate.  If we fail to queue work, we will handle
1443  * the truncation the next time we call __ceph_do_pending_vmtruncate.
1444  */
1445 void ceph_queue_vmtruncate(struct inode *inode)
1446 {
1447 	struct ceph_inode_info *ci = ceph_inode(inode);
1448 
1449 	if (queue_work(ceph_sb_to_client(inode->i_sb)->trunc_wq,
1450 		       &ci->i_vmtruncate_work)) {
1451 		dout("ceph_queue_vmtruncate %p\n", inode);
1452 		igrab(inode);
1453 	} else {
1454 		dout("ceph_queue_vmtruncate %p failed, pending=%d\n",
1455 		     inode, ci->i_truncate_pending);
1456 	}
1457 }
1458 
1459 /*
1460  * called with i_mutex held.
1461  *
1462  * Make sure any pending truncation is applied before doing anything
1463  * that may depend on it.
1464  */
1465 void __ceph_do_pending_vmtruncate(struct inode *inode)
1466 {
1467 	struct ceph_inode_info *ci = ceph_inode(inode);
1468 	u64 to;
1469 	int wrbuffer_refs, wake = 0;
1470 
1471 retry:
1472 	spin_lock(&inode->i_lock);
1473 	if (ci->i_truncate_pending == 0) {
1474 		dout("__do_pending_vmtruncate %p none pending\n", inode);
1475 		spin_unlock(&inode->i_lock);
1476 		return;
1477 	}
1478 
1479 	/*
1480 	 * make sure any dirty snapped pages are flushed before we
1481 	 * possibly truncate them.. so write AND block!
1482 	 */
1483 	if (ci->i_wrbuffer_ref_head < ci->i_wrbuffer_ref) {
1484 		dout("__do_pending_vmtruncate %p flushing snaps first\n",
1485 		     inode);
1486 		spin_unlock(&inode->i_lock);
1487 		filemap_write_and_wait_range(&inode->i_data, 0,
1488 					     inode->i_sb->s_maxbytes);
1489 		goto retry;
1490 	}
1491 
1492 	to = ci->i_truncate_size;
1493 	wrbuffer_refs = ci->i_wrbuffer_ref;
1494 	dout("__do_pending_vmtruncate %p (%d) to %lld\n", inode,
1495 	     ci->i_truncate_pending, to);
1496 	spin_unlock(&inode->i_lock);
1497 
1498 	truncate_inode_pages(inode->i_mapping, to);
1499 
1500 	spin_lock(&inode->i_lock);
1501 	ci->i_truncate_pending--;
1502 	if (ci->i_truncate_pending == 0)
1503 		wake = 1;
1504 	spin_unlock(&inode->i_lock);
1505 
1506 	if (wrbuffer_refs == 0)
1507 		ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
1508 	if (wake)
1509 		wake_up_all(&ci->i_cap_wq);
1510 }
1511 
1512 
1513 /*
1514  * symlinks
1515  */
1516 static void *ceph_sym_follow_link(struct dentry *dentry, struct nameidata *nd)
1517 {
1518 	struct ceph_inode_info *ci = ceph_inode(dentry->d_inode);
1519 	nd_set_link(nd, ci->i_symlink);
1520 	return NULL;
1521 }
1522 
1523 static const struct inode_operations ceph_symlink_iops = {
1524 	.readlink = generic_readlink,
1525 	.follow_link = ceph_sym_follow_link,
1526 };
1527 
1528 /*
1529  * setattr
1530  */
1531 int ceph_setattr(struct dentry *dentry, struct iattr *attr)
1532 {
1533 	struct inode *inode = dentry->d_inode;
1534 	struct ceph_inode_info *ci = ceph_inode(inode);
1535 	struct inode *parent_inode = dentry->d_parent->d_inode;
1536 	const unsigned int ia_valid = attr->ia_valid;
1537 	struct ceph_mds_request *req;
1538 	struct ceph_mds_client *mdsc = ceph_sb_to_client(dentry->d_sb)->mdsc;
1539 	int issued;
1540 	int release = 0, dirtied = 0;
1541 	int mask = 0;
1542 	int err = 0;
1543 
1544 	if (ceph_snap(inode) != CEPH_NOSNAP)
1545 		return -EROFS;
1546 
1547 	__ceph_do_pending_vmtruncate(inode);
1548 
1549 	err = inode_change_ok(inode, attr);
1550 	if (err != 0)
1551 		return err;
1552 
1553 	req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETATTR,
1554 				       USE_AUTH_MDS);
1555 	if (IS_ERR(req))
1556 		return PTR_ERR(req);
1557 
1558 	spin_lock(&inode->i_lock);
1559 	issued = __ceph_caps_issued(ci, NULL);
1560 	dout("setattr %p issued %s\n", inode, ceph_cap_string(issued));
1561 
1562 	if (ia_valid & ATTR_UID) {
1563 		dout("setattr %p uid %d -> %d\n", inode,
1564 		     inode->i_uid, attr->ia_uid);
1565 		if (issued & CEPH_CAP_AUTH_EXCL) {
1566 			inode->i_uid = attr->ia_uid;
1567 			dirtied |= CEPH_CAP_AUTH_EXCL;
1568 		} else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
1569 			   attr->ia_uid != inode->i_uid) {
1570 			req->r_args.setattr.uid = cpu_to_le32(attr->ia_uid);
1571 			mask |= CEPH_SETATTR_UID;
1572 			release |= CEPH_CAP_AUTH_SHARED;
1573 		}
1574 	}
1575 	if (ia_valid & ATTR_GID) {
1576 		dout("setattr %p gid %d -> %d\n", inode,
1577 		     inode->i_gid, attr->ia_gid);
1578 		if (issued & CEPH_CAP_AUTH_EXCL) {
1579 			inode->i_gid = attr->ia_gid;
1580 			dirtied |= CEPH_CAP_AUTH_EXCL;
1581 		} else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
1582 			   attr->ia_gid != inode->i_gid) {
1583 			req->r_args.setattr.gid = cpu_to_le32(attr->ia_gid);
1584 			mask |= CEPH_SETATTR_GID;
1585 			release |= CEPH_CAP_AUTH_SHARED;
1586 		}
1587 	}
1588 	if (ia_valid & ATTR_MODE) {
1589 		dout("setattr %p mode 0%o -> 0%o\n", inode, inode->i_mode,
1590 		     attr->ia_mode);
1591 		if (issued & CEPH_CAP_AUTH_EXCL) {
1592 			inode->i_mode = attr->ia_mode;
1593 			dirtied |= CEPH_CAP_AUTH_EXCL;
1594 		} else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
1595 			   attr->ia_mode != inode->i_mode) {
1596 			req->r_args.setattr.mode = cpu_to_le32(attr->ia_mode);
1597 			mask |= CEPH_SETATTR_MODE;
1598 			release |= CEPH_CAP_AUTH_SHARED;
1599 		}
1600 	}
1601 
1602 	if (ia_valid & ATTR_ATIME) {
1603 		dout("setattr %p atime %ld.%ld -> %ld.%ld\n", inode,
1604 		     inode->i_atime.tv_sec, inode->i_atime.tv_nsec,
1605 		     attr->ia_atime.tv_sec, attr->ia_atime.tv_nsec);
1606 		if (issued & CEPH_CAP_FILE_EXCL) {
1607 			ci->i_time_warp_seq++;
1608 			inode->i_atime = attr->ia_atime;
1609 			dirtied |= CEPH_CAP_FILE_EXCL;
1610 		} else if ((issued & CEPH_CAP_FILE_WR) &&
1611 			   timespec_compare(&inode->i_atime,
1612 					    &attr->ia_atime) < 0) {
1613 			inode->i_atime = attr->ia_atime;
1614 			dirtied |= CEPH_CAP_FILE_WR;
1615 		} else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
1616 			   !timespec_equal(&inode->i_atime, &attr->ia_atime)) {
1617 			ceph_encode_timespec(&req->r_args.setattr.atime,
1618 					     &attr->ia_atime);
1619 			mask |= CEPH_SETATTR_ATIME;
1620 			release |= CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_RD |
1621 				CEPH_CAP_FILE_WR;
1622 		}
1623 	}
1624 	if (ia_valid & ATTR_MTIME) {
1625 		dout("setattr %p mtime %ld.%ld -> %ld.%ld\n", inode,
1626 		     inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
1627 		     attr->ia_mtime.tv_sec, attr->ia_mtime.tv_nsec);
1628 		if (issued & CEPH_CAP_FILE_EXCL) {
1629 			ci->i_time_warp_seq++;
1630 			inode->i_mtime = attr->ia_mtime;
1631 			dirtied |= CEPH_CAP_FILE_EXCL;
1632 		} else if ((issued & CEPH_CAP_FILE_WR) &&
1633 			   timespec_compare(&inode->i_mtime,
1634 					    &attr->ia_mtime) < 0) {
1635 			inode->i_mtime = attr->ia_mtime;
1636 			dirtied |= CEPH_CAP_FILE_WR;
1637 		} else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
1638 			   !timespec_equal(&inode->i_mtime, &attr->ia_mtime)) {
1639 			ceph_encode_timespec(&req->r_args.setattr.mtime,
1640 					     &attr->ia_mtime);
1641 			mask |= CEPH_SETATTR_MTIME;
1642 			release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_RD |
1643 				CEPH_CAP_FILE_WR;
1644 		}
1645 	}
1646 	if (ia_valid & ATTR_SIZE) {
1647 		dout("setattr %p size %lld -> %lld\n", inode,
1648 		     inode->i_size, attr->ia_size);
1649 		if (attr->ia_size > inode->i_sb->s_maxbytes) {
1650 			err = -EINVAL;
1651 			goto out;
1652 		}
1653 		if ((issued & CEPH_CAP_FILE_EXCL) &&
1654 		    attr->ia_size > inode->i_size) {
1655 			inode->i_size = attr->ia_size;
1656 			inode->i_blocks =
1657 				(attr->ia_size + (1 << 9) - 1) >> 9;
1658 			inode->i_ctime = attr->ia_ctime;
1659 			ci->i_reported_size = attr->ia_size;
1660 			dirtied |= CEPH_CAP_FILE_EXCL;
1661 		} else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
1662 			   attr->ia_size != inode->i_size) {
1663 			req->r_args.setattr.size = cpu_to_le64(attr->ia_size);
1664 			req->r_args.setattr.old_size =
1665 				cpu_to_le64(inode->i_size);
1666 			mask |= CEPH_SETATTR_SIZE;
1667 			release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_RD |
1668 				CEPH_CAP_FILE_WR;
1669 		}
1670 	}
1671 
1672 	/* these do nothing */
1673 	if (ia_valid & ATTR_CTIME) {
1674 		bool only = (ia_valid & (ATTR_SIZE|ATTR_MTIME|ATTR_ATIME|
1675 					 ATTR_MODE|ATTR_UID|ATTR_GID)) == 0;
1676 		dout("setattr %p ctime %ld.%ld -> %ld.%ld (%s)\n", inode,
1677 		     inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
1678 		     attr->ia_ctime.tv_sec, attr->ia_ctime.tv_nsec,
1679 		     only ? "ctime only" : "ignored");
1680 		inode->i_ctime = attr->ia_ctime;
1681 		if (only) {
1682 			/*
1683 			 * if kernel wants to dirty ctime but nothing else,
1684 			 * we need to choose a cap to dirty under, or do
1685 			 * a almost-no-op setattr
1686 			 */
1687 			if (issued & CEPH_CAP_AUTH_EXCL)
1688 				dirtied |= CEPH_CAP_AUTH_EXCL;
1689 			else if (issued & CEPH_CAP_FILE_EXCL)
1690 				dirtied |= CEPH_CAP_FILE_EXCL;
1691 			else if (issued & CEPH_CAP_XATTR_EXCL)
1692 				dirtied |= CEPH_CAP_XATTR_EXCL;
1693 			else
1694 				mask |= CEPH_SETATTR_CTIME;
1695 		}
1696 	}
1697 	if (ia_valid & ATTR_FILE)
1698 		dout("setattr %p ATTR_FILE ... hrm!\n", inode);
1699 
1700 	if (dirtied) {
1701 		__ceph_mark_dirty_caps(ci, dirtied);
1702 		inode->i_ctime = CURRENT_TIME;
1703 	}
1704 
1705 	release &= issued;
1706 	spin_unlock(&inode->i_lock);
1707 
1708 	if (mask) {
1709 		req->r_inode = igrab(inode);
1710 		req->r_inode_drop = release;
1711 		req->r_args.setattr.mask = cpu_to_le32(mask);
1712 		req->r_num_caps = 1;
1713 		err = ceph_mdsc_do_request(mdsc, parent_inode, req);
1714 	}
1715 	dout("setattr %p result=%d (%s locally, %d remote)\n", inode, err,
1716 	     ceph_cap_string(dirtied), mask);
1717 
1718 	ceph_mdsc_put_request(req);
1719 	__ceph_do_pending_vmtruncate(inode);
1720 	return err;
1721 out:
1722 	spin_unlock(&inode->i_lock);
1723 	ceph_mdsc_put_request(req);
1724 	return err;
1725 }
1726 
1727 /*
1728  * Verify that we have a lease on the given mask.  If not,
1729  * do a getattr against an mds.
1730  */
1731 int ceph_do_getattr(struct inode *inode, int mask)
1732 {
1733 	struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
1734 	struct ceph_mds_client *mdsc = fsc->mdsc;
1735 	struct ceph_mds_request *req;
1736 	int err;
1737 
1738 	if (ceph_snap(inode) == CEPH_SNAPDIR) {
1739 		dout("do_getattr inode %p SNAPDIR\n", inode);
1740 		return 0;
1741 	}
1742 
1743 	dout("do_getattr inode %p mask %s\n", inode, ceph_cap_string(mask));
1744 	if (ceph_caps_issued_mask(ceph_inode(inode), mask, 1))
1745 		return 0;
1746 
1747 	req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
1748 	if (IS_ERR(req))
1749 		return PTR_ERR(req);
1750 	req->r_inode = igrab(inode);
1751 	req->r_num_caps = 1;
1752 	req->r_args.getattr.mask = cpu_to_le32(mask);
1753 	err = ceph_mdsc_do_request(mdsc, NULL, req);
1754 	ceph_mdsc_put_request(req);
1755 	dout("do_getattr result=%d\n", err);
1756 	return err;
1757 }
1758 
1759 
1760 /*
1761  * Check inode permissions.  We verify we have a valid value for
1762  * the AUTH cap, then call the generic handler.
1763  */
1764 int ceph_permission(struct inode *inode, int mask)
1765 {
1766 	int err = ceph_do_getattr(inode, CEPH_CAP_AUTH_SHARED);
1767 
1768 	if (!err)
1769 		err = generic_permission(inode, mask, NULL);
1770 	return err;
1771 }
1772 
1773 /*
1774  * Get all attributes.  Hopefully somedata we'll have a statlite()
1775  * and can limit the fields we require to be accurate.
1776  */
1777 int ceph_getattr(struct vfsmount *mnt, struct dentry *dentry,
1778 		 struct kstat *stat)
1779 {
1780 	struct inode *inode = dentry->d_inode;
1781 	struct ceph_inode_info *ci = ceph_inode(inode);
1782 	int err;
1783 
1784 	err = ceph_do_getattr(inode, CEPH_STAT_CAP_INODE_ALL);
1785 	if (!err) {
1786 		generic_fillattr(inode, stat);
1787 		stat->ino = inode->i_ino;
1788 		if (ceph_snap(inode) != CEPH_NOSNAP)
1789 			stat->dev = ceph_snap(inode);
1790 		else
1791 			stat->dev = 0;
1792 		if (S_ISDIR(inode->i_mode)) {
1793 			stat->size = ci->i_rbytes;
1794 			stat->blocks = 0;
1795 			stat->blksize = 65536;
1796 		}
1797 	}
1798 	return err;
1799 }
1800