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;
358 ci
->i_wrbuffer_ref
= 0;
359 ci
->i_wrbuffer_ref_head
= 0;
360 ci
->i_shared_gen
= 0;
361 ci
->i_rdcache_gen
= 0;
362 ci
->i_rdcache_revoking
= 0;
364 INIT_LIST_HEAD(&ci
->i_unsafe_writes
);
365 INIT_LIST_HEAD(&ci
->i_unsafe_dirops
);
366 spin_lock_init(&ci
->i_unsafe_lock
);
368 ci
->i_snap_realm
= NULL
;
369 INIT_LIST_HEAD(&ci
->i_snap_realm_item
);
370 INIT_LIST_HEAD(&ci
->i_snap_flush_item
);
372 INIT_WORK(&ci
->i_wb_work
, ceph_writeback_work
);
373 INIT_WORK(&ci
->i_pg_inv_work
, ceph_invalidate_work
);
375 INIT_WORK(&ci
->i_vmtruncate_work
, ceph_vmtruncate_work
);
377 return &ci
->vfs_inode
;
380 static void ceph_i_callback(struct rcu_head
*head
)
382 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
383 struct ceph_inode_info
*ci
= ceph_inode(inode
);
385 INIT_LIST_HEAD(&inode
->i_dentry
);
386 kmem_cache_free(ceph_inode_cachep
, ci
);
389 void ceph_destroy_inode(struct inode
*inode
)
391 struct ceph_inode_info
*ci
= ceph_inode(inode
);
392 struct ceph_inode_frag
*frag
;
395 dout("destroy_inode %p ino %llx.%llx\n", inode
, ceph_vinop(inode
));
397 ceph_queue_caps_release(inode
);
400 * we may still have a snap_realm reference if there are stray
401 * caps in i_cap_exporting_issued or i_snap_caps.
403 if (ci
->i_snap_realm
) {
404 struct ceph_mds_client
*mdsc
=
405 ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
;
406 struct ceph_snap_realm
*realm
= ci
->i_snap_realm
;
408 dout(" dropping residual ref to snap realm %p\n", realm
);
409 spin_lock(&realm
->inodes_with_caps_lock
);
410 list_del_init(&ci
->i_snap_realm_item
);
411 spin_unlock(&realm
->inodes_with_caps_lock
);
412 ceph_put_snap_realm(mdsc
, realm
);
415 kfree(ci
->i_symlink
);
416 while ((n
= rb_first(&ci
->i_fragtree
)) != NULL
) {
417 frag
= rb_entry(n
, struct ceph_inode_frag
, node
);
418 rb_erase(n
, &ci
->i_fragtree
);
422 __ceph_destroy_xattrs(ci
);
423 if (ci
->i_xattrs
.blob
)
424 ceph_buffer_put(ci
->i_xattrs
.blob
);
425 if (ci
->i_xattrs
.prealloc_blob
)
426 ceph_buffer_put(ci
->i_xattrs
.prealloc_blob
);
428 call_rcu(&inode
->i_rcu
, ceph_i_callback
);
433 * Helpers to fill in size, ctime, mtime, and atime. We have to be
434 * careful because either the client or MDS may have more up to date
435 * info, depending on which capabilities are held, and whether
436 * time_warp_seq or truncate_seq have increased. (Ordinarily, mtime
437 * and size are monotonically increasing, except when utimes() or
438 * truncate() increments the corresponding _seq values.)
440 int ceph_fill_file_size(struct inode
*inode
, int issued
,
441 u32 truncate_seq
, u64 truncate_size
, u64 size
)
443 struct ceph_inode_info
*ci
= ceph_inode(inode
);
446 if (ceph_seq_cmp(truncate_seq
, ci
->i_truncate_seq
) > 0 ||
447 (truncate_seq
== ci
->i_truncate_seq
&& size
> inode
->i_size
)) {
448 dout("size %lld -> %llu\n", inode
->i_size
, size
);
449 inode
->i_size
= size
;
450 inode
->i_blocks
= (size
+ (1<<9) - 1) >> 9;
451 ci
->i_reported_size
= size
;
452 if (truncate_seq
!= ci
->i_truncate_seq
) {
453 dout("truncate_seq %u -> %u\n",
454 ci
->i_truncate_seq
, truncate_seq
);
455 ci
->i_truncate_seq
= truncate_seq
;
457 * If we hold relevant caps, or in the case where we're
458 * not the only client referencing this file and we
459 * don't hold those caps, then we need to check whether
460 * the file is either opened or mmaped
462 if ((issued
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_RD
|
463 CEPH_CAP_FILE_WR
|CEPH_CAP_FILE_BUFFER
|
465 CEPH_CAP_FILE_LAZYIO
)) ||
466 mapping_mapped(inode
->i_mapping
) ||
467 __ceph_caps_file_wanted(ci
)) {
468 ci
->i_truncate_pending
++;
473 if (ceph_seq_cmp(truncate_seq
, ci
->i_truncate_seq
) >= 0 &&
474 ci
->i_truncate_size
!= truncate_size
) {
475 dout("truncate_size %lld -> %llu\n", ci
->i_truncate_size
,
477 ci
->i_truncate_size
= truncate_size
;
482 void ceph_fill_file_time(struct inode
*inode
, int issued
,
483 u64 time_warp_seq
, struct timespec
*ctime
,
484 struct timespec
*mtime
, struct timespec
*atime
)
486 struct ceph_inode_info
*ci
= ceph_inode(inode
);
489 if (issued
& (CEPH_CAP_FILE_EXCL
|
491 CEPH_CAP_FILE_BUFFER
|
493 CEPH_CAP_XATTR_EXCL
)) {
494 if (timespec_compare(ctime
, &inode
->i_ctime
) > 0) {
495 dout("ctime %ld.%09ld -> %ld.%09ld inc w/ cap\n",
496 inode
->i_ctime
.tv_sec
, inode
->i_ctime
.tv_nsec
,
497 ctime
->tv_sec
, ctime
->tv_nsec
);
498 inode
->i_ctime
= *ctime
;
500 if (ceph_seq_cmp(time_warp_seq
, ci
->i_time_warp_seq
) > 0) {
501 /* the MDS did a utimes() */
502 dout("mtime %ld.%09ld -> %ld.%09ld "
504 inode
->i_mtime
.tv_sec
, inode
->i_mtime
.tv_nsec
,
505 mtime
->tv_sec
, mtime
->tv_nsec
,
506 ci
->i_time_warp_seq
, (int)time_warp_seq
);
508 inode
->i_mtime
= *mtime
;
509 inode
->i_atime
= *atime
;
510 ci
->i_time_warp_seq
= time_warp_seq
;
511 } else if (time_warp_seq
== ci
->i_time_warp_seq
) {
512 /* nobody did utimes(); take the max */
513 if (timespec_compare(mtime
, &inode
->i_mtime
) > 0) {
514 dout("mtime %ld.%09ld -> %ld.%09ld inc\n",
515 inode
->i_mtime
.tv_sec
,
516 inode
->i_mtime
.tv_nsec
,
517 mtime
->tv_sec
, mtime
->tv_nsec
);
518 inode
->i_mtime
= *mtime
;
520 if (timespec_compare(atime
, &inode
->i_atime
) > 0) {
521 dout("atime %ld.%09ld -> %ld.%09ld inc\n",
522 inode
->i_atime
.tv_sec
,
523 inode
->i_atime
.tv_nsec
,
524 atime
->tv_sec
, atime
->tv_nsec
);
525 inode
->i_atime
= *atime
;
527 } else if (issued
& CEPH_CAP_FILE_EXCL
) {
528 /* we did a utimes(); ignore mds values */
533 /* we have no write|excl caps; whatever the MDS says is true */
534 if (ceph_seq_cmp(time_warp_seq
, ci
->i_time_warp_seq
) >= 0) {
535 inode
->i_ctime
= *ctime
;
536 inode
->i_mtime
= *mtime
;
537 inode
->i_atime
= *atime
;
538 ci
->i_time_warp_seq
= time_warp_seq
;
543 if (warn
) /* time_warp_seq shouldn't go backwards */
544 dout("%p mds time_warp_seq %llu < %u\n",
545 inode
, time_warp_seq
, ci
->i_time_warp_seq
);
549 * Populate an inode based on info from mds. May be called on new or
552 static int fill_inode(struct inode
*inode
,
553 struct ceph_mds_reply_info_in
*iinfo
,
554 struct ceph_mds_reply_dirfrag
*dirinfo
,
555 struct ceph_mds_session
*session
,
556 unsigned long ttl_from
, int cap_fmode
,
557 struct ceph_cap_reservation
*caps_reservation
)
559 struct ceph_mds_reply_inode
*info
= iinfo
->in
;
560 struct ceph_inode_info
*ci
= ceph_inode(inode
);
562 int issued
, implemented
;
563 struct timespec mtime
, atime
, ctime
;
565 struct ceph_buffer
*xattr_blob
= NULL
;
569 dout("fill_inode %p ino %llx.%llx v %llu had %llu\n",
570 inode
, ceph_vinop(inode
), le64_to_cpu(info
->version
),
574 * prealloc xattr data, if it looks like we'll need it. only
575 * if len > 4 (meaning there are actually xattrs; the first 4
576 * bytes are the xattr count).
578 if (iinfo
->xattr_len
> 4) {
579 xattr_blob
= ceph_buffer_new(iinfo
->xattr_len
, GFP_NOFS
);
581 pr_err("fill_inode ENOMEM xattr blob %d bytes\n",
585 spin_lock(&inode
->i_lock
);
588 * provided version will be odd if inode value is projected,
589 * even if stable. skip the update if we have newer stable
590 * info (ours>=theirs, e.g. due to racing mds replies), unless
591 * we are getting projected (unstable) info (in which case the
592 * version is odd, and we want ours>theirs).
598 if (le64_to_cpu(info
->version
) > 0 &&
599 (ci
->i_version
& ~1) >= le64_to_cpu(info
->version
))
602 issued
= __ceph_caps_issued(ci
, &implemented
);
603 issued
|= implemented
| __ceph_caps_dirty(ci
);
606 ci
->i_version
= le64_to_cpu(info
->version
);
608 inode
->i_rdev
= le32_to_cpu(info
->rdev
);
610 if ((issued
& CEPH_CAP_AUTH_EXCL
) == 0) {
611 inode
->i_mode
= le32_to_cpu(info
->mode
);
612 inode
->i_uid
= le32_to_cpu(info
->uid
);
613 inode
->i_gid
= le32_to_cpu(info
->gid
);
614 dout("%p mode 0%o uid.gid %d.%d\n", inode
, inode
->i_mode
,
615 inode
->i_uid
, inode
->i_gid
);
618 if ((issued
& CEPH_CAP_LINK_EXCL
) == 0)
619 inode
->i_nlink
= le32_to_cpu(info
->nlink
);
621 /* be careful with mtime, atime, size */
622 ceph_decode_timespec(&atime
, &info
->atime
);
623 ceph_decode_timespec(&mtime
, &info
->mtime
);
624 ceph_decode_timespec(&ctime
, &info
->ctime
);
625 queue_trunc
= ceph_fill_file_size(inode
, issued
,
626 le32_to_cpu(info
->truncate_seq
),
627 le64_to_cpu(info
->truncate_size
),
628 le64_to_cpu(info
->size
));
629 ceph_fill_file_time(inode
, issued
,
630 le32_to_cpu(info
->time_warp_seq
),
631 &ctime
, &mtime
, &atime
);
633 /* only update max_size on auth cap */
634 if ((info
->cap
.flags
& CEPH_CAP_FLAG_AUTH
) &&
635 ci
->i_max_size
!= le64_to_cpu(info
->max_size
)) {
636 dout("max_size %lld -> %llu\n", ci
->i_max_size
,
637 le64_to_cpu(info
->max_size
));
638 ci
->i_max_size
= le64_to_cpu(info
->max_size
);
641 ci
->i_layout
= info
->layout
;
642 inode
->i_blkbits
= fls(le32_to_cpu(info
->layout
.fl_stripe_unit
)) - 1;
645 /* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
646 if ((issued
& CEPH_CAP_XATTR_EXCL
) == 0 &&
647 le64_to_cpu(info
->xattr_version
) > ci
->i_xattrs
.version
) {
648 if (ci
->i_xattrs
.blob
)
649 ceph_buffer_put(ci
->i_xattrs
.blob
);
650 ci
->i_xattrs
.blob
= xattr_blob
;
652 memcpy(ci
->i_xattrs
.blob
->vec
.iov_base
,
653 iinfo
->xattr_data
, iinfo
->xattr_len
);
654 ci
->i_xattrs
.version
= le64_to_cpu(info
->xattr_version
);
658 inode
->i_mapping
->a_ops
= &ceph_aops
;
659 inode
->i_mapping
->backing_dev_info
=
660 &ceph_sb_to_client(inode
->i_sb
)->backing_dev_info
;
662 switch (inode
->i_mode
& S_IFMT
) {
667 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
668 inode
->i_op
= &ceph_file_iops
;
671 inode
->i_op
= &ceph_file_iops
;
672 inode
->i_fop
= &ceph_file_fops
;
675 inode
->i_op
= &ceph_symlink_iops
;
676 if (!ci
->i_symlink
) {
677 int symlen
= iinfo
->symlink_len
;
680 BUG_ON(symlen
!= inode
->i_size
);
681 spin_unlock(&inode
->i_lock
);
684 sym
= kmalloc(symlen
+1, GFP_NOFS
);
687 memcpy(sym
, iinfo
->symlink
, symlen
);
690 spin_lock(&inode
->i_lock
);
694 kfree(sym
); /* lost a race */
698 inode
->i_op
= &ceph_dir_iops
;
699 inode
->i_fop
= &ceph_dir_fops
;
701 ci
->i_dir_layout
= iinfo
->dir_layout
;
703 ci
->i_files
= le64_to_cpu(info
->files
);
704 ci
->i_subdirs
= le64_to_cpu(info
->subdirs
);
705 ci
->i_rbytes
= le64_to_cpu(info
->rbytes
);
706 ci
->i_rfiles
= le64_to_cpu(info
->rfiles
);
707 ci
->i_rsubdirs
= le64_to_cpu(info
->rsubdirs
);
708 ceph_decode_timespec(&ci
->i_rctime
, &info
->rctime
);
710 /* set dir completion flag? */
711 if (ci
->i_files
== 0 && ci
->i_subdirs
== 0 &&
712 ceph_snap(inode
) == CEPH_NOSNAP
&&
713 (le32_to_cpu(info
->cap
.caps
) & CEPH_CAP_FILE_SHARED
) &&
714 (issued
& CEPH_CAP_FILE_EXCL
) == 0 &&
715 (ci
->i_ceph_flags
& CEPH_I_COMPLETE
) == 0) {
716 dout(" marking %p complete (empty)\n", inode
);
717 /* ci->i_ceph_flags |= CEPH_I_COMPLETE; */
718 ci
->i_max_offset
= 2;
722 pr_err("fill_inode %llx.%llx BAD mode 0%o\n",
723 ceph_vinop(inode
), inode
->i_mode
);
727 spin_unlock(&inode
->i_lock
);
729 /* queue truncate if we saw i_size decrease */
731 ceph_queue_vmtruncate(inode
);
733 /* populate frag tree */
734 /* FIXME: move me up, if/when version reflects fragtree changes */
735 nsplits
= le32_to_cpu(info
->fragtree
.nsplits
);
736 mutex_lock(&ci
->i_fragtree_mutex
);
737 for (i
= 0; i
< nsplits
; i
++) {
738 u32 id
= le32_to_cpu(info
->fragtree
.splits
[i
].frag
);
739 struct ceph_inode_frag
*frag
= __get_or_create_frag(ci
, id
);
743 frag
->split_by
= le32_to_cpu(info
->fragtree
.splits
[i
].by
);
744 dout(" frag %x split by %d\n", frag
->frag
, frag
->split_by
);
746 mutex_unlock(&ci
->i_fragtree_mutex
);
748 /* were we issued a capability? */
749 if (info
->cap
.caps
) {
750 if (ceph_snap(inode
) == CEPH_NOSNAP
) {
751 ceph_add_cap(inode
, session
,
752 le64_to_cpu(info
->cap
.cap_id
),
754 le32_to_cpu(info
->cap
.caps
),
755 le32_to_cpu(info
->cap
.wanted
),
756 le32_to_cpu(info
->cap
.seq
),
757 le32_to_cpu(info
->cap
.mseq
),
758 le64_to_cpu(info
->cap
.realm
),
762 spin_lock(&inode
->i_lock
);
763 dout(" %p got snap_caps %s\n", inode
,
764 ceph_cap_string(le32_to_cpu(info
->cap
.caps
)));
765 ci
->i_snap_caps
|= le32_to_cpu(info
->cap
.caps
);
767 __ceph_get_fmode(ci
, cap_fmode
);
768 spin_unlock(&inode
->i_lock
);
770 } else if (cap_fmode
>= 0) {
771 pr_warning("mds issued no caps on %llx.%llx\n",
773 __ceph_get_fmode(ci
, cap_fmode
);
776 /* update delegation info? */
778 ceph_fill_dirfrag(inode
, dirinfo
);
784 ceph_buffer_put(xattr_blob
);
789 * caller should hold session s_mutex.
791 static void update_dentry_lease(struct dentry
*dentry
,
792 struct ceph_mds_reply_lease
*lease
,
793 struct ceph_mds_session
*session
,
794 unsigned long from_time
)
796 struct ceph_dentry_info
*di
= ceph_dentry(dentry
);
797 long unsigned duration
= le32_to_cpu(lease
->duration_ms
);
798 long unsigned ttl
= from_time
+ (duration
* HZ
) / 1000;
799 long unsigned half_ttl
= from_time
+ (duration
* HZ
/ 2) / 1000;
802 /* only track leases on regular dentries */
803 if (dentry
->d_op
!= &ceph_dentry_ops
)
806 spin_lock(&dentry
->d_lock
);
807 dout("update_dentry_lease %p mask %d duration %lu ms ttl %lu\n",
808 dentry
, le16_to_cpu(lease
->mask
), duration
, ttl
);
810 /* make lease_rdcache_gen match directory */
811 dir
= dentry
->d_parent
->d_inode
;
812 di
->lease_shared_gen
= ceph_inode(dir
)->i_shared_gen
;
814 if (lease
->mask
== 0)
817 if (di
->lease_gen
== session
->s_cap_gen
&&
818 time_before(ttl
, dentry
->d_time
))
819 goto out_unlock
; /* we already have a newer lease. */
821 if (di
->lease_session
&& di
->lease_session
!= session
)
824 ceph_dentry_lru_touch(dentry
);
826 if (!di
->lease_session
)
827 di
->lease_session
= ceph_get_mds_session(session
);
828 di
->lease_gen
= session
->s_cap_gen
;
829 di
->lease_seq
= le32_to_cpu(lease
->seq
);
830 di
->lease_renew_after
= half_ttl
;
831 di
->lease_renew_from
= 0;
832 dentry
->d_time
= ttl
;
834 spin_unlock(&dentry
->d_lock
);
839 * Set dentry's directory position based on the current dir's max, and
840 * order it in d_subdirs, so that dcache_readdir behaves.
842 static void ceph_set_dentry_offset(struct dentry
*dn
)
844 struct dentry
*dir
= dn
->d_parent
;
845 struct inode
*inode
= dn
->d_parent
->d_inode
;
846 struct ceph_dentry_info
*di
;
850 di
= ceph_dentry(dn
);
852 spin_lock(&inode
->i_lock
);
853 if ((ceph_inode(inode
)->i_ceph_flags
& CEPH_I_COMPLETE
) == 0) {
854 spin_unlock(&inode
->i_lock
);
857 di
->offset
= ceph_inode(inode
)->i_max_offset
++;
858 spin_unlock(&inode
->i_lock
);
860 spin_lock(&dir
->d_lock
);
861 spin_lock_nested(&dn
->d_lock
, DENTRY_D_LOCK_NESTED
);
862 list_move(&dn
->d_u
.d_child
, &dir
->d_subdirs
);
863 dout("set_dentry_offset %p %lld (%p %p)\n", dn
, di
->offset
,
864 dn
->d_u
.d_child
.prev
, dn
->d_u
.d_child
.next
);
865 spin_unlock(&dn
->d_lock
);
866 spin_unlock(&dir
->d_lock
);
870 * splice a dentry to an inode.
871 * caller must hold directory i_mutex for this to be safe.
873 * we will only rehash the resulting dentry if @prehash is
874 * true; @prehash will be set to false (for the benefit of
875 * the caller) if we fail.
877 static struct dentry
*splice_dentry(struct dentry
*dn
, struct inode
*in
,
878 bool *prehash
, bool set_offset
)
880 struct dentry
*realdn
;
884 /* dn must be unhashed */
887 realdn
= d_materialise_unique(dn
, in
);
888 if (IS_ERR(realdn
)) {
889 pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n",
890 PTR_ERR(realdn
), dn
, in
, ceph_vinop(in
));
892 *prehash
= false; /* don't rehash on error */
893 dn
= realdn
; /* note realdn contains the error */
896 dout("dn %p (%d) spliced with %p (%d) "
897 "inode %p ino %llx.%llx\n",
899 realdn
, realdn
->d_count
,
900 realdn
->d_inode
, ceph_vinop(realdn
->d_inode
));
904 BUG_ON(!ceph_dentry(dn
));
905 dout("dn %p attached to %p ino %llx.%llx\n",
906 dn
, dn
->d_inode
, ceph_vinop(dn
->d_inode
));
908 if ((!prehash
|| *prehash
) && d_unhashed(dn
))
911 ceph_set_dentry_offset(dn
);
917 * Incorporate results into the local cache. This is either just
918 * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
921 * A reply may contain
922 * a directory inode along with a dentry.
923 * and/or a target inode
925 * Called with snap_rwsem (read).
927 int ceph_fill_trace(struct super_block
*sb
, struct ceph_mds_request
*req
,
928 struct ceph_mds_session
*session
)
930 struct ceph_mds_reply_info_parsed
*rinfo
= &req
->r_reply_info
;
931 struct inode
*in
= NULL
;
932 struct ceph_mds_reply_inode
*ininfo
;
933 struct ceph_vino vino
;
934 struct ceph_fs_client
*fsc
= ceph_sb_to_client(sb
);
938 dout("fill_trace %p is_dentry %d is_target %d\n", req
,
939 rinfo
->head
->is_dentry
, rinfo
->head
->is_target
);
945 * If we resend completed ops to a recovering mds, we get no
946 * trace. Since that is very rare, pretend this is the case
947 * to ensure the 'no trace' handlers in the callers behave.
949 * Fill in inodes unconditionally to avoid breaking cap
952 if (rinfo
->head
->op
& CEPH_MDS_OP_WRITE
) {
953 pr_info("fill_trace faking empty trace on %lld %s\n",
954 req
->r_tid
, ceph_mds_op_name(rinfo
->head
->op
));
955 if (rinfo
->head
->is_dentry
) {
956 rinfo
->head
->is_dentry
= 0;
957 err
= fill_inode(req
->r_locked_dir
,
958 &rinfo
->diri
, rinfo
->dirfrag
,
959 session
, req
->r_request_started
, -1);
961 if (rinfo
->head
->is_target
) {
962 rinfo
->head
->is_target
= 0;
963 ininfo
= rinfo
->targeti
.in
;
964 vino
.ino
= le64_to_cpu(ininfo
->ino
);
965 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
966 in
= ceph_get_inode(sb
, vino
);
967 err
= fill_inode(in
, &rinfo
->targeti
, NULL
,
968 session
, req
->r_request_started
,
975 if (!rinfo
->head
->is_target
&& !rinfo
->head
->is_dentry
) {
976 dout("fill_trace reply is empty!\n");
977 if (rinfo
->head
->result
== 0 && req
->r_locked_dir
)
978 ceph_invalidate_dir_request(req
);
982 if (rinfo
->head
->is_dentry
) {
983 struct inode
*dir
= req
->r_locked_dir
;
985 err
= fill_inode(dir
, &rinfo
->diri
, rinfo
->dirfrag
,
986 session
, req
->r_request_started
, -1,
987 &req
->r_caps_reservation
);
993 * ignore null lease/binding on snapdir ENOENT, or else we
994 * will have trouble splicing in the virtual snapdir later
996 if (rinfo
->head
->is_dentry
&& !req
->r_aborted
&&
997 (rinfo
->head
->is_target
|| strncmp(req
->r_dentry
->d_name
.name
,
998 fsc
->mount_options
->snapdir_name
,
999 req
->r_dentry
->d_name
.len
))) {
1001 * lookup link rename : null -> possibly existing inode
1002 * mknod symlink mkdir : null -> new inode
1003 * unlink : linked -> null
1005 struct inode
*dir
= req
->r_locked_dir
;
1006 struct dentry
*dn
= req
->r_dentry
;
1007 bool have_dir_cap
, have_lease
;
1011 BUG_ON(dn
->d_parent
->d_inode
!= dir
);
1012 BUG_ON(ceph_ino(dir
) !=
1013 le64_to_cpu(rinfo
->diri
.in
->ino
));
1014 BUG_ON(ceph_snap(dir
) !=
1015 le64_to_cpu(rinfo
->diri
.in
->snapid
));
1017 /* do we have a lease on the whole dir? */
1019 (le32_to_cpu(rinfo
->diri
.in
->cap
.caps
) &
1020 CEPH_CAP_FILE_SHARED
);
1022 /* do we have a dn lease? */
1023 have_lease
= have_dir_cap
||
1024 (le16_to_cpu(rinfo
->dlease
->mask
) &
1028 dout("fill_trace no dentry lease or dir cap\n");
1031 if (req
->r_old_dentry
&& req
->r_op
== CEPH_MDS_OP_RENAME
) {
1032 dout(" src %p '%.*s' dst %p '%.*s'\n",
1034 req
->r_old_dentry
->d_name
.len
,
1035 req
->r_old_dentry
->d_name
.name
,
1036 dn
, dn
->d_name
.len
, dn
->d_name
.name
);
1037 dout("fill_trace doing d_move %p -> %p\n",
1038 req
->r_old_dentry
, dn
);
1040 d_move(req
->r_old_dentry
, dn
);
1041 dout(" src %p '%.*s' dst %p '%.*s'\n",
1043 req
->r_old_dentry
->d_name
.len
,
1044 req
->r_old_dentry
->d_name
.name
,
1045 dn
, dn
->d_name
.len
, dn
->d_name
.name
);
1047 /* ensure target dentry is invalidated, despite
1048 rehashing bug in vfs_rename_dir */
1049 ceph_invalidate_dentry_lease(dn
);
1052 * d_move() puts the renamed dentry at the end of
1053 * d_subdirs. We need to assign it an appropriate
1054 * directory offset so we can behave when holding
1057 ceph_set_dentry_offset(req
->r_old_dentry
);
1058 dout("dn %p gets new offset %lld\n", req
->r_old_dentry
,
1059 ceph_dentry(req
->r_old_dentry
)->offset
);
1061 dn
= req
->r_old_dentry
; /* use old_dentry */
1066 if (!rinfo
->head
->is_target
) {
1067 dout("fill_trace null dentry\n");
1069 dout("d_delete %p\n", dn
);
1072 dout("d_instantiate %p NULL\n", dn
);
1073 d_instantiate(dn
, NULL
);
1074 if (have_lease
&& d_unhashed(dn
))
1076 update_dentry_lease(dn
, rinfo
->dlease
,
1078 req
->r_request_started
);
1083 /* attach proper inode */
1084 ininfo
= rinfo
->targeti
.in
;
1085 vino
.ino
= le64_to_cpu(ininfo
->ino
);
1086 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
1089 in
= ceph_get_inode(sb
, vino
);
1091 pr_err("fill_trace bad get_inode "
1092 "%llx.%llx\n", vino
.ino
, vino
.snap
);
1097 dn
= splice_dentry(dn
, in
, &have_lease
, true);
1102 req
->r_dentry
= dn
; /* may have spliced */
1104 } else if (ceph_ino(in
) == vino
.ino
&&
1105 ceph_snap(in
) == vino
.snap
) {
1108 dout(" %p links to %p %llx.%llx, not %llx.%llx\n",
1109 dn
, in
, ceph_ino(in
), ceph_snap(in
),
1110 vino
.ino
, vino
.snap
);
1116 update_dentry_lease(dn
, rinfo
->dlease
, session
,
1117 req
->r_request_started
);
1118 dout(" final dn %p\n", dn
);
1120 } else if (req
->r_op
== CEPH_MDS_OP_LOOKUPSNAP
||
1121 req
->r_op
== CEPH_MDS_OP_MKSNAP
) {
1122 struct dentry
*dn
= req
->r_dentry
;
1124 /* fill out a snapdir LOOKUPSNAP dentry */
1126 BUG_ON(!req
->r_locked_dir
);
1127 BUG_ON(ceph_snap(req
->r_locked_dir
) != CEPH_SNAPDIR
);
1128 ininfo
= rinfo
->targeti
.in
;
1129 vino
.ino
= le64_to_cpu(ininfo
->ino
);
1130 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
1131 in
= ceph_get_inode(sb
, vino
);
1133 pr_err("fill_inode get_inode badness %llx.%llx\n",
1134 vino
.ino
, vino
.snap
);
1139 dout(" linking snapped dir %p to dn %p\n", in
, dn
);
1140 dn
= splice_dentry(dn
, in
, NULL
, true);
1145 req
->r_dentry
= dn
; /* may have spliced */
1147 rinfo
->head
->is_dentry
= 1; /* fool notrace handlers */
1150 if (rinfo
->head
->is_target
) {
1151 vino
.ino
= le64_to_cpu(rinfo
->targeti
.in
->ino
);
1152 vino
.snap
= le64_to_cpu(rinfo
->targeti
.in
->snapid
);
1154 if (in
== NULL
|| ceph_ino(in
) != vino
.ino
||
1155 ceph_snap(in
) != vino
.snap
) {
1156 in
= ceph_get_inode(sb
, vino
);
1162 req
->r_target_inode
= in
;
1164 err
= fill_inode(in
,
1165 &rinfo
->targeti
, NULL
,
1166 session
, req
->r_request_started
,
1167 (le32_to_cpu(rinfo
->head
->result
) == 0) ?
1169 &req
->r_caps_reservation
);
1171 pr_err("fill_inode badness %p %llx.%llx\n",
1172 in
, ceph_vinop(in
));
1178 dout("fill_trace done err=%d\n", err
);
1183 * Prepopulate our cache with readdir results, leases, etc.
1185 int ceph_readdir_prepopulate(struct ceph_mds_request
*req
,
1186 struct ceph_mds_session
*session
)
1188 struct dentry
*parent
= req
->r_dentry
;
1189 struct ceph_mds_reply_info_parsed
*rinfo
= &req
->r_reply_info
;
1194 struct inode
*snapdir
= NULL
;
1195 struct ceph_mds_request_head
*rhead
= req
->r_request
->front
.iov_base
;
1196 u64 frag
= le32_to_cpu(rhead
->args
.readdir
.frag
);
1197 struct ceph_dentry_info
*di
;
1199 if (le32_to_cpu(rinfo
->head
->op
) == CEPH_MDS_OP_LSSNAP
) {
1200 snapdir
= ceph_get_snapdir(parent
->d_inode
);
1201 parent
= d_find_alias(snapdir
);
1202 dout("readdir_prepopulate %d items under SNAPDIR dn %p\n",
1203 rinfo
->dir_nr
, parent
);
1205 dout("readdir_prepopulate %d items under dn %p\n",
1206 rinfo
->dir_nr
, parent
);
1208 ceph_fill_dirfrag(parent
->d_inode
, rinfo
->dir_dir
);
1211 for (i
= 0; i
< rinfo
->dir_nr
; i
++) {
1212 struct ceph_vino vino
;
1214 dname
.name
= rinfo
->dir_dname
[i
];
1215 dname
.len
= rinfo
->dir_dname_len
[i
];
1216 dname
.hash
= full_name_hash(dname
.name
, dname
.len
);
1218 vino
.ino
= le64_to_cpu(rinfo
->dir_in
[i
].in
->ino
);
1219 vino
.snap
= le64_to_cpu(rinfo
->dir_in
[i
].in
->snapid
);
1222 dn
= d_lookup(parent
, &dname
);
1223 dout("d_lookup on parent=%p name=%.*s got %p\n",
1224 parent
, dname
.len
, dname
.name
, dn
);
1227 dn
= d_alloc(parent
, &dname
);
1228 dout("d_alloc %p '%.*s' = %p\n", parent
,
1229 dname
.len
, dname
.name
, dn
);
1231 dout("d_alloc badness\n");
1235 err
= ceph_init_dentry(dn
);
1240 } else if (dn
->d_inode
&&
1241 (ceph_ino(dn
->d_inode
) != vino
.ino
||
1242 ceph_snap(dn
->d_inode
) != vino
.snap
)) {
1243 dout(" dn %p points to wrong inode %p\n",
1249 /* reorder parent's d_subdirs */
1250 spin_lock(&parent
->d_lock
);
1251 spin_lock_nested(&dn
->d_lock
, DENTRY_D_LOCK_NESTED
);
1252 list_move(&dn
->d_u
.d_child
, &parent
->d_subdirs
);
1253 spin_unlock(&dn
->d_lock
);
1254 spin_unlock(&parent
->d_lock
);
1258 di
->offset
= ceph_make_fpos(frag
, i
+ req
->r_readdir_offset
);
1264 in
= ceph_get_inode(parent
->d_sb
, vino
);
1266 dout("new_inode badness\n");
1272 dn
= splice_dentry(dn
, in
, NULL
, false);
1277 if (fill_inode(in
, &rinfo
->dir_in
[i
], NULL
, session
,
1278 req
->r_request_started
, -1,
1279 &req
->r_caps_reservation
) < 0) {
1280 pr_err("fill_inode badness on %p\n", in
);
1284 update_dentry_lease(dn
, rinfo
->dir_dlease
[i
],
1286 req
->r_request_started
);
1291 req
->r_did_prepopulate
= true;
1298 dout("readdir_prepopulate done\n");
1302 int ceph_inode_set_size(struct inode
*inode
, loff_t size
)
1304 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1307 spin_lock(&inode
->i_lock
);
1308 dout("set_size %p %llu -> %llu\n", inode
, inode
->i_size
, size
);
1309 inode
->i_size
= size
;
1310 inode
->i_blocks
= (size
+ (1 << 9) - 1) >> 9;
1312 /* tell the MDS if we are approaching max_size */
1313 if ((size
<< 1) >= ci
->i_max_size
&&
1314 (ci
->i_reported_size
<< 1) < ci
->i_max_size
)
1317 spin_unlock(&inode
->i_lock
);
1322 * Write back inode data in a worker thread. (This can't be done
1323 * in the message handler context.)
1325 void ceph_queue_writeback(struct inode
*inode
)
1327 if (queue_work(ceph_inode_to_client(inode
)->wb_wq
,
1328 &ceph_inode(inode
)->i_wb_work
)) {
1329 dout("ceph_queue_writeback %p\n", inode
);
1332 dout("ceph_queue_writeback %p failed\n", inode
);
1336 static void ceph_writeback_work(struct work_struct
*work
)
1338 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1340 struct inode
*inode
= &ci
->vfs_inode
;
1342 dout("writeback %p\n", inode
);
1343 filemap_fdatawrite(&inode
->i_data
);
1348 * queue an async invalidation
1350 void ceph_queue_invalidate(struct inode
*inode
)
1352 if (queue_work(ceph_inode_to_client(inode
)->pg_inv_wq
,
1353 &ceph_inode(inode
)->i_pg_inv_work
)) {
1354 dout("ceph_queue_invalidate %p\n", inode
);
1357 dout("ceph_queue_invalidate %p failed\n", inode
);
1362 * invalidate any pages that are not dirty or under writeback. this
1363 * includes pages that are clean and mapped.
1365 static void ceph_invalidate_nondirty_pages(struct address_space
*mapping
)
1367 struct pagevec pvec
;
1371 pagevec_init(&pvec
, 0);
1372 while (pagevec_lookup(&pvec
, mapping
, next
, PAGEVEC_SIZE
)) {
1373 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
1374 struct page
*page
= pvec
.pages
[i
];
1377 (PageDirty(page
) || PageWriteback(page
));
1380 skip_page
= !trylock_page(page
);
1383 * We really shouldn't be looking at the ->index of an
1384 * unlocked page. But we're not allowed to lock these
1385 * pages. So we rely upon nobody altering the ->index
1386 * of this (pinned-by-us) page.
1388 index
= page
->index
;
1396 generic_error_remove_page(mapping
, page
);
1399 pagevec_release(&pvec
);
1405 * Invalidate inode pages in a worker thread. (This can't be done
1406 * in the message handler context.)
1408 static void ceph_invalidate_work(struct work_struct
*work
)
1410 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1412 struct inode
*inode
= &ci
->vfs_inode
;
1416 spin_lock(&inode
->i_lock
);
1417 dout("invalidate_pages %p gen %d revoking %d\n", inode
,
1418 ci
->i_rdcache_gen
, ci
->i_rdcache_revoking
);
1419 if (ci
->i_rdcache_revoking
!= ci
->i_rdcache_gen
) {
1421 spin_unlock(&inode
->i_lock
);
1424 orig_gen
= ci
->i_rdcache_gen
;
1425 spin_unlock(&inode
->i_lock
);
1427 ceph_invalidate_nondirty_pages(inode
->i_mapping
);
1429 spin_lock(&inode
->i_lock
);
1430 if (orig_gen
== ci
->i_rdcache_gen
&&
1431 orig_gen
== ci
->i_rdcache_revoking
) {
1432 dout("invalidate_pages %p gen %d successful\n", inode
,
1434 ci
->i_rdcache_revoking
--;
1437 dout("invalidate_pages %p gen %d raced, now %d revoking %d\n",
1438 inode
, orig_gen
, ci
->i_rdcache_gen
,
1439 ci
->i_rdcache_revoking
);
1441 spin_unlock(&inode
->i_lock
);
1444 ceph_check_caps(ci
, 0, NULL
);
1451 * called by trunc_wq; take i_mutex ourselves
1453 * We also truncate in a separate thread as well.
1455 static void ceph_vmtruncate_work(struct work_struct
*work
)
1457 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1459 struct inode
*inode
= &ci
->vfs_inode
;
1461 dout("vmtruncate_work %p\n", inode
);
1462 mutex_lock(&inode
->i_mutex
);
1463 __ceph_do_pending_vmtruncate(inode
);
1464 mutex_unlock(&inode
->i_mutex
);
1469 * Queue an async vmtruncate. If we fail to queue work, we will handle
1470 * the truncation the next time we call __ceph_do_pending_vmtruncate.
1472 void ceph_queue_vmtruncate(struct inode
*inode
)
1474 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1476 if (queue_work(ceph_sb_to_client(inode
->i_sb
)->trunc_wq
,
1477 &ci
->i_vmtruncate_work
)) {
1478 dout("ceph_queue_vmtruncate %p\n", inode
);
1481 dout("ceph_queue_vmtruncate %p failed, pending=%d\n",
1482 inode
, ci
->i_truncate_pending
);
1487 * called with i_mutex held.
1489 * Make sure any pending truncation is applied before doing anything
1490 * that may depend on it.
1492 void __ceph_do_pending_vmtruncate(struct inode
*inode
)
1494 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1496 int wrbuffer_refs
, wake
= 0;
1499 spin_lock(&inode
->i_lock
);
1500 if (ci
->i_truncate_pending
== 0) {
1501 dout("__do_pending_vmtruncate %p none pending\n", inode
);
1502 spin_unlock(&inode
->i_lock
);
1507 * make sure any dirty snapped pages are flushed before we
1508 * possibly truncate them.. so write AND block!
1510 if (ci
->i_wrbuffer_ref_head
< ci
->i_wrbuffer_ref
) {
1511 dout("__do_pending_vmtruncate %p flushing snaps first\n",
1513 spin_unlock(&inode
->i_lock
);
1514 filemap_write_and_wait_range(&inode
->i_data
, 0,
1515 inode
->i_sb
->s_maxbytes
);
1519 to
= ci
->i_truncate_size
;
1520 wrbuffer_refs
= ci
->i_wrbuffer_ref
;
1521 dout("__do_pending_vmtruncate %p (%d) to %lld\n", inode
,
1522 ci
->i_truncate_pending
, to
);
1523 spin_unlock(&inode
->i_lock
);
1525 truncate_inode_pages(inode
->i_mapping
, to
);
1527 spin_lock(&inode
->i_lock
);
1528 ci
->i_truncate_pending
--;
1529 if (ci
->i_truncate_pending
== 0)
1531 spin_unlock(&inode
->i_lock
);
1533 if (wrbuffer_refs
== 0)
1534 ceph_check_caps(ci
, CHECK_CAPS_AUTHONLY
, NULL
);
1536 wake_up_all(&ci
->i_cap_wq
);
1543 static void *ceph_sym_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1545 struct ceph_inode_info
*ci
= ceph_inode(dentry
->d_inode
);
1546 nd_set_link(nd
, ci
->i_symlink
);
1550 static const struct inode_operations ceph_symlink_iops
= {
1551 .readlink
= generic_readlink
,
1552 .follow_link
= ceph_sym_follow_link
,
1558 int ceph_setattr(struct dentry
*dentry
, struct iattr
*attr
)
1560 struct inode
*inode
= dentry
->d_inode
;
1561 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1562 struct inode
*parent_inode
= dentry
->d_parent
->d_inode
;
1563 const unsigned int ia_valid
= attr
->ia_valid
;
1564 struct ceph_mds_request
*req
;
1565 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(dentry
->d_sb
)->mdsc
;
1567 int release
= 0, dirtied
= 0;
1571 if (ceph_snap(inode
) != CEPH_NOSNAP
)
1574 __ceph_do_pending_vmtruncate(inode
);
1576 err
= inode_change_ok(inode
, attr
);
1580 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_SETATTR
,
1583 return PTR_ERR(req
);
1585 spin_lock(&inode
->i_lock
);
1586 issued
= __ceph_caps_issued(ci
, NULL
);
1587 dout("setattr %p issued %s\n", inode
, ceph_cap_string(issued
));
1589 if (ia_valid
& ATTR_UID
) {
1590 dout("setattr %p uid %d -> %d\n", inode
,
1591 inode
->i_uid
, attr
->ia_uid
);
1592 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1593 inode
->i_uid
= attr
->ia_uid
;
1594 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1595 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1596 attr
->ia_uid
!= inode
->i_uid
) {
1597 req
->r_args
.setattr
.uid
= cpu_to_le32(attr
->ia_uid
);
1598 mask
|= CEPH_SETATTR_UID
;
1599 release
|= CEPH_CAP_AUTH_SHARED
;
1602 if (ia_valid
& ATTR_GID
) {
1603 dout("setattr %p gid %d -> %d\n", inode
,
1604 inode
->i_gid
, attr
->ia_gid
);
1605 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1606 inode
->i_gid
= attr
->ia_gid
;
1607 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1608 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1609 attr
->ia_gid
!= inode
->i_gid
) {
1610 req
->r_args
.setattr
.gid
= cpu_to_le32(attr
->ia_gid
);
1611 mask
|= CEPH_SETATTR_GID
;
1612 release
|= CEPH_CAP_AUTH_SHARED
;
1615 if (ia_valid
& ATTR_MODE
) {
1616 dout("setattr %p mode 0%o -> 0%o\n", inode
, inode
->i_mode
,
1618 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1619 inode
->i_mode
= attr
->ia_mode
;
1620 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1621 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1622 attr
->ia_mode
!= inode
->i_mode
) {
1623 req
->r_args
.setattr
.mode
= cpu_to_le32(attr
->ia_mode
);
1624 mask
|= CEPH_SETATTR_MODE
;
1625 release
|= CEPH_CAP_AUTH_SHARED
;
1629 if (ia_valid
& ATTR_ATIME
) {
1630 dout("setattr %p atime %ld.%ld -> %ld.%ld\n", inode
,
1631 inode
->i_atime
.tv_sec
, inode
->i_atime
.tv_nsec
,
1632 attr
->ia_atime
.tv_sec
, attr
->ia_atime
.tv_nsec
);
1633 if (issued
& CEPH_CAP_FILE_EXCL
) {
1634 ci
->i_time_warp_seq
++;
1635 inode
->i_atime
= attr
->ia_atime
;
1636 dirtied
|= CEPH_CAP_FILE_EXCL
;
1637 } else if ((issued
& CEPH_CAP_FILE_WR
) &&
1638 timespec_compare(&inode
->i_atime
,
1639 &attr
->ia_atime
) < 0) {
1640 inode
->i_atime
= attr
->ia_atime
;
1641 dirtied
|= CEPH_CAP_FILE_WR
;
1642 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1643 !timespec_equal(&inode
->i_atime
, &attr
->ia_atime
)) {
1644 ceph_encode_timespec(&req
->r_args
.setattr
.atime
,
1646 mask
|= CEPH_SETATTR_ATIME
;
1647 release
|= CEPH_CAP_FILE_CACHE
| CEPH_CAP_FILE_RD
|
1651 if (ia_valid
& ATTR_MTIME
) {
1652 dout("setattr %p mtime %ld.%ld -> %ld.%ld\n", inode
,
1653 inode
->i_mtime
.tv_sec
, inode
->i_mtime
.tv_nsec
,
1654 attr
->ia_mtime
.tv_sec
, attr
->ia_mtime
.tv_nsec
);
1655 if (issued
& CEPH_CAP_FILE_EXCL
) {
1656 ci
->i_time_warp_seq
++;
1657 inode
->i_mtime
= attr
->ia_mtime
;
1658 dirtied
|= CEPH_CAP_FILE_EXCL
;
1659 } else if ((issued
& CEPH_CAP_FILE_WR
) &&
1660 timespec_compare(&inode
->i_mtime
,
1661 &attr
->ia_mtime
) < 0) {
1662 inode
->i_mtime
= attr
->ia_mtime
;
1663 dirtied
|= CEPH_CAP_FILE_WR
;
1664 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1665 !timespec_equal(&inode
->i_mtime
, &attr
->ia_mtime
)) {
1666 ceph_encode_timespec(&req
->r_args
.setattr
.mtime
,
1668 mask
|= CEPH_SETATTR_MTIME
;
1669 release
|= CEPH_CAP_FILE_SHARED
| CEPH_CAP_FILE_RD
|
1673 if (ia_valid
& ATTR_SIZE
) {
1674 dout("setattr %p size %lld -> %lld\n", inode
,
1675 inode
->i_size
, attr
->ia_size
);
1676 if (attr
->ia_size
> inode
->i_sb
->s_maxbytes
) {
1680 if ((issued
& CEPH_CAP_FILE_EXCL
) &&
1681 attr
->ia_size
> inode
->i_size
) {
1682 inode
->i_size
= attr
->ia_size
;
1684 (attr
->ia_size
+ (1 << 9) - 1) >> 9;
1685 inode
->i_ctime
= attr
->ia_ctime
;
1686 ci
->i_reported_size
= attr
->ia_size
;
1687 dirtied
|= CEPH_CAP_FILE_EXCL
;
1688 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1689 attr
->ia_size
!= inode
->i_size
) {
1690 req
->r_args
.setattr
.size
= cpu_to_le64(attr
->ia_size
);
1691 req
->r_args
.setattr
.old_size
=
1692 cpu_to_le64(inode
->i_size
);
1693 mask
|= CEPH_SETATTR_SIZE
;
1694 release
|= CEPH_CAP_FILE_SHARED
| CEPH_CAP_FILE_RD
|
1699 /* these do nothing */
1700 if (ia_valid
& ATTR_CTIME
) {
1701 bool only
= (ia_valid
& (ATTR_SIZE
|ATTR_MTIME
|ATTR_ATIME
|
1702 ATTR_MODE
|ATTR_UID
|ATTR_GID
)) == 0;
1703 dout("setattr %p ctime %ld.%ld -> %ld.%ld (%s)\n", inode
,
1704 inode
->i_ctime
.tv_sec
, inode
->i_ctime
.tv_nsec
,
1705 attr
->ia_ctime
.tv_sec
, attr
->ia_ctime
.tv_nsec
,
1706 only
? "ctime only" : "ignored");
1707 inode
->i_ctime
= attr
->ia_ctime
;
1710 * if kernel wants to dirty ctime but nothing else,
1711 * we need to choose a cap to dirty under, or do
1712 * a almost-no-op setattr
1714 if (issued
& CEPH_CAP_AUTH_EXCL
)
1715 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1716 else if (issued
& CEPH_CAP_FILE_EXCL
)
1717 dirtied
|= CEPH_CAP_FILE_EXCL
;
1718 else if (issued
& CEPH_CAP_XATTR_EXCL
)
1719 dirtied
|= CEPH_CAP_XATTR_EXCL
;
1721 mask
|= CEPH_SETATTR_CTIME
;
1724 if (ia_valid
& ATTR_FILE
)
1725 dout("setattr %p ATTR_FILE ... hrm!\n", inode
);
1728 __ceph_mark_dirty_caps(ci
, dirtied
);
1729 inode
->i_ctime
= CURRENT_TIME
;
1733 spin_unlock(&inode
->i_lock
);
1736 req
->r_inode
= igrab(inode
);
1737 req
->r_inode_drop
= release
;
1738 req
->r_args
.setattr
.mask
= cpu_to_le32(mask
);
1739 req
->r_num_caps
= 1;
1740 err
= ceph_mdsc_do_request(mdsc
, parent_inode
, req
);
1742 dout("setattr %p result=%d (%s locally, %d remote)\n", inode
, err
,
1743 ceph_cap_string(dirtied
), mask
);
1745 ceph_mdsc_put_request(req
);
1746 __ceph_do_pending_vmtruncate(inode
);
1749 spin_unlock(&inode
->i_lock
);
1750 ceph_mdsc_put_request(req
);
1755 * Verify that we have a lease on the given mask. If not,
1756 * do a getattr against an mds.
1758 int ceph_do_getattr(struct inode
*inode
, int mask
)
1760 struct ceph_fs_client
*fsc
= ceph_sb_to_client(inode
->i_sb
);
1761 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
1762 struct ceph_mds_request
*req
;
1765 if (ceph_snap(inode
) == CEPH_SNAPDIR
) {
1766 dout("do_getattr inode %p SNAPDIR\n", inode
);
1770 dout("do_getattr inode %p mask %s mode 0%o\n", inode
, ceph_cap_string(mask
), inode
->i_mode
);
1771 if (ceph_caps_issued_mask(ceph_inode(inode
), mask
, 1))
1774 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_GETATTR
, USE_ANY_MDS
);
1776 return PTR_ERR(req
);
1777 req
->r_inode
= igrab(inode
);
1778 req
->r_num_caps
= 1;
1779 req
->r_args
.getattr
.mask
= cpu_to_le32(mask
);
1780 err
= ceph_mdsc_do_request(mdsc
, NULL
, req
);
1781 ceph_mdsc_put_request(req
);
1782 dout("do_getattr result=%d\n", err
);
1788 * Check inode permissions. We verify we have a valid value for
1789 * the AUTH cap, then call the generic handler.
1791 int ceph_permission(struct inode
*inode
, int mask
, unsigned int flags
)
1795 if (flags
& IPERM_FLAG_RCU
)
1798 err
= ceph_do_getattr(inode
, CEPH_CAP_AUTH_SHARED
);
1801 err
= generic_permission(inode
, mask
, flags
, NULL
);
1806 * Get all attributes. Hopefully somedata we'll have a statlite()
1807 * and can limit the fields we require to be accurate.
1809 int ceph_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
1812 struct inode
*inode
= dentry
->d_inode
;
1813 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1816 err
= ceph_do_getattr(inode
, CEPH_STAT_CAP_INODE_ALL
);
1818 generic_fillattr(inode
, stat
);
1819 stat
->ino
= ceph_translate_ino(inode
->i_sb
, inode
->i_ino
);
1820 if (ceph_snap(inode
) != CEPH_NOSNAP
)
1821 stat
->dev
= ceph_snap(inode
);
1824 if (S_ISDIR(inode
->i_mode
)) {
1825 if (ceph_test_mount_opt(ceph_sb_to_client(inode
->i_sb
),
1827 stat
->size
= ci
->i_rbytes
;
1829 stat
->size
= ci
->i_files
+ ci
->i_subdirs
;
1831 stat
->blksize
= 65536;