blob: 562f57d15f46da29a687beabeafb205d6713c75a [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil355da1e2009-10-06 11:31:08 -07002
3#include <linux/module.h>
4#include <linux/fs.h>
Sage Weil355da1e2009-10-06 11:31:08 -07005#include <linux/slab.h>
6#include <linux/string.h>
7#include <linux/uaccess.h>
8#include <linux/kernel.h>
Sage Weil355da1e2009-10-06 11:31:08 -07009#include <linux/writeback.h>
10#include <linux/vmalloc.h>
Linus Torvalds4db658e2014-01-28 18:06:18 -080011#include <linux/posix_acl.h>
Yan, Zheng3e7fbe92014-04-18 16:00:30 +080012#include <linux/random.h>
Yan, Zhenga4078462016-05-03 20:55:50 +080013#include <linux/sort.h>
Sage Weil355da1e2009-10-06 11:31:08 -070014
15#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070016#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040017#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070018#include <linux/ceph/decode.h>
Sage Weil355da1e2009-10-06 11:31:08 -070019
20/*
21 * Ceph inode operations
22 *
23 * Implement basic inode helpers (get, alloc) and inode ops (getattr,
24 * setattr, etc.), xattr helpers, and helpers for assimilating
25 * metadata returned by the MDS into our cache.
26 *
27 * Also define helpers for doing asynchronous writeback, invalidation,
28 * and truncation for the benefit of those who can't afford to block
29 * (typically because they are in the message handler path).
30 */
31
32static const struct inode_operations ceph_symlink_iops;
33
Sage Weil3c6f6b72010-02-09 15:24:44 -080034static void ceph_invalidate_work(struct work_struct *work);
35static void ceph_writeback_work(struct work_struct *work);
36static void ceph_vmtruncate_work(struct work_struct *work);
Sage Weil355da1e2009-10-06 11:31:08 -070037
38/*
39 * find or create an inode, given the ceph ino number
40 */
Yehuda Sadehad1fee92011-01-21 16:44:03 -080041static int ceph_set_ino_cb(struct inode *inode, void *data)
42{
43 ceph_inode(inode)->i_vino = *(struct ceph_vino *)data;
44 inode->i_ino = ceph_vino_to_ino(*(struct ceph_vino *)data);
45 return 0;
46}
47
Sage Weil355da1e2009-10-06 11:31:08 -070048struct inode *ceph_get_inode(struct super_block *sb, struct ceph_vino vino)
49{
50 struct inode *inode;
51 ino_t t = ceph_vino_to_ino(vino);
52
53 inode = iget5_locked(sb, t, ceph_ino_compare, ceph_set_ino_cb, &vino);
54 if (inode == NULL)
55 return ERR_PTR(-ENOMEM);
56 if (inode->i_state & I_NEW) {
57 dout("get_inode created new inode %p %llx.%llx ino %llx\n",
58 inode, ceph_vinop(inode), (u64)inode->i_ino);
59 unlock_new_inode(inode);
60 }
61
62 dout("get_inode on %lu=%llx.%llx got %p\n", inode->i_ino, vino.ino,
63 vino.snap, inode);
64 return inode;
65}
66
67/*
68 * get/constuct snapdir inode for a given directory
69 */
70struct inode *ceph_get_snapdir(struct inode *parent)
71{
72 struct ceph_vino vino = {
73 .ino = ceph_ino(parent),
74 .snap = CEPH_SNAPDIR,
75 };
76 struct inode *inode = ceph_get_inode(parent->i_sb, vino);
Sage Weilb377ff12009-11-11 15:22:37 -080077 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -070078
79 BUG_ON(!S_ISDIR(parent->i_mode));
80 if (IS_ERR(inode))
Julia Lawall7e34bc52010-05-22 12:01:14 +020081 return inode;
Sage Weil355da1e2009-10-06 11:31:08 -070082 inode->i_mode = parent->i_mode;
83 inode->i_uid = parent->i_uid;
84 inode->i_gid = parent->i_gid;
Yan, Zheng38c48b52015-01-14 13:46:04 +080085 inode->i_op = &ceph_snapdir_iops;
86 inode->i_fop = &ceph_snapdir_fops;
Sage Weilb377ff12009-11-11 15:22:37 -080087 ci->i_snap_caps = CEPH_CAP_PIN; /* so we can open */
88 ci->i_rbytes = 0;
Sage Weil355da1e2009-10-06 11:31:08 -070089 return inode;
90}
91
92const struct inode_operations ceph_file_iops = {
93 .permission = ceph_permission,
94 .setattr = ceph_setattr,
95 .getattr = ceph_getattr,
96 .setxattr = ceph_setxattr,
97 .getxattr = ceph_getxattr,
98 .listxattr = ceph_listxattr,
99 .removexattr = ceph_removexattr,
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800100 .get_acl = ceph_get_acl,
Sage Weil72466d02014-01-29 06:22:25 -0800101 .set_acl = ceph_set_acl,
Sage Weil355da1e2009-10-06 11:31:08 -0700102};
103
104
105/*
106 * We use a 'frag tree' to keep track of the MDS's directory fragments
107 * for a given inode (usually there is just a single fragment). We
108 * need to know when a child frag is delegated to a new MDS, or when
109 * it is flagged as replicated, so we can direct our requests
110 * accordingly.
111 */
112
113/*
114 * find/create a frag in the tree
115 */
116static struct ceph_inode_frag *__get_or_create_frag(struct ceph_inode_info *ci,
117 u32 f)
118{
119 struct rb_node **p;
120 struct rb_node *parent = NULL;
121 struct ceph_inode_frag *frag;
122 int c;
123
124 p = &ci->i_fragtree.rb_node;
125 while (*p) {
126 parent = *p;
127 frag = rb_entry(parent, struct ceph_inode_frag, node);
128 c = ceph_frag_compare(f, frag->frag);
129 if (c < 0)
130 p = &(*p)->rb_left;
131 else if (c > 0)
132 p = &(*p)->rb_right;
133 else
134 return frag;
135 }
136
137 frag = kmalloc(sizeof(*frag), GFP_NOFS);
138 if (!frag) {
139 pr_err("__get_or_create_frag ENOMEM on %p %llx.%llx "
140 "frag %x\n", &ci->vfs_inode,
141 ceph_vinop(&ci->vfs_inode), f);
142 return ERR_PTR(-ENOMEM);
143 }
144 frag->frag = f;
145 frag->split_by = 0;
146 frag->mds = -1;
147 frag->ndist = 0;
148
149 rb_link_node(&frag->node, parent, p);
150 rb_insert_color(&frag->node, &ci->i_fragtree);
151
152 dout("get_or_create_frag added %llx.%llx frag %x\n",
153 ceph_vinop(&ci->vfs_inode), f);
154 return frag;
155}
156
157/*
158 * find a specific frag @f
159 */
160struct ceph_inode_frag *__ceph_find_frag(struct ceph_inode_info *ci, u32 f)
161{
162 struct rb_node *n = ci->i_fragtree.rb_node;
163
164 while (n) {
165 struct ceph_inode_frag *frag =
166 rb_entry(n, struct ceph_inode_frag, node);
167 int c = ceph_frag_compare(f, frag->frag);
168 if (c < 0)
169 n = n->rb_left;
170 else if (c > 0)
171 n = n->rb_right;
172 else
173 return frag;
174 }
175 return NULL;
176}
177
178/*
179 * Choose frag containing the given value @v. If @pfrag is
180 * specified, copy the frag delegation info to the caller if
181 * it is present.
182 */
Yan, Zheng3e7fbe92014-04-18 16:00:30 +0800183static u32 __ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
184 struct ceph_inode_frag *pfrag, int *found)
Sage Weil355da1e2009-10-06 11:31:08 -0700185{
186 u32 t = ceph_frag_make(0, 0);
187 struct ceph_inode_frag *frag;
188 unsigned nway, i;
189 u32 n;
190
191 if (found)
192 *found = 0;
193
Sage Weil355da1e2009-10-06 11:31:08 -0700194 while (1) {
195 WARN_ON(!ceph_frag_contains_value(t, v));
196 frag = __ceph_find_frag(ci, t);
197 if (!frag)
198 break; /* t is a leaf */
199 if (frag->split_by == 0) {
200 if (pfrag)
201 memcpy(pfrag, frag, sizeof(*pfrag));
202 if (found)
203 *found = 1;
204 break;
205 }
206
207 /* choose child */
208 nway = 1 << frag->split_by;
209 dout("choose_frag(%x) %x splits by %d (%d ways)\n", v, t,
210 frag->split_by, nway);
211 for (i = 0; i < nway; i++) {
212 n = ceph_frag_make_child(t, frag->split_by, i);
213 if (ceph_frag_contains_value(n, v)) {
214 t = n;
215 break;
216 }
217 }
218 BUG_ON(i == nway);
219 }
220 dout("choose_frag(%x) = %x\n", v, t);
221
Sage Weil355da1e2009-10-06 11:31:08 -0700222 return t;
223}
224
Yan, Zheng3e7fbe92014-04-18 16:00:30 +0800225u32 ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
226 struct ceph_inode_frag *pfrag, int *found)
227{
228 u32 ret;
229 mutex_lock(&ci->i_fragtree_mutex);
230 ret = __ceph_choose_frag(ci, v, pfrag, found);
231 mutex_unlock(&ci->i_fragtree_mutex);
232 return ret;
233}
234
Sage Weil355da1e2009-10-06 11:31:08 -0700235/*
236 * Process dirfrag (delegation) info from the mds. Include leaf
237 * fragment in tree ONLY if ndist > 0. Otherwise, only
238 * branches/splits are included in i_fragtree)
239 */
240static int ceph_fill_dirfrag(struct inode *inode,
241 struct ceph_mds_reply_dirfrag *dirinfo)
242{
243 struct ceph_inode_info *ci = ceph_inode(inode);
244 struct ceph_inode_frag *frag;
245 u32 id = le32_to_cpu(dirinfo->frag);
246 int mds = le32_to_cpu(dirinfo->auth);
247 int ndist = le32_to_cpu(dirinfo->ndist);
Yan, Zheng8d085032014-04-18 22:01:38 +0800248 int diri_auth = -1;
Sage Weil355da1e2009-10-06 11:31:08 -0700249 int i;
250 int err = 0;
251
Yan, Zheng8d085032014-04-18 22:01:38 +0800252 spin_lock(&ci->i_ceph_lock);
253 if (ci->i_auth_cap)
254 diri_auth = ci->i_auth_cap->mds;
255 spin_unlock(&ci->i_ceph_lock);
256
Yan, Zheng42172112016-05-03 22:33:20 +0800257 if (mds == -1) /* CDIR_AUTH_PARENT */
258 mds = diri_auth;
259
Sage Weil355da1e2009-10-06 11:31:08 -0700260 mutex_lock(&ci->i_fragtree_mutex);
Yan, Zheng8d085032014-04-18 22:01:38 +0800261 if (ndist == 0 && mds == diri_auth) {
Sage Weil355da1e2009-10-06 11:31:08 -0700262 /* no delegation info needed. */
263 frag = __ceph_find_frag(ci, id);
264 if (!frag)
265 goto out;
266 if (frag->split_by == 0) {
267 /* tree leaf, remove */
268 dout("fill_dirfrag removed %llx.%llx frag %x"
269 " (no ref)\n", ceph_vinop(inode), id);
270 rb_erase(&frag->node, &ci->i_fragtree);
271 kfree(frag);
272 } else {
273 /* tree branch, keep and clear */
274 dout("fill_dirfrag cleared %llx.%llx frag %x"
275 " referral\n", ceph_vinop(inode), id);
276 frag->mds = -1;
277 frag->ndist = 0;
278 }
279 goto out;
280 }
281
282
283 /* find/add this frag to store mds delegation info */
284 frag = __get_or_create_frag(ci, id);
285 if (IS_ERR(frag)) {
286 /* this is not the end of the world; we can continue
287 with bad/inaccurate delegation info */
288 pr_err("fill_dirfrag ENOMEM on mds ref %llx.%llx fg %x\n",
289 ceph_vinop(inode), le32_to_cpu(dirinfo->frag));
290 err = -ENOMEM;
291 goto out;
292 }
293
294 frag->mds = mds;
295 frag->ndist = min_t(u32, ndist, CEPH_MAX_DIRFRAG_REP);
296 for (i = 0; i < frag->ndist; i++)
297 frag->dist[i] = le32_to_cpu(dirinfo->dist[i]);
298 dout("fill_dirfrag %llx.%llx frag %x ndist=%d\n",
299 ceph_vinop(inode), frag->frag, frag->ndist);
300
301out:
302 mutex_unlock(&ci->i_fragtree_mutex);
303 return err;
304}
305
Yan, Zhenga4078462016-05-03 20:55:50 +0800306static int frag_tree_split_cmp(const void *l, const void *r)
307{
308 struct ceph_frag_tree_split *ls = (struct ceph_frag_tree_split*)l;
309 struct ceph_frag_tree_split *rs = (struct ceph_frag_tree_split*)r;
310 return ceph_frag_compare(ls->frag, rs->frag);
311}
312
Yan, Zheng3e7fbe92014-04-18 16:00:30 +0800313static int ceph_fill_fragtree(struct inode *inode,
314 struct ceph_frag_tree_head *fragtree,
315 struct ceph_mds_reply_dirfrag *dirinfo)
316{
317 struct ceph_inode_info *ci = ceph_inode(inode);
318 struct ceph_inode_frag *frag;
319 struct rb_node *rb_node;
320 int i;
321 u32 id, nsplits;
322 bool update = false;
323
324 mutex_lock(&ci->i_fragtree_mutex);
325 nsplits = le32_to_cpu(fragtree->nsplits);
326 if (nsplits) {
327 i = prandom_u32() % nsplits;
328 id = le32_to_cpu(fragtree->splits[i].frag);
329 if (!__ceph_find_frag(ci, id))
330 update = true;
331 } else if (!RB_EMPTY_ROOT(&ci->i_fragtree)) {
332 rb_node = rb_first(&ci->i_fragtree);
333 frag = rb_entry(rb_node, struct ceph_inode_frag, node);
334 if (frag->frag != ceph_frag_make(0, 0) || rb_next(rb_node))
335 update = true;
336 }
337 if (!update && dirinfo) {
338 id = le32_to_cpu(dirinfo->frag);
339 if (id != __ceph_choose_frag(ci, id, NULL, NULL))
340 update = true;
341 }
342 if (!update)
343 goto out_unlock;
344
Yan, Zhenga4078462016-05-03 20:55:50 +0800345 if (nsplits > 1) {
346 sort(fragtree->splits, nsplits, sizeof(fragtree->splits[0]),
347 frag_tree_split_cmp, NULL);
348 }
349
Yan, Zheng3e7fbe92014-04-18 16:00:30 +0800350 dout("fill_fragtree %llx.%llx\n", ceph_vinop(inode));
351 rb_node = rb_first(&ci->i_fragtree);
352 for (i = 0; i < nsplits; i++) {
353 id = le32_to_cpu(fragtree->splits[i].frag);
354 frag = NULL;
355 while (rb_node) {
356 frag = rb_entry(rb_node, struct ceph_inode_frag, node);
357 if (ceph_frag_compare(frag->frag, id) >= 0) {
358 if (frag->frag != id)
359 frag = NULL;
360 else
361 rb_node = rb_next(rb_node);
362 break;
363 }
364 rb_node = rb_next(rb_node);
365 rb_erase(&frag->node, &ci->i_fragtree);
366 kfree(frag);
367 frag = NULL;
368 }
369 if (!frag) {
370 frag = __get_or_create_frag(ci, id);
371 if (IS_ERR(frag))
372 continue;
373 }
374 frag->split_by = le32_to_cpu(fragtree->splits[i].by);
375 dout(" frag %x split by %d\n", frag->frag, frag->split_by);
376 }
377 while (rb_node) {
378 frag = rb_entry(rb_node, struct ceph_inode_frag, node);
379 rb_node = rb_next(rb_node);
380 rb_erase(&frag->node, &ci->i_fragtree);
381 kfree(frag);
382 }
383out_unlock:
384 mutex_unlock(&ci->i_fragtree_mutex);
385 return 0;
386}
Sage Weil355da1e2009-10-06 11:31:08 -0700387
388/*
389 * initialize a newly allocated inode.
390 */
391struct inode *ceph_alloc_inode(struct super_block *sb)
392{
393 struct ceph_inode_info *ci;
394 int i;
395
396 ci = kmem_cache_alloc(ceph_inode_cachep, GFP_NOFS);
397 if (!ci)
398 return NULL;
399
400 dout("alloc_inode %p\n", &ci->vfs_inode);
401
Sage Weilbe655592011-11-30 09:47:09 -0800402 spin_lock_init(&ci->i_ceph_lock);
403
Sage Weil355da1e2009-10-06 11:31:08 -0700404 ci->i_version = 0;
Yan, Zheng31c542a2014-11-14 21:41:55 +0800405 ci->i_inline_version = 0;
Sage Weil355da1e2009-10-06 11:31:08 -0700406 ci->i_time_warp_seq = 0;
407 ci->i_ceph_flags = 0;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800408 atomic64_set(&ci->i_ordered_count, 1);
409 atomic64_set(&ci->i_release_count, 1);
410 atomic64_set(&ci->i_complete_seq[0], 0);
411 atomic64_set(&ci->i_complete_seq[1], 0);
Sage Weil355da1e2009-10-06 11:31:08 -0700412 ci->i_symlink = NULL;
413
Sage Weil6c0f3af2010-11-16 11:14:34 -0800414 memset(&ci->i_dir_layout, 0, sizeof(ci->i_dir_layout));
Yan, Zheng5ea5c5e2016-02-14 18:06:41 +0800415 ci->i_pool_ns_len = 0;
Sage Weil6c0f3af2010-11-16 11:14:34 -0800416
Sage Weil355da1e2009-10-06 11:31:08 -0700417 ci->i_fragtree = RB_ROOT;
418 mutex_init(&ci->i_fragtree_mutex);
419
420 ci->i_xattrs.blob = NULL;
421 ci->i_xattrs.prealloc_blob = NULL;
422 ci->i_xattrs.dirty = false;
423 ci->i_xattrs.index = RB_ROOT;
424 ci->i_xattrs.count = 0;
425 ci->i_xattrs.names_size = 0;
426 ci->i_xattrs.vals_size = 0;
427 ci->i_xattrs.version = 0;
428 ci->i_xattrs.index_version = 0;
429
430 ci->i_caps = RB_ROOT;
431 ci->i_auth_cap = NULL;
432 ci->i_dirty_caps = 0;
433 ci->i_flushing_caps = 0;
434 INIT_LIST_HEAD(&ci->i_dirty_item);
435 INIT_LIST_HEAD(&ci->i_flushing_item);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800436 ci->i_prealloc_cap_flush = NULL;
Yan, Zheng553adfd2015-06-09 15:48:57 +0800437 ci->i_cap_flush_tree = RB_ROOT;
Sage Weil355da1e2009-10-06 11:31:08 -0700438 init_waitqueue_head(&ci->i_cap_wq);
439 ci->i_hold_caps_min = 0;
440 ci->i_hold_caps_max = 0;
441 INIT_LIST_HEAD(&ci->i_cap_delay_list);
Sage Weil355da1e2009-10-06 11:31:08 -0700442 INIT_LIST_HEAD(&ci->i_cap_snaps);
443 ci->i_head_snapc = NULL;
444 ci->i_snap_caps = 0;
445
446 for (i = 0; i < CEPH_FILE_MODE_NUM; i++)
447 ci->i_nr_by_mode[i] = 0;
448
Yan, Zhengb0d7c222013-08-12 21:42:15 -0700449 mutex_init(&ci->i_truncate_mutex);
Sage Weil355da1e2009-10-06 11:31:08 -0700450 ci->i_truncate_seq = 0;
451 ci->i_truncate_size = 0;
452 ci->i_truncate_pending = 0;
453
454 ci->i_max_size = 0;
455 ci->i_reported_size = 0;
456 ci->i_wanted_max_size = 0;
457 ci->i_requested_max_size = 0;
458
459 ci->i_pin_ref = 0;
460 ci->i_rd_ref = 0;
461 ci->i_rdcache_ref = 0;
462 ci->i_wr_ref = 0;
Henry C Changd3d07202011-05-11 10:29:54 +0000463 ci->i_wb_ref = 0;
Sage Weil355da1e2009-10-06 11:31:08 -0700464 ci->i_wrbuffer_ref = 0;
465 ci->i_wrbuffer_ref_head = 0;
466 ci->i_shared_gen = 0;
467 ci->i_rdcache_gen = 0;
468 ci->i_rdcache_revoking = 0;
469
470 INIT_LIST_HEAD(&ci->i_unsafe_writes);
471 INIT_LIST_HEAD(&ci->i_unsafe_dirops);
Yan, Zheng68cd5b42015-10-27 18:36:06 +0800472 INIT_LIST_HEAD(&ci->i_unsafe_iops);
Sage Weil355da1e2009-10-06 11:31:08 -0700473 spin_lock_init(&ci->i_unsafe_lock);
474
475 ci->i_snap_realm = NULL;
476 INIT_LIST_HEAD(&ci->i_snap_realm_item);
477 INIT_LIST_HEAD(&ci->i_snap_flush_item);
478
Sage Weil3c6f6b72010-02-09 15:24:44 -0800479 INIT_WORK(&ci->i_wb_work, ceph_writeback_work);
480 INIT_WORK(&ci->i_pg_inv_work, ceph_invalidate_work);
Sage Weil355da1e2009-10-06 11:31:08 -0700481
482 INIT_WORK(&ci->i_vmtruncate_work, ceph_vmtruncate_work);
483
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400484 ceph_fscache_inode_init(ci);
485
Sage Weil355da1e2009-10-06 11:31:08 -0700486 return &ci->vfs_inode;
487}
488
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100489static void ceph_i_callback(struct rcu_head *head)
490{
491 struct inode *inode = container_of(head, struct inode, i_rcu);
492 struct ceph_inode_info *ci = ceph_inode(inode);
493
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100494 kmem_cache_free(ceph_inode_cachep, ci);
495}
496
Sage Weil355da1e2009-10-06 11:31:08 -0700497void ceph_destroy_inode(struct inode *inode)
498{
499 struct ceph_inode_info *ci = ceph_inode(inode);
500 struct ceph_inode_frag *frag;
501 struct rb_node *n;
502
503 dout("destroy_inode %p ino %llx.%llx\n", inode, ceph_vinop(inode));
504
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400505 ceph_fscache_unregister_inode_cookie(ci);
506
Sage Weil355da1e2009-10-06 11:31:08 -0700507 ceph_queue_caps_release(inode);
508
Sage Weil8b218b82010-03-09 12:59:08 -0800509 /*
510 * we may still have a snap_realm reference if there are stray
Yan, Zhengd9df2782014-04-18 09:57:11 +0800511 * caps in i_snap_caps.
Sage Weil8b218b82010-03-09 12:59:08 -0800512 */
513 if (ci->i_snap_realm) {
514 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700515 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weil8b218b82010-03-09 12:59:08 -0800516 struct ceph_snap_realm *realm = ci->i_snap_realm;
517
518 dout(" dropping residual ref to snap realm %p\n", realm);
519 spin_lock(&realm->inodes_with_caps_lock);
520 list_del_init(&ci->i_snap_realm_item);
521 spin_unlock(&realm->inodes_with_caps_lock);
522 ceph_put_snap_realm(mdsc, realm);
523 }
524
Sage Weil355da1e2009-10-06 11:31:08 -0700525 kfree(ci->i_symlink);
526 while ((n = rb_first(&ci->i_fragtree)) != NULL) {
527 frag = rb_entry(n, struct ceph_inode_frag, node);
528 rb_erase(n, &ci->i_fragtree);
529 kfree(frag);
530 }
531
532 __ceph_destroy_xattrs(ci);
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800533 if (ci->i_xattrs.blob)
534 ceph_buffer_put(ci->i_xattrs.blob);
535 if (ci->i_xattrs.prealloc_blob)
536 ceph_buffer_put(ci->i_xattrs.prealloc_blob);
Sage Weil355da1e2009-10-06 11:31:08 -0700537
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100538 call_rcu(&inode->i_rcu, ceph_i_callback);
Sage Weil355da1e2009-10-06 11:31:08 -0700539}
540
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800541int ceph_drop_inode(struct inode *inode)
542{
543 /*
544 * Positve dentry and corresponding inode are always accompanied
545 * in MDS reply. So no need to keep inode in the cache after
546 * dropping all its aliases.
547 */
548 return 1;
549}
550
Sage Weil355da1e2009-10-06 11:31:08 -0700551/*
552 * Helpers to fill in size, ctime, mtime, and atime. We have to be
553 * careful because either the client or MDS may have more up to date
554 * info, depending on which capabilities are held, and whether
555 * time_warp_seq or truncate_seq have increased. (Ordinarily, mtime
556 * and size are monotonically increasing, except when utimes() or
557 * truncate() increments the corresponding _seq values.)
558 */
559int ceph_fill_file_size(struct inode *inode, int issued,
560 u32 truncate_seq, u64 truncate_size, u64 size)
561{
562 struct ceph_inode_info *ci = ceph_inode(inode);
563 int queue_trunc = 0;
564
565 if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) > 0 ||
566 (truncate_seq == ci->i_truncate_seq && size > inode->i_size)) {
567 dout("size %lld -> %llu\n", inode->i_size, size);
Yan, Zhenga3d714c2016-02-26 17:16:32 +0800568 if (size > 0 && S_ISDIR(inode->i_mode)) {
569 pr_err("fill_file_size non-zero size for directory\n");
570 size = 0;
571 }
Yan, Zheng99c88e62015-12-30 11:32:46 +0800572 i_size_write(inode, size);
Sage Weil355da1e2009-10-06 11:31:08 -0700573 inode->i_blocks = (size + (1<<9) - 1) >> 9;
574 ci->i_reported_size = size;
575 if (truncate_seq != ci->i_truncate_seq) {
576 dout("truncate_seq %u -> %u\n",
577 ci->i_truncate_seq, truncate_seq);
578 ci->i_truncate_seq = truncate_seq;
Yan, Zhengb0d7c222013-08-12 21:42:15 -0700579
580 /* the MDS should have revoked these caps */
581 WARN_ON_ONCE(issued & (CEPH_CAP_FILE_EXCL |
582 CEPH_CAP_FILE_RD |
583 CEPH_CAP_FILE_WR |
584 CEPH_CAP_FILE_LAZYIO));
Yehuda Sadeh3d497d82010-02-09 11:08:40 -0800585 /*
586 * If we hold relevant caps, or in the case where we're
587 * not the only client referencing this file and we
588 * don't hold those caps, then we need to check whether
589 * the file is either opened or mmaped
590 */
Yan, Zhengb0d7c222013-08-12 21:42:15 -0700591 if ((issued & (CEPH_CAP_FILE_CACHE|
592 CEPH_CAP_FILE_BUFFER)) ||
Yehuda Sadeh3d497d82010-02-09 11:08:40 -0800593 mapping_mapped(inode->i_mapping) ||
594 __ceph_caps_file_wanted(ci)) {
Sage Weil355da1e2009-10-06 11:31:08 -0700595 ci->i_truncate_pending++;
596 queue_trunc = 1;
597 }
598 }
599 }
600 if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) >= 0 &&
601 ci->i_truncate_size != truncate_size) {
602 dout("truncate_size %lld -> %llu\n", ci->i_truncate_size,
603 truncate_size);
604 ci->i_truncate_size = truncate_size;
605 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400606
607 if (queue_trunc)
608 ceph_fscache_invalidate(inode);
609
Sage Weil355da1e2009-10-06 11:31:08 -0700610 return queue_trunc;
611}
612
613void ceph_fill_file_time(struct inode *inode, int issued,
614 u64 time_warp_seq, struct timespec *ctime,
615 struct timespec *mtime, struct timespec *atime)
616{
617 struct ceph_inode_info *ci = ceph_inode(inode);
618 int warn = 0;
619
620 if (issued & (CEPH_CAP_FILE_EXCL|
621 CEPH_CAP_FILE_WR|
Sage Weild8672d62010-11-08 09:24:34 -0800622 CEPH_CAP_FILE_BUFFER|
623 CEPH_CAP_AUTH_EXCL|
624 CEPH_CAP_XATTR_EXCL)) {
Sage Weil355da1e2009-10-06 11:31:08 -0700625 if (timespec_compare(ctime, &inode->i_ctime) > 0) {
626 dout("ctime %ld.%09ld -> %ld.%09ld inc w/ cap\n",
627 inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
628 ctime->tv_sec, ctime->tv_nsec);
629 inode->i_ctime = *ctime;
630 }
631 if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) > 0) {
632 /* the MDS did a utimes() */
633 dout("mtime %ld.%09ld -> %ld.%09ld "
634 "tw %d -> %d\n",
635 inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
636 mtime->tv_sec, mtime->tv_nsec,
637 ci->i_time_warp_seq, (int)time_warp_seq);
638
639 inode->i_mtime = *mtime;
640 inode->i_atime = *atime;
641 ci->i_time_warp_seq = time_warp_seq;
642 } else if (time_warp_seq == ci->i_time_warp_seq) {
643 /* nobody did utimes(); take the max */
644 if (timespec_compare(mtime, &inode->i_mtime) > 0) {
645 dout("mtime %ld.%09ld -> %ld.%09ld inc\n",
646 inode->i_mtime.tv_sec,
647 inode->i_mtime.tv_nsec,
648 mtime->tv_sec, mtime->tv_nsec);
649 inode->i_mtime = *mtime;
650 }
651 if (timespec_compare(atime, &inode->i_atime) > 0) {
652 dout("atime %ld.%09ld -> %ld.%09ld inc\n",
653 inode->i_atime.tv_sec,
654 inode->i_atime.tv_nsec,
655 atime->tv_sec, atime->tv_nsec);
656 inode->i_atime = *atime;
657 }
658 } else if (issued & CEPH_CAP_FILE_EXCL) {
659 /* we did a utimes(); ignore mds values */
660 } else {
661 warn = 1;
662 }
663 } else {
Sage Weild8672d62010-11-08 09:24:34 -0800664 /* we have no write|excl caps; whatever the MDS says is true */
Sage Weil355da1e2009-10-06 11:31:08 -0700665 if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) >= 0) {
666 inode->i_ctime = *ctime;
667 inode->i_mtime = *mtime;
668 inode->i_atime = *atime;
669 ci->i_time_warp_seq = time_warp_seq;
670 } else {
671 warn = 1;
672 }
673 }
674 if (warn) /* time_warp_seq shouldn't go backwards */
675 dout("%p mds time_warp_seq %llu < %u\n",
676 inode, time_warp_seq, ci->i_time_warp_seq);
677}
678
679/*
680 * Populate an inode based on info from mds. May be called on new or
681 * existing inodes.
682 */
Yan, Zheng01deead2014-11-14 21:56:29 +0800683static int fill_inode(struct inode *inode, struct page *locked_page,
Sage Weil355da1e2009-10-06 11:31:08 -0700684 struct ceph_mds_reply_info_in *iinfo,
685 struct ceph_mds_reply_dirfrag *dirinfo,
686 struct ceph_mds_session *session,
687 unsigned long ttl_from, int cap_fmode,
688 struct ceph_cap_reservation *caps_reservation)
689{
Yan, Zhengd9df2782014-04-18 09:57:11 +0800690 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weil355da1e2009-10-06 11:31:08 -0700691 struct ceph_mds_reply_inode *info = iinfo->in;
692 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengf98a1282014-04-17 08:55:50 +0800693 int issued = 0, implemented, new_issued;
Sage Weil355da1e2009-10-06 11:31:08 -0700694 struct timespec mtime, atime, ctime;
Sage Weil355da1e2009-10-06 11:31:08 -0700695 struct ceph_buffer *xattr_blob = NULL;
Yan, Zhengd9df2782014-04-18 09:57:11 +0800696 struct ceph_cap *new_cap = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700697 int err = 0;
Yan, Zhengd9df2782014-04-18 09:57:11 +0800698 bool wake = false;
Yan, Zhengf98a1282014-04-17 08:55:50 +0800699 bool queue_trunc = false;
700 bool new_version = false;
Yan, Zheng31c542a2014-11-14 21:41:55 +0800701 bool fill_inline = false;
Sage Weil355da1e2009-10-06 11:31:08 -0700702
703 dout("fill_inode %p ino %llx.%llx v %llu had %llu\n",
704 inode, ceph_vinop(inode), le64_to_cpu(info->version),
705 ci->i_version);
706
Yan, Zhengd9df2782014-04-18 09:57:11 +0800707 /* prealloc new cap struct */
708 if (info->cap.caps && ceph_snap(inode) == CEPH_NOSNAP)
709 new_cap = ceph_get_cap(mdsc, caps_reservation);
710
Sage Weil355da1e2009-10-06 11:31:08 -0700711 /*
712 * prealloc xattr data, if it looks like we'll need it. only
713 * if len > 4 (meaning there are actually xattrs; the first 4
714 * bytes are the xattr count).
715 */
716 if (iinfo->xattr_len > 4) {
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800717 xattr_blob = ceph_buffer_new(iinfo->xattr_len, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700718 if (!xattr_blob)
719 pr_err("fill_inode ENOMEM xattr blob %d bytes\n",
720 iinfo->xattr_len);
721 }
722
Sage Weilbe655592011-11-30 09:47:09 -0800723 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700724
725 /*
726 * provided version will be odd if inode value is projected,
Sage Weil8bd59e02010-11-08 09:23:12 -0800727 * even if stable. skip the update if we have newer stable
728 * info (ours>=theirs, e.g. due to racing mds replies), unless
729 * we are getting projected (unstable) info (in which case the
730 * version is odd, and we want ours>theirs).
731 * us them
732 * 2 2 skip
733 * 3 2 skip
734 * 3 3 update
Sage Weil355da1e2009-10-06 11:31:08 -0700735 */
Yan, Zhengf98a1282014-04-17 08:55:50 +0800736 if (ci->i_version == 0 ||
737 ((info->cap.flags & CEPH_CAP_FLAG_AUTH) &&
738 le64_to_cpu(info->version) > (ci->i_version & ~1)))
739 new_version = true;
740
Sage Weil355da1e2009-10-06 11:31:08 -0700741 issued = __ceph_caps_issued(ci, &implemented);
742 issued |= implemented | __ceph_caps_dirty(ci);
Yan, Zhengf98a1282014-04-17 08:55:50 +0800743 new_issued = ~issued & le32_to_cpu(info->cap.caps);
Sage Weil355da1e2009-10-06 11:31:08 -0700744
745 /* update inode */
746 ci->i_version = le64_to_cpu(info->version);
747 inode->i_version++;
748 inode->i_rdev = le32_to_cpu(info->rdev);
Yan, Zhengf98a1282014-04-17 08:55:50 +0800749 inode->i_blkbits = fls(le32_to_cpu(info->layout.fl_stripe_unit)) - 1;
Sage Weil355da1e2009-10-06 11:31:08 -0700750
Yan, Zhengf98a1282014-04-17 08:55:50 +0800751 if ((new_version || (new_issued & CEPH_CAP_AUTH_SHARED)) &&
752 (issued & CEPH_CAP_AUTH_EXCL) == 0) {
Sage Weil355da1e2009-10-06 11:31:08 -0700753 inode->i_mode = le32_to_cpu(info->mode);
Eric W. Biedermanab871b92013-01-31 03:40:12 -0800754 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(info->uid));
755 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(info->gid));
Sage Weil355da1e2009-10-06 11:31:08 -0700756 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
Eric W. Biedermanbd2bae62013-01-31 04:05:39 -0800757 from_kuid(&init_user_ns, inode->i_uid),
758 from_kgid(&init_user_ns, inode->i_gid));
Sage Weil355da1e2009-10-06 11:31:08 -0700759 }
760
Yan, Zhengf98a1282014-04-17 08:55:50 +0800761 if ((new_version || (new_issued & CEPH_CAP_LINK_SHARED)) &&
762 (issued & CEPH_CAP_LINK_EXCL) == 0)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200763 set_nlink(inode, le32_to_cpu(info->nlink));
Sage Weil355da1e2009-10-06 11:31:08 -0700764
Yan, Zhengf98a1282014-04-17 08:55:50 +0800765 if (new_version || (new_issued & CEPH_CAP_ANY_RD)) {
766 /* be careful with mtime, atime, size */
767 ceph_decode_timespec(&atime, &info->atime);
768 ceph_decode_timespec(&mtime, &info->mtime);
769 ceph_decode_timespec(&ctime, &info->ctime);
770 ceph_fill_file_time(inode, issued,
771 le32_to_cpu(info->time_warp_seq),
772 &ctime, &mtime, &atime);
773 }
Sage Weil355da1e2009-10-06 11:31:08 -0700774
Yan, Zhengf98a1282014-04-17 08:55:50 +0800775 if (new_version ||
776 (new_issued & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR))) {
Yan, Zheng10183a62015-04-27 15:33:28 +0800777 if (ci->i_layout.fl_pg_pool != info->layout.fl_pg_pool)
778 ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
Yan, Zhengf98a1282014-04-17 08:55:50 +0800779 ci->i_layout = info->layout;
Yan, Zheng5ea5c5e2016-02-14 18:06:41 +0800780 ci->i_pool_ns_len = iinfo->pool_ns_len;
Yan, Zheng10183a62015-04-27 15:33:28 +0800781
Yan, Zhengf98a1282014-04-17 08:55:50 +0800782 queue_trunc = ceph_fill_file_size(inode, issued,
783 le32_to_cpu(info->truncate_seq),
784 le64_to_cpu(info->truncate_size),
785 le64_to_cpu(info->size));
786 /* only update max_size on auth cap */
787 if ((info->cap.flags & CEPH_CAP_FLAG_AUTH) &&
788 ci->i_max_size != le64_to_cpu(info->max_size)) {
789 dout("max_size %lld -> %llu\n", ci->i_max_size,
790 le64_to_cpu(info->max_size));
791 ci->i_max_size = le64_to_cpu(info->max_size);
792 }
793 }
Sage Weil355da1e2009-10-06 11:31:08 -0700794
795 /* xattrs */
796 /* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
Yan, Zheng508b32d2014-09-16 21:46:17 +0800797 if ((ci->i_xattrs.version == 0 || !(issued & CEPH_CAP_XATTR_EXCL)) &&
Sage Weil355da1e2009-10-06 11:31:08 -0700798 le64_to_cpu(info->xattr_version) > ci->i_xattrs.version) {
799 if (ci->i_xattrs.blob)
800 ceph_buffer_put(ci->i_xattrs.blob);
801 ci->i_xattrs.blob = xattr_blob;
802 if (xattr_blob)
803 memcpy(ci->i_xattrs.blob->vec.iov_base,
804 iinfo->xattr_data, iinfo->xattr_len);
805 ci->i_xattrs.version = le64_to_cpu(info->xattr_version);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800806 ceph_forget_all_cached_acls(inode);
Sage Weila6424e42010-04-29 09:28:11 -0700807 xattr_blob = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700808 }
809
810 inode->i_mapping->a_ops = &ceph_aops;
Sage Weil355da1e2009-10-06 11:31:08 -0700811
812 switch (inode->i_mode & S_IFMT) {
813 case S_IFIFO:
814 case S_IFBLK:
815 case S_IFCHR:
816 case S_IFSOCK:
817 init_special_inode(inode, inode->i_mode, inode->i_rdev);
818 inode->i_op = &ceph_file_iops;
819 break;
820 case S_IFREG:
821 inode->i_op = &ceph_file_iops;
822 inode->i_fop = &ceph_file_fops;
823 break;
824 case S_IFLNK:
825 inode->i_op = &ceph_symlink_iops;
826 if (!ci->i_symlink) {
Xi Wang810339ec2012-02-03 09:55:36 -0500827 u32 symlen = iinfo->symlink_len;
Sage Weil355da1e2009-10-06 11:31:08 -0700828 char *sym;
829
Sage Weilbe655592011-11-30 09:47:09 -0800830 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700831
Xi Wang810339ec2012-02-03 09:55:36 -0500832 err = -EINVAL;
Yan, Zheng99c88e62015-12-30 11:32:46 +0800833 if (WARN_ON(symlen != i_size_read(inode)))
Xi Wang810339ec2012-02-03 09:55:36 -0500834 goto out;
835
Sage Weil355da1e2009-10-06 11:31:08 -0700836 err = -ENOMEM;
Xi Wang810339ec2012-02-03 09:55:36 -0500837 sym = kstrndup(iinfo->symlink, symlen, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700838 if (!sym)
839 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700840
Sage Weilbe655592011-11-30 09:47:09 -0800841 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700842 if (!ci->i_symlink)
843 ci->i_symlink = sym;
844 else
845 kfree(sym); /* lost a race */
846 }
Al Viroac194dc2015-05-02 10:50:05 -0400847 inode->i_link = ci->i_symlink;
Sage Weil355da1e2009-10-06 11:31:08 -0700848 break;
849 case S_IFDIR:
850 inode->i_op = &ceph_dir_iops;
851 inode->i_fop = &ceph_dir_fops;
852
Sage Weil14303d22010-12-14 17:37:52 -0800853 ci->i_dir_layout = iinfo->dir_layout;
854
Sage Weil355da1e2009-10-06 11:31:08 -0700855 ci->i_files = le64_to_cpu(info->files);
856 ci->i_subdirs = le64_to_cpu(info->subdirs);
857 ci->i_rbytes = le64_to_cpu(info->rbytes);
858 ci->i_rfiles = le64_to_cpu(info->rfiles);
859 ci->i_rsubdirs = le64_to_cpu(info->rsubdirs);
860 ceph_decode_timespec(&ci->i_rctime, &info->rctime);
Sage Weil355da1e2009-10-06 11:31:08 -0700861 break;
862 default:
863 pr_err("fill_inode %llx.%llx BAD mode 0%o\n",
864 ceph_vinop(inode), inode->i_mode);
865 }
866
Sage Weil355da1e2009-10-06 11:31:08 -0700867 /* were we issued a capability? */
868 if (info->cap.caps) {
869 if (ceph_snap(inode) == CEPH_NOSNAP) {
Yan, Zheng2f92b3d2015-01-19 13:12:24 +0800870 unsigned caps = le32_to_cpu(info->cap.caps);
Sage Weil355da1e2009-10-06 11:31:08 -0700871 ceph_add_cap(inode, session,
872 le64_to_cpu(info->cap.cap_id),
Yan, Zheng2f92b3d2015-01-19 13:12:24 +0800873 cap_fmode, caps,
Sage Weil355da1e2009-10-06 11:31:08 -0700874 le32_to_cpu(info->cap.wanted),
875 le32_to_cpu(info->cap.seq),
876 le32_to_cpu(info->cap.mseq),
877 le64_to_cpu(info->cap.realm),
Yan, Zhengd9df2782014-04-18 09:57:11 +0800878 info->cap.flags, &new_cap);
Yan, Zheng2f92b3d2015-01-19 13:12:24 +0800879
880 /* set dir completion flag? */
881 if (S_ISDIR(inode->i_mode) &&
882 ci->i_files == 0 && ci->i_subdirs == 0 &&
883 (caps & CEPH_CAP_FILE_SHARED) &&
884 (issued & CEPH_CAP_FILE_EXCL) == 0 &&
885 !__ceph_dir_is_complete(ci)) {
886 dout(" marking %p complete (empty)\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800887 i_size_write(inode, 0);
Yan, Zheng2f92b3d2015-01-19 13:12:24 +0800888 __ceph_dir_set_complete(ci,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800889 atomic64_read(&ci->i_release_count),
890 atomic64_read(&ci->i_ordered_count));
Yan, Zheng2f92b3d2015-01-19 13:12:24 +0800891 }
892
Yan, Zhengd9df2782014-04-18 09:57:11 +0800893 wake = true;
Sage Weil355da1e2009-10-06 11:31:08 -0700894 } else {
Sage Weil355da1e2009-10-06 11:31:08 -0700895 dout(" %p got snap_caps %s\n", inode,
896 ceph_cap_string(le32_to_cpu(info->cap.caps)));
897 ci->i_snap_caps |= le32_to_cpu(info->cap.caps);
898 if (cap_fmode >= 0)
899 __ceph_get_fmode(ci, cap_fmode);
Sage Weil355da1e2009-10-06 11:31:08 -0700900 }
Sage Weil04d000e2010-05-07 11:26:34 -0700901 } else if (cap_fmode >= 0) {
Fabian Frederickf3ae1b92014-06-06 14:35:37 -0700902 pr_warn("mds issued no caps on %llx.%llx\n",
Sage Weil04d000e2010-05-07 11:26:34 -0700903 ceph_vinop(inode));
904 __ceph_get_fmode(ci, cap_fmode);
Sage Weil355da1e2009-10-06 11:31:08 -0700905 }
Yan, Zheng31c542a2014-11-14 21:41:55 +0800906
907 if (iinfo->inline_version > 0 &&
908 iinfo->inline_version >= ci->i_inline_version) {
909 int cache_caps = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
910 ci->i_inline_version = iinfo->inline_version;
911 if (ci->i_inline_version != CEPH_INLINE_NONE &&
Yan, Zheng01deead2014-11-14 21:56:29 +0800912 (locked_page ||
913 (le32_to_cpu(info->cap.caps) & cache_caps)))
Yan, Zheng31c542a2014-11-14 21:41:55 +0800914 fill_inline = true;
915 }
916
Sage Weil355da1e2009-10-06 11:31:08 -0700917 spin_unlock(&ci->i_ceph_lock);
918
Yan, Zheng31c542a2014-11-14 21:41:55 +0800919 if (fill_inline)
Yan, Zheng01deead2014-11-14 21:56:29 +0800920 ceph_fill_inline_data(inode, locked_page,
Yan, Zheng31c542a2014-11-14 21:41:55 +0800921 iinfo->inline_data, iinfo->inline_len);
922
Yan, Zhengd9df2782014-04-18 09:57:11 +0800923 if (wake)
924 wake_up_all(&ci->i_cap_wq);
925
Sage Weil355da1e2009-10-06 11:31:08 -0700926 /* queue truncate if we saw i_size decrease */
927 if (queue_trunc)
928 ceph_queue_vmtruncate(inode);
929
930 /* populate frag tree */
Yan, Zheng3e7fbe92014-04-18 16:00:30 +0800931 if (S_ISDIR(inode->i_mode))
932 ceph_fill_fragtree(inode, &info->fragtree, dirinfo);
Sage Weil355da1e2009-10-06 11:31:08 -0700933
934 /* update delegation info? */
935 if (dirinfo)
936 ceph_fill_dirfrag(inode, dirinfo);
937
938 err = 0;
Sage Weil355da1e2009-10-06 11:31:08 -0700939out:
Yan, Zhengd9df2782014-04-18 09:57:11 +0800940 if (new_cap)
941 ceph_put_cap(mdsc, new_cap);
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800942 if (xattr_blob)
943 ceph_buffer_put(xattr_blob);
Sage Weil355da1e2009-10-06 11:31:08 -0700944 return err;
945}
946
947/*
948 * caller should hold session s_mutex.
949 */
950static void update_dentry_lease(struct dentry *dentry,
951 struct ceph_mds_reply_lease *lease,
952 struct ceph_mds_session *session,
953 unsigned long from_time)
954{
955 struct ceph_dentry_info *di = ceph_dentry(dentry);
956 long unsigned duration = le32_to_cpu(lease->duration_ms);
957 long unsigned ttl = from_time + (duration * HZ) / 1000;
958 long unsigned half_ttl = from_time + (duration * HZ / 2) / 1000;
959 struct inode *dir;
960
961 /* only track leases on regular dentries */
962 if (dentry->d_op != &ceph_dentry_ops)
963 return;
964
965 spin_lock(&dentry->d_lock);
Sage Weil2f90b852011-07-26 11:28:25 -0700966 dout("update_dentry_lease %p duration %lu ms ttl %lu\n",
967 dentry, duration, ttl);
Sage Weil355da1e2009-10-06 11:31:08 -0700968
969 /* make lease_rdcache_gen match directory */
David Howells2b0143b2015-03-17 22:25:59 +0000970 dir = d_inode(dentry->d_parent);
Sage Weil355da1e2009-10-06 11:31:08 -0700971 di->lease_shared_gen = ceph_inode(dir)->i_shared_gen;
972
Sage Weil2f90b852011-07-26 11:28:25 -0700973 if (duration == 0)
Sage Weil355da1e2009-10-06 11:31:08 -0700974 goto out_unlock;
975
976 if (di->lease_gen == session->s_cap_gen &&
977 time_before(ttl, dentry->d_time))
978 goto out_unlock; /* we already have a newer lease. */
979
980 if (di->lease_session && di->lease_session != session)
981 goto out_unlock;
982
983 ceph_dentry_lru_touch(dentry);
984
985 if (!di->lease_session)
986 di->lease_session = ceph_get_mds_session(session);
987 di->lease_gen = session->s_cap_gen;
988 di->lease_seq = le32_to_cpu(lease->seq);
989 di->lease_renew_after = half_ttl;
990 di->lease_renew_from = 0;
991 dentry->d_time = ttl;
992out_unlock:
993 spin_unlock(&dentry->d_lock);
994 return;
995}
996
997/*
Sage Weil1cd39352010-05-03 22:08:02 -0700998 * splice a dentry to an inode.
999 * caller must hold directory i_mutex for this to be safe.
Sage Weil1cd39352010-05-03 22:08:02 -07001000 */
Al Virof7380af2016-03-06 20:42:16 -05001001static struct dentry *splice_dentry(struct dentry *dn, struct inode *in)
Sage Weil1cd39352010-05-03 22:08:02 -07001002{
1003 struct dentry *realdn;
1004
David Howells2b0143b2015-03-17 22:25:59 +00001005 BUG_ON(d_inode(dn));
Sage Weil1cd39352010-05-03 22:08:02 -07001006
1007 /* dn must be unhashed */
1008 if (!d_unhashed(dn))
1009 d_drop(dn);
Al Viro41d28bc2014-10-12 22:24:21 -04001010 realdn = d_splice_alias(in, dn);
Sage Weil1cd39352010-05-03 22:08:02 -07001011 if (IS_ERR(realdn)) {
Sage Weild69ed052010-06-21 10:38:14 -07001012 pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n",
1013 PTR_ERR(realdn), dn, in, ceph_vinop(in));
Sage Weil1cd39352010-05-03 22:08:02 -07001014 dn = realdn; /* note realdn contains the error */
1015 goto out;
1016 } else if (realdn) {
1017 dout("dn %p (%d) spliced with %p (%d) "
1018 "inode %p ino %llx.%llx\n",
Al Viro84d08fa2013-07-05 18:59:33 +04001019 dn, d_count(dn),
1020 realdn, d_count(realdn),
David Howells2b0143b2015-03-17 22:25:59 +00001021 d_inode(realdn), ceph_vinop(d_inode(realdn)));
Sage Weil1cd39352010-05-03 22:08:02 -07001022 dput(dn);
1023 dn = realdn;
1024 } else {
1025 BUG_ON(!ceph_dentry(dn));
1026 dout("dn %p attached to %p ino %llx.%llx\n",
David Howells2b0143b2015-03-17 22:25:59 +00001027 dn, d_inode(dn), ceph_vinop(d_inode(dn)));
Sage Weil1cd39352010-05-03 22:08:02 -07001028 }
Sage Weil1cd39352010-05-03 22:08:02 -07001029out:
1030 return dn;
1031}
1032
1033/*
Sage Weil355da1e2009-10-06 11:31:08 -07001034 * Incorporate results into the local cache. This is either just
1035 * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
1036 * after a lookup).
1037 *
1038 * A reply may contain
1039 * a directory inode along with a dentry.
1040 * and/or a target inode
1041 *
1042 * Called with snap_rwsem (read).
1043 */
1044int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req,
1045 struct ceph_mds_session *session)
1046{
1047 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1048 struct inode *in = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -07001049 struct ceph_vino vino;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001050 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil355da1e2009-10-06 11:31:08 -07001051 int err = 0;
1052
1053 dout("fill_trace %p is_dentry %d is_target %d\n", req,
1054 rinfo->head->is_dentry, rinfo->head->is_target);
1055
1056#if 0
1057 /*
1058 * Debugging hook:
1059 *
1060 * If we resend completed ops to a recovering mds, we get no
1061 * trace. Since that is very rare, pretend this is the case
1062 * to ensure the 'no trace' handlers in the callers behave.
1063 *
1064 * Fill in inodes unconditionally to avoid breaking cap
1065 * invariants.
1066 */
1067 if (rinfo->head->op & CEPH_MDS_OP_WRITE) {
1068 pr_info("fill_trace faking empty trace on %lld %s\n",
1069 req->r_tid, ceph_mds_op_name(rinfo->head->op));
1070 if (rinfo->head->is_dentry) {
1071 rinfo->head->is_dentry = 0;
1072 err = fill_inode(req->r_locked_dir,
1073 &rinfo->diri, rinfo->dirfrag,
1074 session, req->r_request_started, -1);
1075 }
1076 if (rinfo->head->is_target) {
1077 rinfo->head->is_target = 0;
1078 ininfo = rinfo->targeti.in;
1079 vino.ino = le64_to_cpu(ininfo->ino);
1080 vino.snap = le64_to_cpu(ininfo->snapid);
1081 in = ceph_get_inode(sb, vino);
1082 err = fill_inode(in, &rinfo->targeti, NULL,
1083 session, req->r_request_started,
1084 req->r_fmode);
1085 iput(in);
1086 }
1087 }
1088#endif
1089
1090 if (!rinfo->head->is_target && !rinfo->head->is_dentry) {
1091 dout("fill_trace reply is empty!\n");
Sage Weil167c9e32010-05-14 10:02:57 -07001092 if (rinfo->head->result == 0 && req->r_locked_dir)
1093 ceph_invalidate_dir_request(req);
Sage Weil355da1e2009-10-06 11:31:08 -07001094 return 0;
1095 }
1096
1097 if (rinfo->head->is_dentry) {
Sage Weil5b1daec2010-01-25 11:33:08 -08001098 struct inode *dir = req->r_locked_dir;
1099
Sage Weil6c5e50f2012-08-21 15:55:25 -07001100 if (dir) {
Yan, Zheng01deead2014-11-14 21:56:29 +08001101 err = fill_inode(dir, NULL,
1102 &rinfo->diri, rinfo->dirfrag,
Sage Weil6c5e50f2012-08-21 15:55:25 -07001103 session, req->r_request_started, -1,
1104 &req->r_caps_reservation);
1105 if (err < 0)
Yan, Zheng19913b42014-03-06 16:40:32 +08001106 goto done;
Sage Weil6c5e50f2012-08-21 15:55:25 -07001107 } else {
1108 WARN_ON_ONCE(1);
1109 }
Yan, Zheng19913b42014-03-06 16:40:32 +08001110
1111 if (dir && req->r_op == CEPH_MDS_OP_LOOKUPNAME) {
1112 struct qstr dname;
1113 struct dentry *dn, *parent;
1114
1115 BUG_ON(!rinfo->head->is_target);
1116 BUG_ON(req->r_dentry);
1117
1118 parent = d_find_any_alias(dir);
1119 BUG_ON(!parent);
1120
1121 dname.name = rinfo->dname;
1122 dname.len = rinfo->dname_len;
1123 dname.hash = full_name_hash(dname.name, dname.len);
1124 vino.ino = le64_to_cpu(rinfo->targeti.in->ino);
1125 vino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
1126retry_lookup:
1127 dn = d_lookup(parent, &dname);
1128 dout("d_lookup on parent=%p name=%.*s got %p\n",
1129 parent, dname.len, dname.name, dn);
1130
1131 if (!dn) {
1132 dn = d_alloc(parent, &dname);
1133 dout("d_alloc %p '%.*s' = %p\n", parent,
1134 dname.len, dname.name, dn);
1135 if (dn == NULL) {
1136 dput(parent);
1137 err = -ENOMEM;
1138 goto done;
1139 }
1140 err = ceph_init_dentry(dn);
1141 if (err < 0) {
1142 dput(dn);
1143 dput(parent);
1144 goto done;
1145 }
David Howells2b0143b2015-03-17 22:25:59 +00001146 } else if (d_really_is_positive(dn) &&
1147 (ceph_ino(d_inode(dn)) != vino.ino ||
1148 ceph_snap(d_inode(dn)) != vino.snap)) {
Yan, Zheng19913b42014-03-06 16:40:32 +08001149 dout(" dn %p points to wrong inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +00001150 dn, d_inode(dn));
Yan, Zheng19913b42014-03-06 16:40:32 +08001151 d_delete(dn);
1152 dput(dn);
1153 goto retry_lookup;
1154 }
1155
1156 req->r_dentry = dn;
1157 dput(parent);
1158 }
Sage Weil5b1daec2010-01-25 11:33:08 -08001159 }
1160
Yan, Zheng86b58d12013-12-05 12:38:59 +08001161 if (rinfo->head->is_target) {
1162 vino.ino = le64_to_cpu(rinfo->targeti.in->ino);
1163 vino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
1164
1165 in = ceph_get_inode(sb, vino);
1166 if (IS_ERR(in)) {
1167 err = PTR_ERR(in);
1168 goto done;
1169 }
1170 req->r_target_inode = in;
1171
Yan, Zheng01deead2014-11-14 21:56:29 +08001172 err = fill_inode(in, req->r_locked_page, &rinfo->targeti, NULL,
Yan, Zheng86b58d12013-12-05 12:38:59 +08001173 session, req->r_request_started,
Yan, Zheng48193012014-04-01 20:34:18 +08001174 (!req->r_aborted && rinfo->head->result == 0) ?
Yan, Zheng86b58d12013-12-05 12:38:59 +08001175 req->r_fmode : -1,
1176 &req->r_caps_reservation);
1177 if (err < 0) {
1178 pr_err("fill_inode badness %p %llx.%llx\n",
1179 in, ceph_vinop(in));
1180 goto done;
1181 }
1182 }
1183
Sage Weil9358c6d2010-03-30 13:54:41 -07001184 /*
1185 * ignore null lease/binding on snapdir ENOENT, or else we
1186 * will have trouble splicing in the virtual snapdir later
1187 */
1188 if (rinfo->head->is_dentry && !req->r_aborted &&
Sage Weil6c5e50f2012-08-21 15:55:25 -07001189 req->r_locked_dir &&
Sage Weil9358c6d2010-03-30 13:54:41 -07001190 (rinfo->head->is_target || strncmp(req->r_dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001191 fsc->mount_options->snapdir_name,
Sage Weil9358c6d2010-03-30 13:54:41 -07001192 req->r_dentry->d_name.len))) {
Sage Weil355da1e2009-10-06 11:31:08 -07001193 /*
1194 * lookup link rename : null -> possibly existing inode
1195 * mknod symlink mkdir : null -> new inode
1196 * unlink : linked -> null
1197 */
1198 struct inode *dir = req->r_locked_dir;
1199 struct dentry *dn = req->r_dentry;
1200 bool have_dir_cap, have_lease;
1201
1202 BUG_ON(!dn);
1203 BUG_ON(!dir);
David Howells2b0143b2015-03-17 22:25:59 +00001204 BUG_ON(d_inode(dn->d_parent) != dir);
Sage Weil355da1e2009-10-06 11:31:08 -07001205 BUG_ON(ceph_ino(dir) !=
1206 le64_to_cpu(rinfo->diri.in->ino));
1207 BUG_ON(ceph_snap(dir) !=
1208 le64_to_cpu(rinfo->diri.in->snapid));
1209
Sage Weil355da1e2009-10-06 11:31:08 -07001210 /* do we have a lease on the whole dir? */
1211 have_dir_cap =
1212 (le32_to_cpu(rinfo->diri.in->cap.caps) &
1213 CEPH_CAP_FILE_SHARED);
1214
1215 /* do we have a dn lease? */
1216 have_lease = have_dir_cap ||
Sage Weil2f90b852011-07-26 11:28:25 -07001217 le32_to_cpu(rinfo->dlease->duration_ms);
Sage Weil355da1e2009-10-06 11:31:08 -07001218 if (!have_lease)
1219 dout("fill_trace no dentry lease or dir cap\n");
1220
1221 /* rename? */
1222 if (req->r_old_dentry && req->r_op == CEPH_MDS_OP_RENAME) {
Yan, Zheng0a8a70f2014-04-14 13:13:02 +08001223 struct inode *olddir = req->r_old_dentry_dir;
1224 BUG_ON(!olddir);
1225
Al Viroa4555892014-10-21 20:11:25 -04001226 dout(" src %p '%pd' dst %p '%pd'\n",
Sage Weil355da1e2009-10-06 11:31:08 -07001227 req->r_old_dentry,
Al Viroa4555892014-10-21 20:11:25 -04001228 req->r_old_dentry,
1229 dn, dn);
Sage Weil355da1e2009-10-06 11:31:08 -07001230 dout("fill_trace doing d_move %p -> %p\n",
1231 req->r_old_dentry, dn);
Sage Weilc10f5e12010-04-16 12:56:11 -07001232
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001233 /* d_move screws up sibling dentries' offsets */
1234 ceph_dir_clear_ordered(dir);
1235 ceph_dir_clear_ordered(olddir);
1236
Sage Weil355da1e2009-10-06 11:31:08 -07001237 d_move(req->r_old_dentry, dn);
Al Viroa4555892014-10-21 20:11:25 -04001238 dout(" src %p '%pd' dst %p '%pd'\n",
Sage Weil355da1e2009-10-06 11:31:08 -07001239 req->r_old_dentry,
Al Viroa4555892014-10-21 20:11:25 -04001240 req->r_old_dentry,
1241 dn, dn);
Sage Weil81a6cf22010-05-14 09:35:38 -07001242
Sage Weilc4a29f22009-12-21 11:42:18 -08001243 /* ensure target dentry is invalidated, despite
1244 rehashing bug in vfs_rename_dir */
Sage Weil81a6cf22010-05-14 09:35:38 -07001245 ceph_invalidate_dentry_lease(dn);
1246
Milosz Tanski99ccbd22013-08-21 17:29:54 -04001247 dout("dn %p gets new offset %lld\n", req->r_old_dentry,
Sage Weil1cd39352010-05-03 22:08:02 -07001248 ceph_dentry(req->r_old_dentry)->offset);
Sage Weil81a6cf22010-05-14 09:35:38 -07001249
Sage Weil355da1e2009-10-06 11:31:08 -07001250 dn = req->r_old_dentry; /* use old_dentry */
Sage Weil355da1e2009-10-06 11:31:08 -07001251 }
1252
1253 /* null dentry? */
1254 if (!rinfo->head->is_target) {
1255 dout("fill_trace null dentry\n");
David Howells2b0143b2015-03-17 22:25:59 +00001256 if (d_really_is_positive(dn)) {
Yan, Zheng70db4f32014-10-21 18:09:56 -07001257 ceph_dir_clear_ordered(dir);
Sage Weil355da1e2009-10-06 11:31:08 -07001258 dout("d_delete %p\n", dn);
1259 d_delete(dn);
1260 } else {
Sage Weil355da1e2009-10-06 11:31:08 -07001261 if (have_lease && d_unhashed(dn))
Al Virof8b31712016-03-07 15:11:43 -05001262 d_add(dn, NULL);
Sage Weil355da1e2009-10-06 11:31:08 -07001263 update_dentry_lease(dn, rinfo->dlease,
1264 session,
1265 req->r_request_started);
1266 }
1267 goto done;
1268 }
1269
1270 /* attach proper inode */
David Howells2b0143b2015-03-17 22:25:59 +00001271 if (d_really_is_negative(dn)) {
Yan, Zheng70db4f32014-10-21 18:09:56 -07001272 ceph_dir_clear_ordered(dir);
Yan, Zheng86b58d12013-12-05 12:38:59 +08001273 ihold(in);
Al Virof7380af2016-03-06 20:42:16 -05001274 dn = splice_dentry(dn, in);
Sage Weil355da1e2009-10-06 11:31:08 -07001275 if (IS_ERR(dn)) {
1276 err = PTR_ERR(dn);
1277 goto done;
1278 }
1279 req->r_dentry = dn; /* may have spliced */
David Howells2b0143b2015-03-17 22:25:59 +00001280 } else if (d_really_is_positive(dn) && d_inode(dn) != in) {
Sage Weil355da1e2009-10-06 11:31:08 -07001281 dout(" %p links to %p %llx.%llx, not %llx.%llx\n",
David Howells2b0143b2015-03-17 22:25:59 +00001282 dn, d_inode(dn), ceph_vinop(d_inode(dn)),
Yan, Zheng86b58d12013-12-05 12:38:59 +08001283 ceph_vinop(in));
Yan, Zheng200fd272016-03-17 14:41:59 +08001284 d_invalidate(dn);
Sage Weil355da1e2009-10-06 11:31:08 -07001285 have_lease = false;
Sage Weil355da1e2009-10-06 11:31:08 -07001286 }
1287
1288 if (have_lease)
1289 update_dentry_lease(dn, rinfo->dlease, session,
1290 req->r_request_started);
1291 dout(" final dn %p\n", dn);
Yan, Zheng86b58d12013-12-05 12:38:59 +08001292 } else if (!req->r_aborted &&
1293 (req->r_op == CEPH_MDS_OP_LOOKUPSNAP ||
1294 req->r_op == CEPH_MDS_OP_MKSNAP)) {
Sage Weil355da1e2009-10-06 11:31:08 -07001295 struct dentry *dn = req->r_dentry;
Yan, Zheng0a8a70f2014-04-14 13:13:02 +08001296 struct inode *dir = req->r_locked_dir;
Sage Weil355da1e2009-10-06 11:31:08 -07001297
1298 /* fill out a snapdir LOOKUPSNAP dentry */
1299 BUG_ON(!dn);
Yan, Zheng0a8a70f2014-04-14 13:13:02 +08001300 BUG_ON(!dir);
1301 BUG_ON(ceph_snap(dir) != CEPH_SNAPDIR);
Sage Weil355da1e2009-10-06 11:31:08 -07001302 dout(" linking snapped dir %p to dn %p\n", in, dn);
Yan, Zheng70db4f32014-10-21 18:09:56 -07001303 ceph_dir_clear_ordered(dir);
Yan, Zheng86b58d12013-12-05 12:38:59 +08001304 ihold(in);
Al Virof7380af2016-03-06 20:42:16 -05001305 dn = splice_dentry(dn, in);
Sage Weil355da1e2009-10-06 11:31:08 -07001306 if (IS_ERR(dn)) {
1307 err = PTR_ERR(dn);
1308 goto done;
1309 }
1310 req->r_dentry = dn; /* may have spliced */
Sage Weil355da1e2009-10-06 11:31:08 -07001311 }
Sage Weil355da1e2009-10-06 11:31:08 -07001312done:
1313 dout("fill_trace done err=%d\n", err);
1314 return err;
1315}
1316
1317/*
1318 * Prepopulate our cache with readdir results, leases, etc.
1319 */
Sage Weil79f9f992013-01-29 02:55:31 -05001320static int readdir_prepopulate_inodes_only(struct ceph_mds_request *req,
1321 struct ceph_mds_session *session)
1322{
1323 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1324 int i, err = 0;
1325
1326 for (i = 0; i < rinfo->dir_nr; i++) {
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001327 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
Sage Weil79f9f992013-01-29 02:55:31 -05001328 struct ceph_vino vino;
1329 struct inode *in;
1330 int rc;
1331
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001332 vino.ino = le64_to_cpu(rde->inode.in->ino);
1333 vino.snap = le64_to_cpu(rde->inode.in->snapid);
Sage Weil79f9f992013-01-29 02:55:31 -05001334
1335 in = ceph_get_inode(req->r_dentry->d_sb, vino);
1336 if (IS_ERR(in)) {
1337 err = PTR_ERR(in);
1338 dout("new_inode badness got %d\n", err);
1339 continue;
1340 }
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001341 rc = fill_inode(in, NULL, &rde->inode, NULL, session,
Sage Weil79f9f992013-01-29 02:55:31 -05001342 req->r_request_started, -1,
1343 &req->r_caps_reservation);
1344 if (rc < 0) {
1345 pr_err("fill_inode badness on %p got %d\n", in, rc);
1346 err = rc;
Sage Weil79f9f992013-01-29 02:55:31 -05001347 }
Yan, Zheng209ae762016-04-29 23:40:23 +08001348 iput(in);
Sage Weil79f9f992013-01-29 02:55:31 -05001349 }
1350
1351 return err;
1352}
1353
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001354void ceph_readdir_cache_release(struct ceph_readdir_cache_control *ctl)
1355{
1356 if (ctl->page) {
1357 kunmap(ctl->page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001358 put_page(ctl->page);
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001359 ctl->page = NULL;
1360 }
1361}
1362
1363static int fill_readdir_cache(struct inode *dir, struct dentry *dn,
1364 struct ceph_readdir_cache_control *ctl,
1365 struct ceph_mds_request *req)
1366{
1367 struct ceph_inode_info *ci = ceph_inode(dir);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001368 unsigned nsize = PAGE_SIZE / sizeof(struct dentry*);
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001369 unsigned idx = ctl->index % nsize;
1370 pgoff_t pgoff = ctl->index / nsize;
1371
1372 if (!ctl->page || pgoff != page_index(ctl->page)) {
1373 ceph_readdir_cache_release(ctl);
Yan, Zhengaf5e5eb2016-02-26 16:27:13 +08001374 if (idx == 0)
1375 ctl->page = grab_cache_page(&dir->i_data, pgoff);
1376 else
1377 ctl->page = find_lock_page(&dir->i_data, pgoff);
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001378 if (!ctl->page) {
1379 ctl->index = -1;
Yan, Zhengaf5e5eb2016-02-26 16:27:13 +08001380 return idx == 0 ? -ENOMEM : 0;
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001381 }
1382 /* reading/filling the cache are serialized by
1383 * i_mutex, no need to use page lock */
1384 unlock_page(ctl->page);
1385 ctl->dentries = kmap(ctl->page);
Yan, Zhengaf5e5eb2016-02-26 16:27:13 +08001386 if (idx == 0)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001387 memset(ctl->dentries, 0, PAGE_SIZE);
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001388 }
1389
1390 if (req->r_dir_release_cnt == atomic64_read(&ci->i_release_count) &&
1391 req->r_dir_ordered_cnt == atomic64_read(&ci->i_ordered_count)) {
1392 dout("readdir cache dn %p idx %d\n", dn, ctl->index);
1393 ctl->dentries[idx] = dn;
1394 ctl->index++;
1395 } else {
1396 dout("disable readdir cache\n");
1397 ctl->index = -1;
1398 }
1399 return 0;
1400}
1401
Sage Weil355da1e2009-10-06 11:31:08 -07001402int ceph_readdir_prepopulate(struct ceph_mds_request *req,
1403 struct ceph_mds_session *session)
1404{
1405 struct dentry *parent = req->r_dentry;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +08001406 struct ceph_inode_info *ci = ceph_inode(d_inode(parent));
Sage Weil355da1e2009-10-06 11:31:08 -07001407 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1408 struct qstr dname;
1409 struct dentry *dn;
1410 struct inode *in;
Yan, Zheng315f2402016-03-07 10:34:50 +08001411 int err = 0, skipped = 0, ret, i;
Sage Weil355da1e2009-10-06 11:31:08 -07001412 struct inode *snapdir = NULL;
1413 struct ceph_mds_request_head *rhead = req->r_request->front.iov_base;
Yan, Zheng81c6aea2013-09-18 09:44:13 +08001414 u32 frag = le32_to_cpu(rhead->args.readdir.frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +08001415 u32 last_hash = 0;
1416 u32 fpos_offset;
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001417 struct ceph_readdir_cache_control cache_ctl = {};
1418
1419 if (req->r_aborted)
1420 return readdir_prepopulate_inodes_only(req, session);
Yan, Zheng81c6aea2013-09-18 09:44:13 +08001421
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +08001422 if (rinfo->hash_order && req->r_path2) {
1423 last_hash = ceph_str_hash(ci->i_dir_layout.dl_dir_hash,
1424 req->r_path2, strlen(req->r_path2));
1425 last_hash = ceph_frag_value(last_hash);
1426 }
1427
Yan, Zheng81c6aea2013-09-18 09:44:13 +08001428 if (rinfo->dir_dir &&
1429 le32_to_cpu(rinfo->dir_dir->frag) != frag) {
1430 dout("readdir_prepopulate got new frag %x -> %x\n",
1431 frag, le32_to_cpu(rinfo->dir_dir->frag));
1432 frag = le32_to_cpu(rinfo->dir_dir->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +08001433 if (!rinfo->hash_order)
1434 req->r_readdir_offset = 2;
Yan, Zheng81c6aea2013-09-18 09:44:13 +08001435 }
Sage Weil355da1e2009-10-06 11:31:08 -07001436
1437 if (le32_to_cpu(rinfo->head->op) == CEPH_MDS_OP_LSSNAP) {
David Howells2b0143b2015-03-17 22:25:59 +00001438 snapdir = ceph_get_snapdir(d_inode(parent));
Sage Weil355da1e2009-10-06 11:31:08 -07001439 parent = d_find_alias(snapdir);
1440 dout("readdir_prepopulate %d items under SNAPDIR dn %p\n",
1441 rinfo->dir_nr, parent);
1442 } else {
1443 dout("readdir_prepopulate %d items under dn %p\n",
1444 rinfo->dir_nr, parent);
1445 if (rinfo->dir_dir)
David Howells2b0143b2015-03-17 22:25:59 +00001446 ceph_fill_dirfrag(d_inode(parent), rinfo->dir_dir);
Sage Weil355da1e2009-10-06 11:31:08 -07001447 }
1448
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001449 if (ceph_frag_is_leftmost(frag) && req->r_readdir_offset == 2) {
1450 /* note dir version at start of readdir so we can tell
1451 * if any dentries get dropped */
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001452 req->r_dir_release_cnt = atomic64_read(&ci->i_release_count);
1453 req->r_dir_ordered_cnt = atomic64_read(&ci->i_ordered_count);
1454 req->r_readdir_cache_idx = 0;
1455 }
1456
1457 cache_ctl.index = req->r_readdir_cache_idx;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +08001458 fpos_offset = req->r_readdir_offset;
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001459
Yan, Zheng86b58d12013-12-05 12:38:59 +08001460 /* FIXME: release caps/leases if error occurs */
Sage Weil355da1e2009-10-06 11:31:08 -07001461 for (i = 0; i < rinfo->dir_nr; i++) {
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001462 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
Sage Weil355da1e2009-10-06 11:31:08 -07001463 struct ceph_vino vino;
1464
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001465 dname.name = rde->name;
1466 dname.len = rde->name_len;
Sage Weil355da1e2009-10-06 11:31:08 -07001467 dname.hash = full_name_hash(dname.name, dname.len);
1468
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001469 vino.ino = le64_to_cpu(rde->inode.in->ino);
1470 vino.snap = le64_to_cpu(rde->inode.in->snapid);
Sage Weil355da1e2009-10-06 11:31:08 -07001471
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +08001472 if (rinfo->hash_order) {
1473 u32 hash = ceph_str_hash(ci->i_dir_layout.dl_dir_hash,
1474 rde->name, rde->name_len);
1475 hash = ceph_frag_value(hash);
1476 if (hash != last_hash)
1477 fpos_offset = 2;
1478 last_hash = hash;
1479 rde->offset = ceph_make_fpos(hash, fpos_offset++, true);
1480 } else {
1481 rde->offset = ceph_make_fpos(frag, fpos_offset++, false);
1482 }
1483
Sage Weil355da1e2009-10-06 11:31:08 -07001484retry_lookup:
1485 dn = d_lookup(parent, &dname);
1486 dout("d_lookup on parent=%p name=%.*s got %p\n",
1487 parent, dname.len, dname.name, dn);
1488
1489 if (!dn) {
1490 dn = d_alloc(parent, &dname);
1491 dout("d_alloc %p '%.*s' = %p\n", parent,
1492 dname.len, dname.name, dn);
1493 if (dn == NULL) {
1494 dout("d_alloc badness\n");
1495 err = -ENOMEM;
1496 goto out;
1497 }
Yan, Zheng86b58d12013-12-05 12:38:59 +08001498 ret = ceph_init_dentry(dn);
1499 if (ret < 0) {
Sage Weil8c696732010-07-22 14:11:56 -07001500 dput(dn);
Yan, Zheng86b58d12013-12-05 12:38:59 +08001501 err = ret;
Sage Weil355da1e2009-10-06 11:31:08 -07001502 goto out;
Sage Weil8c696732010-07-22 14:11:56 -07001503 }
David Howells2b0143b2015-03-17 22:25:59 +00001504 } else if (d_really_is_positive(dn) &&
1505 (ceph_ino(d_inode(dn)) != vino.ino ||
1506 ceph_snap(d_inode(dn)) != vino.snap)) {
Sage Weil355da1e2009-10-06 11:31:08 -07001507 dout(" dn %p points to wrong inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +00001508 dn, d_inode(dn));
Sage Weil355da1e2009-10-06 11:31:08 -07001509 d_delete(dn);
1510 dput(dn);
1511 goto retry_lookup;
Sage Weil355da1e2009-10-06 11:31:08 -07001512 }
1513
Sage Weil355da1e2009-10-06 11:31:08 -07001514 /* inode */
David Howells2b0143b2015-03-17 22:25:59 +00001515 if (d_really_is_positive(dn)) {
1516 in = d_inode(dn);
Sage Weil355da1e2009-10-06 11:31:08 -07001517 } else {
1518 in = ceph_get_inode(parent->d_sb, vino);
Dan Carpenterac1f12e2010-08-25 09:11:35 +02001519 if (IS_ERR(in)) {
Sage Weil355da1e2009-10-06 11:31:08 -07001520 dout("new_inode badness\n");
Al Viro2744c172012-09-26 21:41:05 -04001521 d_drop(dn);
Sage Weil355da1e2009-10-06 11:31:08 -07001522 dput(dn);
Dan Carpenterac1f12e2010-08-25 09:11:35 +02001523 err = PTR_ERR(in);
Sage Weil355da1e2009-10-06 11:31:08 -07001524 goto out;
1525 }
Sage Weil355da1e2009-10-06 11:31:08 -07001526 }
1527
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001528 ret = fill_inode(in, NULL, &rde->inode, NULL, session,
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001529 req->r_request_started, -1,
1530 &req->r_caps_reservation);
1531 if (ret < 0) {
Sage Weil355da1e2009-10-06 11:31:08 -07001532 pr_err("fill_inode badness on %p\n", in);
David Howells2b0143b2015-03-17 22:25:59 +00001533 if (d_really_is_negative(dn))
Yan, Zheng86b58d12013-12-05 12:38:59 +08001534 iput(in);
1535 d_drop(dn);
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001536 err = ret;
Sage Weild69ed052010-06-21 10:38:14 -07001537 goto next_item;
Sage Weil355da1e2009-10-06 11:31:08 -07001538 }
Yan, Zheng86b58d12013-12-05 12:38:59 +08001539
David Howells2b0143b2015-03-17 22:25:59 +00001540 if (d_really_is_negative(dn)) {
Yan, Zheng315f2402016-03-07 10:34:50 +08001541 struct dentry *realdn;
1542
1543 if (ceph_security_xattr_deadlock(in)) {
1544 dout(" skip splicing dn %p to inode %p"
1545 " (security xattr deadlock)\n", dn, in);
1546 iput(in);
1547 skipped++;
1548 goto next_item;
1549 }
1550
1551 realdn = splice_dentry(dn, in);
Yan, Zheng5cba3722015-02-02 11:27:56 +08001552 if (IS_ERR(realdn)) {
1553 err = PTR_ERR(realdn);
1554 d_drop(dn);
Yan, Zheng86b58d12013-12-05 12:38:59 +08001555 dn = NULL;
1556 goto next_item;
1557 }
Yan, Zheng5cba3722015-02-02 11:27:56 +08001558 dn = realdn;
Yan, Zheng86b58d12013-12-05 12:38:59 +08001559 }
1560
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +08001561 ceph_dentry(dn)->offset = rde->offset;
Yan, Zheng86b58d12013-12-05 12:38:59 +08001562
Yan, Zheng2a5beea2016-04-28 09:37:39 +08001563 update_dentry_lease(dn, rde->lease, req->r_session,
Yan, Zheng86b58d12013-12-05 12:38:59 +08001564 req->r_request_started);
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001565
Yan, Zheng315f2402016-03-07 10:34:50 +08001566 if (err == 0 && skipped == 0 && cache_ctl.index >= 0) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001567 ret = fill_readdir_cache(d_inode(parent), dn,
1568 &cache_ctl, req);
1569 if (ret < 0)
1570 err = ret;
1571 }
Sage Weild69ed052010-06-21 10:38:14 -07001572next_item:
1573 if (dn)
1574 dput(dn);
Sage Weil355da1e2009-10-06 11:31:08 -07001575 }
Sage Weil355da1e2009-10-06 11:31:08 -07001576out:
Yan, Zheng315f2402016-03-07 10:34:50 +08001577 if (err == 0 && skipped == 0) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001578 req->r_did_prepopulate = true;
1579 req->r_readdir_cache_idx = cache_ctl.index;
1580 }
1581 ceph_readdir_cache_release(&cache_ctl);
Sage Weil355da1e2009-10-06 11:31:08 -07001582 if (snapdir) {
1583 iput(snapdir);
1584 dput(parent);
1585 }
1586 dout("readdir_prepopulate done\n");
1587 return err;
1588}
1589
1590int ceph_inode_set_size(struct inode *inode, loff_t size)
1591{
1592 struct ceph_inode_info *ci = ceph_inode(inode);
1593 int ret = 0;
1594
Sage Weilbe655592011-11-30 09:47:09 -08001595 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001596 dout("set_size %p %llu -> %llu\n", inode, inode->i_size, size);
Yan, Zheng99c88e62015-12-30 11:32:46 +08001597 i_size_write(inode, size);
Sage Weil355da1e2009-10-06 11:31:08 -07001598 inode->i_blocks = (size + (1 << 9) - 1) >> 9;
1599
1600 /* tell the MDS if we are approaching max_size */
1601 if ((size << 1) >= ci->i_max_size &&
1602 (ci->i_reported_size << 1) < ci->i_max_size)
1603 ret = 1;
1604
Sage Weilbe655592011-11-30 09:47:09 -08001605 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001606 return ret;
1607}
1608
1609/*
1610 * Write back inode data in a worker thread. (This can't be done
1611 * in the message handler context.)
1612 */
Sage Weil3c6f6b72010-02-09 15:24:44 -08001613void ceph_queue_writeback(struct inode *inode)
1614{
Sage Weil15a20152011-11-05 22:06:31 -07001615 ihold(inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001616 if (queue_work(ceph_inode_to_client(inode)->wb_wq,
1617 &ceph_inode(inode)->i_wb_work)) {
Sage Weil2c27c9a2010-02-17 15:45:51 -08001618 dout("ceph_queue_writeback %p\n", inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001619 } else {
Sage Weil2c27c9a2010-02-17 15:45:51 -08001620 dout("ceph_queue_writeback %p failed\n", inode);
Sage Weil15a20152011-11-05 22:06:31 -07001621 iput(inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001622 }
1623}
1624
1625static void ceph_writeback_work(struct work_struct *work)
Sage Weil355da1e2009-10-06 11:31:08 -07001626{
1627 struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
1628 i_wb_work);
1629 struct inode *inode = &ci->vfs_inode;
1630
1631 dout("writeback %p\n", inode);
1632 filemap_fdatawrite(&inode->i_data);
1633 iput(inode);
1634}
1635
1636/*
Sage Weil3c6f6b72010-02-09 15:24:44 -08001637 * queue an async invalidation
1638 */
1639void ceph_queue_invalidate(struct inode *inode)
1640{
Sage Weil15a20152011-11-05 22:06:31 -07001641 ihold(inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001642 if (queue_work(ceph_inode_to_client(inode)->pg_inv_wq,
1643 &ceph_inode(inode)->i_pg_inv_work)) {
1644 dout("ceph_queue_invalidate %p\n", inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001645 } else {
1646 dout("ceph_queue_invalidate %p failed\n", inode);
Sage Weil15a20152011-11-05 22:06:31 -07001647 iput(inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001648 }
1649}
1650
1651/*
Sage Weil355da1e2009-10-06 11:31:08 -07001652 * Invalidate inode pages in a worker thread. (This can't be done
1653 * in the message handler context.)
1654 */
Sage Weil3c6f6b72010-02-09 15:24:44 -08001655static void ceph_invalidate_work(struct work_struct *work)
Sage Weil355da1e2009-10-06 11:31:08 -07001656{
1657 struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
1658 i_pg_inv_work);
1659 struct inode *inode = &ci->vfs_inode;
Yan, Zheng6c93df52016-04-15 13:56:12 +08001660 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001661 u32 orig_gen;
1662 int check = 0;
1663
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001664 mutex_lock(&ci->i_truncate_mutex);
Yan, Zheng6c93df52016-04-15 13:56:12 +08001665
1666 if (ACCESS_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
1667 pr_warn_ratelimited("invalidate_pages %p %lld forced umount\n",
1668 inode, ceph_ino(inode));
1669 mapping_set_error(inode->i_mapping, -EIO);
1670 truncate_pagecache(inode, 0);
1671 mutex_unlock(&ci->i_truncate_mutex);
1672 goto out;
1673 }
1674
Sage Weilbe655592011-11-30 09:47:09 -08001675 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001676 dout("invalidate_pages %p gen %d revoking %d\n", inode,
1677 ci->i_rdcache_gen, ci->i_rdcache_revoking);
Sage Weilcd045cb2010-11-04 11:05:05 -07001678 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
Yan, Zheng9563f882013-11-22 13:50:45 +08001679 if (__ceph_caps_revoking_other(ci, NULL, CEPH_CAP_FILE_CACHE))
1680 check = 1;
Sage Weilbe655592011-11-30 09:47:09 -08001681 spin_unlock(&ci->i_ceph_lock);
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001682 mutex_unlock(&ci->i_truncate_mutex);
Sage Weil355da1e2009-10-06 11:31:08 -07001683 goto out;
1684 }
1685 orig_gen = ci->i_rdcache_gen;
Sage Weilbe655592011-11-30 09:47:09 -08001686 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001687
Yan, Zheng4e217b52014-06-08 05:08:56 +08001688 truncate_pagecache(inode, 0);
Sage Weil355da1e2009-10-06 11:31:08 -07001689
Sage Weilbe655592011-11-30 09:47:09 -08001690 spin_lock(&ci->i_ceph_lock);
Sage Weilcd045cb2010-11-04 11:05:05 -07001691 if (orig_gen == ci->i_rdcache_gen &&
1692 orig_gen == ci->i_rdcache_revoking) {
Sage Weil355da1e2009-10-06 11:31:08 -07001693 dout("invalidate_pages %p gen %d successful\n", inode,
1694 ci->i_rdcache_gen);
Sage Weilcd045cb2010-11-04 11:05:05 -07001695 ci->i_rdcache_revoking--;
Sage Weil355da1e2009-10-06 11:31:08 -07001696 check = 1;
1697 } else {
Sage Weilcd045cb2010-11-04 11:05:05 -07001698 dout("invalidate_pages %p gen %d raced, now %d revoking %d\n",
1699 inode, orig_gen, ci->i_rdcache_gen,
1700 ci->i_rdcache_revoking);
Yan, Zheng9563f882013-11-22 13:50:45 +08001701 if (__ceph_caps_revoking_other(ci, NULL, CEPH_CAP_FILE_CACHE))
1702 check = 1;
Sage Weil355da1e2009-10-06 11:31:08 -07001703 }
Sage Weilbe655592011-11-30 09:47:09 -08001704 spin_unlock(&ci->i_ceph_lock);
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001705 mutex_unlock(&ci->i_truncate_mutex);
Yan, Zheng9563f882013-11-22 13:50:45 +08001706out:
Sage Weil355da1e2009-10-06 11:31:08 -07001707 if (check)
1708 ceph_check_caps(ci, 0, NULL);
Sage Weil355da1e2009-10-06 11:31:08 -07001709 iput(inode);
1710}
1711
1712
1713/*
Yan, Zheng3f999692013-03-01 10:57:54 +08001714 * called by trunc_wq;
Sage Weil355da1e2009-10-06 11:31:08 -07001715 *
1716 * We also truncate in a separate thread as well.
1717 */
Sage Weil3c6f6b72010-02-09 15:24:44 -08001718static void ceph_vmtruncate_work(struct work_struct *work)
Sage Weil355da1e2009-10-06 11:31:08 -07001719{
1720 struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
1721 i_vmtruncate_work);
1722 struct inode *inode = &ci->vfs_inode;
1723
1724 dout("vmtruncate_work %p\n", inode);
Yan, Zhengb415bf42013-07-02 12:40:19 +08001725 __ceph_do_pending_vmtruncate(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001726 iput(inode);
1727}
1728
1729/*
Sage Weil3c6f6b72010-02-09 15:24:44 -08001730 * Queue an async vmtruncate. If we fail to queue work, we will handle
1731 * the truncation the next time we call __ceph_do_pending_vmtruncate.
1732 */
1733void ceph_queue_vmtruncate(struct inode *inode)
1734{
1735 struct ceph_inode_info *ci = ceph_inode(inode);
1736
Sage Weil15a20152011-11-05 22:06:31 -07001737 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -04001738
Cheng Renquan640ef792010-03-26 17:40:33 +08001739 if (queue_work(ceph_sb_to_client(inode->i_sb)->trunc_wq,
Sage Weil3c6f6b72010-02-09 15:24:44 -08001740 &ci->i_vmtruncate_work)) {
1741 dout("ceph_queue_vmtruncate %p\n", inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001742 } else {
1743 dout("ceph_queue_vmtruncate %p failed, pending=%d\n",
1744 inode, ci->i_truncate_pending);
Sage Weil15a20152011-11-05 22:06:31 -07001745 iput(inode);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001746 }
1747}
1748
1749/*
Sage Weil355da1e2009-10-06 11:31:08 -07001750 * Make sure any pending truncation is applied before doing anything
1751 * that may depend on it.
1752 */
Yan, Zhengb415bf42013-07-02 12:40:19 +08001753void __ceph_do_pending_vmtruncate(struct inode *inode)
Sage Weil355da1e2009-10-06 11:31:08 -07001754{
1755 struct ceph_inode_info *ci = ceph_inode(inode);
1756 u64 to;
Yan, Zhenga85f50b2012-11-19 10:49:08 +08001757 int wrbuffer_refs, finish = 0;
Sage Weil355da1e2009-10-06 11:31:08 -07001758
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001759 mutex_lock(&ci->i_truncate_mutex);
Sage Weil355da1e2009-10-06 11:31:08 -07001760retry:
Sage Weilbe655592011-11-30 09:47:09 -08001761 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001762 if (ci->i_truncate_pending == 0) {
1763 dout("__do_pending_vmtruncate %p none pending\n", inode);
Sage Weilbe655592011-11-30 09:47:09 -08001764 spin_unlock(&ci->i_ceph_lock);
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001765 mutex_unlock(&ci->i_truncate_mutex);
Sage Weil355da1e2009-10-06 11:31:08 -07001766 return;
1767 }
1768
1769 /*
1770 * make sure any dirty snapped pages are flushed before we
1771 * possibly truncate them.. so write AND block!
1772 */
1773 if (ci->i_wrbuffer_ref_head < ci->i_wrbuffer_ref) {
1774 dout("__do_pending_vmtruncate %p flushing snaps first\n",
1775 inode);
Sage Weilbe655592011-11-30 09:47:09 -08001776 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001777 filemap_write_and_wait_range(&inode->i_data, 0,
1778 inode->i_sb->s_maxbytes);
1779 goto retry;
1780 }
1781
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001782 /* there should be no reader or writer */
1783 WARN_ON_ONCE(ci->i_rd_ref || ci->i_wr_ref);
1784
Sage Weil355da1e2009-10-06 11:31:08 -07001785 to = ci->i_truncate_size;
1786 wrbuffer_refs = ci->i_wrbuffer_ref;
1787 dout("__do_pending_vmtruncate %p (%d) to %lld\n", inode,
1788 ci->i_truncate_pending, to);
Sage Weilbe655592011-11-30 09:47:09 -08001789 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001790
Yan, Zheng4e217b52014-06-08 05:08:56 +08001791 truncate_pagecache(inode, to);
Sage Weil355da1e2009-10-06 11:31:08 -07001792
Sage Weilbe655592011-11-30 09:47:09 -08001793 spin_lock(&ci->i_ceph_lock);
Yan, Zhenga85f50b2012-11-19 10:49:08 +08001794 if (to == ci->i_truncate_size) {
1795 ci->i_truncate_pending = 0;
1796 finish = 1;
1797 }
Sage Weilbe655592011-11-30 09:47:09 -08001798 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga85f50b2012-11-19 10:49:08 +08001799 if (!finish)
1800 goto retry;
Sage Weil355da1e2009-10-06 11:31:08 -07001801
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001802 mutex_unlock(&ci->i_truncate_mutex);
1803
Sage Weil355da1e2009-10-06 11:31:08 -07001804 if (wrbuffer_refs == 0)
1805 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
Yan, Zhenga85f50b2012-11-19 10:49:08 +08001806
1807 wake_up_all(&ci->i_cap_wq);
Sage Weil355da1e2009-10-06 11:31:08 -07001808}
1809
Sage Weil355da1e2009-10-06 11:31:08 -07001810/*
1811 * symlinks
1812 */
Sage Weil355da1e2009-10-06 11:31:08 -07001813static const struct inode_operations ceph_symlink_iops = {
1814 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05001815 .get_link = simple_get_link,
Yan, Zheng0b932672013-04-07 16:28:49 +08001816 .setattr = ceph_setattr,
1817 .getattr = ceph_getattr,
1818 .setxattr = ceph_setxattr,
1819 .getxattr = ceph_getxattr,
1820 .listxattr = ceph_listxattr,
1821 .removexattr = ceph_removexattr,
Sage Weil355da1e2009-10-06 11:31:08 -07001822};
1823
1824/*
1825 * setattr
1826 */
1827int ceph_setattr(struct dentry *dentry, struct iattr *attr)
1828{
David Howells2b0143b2015-03-17 22:25:59 +00001829 struct inode *inode = d_inode(dentry);
Sage Weil355da1e2009-10-06 11:31:08 -07001830 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001831 const unsigned int ia_valid = attr->ia_valid;
1832 struct ceph_mds_request *req;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001833 struct ceph_mds_client *mdsc = ceph_sb_to_client(dentry->d_sb)->mdsc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001834 struct ceph_cap_flush *prealloc_cf;
Sage Weil355da1e2009-10-06 11:31:08 -07001835 int issued;
1836 int release = 0, dirtied = 0;
1837 int mask = 0;
1838 int err = 0;
Sage Weilfca65b42011-05-04 11:33:47 -07001839 int inode_dirty_flags = 0;
Yan, Zheng604d1b02015-05-01 17:49:16 +08001840 bool lock_snap_rwsem = false;
Sage Weil355da1e2009-10-06 11:31:08 -07001841
1842 if (ceph_snap(inode) != CEPH_NOSNAP)
1843 return -EROFS;
1844
Sage Weil355da1e2009-10-06 11:31:08 -07001845 err = inode_change_ok(inode, attr);
1846 if (err != 0)
1847 return err;
1848
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001849 prealloc_cf = ceph_alloc_cap_flush();
1850 if (!prealloc_cf)
1851 return -ENOMEM;
1852
Sage Weil355da1e2009-10-06 11:31:08 -07001853 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETATTR,
1854 USE_AUTH_MDS);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001855 if (IS_ERR(req)) {
1856 ceph_free_cap_flush(prealloc_cf);
Sage Weil355da1e2009-10-06 11:31:08 -07001857 return PTR_ERR(req);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001858 }
Sage Weil355da1e2009-10-06 11:31:08 -07001859
Sage Weilbe655592011-11-30 09:47:09 -08001860 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001861 issued = __ceph_caps_issued(ci, NULL);
Yan, Zheng604d1b02015-05-01 17:49:16 +08001862
1863 if (!ci->i_head_snapc &&
1864 (issued & (CEPH_CAP_ANY_EXCL | CEPH_CAP_FILE_WR))) {
1865 lock_snap_rwsem = true;
1866 if (!down_read_trylock(&mdsc->snap_rwsem)) {
1867 spin_unlock(&ci->i_ceph_lock);
1868 down_read(&mdsc->snap_rwsem);
1869 spin_lock(&ci->i_ceph_lock);
1870 issued = __ceph_caps_issued(ci, NULL);
1871 }
1872 }
1873
Sage Weil355da1e2009-10-06 11:31:08 -07001874 dout("setattr %p issued %s\n", inode, ceph_cap_string(issued));
1875
1876 if (ia_valid & ATTR_UID) {
1877 dout("setattr %p uid %d -> %d\n", inode,
Eric W. Biedermanbd2bae62013-01-31 04:05:39 -08001878 from_kuid(&init_user_ns, inode->i_uid),
1879 from_kuid(&init_user_ns, attr->ia_uid));
Sage Weil355da1e2009-10-06 11:31:08 -07001880 if (issued & CEPH_CAP_AUTH_EXCL) {
1881 inode->i_uid = attr->ia_uid;
1882 dirtied |= CEPH_CAP_AUTH_EXCL;
1883 } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
Eric W. Biedermanab871b92013-01-31 03:40:12 -08001884 !uid_eq(attr->ia_uid, inode->i_uid)) {
1885 req->r_args.setattr.uid = cpu_to_le32(
1886 from_kuid(&init_user_ns, attr->ia_uid));
Sage Weil355da1e2009-10-06 11:31:08 -07001887 mask |= CEPH_SETATTR_UID;
1888 release |= CEPH_CAP_AUTH_SHARED;
1889 }
1890 }
1891 if (ia_valid & ATTR_GID) {
1892 dout("setattr %p gid %d -> %d\n", inode,
Eric W. Biedermanbd2bae62013-01-31 04:05:39 -08001893 from_kgid(&init_user_ns, inode->i_gid),
1894 from_kgid(&init_user_ns, attr->ia_gid));
Sage Weil355da1e2009-10-06 11:31:08 -07001895 if (issued & CEPH_CAP_AUTH_EXCL) {
1896 inode->i_gid = attr->ia_gid;
1897 dirtied |= CEPH_CAP_AUTH_EXCL;
1898 } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
Eric W. Biedermanab871b92013-01-31 03:40:12 -08001899 !gid_eq(attr->ia_gid, inode->i_gid)) {
1900 req->r_args.setattr.gid = cpu_to_le32(
1901 from_kgid(&init_user_ns, attr->ia_gid));
Sage Weil355da1e2009-10-06 11:31:08 -07001902 mask |= CEPH_SETATTR_GID;
1903 release |= CEPH_CAP_AUTH_SHARED;
1904 }
1905 }
1906 if (ia_valid & ATTR_MODE) {
1907 dout("setattr %p mode 0%o -> 0%o\n", inode, inode->i_mode,
1908 attr->ia_mode);
1909 if (issued & CEPH_CAP_AUTH_EXCL) {
1910 inode->i_mode = attr->ia_mode;
1911 dirtied |= CEPH_CAP_AUTH_EXCL;
1912 } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
1913 attr->ia_mode != inode->i_mode) {
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001914 inode->i_mode = attr->ia_mode;
Sage Weil355da1e2009-10-06 11:31:08 -07001915 req->r_args.setattr.mode = cpu_to_le32(attr->ia_mode);
1916 mask |= CEPH_SETATTR_MODE;
1917 release |= CEPH_CAP_AUTH_SHARED;
1918 }
1919 }
1920
1921 if (ia_valid & ATTR_ATIME) {
1922 dout("setattr %p atime %ld.%ld -> %ld.%ld\n", inode,
1923 inode->i_atime.tv_sec, inode->i_atime.tv_nsec,
1924 attr->ia_atime.tv_sec, attr->ia_atime.tv_nsec);
1925 if (issued & CEPH_CAP_FILE_EXCL) {
1926 ci->i_time_warp_seq++;
1927 inode->i_atime = attr->ia_atime;
1928 dirtied |= CEPH_CAP_FILE_EXCL;
1929 } else if ((issued & CEPH_CAP_FILE_WR) &&
1930 timespec_compare(&inode->i_atime,
1931 &attr->ia_atime) < 0) {
1932 inode->i_atime = attr->ia_atime;
1933 dirtied |= CEPH_CAP_FILE_WR;
1934 } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
1935 !timespec_equal(&inode->i_atime, &attr->ia_atime)) {
1936 ceph_encode_timespec(&req->r_args.setattr.atime,
1937 &attr->ia_atime);
1938 mask |= CEPH_SETATTR_ATIME;
1939 release |= CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_RD |
1940 CEPH_CAP_FILE_WR;
1941 }
1942 }
1943 if (ia_valid & ATTR_MTIME) {
1944 dout("setattr %p mtime %ld.%ld -> %ld.%ld\n", inode,
1945 inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
1946 attr->ia_mtime.tv_sec, attr->ia_mtime.tv_nsec);
1947 if (issued & CEPH_CAP_FILE_EXCL) {
1948 ci->i_time_warp_seq++;
1949 inode->i_mtime = attr->ia_mtime;
1950 dirtied |= CEPH_CAP_FILE_EXCL;
1951 } else if ((issued & CEPH_CAP_FILE_WR) &&
1952 timespec_compare(&inode->i_mtime,
1953 &attr->ia_mtime) < 0) {
1954 inode->i_mtime = attr->ia_mtime;
1955 dirtied |= CEPH_CAP_FILE_WR;
1956 } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
1957 !timespec_equal(&inode->i_mtime, &attr->ia_mtime)) {
1958 ceph_encode_timespec(&req->r_args.setattr.mtime,
1959 &attr->ia_mtime);
1960 mask |= CEPH_SETATTR_MTIME;
1961 release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_RD |
1962 CEPH_CAP_FILE_WR;
1963 }
1964 }
1965 if (ia_valid & ATTR_SIZE) {
1966 dout("setattr %p size %lld -> %lld\n", inode,
1967 inode->i_size, attr->ia_size);
Sage Weil355da1e2009-10-06 11:31:08 -07001968 if ((issued & CEPH_CAP_FILE_EXCL) &&
1969 attr->ia_size > inode->i_size) {
Yan, Zheng99c88e62015-12-30 11:32:46 +08001970 i_size_write(inode, attr->ia_size);
Sage Weil355da1e2009-10-06 11:31:08 -07001971 inode->i_blocks =
1972 (attr->ia_size + (1 << 9) - 1) >> 9;
1973 inode->i_ctime = attr->ia_ctime;
1974 ci->i_reported_size = attr->ia_size;
1975 dirtied |= CEPH_CAP_FILE_EXCL;
1976 } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
1977 attr->ia_size != inode->i_size) {
1978 req->r_args.setattr.size = cpu_to_le64(attr->ia_size);
1979 req->r_args.setattr.old_size =
1980 cpu_to_le64(inode->i_size);
1981 mask |= CEPH_SETATTR_SIZE;
1982 release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_RD |
1983 CEPH_CAP_FILE_WR;
1984 }
1985 }
1986
1987 /* these do nothing */
1988 if (ia_valid & ATTR_CTIME) {
1989 bool only = (ia_valid & (ATTR_SIZE|ATTR_MTIME|ATTR_ATIME|
1990 ATTR_MODE|ATTR_UID|ATTR_GID)) == 0;
1991 dout("setattr %p ctime %ld.%ld -> %ld.%ld (%s)\n", inode,
1992 inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
1993 attr->ia_ctime.tv_sec, attr->ia_ctime.tv_nsec,
1994 only ? "ctime only" : "ignored");
1995 inode->i_ctime = attr->ia_ctime;
1996 if (only) {
1997 /*
1998 * if kernel wants to dirty ctime but nothing else,
1999 * we need to choose a cap to dirty under, or do
2000 * a almost-no-op setattr
2001 */
2002 if (issued & CEPH_CAP_AUTH_EXCL)
2003 dirtied |= CEPH_CAP_AUTH_EXCL;
2004 else if (issued & CEPH_CAP_FILE_EXCL)
2005 dirtied |= CEPH_CAP_FILE_EXCL;
2006 else if (issued & CEPH_CAP_XATTR_EXCL)
2007 dirtied |= CEPH_CAP_XATTR_EXCL;
2008 else
2009 mask |= CEPH_SETATTR_CTIME;
2010 }
2011 }
2012 if (ia_valid & ATTR_FILE)
2013 dout("setattr %p ATTR_FILE ... hrm!\n", inode);
2014
2015 if (dirtied) {
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08002016 inode_dirty_flags = __ceph_mark_dirty_caps(ci, dirtied,
2017 &prealloc_cf);
Deepa Dinamani8bbd4712016-02-02 22:07:48 -08002018 inode->i_ctime = current_fs_time(inode->i_sb);
Sage Weil355da1e2009-10-06 11:31:08 -07002019 }
2020
2021 release &= issued;
Sage Weilbe655592011-11-30 09:47:09 -08002022 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng604d1b02015-05-01 17:49:16 +08002023 if (lock_snap_rwsem)
2024 up_read(&mdsc->snap_rwsem);
Sage Weil355da1e2009-10-06 11:31:08 -07002025
Sage Weilfca65b42011-05-04 11:33:47 -07002026 if (inode_dirty_flags)
2027 __mark_inode_dirty(inode, inode_dirty_flags);
2028
Guangliang Zhao7221fe42013-11-11 15:18:03 +08002029 if (ia_valid & ATTR_MODE) {
Linus Torvalds4db658e2014-01-28 18:06:18 -08002030 err = posix_acl_chmod(inode, attr->ia_mode);
Guangliang Zhao7221fe42013-11-11 15:18:03 +08002031 if (err)
2032 goto out_put;
2033 }
2034
Sage Weil355da1e2009-10-06 11:31:08 -07002035 if (mask) {
Sage Weil70b666c2011-05-27 09:24:26 -07002036 req->r_inode = inode;
2037 ihold(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07002038 req->r_inode_drop = release;
2039 req->r_args.setattr.mask = cpu_to_le32(mask);
2040 req->r_num_caps = 1;
Sage Weil752c8bd2013-02-05 13:52:29 -08002041 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil355da1e2009-10-06 11:31:08 -07002042 }
2043 dout("setattr %p result=%d (%s locally, %d remote)\n", inode, err,
2044 ceph_cap_string(dirtied), mask);
2045
2046 ceph_mdsc_put_request(req);
Yan, Zhengb0d7c222013-08-12 21:42:15 -07002047 if (mask & CEPH_SETATTR_SIZE)
2048 __ceph_do_pending_vmtruncate(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08002049 ceph_free_cap_flush(prealloc_cf);
Sage Weil355da1e2009-10-06 11:31:08 -07002050 return err;
Guangliang Zhao7221fe42013-11-11 15:18:03 +08002051out_put:
Sage Weil355da1e2009-10-06 11:31:08 -07002052 ceph_mdsc_put_request(req);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08002053 ceph_free_cap_flush(prealloc_cf);
Sage Weil355da1e2009-10-06 11:31:08 -07002054 return err;
2055}
2056
2057/*
2058 * Verify that we have a lease on the given mask. If not,
2059 * do a getattr against an mds.
2060 */
Yan, Zheng01deead2014-11-14 21:56:29 +08002061int __ceph_do_getattr(struct inode *inode, struct page *locked_page,
2062 int mask, bool force)
Sage Weil355da1e2009-10-06 11:31:08 -07002063{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002064 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
2065 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil355da1e2009-10-06 11:31:08 -07002066 struct ceph_mds_request *req;
2067 int err;
2068
2069 if (ceph_snap(inode) == CEPH_SNAPDIR) {
2070 dout("do_getattr inode %p SNAPDIR\n", inode);
2071 return 0;
2072 }
2073
Yan, Zheng01deead2014-11-14 21:56:29 +08002074 dout("do_getattr inode %p mask %s mode 0%o\n",
2075 inode, ceph_cap_string(mask), inode->i_mode);
Yan, Zheng508b32d2014-09-16 21:46:17 +08002076 if (!force && ceph_caps_issued_mask(ceph_inode(inode), mask, 1))
Sage Weil355da1e2009-10-06 11:31:08 -07002077 return 0;
2078
2079 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
2080 if (IS_ERR(req))
2081 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -07002082 req->r_inode = inode;
2083 ihold(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07002084 req->r_num_caps = 1;
2085 req->r_args.getattr.mask = cpu_to_le32(mask);
Yan, Zheng01deead2014-11-14 21:56:29 +08002086 req->r_locked_page = locked_page;
Sage Weil355da1e2009-10-06 11:31:08 -07002087 err = ceph_mdsc_do_request(mdsc, NULL, req);
Yan, Zheng01deead2014-11-14 21:56:29 +08002088 if (locked_page && err == 0) {
2089 u64 inline_version = req->r_reply_info.targeti.inline_version;
2090 if (inline_version == 0) {
2091 /* the reply is supposed to contain inline data */
2092 err = -EINVAL;
2093 } else if (inline_version == CEPH_INLINE_NONE) {
2094 err = -ENODATA;
2095 } else {
2096 err = req->r_reply_info.targeti.inline_len;
2097 }
2098 }
Sage Weil355da1e2009-10-06 11:31:08 -07002099 ceph_mdsc_put_request(req);
2100 dout("do_getattr result=%d\n", err);
2101 return err;
2102}
2103
2104
2105/*
2106 * Check inode permissions. We verify we have a valid value for
2107 * the AUTH cap, then call the generic handler.
2108 */
Al Viro10556cb22011-06-20 19:28:19 -04002109int ceph_permission(struct inode *inode, int mask)
Sage Weil355da1e2009-10-06 11:31:08 -07002110{
Nick Pigginb74c79e2011-01-07 17:49:58 +11002111 int err;
2112
Al Viro10556cb22011-06-20 19:28:19 -04002113 if (mask & MAY_NOT_BLOCK)
Nick Pigginb74c79e2011-01-07 17:49:58 +11002114 return -ECHILD;
2115
Yan, Zheng508b32d2014-09-16 21:46:17 +08002116 err = ceph_do_getattr(inode, CEPH_CAP_AUTH_SHARED, false);
Sage Weil355da1e2009-10-06 11:31:08 -07002117
2118 if (!err)
Al Viro2830ba72011-06-20 19:16:29 -04002119 err = generic_permission(inode, mask);
Sage Weil355da1e2009-10-06 11:31:08 -07002120 return err;
2121}
2122
2123/*
2124 * Get all attributes. Hopefully somedata we'll have a statlite()
2125 * and can limit the fields we require to be accurate.
2126 */
2127int ceph_getattr(struct vfsmount *mnt, struct dentry *dentry,
2128 struct kstat *stat)
2129{
David Howells2b0143b2015-03-17 22:25:59 +00002130 struct inode *inode = d_inode(dentry);
Sage Weil232d4b02009-10-21 11:21:49 -07002131 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07002132 int err;
2133
Yan, Zheng508b32d2014-09-16 21:46:17 +08002134 err = ceph_do_getattr(inode, CEPH_STAT_CAP_INODE_ALL, false);
Sage Weil355da1e2009-10-06 11:31:08 -07002135 if (!err) {
2136 generic_fillattr(inode, stat);
Yehuda Sadehad1fee92011-01-21 16:44:03 -08002137 stat->ino = ceph_translate_ino(inode->i_sb, inode->i_ino);
Sage Weil355da1e2009-10-06 11:31:08 -07002138 if (ceph_snap(inode) != CEPH_NOSNAP)
2139 stat->dev = ceph_snap(inode);
2140 else
2141 stat->dev = 0;
Sage Weil232d4b02009-10-21 11:21:49 -07002142 if (S_ISDIR(inode->i_mode)) {
Yehuda Sadeh1c1266b2011-01-12 16:53:27 -08002143 if (ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb),
2144 RBYTES))
2145 stat->size = ci->i_rbytes;
2146 else
2147 stat->size = ci->i_files + ci->i_subdirs;
Sage Weil232d4b02009-10-21 11:21:49 -07002148 stat->blocks = 0;
Sage Weil355da1e2009-10-06 11:31:08 -07002149 stat->blksize = 65536;
Sage Weil232d4b02009-10-21 11:21:49 -07002150 }
Sage Weil355da1e2009-10-06 11:31:08 -07002151 }
2152 return err;
2153}