1 #include <linux/ceph/ceph_debug.h>
3 #include <linux/module.h>
5 #include <linux/slab.h>
6 #include <linux/string.h>
7 #include <linux/uaccess.h>
8 #include <linux/kernel.h>
9 #include <linux/namei.h>
10 #include <linux/writeback.h>
11 #include <linux/vmalloc.h>
12 #include <linux/pagevec.h>
15 #include "mds_client.h"
16 #include <linux/ceph/decode.h>
19 * Ceph inode operations
21 * Implement basic inode helpers (get, alloc) and inode ops (getattr,
22 * setattr, etc.), xattr helpers, and helpers for assimilating
23 * metadata returned by the MDS into our cache.
25 * Also define helpers for doing asynchronous writeback, invalidation,
26 * and truncation for the benefit of those who can't afford to block
27 * (typically because they are in the message handler path).
30 static const struct inode_operations ceph_symlink_iops
;
32 static void ceph_invalidate_work(struct work_struct
*work
);
33 static void ceph_writeback_work(struct work_struct
*work
);
34 static void ceph_vmtruncate_work(struct work_struct
*work
);
37 * find or create an inode, given the ceph ino number
39 static int ceph_set_ino_cb(struct inode
*inode
, void *data
)
41 ceph_inode(inode
)->i_vino
= *(struct ceph_vino
*)data
;
42 inode
->i_ino
= ceph_vino_to_ino(*(struct ceph_vino
*)data
);
46 struct inode
*ceph_get_inode(struct super_block
*sb
, struct ceph_vino vino
)
49 ino_t t
= ceph_vino_to_ino(vino
);
51 inode
= iget5_locked(sb
, t
, ceph_ino_compare
, ceph_set_ino_cb
, &vino
);
53 return ERR_PTR(-ENOMEM
);
54 if (inode
->i_state
& I_NEW
) {
55 dout("get_inode created new inode %p %llx.%llx ino %llx\n",
56 inode
, ceph_vinop(inode
), (u64
)inode
->i_ino
);
57 unlock_new_inode(inode
);
60 dout("get_inode on %lu=%llx.%llx got %p\n", inode
->i_ino
, vino
.ino
,
66 * get/constuct snapdir inode for a given directory
68 struct inode
*ceph_get_snapdir(struct inode
*parent
)
70 struct ceph_vino vino
= {
71 .ino
= ceph_ino(parent
),
74 struct inode
*inode
= ceph_get_inode(parent
->i_sb
, vino
);
75 struct ceph_inode_info
*ci
= ceph_inode(inode
);
77 BUG_ON(!S_ISDIR(parent
->i_mode
));
80 inode
->i_mode
= parent
->i_mode
;
81 inode
->i_uid
= parent
->i_uid
;
82 inode
->i_gid
= parent
->i_gid
;
83 inode
->i_op
= &ceph_dir_iops
;
84 inode
->i_fop
= &ceph_dir_fops
;
85 ci
->i_snap_caps
= CEPH_CAP_PIN
; /* so we can open */
90 const struct inode_operations ceph_file_iops
= {
91 .permission
= ceph_permission
,
92 .setattr
= ceph_setattr
,
93 .getattr
= ceph_getattr
,
94 .setxattr
= ceph_setxattr
,
95 .getxattr
= ceph_getxattr
,
96 .listxattr
= ceph_listxattr
,
97 .removexattr
= ceph_removexattr
,
102 * We use a 'frag tree' to keep track of the MDS's directory fragments
103 * for a given inode (usually there is just a single fragment). We
104 * need to know when a child frag is delegated to a new MDS, or when
105 * it is flagged as replicated, so we can direct our requests
110 * find/create a frag in the tree
112 static struct ceph_inode_frag
*__get_or_create_frag(struct ceph_inode_info
*ci
,
116 struct rb_node
*parent
= NULL
;
117 struct ceph_inode_frag
*frag
;
120 p
= &ci
->i_fragtree
.rb_node
;
123 frag
= rb_entry(parent
, struct ceph_inode_frag
, node
);
124 c
= ceph_frag_compare(f
, frag
->frag
);
133 frag
= kmalloc(sizeof(*frag
), GFP_NOFS
);
135 pr_err("__get_or_create_frag ENOMEM on %p %llx.%llx "
136 "frag %x\n", &ci
->vfs_inode
,
137 ceph_vinop(&ci
->vfs_inode
), f
);
138 return ERR_PTR(-ENOMEM
);
145 rb_link_node(&frag
->node
, parent
, p
);
146 rb_insert_color(&frag
->node
, &ci
->i_fragtree
);
148 dout("get_or_create_frag added %llx.%llx frag %x\n",
149 ceph_vinop(&ci
->vfs_inode
), f
);
154 * find a specific frag @f
156 struct ceph_inode_frag
*__ceph_find_frag(struct ceph_inode_info
*ci
, u32 f
)
158 struct rb_node
*n
= ci
->i_fragtree
.rb_node
;
161 struct ceph_inode_frag
*frag
=
162 rb_entry(n
, struct ceph_inode_frag
, node
);
163 int c
= ceph_frag_compare(f
, frag
->frag
);
175 * Choose frag containing the given value @v. If @pfrag is
176 * specified, copy the frag delegation info to the caller if
179 u32
ceph_choose_frag(struct ceph_inode_info
*ci
, u32 v
,
180 struct ceph_inode_frag
*pfrag
,
183 u32 t
= ceph_frag_make(0, 0);
184 struct ceph_inode_frag
*frag
;
191 mutex_lock(&ci
->i_fragtree_mutex
);
193 WARN_ON(!ceph_frag_contains_value(t
, v
));
194 frag
= __ceph_find_frag(ci
, t
);
196 break; /* t is a leaf */
197 if (frag
->split_by
== 0) {
199 memcpy(pfrag
, frag
, sizeof(*pfrag
));
206 nway
= 1 << frag
->split_by
;
207 dout("choose_frag(%x) %x splits by %d (%d ways)\n", v
, t
,
208 frag
->split_by
, nway
);
209 for (i
= 0; i
< nway
; i
++) {
210 n
= ceph_frag_make_child(t
, frag
->split_by
, i
);
211 if (ceph_frag_contains_value(n
, v
)) {
218 dout("choose_frag(%x) = %x\n", v
, t
);
220 mutex_unlock(&ci
->i_fragtree_mutex
);
225 * Process dirfrag (delegation) info from the mds. Include leaf
226 * fragment in tree ONLY if ndist > 0. Otherwise, only
227 * branches/splits are included in i_fragtree)
229 static int ceph_fill_dirfrag(struct inode
*inode
,
230 struct ceph_mds_reply_dirfrag
*dirinfo
)
232 struct ceph_inode_info
*ci
= ceph_inode(inode
);
233 struct ceph_inode_frag
*frag
;
234 u32 id
= le32_to_cpu(dirinfo
->frag
);
235 int mds
= le32_to_cpu(dirinfo
->auth
);
236 int ndist
= le32_to_cpu(dirinfo
->ndist
);
240 mutex_lock(&ci
->i_fragtree_mutex
);
242 /* no delegation info needed. */
243 frag
= __ceph_find_frag(ci
, id
);
246 if (frag
->split_by
== 0) {
247 /* tree leaf, remove */
248 dout("fill_dirfrag removed %llx.%llx frag %x"
249 " (no ref)\n", ceph_vinop(inode
), id
);
250 rb_erase(&frag
->node
, &ci
->i_fragtree
);
253 /* tree branch, keep and clear */
254 dout("fill_dirfrag cleared %llx.%llx frag %x"
255 " referral\n", ceph_vinop(inode
), id
);
263 /* find/add this frag to store mds delegation info */
264 frag
= __get_or_create_frag(ci
, id
);
266 /* this is not the end of the world; we can continue
267 with bad/inaccurate delegation info */
268 pr_err("fill_dirfrag ENOMEM on mds ref %llx.%llx fg %x\n",
269 ceph_vinop(inode
), le32_to_cpu(dirinfo
->frag
));
275 frag
->ndist
= min_t(u32
, ndist
, CEPH_MAX_DIRFRAG_REP
);
276 for (i
= 0; i
< frag
->ndist
; i
++)
277 frag
->dist
[i
] = le32_to_cpu(dirinfo
->dist
[i
]);
278 dout("fill_dirfrag %llx.%llx frag %x ndist=%d\n",
279 ceph_vinop(inode
), frag
->frag
, frag
->ndist
);
282 mutex_unlock(&ci
->i_fragtree_mutex
);
288 * initialize a newly allocated inode.
290 struct inode
*ceph_alloc_inode(struct super_block
*sb
)
292 struct ceph_inode_info
*ci
;
295 ci
= kmem_cache_alloc(ceph_inode_cachep
, GFP_NOFS
);
299 dout("alloc_inode %p\n", &ci
->vfs_inode
);
302 ci
->i_time_warp_seq
= 0;
303 ci
->i_ceph_flags
= 0;
304 ci
->i_release_count
= 0;
305 ci
->i_symlink
= NULL
;
307 memset(&ci
->i_dir_layout
, 0, sizeof(ci
->i_dir_layout
));
309 ci
->i_fragtree
= RB_ROOT
;
310 mutex_init(&ci
->i_fragtree_mutex
);
312 ci
->i_xattrs
.blob
= NULL
;
313 ci
->i_xattrs
.prealloc_blob
= NULL
;
314 ci
->i_xattrs
.dirty
= false;
315 ci
->i_xattrs
.index
= RB_ROOT
;
316 ci
->i_xattrs
.count
= 0;
317 ci
->i_xattrs
.names_size
= 0;
318 ci
->i_xattrs
.vals_size
= 0;
319 ci
->i_xattrs
.version
= 0;
320 ci
->i_xattrs
.index_version
= 0;
322 ci
->i_caps
= RB_ROOT
;
323 ci
->i_auth_cap
= NULL
;
324 ci
->i_dirty_caps
= 0;
325 ci
->i_flushing_caps
= 0;
326 INIT_LIST_HEAD(&ci
->i_dirty_item
);
327 INIT_LIST_HEAD(&ci
->i_flushing_item
);
328 ci
->i_cap_flush_seq
= 0;
329 ci
->i_cap_flush_last_tid
= 0;
330 memset(&ci
->i_cap_flush_tid
, 0, sizeof(ci
->i_cap_flush_tid
));
331 init_waitqueue_head(&ci
->i_cap_wq
);
332 ci
->i_hold_caps_min
= 0;
333 ci
->i_hold_caps_max
= 0;
334 INIT_LIST_HEAD(&ci
->i_cap_delay_list
);
335 ci
->i_cap_exporting_mds
= 0;
336 ci
->i_cap_exporting_mseq
= 0;
337 ci
->i_cap_exporting_issued
= 0;
338 INIT_LIST_HEAD(&ci
->i_cap_snaps
);
339 ci
->i_head_snapc
= NULL
;
342 for (i
= 0; i
< CEPH_FILE_MODE_NUM
; i
++)
343 ci
->i_nr_by_mode
[i
] = 0;
345 ci
->i_truncate_seq
= 0;
346 ci
->i_truncate_size
= 0;
347 ci
->i_truncate_pending
= 0;
350 ci
->i_reported_size
= 0;
351 ci
->i_wanted_max_size
= 0;
352 ci
->i_requested_max_size
= 0;
356 ci
->i_rdcache_ref
= 0;
359 ci
->i_wrbuffer_ref
= 0;
360 ci
->i_wrbuffer_ref_head
= 0;
361 ci
->i_shared_gen
= 0;
362 ci
->i_rdcache_gen
= 0;
363 ci
->i_rdcache_revoking
= 0;
365 INIT_LIST_HEAD(&ci
->i_unsafe_writes
);
366 INIT_LIST_HEAD(&ci
->i_unsafe_dirops
);
367 spin_lock_init(&ci
->i_unsafe_lock
);
369 ci
->i_snap_realm
= NULL
;
370 INIT_LIST_HEAD(&ci
->i_snap_realm_item
);
371 INIT_LIST_HEAD(&ci
->i_snap_flush_item
);
373 INIT_WORK(&ci
->i_wb_work
, ceph_writeback_work
);
374 INIT_WORK(&ci
->i_pg_inv_work
, ceph_invalidate_work
);
376 INIT_WORK(&ci
->i_vmtruncate_work
, ceph_vmtruncate_work
);
378 return &ci
->vfs_inode
;
381 static void ceph_i_callback(struct rcu_head
*head
)
383 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
384 struct ceph_inode_info
*ci
= ceph_inode(inode
);
386 INIT_LIST_HEAD(&inode
->i_dentry
);
387 kmem_cache_free(ceph_inode_cachep
, ci
);
390 void ceph_destroy_inode(struct inode
*inode
)
392 struct ceph_inode_info
*ci
= ceph_inode(inode
);
393 struct ceph_inode_frag
*frag
;
396 dout("destroy_inode %p ino %llx.%llx\n", inode
, ceph_vinop(inode
));
398 ceph_queue_caps_release(inode
);
401 * we may still have a snap_realm reference if there are stray
402 * caps in i_cap_exporting_issued or i_snap_caps.
404 if (ci
->i_snap_realm
) {
405 struct ceph_mds_client
*mdsc
=
406 ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
;
407 struct ceph_snap_realm
*realm
= ci
->i_snap_realm
;
409 dout(" dropping residual ref to snap realm %p\n", realm
);
410 spin_lock(&realm
->inodes_with_caps_lock
);
411 list_del_init(&ci
->i_snap_realm_item
);
412 spin_unlock(&realm
->inodes_with_caps_lock
);
413 ceph_put_snap_realm(mdsc
, realm
);
416 kfree(ci
->i_symlink
);
417 while ((n
= rb_first(&ci
->i_fragtree
)) != NULL
) {
418 frag
= rb_entry(n
, struct ceph_inode_frag
, node
);
419 rb_erase(n
, &ci
->i_fragtree
);
423 __ceph_destroy_xattrs(ci
);
424 if (ci
->i_xattrs
.blob
)
425 ceph_buffer_put(ci
->i_xattrs
.blob
);
426 if (ci
->i_xattrs
.prealloc_blob
)
427 ceph_buffer_put(ci
->i_xattrs
.prealloc_blob
);
429 call_rcu(&inode
->i_rcu
, ceph_i_callback
);
434 * Helpers to fill in size, ctime, mtime, and atime. We have to be
435 * careful because either the client or MDS may have more up to date
436 * info, depending on which capabilities are held, and whether
437 * time_warp_seq or truncate_seq have increased. (Ordinarily, mtime
438 * and size are monotonically increasing, except when utimes() or
439 * truncate() increments the corresponding _seq values.)
441 int ceph_fill_file_size(struct inode
*inode
, int issued
,
442 u32 truncate_seq
, u64 truncate_size
, u64 size
)
444 struct ceph_inode_info
*ci
= ceph_inode(inode
);
447 if (ceph_seq_cmp(truncate_seq
, ci
->i_truncate_seq
) > 0 ||
448 (truncate_seq
== ci
->i_truncate_seq
&& size
> inode
->i_size
)) {
449 dout("size %lld -> %llu\n", inode
->i_size
, size
);
450 inode
->i_size
= size
;
451 inode
->i_blocks
= (size
+ (1<<9) - 1) >> 9;
452 ci
->i_reported_size
= size
;
453 if (truncate_seq
!= ci
->i_truncate_seq
) {
454 dout("truncate_seq %u -> %u\n",
455 ci
->i_truncate_seq
, truncate_seq
);
456 ci
->i_truncate_seq
= truncate_seq
;
458 * If we hold relevant caps, or in the case where we're
459 * not the only client referencing this file and we
460 * don't hold those caps, then we need to check whether
461 * the file is either opened or mmaped
463 if ((issued
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_RD
|
464 CEPH_CAP_FILE_WR
|CEPH_CAP_FILE_BUFFER
|
466 CEPH_CAP_FILE_LAZYIO
)) ||
467 mapping_mapped(inode
->i_mapping
) ||
468 __ceph_caps_file_wanted(ci
)) {
469 ci
->i_truncate_pending
++;
474 if (ceph_seq_cmp(truncate_seq
, ci
->i_truncate_seq
) >= 0 &&
475 ci
->i_truncate_size
!= truncate_size
) {
476 dout("truncate_size %lld -> %llu\n", ci
->i_truncate_size
,
478 ci
->i_truncate_size
= truncate_size
;
483 void ceph_fill_file_time(struct inode
*inode
, int issued
,
484 u64 time_warp_seq
, struct timespec
*ctime
,
485 struct timespec
*mtime
, struct timespec
*atime
)
487 struct ceph_inode_info
*ci
= ceph_inode(inode
);
490 if (issued
& (CEPH_CAP_FILE_EXCL
|
492 CEPH_CAP_FILE_BUFFER
|
494 CEPH_CAP_XATTR_EXCL
)) {
495 if (timespec_compare(ctime
, &inode
->i_ctime
) > 0) {
496 dout("ctime %ld.%09ld -> %ld.%09ld inc w/ cap\n",
497 inode
->i_ctime
.tv_sec
, inode
->i_ctime
.tv_nsec
,
498 ctime
->tv_sec
, ctime
->tv_nsec
);
499 inode
->i_ctime
= *ctime
;
501 if (ceph_seq_cmp(time_warp_seq
, ci
->i_time_warp_seq
) > 0) {
502 /* the MDS did a utimes() */
503 dout("mtime %ld.%09ld -> %ld.%09ld "
505 inode
->i_mtime
.tv_sec
, inode
->i_mtime
.tv_nsec
,
506 mtime
->tv_sec
, mtime
->tv_nsec
,
507 ci
->i_time_warp_seq
, (int)time_warp_seq
);
509 inode
->i_mtime
= *mtime
;
510 inode
->i_atime
= *atime
;
511 ci
->i_time_warp_seq
= time_warp_seq
;
512 } else if (time_warp_seq
== ci
->i_time_warp_seq
) {
513 /* nobody did utimes(); take the max */
514 if (timespec_compare(mtime
, &inode
->i_mtime
) > 0) {
515 dout("mtime %ld.%09ld -> %ld.%09ld inc\n",
516 inode
->i_mtime
.tv_sec
,
517 inode
->i_mtime
.tv_nsec
,
518 mtime
->tv_sec
, mtime
->tv_nsec
);
519 inode
->i_mtime
= *mtime
;
521 if (timespec_compare(atime
, &inode
->i_atime
) > 0) {
522 dout("atime %ld.%09ld -> %ld.%09ld inc\n",
523 inode
->i_atime
.tv_sec
,
524 inode
->i_atime
.tv_nsec
,
525 atime
->tv_sec
, atime
->tv_nsec
);
526 inode
->i_atime
= *atime
;
528 } else if (issued
& CEPH_CAP_FILE_EXCL
) {
529 /* we did a utimes(); ignore mds values */
534 /* we have no write|excl caps; whatever the MDS says is true */
535 if (ceph_seq_cmp(time_warp_seq
, ci
->i_time_warp_seq
) >= 0) {
536 inode
->i_ctime
= *ctime
;
537 inode
->i_mtime
= *mtime
;
538 inode
->i_atime
= *atime
;
539 ci
->i_time_warp_seq
= time_warp_seq
;
544 if (warn
) /* time_warp_seq shouldn't go backwards */
545 dout("%p mds time_warp_seq %llu < %u\n",
546 inode
, time_warp_seq
, ci
->i_time_warp_seq
);
550 * Populate an inode based on info from mds. May be called on new or
553 static int fill_inode(struct inode
*inode
,
554 struct ceph_mds_reply_info_in
*iinfo
,
555 struct ceph_mds_reply_dirfrag
*dirinfo
,
556 struct ceph_mds_session
*session
,
557 unsigned long ttl_from
, int cap_fmode
,
558 struct ceph_cap_reservation
*caps_reservation
)
560 struct ceph_mds_reply_inode
*info
= iinfo
->in
;
561 struct ceph_inode_info
*ci
= ceph_inode(inode
);
563 int issued
, implemented
;
564 struct timespec mtime
, atime
, ctime
;
566 struct ceph_buffer
*xattr_blob
= NULL
;
570 dout("fill_inode %p ino %llx.%llx v %llu had %llu\n",
571 inode
, ceph_vinop(inode
), le64_to_cpu(info
->version
),
575 * prealloc xattr data, if it looks like we'll need it. only
576 * if len > 4 (meaning there are actually xattrs; the first 4
577 * bytes are the xattr count).
579 if (iinfo
->xattr_len
> 4) {
580 xattr_blob
= ceph_buffer_new(iinfo
->xattr_len
, GFP_NOFS
);
582 pr_err("fill_inode ENOMEM xattr blob %d bytes\n",
586 spin_lock(&inode
->i_lock
);
589 * provided version will be odd if inode value is projected,
590 * even if stable. skip the update if we have newer stable
591 * info (ours>=theirs, e.g. due to racing mds replies), unless
592 * we are getting projected (unstable) info (in which case the
593 * version is odd, and we want ours>theirs).
599 if (le64_to_cpu(info
->version
) > 0 &&
600 (ci
->i_version
& ~1) >= le64_to_cpu(info
->version
))
603 issued
= __ceph_caps_issued(ci
, &implemented
);
604 issued
|= implemented
| __ceph_caps_dirty(ci
);
607 ci
->i_version
= le64_to_cpu(info
->version
);
609 inode
->i_rdev
= le32_to_cpu(info
->rdev
);
611 if ((issued
& CEPH_CAP_AUTH_EXCL
) == 0) {
612 inode
->i_mode
= le32_to_cpu(info
->mode
);
613 inode
->i_uid
= le32_to_cpu(info
->uid
);
614 inode
->i_gid
= le32_to_cpu(info
->gid
);
615 dout("%p mode 0%o uid.gid %d.%d\n", inode
, inode
->i_mode
,
616 inode
->i_uid
, inode
->i_gid
);
619 if ((issued
& CEPH_CAP_LINK_EXCL
) == 0)
620 inode
->i_nlink
= le32_to_cpu(info
->nlink
);
622 /* be careful with mtime, atime, size */
623 ceph_decode_timespec(&atime
, &info
->atime
);
624 ceph_decode_timespec(&mtime
, &info
->mtime
);
625 ceph_decode_timespec(&ctime
, &info
->ctime
);
626 queue_trunc
= ceph_fill_file_size(inode
, issued
,
627 le32_to_cpu(info
->truncate_seq
),
628 le64_to_cpu(info
->truncate_size
),
629 le64_to_cpu(info
->size
));
630 ceph_fill_file_time(inode
, issued
,
631 le32_to_cpu(info
->time_warp_seq
),
632 &ctime
, &mtime
, &atime
);
634 /* only update max_size on auth cap */
635 if ((info
->cap
.flags
& CEPH_CAP_FLAG_AUTH
) &&
636 ci
->i_max_size
!= le64_to_cpu(info
->max_size
)) {
637 dout("max_size %lld -> %llu\n", ci
->i_max_size
,
638 le64_to_cpu(info
->max_size
));
639 ci
->i_max_size
= le64_to_cpu(info
->max_size
);
642 ci
->i_layout
= info
->layout
;
643 inode
->i_blkbits
= fls(le32_to_cpu(info
->layout
.fl_stripe_unit
)) - 1;
646 /* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
647 if ((issued
& CEPH_CAP_XATTR_EXCL
) == 0 &&
648 le64_to_cpu(info
->xattr_version
) > ci
->i_xattrs
.version
) {
649 if (ci
->i_xattrs
.blob
)
650 ceph_buffer_put(ci
->i_xattrs
.blob
);
651 ci
->i_xattrs
.blob
= xattr_blob
;
653 memcpy(ci
->i_xattrs
.blob
->vec
.iov_base
,
654 iinfo
->xattr_data
, iinfo
->xattr_len
);
655 ci
->i_xattrs
.version
= le64_to_cpu(info
->xattr_version
);
659 inode
->i_mapping
->a_ops
= &ceph_aops
;
660 inode
->i_mapping
->backing_dev_info
=
661 &ceph_sb_to_client(inode
->i_sb
)->backing_dev_info
;
663 switch (inode
->i_mode
& S_IFMT
) {
668 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
669 inode
->i_op
= &ceph_file_iops
;
672 inode
->i_op
= &ceph_file_iops
;
673 inode
->i_fop
= &ceph_file_fops
;
676 inode
->i_op
= &ceph_symlink_iops
;
677 if (!ci
->i_symlink
) {
678 int symlen
= iinfo
->symlink_len
;
681 BUG_ON(symlen
!= inode
->i_size
);
682 spin_unlock(&inode
->i_lock
);
685 sym
= kmalloc(symlen
+1, GFP_NOFS
);
688 memcpy(sym
, iinfo
->symlink
, symlen
);
691 spin_lock(&inode
->i_lock
);
695 kfree(sym
); /* lost a race */
699 inode
->i_op
= &ceph_dir_iops
;
700 inode
->i_fop
= &ceph_dir_fops
;
702 ci
->i_dir_layout
= iinfo
->dir_layout
;
704 ci
->i_files
= le64_to_cpu(info
->files
);
705 ci
->i_subdirs
= le64_to_cpu(info
->subdirs
);
706 ci
->i_rbytes
= le64_to_cpu(info
->rbytes
);
707 ci
->i_rfiles
= le64_to_cpu(info
->rfiles
);
708 ci
->i_rsubdirs
= le64_to_cpu(info
->rsubdirs
);
709 ceph_decode_timespec(&ci
->i_rctime
, &info
->rctime
);
711 /* set dir completion flag? */
712 if (ci
->i_files
== 0 && ci
->i_subdirs
== 0 &&
713 ceph_snap(inode
) == CEPH_NOSNAP
&&
714 (le32_to_cpu(info
->cap
.caps
) & CEPH_CAP_FILE_SHARED
) &&
715 (issued
& CEPH_CAP_FILE_EXCL
) == 0 &&
716 (ci
->i_ceph_flags
& CEPH_I_COMPLETE
) == 0) {
717 dout(" marking %p complete (empty)\n", inode
);
718 /* ci->i_ceph_flags |= CEPH_I_COMPLETE; */
719 ci
->i_max_offset
= 2;
723 pr_err("fill_inode %llx.%llx BAD mode 0%o\n",
724 ceph_vinop(inode
), inode
->i_mode
);
728 spin_unlock(&inode
->i_lock
);
730 /* queue truncate if we saw i_size decrease */
732 ceph_queue_vmtruncate(inode
);
734 /* populate frag tree */
735 /* FIXME: move me up, if/when version reflects fragtree changes */
736 nsplits
= le32_to_cpu(info
->fragtree
.nsplits
);
737 mutex_lock(&ci
->i_fragtree_mutex
);
738 for (i
= 0; i
< nsplits
; i
++) {
739 u32 id
= le32_to_cpu(info
->fragtree
.splits
[i
].frag
);
740 struct ceph_inode_frag
*frag
= __get_or_create_frag(ci
, id
);
744 frag
->split_by
= le32_to_cpu(info
->fragtree
.splits
[i
].by
);
745 dout(" frag %x split by %d\n", frag
->frag
, frag
->split_by
);
747 mutex_unlock(&ci
->i_fragtree_mutex
);
749 /* were we issued a capability? */
750 if (info
->cap
.caps
) {
751 if (ceph_snap(inode
) == CEPH_NOSNAP
) {
752 ceph_add_cap(inode
, session
,
753 le64_to_cpu(info
->cap
.cap_id
),
755 le32_to_cpu(info
->cap
.caps
),
756 le32_to_cpu(info
->cap
.wanted
),
757 le32_to_cpu(info
->cap
.seq
),
758 le32_to_cpu(info
->cap
.mseq
),
759 le64_to_cpu(info
->cap
.realm
),
763 spin_lock(&inode
->i_lock
);
764 dout(" %p got snap_caps %s\n", inode
,
765 ceph_cap_string(le32_to_cpu(info
->cap
.caps
)));
766 ci
->i_snap_caps
|= le32_to_cpu(info
->cap
.caps
);
768 __ceph_get_fmode(ci
, cap_fmode
);
769 spin_unlock(&inode
->i_lock
);
771 } else if (cap_fmode
>= 0) {
772 pr_warning("mds issued no caps on %llx.%llx\n",
774 __ceph_get_fmode(ci
, cap_fmode
);
777 /* update delegation info? */
779 ceph_fill_dirfrag(inode
, dirinfo
);
785 ceph_buffer_put(xattr_blob
);
790 * caller should hold session s_mutex.
792 static void update_dentry_lease(struct dentry
*dentry
,
793 struct ceph_mds_reply_lease
*lease
,
794 struct ceph_mds_session
*session
,
795 unsigned long from_time
)
797 struct ceph_dentry_info
*di
= ceph_dentry(dentry
);
798 long unsigned duration
= le32_to_cpu(lease
->duration_ms
);
799 long unsigned ttl
= from_time
+ (duration
* HZ
) / 1000;
800 long unsigned half_ttl
= from_time
+ (duration
* HZ
/ 2) / 1000;
803 /* only track leases on regular dentries */
804 if (dentry
->d_op
!= &ceph_dentry_ops
)
807 spin_lock(&dentry
->d_lock
);
808 dout("update_dentry_lease %p mask %d duration %lu ms ttl %lu\n",
809 dentry
, le16_to_cpu(lease
->mask
), duration
, ttl
);
811 /* make lease_rdcache_gen match directory */
812 dir
= dentry
->d_parent
->d_inode
;
813 di
->lease_shared_gen
= ceph_inode(dir
)->i_shared_gen
;
815 if (lease
->mask
== 0)
818 if (di
->lease_gen
== session
->s_cap_gen
&&
819 time_before(ttl
, dentry
->d_time
))
820 goto out_unlock
; /* we already have a newer lease. */
822 if (di
->lease_session
&& di
->lease_session
!= session
)
825 ceph_dentry_lru_touch(dentry
);
827 if (!di
->lease_session
)
828 di
->lease_session
= ceph_get_mds_session(session
);
829 di
->lease_gen
= session
->s_cap_gen
;
830 di
->lease_seq
= le32_to_cpu(lease
->seq
);
831 di
->lease_renew_after
= half_ttl
;
832 di
->lease_renew_from
= 0;
833 dentry
->d_time
= ttl
;
835 spin_unlock(&dentry
->d_lock
);
840 * Set dentry's directory position based on the current dir's max, and
841 * order it in d_subdirs, so that dcache_readdir behaves.
843 static void ceph_set_dentry_offset(struct dentry
*dn
)
845 struct dentry
*dir
= dn
->d_parent
;
846 struct inode
*inode
= dn
->d_parent
->d_inode
;
847 struct ceph_dentry_info
*di
;
851 di
= ceph_dentry(dn
);
853 spin_lock(&inode
->i_lock
);
854 if ((ceph_inode(inode
)->i_ceph_flags
& CEPH_I_COMPLETE
) == 0) {
855 spin_unlock(&inode
->i_lock
);
858 di
->offset
= ceph_inode(inode
)->i_max_offset
++;
859 spin_unlock(&inode
->i_lock
);
861 spin_lock(&dir
->d_lock
);
862 spin_lock_nested(&dn
->d_lock
, DENTRY_D_LOCK_NESTED
);
863 list_move(&dn
->d_u
.d_child
, &dir
->d_subdirs
);
864 dout("set_dentry_offset %p %lld (%p %p)\n", dn
, di
->offset
,
865 dn
->d_u
.d_child
.prev
, dn
->d_u
.d_child
.next
);
866 spin_unlock(&dn
->d_lock
);
867 spin_unlock(&dir
->d_lock
);
871 * splice a dentry to an inode.
872 * caller must hold directory i_mutex for this to be safe.
874 * we will only rehash the resulting dentry if @prehash is
875 * true; @prehash will be set to false (for the benefit of
876 * the caller) if we fail.
878 static struct dentry
*splice_dentry(struct dentry
*dn
, struct inode
*in
,
879 bool *prehash
, bool set_offset
)
881 struct dentry
*realdn
;
885 /* dn must be unhashed */
888 realdn
= d_materialise_unique(dn
, in
);
889 if (IS_ERR(realdn
)) {
890 pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n",
891 PTR_ERR(realdn
), dn
, in
, ceph_vinop(in
));
893 *prehash
= false; /* don't rehash on error */
894 dn
= realdn
; /* note realdn contains the error */
897 dout("dn %p (%d) spliced with %p (%d) "
898 "inode %p ino %llx.%llx\n",
900 realdn
, realdn
->d_count
,
901 realdn
->d_inode
, ceph_vinop(realdn
->d_inode
));
905 BUG_ON(!ceph_dentry(dn
));
906 dout("dn %p attached to %p ino %llx.%llx\n",
907 dn
, dn
->d_inode
, ceph_vinop(dn
->d_inode
));
909 if ((!prehash
|| *prehash
) && d_unhashed(dn
))
912 ceph_set_dentry_offset(dn
);
918 * Incorporate results into the local cache. This is either just
919 * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
922 * A reply may contain
923 * a directory inode along with a dentry.
924 * and/or a target inode
926 * Called with snap_rwsem (read).
928 int ceph_fill_trace(struct super_block
*sb
, struct ceph_mds_request
*req
,
929 struct ceph_mds_session
*session
)
931 struct ceph_mds_reply_info_parsed
*rinfo
= &req
->r_reply_info
;
932 struct inode
*in
= NULL
;
933 struct ceph_mds_reply_inode
*ininfo
;
934 struct ceph_vino vino
;
935 struct ceph_fs_client
*fsc
= ceph_sb_to_client(sb
);
939 dout("fill_trace %p is_dentry %d is_target %d\n", req
,
940 rinfo
->head
->is_dentry
, rinfo
->head
->is_target
);
946 * If we resend completed ops to a recovering mds, we get no
947 * trace. Since that is very rare, pretend this is the case
948 * to ensure the 'no trace' handlers in the callers behave.
950 * Fill in inodes unconditionally to avoid breaking cap
953 if (rinfo
->head
->op
& CEPH_MDS_OP_WRITE
) {
954 pr_info("fill_trace faking empty trace on %lld %s\n",
955 req
->r_tid
, ceph_mds_op_name(rinfo
->head
->op
));
956 if (rinfo
->head
->is_dentry
) {
957 rinfo
->head
->is_dentry
= 0;
958 err
= fill_inode(req
->r_locked_dir
,
959 &rinfo
->diri
, rinfo
->dirfrag
,
960 session
, req
->r_request_started
, -1);
962 if (rinfo
->head
->is_target
) {
963 rinfo
->head
->is_target
= 0;
964 ininfo
= rinfo
->targeti
.in
;
965 vino
.ino
= le64_to_cpu(ininfo
->ino
);
966 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
967 in
= ceph_get_inode(sb
, vino
);
968 err
= fill_inode(in
, &rinfo
->targeti
, NULL
,
969 session
, req
->r_request_started
,
976 if (!rinfo
->head
->is_target
&& !rinfo
->head
->is_dentry
) {
977 dout("fill_trace reply is empty!\n");
978 if (rinfo
->head
->result
== 0 && req
->r_locked_dir
)
979 ceph_invalidate_dir_request(req
);
983 if (rinfo
->head
->is_dentry
) {
984 struct inode
*dir
= req
->r_locked_dir
;
986 err
= fill_inode(dir
, &rinfo
->diri
, rinfo
->dirfrag
,
987 session
, req
->r_request_started
, -1,
988 &req
->r_caps_reservation
);
994 * ignore null lease/binding on snapdir ENOENT, or else we
995 * will have trouble splicing in the virtual snapdir later
997 if (rinfo
->head
->is_dentry
&& !req
->r_aborted
&&
998 (rinfo
->head
->is_target
|| strncmp(req
->r_dentry
->d_name
.name
,
999 fsc
->mount_options
->snapdir_name
,
1000 req
->r_dentry
->d_name
.len
))) {
1002 * lookup link rename : null -> possibly existing inode
1003 * mknod symlink mkdir : null -> new inode
1004 * unlink : linked -> null
1006 struct inode
*dir
= req
->r_locked_dir
;
1007 struct dentry
*dn
= req
->r_dentry
;
1008 bool have_dir_cap
, have_lease
;
1012 BUG_ON(dn
->d_parent
->d_inode
!= dir
);
1013 BUG_ON(ceph_ino(dir
) !=
1014 le64_to_cpu(rinfo
->diri
.in
->ino
));
1015 BUG_ON(ceph_snap(dir
) !=
1016 le64_to_cpu(rinfo
->diri
.in
->snapid
));
1018 /* do we have a lease on the whole dir? */
1020 (le32_to_cpu(rinfo
->diri
.in
->cap
.caps
) &
1021 CEPH_CAP_FILE_SHARED
);
1023 /* do we have a dn lease? */
1024 have_lease
= have_dir_cap
||
1025 (le16_to_cpu(rinfo
->dlease
->mask
) &
1029 dout("fill_trace no dentry lease or dir cap\n");
1032 if (req
->r_old_dentry
&& req
->r_op
== CEPH_MDS_OP_RENAME
) {
1033 dout(" src %p '%.*s' dst %p '%.*s'\n",
1035 req
->r_old_dentry
->d_name
.len
,
1036 req
->r_old_dentry
->d_name
.name
,
1037 dn
, dn
->d_name
.len
, dn
->d_name
.name
);
1038 dout("fill_trace doing d_move %p -> %p\n",
1039 req
->r_old_dentry
, dn
);
1041 d_move(req
->r_old_dentry
, dn
);
1042 dout(" src %p '%.*s' dst %p '%.*s'\n",
1044 req
->r_old_dentry
->d_name
.len
,
1045 req
->r_old_dentry
->d_name
.name
,
1046 dn
, dn
->d_name
.len
, dn
->d_name
.name
);
1048 /* ensure target dentry is invalidated, despite
1049 rehashing bug in vfs_rename_dir */
1050 ceph_invalidate_dentry_lease(dn
);
1053 * d_move() puts the renamed dentry at the end of
1054 * d_subdirs. We need to assign it an appropriate
1055 * directory offset so we can behave when holding
1058 ceph_set_dentry_offset(req
->r_old_dentry
);
1059 dout("dn %p gets new offset %lld\n", req
->r_old_dentry
,
1060 ceph_dentry(req
->r_old_dentry
)->offset
);
1062 dn
= req
->r_old_dentry
; /* use old_dentry */
1067 if (!rinfo
->head
->is_target
) {
1068 dout("fill_trace null dentry\n");
1070 dout("d_delete %p\n", dn
);
1073 dout("d_instantiate %p NULL\n", dn
);
1074 d_instantiate(dn
, NULL
);
1075 if (have_lease
&& d_unhashed(dn
))
1077 update_dentry_lease(dn
, rinfo
->dlease
,
1079 req
->r_request_started
);
1084 /* attach proper inode */
1085 ininfo
= rinfo
->targeti
.in
;
1086 vino
.ino
= le64_to_cpu(ininfo
->ino
);
1087 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
1090 in
= ceph_get_inode(sb
, vino
);
1092 pr_err("fill_trace bad get_inode "
1093 "%llx.%llx\n", vino
.ino
, vino
.snap
);
1098 dn
= splice_dentry(dn
, in
, &have_lease
, true);
1103 req
->r_dentry
= dn
; /* may have spliced */
1105 } else if (ceph_ino(in
) == vino
.ino
&&
1106 ceph_snap(in
) == vino
.snap
) {
1109 dout(" %p links to %p %llx.%llx, not %llx.%llx\n",
1110 dn
, in
, ceph_ino(in
), ceph_snap(in
),
1111 vino
.ino
, vino
.snap
);
1117 update_dentry_lease(dn
, rinfo
->dlease
, session
,
1118 req
->r_request_started
);
1119 dout(" final dn %p\n", dn
);
1121 } else if (req
->r_op
== CEPH_MDS_OP_LOOKUPSNAP
||
1122 req
->r_op
== CEPH_MDS_OP_MKSNAP
) {
1123 struct dentry
*dn
= req
->r_dentry
;
1125 /* fill out a snapdir LOOKUPSNAP dentry */
1127 BUG_ON(!req
->r_locked_dir
);
1128 BUG_ON(ceph_snap(req
->r_locked_dir
) != CEPH_SNAPDIR
);
1129 ininfo
= rinfo
->targeti
.in
;
1130 vino
.ino
= le64_to_cpu(ininfo
->ino
);
1131 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
1132 in
= ceph_get_inode(sb
, vino
);
1134 pr_err("fill_inode get_inode badness %llx.%llx\n",
1135 vino
.ino
, vino
.snap
);
1140 dout(" linking snapped dir %p to dn %p\n", in
, dn
);
1141 dn
= splice_dentry(dn
, in
, NULL
, true);
1146 req
->r_dentry
= dn
; /* may have spliced */
1148 rinfo
->head
->is_dentry
= 1; /* fool notrace handlers */
1151 if (rinfo
->head
->is_target
) {
1152 vino
.ino
= le64_to_cpu(rinfo
->targeti
.in
->ino
);
1153 vino
.snap
= le64_to_cpu(rinfo
->targeti
.in
->snapid
);
1155 if (in
== NULL
|| ceph_ino(in
) != vino
.ino
||
1156 ceph_snap(in
) != vino
.snap
) {
1157 in
= ceph_get_inode(sb
, vino
);
1163 req
->r_target_inode
= in
;
1165 err
= fill_inode(in
,
1166 &rinfo
->targeti
, NULL
,
1167 session
, req
->r_request_started
,
1168 (le32_to_cpu(rinfo
->head
->result
) == 0) ?
1170 &req
->r_caps_reservation
);
1172 pr_err("fill_inode badness %p %llx.%llx\n",
1173 in
, ceph_vinop(in
));
1179 dout("fill_trace done err=%d\n", err
);
1184 * Prepopulate our cache with readdir results, leases, etc.
1186 int ceph_readdir_prepopulate(struct ceph_mds_request
*req
,
1187 struct ceph_mds_session
*session
)
1189 struct dentry
*parent
= req
->r_dentry
;
1190 struct ceph_mds_reply_info_parsed
*rinfo
= &req
->r_reply_info
;
1195 struct inode
*snapdir
= NULL
;
1196 struct ceph_mds_request_head
*rhead
= req
->r_request
->front
.iov_base
;
1197 u64 frag
= le32_to_cpu(rhead
->args
.readdir
.frag
);
1198 struct ceph_dentry_info
*di
;
1200 if (le32_to_cpu(rinfo
->head
->op
) == CEPH_MDS_OP_LSSNAP
) {
1201 snapdir
= ceph_get_snapdir(parent
->d_inode
);
1202 parent
= d_find_alias(snapdir
);
1203 dout("readdir_prepopulate %d items under SNAPDIR dn %p\n",
1204 rinfo
->dir_nr
, parent
);
1206 dout("readdir_prepopulate %d items under dn %p\n",
1207 rinfo
->dir_nr
, parent
);
1209 ceph_fill_dirfrag(parent
->d_inode
, rinfo
->dir_dir
);
1212 for (i
= 0; i
< rinfo
->dir_nr
; i
++) {
1213 struct ceph_vino vino
;
1215 dname
.name
= rinfo
->dir_dname
[i
];
1216 dname
.len
= rinfo
->dir_dname_len
[i
];
1217 dname
.hash
= full_name_hash(dname
.name
, dname
.len
);
1219 vino
.ino
= le64_to_cpu(rinfo
->dir_in
[i
].in
->ino
);
1220 vino
.snap
= le64_to_cpu(rinfo
->dir_in
[i
].in
->snapid
);
1223 dn
= d_lookup(parent
, &dname
);
1224 dout("d_lookup on parent=%p name=%.*s got %p\n",
1225 parent
, dname
.len
, dname
.name
, dn
);
1228 dn
= d_alloc(parent
, &dname
);
1229 dout("d_alloc %p '%.*s' = %p\n", parent
,
1230 dname
.len
, dname
.name
, dn
);
1232 dout("d_alloc badness\n");
1236 err
= ceph_init_dentry(dn
);
1241 } else if (dn
->d_inode
&&
1242 (ceph_ino(dn
->d_inode
) != vino
.ino
||
1243 ceph_snap(dn
->d_inode
) != vino
.snap
)) {
1244 dout(" dn %p points to wrong inode %p\n",
1250 /* reorder parent's d_subdirs */
1251 spin_lock(&parent
->d_lock
);
1252 spin_lock_nested(&dn
->d_lock
, DENTRY_D_LOCK_NESTED
);
1253 list_move(&dn
->d_u
.d_child
, &parent
->d_subdirs
);
1254 spin_unlock(&dn
->d_lock
);
1255 spin_unlock(&parent
->d_lock
);
1259 di
->offset
= ceph_make_fpos(frag
, i
+ req
->r_readdir_offset
);
1265 in
= ceph_get_inode(parent
->d_sb
, vino
);
1267 dout("new_inode badness\n");
1273 dn
= splice_dentry(dn
, in
, NULL
, false);
1278 if (fill_inode(in
, &rinfo
->dir_in
[i
], NULL
, session
,
1279 req
->r_request_started
, -1,
1280 &req
->r_caps_reservation
) < 0) {
1281 pr_err("fill_inode badness on %p\n", in
);
1285 update_dentry_lease(dn
, rinfo
->dir_dlease
[i
],
1287 req
->r_request_started
);
1292 req
->r_did_prepopulate
= true;
1299 dout("readdir_prepopulate done\n");
1303 int ceph_inode_set_size(struct inode
*inode
, loff_t size
)
1305 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1308 spin_lock(&inode
->i_lock
);
1309 dout("set_size %p %llu -> %llu\n", inode
, inode
->i_size
, size
);
1310 inode
->i_size
= size
;
1311 inode
->i_blocks
= (size
+ (1 << 9) - 1) >> 9;
1313 /* tell the MDS if we are approaching max_size */
1314 if ((size
<< 1) >= ci
->i_max_size
&&
1315 (ci
->i_reported_size
<< 1) < ci
->i_max_size
)
1318 spin_unlock(&inode
->i_lock
);
1323 * Write back inode data in a worker thread. (This can't be done
1324 * in the message handler context.)
1326 void ceph_queue_writeback(struct inode
*inode
)
1328 if (queue_work(ceph_inode_to_client(inode
)->wb_wq
,
1329 &ceph_inode(inode
)->i_wb_work
)) {
1330 dout("ceph_queue_writeback %p\n", inode
);
1333 dout("ceph_queue_writeback %p failed\n", inode
);
1337 static void ceph_writeback_work(struct work_struct
*work
)
1339 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1341 struct inode
*inode
= &ci
->vfs_inode
;
1343 dout("writeback %p\n", inode
);
1344 filemap_fdatawrite(&inode
->i_data
);
1349 * queue an async invalidation
1351 void ceph_queue_invalidate(struct inode
*inode
)
1353 if (queue_work(ceph_inode_to_client(inode
)->pg_inv_wq
,
1354 &ceph_inode(inode
)->i_pg_inv_work
)) {
1355 dout("ceph_queue_invalidate %p\n", inode
);
1358 dout("ceph_queue_invalidate %p failed\n", inode
);
1363 * invalidate any pages that are not dirty or under writeback. this
1364 * includes pages that are clean and mapped.
1366 static void ceph_invalidate_nondirty_pages(struct address_space
*mapping
)
1368 struct pagevec pvec
;
1372 pagevec_init(&pvec
, 0);
1373 while (pagevec_lookup(&pvec
, mapping
, next
, PAGEVEC_SIZE
)) {
1374 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
1375 struct page
*page
= pvec
.pages
[i
];
1378 (PageDirty(page
) || PageWriteback(page
));
1381 skip_page
= !trylock_page(page
);
1384 * We really shouldn't be looking at the ->index of an
1385 * unlocked page. But we're not allowed to lock these
1386 * pages. So we rely upon nobody altering the ->index
1387 * of this (pinned-by-us) page.
1389 index
= page
->index
;
1397 generic_error_remove_page(mapping
, page
);
1400 pagevec_release(&pvec
);
1406 * Invalidate inode pages in a worker thread. (This can't be done
1407 * in the message handler context.)
1409 static void ceph_invalidate_work(struct work_struct
*work
)
1411 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1413 struct inode
*inode
= &ci
->vfs_inode
;
1417 spin_lock(&inode
->i_lock
);
1418 dout("invalidate_pages %p gen %d revoking %d\n", inode
,
1419 ci
->i_rdcache_gen
, ci
->i_rdcache_revoking
);
1420 if (ci
->i_rdcache_revoking
!= ci
->i_rdcache_gen
) {
1422 spin_unlock(&inode
->i_lock
);
1425 orig_gen
= ci
->i_rdcache_gen
;
1426 spin_unlock(&inode
->i_lock
);
1428 ceph_invalidate_nondirty_pages(inode
->i_mapping
);
1430 spin_lock(&inode
->i_lock
);
1431 if (orig_gen
== ci
->i_rdcache_gen
&&
1432 orig_gen
== ci
->i_rdcache_revoking
) {
1433 dout("invalidate_pages %p gen %d successful\n", inode
,
1435 ci
->i_rdcache_revoking
--;
1438 dout("invalidate_pages %p gen %d raced, now %d revoking %d\n",
1439 inode
, orig_gen
, ci
->i_rdcache_gen
,
1440 ci
->i_rdcache_revoking
);
1442 spin_unlock(&inode
->i_lock
);
1445 ceph_check_caps(ci
, 0, NULL
);
1452 * called by trunc_wq; take i_mutex ourselves
1454 * We also truncate in a separate thread as well.
1456 static void ceph_vmtruncate_work(struct work_struct
*work
)
1458 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1460 struct inode
*inode
= &ci
->vfs_inode
;
1462 dout("vmtruncate_work %p\n", inode
);
1463 mutex_lock(&inode
->i_mutex
);
1464 __ceph_do_pending_vmtruncate(inode
);
1465 mutex_unlock(&inode
->i_mutex
);
1470 * Queue an async vmtruncate. If we fail to queue work, we will handle
1471 * the truncation the next time we call __ceph_do_pending_vmtruncate.
1473 void ceph_queue_vmtruncate(struct inode
*inode
)
1475 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1477 if (queue_work(ceph_sb_to_client(inode
->i_sb
)->trunc_wq
,
1478 &ci
->i_vmtruncate_work
)) {
1479 dout("ceph_queue_vmtruncate %p\n", inode
);
1482 dout("ceph_queue_vmtruncate %p failed, pending=%d\n",
1483 inode
, ci
->i_truncate_pending
);
1488 * called with i_mutex held.
1490 * Make sure any pending truncation is applied before doing anything
1491 * that may depend on it.
1493 void __ceph_do_pending_vmtruncate(struct inode
*inode
)
1495 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1497 int wrbuffer_refs
, wake
= 0;
1500 spin_lock(&inode
->i_lock
);
1501 if (ci
->i_truncate_pending
== 0) {
1502 dout("__do_pending_vmtruncate %p none pending\n", inode
);
1503 spin_unlock(&inode
->i_lock
);
1508 * make sure any dirty snapped pages are flushed before we
1509 * possibly truncate them.. so write AND block!
1511 if (ci
->i_wrbuffer_ref_head
< ci
->i_wrbuffer_ref
) {
1512 dout("__do_pending_vmtruncate %p flushing snaps first\n",
1514 spin_unlock(&inode
->i_lock
);
1515 filemap_write_and_wait_range(&inode
->i_data
, 0,
1516 inode
->i_sb
->s_maxbytes
);
1520 to
= ci
->i_truncate_size
;
1521 wrbuffer_refs
= ci
->i_wrbuffer_ref
;
1522 dout("__do_pending_vmtruncate %p (%d) to %lld\n", inode
,
1523 ci
->i_truncate_pending
, to
);
1524 spin_unlock(&inode
->i_lock
);
1526 truncate_inode_pages(inode
->i_mapping
, to
);
1528 spin_lock(&inode
->i_lock
);
1529 ci
->i_truncate_pending
--;
1530 if (ci
->i_truncate_pending
== 0)
1532 spin_unlock(&inode
->i_lock
);
1534 if (wrbuffer_refs
== 0)
1535 ceph_check_caps(ci
, CHECK_CAPS_AUTHONLY
, NULL
);
1537 wake_up_all(&ci
->i_cap_wq
);
1544 static void *ceph_sym_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1546 struct ceph_inode_info
*ci
= ceph_inode(dentry
->d_inode
);
1547 nd_set_link(nd
, ci
->i_symlink
);
1551 static const struct inode_operations ceph_symlink_iops
= {
1552 .readlink
= generic_readlink
,
1553 .follow_link
= ceph_sym_follow_link
,
1559 int ceph_setattr(struct dentry
*dentry
, struct iattr
*attr
)
1561 struct inode
*inode
= dentry
->d_inode
;
1562 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1563 struct inode
*parent_inode
= dentry
->d_parent
->d_inode
;
1564 const unsigned int ia_valid
= attr
->ia_valid
;
1565 struct ceph_mds_request
*req
;
1566 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(dentry
->d_sb
)->mdsc
;
1568 int release
= 0, dirtied
= 0;
1571 int inode_dirty_flags
= 0;
1573 if (ceph_snap(inode
) != CEPH_NOSNAP
)
1576 __ceph_do_pending_vmtruncate(inode
);
1578 err
= inode_change_ok(inode
, attr
);
1582 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_SETATTR
,
1585 return PTR_ERR(req
);
1587 spin_lock(&inode
->i_lock
);
1588 issued
= __ceph_caps_issued(ci
, NULL
);
1589 dout("setattr %p issued %s\n", inode
, ceph_cap_string(issued
));
1591 if (ia_valid
& ATTR_UID
) {
1592 dout("setattr %p uid %d -> %d\n", inode
,
1593 inode
->i_uid
, attr
->ia_uid
);
1594 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1595 inode
->i_uid
= attr
->ia_uid
;
1596 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1597 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1598 attr
->ia_uid
!= inode
->i_uid
) {
1599 req
->r_args
.setattr
.uid
= cpu_to_le32(attr
->ia_uid
);
1600 mask
|= CEPH_SETATTR_UID
;
1601 release
|= CEPH_CAP_AUTH_SHARED
;
1604 if (ia_valid
& ATTR_GID
) {
1605 dout("setattr %p gid %d -> %d\n", inode
,
1606 inode
->i_gid
, attr
->ia_gid
);
1607 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1608 inode
->i_gid
= attr
->ia_gid
;
1609 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1610 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1611 attr
->ia_gid
!= inode
->i_gid
) {
1612 req
->r_args
.setattr
.gid
= cpu_to_le32(attr
->ia_gid
);
1613 mask
|= CEPH_SETATTR_GID
;
1614 release
|= CEPH_CAP_AUTH_SHARED
;
1617 if (ia_valid
& ATTR_MODE
) {
1618 dout("setattr %p mode 0%o -> 0%o\n", inode
, inode
->i_mode
,
1620 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1621 inode
->i_mode
= attr
->ia_mode
;
1622 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1623 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1624 attr
->ia_mode
!= inode
->i_mode
) {
1625 req
->r_args
.setattr
.mode
= cpu_to_le32(attr
->ia_mode
);
1626 mask
|= CEPH_SETATTR_MODE
;
1627 release
|= CEPH_CAP_AUTH_SHARED
;
1631 if (ia_valid
& ATTR_ATIME
) {
1632 dout("setattr %p atime %ld.%ld -> %ld.%ld\n", inode
,
1633 inode
->i_atime
.tv_sec
, inode
->i_atime
.tv_nsec
,
1634 attr
->ia_atime
.tv_sec
, attr
->ia_atime
.tv_nsec
);
1635 if (issued
& CEPH_CAP_FILE_EXCL
) {
1636 ci
->i_time_warp_seq
++;
1637 inode
->i_atime
= attr
->ia_atime
;
1638 dirtied
|= CEPH_CAP_FILE_EXCL
;
1639 } else if ((issued
& CEPH_CAP_FILE_WR
) &&
1640 timespec_compare(&inode
->i_atime
,
1641 &attr
->ia_atime
) < 0) {
1642 inode
->i_atime
= attr
->ia_atime
;
1643 dirtied
|= CEPH_CAP_FILE_WR
;
1644 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1645 !timespec_equal(&inode
->i_atime
, &attr
->ia_atime
)) {
1646 ceph_encode_timespec(&req
->r_args
.setattr
.atime
,
1648 mask
|= CEPH_SETATTR_ATIME
;
1649 release
|= CEPH_CAP_FILE_CACHE
| CEPH_CAP_FILE_RD
|
1653 if (ia_valid
& ATTR_MTIME
) {
1654 dout("setattr %p mtime %ld.%ld -> %ld.%ld\n", inode
,
1655 inode
->i_mtime
.tv_sec
, inode
->i_mtime
.tv_nsec
,
1656 attr
->ia_mtime
.tv_sec
, attr
->ia_mtime
.tv_nsec
);
1657 if (issued
& CEPH_CAP_FILE_EXCL
) {
1658 ci
->i_time_warp_seq
++;
1659 inode
->i_mtime
= attr
->ia_mtime
;
1660 dirtied
|= CEPH_CAP_FILE_EXCL
;
1661 } else if ((issued
& CEPH_CAP_FILE_WR
) &&
1662 timespec_compare(&inode
->i_mtime
,
1663 &attr
->ia_mtime
) < 0) {
1664 inode
->i_mtime
= attr
->ia_mtime
;
1665 dirtied
|= CEPH_CAP_FILE_WR
;
1666 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1667 !timespec_equal(&inode
->i_mtime
, &attr
->ia_mtime
)) {
1668 ceph_encode_timespec(&req
->r_args
.setattr
.mtime
,
1670 mask
|= CEPH_SETATTR_MTIME
;
1671 release
|= CEPH_CAP_FILE_SHARED
| CEPH_CAP_FILE_RD
|
1675 if (ia_valid
& ATTR_SIZE
) {
1676 dout("setattr %p size %lld -> %lld\n", inode
,
1677 inode
->i_size
, attr
->ia_size
);
1678 if (attr
->ia_size
> inode
->i_sb
->s_maxbytes
) {
1682 if ((issued
& CEPH_CAP_FILE_EXCL
) &&
1683 attr
->ia_size
> inode
->i_size
) {
1684 inode
->i_size
= attr
->ia_size
;
1686 (attr
->ia_size
+ (1 << 9) - 1) >> 9;
1687 inode
->i_ctime
= attr
->ia_ctime
;
1688 ci
->i_reported_size
= attr
->ia_size
;
1689 dirtied
|= CEPH_CAP_FILE_EXCL
;
1690 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1691 attr
->ia_size
!= inode
->i_size
) {
1692 req
->r_args
.setattr
.size
= cpu_to_le64(attr
->ia_size
);
1693 req
->r_args
.setattr
.old_size
=
1694 cpu_to_le64(inode
->i_size
);
1695 mask
|= CEPH_SETATTR_SIZE
;
1696 release
|= CEPH_CAP_FILE_SHARED
| CEPH_CAP_FILE_RD
|
1701 /* these do nothing */
1702 if (ia_valid
& ATTR_CTIME
) {
1703 bool only
= (ia_valid
& (ATTR_SIZE
|ATTR_MTIME
|ATTR_ATIME
|
1704 ATTR_MODE
|ATTR_UID
|ATTR_GID
)) == 0;
1705 dout("setattr %p ctime %ld.%ld -> %ld.%ld (%s)\n", inode
,
1706 inode
->i_ctime
.tv_sec
, inode
->i_ctime
.tv_nsec
,
1707 attr
->ia_ctime
.tv_sec
, attr
->ia_ctime
.tv_nsec
,
1708 only
? "ctime only" : "ignored");
1709 inode
->i_ctime
= attr
->ia_ctime
;
1712 * if kernel wants to dirty ctime but nothing else,
1713 * we need to choose a cap to dirty under, or do
1714 * a almost-no-op setattr
1716 if (issued
& CEPH_CAP_AUTH_EXCL
)
1717 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1718 else if (issued
& CEPH_CAP_FILE_EXCL
)
1719 dirtied
|= CEPH_CAP_FILE_EXCL
;
1720 else if (issued
& CEPH_CAP_XATTR_EXCL
)
1721 dirtied
|= CEPH_CAP_XATTR_EXCL
;
1723 mask
|= CEPH_SETATTR_CTIME
;
1726 if (ia_valid
& ATTR_FILE
)
1727 dout("setattr %p ATTR_FILE ... hrm!\n", inode
);
1730 inode_dirty_flags
= __ceph_mark_dirty_caps(ci
, dirtied
);
1731 inode
->i_ctime
= CURRENT_TIME
;
1735 spin_unlock(&inode
->i_lock
);
1737 if (inode_dirty_flags
)
1738 __mark_inode_dirty(inode
, inode_dirty_flags
);
1741 req
->r_inode
= inode
;
1743 req
->r_inode_drop
= release
;
1744 req
->r_args
.setattr
.mask
= cpu_to_le32(mask
);
1745 req
->r_num_caps
= 1;
1746 err
= ceph_mdsc_do_request(mdsc
, parent_inode
, req
);
1748 dout("setattr %p result=%d (%s locally, %d remote)\n", inode
, err
,
1749 ceph_cap_string(dirtied
), mask
);
1751 ceph_mdsc_put_request(req
);
1752 __ceph_do_pending_vmtruncate(inode
);
1755 spin_unlock(&inode
->i_lock
);
1756 ceph_mdsc_put_request(req
);
1761 * Verify that we have a lease on the given mask. If not,
1762 * do a getattr against an mds.
1764 int ceph_do_getattr(struct inode
*inode
, int mask
)
1766 struct ceph_fs_client
*fsc
= ceph_sb_to_client(inode
->i_sb
);
1767 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
1768 struct ceph_mds_request
*req
;
1771 if (ceph_snap(inode
) == CEPH_SNAPDIR
) {
1772 dout("do_getattr inode %p SNAPDIR\n", inode
);
1776 dout("do_getattr inode %p mask %s mode 0%o\n", inode
, ceph_cap_string(mask
), inode
->i_mode
);
1777 if (ceph_caps_issued_mask(ceph_inode(inode
), mask
, 1))
1780 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_GETATTR
, USE_ANY_MDS
);
1782 return PTR_ERR(req
);
1783 req
->r_inode
= inode
;
1785 req
->r_num_caps
= 1;
1786 req
->r_args
.getattr
.mask
= cpu_to_le32(mask
);
1787 err
= ceph_mdsc_do_request(mdsc
, NULL
, req
);
1788 ceph_mdsc_put_request(req
);
1789 dout("do_getattr result=%d\n", err
);
1795 * Check inode permissions. We verify we have a valid value for
1796 * the AUTH cap, then call the generic handler.
1798 int ceph_permission(struct inode
*inode
, int mask
, unsigned int flags
)
1802 if (flags
& IPERM_FLAG_RCU
)
1805 err
= ceph_do_getattr(inode
, CEPH_CAP_AUTH_SHARED
);
1808 err
= generic_permission(inode
, mask
, flags
, NULL
);
1813 * Get all attributes. Hopefully somedata we'll have a statlite()
1814 * and can limit the fields we require to be accurate.
1816 int ceph_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
1819 struct inode
*inode
= dentry
->d_inode
;
1820 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1823 err
= ceph_do_getattr(inode
, CEPH_STAT_CAP_INODE_ALL
);
1825 generic_fillattr(inode
, stat
);
1826 stat
->ino
= ceph_translate_ino(inode
->i_sb
, inode
->i_ino
);
1827 if (ceph_snap(inode
) != CEPH_NOSNAP
)
1828 stat
->dev
= ceph_snap(inode
);
1831 if (S_ISDIR(inode
->i_mode
)) {
1832 if (ceph_test_mount_opt(ceph_sb_to_client(inode
->i_sb
),
1834 stat
->size
= ci
->i_rbytes
;
1836 stat
->size
= ci
->i_files
+ ci
->i_subdirs
;
1838 stat
->blksize
= 65536;