1 #include <linux/ceph/ceph_debug.h>
2 #include <linux/ceph/pagelist.h>
5 #include "mds_client.h"
7 #include <linux/ceph/decode.h>
9 #include <linux/xattr.h>
10 #include <linux/posix_acl_xattr.h>
11 #include <linux/slab.h>
13 #define XATTR_CEPH_PREFIX "ceph."
14 #define XATTR_CEPH_PREFIX_LEN (sizeof (XATTR_CEPH_PREFIX) - 1)
16 static int __remove_xattr(struct ceph_inode_info
*ci
,
17 struct ceph_inode_xattr
*xattr
);
20 * List of handlers for synthetic system.* attributes. Other
21 * attributes are handled directly.
23 const struct xattr_handler
*ceph_xattr_handlers
[] = {
24 #ifdef CONFIG_CEPH_FS_POSIX_ACL
25 &posix_acl_access_xattr_handler
,
26 &posix_acl_default_xattr_handler
,
31 static bool ceph_is_valid_xattr(const char *name
)
33 return !strncmp(name
, XATTR_CEPH_PREFIX
, XATTR_CEPH_PREFIX_LEN
) ||
34 !strncmp(name
, XATTR_SECURITY_PREFIX
,
35 XATTR_SECURITY_PREFIX_LEN
) ||
36 !strncmp(name
, XATTR_SYSTEM_PREFIX
, XATTR_SYSTEM_PREFIX_LEN
) ||
37 !strncmp(name
, XATTR_TRUSTED_PREFIX
, XATTR_TRUSTED_PREFIX_LEN
) ||
38 !strncmp(name
, XATTR_USER_PREFIX
, XATTR_USER_PREFIX_LEN
);
42 * These define virtual xattrs exposing the recursive directory
43 * statistics and layout metadata.
47 size_t name_size
; /* strlen(name) + 1 (for '\0') */
48 size_t (*getxattr_cb
)(struct ceph_inode_info
*ci
, char *val
,
50 bool readonly
, hidden
;
51 bool (*exists_cb
)(struct ceph_inode_info
*ci
);
56 static bool ceph_vxattrcb_layout_exists(struct ceph_inode_info
*ci
)
59 char *p
= (char *)&ci
->i_layout
;
61 for (s
= 0; s
< sizeof(ci
->i_layout
); s
++, p
++)
67 static size_t ceph_vxattrcb_layout(struct ceph_inode_info
*ci
, char *val
,
71 struct ceph_fs_client
*fsc
= ceph_sb_to_client(ci
->vfs_inode
.i_sb
);
72 struct ceph_osd_client
*osdc
= &fsc
->client
->osdc
;
73 s64 pool
= ceph_file_layout_pg_pool(ci
->i_layout
);
74 const char *pool_name
;
77 dout("ceph_vxattrcb_layout %p\n", &ci
->vfs_inode
);
78 down_read(&osdc
->map_sem
);
79 pool_name
= ceph_pg_pool_name_by_id(osdc
->osdmap
, pool
);
81 size_t len
= strlen(pool_name
);
82 ret
= snprintf(buf
, sizeof(buf
),
83 "stripe_unit=%lld stripe_count=%lld object_size=%lld pool=",
84 (unsigned long long)ceph_file_layout_su(ci
->i_layout
),
85 (unsigned long long)ceph_file_layout_stripe_count(ci
->i_layout
),
86 (unsigned long long)ceph_file_layout_object_size(ci
->i_layout
));
89 } else if (ret
+ len
> size
) {
92 memcpy(val
, buf
, ret
);
93 memcpy(val
+ ret
, pool_name
, len
);
97 ret
= snprintf(buf
, sizeof(buf
),
98 "stripe_unit=%lld stripe_count=%lld object_size=%lld pool=%lld",
99 (unsigned long long)ceph_file_layout_su(ci
->i_layout
),
100 (unsigned long long)ceph_file_layout_stripe_count(ci
->i_layout
),
101 (unsigned long long)ceph_file_layout_object_size(ci
->i_layout
),
102 (unsigned long long)pool
);
105 memcpy(val
, buf
, ret
);
110 up_read(&osdc
->map_sem
);
114 static size_t ceph_vxattrcb_layout_stripe_unit(struct ceph_inode_info
*ci
,
115 char *val
, size_t size
)
117 return snprintf(val
, size
, "%lld",
118 (unsigned long long)ceph_file_layout_su(ci
->i_layout
));
121 static size_t ceph_vxattrcb_layout_stripe_count(struct ceph_inode_info
*ci
,
122 char *val
, size_t size
)
124 return snprintf(val
, size
, "%lld",
125 (unsigned long long)ceph_file_layout_stripe_count(ci
->i_layout
));
128 static size_t ceph_vxattrcb_layout_object_size(struct ceph_inode_info
*ci
,
129 char *val
, size_t size
)
131 return snprintf(val
, size
, "%lld",
132 (unsigned long long)ceph_file_layout_object_size(ci
->i_layout
));
135 static size_t ceph_vxattrcb_layout_pool(struct ceph_inode_info
*ci
,
136 char *val
, size_t size
)
139 struct ceph_fs_client
*fsc
= ceph_sb_to_client(ci
->vfs_inode
.i_sb
);
140 struct ceph_osd_client
*osdc
= &fsc
->client
->osdc
;
141 s64 pool
= ceph_file_layout_pg_pool(ci
->i_layout
);
142 const char *pool_name
;
144 down_read(&osdc
->map_sem
);
145 pool_name
= ceph_pg_pool_name_by_id(osdc
->osdmap
, pool
);
147 ret
= snprintf(val
, size
, "%s", pool_name
);
149 ret
= snprintf(val
, size
, "%lld", (unsigned long long)pool
);
150 up_read(&osdc
->map_sem
);
156 static size_t ceph_vxattrcb_dir_entries(struct ceph_inode_info
*ci
, char *val
,
159 return snprintf(val
, size
, "%lld", ci
->i_files
+ ci
->i_subdirs
);
162 static size_t ceph_vxattrcb_dir_files(struct ceph_inode_info
*ci
, char *val
,
165 return snprintf(val
, size
, "%lld", ci
->i_files
);
168 static size_t ceph_vxattrcb_dir_subdirs(struct ceph_inode_info
*ci
, char *val
,
171 return snprintf(val
, size
, "%lld", ci
->i_subdirs
);
174 static size_t ceph_vxattrcb_dir_rentries(struct ceph_inode_info
*ci
, char *val
,
177 return snprintf(val
, size
, "%lld", ci
->i_rfiles
+ ci
->i_rsubdirs
);
180 static size_t ceph_vxattrcb_dir_rfiles(struct ceph_inode_info
*ci
, char *val
,
183 return snprintf(val
, size
, "%lld", ci
->i_rfiles
);
186 static size_t ceph_vxattrcb_dir_rsubdirs(struct ceph_inode_info
*ci
, char *val
,
189 return snprintf(val
, size
, "%lld", ci
->i_rsubdirs
);
192 static size_t ceph_vxattrcb_dir_rbytes(struct ceph_inode_info
*ci
, char *val
,
195 return snprintf(val
, size
, "%lld", ci
->i_rbytes
);
198 static size_t ceph_vxattrcb_dir_rctime(struct ceph_inode_info
*ci
, char *val
,
201 return snprintf(val
, size
, "%ld.09%ld", (long)ci
->i_rctime
.tv_sec
,
202 (long)ci
->i_rctime
.tv_nsec
);
206 #define CEPH_XATTR_NAME(_type, _name) XATTR_CEPH_PREFIX #_type "." #_name
207 #define CEPH_XATTR_NAME2(_type, _name, _name2) \
208 XATTR_CEPH_PREFIX #_type "." #_name "." #_name2
210 #define XATTR_NAME_CEPH(_type, _name) \
212 .name = CEPH_XATTR_NAME(_type, _name), \
213 .name_size = sizeof (CEPH_XATTR_NAME(_type, _name)), \
214 .getxattr_cb = ceph_vxattrcb_ ## _type ## _ ## _name, \
219 #define XATTR_LAYOUT_FIELD(_type, _name, _field) \
221 .name = CEPH_XATTR_NAME2(_type, _name, _field), \
222 .name_size = sizeof (CEPH_XATTR_NAME2(_type, _name, _field)), \
223 .getxattr_cb = ceph_vxattrcb_ ## _name ## _ ## _field, \
226 .exists_cb = ceph_vxattrcb_layout_exists, \
229 static struct ceph_vxattr ceph_dir_vxattrs
[] = {
231 .name
= "ceph.dir.layout",
232 .name_size
= sizeof("ceph.dir.layout"),
233 .getxattr_cb
= ceph_vxattrcb_layout
,
236 .exists_cb
= ceph_vxattrcb_layout_exists
,
238 XATTR_LAYOUT_FIELD(dir
, layout
, stripe_unit
),
239 XATTR_LAYOUT_FIELD(dir
, layout
, stripe_count
),
240 XATTR_LAYOUT_FIELD(dir
, layout
, object_size
),
241 XATTR_LAYOUT_FIELD(dir
, layout
, pool
),
242 XATTR_NAME_CEPH(dir
, entries
),
243 XATTR_NAME_CEPH(dir
, files
),
244 XATTR_NAME_CEPH(dir
, subdirs
),
245 XATTR_NAME_CEPH(dir
, rentries
),
246 XATTR_NAME_CEPH(dir
, rfiles
),
247 XATTR_NAME_CEPH(dir
, rsubdirs
),
248 XATTR_NAME_CEPH(dir
, rbytes
),
249 XATTR_NAME_CEPH(dir
, rctime
),
250 { .name
= NULL
, 0 } /* Required table terminator */
252 static size_t ceph_dir_vxattrs_name_size
; /* total size of all names */
256 static struct ceph_vxattr ceph_file_vxattrs
[] = {
258 .name
= "ceph.file.layout",
259 .name_size
= sizeof("ceph.file.layout"),
260 .getxattr_cb
= ceph_vxattrcb_layout
,
263 .exists_cb
= ceph_vxattrcb_layout_exists
,
265 XATTR_LAYOUT_FIELD(file
, layout
, stripe_unit
),
266 XATTR_LAYOUT_FIELD(file
, layout
, stripe_count
),
267 XATTR_LAYOUT_FIELD(file
, layout
, object_size
),
268 XATTR_LAYOUT_FIELD(file
, layout
, pool
),
269 { .name
= NULL
, 0 } /* Required table terminator */
271 static size_t ceph_file_vxattrs_name_size
; /* total size of all names */
273 static struct ceph_vxattr
*ceph_inode_vxattrs(struct inode
*inode
)
275 if (S_ISDIR(inode
->i_mode
))
276 return ceph_dir_vxattrs
;
277 else if (S_ISREG(inode
->i_mode
))
278 return ceph_file_vxattrs
;
282 static size_t ceph_vxattrs_name_size(struct ceph_vxattr
*vxattrs
)
284 if (vxattrs
== ceph_dir_vxattrs
)
285 return ceph_dir_vxattrs_name_size
;
286 if (vxattrs
== ceph_file_vxattrs
)
287 return ceph_file_vxattrs_name_size
;
293 * Compute the aggregate size (including terminating '\0') of all
294 * virtual extended attribute names in the given vxattr table.
296 static size_t __init
vxattrs_name_size(struct ceph_vxattr
*vxattrs
)
298 struct ceph_vxattr
*vxattr
;
301 for (vxattr
= vxattrs
; vxattr
->name
; vxattr
++)
303 size
+= vxattr
->name_size
;
308 /* Routines called at initialization and exit time */
310 void __init
ceph_xattr_init(void)
312 ceph_dir_vxattrs_name_size
= vxattrs_name_size(ceph_dir_vxattrs
);
313 ceph_file_vxattrs_name_size
= vxattrs_name_size(ceph_file_vxattrs
);
316 void ceph_xattr_exit(void)
318 ceph_dir_vxattrs_name_size
= 0;
319 ceph_file_vxattrs_name_size
= 0;
322 static struct ceph_vxattr
*ceph_match_vxattr(struct inode
*inode
,
325 struct ceph_vxattr
*vxattr
= ceph_inode_vxattrs(inode
);
328 while (vxattr
->name
) {
329 if (!strcmp(vxattr
->name
, name
))
338 static int __set_xattr(struct ceph_inode_info
*ci
,
339 const char *name
, int name_len
,
340 const char *val
, int val_len
,
341 int flags
, int update_xattr
,
342 struct ceph_inode_xattr
**newxattr
)
345 struct rb_node
*parent
= NULL
;
346 struct ceph_inode_xattr
*xattr
= NULL
;
350 p
= &ci
->i_xattrs
.index
.rb_node
;
353 xattr
= rb_entry(parent
, struct ceph_inode_xattr
, node
);
354 c
= strncmp(name
, xattr
->name
, min(name_len
, xattr
->name_len
));
360 if (name_len
== xattr
->name_len
)
362 else if (name_len
< xattr
->name_len
)
373 if (xattr
&& (flags
& XATTR_CREATE
))
375 else if (!xattr
&& (flags
& XATTR_REPLACE
))
383 if (update_xattr
< 0) {
385 __remove_xattr(ci
, xattr
);
396 xattr
->name_len
= name_len
;
397 xattr
->should_free_name
= update_xattr
;
399 ci
->i_xattrs
.count
++;
400 dout("__set_xattr count=%d\n", ci
->i_xattrs
.count
);
404 if (xattr
->should_free_val
)
405 kfree((void *)xattr
->val
);
411 ci
->i_xattrs
.names_size
-= xattr
->name_len
;
412 ci
->i_xattrs
.vals_size
-= xattr
->val_len
;
414 ci
->i_xattrs
.names_size
+= name_len
;
415 ci
->i_xattrs
.vals_size
+= val_len
;
421 xattr
->val_len
= val_len
;
422 xattr
->dirty
= update_xattr
;
423 xattr
->should_free_val
= (val
&& update_xattr
);
426 rb_link_node(&xattr
->node
, parent
, p
);
427 rb_insert_color(&xattr
->node
, &ci
->i_xattrs
.index
);
428 dout("__set_xattr_val p=%p\n", p
);
431 dout("__set_xattr_val added %llx.%llx xattr %p %s=%.*s\n",
432 ceph_vinop(&ci
->vfs_inode
), xattr
, name
, val_len
, val
);
437 static struct ceph_inode_xattr
*__get_xattr(struct ceph_inode_info
*ci
,
441 struct rb_node
*parent
= NULL
;
442 struct ceph_inode_xattr
*xattr
= NULL
;
443 int name_len
= strlen(name
);
446 p
= &ci
->i_xattrs
.index
.rb_node
;
449 xattr
= rb_entry(parent
, struct ceph_inode_xattr
, node
);
450 c
= strncmp(name
, xattr
->name
, xattr
->name_len
);
451 if (c
== 0 && name_len
> xattr
->name_len
)
458 dout("__get_xattr %s: found %.*s\n", name
,
459 xattr
->val_len
, xattr
->val
);
464 dout("__get_xattr %s: not found\n", name
);
469 static void __free_xattr(struct ceph_inode_xattr
*xattr
)
473 if (xattr
->should_free_name
)
474 kfree((void *)xattr
->name
);
475 if (xattr
->should_free_val
)
476 kfree((void *)xattr
->val
);
481 static int __remove_xattr(struct ceph_inode_info
*ci
,
482 struct ceph_inode_xattr
*xattr
)
487 rb_erase(&xattr
->node
, &ci
->i_xattrs
.index
);
489 if (xattr
->should_free_name
)
490 kfree((void *)xattr
->name
);
491 if (xattr
->should_free_val
)
492 kfree((void *)xattr
->val
);
494 ci
->i_xattrs
.names_size
-= xattr
->name_len
;
495 ci
->i_xattrs
.vals_size
-= xattr
->val_len
;
496 ci
->i_xattrs
.count
--;
502 static int __remove_xattr_by_name(struct ceph_inode_info
*ci
,
506 struct ceph_inode_xattr
*xattr
;
509 p
= &ci
->i_xattrs
.index
.rb_node
;
510 xattr
= __get_xattr(ci
, name
);
511 err
= __remove_xattr(ci
, xattr
);
515 static char *__copy_xattr_names(struct ceph_inode_info
*ci
,
519 struct ceph_inode_xattr
*xattr
= NULL
;
521 p
= rb_first(&ci
->i_xattrs
.index
);
522 dout("__copy_xattr_names count=%d\n", ci
->i_xattrs
.count
);
525 xattr
= rb_entry(p
, struct ceph_inode_xattr
, node
);
526 memcpy(dest
, xattr
->name
, xattr
->name_len
);
527 dest
[xattr
->name_len
] = '\0';
529 dout("dest=%s %p (%s) (%d/%d)\n", dest
, xattr
, xattr
->name
,
530 xattr
->name_len
, ci
->i_xattrs
.names_size
);
532 dest
+= xattr
->name_len
+ 1;
539 void __ceph_destroy_xattrs(struct ceph_inode_info
*ci
)
541 struct rb_node
*p
, *tmp
;
542 struct ceph_inode_xattr
*xattr
= NULL
;
544 p
= rb_first(&ci
->i_xattrs
.index
);
546 dout("__ceph_destroy_xattrs p=%p\n", p
);
549 xattr
= rb_entry(p
, struct ceph_inode_xattr
, node
);
552 dout("__ceph_destroy_xattrs next p=%p (%.*s)\n", p
,
553 xattr
->name_len
, xattr
->name
);
554 rb_erase(tmp
, &ci
->i_xattrs
.index
);
559 ci
->i_xattrs
.names_size
= 0;
560 ci
->i_xattrs
.vals_size
= 0;
561 ci
->i_xattrs
.index_version
= 0;
562 ci
->i_xattrs
.count
= 0;
563 ci
->i_xattrs
.index
= RB_ROOT
;
566 static int __build_xattrs(struct inode
*inode
)
567 __releases(ci
->i_ceph_lock
)
568 __acquires(ci
->i_ceph_lock
)
574 const char *name
, *val
;
575 struct ceph_inode_info
*ci
= ceph_inode(inode
);
577 struct ceph_inode_xattr
**xattrs
= NULL
;
581 dout("__build_xattrs() len=%d\n",
582 ci
->i_xattrs
.blob
? (int)ci
->i_xattrs
.blob
->vec
.iov_len
: 0);
584 if (ci
->i_xattrs
.index_version
>= ci
->i_xattrs
.version
)
585 return 0; /* already built */
587 __ceph_destroy_xattrs(ci
);
590 /* updated internal xattr rb tree */
591 if (ci
->i_xattrs
.blob
&& ci
->i_xattrs
.blob
->vec
.iov_len
> 4) {
592 p
= ci
->i_xattrs
.blob
->vec
.iov_base
;
593 end
= p
+ ci
->i_xattrs
.blob
->vec
.iov_len
;
594 ceph_decode_32_safe(&p
, end
, numattr
, bad
);
595 xattr_version
= ci
->i_xattrs
.version
;
596 spin_unlock(&ci
->i_ceph_lock
);
598 xattrs
= kcalloc(numattr
, sizeof(struct ceph_inode_xattr
*),
604 for (i
= 0; i
< numattr
; i
++) {
605 xattrs
[i
] = kmalloc(sizeof(struct ceph_inode_xattr
),
611 spin_lock(&ci
->i_ceph_lock
);
612 if (ci
->i_xattrs
.version
!= xattr_version
) {
613 /* lost a race, retry */
614 for (i
= 0; i
< numattr
; i
++)
622 ceph_decode_32_safe(&p
, end
, len
, bad
);
626 ceph_decode_32_safe(&p
, end
, len
, bad
);
630 err
= __set_xattr(ci
, name
, namelen
, val
, len
,
631 0, 0, &xattrs
[numattr
]);
638 ci
->i_xattrs
.index_version
= ci
->i_xattrs
.version
;
639 ci
->i_xattrs
.dirty
= false;
643 spin_lock(&ci
->i_ceph_lock
);
646 for (i
= 0; i
< numattr
; i
++)
650 ci
->i_xattrs
.names_size
= 0;
654 static int __get_required_blob_size(struct ceph_inode_info
*ci
, int name_size
,
658 * 4 bytes for the length, and additional 4 bytes per each xattr name,
659 * 4 bytes per each value
661 int size
= 4 + ci
->i_xattrs
.count
*(4 + 4) +
662 ci
->i_xattrs
.names_size
+
663 ci
->i_xattrs
.vals_size
;
664 dout("__get_required_blob_size c=%d names.size=%d vals.size=%d\n",
665 ci
->i_xattrs
.count
, ci
->i_xattrs
.names_size
,
666 ci
->i_xattrs
.vals_size
);
669 size
+= 4 + 4 + name_size
+ val_size
;
675 * If there are dirty xattrs, reencode xattrs into the prealloc_blob
676 * and swap into place.
678 void __ceph_build_xattrs_blob(struct ceph_inode_info
*ci
)
681 struct ceph_inode_xattr
*xattr
= NULL
;
684 dout("__build_xattrs_blob %p\n", &ci
->vfs_inode
);
685 if (ci
->i_xattrs
.dirty
) {
686 int need
= __get_required_blob_size(ci
, 0, 0);
688 BUG_ON(need
> ci
->i_xattrs
.prealloc_blob
->alloc_len
);
690 p
= rb_first(&ci
->i_xattrs
.index
);
691 dest
= ci
->i_xattrs
.prealloc_blob
->vec
.iov_base
;
693 ceph_encode_32(&dest
, ci
->i_xattrs
.count
);
695 xattr
= rb_entry(p
, struct ceph_inode_xattr
, node
);
697 ceph_encode_32(&dest
, xattr
->name_len
);
698 memcpy(dest
, xattr
->name
, xattr
->name_len
);
699 dest
+= xattr
->name_len
;
700 ceph_encode_32(&dest
, xattr
->val_len
);
701 memcpy(dest
, xattr
->val
, xattr
->val_len
);
702 dest
+= xattr
->val_len
;
707 /* adjust buffer len; it may be larger than we need */
708 ci
->i_xattrs
.prealloc_blob
->vec
.iov_len
=
709 dest
- ci
->i_xattrs
.prealloc_blob
->vec
.iov_base
;
711 if (ci
->i_xattrs
.blob
)
712 ceph_buffer_put(ci
->i_xattrs
.blob
);
713 ci
->i_xattrs
.blob
= ci
->i_xattrs
.prealloc_blob
;
714 ci
->i_xattrs
.prealloc_blob
= NULL
;
715 ci
->i_xattrs
.dirty
= false;
716 ci
->i_xattrs
.version
++;
720 ssize_t
__ceph_getxattr(struct inode
*inode
, const char *name
, void *value
,
723 struct ceph_inode_info
*ci
= ceph_inode(inode
);
725 struct ceph_inode_xattr
*xattr
;
726 struct ceph_vxattr
*vxattr
= NULL
;
728 if (!ceph_is_valid_xattr(name
))
731 /* let's see if a virtual xattr was requested */
732 vxattr
= ceph_match_vxattr(inode
, name
);
733 if (vxattr
&& !(vxattr
->exists_cb
&& !vxattr
->exists_cb(ci
))) {
734 err
= vxattr
->getxattr_cb(ci
, value
, size
);
738 spin_lock(&ci
->i_ceph_lock
);
739 dout("getxattr %p ver=%lld index_ver=%lld\n", inode
,
740 ci
->i_xattrs
.version
, ci
->i_xattrs
.index_version
);
742 if (ci
->i_xattrs
.version
== 0 ||
743 !__ceph_caps_issued_mask(ci
, CEPH_CAP_XATTR_SHARED
, 1)) {
744 spin_unlock(&ci
->i_ceph_lock
);
745 /* get xattrs from mds (if we don't already have them) */
746 err
= ceph_do_getattr(inode
, CEPH_STAT_CAP_XATTR
, true);
749 spin_lock(&ci
->i_ceph_lock
);
752 err
= __build_xattrs(inode
);
756 err
= -ENODATA
; /* == ENOATTR */
757 xattr
= __get_xattr(ci
, name
);
762 if (size
&& size
< xattr
->val_len
)
765 err
= xattr
->val_len
;
769 memcpy(value
, xattr
->val
, xattr
->val_len
);
772 spin_unlock(&ci
->i_ceph_lock
);
776 ssize_t
ceph_getxattr(struct dentry
*dentry
, const char *name
, void *value
,
779 if (!strncmp(name
, XATTR_SYSTEM_PREFIX
, XATTR_SYSTEM_PREFIX_LEN
))
780 return generic_getxattr(dentry
, name
, value
, size
);
782 return __ceph_getxattr(d_inode(dentry
), name
, value
, size
);
785 ssize_t
ceph_listxattr(struct dentry
*dentry
, char *names
, size_t size
)
787 struct inode
*inode
= d_inode(dentry
);
788 struct ceph_inode_info
*ci
= ceph_inode(inode
);
789 struct ceph_vxattr
*vxattrs
= ceph_inode_vxattrs(inode
);
796 spin_lock(&ci
->i_ceph_lock
);
797 dout("listxattr %p ver=%lld index_ver=%lld\n", inode
,
798 ci
->i_xattrs
.version
, ci
->i_xattrs
.index_version
);
800 if (ci
->i_xattrs
.version
== 0 ||
801 !__ceph_caps_issued_mask(ci
, CEPH_CAP_XATTR_SHARED
, 1)) {
802 spin_unlock(&ci
->i_ceph_lock
);
803 err
= ceph_do_getattr(inode
, CEPH_STAT_CAP_XATTR
, true);
806 spin_lock(&ci
->i_ceph_lock
);
809 err
= __build_xattrs(inode
);
813 * Start with virtual dir xattr names (if any) (including
814 * terminating '\0' characters for each).
816 vir_namelen
= ceph_vxattrs_name_size(vxattrs
);
818 /* adding 1 byte per each variable due to the null termination */
819 namelen
= ci
->i_xattrs
.names_size
+ ci
->i_xattrs
.count
;
821 if (size
&& vir_namelen
+ namelen
> size
)
824 err
= namelen
+ vir_namelen
;
828 names
= __copy_xattr_names(ci
, names
);
830 /* virtual xattr names, too */
833 for (i
= 0; vxattrs
[i
].name
; i
++) {
834 if (!vxattrs
[i
].hidden
&&
835 !(vxattrs
[i
].exists_cb
&&
836 !vxattrs
[i
].exists_cb(ci
))) {
837 len
= sprintf(names
, "%s", vxattrs
[i
].name
);
845 spin_unlock(&ci
->i_ceph_lock
);
849 static int ceph_sync_setxattr(struct dentry
*dentry
, const char *name
,
850 const char *value
, size_t size
, int flags
)
852 struct ceph_fs_client
*fsc
= ceph_sb_to_client(dentry
->d_sb
);
853 struct inode
*inode
= d_inode(dentry
);
854 struct ceph_inode_info
*ci
= ceph_inode(inode
);
855 struct ceph_mds_request
*req
;
856 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
857 struct ceph_pagelist
*pagelist
= NULL
;
861 /* copy value into pagelist */
862 pagelist
= kmalloc(sizeof(*pagelist
), GFP_NOFS
);
866 ceph_pagelist_init(pagelist
);
867 err
= ceph_pagelist_append(pagelist
, value
, size
);
871 flags
|= CEPH_XATTR_REMOVE
;
874 dout("setxattr value=%.*s\n", (int)size
, value
);
877 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_SETXATTR
,
884 req
->r_args
.setxattr
.flags
= cpu_to_le32(flags
);
885 req
->r_path2
= kstrdup(name
, GFP_NOFS
);
887 ceph_mdsc_put_request(req
);
892 req
->r_pagelist
= pagelist
;
895 req
->r_inode
= inode
;
898 req
->r_inode_drop
= CEPH_CAP_XATTR_SHARED
;
900 dout("xattr.ver (before): %lld\n", ci
->i_xattrs
.version
);
901 err
= ceph_mdsc_do_request(mdsc
, NULL
, req
);
902 ceph_mdsc_put_request(req
);
903 dout("xattr.ver (after): %lld\n", ci
->i_xattrs
.version
);
907 ceph_pagelist_release(pagelist
);
911 int __ceph_setxattr(struct dentry
*dentry
, const char *name
,
912 const void *value
, size_t size
, int flags
)
914 struct inode
*inode
= d_inode(dentry
);
915 struct ceph_vxattr
*vxattr
;
916 struct ceph_inode_info
*ci
= ceph_inode(inode
);
917 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(dentry
->d_sb
)->mdsc
;
918 struct ceph_cap_flush
*prealloc_cf
= NULL
;
922 int name_len
= strlen(name
);
924 char *newname
= NULL
;
926 struct ceph_inode_xattr
*xattr
= NULL
;
927 int required_blob_size
;
928 bool lock_snap_rwsem
= false;
930 if (!ceph_is_valid_xattr(name
))
933 vxattr
= ceph_match_vxattr(inode
, name
);
934 if (vxattr
&& vxattr
->readonly
)
937 /* pass any unhandled ceph.* xattrs through to the MDS */
938 if (!strncmp(name
, XATTR_CEPH_PREFIX
, XATTR_CEPH_PREFIX_LEN
))
939 goto do_sync_unlocked
;
941 /* preallocate memory for xattr name, value, index node */
943 newname
= kmemdup(name
, name_len
+ 1, GFP_NOFS
);
948 newval
= kmemdup(value
, val_len
, GFP_NOFS
);
953 xattr
= kmalloc(sizeof(struct ceph_inode_xattr
), GFP_NOFS
);
957 prealloc_cf
= ceph_alloc_cap_flush();
961 spin_lock(&ci
->i_ceph_lock
);
963 issued
= __ceph_caps_issued(ci
, NULL
);
964 if (ci
->i_xattrs
.version
== 0 || !(issued
& CEPH_CAP_XATTR_EXCL
))
967 if (!lock_snap_rwsem
&& !ci
->i_head_snapc
) {
968 lock_snap_rwsem
= true;
969 if (!down_read_trylock(&mdsc
->snap_rwsem
)) {
970 spin_unlock(&ci
->i_ceph_lock
);
971 down_read(&mdsc
->snap_rwsem
);
972 spin_lock(&ci
->i_ceph_lock
);
977 dout("setxattr %p issued %s\n", inode
, ceph_cap_string(issued
));
978 __build_xattrs(inode
);
980 required_blob_size
= __get_required_blob_size(ci
, name_len
, val_len
);
982 if (!ci
->i_xattrs
.prealloc_blob
||
983 required_blob_size
> ci
->i_xattrs
.prealloc_blob
->alloc_len
) {
984 struct ceph_buffer
*blob
;
986 spin_unlock(&ci
->i_ceph_lock
);
987 dout(" preaallocating new blob size=%d\n", required_blob_size
);
988 blob
= ceph_buffer_new(required_blob_size
, GFP_NOFS
);
990 goto do_sync_unlocked
;
991 spin_lock(&ci
->i_ceph_lock
);
992 if (ci
->i_xattrs
.prealloc_blob
)
993 ceph_buffer_put(ci
->i_xattrs
.prealloc_blob
);
994 ci
->i_xattrs
.prealloc_blob
= blob
;
998 err
= __set_xattr(ci
, newname
, name_len
, newval
, val_len
,
999 flags
, value
? 1 : -1, &xattr
);
1002 dirty
= __ceph_mark_dirty_caps(ci
, CEPH_CAP_XATTR_EXCL
,
1004 ci
->i_xattrs
.dirty
= true;
1005 inode
->i_ctime
= CURRENT_TIME
;
1008 spin_unlock(&ci
->i_ceph_lock
);
1009 if (lock_snap_rwsem
)
1010 up_read(&mdsc
->snap_rwsem
);
1012 __mark_inode_dirty(inode
, dirty
);
1013 ceph_free_cap_flush(prealloc_cf
);
1017 spin_unlock(&ci
->i_ceph_lock
);
1019 if (lock_snap_rwsem
)
1020 up_read(&mdsc
->snap_rwsem
);
1021 err
= ceph_sync_setxattr(dentry
, name
, value
, size
, flags
);
1023 ceph_free_cap_flush(prealloc_cf
);
1030 int ceph_setxattr(struct dentry
*dentry
, const char *name
,
1031 const void *value
, size_t size
, int flags
)
1033 if (ceph_snap(d_inode(dentry
)) != CEPH_NOSNAP
)
1036 if (!strncmp(name
, XATTR_SYSTEM_PREFIX
, XATTR_SYSTEM_PREFIX_LEN
))
1037 return generic_setxattr(dentry
, name
, value
, size
, flags
);
1040 value
= ""; /* empty EA, do not remove */
1042 return __ceph_setxattr(dentry
, name
, value
, size
, flags
);
1045 static int ceph_send_removexattr(struct dentry
*dentry
, const char *name
)
1047 struct ceph_fs_client
*fsc
= ceph_sb_to_client(dentry
->d_sb
);
1048 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
1049 struct inode
*inode
= d_inode(dentry
);
1050 struct ceph_mds_request
*req
;
1053 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_RMXATTR
,
1056 return PTR_ERR(req
);
1057 req
->r_path2
= kstrdup(name
, GFP_NOFS
);
1061 req
->r_inode
= inode
;
1063 req
->r_num_caps
= 1;
1064 req
->r_inode_drop
= CEPH_CAP_XATTR_SHARED
;
1065 err
= ceph_mdsc_do_request(mdsc
, NULL
, req
);
1066 ceph_mdsc_put_request(req
);
1070 int __ceph_removexattr(struct dentry
*dentry
, const char *name
)
1072 struct inode
*inode
= d_inode(dentry
);
1073 struct ceph_vxattr
*vxattr
;
1074 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1075 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(dentry
->d_sb
)->mdsc
;
1076 struct ceph_cap_flush
*prealloc_cf
= NULL
;
1079 int required_blob_size
;
1081 bool lock_snap_rwsem
= false;
1083 if (!ceph_is_valid_xattr(name
))
1086 vxattr
= ceph_match_vxattr(inode
, name
);
1087 if (vxattr
&& vxattr
->readonly
)
1090 /* pass any unhandled ceph.* xattrs through to the MDS */
1091 if (!strncmp(name
, XATTR_CEPH_PREFIX
, XATTR_CEPH_PREFIX_LEN
))
1092 goto do_sync_unlocked
;
1094 prealloc_cf
= ceph_alloc_cap_flush();
1099 spin_lock(&ci
->i_ceph_lock
);
1101 issued
= __ceph_caps_issued(ci
, NULL
);
1102 if (ci
->i_xattrs
.version
== 0 || !(issued
& CEPH_CAP_XATTR_EXCL
))
1105 if (!lock_snap_rwsem
&& !ci
->i_head_snapc
) {
1106 lock_snap_rwsem
= true;
1107 if (!down_read_trylock(&mdsc
->snap_rwsem
)) {
1108 spin_unlock(&ci
->i_ceph_lock
);
1109 down_read(&mdsc
->snap_rwsem
);
1110 spin_lock(&ci
->i_ceph_lock
);
1115 dout("removexattr %p issued %s\n", inode
, ceph_cap_string(issued
));
1117 __build_xattrs(inode
);
1119 required_blob_size
= __get_required_blob_size(ci
, 0, 0);
1121 if (!ci
->i_xattrs
.prealloc_blob
||
1122 required_blob_size
> ci
->i_xattrs
.prealloc_blob
->alloc_len
) {
1123 struct ceph_buffer
*blob
;
1125 spin_unlock(&ci
->i_ceph_lock
);
1126 dout(" preaallocating new blob size=%d\n", required_blob_size
);
1127 blob
= ceph_buffer_new(required_blob_size
, GFP_NOFS
);
1129 goto do_sync_unlocked
;
1130 spin_lock(&ci
->i_ceph_lock
);
1131 if (ci
->i_xattrs
.prealloc_blob
)
1132 ceph_buffer_put(ci
->i_xattrs
.prealloc_blob
);
1133 ci
->i_xattrs
.prealloc_blob
= blob
;
1137 err
= __remove_xattr_by_name(ceph_inode(inode
), name
);
1139 dirty
= __ceph_mark_dirty_caps(ci
, CEPH_CAP_XATTR_EXCL
,
1141 ci
->i_xattrs
.dirty
= true;
1142 inode
->i_ctime
= CURRENT_TIME
;
1143 spin_unlock(&ci
->i_ceph_lock
);
1144 if (lock_snap_rwsem
)
1145 up_read(&mdsc
->snap_rwsem
);
1147 __mark_inode_dirty(inode
, dirty
);
1148 ceph_free_cap_flush(prealloc_cf
);
1151 spin_unlock(&ci
->i_ceph_lock
);
1153 if (lock_snap_rwsem
)
1154 up_read(&mdsc
->snap_rwsem
);
1155 ceph_free_cap_flush(prealloc_cf
);
1156 err
= ceph_send_removexattr(dentry
, name
);
1160 int ceph_removexattr(struct dentry
*dentry
, const char *name
)
1162 if (ceph_snap(d_inode(dentry
)) != CEPH_NOSNAP
)
1165 if (!strncmp(name
, XATTR_SYSTEM_PREFIX
, XATTR_SYSTEM_PREFIX_LEN
))
1166 return generic_removexattr(dentry
, name
);
1168 return __ceph_removexattr(dentry
, name
);