1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
3 #include <linux/ceph/pagelist.h>
6 #include "mds_client.h"
8 #include <linux/ceph/decode.h>
10 #include <linux/xattr.h>
11 #include <linux/posix_acl_xattr.h>
12 #include <linux/slab.h>
14 #define XATTR_CEPH_PREFIX "ceph."
15 #define XATTR_CEPH_PREFIX_LEN (sizeof (XATTR_CEPH_PREFIX) - 1)
17 static int __remove_xattr(struct ceph_inode_info
*ci
,
18 struct ceph_inode_xattr
*xattr
);
20 static const struct xattr_handler ceph_other_xattr_handler
;
23 * List of handlers for synthetic system.* attributes. Other
24 * attributes are handled directly.
26 const struct xattr_handler
*ceph_xattr_handlers
[] = {
27 #ifdef CONFIG_CEPH_FS_POSIX_ACL
28 &posix_acl_access_xattr_handler
,
29 &posix_acl_default_xattr_handler
,
31 &ceph_other_xattr_handler
,
35 static bool ceph_is_valid_xattr(const char *name
)
37 return !strncmp(name
, XATTR_CEPH_PREFIX
, XATTR_CEPH_PREFIX_LEN
) ||
38 !strncmp(name
, XATTR_SECURITY_PREFIX
,
39 XATTR_SECURITY_PREFIX_LEN
) ||
40 !strncmp(name
, XATTR_TRUSTED_PREFIX
, XATTR_TRUSTED_PREFIX_LEN
) ||
41 !strncmp(name
, XATTR_USER_PREFIX
, XATTR_USER_PREFIX_LEN
);
45 * These define virtual xattrs exposing the recursive directory
46 * statistics and layout metadata.
50 size_t name_size
; /* strlen(name) + 1 (for '\0') */
51 size_t (*getxattr_cb
)(struct ceph_inode_info
*ci
, char *val
,
53 bool (*exists_cb
)(struct ceph_inode_info
*ci
);
57 #define VXATTR_FLAG_READONLY (1<<0)
58 #define VXATTR_FLAG_HIDDEN (1<<1)
59 #define VXATTR_FLAG_RSTAT (1<<2)
63 static bool ceph_vxattrcb_layout_exists(struct ceph_inode_info
*ci
)
65 struct ceph_file_layout
*fl
= &ci
->i_layout
;
66 return (fl
->stripe_unit
> 0 || fl
->stripe_count
> 0 ||
67 fl
->object_size
> 0 || fl
->pool_id
>= 0 ||
68 rcu_dereference_raw(fl
->pool_ns
) != NULL
);
71 static size_t ceph_vxattrcb_layout(struct ceph_inode_info
*ci
, char *val
,
74 struct ceph_fs_client
*fsc
= ceph_sb_to_client(ci
->vfs_inode
.i_sb
);
75 struct ceph_osd_client
*osdc
= &fsc
->client
->osdc
;
76 struct ceph_string
*pool_ns
;
77 s64 pool
= ci
->i_layout
.pool_id
;
78 const char *pool_name
;
79 const char *ns_field
= " pool_namespace=";
81 size_t len
, total_len
= 0;
84 pool_ns
= ceph_try_get_string(ci
->i_layout
.pool_ns
);
86 dout("ceph_vxattrcb_layout %p\n", &ci
->vfs_inode
);
87 down_read(&osdc
->lock
);
88 pool_name
= ceph_pg_pool_name_by_id(osdc
->osdmap
, pool
);
90 len
= snprintf(buf
, sizeof(buf
),
91 "stripe_unit=%u stripe_count=%u object_size=%u pool=",
92 ci
->i_layout
.stripe_unit
, ci
->i_layout
.stripe_count
,
93 ci
->i_layout
.object_size
);
94 total_len
= len
+ strlen(pool_name
);
96 len
= snprintf(buf
, sizeof(buf
),
97 "stripe_unit=%u stripe_count=%u object_size=%u pool=%lld",
98 ci
->i_layout
.stripe_unit
, ci
->i_layout
.stripe_count
,
99 ci
->i_layout
.object_size
, (unsigned long long)pool
);
104 total_len
+= strlen(ns_field
) + pool_ns
->len
;
108 } else if (total_len
> size
) {
111 memcpy(val
, buf
, len
);
114 len
= strlen(pool_name
);
115 memcpy(val
+ ret
, pool_name
, len
);
119 len
= strlen(ns_field
);
120 memcpy(val
+ ret
, ns_field
, len
);
122 memcpy(val
+ ret
, pool_ns
->str
, pool_ns
->len
);
126 up_read(&osdc
->lock
);
127 ceph_put_string(pool_ns
);
131 static size_t ceph_vxattrcb_layout_stripe_unit(struct ceph_inode_info
*ci
,
132 char *val
, size_t size
)
134 return snprintf(val
, size
, "%u", ci
->i_layout
.stripe_unit
);
137 static size_t ceph_vxattrcb_layout_stripe_count(struct ceph_inode_info
*ci
,
138 char *val
, size_t size
)
140 return snprintf(val
, size
, "%u", ci
->i_layout
.stripe_count
);
143 static size_t ceph_vxattrcb_layout_object_size(struct ceph_inode_info
*ci
,
144 char *val
, size_t size
)
146 return snprintf(val
, size
, "%u", ci
->i_layout
.object_size
);
149 static size_t ceph_vxattrcb_layout_pool(struct ceph_inode_info
*ci
,
150 char *val
, size_t size
)
153 struct ceph_fs_client
*fsc
= ceph_sb_to_client(ci
->vfs_inode
.i_sb
);
154 struct ceph_osd_client
*osdc
= &fsc
->client
->osdc
;
155 s64 pool
= ci
->i_layout
.pool_id
;
156 const char *pool_name
;
158 down_read(&osdc
->lock
);
159 pool_name
= ceph_pg_pool_name_by_id(osdc
->osdmap
, pool
);
161 ret
= snprintf(val
, size
, "%s", pool_name
);
163 ret
= snprintf(val
, size
, "%lld", (unsigned long long)pool
);
164 up_read(&osdc
->lock
);
168 static size_t ceph_vxattrcb_layout_pool_namespace(struct ceph_inode_info
*ci
,
169 char *val
, size_t size
)
172 struct ceph_string
*ns
= ceph_try_get_string(ci
->i_layout
.pool_ns
);
174 ret
= snprintf(val
, size
, "%.*s", (int)ns
->len
, ns
->str
);
182 static size_t ceph_vxattrcb_dir_entries(struct ceph_inode_info
*ci
, char *val
,
185 return snprintf(val
, size
, "%lld", ci
->i_files
+ ci
->i_subdirs
);
188 static size_t ceph_vxattrcb_dir_files(struct ceph_inode_info
*ci
, char *val
,
191 return snprintf(val
, size
, "%lld", ci
->i_files
);
194 static size_t ceph_vxattrcb_dir_subdirs(struct ceph_inode_info
*ci
, char *val
,
197 return snprintf(val
, size
, "%lld", ci
->i_subdirs
);
200 static size_t ceph_vxattrcb_dir_rentries(struct ceph_inode_info
*ci
, char *val
,
203 return snprintf(val
, size
, "%lld", ci
->i_rfiles
+ ci
->i_rsubdirs
);
206 static size_t ceph_vxattrcb_dir_rfiles(struct ceph_inode_info
*ci
, char *val
,
209 return snprintf(val
, size
, "%lld", ci
->i_rfiles
);
212 static size_t ceph_vxattrcb_dir_rsubdirs(struct ceph_inode_info
*ci
, char *val
,
215 return snprintf(val
, size
, "%lld", ci
->i_rsubdirs
);
218 static size_t ceph_vxattrcb_dir_rbytes(struct ceph_inode_info
*ci
, char *val
,
221 return snprintf(val
, size
, "%lld", ci
->i_rbytes
);
224 static size_t ceph_vxattrcb_dir_rctime(struct ceph_inode_info
*ci
, char *val
,
227 return snprintf(val
, size
, "%lld.09%ld", ci
->i_rctime
.tv_sec
,
228 ci
->i_rctime
.tv_nsec
);
233 static bool ceph_vxattrcb_quota_exists(struct ceph_inode_info
*ci
)
236 spin_lock(&ci
->i_ceph_lock
);
237 if ((ci
->i_max_files
|| ci
->i_max_bytes
) &&
238 ci
->i_vino
.snap
== CEPH_NOSNAP
&&
240 ci
->i_snap_realm
->ino
== ci
->i_vino
.ino
)
242 spin_unlock(&ci
->i_ceph_lock
);
246 static size_t ceph_vxattrcb_quota(struct ceph_inode_info
*ci
, char *val
,
249 return snprintf(val
, size
, "max_bytes=%llu max_files=%llu",
250 ci
->i_max_bytes
, ci
->i_max_files
);
253 static size_t ceph_vxattrcb_quota_max_bytes(struct ceph_inode_info
*ci
,
254 char *val
, size_t size
)
256 return snprintf(val
, size
, "%llu", ci
->i_max_bytes
);
259 static size_t ceph_vxattrcb_quota_max_files(struct ceph_inode_info
*ci
,
260 char *val
, size_t size
)
262 return snprintf(val
, size
, "%llu", ci
->i_max_files
);
265 #define CEPH_XATTR_NAME(_type, _name) XATTR_CEPH_PREFIX #_type "." #_name
266 #define CEPH_XATTR_NAME2(_type, _name, _name2) \
267 XATTR_CEPH_PREFIX #_type "." #_name "." #_name2
269 #define XATTR_NAME_CEPH(_type, _name, _flags) \
271 .name = CEPH_XATTR_NAME(_type, _name), \
272 .name_size = sizeof (CEPH_XATTR_NAME(_type, _name)), \
273 .getxattr_cb = ceph_vxattrcb_ ## _type ## _ ## _name, \
275 .flags = (VXATTR_FLAG_READONLY | _flags), \
277 #define XATTR_RSTAT_FIELD(_type, _name) \
278 XATTR_NAME_CEPH(_type, _name, VXATTR_FLAG_RSTAT)
279 #define XATTR_LAYOUT_FIELD(_type, _name, _field) \
281 .name = CEPH_XATTR_NAME2(_type, _name, _field), \
282 .name_size = sizeof (CEPH_XATTR_NAME2(_type, _name, _field)), \
283 .getxattr_cb = ceph_vxattrcb_ ## _name ## _ ## _field, \
284 .exists_cb = ceph_vxattrcb_layout_exists, \
285 .flags = VXATTR_FLAG_HIDDEN, \
287 #define XATTR_QUOTA_FIELD(_type, _name) \
289 .name = CEPH_XATTR_NAME(_type, _name), \
290 .name_size = sizeof(CEPH_XATTR_NAME(_type, _name)), \
291 .getxattr_cb = ceph_vxattrcb_ ## _type ## _ ## _name, \
292 .exists_cb = ceph_vxattrcb_quota_exists, \
293 .flags = VXATTR_FLAG_HIDDEN, \
296 static struct ceph_vxattr ceph_dir_vxattrs
[] = {
298 .name
= "ceph.dir.layout",
299 .name_size
= sizeof("ceph.dir.layout"),
300 .getxattr_cb
= ceph_vxattrcb_layout
,
301 .exists_cb
= ceph_vxattrcb_layout_exists
,
302 .flags
= VXATTR_FLAG_HIDDEN
,
304 XATTR_LAYOUT_FIELD(dir
, layout
, stripe_unit
),
305 XATTR_LAYOUT_FIELD(dir
, layout
, stripe_count
),
306 XATTR_LAYOUT_FIELD(dir
, layout
, object_size
),
307 XATTR_LAYOUT_FIELD(dir
, layout
, pool
),
308 XATTR_LAYOUT_FIELD(dir
, layout
, pool_namespace
),
309 XATTR_NAME_CEPH(dir
, entries
, 0),
310 XATTR_NAME_CEPH(dir
, files
, 0),
311 XATTR_NAME_CEPH(dir
, subdirs
, 0),
312 XATTR_RSTAT_FIELD(dir
, rentries
),
313 XATTR_RSTAT_FIELD(dir
, rfiles
),
314 XATTR_RSTAT_FIELD(dir
, rsubdirs
),
315 XATTR_RSTAT_FIELD(dir
, rbytes
),
316 XATTR_RSTAT_FIELD(dir
, rctime
),
318 .name
= "ceph.quota",
319 .name_size
= sizeof("ceph.quota"),
320 .getxattr_cb
= ceph_vxattrcb_quota
,
321 .exists_cb
= ceph_vxattrcb_quota_exists
,
322 .flags
= VXATTR_FLAG_HIDDEN
,
324 XATTR_QUOTA_FIELD(quota
, max_bytes
),
325 XATTR_QUOTA_FIELD(quota
, max_files
),
326 { .name
= NULL
, 0 } /* Required table terminator */
328 static size_t ceph_dir_vxattrs_name_size
; /* total size of all names */
332 static struct ceph_vxattr ceph_file_vxattrs
[] = {
334 .name
= "ceph.file.layout",
335 .name_size
= sizeof("ceph.file.layout"),
336 .getxattr_cb
= ceph_vxattrcb_layout
,
337 .exists_cb
= ceph_vxattrcb_layout_exists
,
338 .flags
= VXATTR_FLAG_HIDDEN
,
340 XATTR_LAYOUT_FIELD(file
, layout
, stripe_unit
),
341 XATTR_LAYOUT_FIELD(file
, layout
, stripe_count
),
342 XATTR_LAYOUT_FIELD(file
, layout
, object_size
),
343 XATTR_LAYOUT_FIELD(file
, layout
, pool
),
344 XATTR_LAYOUT_FIELD(file
, layout
, pool_namespace
),
345 { .name
= NULL
, 0 } /* Required table terminator */
347 static size_t ceph_file_vxattrs_name_size
; /* total size of all names */
349 static struct ceph_vxattr
*ceph_inode_vxattrs(struct inode
*inode
)
351 if (S_ISDIR(inode
->i_mode
))
352 return ceph_dir_vxattrs
;
353 else if (S_ISREG(inode
->i_mode
))
354 return ceph_file_vxattrs
;
358 static size_t ceph_vxattrs_name_size(struct ceph_vxattr
*vxattrs
)
360 if (vxattrs
== ceph_dir_vxattrs
)
361 return ceph_dir_vxattrs_name_size
;
362 if (vxattrs
== ceph_file_vxattrs
)
363 return ceph_file_vxattrs_name_size
;
369 * Compute the aggregate size (including terminating '\0') of all
370 * virtual extended attribute names in the given vxattr table.
372 static size_t __init
vxattrs_name_size(struct ceph_vxattr
*vxattrs
)
374 struct ceph_vxattr
*vxattr
;
377 for (vxattr
= vxattrs
; vxattr
->name
; vxattr
++) {
378 if (!(vxattr
->flags
& VXATTR_FLAG_HIDDEN
))
379 size
+= vxattr
->name_size
;
385 /* Routines called at initialization and exit time */
387 void __init
ceph_xattr_init(void)
389 ceph_dir_vxattrs_name_size
= vxattrs_name_size(ceph_dir_vxattrs
);
390 ceph_file_vxattrs_name_size
= vxattrs_name_size(ceph_file_vxattrs
);
393 void ceph_xattr_exit(void)
395 ceph_dir_vxattrs_name_size
= 0;
396 ceph_file_vxattrs_name_size
= 0;
399 static struct ceph_vxattr
*ceph_match_vxattr(struct inode
*inode
,
402 struct ceph_vxattr
*vxattr
= ceph_inode_vxattrs(inode
);
405 while (vxattr
->name
) {
406 if (!strcmp(vxattr
->name
, name
))
415 static int __set_xattr(struct ceph_inode_info
*ci
,
416 const char *name
, int name_len
,
417 const char *val
, int val_len
,
418 int flags
, int update_xattr
,
419 struct ceph_inode_xattr
**newxattr
)
422 struct rb_node
*parent
= NULL
;
423 struct ceph_inode_xattr
*xattr
= NULL
;
427 p
= &ci
->i_xattrs
.index
.rb_node
;
430 xattr
= rb_entry(parent
, struct ceph_inode_xattr
, node
);
431 c
= strncmp(name
, xattr
->name
, min(name_len
, xattr
->name_len
));
437 if (name_len
== xattr
->name_len
)
439 else if (name_len
< xattr
->name_len
)
450 if (xattr
&& (flags
& XATTR_CREATE
))
452 else if (!xattr
&& (flags
& XATTR_REPLACE
))
460 if (update_xattr
< 0) {
462 __remove_xattr(ci
, xattr
);
473 xattr
->name_len
= name_len
;
474 xattr
->should_free_name
= update_xattr
;
476 ci
->i_xattrs
.count
++;
477 dout("__set_xattr count=%d\n", ci
->i_xattrs
.count
);
481 if (xattr
->should_free_val
)
482 kfree((void *)xattr
->val
);
488 ci
->i_xattrs
.names_size
-= xattr
->name_len
;
489 ci
->i_xattrs
.vals_size
-= xattr
->val_len
;
491 ci
->i_xattrs
.names_size
+= name_len
;
492 ci
->i_xattrs
.vals_size
+= val_len
;
498 xattr
->val_len
= val_len
;
499 xattr
->dirty
= update_xattr
;
500 xattr
->should_free_val
= (val
&& update_xattr
);
503 rb_link_node(&xattr
->node
, parent
, p
);
504 rb_insert_color(&xattr
->node
, &ci
->i_xattrs
.index
);
505 dout("__set_xattr_val p=%p\n", p
);
508 dout("__set_xattr_val added %llx.%llx xattr %p %s=%.*s\n",
509 ceph_vinop(&ci
->vfs_inode
), xattr
, name
, val_len
, val
);
514 static struct ceph_inode_xattr
*__get_xattr(struct ceph_inode_info
*ci
,
518 struct rb_node
*parent
= NULL
;
519 struct ceph_inode_xattr
*xattr
= NULL
;
520 int name_len
= strlen(name
);
523 p
= &ci
->i_xattrs
.index
.rb_node
;
526 xattr
= rb_entry(parent
, struct ceph_inode_xattr
, node
);
527 c
= strncmp(name
, xattr
->name
, xattr
->name_len
);
528 if (c
== 0 && name_len
> xattr
->name_len
)
535 dout("__get_xattr %s: found %.*s\n", name
,
536 xattr
->val_len
, xattr
->val
);
541 dout("__get_xattr %s: not found\n", name
);
546 static void __free_xattr(struct ceph_inode_xattr
*xattr
)
550 if (xattr
->should_free_name
)
551 kfree((void *)xattr
->name
);
552 if (xattr
->should_free_val
)
553 kfree((void *)xattr
->val
);
558 static int __remove_xattr(struct ceph_inode_info
*ci
,
559 struct ceph_inode_xattr
*xattr
)
564 rb_erase(&xattr
->node
, &ci
->i_xattrs
.index
);
566 if (xattr
->should_free_name
)
567 kfree((void *)xattr
->name
);
568 if (xattr
->should_free_val
)
569 kfree((void *)xattr
->val
);
571 ci
->i_xattrs
.names_size
-= xattr
->name_len
;
572 ci
->i_xattrs
.vals_size
-= xattr
->val_len
;
573 ci
->i_xattrs
.count
--;
579 static char *__copy_xattr_names(struct ceph_inode_info
*ci
,
583 struct ceph_inode_xattr
*xattr
= NULL
;
585 p
= rb_first(&ci
->i_xattrs
.index
);
586 dout("__copy_xattr_names count=%d\n", ci
->i_xattrs
.count
);
589 xattr
= rb_entry(p
, struct ceph_inode_xattr
, node
);
590 memcpy(dest
, xattr
->name
, xattr
->name_len
);
591 dest
[xattr
->name_len
] = '\0';
593 dout("dest=%s %p (%s) (%d/%d)\n", dest
, xattr
, xattr
->name
,
594 xattr
->name_len
, ci
->i_xattrs
.names_size
);
596 dest
+= xattr
->name_len
+ 1;
603 void __ceph_destroy_xattrs(struct ceph_inode_info
*ci
)
605 struct rb_node
*p
, *tmp
;
606 struct ceph_inode_xattr
*xattr
= NULL
;
608 p
= rb_first(&ci
->i_xattrs
.index
);
610 dout("__ceph_destroy_xattrs p=%p\n", p
);
613 xattr
= rb_entry(p
, struct ceph_inode_xattr
, node
);
616 dout("__ceph_destroy_xattrs next p=%p (%.*s)\n", p
,
617 xattr
->name_len
, xattr
->name
);
618 rb_erase(tmp
, &ci
->i_xattrs
.index
);
623 ci
->i_xattrs
.names_size
= 0;
624 ci
->i_xattrs
.vals_size
= 0;
625 ci
->i_xattrs
.index_version
= 0;
626 ci
->i_xattrs
.count
= 0;
627 ci
->i_xattrs
.index
= RB_ROOT
;
630 static int __build_xattrs(struct inode
*inode
)
631 __releases(ci
->i_ceph_lock
)
632 __acquires(ci
->i_ceph_lock
)
638 const char *name
, *val
;
639 struct ceph_inode_info
*ci
= ceph_inode(inode
);
641 struct ceph_inode_xattr
**xattrs
= NULL
;
645 dout("__build_xattrs() len=%d\n",
646 ci
->i_xattrs
.blob
? (int)ci
->i_xattrs
.blob
->vec
.iov_len
: 0);
648 if (ci
->i_xattrs
.index_version
>= ci
->i_xattrs
.version
)
649 return 0; /* already built */
651 __ceph_destroy_xattrs(ci
);
654 /* updated internal xattr rb tree */
655 if (ci
->i_xattrs
.blob
&& ci
->i_xattrs
.blob
->vec
.iov_len
> 4) {
656 p
= ci
->i_xattrs
.blob
->vec
.iov_base
;
657 end
= p
+ ci
->i_xattrs
.blob
->vec
.iov_len
;
658 ceph_decode_32_safe(&p
, end
, numattr
, bad
);
659 xattr_version
= ci
->i_xattrs
.version
;
660 spin_unlock(&ci
->i_ceph_lock
);
662 xattrs
= kcalloc(numattr
, sizeof(struct ceph_inode_xattr
*),
668 for (i
= 0; i
< numattr
; i
++) {
669 xattrs
[i
] = kmalloc(sizeof(struct ceph_inode_xattr
),
675 spin_lock(&ci
->i_ceph_lock
);
676 if (ci
->i_xattrs
.version
!= xattr_version
) {
677 /* lost a race, retry */
678 for (i
= 0; i
< numattr
; i
++)
686 ceph_decode_32_safe(&p
, end
, len
, bad
);
690 ceph_decode_32_safe(&p
, end
, len
, bad
);
694 err
= __set_xattr(ci
, name
, namelen
, val
, len
,
695 0, 0, &xattrs
[numattr
]);
702 ci
->i_xattrs
.index_version
= ci
->i_xattrs
.version
;
703 ci
->i_xattrs
.dirty
= false;
707 spin_lock(&ci
->i_ceph_lock
);
710 for (i
= 0; i
< numattr
; i
++)
714 ci
->i_xattrs
.names_size
= 0;
718 static int __get_required_blob_size(struct ceph_inode_info
*ci
, int name_size
,
722 * 4 bytes for the length, and additional 4 bytes per each xattr name,
723 * 4 bytes per each value
725 int size
= 4 + ci
->i_xattrs
.count
*(4 + 4) +
726 ci
->i_xattrs
.names_size
+
727 ci
->i_xattrs
.vals_size
;
728 dout("__get_required_blob_size c=%d names.size=%d vals.size=%d\n",
729 ci
->i_xattrs
.count
, ci
->i_xattrs
.names_size
,
730 ci
->i_xattrs
.vals_size
);
733 size
+= 4 + 4 + name_size
+ val_size
;
739 * If there are dirty xattrs, reencode xattrs into the prealloc_blob
740 * and swap into place.
742 void __ceph_build_xattrs_blob(struct ceph_inode_info
*ci
)
745 struct ceph_inode_xattr
*xattr
= NULL
;
748 dout("__build_xattrs_blob %p\n", &ci
->vfs_inode
);
749 if (ci
->i_xattrs
.dirty
) {
750 int need
= __get_required_blob_size(ci
, 0, 0);
752 BUG_ON(need
> ci
->i_xattrs
.prealloc_blob
->alloc_len
);
754 p
= rb_first(&ci
->i_xattrs
.index
);
755 dest
= ci
->i_xattrs
.prealloc_blob
->vec
.iov_base
;
757 ceph_encode_32(&dest
, ci
->i_xattrs
.count
);
759 xattr
= rb_entry(p
, struct ceph_inode_xattr
, node
);
761 ceph_encode_32(&dest
, xattr
->name_len
);
762 memcpy(dest
, xattr
->name
, xattr
->name_len
);
763 dest
+= xattr
->name_len
;
764 ceph_encode_32(&dest
, xattr
->val_len
);
765 memcpy(dest
, xattr
->val
, xattr
->val_len
);
766 dest
+= xattr
->val_len
;
771 /* adjust buffer len; it may be larger than we need */
772 ci
->i_xattrs
.prealloc_blob
->vec
.iov_len
=
773 dest
- ci
->i_xattrs
.prealloc_blob
->vec
.iov_base
;
775 if (ci
->i_xattrs
.blob
)
776 ceph_buffer_put(ci
->i_xattrs
.blob
);
777 ci
->i_xattrs
.blob
= ci
->i_xattrs
.prealloc_blob
;
778 ci
->i_xattrs
.prealloc_blob
= NULL
;
779 ci
->i_xattrs
.dirty
= false;
780 ci
->i_xattrs
.version
++;
784 static inline int __get_request_mask(struct inode
*in
) {
785 struct ceph_mds_request
*req
= current
->journal_info
;
787 if (req
&& req
->r_target_inode
== in
) {
788 if (req
->r_op
== CEPH_MDS_OP_LOOKUP
||
789 req
->r_op
== CEPH_MDS_OP_LOOKUPINO
||
790 req
->r_op
== CEPH_MDS_OP_LOOKUPPARENT
||
791 req
->r_op
== CEPH_MDS_OP_GETATTR
) {
792 mask
= le32_to_cpu(req
->r_args
.getattr
.mask
);
793 } else if (req
->r_op
== CEPH_MDS_OP_OPEN
||
794 req
->r_op
== CEPH_MDS_OP_CREATE
) {
795 mask
= le32_to_cpu(req
->r_args
.open
.mask
);
801 ssize_t
__ceph_getxattr(struct inode
*inode
, const char *name
, void *value
,
804 struct ceph_inode_info
*ci
= ceph_inode(inode
);
805 struct ceph_inode_xattr
*xattr
;
806 struct ceph_vxattr
*vxattr
= NULL
;
810 /* let's see if a virtual xattr was requested */
811 vxattr
= ceph_match_vxattr(inode
, name
);
814 if (vxattr
->flags
& VXATTR_FLAG_RSTAT
)
815 mask
|= CEPH_STAT_RSTAT
;
816 err
= ceph_do_getattr(inode
, mask
, true);
820 if (!(vxattr
->exists_cb
&& !vxattr
->exists_cb(ci
)))
821 err
= vxattr
->getxattr_cb(ci
, value
, size
);
825 req_mask
= __get_request_mask(inode
);
827 spin_lock(&ci
->i_ceph_lock
);
828 dout("getxattr %p ver=%lld index_ver=%lld\n", inode
,
829 ci
->i_xattrs
.version
, ci
->i_xattrs
.index_version
);
831 if (ci
->i_xattrs
.version
== 0 ||
832 !((req_mask
& CEPH_CAP_XATTR_SHARED
) ||
833 __ceph_caps_issued_mask(ci
, CEPH_CAP_XATTR_SHARED
, 1))) {
834 spin_unlock(&ci
->i_ceph_lock
);
836 /* security module gets xattr while filling trace */
837 if (current
->journal_info
) {
838 pr_warn_ratelimited("sync getxattr %p "
839 "during filling trace\n", inode
);
843 /* get xattrs from mds (if we don't already have them) */
844 err
= ceph_do_getattr(inode
, CEPH_STAT_CAP_XATTR
, true);
847 spin_lock(&ci
->i_ceph_lock
);
850 err
= __build_xattrs(inode
);
854 err
= -ENODATA
; /* == ENOATTR */
855 xattr
= __get_xattr(ci
, name
);
860 if (size
&& size
< xattr
->val_len
)
863 err
= xattr
->val_len
;
867 memcpy(value
, xattr
->val
, xattr
->val_len
);
869 if (current
->journal_info
&&
870 !strncmp(name
, XATTR_SECURITY_PREFIX
, XATTR_SECURITY_PREFIX_LEN
))
871 ci
->i_ceph_flags
|= CEPH_I_SEC_INITED
;
873 spin_unlock(&ci
->i_ceph_lock
);
877 ssize_t
ceph_listxattr(struct dentry
*dentry
, char *names
, size_t size
)
879 struct inode
*inode
= d_inode(dentry
);
880 struct ceph_inode_info
*ci
= ceph_inode(inode
);
881 struct ceph_vxattr
*vxattrs
= ceph_inode_vxattrs(inode
);
888 spin_lock(&ci
->i_ceph_lock
);
889 dout("listxattr %p ver=%lld index_ver=%lld\n", inode
,
890 ci
->i_xattrs
.version
, ci
->i_xattrs
.index_version
);
892 if (ci
->i_xattrs
.version
== 0 ||
893 !__ceph_caps_issued_mask(ci
, CEPH_CAP_XATTR_SHARED
, 1)) {
894 spin_unlock(&ci
->i_ceph_lock
);
895 err
= ceph_do_getattr(inode
, CEPH_STAT_CAP_XATTR
, true);
898 spin_lock(&ci
->i_ceph_lock
);
901 err
= __build_xattrs(inode
);
905 * Start with virtual dir xattr names (if any) (including
906 * terminating '\0' characters for each).
908 vir_namelen
= ceph_vxattrs_name_size(vxattrs
);
910 /* adding 1 byte per each variable due to the null termination */
911 namelen
= ci
->i_xattrs
.names_size
+ ci
->i_xattrs
.count
;
913 if (size
&& vir_namelen
+ namelen
> size
)
916 err
= namelen
+ vir_namelen
;
920 names
= __copy_xattr_names(ci
, names
);
922 /* virtual xattr names, too */
925 for (i
= 0; vxattrs
[i
].name
; i
++) {
926 if (!(vxattrs
[i
].flags
& VXATTR_FLAG_HIDDEN
) &&
927 !(vxattrs
[i
].exists_cb
&&
928 !vxattrs
[i
].exists_cb(ci
))) {
929 len
= sprintf(names
, "%s", vxattrs
[i
].name
);
937 spin_unlock(&ci
->i_ceph_lock
);
941 static int ceph_sync_setxattr(struct inode
*inode
, const char *name
,
942 const char *value
, size_t size
, int flags
)
944 struct ceph_fs_client
*fsc
= ceph_sb_to_client(inode
->i_sb
);
945 struct ceph_inode_info
*ci
= ceph_inode(inode
);
946 struct ceph_mds_request
*req
;
947 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
948 struct ceph_pagelist
*pagelist
= NULL
;
949 int op
= CEPH_MDS_OP_SETXATTR
;
953 /* copy value into pagelist */
954 pagelist
= ceph_pagelist_alloc(GFP_NOFS
);
958 err
= ceph_pagelist_append(pagelist
, value
, size
);
962 if (flags
& CEPH_XATTR_REPLACE
)
963 op
= CEPH_MDS_OP_RMXATTR
;
965 flags
|= CEPH_XATTR_REMOVE
;
968 dout("setxattr value=%.*s\n", (int)size
, value
);
971 req
= ceph_mdsc_create_request(mdsc
, op
, USE_AUTH_MDS
);
977 req
->r_path2
= kstrdup(name
, GFP_NOFS
);
979 ceph_mdsc_put_request(req
);
984 if (op
== CEPH_MDS_OP_SETXATTR
) {
985 req
->r_args
.setxattr
.flags
= cpu_to_le32(flags
);
986 req
->r_pagelist
= pagelist
;
990 req
->r_inode
= inode
;
993 req
->r_inode_drop
= CEPH_CAP_XATTR_SHARED
;
995 dout("xattr.ver (before): %lld\n", ci
->i_xattrs
.version
);
996 err
= ceph_mdsc_do_request(mdsc
, NULL
, req
);
997 ceph_mdsc_put_request(req
);
998 dout("xattr.ver (after): %lld\n", ci
->i_xattrs
.version
);
1002 ceph_pagelist_release(pagelist
);
1006 int __ceph_setxattr(struct inode
*inode
, const char *name
,
1007 const void *value
, size_t size
, int flags
)
1009 struct ceph_vxattr
*vxattr
;
1010 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1011 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(inode
->i_sb
)->mdsc
;
1012 struct ceph_cap_flush
*prealloc_cf
= NULL
;
1016 int name_len
= strlen(name
);
1018 char *newname
= NULL
;
1019 char *newval
= NULL
;
1020 struct ceph_inode_xattr
*xattr
= NULL
;
1021 int required_blob_size
;
1022 bool check_realm
= false;
1023 bool lock_snap_rwsem
= false;
1025 if (ceph_snap(inode
) != CEPH_NOSNAP
)
1028 vxattr
= ceph_match_vxattr(inode
, name
);
1030 if (vxattr
->flags
& VXATTR_FLAG_READONLY
)
1032 if (value
&& !strncmp(vxattr
->name
, "ceph.quota", 10))
1036 /* pass any unhandled ceph.* xattrs through to the MDS */
1037 if (!strncmp(name
, XATTR_CEPH_PREFIX
, XATTR_CEPH_PREFIX_LEN
))
1038 goto do_sync_unlocked
;
1040 /* preallocate memory for xattr name, value, index node */
1042 newname
= kmemdup(name
, name_len
+ 1, GFP_NOFS
);
1047 newval
= kmemdup(value
, val_len
, GFP_NOFS
);
1052 xattr
= kmalloc(sizeof(struct ceph_inode_xattr
), GFP_NOFS
);
1056 prealloc_cf
= ceph_alloc_cap_flush();
1060 spin_lock(&ci
->i_ceph_lock
);
1062 issued
= __ceph_caps_issued(ci
, NULL
);
1063 if (ci
->i_xattrs
.version
== 0 || !(issued
& CEPH_CAP_XATTR_EXCL
))
1066 if (!lock_snap_rwsem
&& !ci
->i_head_snapc
) {
1067 lock_snap_rwsem
= true;
1068 if (!down_read_trylock(&mdsc
->snap_rwsem
)) {
1069 spin_unlock(&ci
->i_ceph_lock
);
1070 down_read(&mdsc
->snap_rwsem
);
1071 spin_lock(&ci
->i_ceph_lock
);
1076 dout("setxattr %p issued %s\n", inode
, ceph_cap_string(issued
));
1077 __build_xattrs(inode
);
1079 required_blob_size
= __get_required_blob_size(ci
, name_len
, val_len
);
1081 if (!ci
->i_xattrs
.prealloc_blob
||
1082 required_blob_size
> ci
->i_xattrs
.prealloc_blob
->alloc_len
) {
1083 struct ceph_buffer
*blob
;
1085 spin_unlock(&ci
->i_ceph_lock
);
1086 dout(" preaallocating new blob size=%d\n", required_blob_size
);
1087 blob
= ceph_buffer_new(required_blob_size
, GFP_NOFS
);
1089 goto do_sync_unlocked
;
1090 spin_lock(&ci
->i_ceph_lock
);
1091 if (ci
->i_xattrs
.prealloc_blob
)
1092 ceph_buffer_put(ci
->i_xattrs
.prealloc_blob
);
1093 ci
->i_xattrs
.prealloc_blob
= blob
;
1097 err
= __set_xattr(ci
, newname
, name_len
, newval
, val_len
,
1098 flags
, value
? 1 : -1, &xattr
);
1101 dirty
= __ceph_mark_dirty_caps(ci
, CEPH_CAP_XATTR_EXCL
,
1103 ci
->i_xattrs
.dirty
= true;
1104 inode
->i_ctime
= current_time(inode
);
1107 spin_unlock(&ci
->i_ceph_lock
);
1108 if (lock_snap_rwsem
)
1109 up_read(&mdsc
->snap_rwsem
);
1111 __mark_inode_dirty(inode
, dirty
);
1112 ceph_free_cap_flush(prealloc_cf
);
1116 spin_unlock(&ci
->i_ceph_lock
);
1118 if (lock_snap_rwsem
)
1119 up_read(&mdsc
->snap_rwsem
);
1121 /* security module set xattr while filling trace */
1122 if (current
->journal_info
) {
1123 pr_warn_ratelimited("sync setxattr %p "
1124 "during filling trace\n", inode
);
1127 err
= ceph_sync_setxattr(inode
, name
, value
, size
, flags
);
1128 if (err
>= 0 && check_realm
) {
1129 /* check if snaprealm was created for quota inode */
1130 spin_lock(&ci
->i_ceph_lock
);
1131 if ((ci
->i_max_files
|| ci
->i_max_bytes
) &&
1132 !(ci
->i_snap_realm
&&
1133 ci
->i_snap_realm
->ino
== ci
->i_vino
.ino
))
1135 spin_unlock(&ci
->i_ceph_lock
);
1139 ceph_free_cap_flush(prealloc_cf
);
1146 static int ceph_get_xattr_handler(const struct xattr_handler
*handler
,
1147 struct dentry
*dentry
, struct inode
*inode
,
1148 const char *name
, void *value
, size_t size
)
1150 if (!ceph_is_valid_xattr(name
))
1152 return __ceph_getxattr(inode
, name
, value
, size
);
1155 static int ceph_set_xattr_handler(const struct xattr_handler
*handler
,
1156 struct dentry
*unused
, struct inode
*inode
,
1157 const char *name
, const void *value
,
1158 size_t size
, int flags
)
1160 if (!ceph_is_valid_xattr(name
))
1162 return __ceph_setxattr(inode
, name
, value
, size
, flags
);
1165 static const struct xattr_handler ceph_other_xattr_handler
= {
1166 .prefix
= "", /* match any name => handlers called with full name */
1167 .get
= ceph_get_xattr_handler
,
1168 .set
= ceph_set_xattr_handler
,
1171 #ifdef CONFIG_SECURITY
1172 bool ceph_security_xattr_wanted(struct inode
*in
)
1174 return in
->i_security
!= NULL
;
1177 bool ceph_security_xattr_deadlock(struct inode
*in
)
1179 struct ceph_inode_info
*ci
;
1181 if (!in
->i_security
)
1183 ci
= ceph_inode(in
);
1184 spin_lock(&ci
->i_ceph_lock
);
1185 ret
= !(ci
->i_ceph_flags
& CEPH_I_SEC_INITED
) &&
1186 !(ci
->i_xattrs
.version
> 0 &&
1187 __ceph_caps_issued_mask(ci
, CEPH_CAP_XATTR_SHARED
, 0));
1188 spin_unlock(&ci
->i_ceph_lock
);