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 struct inode
*ceph_get_inode(struct super_block
*sb
, struct ceph_vino vino
)
42 ino_t t
= ceph_vino_to_ino(vino
);
44 inode
= iget5_locked(sb
, t
, ceph_ino_compare
, ceph_set_ino_cb
, &vino
);
46 return ERR_PTR(-ENOMEM
);
47 if (inode
->i_state
& I_NEW
) {
48 dout("get_inode created new inode %p %llx.%llx ino %llx\n",
49 inode
, ceph_vinop(inode
), (u64
)inode
->i_ino
);
50 unlock_new_inode(inode
);
53 dout("get_inode on %lu=%llx.%llx got %p\n", inode
->i_ino
, vino
.ino
,
59 * get/constuct snapdir inode for a given directory
61 struct inode
*ceph_get_snapdir(struct inode
*parent
)
63 struct ceph_vino vino
= {
64 .ino
= ceph_ino(parent
),
67 struct inode
*inode
= ceph_get_inode(parent
->i_sb
, vino
);
68 struct ceph_inode_info
*ci
= ceph_inode(inode
);
70 BUG_ON(!S_ISDIR(parent
->i_mode
));
73 inode
->i_mode
= parent
->i_mode
;
74 inode
->i_uid
= parent
->i_uid
;
75 inode
->i_gid
= parent
->i_gid
;
76 inode
->i_op
= &ceph_dir_iops
;
77 inode
->i_fop
= &ceph_dir_fops
;
78 ci
->i_snap_caps
= CEPH_CAP_PIN
; /* so we can open */
83 const struct inode_operations ceph_file_iops
= {
84 .permission
= ceph_permission
,
85 .setattr
= ceph_setattr
,
86 .getattr
= ceph_getattr
,
87 .setxattr
= ceph_setxattr
,
88 .getxattr
= ceph_getxattr
,
89 .listxattr
= ceph_listxattr
,
90 .removexattr
= ceph_removexattr
,
95 * We use a 'frag tree' to keep track of the MDS's directory fragments
96 * for a given inode (usually there is just a single fragment). We
97 * need to know when a child frag is delegated to a new MDS, or when
98 * it is flagged as replicated, so we can direct our requests
103 * find/create a frag in the tree
105 static struct ceph_inode_frag
*__get_or_create_frag(struct ceph_inode_info
*ci
,
109 struct rb_node
*parent
= NULL
;
110 struct ceph_inode_frag
*frag
;
113 p
= &ci
->i_fragtree
.rb_node
;
116 frag
= rb_entry(parent
, struct ceph_inode_frag
, node
);
117 c
= ceph_frag_compare(f
, frag
->frag
);
126 frag
= kmalloc(sizeof(*frag
), GFP_NOFS
);
128 pr_err("__get_or_create_frag ENOMEM on %p %llx.%llx "
129 "frag %x\n", &ci
->vfs_inode
,
130 ceph_vinop(&ci
->vfs_inode
), f
);
131 return ERR_PTR(-ENOMEM
);
138 rb_link_node(&frag
->node
, parent
, p
);
139 rb_insert_color(&frag
->node
, &ci
->i_fragtree
);
141 dout("get_or_create_frag added %llx.%llx frag %x\n",
142 ceph_vinop(&ci
->vfs_inode
), f
);
147 * find a specific frag @f
149 struct ceph_inode_frag
*__ceph_find_frag(struct ceph_inode_info
*ci
, u32 f
)
151 struct rb_node
*n
= ci
->i_fragtree
.rb_node
;
154 struct ceph_inode_frag
*frag
=
155 rb_entry(n
, struct ceph_inode_frag
, node
);
156 int c
= ceph_frag_compare(f
, frag
->frag
);
168 * Choose frag containing the given value @v. If @pfrag is
169 * specified, copy the frag delegation info to the caller if
172 u32
ceph_choose_frag(struct ceph_inode_info
*ci
, u32 v
,
173 struct ceph_inode_frag
*pfrag
,
176 u32 t
= ceph_frag_make(0, 0);
177 struct ceph_inode_frag
*frag
;
184 mutex_lock(&ci
->i_fragtree_mutex
);
186 WARN_ON(!ceph_frag_contains_value(t
, v
));
187 frag
= __ceph_find_frag(ci
, t
);
189 break; /* t is a leaf */
190 if (frag
->split_by
== 0) {
192 memcpy(pfrag
, frag
, sizeof(*pfrag
));
199 nway
= 1 << frag
->split_by
;
200 dout("choose_frag(%x) %x splits by %d (%d ways)\n", v
, t
,
201 frag
->split_by
, nway
);
202 for (i
= 0; i
< nway
; i
++) {
203 n
= ceph_frag_make_child(t
, frag
->split_by
, i
);
204 if (ceph_frag_contains_value(n
, v
)) {
211 dout("choose_frag(%x) = %x\n", v
, t
);
213 mutex_unlock(&ci
->i_fragtree_mutex
);
218 * Process dirfrag (delegation) info from the mds. Include leaf
219 * fragment in tree ONLY if ndist > 0. Otherwise, only
220 * branches/splits are included in i_fragtree)
222 static int ceph_fill_dirfrag(struct inode
*inode
,
223 struct ceph_mds_reply_dirfrag
*dirinfo
)
225 struct ceph_inode_info
*ci
= ceph_inode(inode
);
226 struct ceph_inode_frag
*frag
;
227 u32 id
= le32_to_cpu(dirinfo
->frag
);
228 int mds
= le32_to_cpu(dirinfo
->auth
);
229 int ndist
= le32_to_cpu(dirinfo
->ndist
);
233 mutex_lock(&ci
->i_fragtree_mutex
);
235 /* no delegation info needed. */
236 frag
= __ceph_find_frag(ci
, id
);
239 if (frag
->split_by
== 0) {
240 /* tree leaf, remove */
241 dout("fill_dirfrag removed %llx.%llx frag %x"
242 " (no ref)\n", ceph_vinop(inode
), id
);
243 rb_erase(&frag
->node
, &ci
->i_fragtree
);
246 /* tree branch, keep and clear */
247 dout("fill_dirfrag cleared %llx.%llx frag %x"
248 " referral\n", ceph_vinop(inode
), id
);
256 /* find/add this frag to store mds delegation info */
257 frag
= __get_or_create_frag(ci
, id
);
259 /* this is not the end of the world; we can continue
260 with bad/inaccurate delegation info */
261 pr_err("fill_dirfrag ENOMEM on mds ref %llx.%llx fg %x\n",
262 ceph_vinop(inode
), le32_to_cpu(dirinfo
->frag
));
268 frag
->ndist
= min_t(u32
, ndist
, CEPH_MAX_DIRFRAG_REP
);
269 for (i
= 0; i
< frag
->ndist
; i
++)
270 frag
->dist
[i
] = le32_to_cpu(dirinfo
->dist
[i
]);
271 dout("fill_dirfrag %llx.%llx frag %x ndist=%d\n",
272 ceph_vinop(inode
), frag
->frag
, frag
->ndist
);
275 mutex_unlock(&ci
->i_fragtree_mutex
);
281 * initialize a newly allocated inode.
283 struct inode
*ceph_alloc_inode(struct super_block
*sb
)
285 struct ceph_inode_info
*ci
;
288 ci
= kmem_cache_alloc(ceph_inode_cachep
, GFP_NOFS
);
292 dout("alloc_inode %p\n", &ci
->vfs_inode
);
295 ci
->i_time_warp_seq
= 0;
296 ci
->i_ceph_flags
= 0;
297 ci
->i_release_count
= 0;
298 ci
->i_symlink
= NULL
;
300 memset(&ci
->i_dir_layout
, 0, sizeof(ci
->i_dir_layout
));
302 ci
->i_fragtree
= RB_ROOT
;
303 mutex_init(&ci
->i_fragtree_mutex
);
305 ci
->i_xattrs
.blob
= NULL
;
306 ci
->i_xattrs
.prealloc_blob
= NULL
;
307 ci
->i_xattrs
.dirty
= false;
308 ci
->i_xattrs
.index
= RB_ROOT
;
309 ci
->i_xattrs
.count
= 0;
310 ci
->i_xattrs
.names_size
= 0;
311 ci
->i_xattrs
.vals_size
= 0;
312 ci
->i_xattrs
.version
= 0;
313 ci
->i_xattrs
.index_version
= 0;
315 ci
->i_caps
= RB_ROOT
;
316 ci
->i_auth_cap
= NULL
;
317 ci
->i_dirty_caps
= 0;
318 ci
->i_flushing_caps
= 0;
319 INIT_LIST_HEAD(&ci
->i_dirty_item
);
320 INIT_LIST_HEAD(&ci
->i_flushing_item
);
321 ci
->i_cap_flush_seq
= 0;
322 ci
->i_cap_flush_last_tid
= 0;
323 memset(&ci
->i_cap_flush_tid
, 0, sizeof(ci
->i_cap_flush_tid
));
324 init_waitqueue_head(&ci
->i_cap_wq
);
325 ci
->i_hold_caps_min
= 0;
326 ci
->i_hold_caps_max
= 0;
327 INIT_LIST_HEAD(&ci
->i_cap_delay_list
);
328 ci
->i_cap_exporting_mds
= 0;
329 ci
->i_cap_exporting_mseq
= 0;
330 ci
->i_cap_exporting_issued
= 0;
331 INIT_LIST_HEAD(&ci
->i_cap_snaps
);
332 ci
->i_head_snapc
= NULL
;
335 for (i
= 0; i
< CEPH_FILE_MODE_NUM
; i
++)
336 ci
->i_nr_by_mode
[i
] = 0;
338 ci
->i_truncate_seq
= 0;
339 ci
->i_truncate_size
= 0;
340 ci
->i_truncate_pending
= 0;
343 ci
->i_reported_size
= 0;
344 ci
->i_wanted_max_size
= 0;
345 ci
->i_requested_max_size
= 0;
349 ci
->i_rdcache_ref
= 0;
351 ci
->i_wrbuffer_ref
= 0;
352 ci
->i_wrbuffer_ref_head
= 0;
353 ci
->i_shared_gen
= 0;
354 ci
->i_rdcache_gen
= 0;
355 ci
->i_rdcache_revoking
= 0;
357 INIT_LIST_HEAD(&ci
->i_unsafe_writes
);
358 INIT_LIST_HEAD(&ci
->i_unsafe_dirops
);
359 spin_lock_init(&ci
->i_unsafe_lock
);
361 ci
->i_snap_realm
= NULL
;
362 INIT_LIST_HEAD(&ci
->i_snap_realm_item
);
363 INIT_LIST_HEAD(&ci
->i_snap_flush_item
);
365 INIT_WORK(&ci
->i_wb_work
, ceph_writeback_work
);
366 INIT_WORK(&ci
->i_pg_inv_work
, ceph_invalidate_work
);
368 INIT_WORK(&ci
->i_vmtruncate_work
, ceph_vmtruncate_work
);
370 return &ci
->vfs_inode
;
373 static void ceph_i_callback(struct rcu_head
*head
)
375 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
376 struct ceph_inode_info
*ci
= ceph_inode(inode
);
378 INIT_LIST_HEAD(&inode
->i_dentry
);
379 kmem_cache_free(ceph_inode_cachep
, ci
);
382 void ceph_destroy_inode(struct inode
*inode
)
384 struct ceph_inode_info
*ci
= ceph_inode(inode
);
385 struct ceph_inode_frag
*frag
;
388 dout("destroy_inode %p ino %llx.%llx\n", inode
, ceph_vinop(inode
));
390 ceph_queue_caps_release(inode
);
393 * we may still have a snap_realm reference if there are stray
394 * caps in i_cap_exporting_issued or i_snap_caps.
396 if (ci
->i_snap_realm
) {
397 struct ceph_mds_client
*mdsc
=
398 ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
;
399 struct ceph_snap_realm
*realm
= ci
->i_snap_realm
;
401 dout(" dropping residual ref to snap realm %p\n", realm
);
402 spin_lock(&realm
->inodes_with_caps_lock
);
403 list_del_init(&ci
->i_snap_realm_item
);
404 spin_unlock(&realm
->inodes_with_caps_lock
);
405 ceph_put_snap_realm(mdsc
, realm
);
408 kfree(ci
->i_symlink
);
409 while ((n
= rb_first(&ci
->i_fragtree
)) != NULL
) {
410 frag
= rb_entry(n
, struct ceph_inode_frag
, node
);
411 rb_erase(n
, &ci
->i_fragtree
);
415 __ceph_destroy_xattrs(ci
);
416 if (ci
->i_xattrs
.blob
)
417 ceph_buffer_put(ci
->i_xattrs
.blob
);
418 if (ci
->i_xattrs
.prealloc_blob
)
419 ceph_buffer_put(ci
->i_xattrs
.prealloc_blob
);
421 call_rcu(&inode
->i_rcu
, ceph_i_callback
);
426 * Helpers to fill in size, ctime, mtime, and atime. We have to be
427 * careful because either the client or MDS may have more up to date
428 * info, depending on which capabilities are held, and whether
429 * time_warp_seq or truncate_seq have increased. (Ordinarily, mtime
430 * and size are monotonically increasing, except when utimes() or
431 * truncate() increments the corresponding _seq values.)
433 int ceph_fill_file_size(struct inode
*inode
, int issued
,
434 u32 truncate_seq
, u64 truncate_size
, u64 size
)
436 struct ceph_inode_info
*ci
= ceph_inode(inode
);
439 if (ceph_seq_cmp(truncate_seq
, ci
->i_truncate_seq
) > 0 ||
440 (truncate_seq
== ci
->i_truncate_seq
&& size
> inode
->i_size
)) {
441 dout("size %lld -> %llu\n", inode
->i_size
, size
);
442 inode
->i_size
= size
;
443 inode
->i_blocks
= (size
+ (1<<9) - 1) >> 9;
444 ci
->i_reported_size
= size
;
445 if (truncate_seq
!= ci
->i_truncate_seq
) {
446 dout("truncate_seq %u -> %u\n",
447 ci
->i_truncate_seq
, truncate_seq
);
448 ci
->i_truncate_seq
= truncate_seq
;
450 * If we hold relevant caps, or in the case where we're
451 * not the only client referencing this file and we
452 * don't hold those caps, then we need to check whether
453 * the file is either opened or mmaped
455 if ((issued
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_RD
|
456 CEPH_CAP_FILE_WR
|CEPH_CAP_FILE_BUFFER
|
458 CEPH_CAP_FILE_LAZYIO
)) ||
459 mapping_mapped(inode
->i_mapping
) ||
460 __ceph_caps_file_wanted(ci
)) {
461 ci
->i_truncate_pending
++;
466 if (ceph_seq_cmp(truncate_seq
, ci
->i_truncate_seq
) >= 0 &&
467 ci
->i_truncate_size
!= truncate_size
) {
468 dout("truncate_size %lld -> %llu\n", ci
->i_truncate_size
,
470 ci
->i_truncate_size
= truncate_size
;
475 void ceph_fill_file_time(struct inode
*inode
, int issued
,
476 u64 time_warp_seq
, struct timespec
*ctime
,
477 struct timespec
*mtime
, struct timespec
*atime
)
479 struct ceph_inode_info
*ci
= ceph_inode(inode
);
482 if (issued
& (CEPH_CAP_FILE_EXCL
|
484 CEPH_CAP_FILE_BUFFER
|
486 CEPH_CAP_XATTR_EXCL
)) {
487 if (timespec_compare(ctime
, &inode
->i_ctime
) > 0) {
488 dout("ctime %ld.%09ld -> %ld.%09ld inc w/ cap\n",
489 inode
->i_ctime
.tv_sec
, inode
->i_ctime
.tv_nsec
,
490 ctime
->tv_sec
, ctime
->tv_nsec
);
491 inode
->i_ctime
= *ctime
;
493 if (ceph_seq_cmp(time_warp_seq
, ci
->i_time_warp_seq
) > 0) {
494 /* the MDS did a utimes() */
495 dout("mtime %ld.%09ld -> %ld.%09ld "
497 inode
->i_mtime
.tv_sec
, inode
->i_mtime
.tv_nsec
,
498 mtime
->tv_sec
, mtime
->tv_nsec
,
499 ci
->i_time_warp_seq
, (int)time_warp_seq
);
501 inode
->i_mtime
= *mtime
;
502 inode
->i_atime
= *atime
;
503 ci
->i_time_warp_seq
= time_warp_seq
;
504 } else if (time_warp_seq
== ci
->i_time_warp_seq
) {
505 /* nobody did utimes(); take the max */
506 if (timespec_compare(mtime
, &inode
->i_mtime
) > 0) {
507 dout("mtime %ld.%09ld -> %ld.%09ld inc\n",
508 inode
->i_mtime
.tv_sec
,
509 inode
->i_mtime
.tv_nsec
,
510 mtime
->tv_sec
, mtime
->tv_nsec
);
511 inode
->i_mtime
= *mtime
;
513 if (timespec_compare(atime
, &inode
->i_atime
) > 0) {
514 dout("atime %ld.%09ld -> %ld.%09ld inc\n",
515 inode
->i_atime
.tv_sec
,
516 inode
->i_atime
.tv_nsec
,
517 atime
->tv_sec
, atime
->tv_nsec
);
518 inode
->i_atime
= *atime
;
520 } else if (issued
& CEPH_CAP_FILE_EXCL
) {
521 /* we did a utimes(); ignore mds values */
526 /* we have no write|excl caps; whatever the MDS says is true */
527 if (ceph_seq_cmp(time_warp_seq
, ci
->i_time_warp_seq
) >= 0) {
528 inode
->i_ctime
= *ctime
;
529 inode
->i_mtime
= *mtime
;
530 inode
->i_atime
= *atime
;
531 ci
->i_time_warp_seq
= time_warp_seq
;
536 if (warn
) /* time_warp_seq shouldn't go backwards */
537 dout("%p mds time_warp_seq %llu < %u\n",
538 inode
, time_warp_seq
, ci
->i_time_warp_seq
);
542 * Populate an inode based on info from mds. May be called on new or
545 static int fill_inode(struct inode
*inode
,
546 struct ceph_mds_reply_info_in
*iinfo
,
547 struct ceph_mds_reply_dirfrag
*dirinfo
,
548 struct ceph_mds_session
*session
,
549 unsigned long ttl_from
, int cap_fmode
,
550 struct ceph_cap_reservation
*caps_reservation
)
552 struct ceph_mds_reply_inode
*info
= iinfo
->in
;
553 struct ceph_inode_info
*ci
= ceph_inode(inode
);
555 int issued
, implemented
;
556 struct timespec mtime
, atime
, ctime
;
558 struct ceph_buffer
*xattr_blob
= NULL
;
562 dout("fill_inode %p ino %llx.%llx v %llu had %llu\n",
563 inode
, ceph_vinop(inode
), le64_to_cpu(info
->version
),
567 * prealloc xattr data, if it looks like we'll need it. only
568 * if len > 4 (meaning there are actually xattrs; the first 4
569 * bytes are the xattr count).
571 if (iinfo
->xattr_len
> 4) {
572 xattr_blob
= ceph_buffer_new(iinfo
->xattr_len
, GFP_NOFS
);
574 pr_err("fill_inode ENOMEM xattr blob %d bytes\n",
578 spin_lock(&inode
->i_lock
);
581 * provided version will be odd if inode value is projected,
582 * even if stable. skip the update if we have newer stable
583 * info (ours>=theirs, e.g. due to racing mds replies), unless
584 * we are getting projected (unstable) info (in which case the
585 * version is odd, and we want ours>theirs).
591 if (le64_to_cpu(info
->version
) > 0 &&
592 (ci
->i_version
& ~1) >= le64_to_cpu(info
->version
))
595 issued
= __ceph_caps_issued(ci
, &implemented
);
596 issued
|= implemented
| __ceph_caps_dirty(ci
);
599 ci
->i_version
= le64_to_cpu(info
->version
);
601 inode
->i_rdev
= le32_to_cpu(info
->rdev
);
603 if ((issued
& CEPH_CAP_AUTH_EXCL
) == 0) {
604 inode
->i_mode
= le32_to_cpu(info
->mode
);
605 inode
->i_uid
= le32_to_cpu(info
->uid
);
606 inode
->i_gid
= le32_to_cpu(info
->gid
);
607 dout("%p mode 0%o uid.gid %d.%d\n", inode
, inode
->i_mode
,
608 inode
->i_uid
, inode
->i_gid
);
611 if ((issued
& CEPH_CAP_LINK_EXCL
) == 0)
612 inode
->i_nlink
= le32_to_cpu(info
->nlink
);
614 /* be careful with mtime, atime, size */
615 ceph_decode_timespec(&atime
, &info
->atime
);
616 ceph_decode_timespec(&mtime
, &info
->mtime
);
617 ceph_decode_timespec(&ctime
, &info
->ctime
);
618 queue_trunc
= ceph_fill_file_size(inode
, issued
,
619 le32_to_cpu(info
->truncate_seq
),
620 le64_to_cpu(info
->truncate_size
),
621 le64_to_cpu(info
->size
));
622 ceph_fill_file_time(inode
, issued
,
623 le32_to_cpu(info
->time_warp_seq
),
624 &ctime
, &mtime
, &atime
);
626 /* only update max_size on auth cap */
627 if ((info
->cap
.flags
& CEPH_CAP_FLAG_AUTH
) &&
628 ci
->i_max_size
!= le64_to_cpu(info
->max_size
)) {
629 dout("max_size %lld -> %llu\n", ci
->i_max_size
,
630 le64_to_cpu(info
->max_size
));
631 ci
->i_max_size
= le64_to_cpu(info
->max_size
);
634 ci
->i_layout
= info
->layout
;
635 inode
->i_blkbits
= fls(le32_to_cpu(info
->layout
.fl_stripe_unit
)) - 1;
638 /* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
639 if ((issued
& CEPH_CAP_XATTR_EXCL
) == 0 &&
640 le64_to_cpu(info
->xattr_version
) > ci
->i_xattrs
.version
) {
641 if (ci
->i_xattrs
.blob
)
642 ceph_buffer_put(ci
->i_xattrs
.blob
);
643 ci
->i_xattrs
.blob
= xattr_blob
;
645 memcpy(ci
->i_xattrs
.blob
->vec
.iov_base
,
646 iinfo
->xattr_data
, iinfo
->xattr_len
);
647 ci
->i_xattrs
.version
= le64_to_cpu(info
->xattr_version
);
651 inode
->i_mapping
->a_ops
= &ceph_aops
;
652 inode
->i_mapping
->backing_dev_info
=
653 &ceph_sb_to_client(inode
->i_sb
)->backing_dev_info
;
655 switch (inode
->i_mode
& S_IFMT
) {
660 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
661 inode
->i_op
= &ceph_file_iops
;
664 inode
->i_op
= &ceph_file_iops
;
665 inode
->i_fop
= &ceph_file_fops
;
668 inode
->i_op
= &ceph_symlink_iops
;
669 if (!ci
->i_symlink
) {
670 int symlen
= iinfo
->symlink_len
;
673 BUG_ON(symlen
!= inode
->i_size
);
674 spin_unlock(&inode
->i_lock
);
677 sym
= kmalloc(symlen
+1, GFP_NOFS
);
680 memcpy(sym
, iinfo
->symlink
, symlen
);
683 spin_lock(&inode
->i_lock
);
687 kfree(sym
); /* lost a race */
691 inode
->i_op
= &ceph_dir_iops
;
692 inode
->i_fop
= &ceph_dir_fops
;
694 ci
->i_dir_layout
= iinfo
->dir_layout
;
696 ci
->i_files
= le64_to_cpu(info
->files
);
697 ci
->i_subdirs
= le64_to_cpu(info
->subdirs
);
698 ci
->i_rbytes
= le64_to_cpu(info
->rbytes
);
699 ci
->i_rfiles
= le64_to_cpu(info
->rfiles
);
700 ci
->i_rsubdirs
= le64_to_cpu(info
->rsubdirs
);
701 ceph_decode_timespec(&ci
->i_rctime
, &info
->rctime
);
703 /* set dir completion flag? */
704 if (ci
->i_files
== 0 && ci
->i_subdirs
== 0 &&
705 ceph_snap(inode
) == CEPH_NOSNAP
&&
706 (le32_to_cpu(info
->cap
.caps
) & CEPH_CAP_FILE_SHARED
) &&
707 (issued
& CEPH_CAP_FILE_EXCL
) == 0 &&
708 (ci
->i_ceph_flags
& CEPH_I_COMPLETE
) == 0) {
709 dout(" marking %p complete (empty)\n", inode
);
710 ci
->i_ceph_flags
|= CEPH_I_COMPLETE
;
711 ci
->i_max_offset
= 2;
715 pr_err("fill_inode %llx.%llx BAD mode 0%o\n",
716 ceph_vinop(inode
), inode
->i_mode
);
720 spin_unlock(&inode
->i_lock
);
722 /* queue truncate if we saw i_size decrease */
724 ceph_queue_vmtruncate(inode
);
726 /* populate frag tree */
727 /* FIXME: move me up, if/when version reflects fragtree changes */
728 nsplits
= le32_to_cpu(info
->fragtree
.nsplits
);
729 mutex_lock(&ci
->i_fragtree_mutex
);
730 for (i
= 0; i
< nsplits
; i
++) {
731 u32 id
= le32_to_cpu(info
->fragtree
.splits
[i
].frag
);
732 struct ceph_inode_frag
*frag
= __get_or_create_frag(ci
, id
);
736 frag
->split_by
= le32_to_cpu(info
->fragtree
.splits
[i
].by
);
737 dout(" frag %x split by %d\n", frag
->frag
, frag
->split_by
);
739 mutex_unlock(&ci
->i_fragtree_mutex
);
741 /* were we issued a capability? */
742 if (info
->cap
.caps
) {
743 if (ceph_snap(inode
) == CEPH_NOSNAP
) {
744 ceph_add_cap(inode
, session
,
745 le64_to_cpu(info
->cap
.cap_id
),
747 le32_to_cpu(info
->cap
.caps
),
748 le32_to_cpu(info
->cap
.wanted
),
749 le32_to_cpu(info
->cap
.seq
),
750 le32_to_cpu(info
->cap
.mseq
),
751 le64_to_cpu(info
->cap
.realm
),
755 spin_lock(&inode
->i_lock
);
756 dout(" %p got snap_caps %s\n", inode
,
757 ceph_cap_string(le32_to_cpu(info
->cap
.caps
)));
758 ci
->i_snap_caps
|= le32_to_cpu(info
->cap
.caps
);
760 __ceph_get_fmode(ci
, cap_fmode
);
761 spin_unlock(&inode
->i_lock
);
763 } else if (cap_fmode
>= 0) {
764 pr_warning("mds issued no caps on %llx.%llx\n",
766 __ceph_get_fmode(ci
, cap_fmode
);
769 /* update delegation info? */
771 ceph_fill_dirfrag(inode
, dirinfo
);
777 ceph_buffer_put(xattr_blob
);
782 * caller should hold session s_mutex.
784 static void update_dentry_lease(struct dentry
*dentry
,
785 struct ceph_mds_reply_lease
*lease
,
786 struct ceph_mds_session
*session
,
787 unsigned long from_time
)
789 struct ceph_dentry_info
*di
= ceph_dentry(dentry
);
790 long unsigned duration
= le32_to_cpu(lease
->duration_ms
);
791 long unsigned ttl
= from_time
+ (duration
* HZ
) / 1000;
792 long unsigned half_ttl
= from_time
+ (duration
* HZ
/ 2) / 1000;
795 /* only track leases on regular dentries */
796 if (dentry
->d_op
!= &ceph_dentry_ops
)
799 spin_lock(&dentry
->d_lock
);
800 dout("update_dentry_lease %p mask %d duration %lu ms ttl %lu\n",
801 dentry
, le16_to_cpu(lease
->mask
), duration
, ttl
);
803 /* make lease_rdcache_gen match directory */
804 dir
= dentry
->d_parent
->d_inode
;
805 di
->lease_shared_gen
= ceph_inode(dir
)->i_shared_gen
;
807 if (lease
->mask
== 0)
810 if (di
->lease_gen
== session
->s_cap_gen
&&
811 time_before(ttl
, dentry
->d_time
))
812 goto out_unlock
; /* we already have a newer lease. */
814 if (di
->lease_session
&& di
->lease_session
!= session
)
817 ceph_dentry_lru_touch(dentry
);
819 if (!di
->lease_session
)
820 di
->lease_session
= ceph_get_mds_session(session
);
821 di
->lease_gen
= session
->s_cap_gen
;
822 di
->lease_seq
= le32_to_cpu(lease
->seq
);
823 di
->lease_renew_after
= half_ttl
;
824 di
->lease_renew_from
= 0;
825 dentry
->d_time
= ttl
;
827 spin_unlock(&dentry
->d_lock
);
832 * Set dentry's directory position based on the current dir's max, and
833 * order it in d_subdirs, so that dcache_readdir behaves.
835 static void ceph_set_dentry_offset(struct dentry
*dn
)
837 struct dentry
*dir
= dn
->d_parent
;
838 struct inode
*inode
= dn
->d_parent
->d_inode
;
839 struct ceph_dentry_info
*di
;
843 di
= ceph_dentry(dn
);
845 spin_lock(&inode
->i_lock
);
846 if ((ceph_inode(inode
)->i_ceph_flags
& CEPH_I_COMPLETE
) == 0) {
847 spin_unlock(&inode
->i_lock
);
850 di
->offset
= ceph_inode(inode
)->i_max_offset
++;
851 spin_unlock(&inode
->i_lock
);
853 spin_lock(&dir
->d_lock
);
854 spin_lock_nested(&dn
->d_lock
, DENTRY_D_LOCK_NESTED
);
855 list_move(&dn
->d_u
.d_child
, &dir
->d_subdirs
);
856 dout("set_dentry_offset %p %lld (%p %p)\n", dn
, di
->offset
,
857 dn
->d_u
.d_child
.prev
, dn
->d_u
.d_child
.next
);
858 spin_unlock(&dn
->d_lock
);
859 spin_unlock(&dir
->d_lock
);
863 * splice a dentry to an inode.
864 * caller must hold directory i_mutex for this to be safe.
866 * we will only rehash the resulting dentry if @prehash is
867 * true; @prehash will be set to false (for the benefit of
868 * the caller) if we fail.
870 static struct dentry
*splice_dentry(struct dentry
*dn
, struct inode
*in
,
871 bool *prehash
, bool set_offset
)
873 struct dentry
*realdn
;
877 /* dn must be unhashed */
880 realdn
= d_materialise_unique(dn
, in
);
881 if (IS_ERR(realdn
)) {
882 pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n",
883 PTR_ERR(realdn
), dn
, in
, ceph_vinop(in
));
885 *prehash
= false; /* don't rehash on error */
886 dn
= realdn
; /* note realdn contains the error */
889 dout("dn %p (%d) spliced with %p (%d) "
890 "inode %p ino %llx.%llx\n",
892 realdn
, realdn
->d_count
,
893 realdn
->d_inode
, ceph_vinop(realdn
->d_inode
));
897 BUG_ON(!ceph_dentry(dn
));
898 dout("dn %p attached to %p ino %llx.%llx\n",
899 dn
, dn
->d_inode
, ceph_vinop(dn
->d_inode
));
901 if ((!prehash
|| *prehash
) && d_unhashed(dn
))
904 ceph_set_dentry_offset(dn
);
910 * Incorporate results into the local cache. This is either just
911 * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
914 * A reply may contain
915 * a directory inode along with a dentry.
916 * and/or a target inode
918 * Called with snap_rwsem (read).
920 int ceph_fill_trace(struct super_block
*sb
, struct ceph_mds_request
*req
,
921 struct ceph_mds_session
*session
)
923 struct ceph_mds_reply_info_parsed
*rinfo
= &req
->r_reply_info
;
924 struct inode
*in
= NULL
;
925 struct ceph_mds_reply_inode
*ininfo
;
926 struct ceph_vino vino
;
927 struct ceph_fs_client
*fsc
= ceph_sb_to_client(sb
);
931 dout("fill_trace %p is_dentry %d is_target %d\n", req
,
932 rinfo
->head
->is_dentry
, rinfo
->head
->is_target
);
938 * If we resend completed ops to a recovering mds, we get no
939 * trace. Since that is very rare, pretend this is the case
940 * to ensure the 'no trace' handlers in the callers behave.
942 * Fill in inodes unconditionally to avoid breaking cap
945 if (rinfo
->head
->op
& CEPH_MDS_OP_WRITE
) {
946 pr_info("fill_trace faking empty trace on %lld %s\n",
947 req
->r_tid
, ceph_mds_op_name(rinfo
->head
->op
));
948 if (rinfo
->head
->is_dentry
) {
949 rinfo
->head
->is_dentry
= 0;
950 err
= fill_inode(req
->r_locked_dir
,
951 &rinfo
->diri
, rinfo
->dirfrag
,
952 session
, req
->r_request_started
, -1);
954 if (rinfo
->head
->is_target
) {
955 rinfo
->head
->is_target
= 0;
956 ininfo
= rinfo
->targeti
.in
;
957 vino
.ino
= le64_to_cpu(ininfo
->ino
);
958 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
959 in
= ceph_get_inode(sb
, vino
);
960 err
= fill_inode(in
, &rinfo
->targeti
, NULL
,
961 session
, req
->r_request_started
,
968 if (!rinfo
->head
->is_target
&& !rinfo
->head
->is_dentry
) {
969 dout("fill_trace reply is empty!\n");
970 if (rinfo
->head
->result
== 0 && req
->r_locked_dir
)
971 ceph_invalidate_dir_request(req
);
975 if (rinfo
->head
->is_dentry
) {
976 struct inode
*dir
= req
->r_locked_dir
;
978 err
= fill_inode(dir
, &rinfo
->diri
, rinfo
->dirfrag
,
979 session
, req
->r_request_started
, -1,
980 &req
->r_caps_reservation
);
986 * ignore null lease/binding on snapdir ENOENT, or else we
987 * will have trouble splicing in the virtual snapdir later
989 if (rinfo
->head
->is_dentry
&& !req
->r_aborted
&&
990 (rinfo
->head
->is_target
|| strncmp(req
->r_dentry
->d_name
.name
,
991 fsc
->mount_options
->snapdir_name
,
992 req
->r_dentry
->d_name
.len
))) {
994 * lookup link rename : null -> possibly existing inode
995 * mknod symlink mkdir : null -> new inode
996 * unlink : linked -> null
998 struct inode
*dir
= req
->r_locked_dir
;
999 struct dentry
*dn
= req
->r_dentry
;
1000 bool have_dir_cap
, have_lease
;
1004 BUG_ON(dn
->d_parent
->d_inode
!= dir
);
1005 BUG_ON(ceph_ino(dir
) !=
1006 le64_to_cpu(rinfo
->diri
.in
->ino
));
1007 BUG_ON(ceph_snap(dir
) !=
1008 le64_to_cpu(rinfo
->diri
.in
->snapid
));
1010 /* do we have a lease on the whole dir? */
1012 (le32_to_cpu(rinfo
->diri
.in
->cap
.caps
) &
1013 CEPH_CAP_FILE_SHARED
);
1015 /* do we have a dn lease? */
1016 have_lease
= have_dir_cap
||
1017 (le16_to_cpu(rinfo
->dlease
->mask
) &
1021 dout("fill_trace no dentry lease or dir cap\n");
1024 if (req
->r_old_dentry
&& req
->r_op
== CEPH_MDS_OP_RENAME
) {
1025 dout(" src %p '%.*s' dst %p '%.*s'\n",
1027 req
->r_old_dentry
->d_name
.len
,
1028 req
->r_old_dentry
->d_name
.name
,
1029 dn
, dn
->d_name
.len
, dn
->d_name
.name
);
1030 dout("fill_trace doing d_move %p -> %p\n",
1031 req
->r_old_dentry
, dn
);
1033 /* d_move screws up d_subdirs order */
1034 ceph_i_clear(dir
, CEPH_I_COMPLETE
);
1036 d_move(req
->r_old_dentry
, dn
);
1037 dout(" src %p '%.*s' dst %p '%.*s'\n",
1039 req
->r_old_dentry
->d_name
.len
,
1040 req
->r_old_dentry
->d_name
.name
,
1041 dn
, dn
->d_name
.len
, dn
->d_name
.name
);
1043 /* ensure target dentry is invalidated, despite
1044 rehashing bug in vfs_rename_dir */
1045 ceph_invalidate_dentry_lease(dn
);
1047 /* take overwritten dentry's readdir offset */
1048 dout("dn %p gets %p offset %lld (old offset %lld)\n",
1049 req
->r_old_dentry
, dn
, ceph_dentry(dn
)->offset
,
1050 ceph_dentry(req
->r_old_dentry
)->offset
);
1051 ceph_dentry(req
->r_old_dentry
)->offset
=
1052 ceph_dentry(dn
)->offset
;
1054 dn
= req
->r_old_dentry
; /* use old_dentry */
1059 if (!rinfo
->head
->is_target
) {
1060 dout("fill_trace null dentry\n");
1062 dout("d_delete %p\n", dn
);
1065 dout("d_instantiate %p NULL\n", dn
);
1066 d_instantiate(dn
, NULL
);
1067 if (have_lease
&& d_unhashed(dn
))
1069 update_dentry_lease(dn
, rinfo
->dlease
,
1071 req
->r_request_started
);
1076 /* attach proper inode */
1077 ininfo
= rinfo
->targeti
.in
;
1078 vino
.ino
= le64_to_cpu(ininfo
->ino
);
1079 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
1082 in
= ceph_get_inode(sb
, vino
);
1084 pr_err("fill_trace bad get_inode "
1085 "%llx.%llx\n", vino
.ino
, vino
.snap
);
1090 dn
= splice_dentry(dn
, in
, &have_lease
, true);
1095 req
->r_dentry
= dn
; /* may have spliced */
1097 } else if (ceph_ino(in
) == vino
.ino
&&
1098 ceph_snap(in
) == vino
.snap
) {
1101 dout(" %p links to %p %llx.%llx, not %llx.%llx\n",
1102 dn
, in
, ceph_ino(in
), ceph_snap(in
),
1103 vino
.ino
, vino
.snap
);
1109 update_dentry_lease(dn
, rinfo
->dlease
, session
,
1110 req
->r_request_started
);
1111 dout(" final dn %p\n", dn
);
1113 } else if (req
->r_op
== CEPH_MDS_OP_LOOKUPSNAP
||
1114 req
->r_op
== CEPH_MDS_OP_MKSNAP
) {
1115 struct dentry
*dn
= req
->r_dentry
;
1117 /* fill out a snapdir LOOKUPSNAP dentry */
1119 BUG_ON(!req
->r_locked_dir
);
1120 BUG_ON(ceph_snap(req
->r_locked_dir
) != CEPH_SNAPDIR
);
1121 ininfo
= rinfo
->targeti
.in
;
1122 vino
.ino
= le64_to_cpu(ininfo
->ino
);
1123 vino
.snap
= le64_to_cpu(ininfo
->snapid
);
1124 in
= ceph_get_inode(sb
, vino
);
1126 pr_err("fill_inode get_inode badness %llx.%llx\n",
1127 vino
.ino
, vino
.snap
);
1132 dout(" linking snapped dir %p to dn %p\n", in
, dn
);
1133 dn
= splice_dentry(dn
, in
, NULL
, true);
1138 req
->r_dentry
= dn
; /* may have spliced */
1140 rinfo
->head
->is_dentry
= 1; /* fool notrace handlers */
1143 if (rinfo
->head
->is_target
) {
1144 vino
.ino
= le64_to_cpu(rinfo
->targeti
.in
->ino
);
1145 vino
.snap
= le64_to_cpu(rinfo
->targeti
.in
->snapid
);
1147 if (in
== NULL
|| ceph_ino(in
) != vino
.ino
||
1148 ceph_snap(in
) != vino
.snap
) {
1149 in
= ceph_get_inode(sb
, vino
);
1155 req
->r_target_inode
= in
;
1157 err
= fill_inode(in
,
1158 &rinfo
->targeti
, NULL
,
1159 session
, req
->r_request_started
,
1160 (le32_to_cpu(rinfo
->head
->result
) == 0) ?
1162 &req
->r_caps_reservation
);
1164 pr_err("fill_inode badness %p %llx.%llx\n",
1165 in
, ceph_vinop(in
));
1171 dout("fill_trace done err=%d\n", err
);
1176 * Prepopulate our cache with readdir results, leases, etc.
1178 int ceph_readdir_prepopulate(struct ceph_mds_request
*req
,
1179 struct ceph_mds_session
*session
)
1181 struct dentry
*parent
= req
->r_dentry
;
1182 struct ceph_mds_reply_info_parsed
*rinfo
= &req
->r_reply_info
;
1187 struct inode
*snapdir
= NULL
;
1188 struct ceph_mds_request_head
*rhead
= req
->r_request
->front
.iov_base
;
1189 u64 frag
= le32_to_cpu(rhead
->args
.readdir
.frag
);
1190 struct ceph_dentry_info
*di
;
1192 if (le32_to_cpu(rinfo
->head
->op
) == CEPH_MDS_OP_LSSNAP
) {
1193 snapdir
= ceph_get_snapdir(parent
->d_inode
);
1194 parent
= d_find_alias(snapdir
);
1195 dout("readdir_prepopulate %d items under SNAPDIR dn %p\n",
1196 rinfo
->dir_nr
, parent
);
1198 dout("readdir_prepopulate %d items under dn %p\n",
1199 rinfo
->dir_nr
, parent
);
1201 ceph_fill_dirfrag(parent
->d_inode
, rinfo
->dir_dir
);
1204 for (i
= 0; i
< rinfo
->dir_nr
; i
++) {
1205 struct ceph_vino vino
;
1207 dname
.name
= rinfo
->dir_dname
[i
];
1208 dname
.len
= rinfo
->dir_dname_len
[i
];
1209 dname
.hash
= full_name_hash(dname
.name
, dname
.len
);
1211 vino
.ino
= le64_to_cpu(rinfo
->dir_in
[i
].in
->ino
);
1212 vino
.snap
= le64_to_cpu(rinfo
->dir_in
[i
].in
->snapid
);
1215 dn
= d_lookup(parent
, &dname
);
1216 dout("d_lookup on parent=%p name=%.*s got %p\n",
1217 parent
, dname
.len
, dname
.name
, dn
);
1220 dn
= d_alloc(parent
, &dname
);
1221 dout("d_alloc %p '%.*s' = %p\n", parent
,
1222 dname
.len
, dname
.name
, dn
);
1224 dout("d_alloc badness\n");
1228 err
= ceph_init_dentry(dn
);
1233 } else if (dn
->d_inode
&&
1234 (ceph_ino(dn
->d_inode
) != vino
.ino
||
1235 ceph_snap(dn
->d_inode
) != vino
.snap
)) {
1236 dout(" dn %p points to wrong inode %p\n",
1242 /* reorder parent's d_subdirs */
1243 spin_lock(&parent
->d_lock
);
1244 spin_lock_nested(&dn
->d_lock
, DENTRY_D_LOCK_NESTED
);
1245 list_move(&dn
->d_u
.d_child
, &parent
->d_subdirs
);
1246 spin_unlock(&dn
->d_lock
);
1247 spin_unlock(&parent
->d_lock
);
1251 di
->offset
= ceph_make_fpos(frag
, i
+ req
->r_readdir_offset
);
1257 in
= ceph_get_inode(parent
->d_sb
, vino
);
1259 dout("new_inode badness\n");
1265 dn
= splice_dentry(dn
, in
, NULL
, false);
1270 if (fill_inode(in
, &rinfo
->dir_in
[i
], NULL
, session
,
1271 req
->r_request_started
, -1,
1272 &req
->r_caps_reservation
) < 0) {
1273 pr_err("fill_inode badness on %p\n", in
);
1277 update_dentry_lease(dn
, rinfo
->dir_dlease
[i
],
1279 req
->r_request_started
);
1284 req
->r_did_prepopulate
= true;
1291 dout("readdir_prepopulate done\n");
1295 int ceph_inode_set_size(struct inode
*inode
, loff_t size
)
1297 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1300 spin_lock(&inode
->i_lock
);
1301 dout("set_size %p %llu -> %llu\n", inode
, inode
->i_size
, size
);
1302 inode
->i_size
= size
;
1303 inode
->i_blocks
= (size
+ (1 << 9) - 1) >> 9;
1305 /* tell the MDS if we are approaching max_size */
1306 if ((size
<< 1) >= ci
->i_max_size
&&
1307 (ci
->i_reported_size
<< 1) < ci
->i_max_size
)
1310 spin_unlock(&inode
->i_lock
);
1315 * Write back inode data in a worker thread. (This can't be done
1316 * in the message handler context.)
1318 void ceph_queue_writeback(struct inode
*inode
)
1320 if (queue_work(ceph_inode_to_client(inode
)->wb_wq
,
1321 &ceph_inode(inode
)->i_wb_work
)) {
1322 dout("ceph_queue_writeback %p\n", inode
);
1325 dout("ceph_queue_writeback %p failed\n", inode
);
1329 static void ceph_writeback_work(struct work_struct
*work
)
1331 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1333 struct inode
*inode
= &ci
->vfs_inode
;
1335 dout("writeback %p\n", inode
);
1336 filemap_fdatawrite(&inode
->i_data
);
1341 * queue an async invalidation
1343 void ceph_queue_invalidate(struct inode
*inode
)
1345 if (queue_work(ceph_inode_to_client(inode
)->pg_inv_wq
,
1346 &ceph_inode(inode
)->i_pg_inv_work
)) {
1347 dout("ceph_queue_invalidate %p\n", inode
);
1350 dout("ceph_queue_invalidate %p failed\n", inode
);
1355 * invalidate any pages that are not dirty or under writeback. this
1356 * includes pages that are clean and mapped.
1358 static void ceph_invalidate_nondirty_pages(struct address_space
*mapping
)
1360 struct pagevec pvec
;
1364 pagevec_init(&pvec
, 0);
1365 while (pagevec_lookup(&pvec
, mapping
, next
, PAGEVEC_SIZE
)) {
1366 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
1367 struct page
*page
= pvec
.pages
[i
];
1370 (PageDirty(page
) || PageWriteback(page
));
1373 skip_page
= !trylock_page(page
);
1376 * We really shouldn't be looking at the ->index of an
1377 * unlocked page. But we're not allowed to lock these
1378 * pages. So we rely upon nobody altering the ->index
1379 * of this (pinned-by-us) page.
1381 index
= page
->index
;
1389 generic_error_remove_page(mapping
, page
);
1392 pagevec_release(&pvec
);
1398 * Invalidate inode pages in a worker thread. (This can't be done
1399 * in the message handler context.)
1401 static void ceph_invalidate_work(struct work_struct
*work
)
1403 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1405 struct inode
*inode
= &ci
->vfs_inode
;
1409 spin_lock(&inode
->i_lock
);
1410 dout("invalidate_pages %p gen %d revoking %d\n", inode
,
1411 ci
->i_rdcache_gen
, ci
->i_rdcache_revoking
);
1412 if (ci
->i_rdcache_revoking
!= ci
->i_rdcache_gen
) {
1414 spin_unlock(&inode
->i_lock
);
1417 orig_gen
= ci
->i_rdcache_gen
;
1418 spin_unlock(&inode
->i_lock
);
1420 ceph_invalidate_nondirty_pages(inode
->i_mapping
);
1422 spin_lock(&inode
->i_lock
);
1423 if (orig_gen
== ci
->i_rdcache_gen
&&
1424 orig_gen
== ci
->i_rdcache_revoking
) {
1425 dout("invalidate_pages %p gen %d successful\n", inode
,
1427 ci
->i_rdcache_revoking
--;
1430 dout("invalidate_pages %p gen %d raced, now %d revoking %d\n",
1431 inode
, orig_gen
, ci
->i_rdcache_gen
,
1432 ci
->i_rdcache_revoking
);
1434 spin_unlock(&inode
->i_lock
);
1437 ceph_check_caps(ci
, 0, NULL
);
1444 * called by trunc_wq; take i_mutex ourselves
1446 * We also truncate in a separate thread as well.
1448 static void ceph_vmtruncate_work(struct work_struct
*work
)
1450 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
1452 struct inode
*inode
= &ci
->vfs_inode
;
1454 dout("vmtruncate_work %p\n", inode
);
1455 mutex_lock(&inode
->i_mutex
);
1456 __ceph_do_pending_vmtruncate(inode
);
1457 mutex_unlock(&inode
->i_mutex
);
1462 * Queue an async vmtruncate. If we fail to queue work, we will handle
1463 * the truncation the next time we call __ceph_do_pending_vmtruncate.
1465 void ceph_queue_vmtruncate(struct inode
*inode
)
1467 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1469 if (queue_work(ceph_sb_to_client(inode
->i_sb
)->trunc_wq
,
1470 &ci
->i_vmtruncate_work
)) {
1471 dout("ceph_queue_vmtruncate %p\n", inode
);
1474 dout("ceph_queue_vmtruncate %p failed, pending=%d\n",
1475 inode
, ci
->i_truncate_pending
);
1480 * called with i_mutex held.
1482 * Make sure any pending truncation is applied before doing anything
1483 * that may depend on it.
1485 void __ceph_do_pending_vmtruncate(struct inode
*inode
)
1487 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1489 int wrbuffer_refs
, wake
= 0;
1492 spin_lock(&inode
->i_lock
);
1493 if (ci
->i_truncate_pending
== 0) {
1494 dout("__do_pending_vmtruncate %p none pending\n", inode
);
1495 spin_unlock(&inode
->i_lock
);
1500 * make sure any dirty snapped pages are flushed before we
1501 * possibly truncate them.. so write AND block!
1503 if (ci
->i_wrbuffer_ref_head
< ci
->i_wrbuffer_ref
) {
1504 dout("__do_pending_vmtruncate %p flushing snaps first\n",
1506 spin_unlock(&inode
->i_lock
);
1507 filemap_write_and_wait_range(&inode
->i_data
, 0,
1508 inode
->i_sb
->s_maxbytes
);
1512 to
= ci
->i_truncate_size
;
1513 wrbuffer_refs
= ci
->i_wrbuffer_ref
;
1514 dout("__do_pending_vmtruncate %p (%d) to %lld\n", inode
,
1515 ci
->i_truncate_pending
, to
);
1516 spin_unlock(&inode
->i_lock
);
1518 truncate_inode_pages(inode
->i_mapping
, to
);
1520 spin_lock(&inode
->i_lock
);
1521 ci
->i_truncate_pending
--;
1522 if (ci
->i_truncate_pending
== 0)
1524 spin_unlock(&inode
->i_lock
);
1526 if (wrbuffer_refs
== 0)
1527 ceph_check_caps(ci
, CHECK_CAPS_AUTHONLY
, NULL
);
1529 wake_up_all(&ci
->i_cap_wq
);
1536 static void *ceph_sym_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1538 struct ceph_inode_info
*ci
= ceph_inode(dentry
->d_inode
);
1539 nd_set_link(nd
, ci
->i_symlink
);
1543 static const struct inode_operations ceph_symlink_iops
= {
1544 .readlink
= generic_readlink
,
1545 .follow_link
= ceph_sym_follow_link
,
1551 int ceph_setattr(struct dentry
*dentry
, struct iattr
*attr
)
1553 struct inode
*inode
= dentry
->d_inode
;
1554 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1555 struct inode
*parent_inode
= dentry
->d_parent
->d_inode
;
1556 const unsigned int ia_valid
= attr
->ia_valid
;
1557 struct ceph_mds_request
*req
;
1558 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(dentry
->d_sb
)->mdsc
;
1560 int release
= 0, dirtied
= 0;
1564 if (ceph_snap(inode
) != CEPH_NOSNAP
)
1567 __ceph_do_pending_vmtruncate(inode
);
1569 err
= inode_change_ok(inode
, attr
);
1573 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_SETATTR
,
1576 return PTR_ERR(req
);
1578 spin_lock(&inode
->i_lock
);
1579 issued
= __ceph_caps_issued(ci
, NULL
);
1580 dout("setattr %p issued %s\n", inode
, ceph_cap_string(issued
));
1582 if (ia_valid
& ATTR_UID
) {
1583 dout("setattr %p uid %d -> %d\n", inode
,
1584 inode
->i_uid
, attr
->ia_uid
);
1585 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1586 inode
->i_uid
= attr
->ia_uid
;
1587 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1588 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1589 attr
->ia_uid
!= inode
->i_uid
) {
1590 req
->r_args
.setattr
.uid
= cpu_to_le32(attr
->ia_uid
);
1591 mask
|= CEPH_SETATTR_UID
;
1592 release
|= CEPH_CAP_AUTH_SHARED
;
1595 if (ia_valid
& ATTR_GID
) {
1596 dout("setattr %p gid %d -> %d\n", inode
,
1597 inode
->i_gid
, attr
->ia_gid
);
1598 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1599 inode
->i_gid
= attr
->ia_gid
;
1600 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1601 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1602 attr
->ia_gid
!= inode
->i_gid
) {
1603 req
->r_args
.setattr
.gid
= cpu_to_le32(attr
->ia_gid
);
1604 mask
|= CEPH_SETATTR_GID
;
1605 release
|= CEPH_CAP_AUTH_SHARED
;
1608 if (ia_valid
& ATTR_MODE
) {
1609 dout("setattr %p mode 0%o -> 0%o\n", inode
, inode
->i_mode
,
1611 if (issued
& CEPH_CAP_AUTH_EXCL
) {
1612 inode
->i_mode
= attr
->ia_mode
;
1613 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1614 } else if ((issued
& CEPH_CAP_AUTH_SHARED
) == 0 ||
1615 attr
->ia_mode
!= inode
->i_mode
) {
1616 req
->r_args
.setattr
.mode
= cpu_to_le32(attr
->ia_mode
);
1617 mask
|= CEPH_SETATTR_MODE
;
1618 release
|= CEPH_CAP_AUTH_SHARED
;
1622 if (ia_valid
& ATTR_ATIME
) {
1623 dout("setattr %p atime %ld.%ld -> %ld.%ld\n", inode
,
1624 inode
->i_atime
.tv_sec
, inode
->i_atime
.tv_nsec
,
1625 attr
->ia_atime
.tv_sec
, attr
->ia_atime
.tv_nsec
);
1626 if (issued
& CEPH_CAP_FILE_EXCL
) {
1627 ci
->i_time_warp_seq
++;
1628 inode
->i_atime
= attr
->ia_atime
;
1629 dirtied
|= CEPH_CAP_FILE_EXCL
;
1630 } else if ((issued
& CEPH_CAP_FILE_WR
) &&
1631 timespec_compare(&inode
->i_atime
,
1632 &attr
->ia_atime
) < 0) {
1633 inode
->i_atime
= attr
->ia_atime
;
1634 dirtied
|= CEPH_CAP_FILE_WR
;
1635 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1636 !timespec_equal(&inode
->i_atime
, &attr
->ia_atime
)) {
1637 ceph_encode_timespec(&req
->r_args
.setattr
.atime
,
1639 mask
|= CEPH_SETATTR_ATIME
;
1640 release
|= CEPH_CAP_FILE_CACHE
| CEPH_CAP_FILE_RD
|
1644 if (ia_valid
& ATTR_MTIME
) {
1645 dout("setattr %p mtime %ld.%ld -> %ld.%ld\n", inode
,
1646 inode
->i_mtime
.tv_sec
, inode
->i_mtime
.tv_nsec
,
1647 attr
->ia_mtime
.tv_sec
, attr
->ia_mtime
.tv_nsec
);
1648 if (issued
& CEPH_CAP_FILE_EXCL
) {
1649 ci
->i_time_warp_seq
++;
1650 inode
->i_mtime
= attr
->ia_mtime
;
1651 dirtied
|= CEPH_CAP_FILE_EXCL
;
1652 } else if ((issued
& CEPH_CAP_FILE_WR
) &&
1653 timespec_compare(&inode
->i_mtime
,
1654 &attr
->ia_mtime
) < 0) {
1655 inode
->i_mtime
= attr
->ia_mtime
;
1656 dirtied
|= CEPH_CAP_FILE_WR
;
1657 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1658 !timespec_equal(&inode
->i_mtime
, &attr
->ia_mtime
)) {
1659 ceph_encode_timespec(&req
->r_args
.setattr
.mtime
,
1661 mask
|= CEPH_SETATTR_MTIME
;
1662 release
|= CEPH_CAP_FILE_SHARED
| CEPH_CAP_FILE_RD
|
1666 if (ia_valid
& ATTR_SIZE
) {
1667 dout("setattr %p size %lld -> %lld\n", inode
,
1668 inode
->i_size
, attr
->ia_size
);
1669 if (attr
->ia_size
> inode
->i_sb
->s_maxbytes
) {
1673 if ((issued
& CEPH_CAP_FILE_EXCL
) &&
1674 attr
->ia_size
> inode
->i_size
) {
1675 inode
->i_size
= attr
->ia_size
;
1677 (attr
->ia_size
+ (1 << 9) - 1) >> 9;
1678 inode
->i_ctime
= attr
->ia_ctime
;
1679 ci
->i_reported_size
= attr
->ia_size
;
1680 dirtied
|= CEPH_CAP_FILE_EXCL
;
1681 } else if ((issued
& CEPH_CAP_FILE_SHARED
) == 0 ||
1682 attr
->ia_size
!= inode
->i_size
) {
1683 req
->r_args
.setattr
.size
= cpu_to_le64(attr
->ia_size
);
1684 req
->r_args
.setattr
.old_size
=
1685 cpu_to_le64(inode
->i_size
);
1686 mask
|= CEPH_SETATTR_SIZE
;
1687 release
|= CEPH_CAP_FILE_SHARED
| CEPH_CAP_FILE_RD
|
1692 /* these do nothing */
1693 if (ia_valid
& ATTR_CTIME
) {
1694 bool only
= (ia_valid
& (ATTR_SIZE
|ATTR_MTIME
|ATTR_ATIME
|
1695 ATTR_MODE
|ATTR_UID
|ATTR_GID
)) == 0;
1696 dout("setattr %p ctime %ld.%ld -> %ld.%ld (%s)\n", inode
,
1697 inode
->i_ctime
.tv_sec
, inode
->i_ctime
.tv_nsec
,
1698 attr
->ia_ctime
.tv_sec
, attr
->ia_ctime
.tv_nsec
,
1699 only
? "ctime only" : "ignored");
1700 inode
->i_ctime
= attr
->ia_ctime
;
1703 * if kernel wants to dirty ctime but nothing else,
1704 * we need to choose a cap to dirty under, or do
1705 * a almost-no-op setattr
1707 if (issued
& CEPH_CAP_AUTH_EXCL
)
1708 dirtied
|= CEPH_CAP_AUTH_EXCL
;
1709 else if (issued
& CEPH_CAP_FILE_EXCL
)
1710 dirtied
|= CEPH_CAP_FILE_EXCL
;
1711 else if (issued
& CEPH_CAP_XATTR_EXCL
)
1712 dirtied
|= CEPH_CAP_XATTR_EXCL
;
1714 mask
|= CEPH_SETATTR_CTIME
;
1717 if (ia_valid
& ATTR_FILE
)
1718 dout("setattr %p ATTR_FILE ... hrm!\n", inode
);
1721 __ceph_mark_dirty_caps(ci
, dirtied
);
1722 inode
->i_ctime
= CURRENT_TIME
;
1726 spin_unlock(&inode
->i_lock
);
1729 req
->r_inode
= igrab(inode
);
1730 req
->r_inode_drop
= release
;
1731 req
->r_args
.setattr
.mask
= cpu_to_le32(mask
);
1732 req
->r_num_caps
= 1;
1733 err
= ceph_mdsc_do_request(mdsc
, parent_inode
, req
);
1735 dout("setattr %p result=%d (%s locally, %d remote)\n", inode
, err
,
1736 ceph_cap_string(dirtied
), mask
);
1738 ceph_mdsc_put_request(req
);
1739 __ceph_do_pending_vmtruncate(inode
);
1742 spin_unlock(&inode
->i_lock
);
1743 ceph_mdsc_put_request(req
);
1748 * Verify that we have a lease on the given mask. If not,
1749 * do a getattr against an mds.
1751 int ceph_do_getattr(struct inode
*inode
, int mask
)
1753 struct ceph_fs_client
*fsc
= ceph_sb_to_client(inode
->i_sb
);
1754 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
1755 struct ceph_mds_request
*req
;
1758 if (ceph_snap(inode
) == CEPH_SNAPDIR
) {
1759 dout("do_getattr inode %p SNAPDIR\n", inode
);
1763 dout("do_getattr inode %p mask %s mode 0%o\n", inode
, ceph_cap_string(mask
), inode
->i_mode
);
1764 if (ceph_caps_issued_mask(ceph_inode(inode
), mask
, 1))
1767 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_GETATTR
, USE_ANY_MDS
);
1769 return PTR_ERR(req
);
1770 req
->r_inode
= igrab(inode
);
1771 req
->r_num_caps
= 1;
1772 req
->r_args
.getattr
.mask
= cpu_to_le32(mask
);
1773 err
= ceph_mdsc_do_request(mdsc
, NULL
, req
);
1774 ceph_mdsc_put_request(req
);
1775 dout("do_getattr result=%d\n", err
);
1781 * Check inode permissions. We verify we have a valid value for
1782 * the AUTH cap, then call the generic handler.
1784 int ceph_permission(struct inode
*inode
, int mask
, unsigned int flags
)
1788 if (flags
& IPERM_FLAG_RCU
)
1791 err
= ceph_do_getattr(inode
, CEPH_CAP_AUTH_SHARED
);
1794 err
= generic_permission(inode
, mask
, flags
, NULL
);
1799 * Get all attributes. Hopefully somedata we'll have a statlite()
1800 * and can limit the fields we require to be accurate.
1802 int ceph_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
1805 struct inode
*inode
= dentry
->d_inode
;
1806 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1809 err
= ceph_do_getattr(inode
, CEPH_STAT_CAP_INODE_ALL
);
1811 generic_fillattr(inode
, stat
);
1812 stat
->ino
= inode
->i_ino
;
1813 if (ceph_snap(inode
) != CEPH_NOSNAP
)
1814 stat
->dev
= ceph_snap(inode
);
1817 if (S_ISDIR(inode
->i_mode
)) {
1818 if (ceph_test_mount_opt(ceph_sb_to_client(inode
->i_sb
),
1820 stat
->size
= ci
->i_rbytes
;
1822 stat
->size
= ci
->i_files
+ ci
->i_subdirs
;
1824 stat
->blksize
= 65536;