blob: 197cb123434149ffc684deb405196eb7032bc958 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Yan, Zheng25e6bae2014-09-16 19:15:28 +08003#include <linux/ceph/pagelist.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004
Sage Weil355da1e2009-10-06 11:31:08 -07005#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07006#include "mds_client.h"
7
8#include <linux/ceph/decode.h>
Sage Weil355da1e2009-10-06 11:31:08 -07009
10#include <linux/xattr.h>
Yan, Zhengac6713c2019-05-26 16:27:56 +080011#include <linux/security.h>
Linus Torvalds4db658e2014-01-28 18:06:18 -080012#include <linux/posix_acl_xattr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Sage Weil355da1e2009-10-06 11:31:08 -070014
Alex Elder22891902012-01-23 15:49:28 -060015#define XATTR_CEPH_PREFIX "ceph."
16#define XATTR_CEPH_PREFIX_LEN (sizeof (XATTR_CEPH_PREFIX) - 1)
17
Yan, Zhengbcdfeb22014-02-11 13:04:19 +080018static int __remove_xattr(struct ceph_inode_info *ci,
19 struct ceph_inode_xattr *xattr);
20
Sage Weil355da1e2009-10-06 11:31:08 -070021static bool ceph_is_valid_xattr(const char *name)
22{
Jeff Laytonb8fe9182019-08-06 10:55:41 -040023 return !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
24 !strncmp(name, XATTR_CEPH_PREFIX, XATTR_CEPH_PREFIX_LEN) ||
Sage Weil355da1e2009-10-06 11:31:08 -070025 !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
26 !strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
27}
28
29/*
30 * These define virtual xattrs exposing the recursive directory
31 * statistics and layout metadata.
32 */
Alex Elder881a5fa2012-01-23 15:49:28 -060033struct ceph_vxattr {
Sage Weil355da1e2009-10-06 11:31:08 -070034 char *name;
Alex Elder3ce6cd12012-01-23 15:49:28 -060035 size_t name_size; /* strlen(name) + 1 (for '\0') */
Jeff Laytonf1d1b512019-06-24 07:39:18 -040036 ssize_t (*getxattr_cb)(struct ceph_inode_info *ci, char *val,
37 size_t size);
Sage Weilf36e4472013-01-20 21:59:29 -080038 bool (*exists_cb)(struct ceph_inode_info *ci);
Yan, Zheng4e9906e2018-04-25 17:14:05 +080039 unsigned int flags;
Sage Weil355da1e2009-10-06 11:31:08 -070040};
41
Yan, Zheng4e9906e2018-04-25 17:14:05 +080042#define VXATTR_FLAG_READONLY (1<<0)
43#define VXATTR_FLAG_HIDDEN (1<<1)
Yan, Zheng49a9f4f2018-04-25 17:30:23 +080044#define VXATTR_FLAG_RSTAT (1<<2)
Yan, Zheng4e9906e2018-04-25 17:14:05 +080045
Sage Weil32ab0bd2013-01-19 16:46:32 -080046/* layouts */
47
48static bool ceph_vxattrcb_layout_exists(struct ceph_inode_info *ci)
49{
Yan, Zheng779fe0f2016-03-07 09:35:06 +080050 struct ceph_file_layout *fl = &ci->i_layout;
51 return (fl->stripe_unit > 0 || fl->stripe_count > 0 ||
52 fl->object_size > 0 || fl->pool_id >= 0 ||
53 rcu_dereference_raw(fl->pool_ns) != NULL);
Sage Weil32ab0bd2013-01-19 16:46:32 -080054}
55
Jeff Laytonf1d1b512019-06-24 07:39:18 -040056static ssize_t ceph_vxattrcb_layout(struct ceph_inode_info *ci, char *val,
57 size_t size)
Sage Weil32ab0bd2013-01-19 16:46:32 -080058{
Sage Weil32ab0bd2013-01-19 16:46:32 -080059 struct ceph_fs_client *fsc = ceph_sb_to_client(ci->vfs_inode.i_sb);
60 struct ceph_osd_client *osdc = &fsc->client->osdc;
Yan, Zheng779fe0f2016-03-07 09:35:06 +080061 struct ceph_string *pool_ns;
Yan, Zheng76271512016-02-03 21:24:49 +080062 s64 pool = ci->i_layout.pool_id;
Sage Weil32ab0bd2013-01-19 16:46:32 -080063 const char *pool_name;
Yan, Zheng779fe0f2016-03-07 09:35:06 +080064 const char *ns_field = " pool_namespace=";
Yan, Zheng1e5c6642014-03-24 13:00:54 +080065 char buf[128];
Yan, Zheng779fe0f2016-03-07 09:35:06 +080066 size_t len, total_len = 0;
Jeff Layton3b421012019-06-13 15:17:00 -040067 ssize_t ret;
Yan, Zheng779fe0f2016-03-07 09:35:06 +080068
69 pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
Sage Weil32ab0bd2013-01-19 16:46:32 -080070
71 dout("ceph_vxattrcb_layout %p\n", &ci->vfs_inode);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020072 down_read(&osdc->lock);
Sage Weil32ab0bd2013-01-19 16:46:32 -080073 pool_name = ceph_pg_pool_name_by_id(osdc->osdmap, pool);
Yan, Zheng1e5c6642014-03-24 13:00:54 +080074 if (pool_name) {
Yan, Zheng779fe0f2016-03-07 09:35:06 +080075 len = snprintf(buf, sizeof(buf),
Yan, Zheng76271512016-02-03 21:24:49 +080076 "stripe_unit=%u stripe_count=%u object_size=%u pool=",
77 ci->i_layout.stripe_unit, ci->i_layout.stripe_count,
78 ci->i_layout.object_size);
Yan, Zheng779fe0f2016-03-07 09:35:06 +080079 total_len = len + strlen(pool_name);
Yan, Zheng1e5c6642014-03-24 13:00:54 +080080 } else {
Yan, Zheng779fe0f2016-03-07 09:35:06 +080081 len = snprintf(buf, sizeof(buf),
Yan, Zheng76271512016-02-03 21:24:49 +080082 "stripe_unit=%u stripe_count=%u object_size=%u pool=%lld",
83 ci->i_layout.stripe_unit, ci->i_layout.stripe_count,
Jeff Laytonf1d1b512019-06-24 07:39:18 -040084 ci->i_layout.object_size, pool);
Yan, Zheng779fe0f2016-03-07 09:35:06 +080085 total_len = len;
86 }
87
88 if (pool_ns)
89 total_len += strlen(ns_field) + pool_ns->len;
90
Jeff Layton3b421012019-06-13 15:17:00 -040091 ret = total_len;
92 if (size >= total_len) {
Yan, Zheng779fe0f2016-03-07 09:35:06 +080093 memcpy(val, buf, len);
94 ret = len;
95 if (pool_name) {
96 len = strlen(pool_name);
97 memcpy(val + ret, pool_name, len);
98 ret += len;
99 }
100 if (pool_ns) {
101 len = strlen(ns_field);
102 memcpy(val + ret, ns_field, len);
103 ret += len;
104 memcpy(val + ret, pool_ns->str, pool_ns->len);
105 ret += pool_ns->len;
Yan, Zheng1e5c6642014-03-24 13:00:54 +0800106 }
107 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200108 up_read(&osdc->lock);
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800109 ceph_put_string(pool_ns);
Sage Weil32ab0bd2013-01-19 16:46:32 -0800110 return ret;
111}
112
Jeff Layton26350532019-06-24 07:32:21 -0400113/*
114 * The convention with strings in xattrs is that they should not be NULL
115 * terminated, since we're returning the length with them. snprintf always
116 * NULL terminates however, so call it on a temporary buffer and then memcpy
117 * the result into place.
118 */
Ilya Dryomovf6fbdcd2020-09-17 18:45:44 +0200119static __printf(3, 4)
120int ceph_fmt_xattr(char *val, size_t size, const char *fmt, ...)
Jeff Layton26350532019-06-24 07:32:21 -0400121{
122 int ret;
123 va_list args;
124 char buf[96]; /* NB: reevaluate size if new vxattrs are added */
125
126 va_start(args, fmt);
127 ret = vsnprintf(buf, size ? sizeof(buf) : 0, fmt, args);
128 va_end(args);
129
130 /* Sanity check */
131 if (size && ret + 1 > sizeof(buf)) {
132 WARN_ONCE(true, "Returned length too big (%d)", ret);
133 return -E2BIG;
134 }
135
136 if (ret <= size)
137 memcpy(val, buf, ret);
138 return ret;
139}
140
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400141static ssize_t ceph_vxattrcb_layout_stripe_unit(struct ceph_inode_info *ci,
142 char *val, size_t size)
Sage Weil695b7112013-01-20 22:08:33 -0800143{
Jeff Layton26350532019-06-24 07:32:21 -0400144 return ceph_fmt_xattr(val, size, "%u", ci->i_layout.stripe_unit);
Sage Weil695b7112013-01-20 22:08:33 -0800145}
146
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400147static ssize_t ceph_vxattrcb_layout_stripe_count(struct ceph_inode_info *ci,
148 char *val, size_t size)
Sage Weil695b7112013-01-20 22:08:33 -0800149{
Jeff Layton26350532019-06-24 07:32:21 -0400150 return ceph_fmt_xattr(val, size, "%u", ci->i_layout.stripe_count);
Sage Weil695b7112013-01-20 22:08:33 -0800151}
152
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400153static ssize_t ceph_vxattrcb_layout_object_size(struct ceph_inode_info *ci,
154 char *val, size_t size)
Sage Weil695b7112013-01-20 22:08:33 -0800155{
Jeff Layton26350532019-06-24 07:32:21 -0400156 return ceph_fmt_xattr(val, size, "%u", ci->i_layout.object_size);
Sage Weil695b7112013-01-20 22:08:33 -0800157}
158
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400159static ssize_t ceph_vxattrcb_layout_pool(struct ceph_inode_info *ci,
160 char *val, size_t size)
Sage Weil695b7112013-01-20 22:08:33 -0800161{
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400162 ssize_t ret;
Sage Weil695b7112013-01-20 22:08:33 -0800163 struct ceph_fs_client *fsc = ceph_sb_to_client(ci->vfs_inode.i_sb);
164 struct ceph_osd_client *osdc = &fsc->client->osdc;
Yan, Zheng76271512016-02-03 21:24:49 +0800165 s64 pool = ci->i_layout.pool_id;
Sage Weil695b7112013-01-20 22:08:33 -0800166 const char *pool_name;
167
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200168 down_read(&osdc->lock);
Sage Weil695b7112013-01-20 22:08:33 -0800169 pool_name = ceph_pg_pool_name_by_id(osdc->osdmap, pool);
Jeff Layton26350532019-06-24 07:32:21 -0400170 if (pool_name) {
171 ret = strlen(pool_name);
172 if (ret <= size)
173 memcpy(val, pool_name, ret);
174 } else {
175 ret = ceph_fmt_xattr(val, size, "%lld", pool);
176 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200177 up_read(&osdc->lock);
Sage Weil695b7112013-01-20 22:08:33 -0800178 return ret;
179}
180
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400181static ssize_t ceph_vxattrcb_layout_pool_namespace(struct ceph_inode_info *ci,
182 char *val, size_t size)
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800183{
Jeff Layton26350532019-06-24 07:32:21 -0400184 ssize_t ret = 0;
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800185 struct ceph_string *ns = ceph_try_get_string(ci->i_layout.pool_ns);
Jeff Layton26350532019-06-24 07:32:21 -0400186
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800187 if (ns) {
Jeff Layton26350532019-06-24 07:32:21 -0400188 ret = ns->len;
189 if (ret <= size)
190 memcpy(val, ns->str, ret);
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800191 ceph_put_string(ns);
192 }
193 return ret;
194}
195
Sage Weil355da1e2009-10-06 11:31:08 -0700196/* directories */
197
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400198static ssize_t ceph_vxattrcb_dir_entries(struct ceph_inode_info *ci, char *val,
199 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700200{
Jeff Layton26350532019-06-24 07:32:21 -0400201 return ceph_fmt_xattr(val, size, "%lld", ci->i_files + ci->i_subdirs);
Sage Weil355da1e2009-10-06 11:31:08 -0700202}
203
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400204static ssize_t ceph_vxattrcb_dir_files(struct ceph_inode_info *ci, char *val,
205 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700206{
Jeff Layton26350532019-06-24 07:32:21 -0400207 return ceph_fmt_xattr(val, size, "%lld", ci->i_files);
Sage Weil355da1e2009-10-06 11:31:08 -0700208}
209
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400210static ssize_t ceph_vxattrcb_dir_subdirs(struct ceph_inode_info *ci, char *val,
211 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700212{
Jeff Layton26350532019-06-24 07:32:21 -0400213 return ceph_fmt_xattr(val, size, "%lld", ci->i_subdirs);
Sage Weil355da1e2009-10-06 11:31:08 -0700214}
215
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400216static ssize_t ceph_vxattrcb_dir_rentries(struct ceph_inode_info *ci, char *val,
217 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700218{
Jeff Layton26350532019-06-24 07:32:21 -0400219 return ceph_fmt_xattr(val, size, "%lld",
220 ci->i_rfiles + ci->i_rsubdirs);
Sage Weil355da1e2009-10-06 11:31:08 -0700221}
222
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400223static ssize_t ceph_vxattrcb_dir_rfiles(struct ceph_inode_info *ci, char *val,
224 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700225{
Jeff Layton26350532019-06-24 07:32:21 -0400226 return ceph_fmt_xattr(val, size, "%lld", ci->i_rfiles);
Sage Weil355da1e2009-10-06 11:31:08 -0700227}
228
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400229static ssize_t ceph_vxattrcb_dir_rsubdirs(struct ceph_inode_info *ci, char *val,
230 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700231{
Jeff Layton26350532019-06-24 07:32:21 -0400232 return ceph_fmt_xattr(val, size, "%lld", ci->i_rsubdirs);
Sage Weil355da1e2009-10-06 11:31:08 -0700233}
234
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400235static ssize_t ceph_vxattrcb_dir_rbytes(struct ceph_inode_info *ci, char *val,
236 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700237{
Jeff Layton26350532019-06-24 07:32:21 -0400238 return ceph_fmt_xattr(val, size, "%lld", ci->i_rbytes);
Sage Weil355da1e2009-10-06 11:31:08 -0700239}
240
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400241static ssize_t ceph_vxattrcb_dir_rctime(struct ceph_inode_info *ci, char *val,
242 size_t size)
Sage Weil355da1e2009-10-06 11:31:08 -0700243{
Jeff Layton26350532019-06-24 07:32:21 -0400244 return ceph_fmt_xattr(val, size, "%lld.%09ld", ci->i_rctime.tv_sec,
245 ci->i_rctime.tv_nsec);
Sage Weil355da1e2009-10-06 11:31:08 -0700246}
247
Yan, Zheng08796872019-01-09 11:07:02 +0800248/* dir pin */
249static bool ceph_vxattrcb_dir_pin_exists(struct ceph_inode_info *ci)
250{
251 return ci->i_dir_pin != -ENODATA;
252}
Luis Henriquesfb18a572018-01-05 10:47:18 +0000253
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400254static ssize_t ceph_vxattrcb_dir_pin(struct ceph_inode_info *ci, char *val,
255 size_t size)
Yan, Zheng08796872019-01-09 11:07:02 +0800256{
Jeff Layton26350532019-06-24 07:32:21 -0400257 return ceph_fmt_xattr(val, size, "%d", (int)ci->i_dir_pin);
Yan, Zheng08796872019-01-09 11:07:02 +0800258}
259
260/* quotas */
Luis Henriquesfb18a572018-01-05 10:47:18 +0000261static bool ceph_vxattrcb_quota_exists(struct ceph_inode_info *ci)
262{
Yan, Zhengf1919822018-04-08 09:54:39 +0800263 bool ret = false;
264 spin_lock(&ci->i_ceph_lock);
265 if ((ci->i_max_files || ci->i_max_bytes) &&
266 ci->i_vino.snap == CEPH_NOSNAP &&
267 ci->i_snap_realm &&
268 ci->i_snap_realm->ino == ci->i_vino.ino)
269 ret = true;
270 spin_unlock(&ci->i_ceph_lock);
271 return ret;
Luis Henriquesfb18a572018-01-05 10:47:18 +0000272}
273
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400274static ssize_t ceph_vxattrcb_quota(struct ceph_inode_info *ci, char *val,
275 size_t size)
Luis Henriquesfb18a572018-01-05 10:47:18 +0000276{
Jeff Layton26350532019-06-24 07:32:21 -0400277 return ceph_fmt_xattr(val, size, "max_bytes=%llu max_files=%llu",
278 ci->i_max_bytes, ci->i_max_files);
Luis Henriquesfb18a572018-01-05 10:47:18 +0000279}
280
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400281static ssize_t ceph_vxattrcb_quota_max_bytes(struct ceph_inode_info *ci,
282 char *val, size_t size)
Luis Henriquesfb18a572018-01-05 10:47:18 +0000283{
Jeff Layton26350532019-06-24 07:32:21 -0400284 return ceph_fmt_xattr(val, size, "%llu", ci->i_max_bytes);
Luis Henriquesfb18a572018-01-05 10:47:18 +0000285}
286
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400287static ssize_t ceph_vxattrcb_quota_max_files(struct ceph_inode_info *ci,
288 char *val, size_t size)
Luis Henriquesfb18a572018-01-05 10:47:18 +0000289{
Jeff Layton26350532019-06-24 07:32:21 -0400290 return ceph_fmt_xattr(val, size, "%llu", ci->i_max_files);
Luis Henriquesfb18a572018-01-05 10:47:18 +0000291}
Sage Weil32ab0bd2013-01-19 16:46:32 -0800292
David Disseldorp100cc612019-04-18 14:15:47 +0200293/* snapshots */
294static bool ceph_vxattrcb_snap_btime_exists(struct ceph_inode_info *ci)
295{
296 return (ci->i_snap_btime.tv_sec != 0 || ci->i_snap_btime.tv_nsec != 0);
297}
298
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400299static ssize_t ceph_vxattrcb_snap_btime(struct ceph_inode_info *ci, char *val,
300 size_t size)
David Disseldorp100cc612019-04-18 14:15:47 +0200301{
Jeff Layton26350532019-06-24 07:32:21 -0400302 return ceph_fmt_xattr(val, size, "%lld.%09ld", ci->i_snap_btime.tv_sec,
303 ci->i_snap_btime.tv_nsec);
David Disseldorp100cc612019-04-18 14:15:47 +0200304}
305
Alex Eldereb788082012-01-23 15:49:28 -0600306#define CEPH_XATTR_NAME(_type, _name) XATTR_CEPH_PREFIX #_type "." #_name
Sage Weil695b7112013-01-20 22:08:33 -0800307#define CEPH_XATTR_NAME2(_type, _name, _name2) \
308 XATTR_CEPH_PREFIX #_type "." #_name "." #_name2
Alex Eldereb788082012-01-23 15:49:28 -0600309
Yan, Zheng49a9f4f2018-04-25 17:30:23 +0800310#define XATTR_NAME_CEPH(_type, _name, _flags) \
Sage Weil88601472013-01-31 11:53:27 -0800311 { \
312 .name = CEPH_XATTR_NAME(_type, _name), \
313 .name_size = sizeof (CEPH_XATTR_NAME(_type, _name)), \
314 .getxattr_cb = ceph_vxattrcb_ ## _type ## _ ## _name, \
Yan, Zheng49a9f4f2018-04-25 17:30:23 +0800315 .exists_cb = NULL, \
316 .flags = (VXATTR_FLAG_READONLY | _flags), \
Sage Weil88601472013-01-31 11:53:27 -0800317 }
Yan, Zheng49a9f4f2018-04-25 17:30:23 +0800318#define XATTR_RSTAT_FIELD(_type, _name) \
319 XATTR_NAME_CEPH(_type, _name, VXATTR_FLAG_RSTAT)
Sage Weil695b7112013-01-20 22:08:33 -0800320#define XATTR_LAYOUT_FIELD(_type, _name, _field) \
321 { \
322 .name = CEPH_XATTR_NAME2(_type, _name, _field), \
323 .name_size = sizeof (CEPH_XATTR_NAME2(_type, _name, _field)), \
324 .getxattr_cb = ceph_vxattrcb_ ## _name ## _ ## _field, \
Sage Weil695b7112013-01-20 22:08:33 -0800325 .exists_cb = ceph_vxattrcb_layout_exists, \
Yan, Zheng4e9906e2018-04-25 17:14:05 +0800326 .flags = VXATTR_FLAG_HIDDEN, \
Sage Weil695b7112013-01-20 22:08:33 -0800327 }
Luis Henriquesfb18a572018-01-05 10:47:18 +0000328#define XATTR_QUOTA_FIELD(_type, _name) \
329 { \
330 .name = CEPH_XATTR_NAME(_type, _name), \
331 .name_size = sizeof(CEPH_XATTR_NAME(_type, _name)), \
332 .getxattr_cb = ceph_vxattrcb_ ## _type ## _ ## _name, \
Luis Henriquesfb18a572018-01-05 10:47:18 +0000333 .exists_cb = ceph_vxattrcb_quota_exists, \
Yan, Zheng4e9906e2018-04-25 17:14:05 +0800334 .flags = VXATTR_FLAG_HIDDEN, \
Luis Henriquesfb18a572018-01-05 10:47:18 +0000335 }
Alex Eldereb788082012-01-23 15:49:28 -0600336
Alex Elder881a5fa2012-01-23 15:49:28 -0600337static struct ceph_vxattr ceph_dir_vxattrs[] = {
Sage Weil1f08f2b2013-01-20 22:07:12 -0800338 {
339 .name = "ceph.dir.layout",
340 .name_size = sizeof("ceph.dir.layout"),
341 .getxattr_cb = ceph_vxattrcb_layout,
Sage Weil1f08f2b2013-01-20 22:07:12 -0800342 .exists_cb = ceph_vxattrcb_layout_exists,
Yan, Zheng4e9906e2018-04-25 17:14:05 +0800343 .flags = VXATTR_FLAG_HIDDEN,
Sage Weil1f08f2b2013-01-20 22:07:12 -0800344 },
Sage Weil695b7112013-01-20 22:08:33 -0800345 XATTR_LAYOUT_FIELD(dir, layout, stripe_unit),
346 XATTR_LAYOUT_FIELD(dir, layout, stripe_count),
347 XATTR_LAYOUT_FIELD(dir, layout, object_size),
348 XATTR_LAYOUT_FIELD(dir, layout, pool),
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800349 XATTR_LAYOUT_FIELD(dir, layout, pool_namespace),
Yan, Zheng49a9f4f2018-04-25 17:30:23 +0800350 XATTR_NAME_CEPH(dir, entries, 0),
351 XATTR_NAME_CEPH(dir, files, 0),
352 XATTR_NAME_CEPH(dir, subdirs, 0),
353 XATTR_RSTAT_FIELD(dir, rentries),
354 XATTR_RSTAT_FIELD(dir, rfiles),
355 XATTR_RSTAT_FIELD(dir, rsubdirs),
356 XATTR_RSTAT_FIELD(dir, rbytes),
357 XATTR_RSTAT_FIELD(dir, rctime),
Luis Henriquesfb18a572018-01-05 10:47:18 +0000358 {
Yan, Zheng08796872019-01-09 11:07:02 +0800359 .name = "ceph.dir.pin",
David Disseldorpe1b81432019-04-18 14:15:45 +0200360 .name_size = sizeof("ceph.dir.pin"),
Yan, Zheng08796872019-01-09 11:07:02 +0800361 .getxattr_cb = ceph_vxattrcb_dir_pin,
362 .exists_cb = ceph_vxattrcb_dir_pin_exists,
363 .flags = VXATTR_FLAG_HIDDEN,
364 },
365 {
Luis Henriquesfb18a572018-01-05 10:47:18 +0000366 .name = "ceph.quota",
367 .name_size = sizeof("ceph.quota"),
368 .getxattr_cb = ceph_vxattrcb_quota,
Luis Henriquesfb18a572018-01-05 10:47:18 +0000369 .exists_cb = ceph_vxattrcb_quota_exists,
Yan, Zheng4e9906e2018-04-25 17:14:05 +0800370 .flags = VXATTR_FLAG_HIDDEN,
Luis Henriquesfb18a572018-01-05 10:47:18 +0000371 },
372 XATTR_QUOTA_FIELD(quota, max_bytes),
373 XATTR_QUOTA_FIELD(quota, max_files),
David Disseldorp100cc612019-04-18 14:15:47 +0200374 {
375 .name = "ceph.snap.btime",
376 .name_size = sizeof("ceph.snap.btime"),
377 .getxattr_cb = ceph_vxattrcb_snap_btime,
378 .exists_cb = ceph_vxattrcb_snap_btime_exists,
379 .flags = VXATTR_FLAG_READONLY,
380 },
Alex Elder2c3dd4f2013-02-19 12:25:56 -0600381 { .name = NULL, 0 } /* Required table terminator */
Sage Weil355da1e2009-10-06 11:31:08 -0700382};
383
384/* files */
385
Alex Elder881a5fa2012-01-23 15:49:28 -0600386static struct ceph_vxattr ceph_file_vxattrs[] = {
Sage Weil32ab0bd2013-01-19 16:46:32 -0800387 {
388 .name = "ceph.file.layout",
389 .name_size = sizeof("ceph.file.layout"),
390 .getxattr_cb = ceph_vxattrcb_layout,
Sage Weil32ab0bd2013-01-19 16:46:32 -0800391 .exists_cb = ceph_vxattrcb_layout_exists,
Yan, Zheng4e9906e2018-04-25 17:14:05 +0800392 .flags = VXATTR_FLAG_HIDDEN,
Sage Weil32ab0bd2013-01-19 16:46:32 -0800393 },
Sage Weil695b7112013-01-20 22:08:33 -0800394 XATTR_LAYOUT_FIELD(file, layout, stripe_unit),
395 XATTR_LAYOUT_FIELD(file, layout, stripe_count),
396 XATTR_LAYOUT_FIELD(file, layout, object_size),
397 XATTR_LAYOUT_FIELD(file, layout, pool),
Yan, Zheng779fe0f2016-03-07 09:35:06 +0800398 XATTR_LAYOUT_FIELD(file, layout, pool_namespace),
David Disseldorp100cc612019-04-18 14:15:47 +0200399 {
400 .name = "ceph.snap.btime",
401 .name_size = sizeof("ceph.snap.btime"),
402 .getxattr_cb = ceph_vxattrcb_snap_btime,
403 .exists_cb = ceph_vxattrcb_snap_btime_exists,
404 .flags = VXATTR_FLAG_READONLY,
405 },
Alex Elder2c3dd4f2013-02-19 12:25:56 -0600406 { .name = NULL, 0 } /* Required table terminator */
Sage Weil355da1e2009-10-06 11:31:08 -0700407};
408
Alex Elder881a5fa2012-01-23 15:49:28 -0600409static struct ceph_vxattr *ceph_inode_vxattrs(struct inode *inode)
Sage Weil355da1e2009-10-06 11:31:08 -0700410{
411 if (S_ISDIR(inode->i_mode))
412 return ceph_dir_vxattrs;
413 else if (S_ISREG(inode->i_mode))
414 return ceph_file_vxattrs;
415 return NULL;
416}
417
Alex Elder881a5fa2012-01-23 15:49:28 -0600418static struct ceph_vxattr *ceph_match_vxattr(struct inode *inode,
Sage Weil355da1e2009-10-06 11:31:08 -0700419 const char *name)
420{
Alex Elder881a5fa2012-01-23 15:49:28 -0600421 struct ceph_vxattr *vxattr = ceph_inode_vxattrs(inode);
Alex Elder06476a62012-01-23 15:49:27 -0600422
423 if (vxattr) {
424 while (vxattr->name) {
425 if (!strcmp(vxattr->name, name))
426 return vxattr;
427 vxattr++;
428 }
429 }
430
Sage Weil355da1e2009-10-06 11:31:08 -0700431 return NULL;
432}
433
434static int __set_xattr(struct ceph_inode_info *ci,
435 const char *name, int name_len,
436 const char *val, int val_len,
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800437 int flags, int update_xattr,
Sage Weil355da1e2009-10-06 11:31:08 -0700438 struct ceph_inode_xattr **newxattr)
439{
440 struct rb_node **p;
441 struct rb_node *parent = NULL;
442 struct ceph_inode_xattr *xattr = NULL;
443 int c;
444 int new = 0;
445
446 p = &ci->i_xattrs.index.rb_node;
447 while (*p) {
448 parent = *p;
449 xattr = rb_entry(parent, struct ceph_inode_xattr, node);
450 c = strncmp(name, xattr->name, min(name_len, xattr->name_len));
451 if (c < 0)
452 p = &(*p)->rb_left;
453 else if (c > 0)
454 p = &(*p)->rb_right;
455 else {
456 if (name_len == xattr->name_len)
457 break;
458 else if (name_len < xattr->name_len)
459 p = &(*p)->rb_left;
460 else
461 p = &(*p)->rb_right;
462 }
463 xattr = NULL;
464 }
465
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800466 if (update_xattr) {
467 int err = 0;
Luis Henriqueseeca9582017-04-28 11:14:04 +0100468
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800469 if (xattr && (flags & XATTR_CREATE))
470 err = -EEXIST;
471 else if (!xattr && (flags & XATTR_REPLACE))
472 err = -ENODATA;
473 if (err) {
474 kfree(name);
475 kfree(val);
Luis Henriqueseeca9582017-04-28 11:14:04 +0100476 kfree(*newxattr);
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800477 return err;
478 }
Yan, Zhengbcdfeb22014-02-11 13:04:19 +0800479 if (update_xattr < 0) {
480 if (xattr)
481 __remove_xattr(ci, xattr);
482 kfree(name);
Luis Henriqueseeca9582017-04-28 11:14:04 +0100483 kfree(*newxattr);
Yan, Zhengbcdfeb22014-02-11 13:04:19 +0800484 return 0;
485 }
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800486 }
487
Sage Weil355da1e2009-10-06 11:31:08 -0700488 if (!xattr) {
489 new = 1;
490 xattr = *newxattr;
491 xattr->name = name;
492 xattr->name_len = name_len;
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800493 xattr->should_free_name = update_xattr;
Sage Weil355da1e2009-10-06 11:31:08 -0700494
495 ci->i_xattrs.count++;
496 dout("__set_xattr count=%d\n", ci->i_xattrs.count);
497 } else {
498 kfree(*newxattr);
499 *newxattr = NULL;
500 if (xattr->should_free_val)
Xu Wangc00e4522020-07-08 07:03:22 +0000501 kfree(xattr->val);
Sage Weil355da1e2009-10-06 11:31:08 -0700502
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800503 if (update_xattr) {
Xu Wangc00e4522020-07-08 07:03:22 +0000504 kfree(name);
Sage Weil355da1e2009-10-06 11:31:08 -0700505 name = xattr->name;
506 }
507 ci->i_xattrs.names_size -= xattr->name_len;
508 ci->i_xattrs.vals_size -= xattr->val_len;
509 }
Sage Weil355da1e2009-10-06 11:31:08 -0700510 ci->i_xattrs.names_size += name_len;
511 ci->i_xattrs.vals_size += val_len;
512 if (val)
513 xattr->val = val;
514 else
515 xattr->val = "";
516
517 xattr->val_len = val_len;
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800518 xattr->dirty = update_xattr;
519 xattr->should_free_val = (val && update_xattr);
Sage Weil355da1e2009-10-06 11:31:08 -0700520
521 if (new) {
522 rb_link_node(&xattr->node, parent, p);
523 rb_insert_color(&xattr->node, &ci->i_xattrs.index);
524 dout("__set_xattr_val p=%p\n", p);
525 }
526
Yan, Zheng05729782019-05-27 16:15:41 +0800527 dout("__set_xattr_val added %llx.%llx xattr %p %.*s=%.*s\n",
528 ceph_vinop(&ci->vfs_inode), xattr, name_len, name, val_len, val);
Sage Weil355da1e2009-10-06 11:31:08 -0700529
530 return 0;
531}
532
533static struct ceph_inode_xattr *__get_xattr(struct ceph_inode_info *ci,
534 const char *name)
535{
536 struct rb_node **p;
537 struct rb_node *parent = NULL;
538 struct ceph_inode_xattr *xattr = NULL;
Sage Weil17db1432011-01-13 15:27:29 -0800539 int name_len = strlen(name);
Sage Weil355da1e2009-10-06 11:31:08 -0700540 int c;
541
542 p = &ci->i_xattrs.index.rb_node;
543 while (*p) {
544 parent = *p;
545 xattr = rb_entry(parent, struct ceph_inode_xattr, node);
546 c = strncmp(name, xattr->name, xattr->name_len);
Sage Weil17db1432011-01-13 15:27:29 -0800547 if (c == 0 && name_len > xattr->name_len)
548 c = 1;
Sage Weil355da1e2009-10-06 11:31:08 -0700549 if (c < 0)
550 p = &(*p)->rb_left;
551 else if (c > 0)
552 p = &(*p)->rb_right;
553 else {
554 dout("__get_xattr %s: found %.*s\n", name,
555 xattr->val_len, xattr->val);
556 return xattr;
557 }
558 }
559
560 dout("__get_xattr %s: not found\n", name);
561
562 return NULL;
563}
564
565static void __free_xattr(struct ceph_inode_xattr *xattr)
566{
567 BUG_ON(!xattr);
568
569 if (xattr->should_free_name)
Xu Wangc00e4522020-07-08 07:03:22 +0000570 kfree(xattr->name);
Sage Weil355da1e2009-10-06 11:31:08 -0700571 if (xattr->should_free_val)
Xu Wangc00e4522020-07-08 07:03:22 +0000572 kfree(xattr->val);
Sage Weil355da1e2009-10-06 11:31:08 -0700573
574 kfree(xattr);
575}
576
577static int __remove_xattr(struct ceph_inode_info *ci,
578 struct ceph_inode_xattr *xattr)
579{
580 if (!xattr)
Yan, Zheng524186a2014-02-11 13:23:09 +0800581 return -ENODATA;
Sage Weil355da1e2009-10-06 11:31:08 -0700582
583 rb_erase(&xattr->node, &ci->i_xattrs.index);
584
585 if (xattr->should_free_name)
Xu Wangc00e4522020-07-08 07:03:22 +0000586 kfree(xattr->name);
Sage Weil355da1e2009-10-06 11:31:08 -0700587 if (xattr->should_free_val)
Xu Wangc00e4522020-07-08 07:03:22 +0000588 kfree(xattr->val);
Sage Weil355da1e2009-10-06 11:31:08 -0700589
590 ci->i_xattrs.names_size -= xattr->name_len;
591 ci->i_xattrs.vals_size -= xattr->val_len;
592 ci->i_xattrs.count--;
593 kfree(xattr);
594
595 return 0;
596}
597
Sage Weil355da1e2009-10-06 11:31:08 -0700598static char *__copy_xattr_names(struct ceph_inode_info *ci,
599 char *dest)
600{
601 struct rb_node *p;
602 struct ceph_inode_xattr *xattr = NULL;
603
604 p = rb_first(&ci->i_xattrs.index);
605 dout("__copy_xattr_names count=%d\n", ci->i_xattrs.count);
606
607 while (p) {
608 xattr = rb_entry(p, struct ceph_inode_xattr, node);
609 memcpy(dest, xattr->name, xattr->name_len);
610 dest[xattr->name_len] = '\0';
611
612 dout("dest=%s %p (%s) (%d/%d)\n", dest, xattr, xattr->name,
613 xattr->name_len, ci->i_xattrs.names_size);
614
615 dest += xattr->name_len + 1;
616 p = rb_next(p);
617 }
618
619 return dest;
620}
621
622void __ceph_destroy_xattrs(struct ceph_inode_info *ci)
623{
624 struct rb_node *p, *tmp;
625 struct ceph_inode_xattr *xattr = NULL;
626
627 p = rb_first(&ci->i_xattrs.index);
628
629 dout("__ceph_destroy_xattrs p=%p\n", p);
630
631 while (p) {
632 xattr = rb_entry(p, struct ceph_inode_xattr, node);
633 tmp = p;
634 p = rb_next(tmp);
635 dout("__ceph_destroy_xattrs next p=%p (%.*s)\n", p,
636 xattr->name_len, xattr->name);
637 rb_erase(tmp, &ci->i_xattrs.index);
638
639 __free_xattr(xattr);
640 }
641
642 ci->i_xattrs.names_size = 0;
643 ci->i_xattrs.vals_size = 0;
644 ci->i_xattrs.index_version = 0;
645 ci->i_xattrs.count = 0;
646 ci->i_xattrs.index = RB_ROOT;
647}
648
649static int __build_xattrs(struct inode *inode)
Sage Weilbe655592011-11-30 09:47:09 -0800650 __releases(ci->i_ceph_lock)
651 __acquires(ci->i_ceph_lock)
Sage Weil355da1e2009-10-06 11:31:08 -0700652{
653 u32 namelen;
654 u32 numattr = 0;
655 void *p, *end;
656 u32 len;
657 const char *name, *val;
658 struct ceph_inode_info *ci = ceph_inode(inode);
Xiubo Li0eb30852019-12-18 21:15:18 -0500659 u64 xattr_version;
Sage Weil355da1e2009-10-06 11:31:08 -0700660 struct ceph_inode_xattr **xattrs = NULL;
Sage Weil63ff78b2009-11-01 17:51:15 -0800661 int err = 0;
Sage Weil355da1e2009-10-06 11:31:08 -0700662 int i;
663
664 dout("__build_xattrs() len=%d\n",
665 ci->i_xattrs.blob ? (int)ci->i_xattrs.blob->vec.iov_len : 0);
666
667 if (ci->i_xattrs.index_version >= ci->i_xattrs.version)
668 return 0; /* already built */
669
670 __ceph_destroy_xattrs(ci);
671
672start:
673 /* updated internal xattr rb tree */
674 if (ci->i_xattrs.blob && ci->i_xattrs.blob->vec.iov_len > 4) {
675 p = ci->i_xattrs.blob->vec.iov_base;
676 end = p + ci->i_xattrs.blob->vec.iov_len;
677 ceph_decode_32_safe(&p, end, numattr, bad);
678 xattr_version = ci->i_xattrs.version;
Sage Weilbe655592011-11-30 09:47:09 -0800679 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700680
Ilya Dryomov7e8a2952014-07-25 11:47:21 +0400681 xattrs = kcalloc(numattr, sizeof(struct ceph_inode_xattr *),
Sage Weil355da1e2009-10-06 11:31:08 -0700682 GFP_NOFS);
683 err = -ENOMEM;
684 if (!xattrs)
685 goto bad_lock;
Ilya Dryomov1a295bd2014-07-25 12:44:58 +0400686
Sage Weil355da1e2009-10-06 11:31:08 -0700687 for (i = 0; i < numattr; i++) {
688 xattrs[i] = kmalloc(sizeof(struct ceph_inode_xattr),
689 GFP_NOFS);
690 if (!xattrs[i])
691 goto bad_lock;
692 }
693
Sage Weilbe655592011-11-30 09:47:09 -0800694 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700695 if (ci->i_xattrs.version != xattr_version) {
696 /* lost a race, retry */
697 for (i = 0; i < numattr; i++)
698 kfree(xattrs[i]);
699 kfree(xattrs);
Alan Cox21ec6ff2012-07-20 08:18:36 -0500700 xattrs = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700701 goto start;
702 }
703 err = -EIO;
704 while (numattr--) {
705 ceph_decode_32_safe(&p, end, len, bad);
706 namelen = len;
707 name = p;
708 p += len;
709 ceph_decode_32_safe(&p, end, len, bad);
710 val = p;
711 p += len;
712
713 err = __set_xattr(ci, name, namelen, val, len,
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800714 0, 0, &xattrs[numattr]);
Sage Weil355da1e2009-10-06 11:31:08 -0700715
716 if (err < 0)
717 goto bad;
718 }
719 kfree(xattrs);
720 }
721 ci->i_xattrs.index_version = ci->i_xattrs.version;
722 ci->i_xattrs.dirty = false;
723
724 return err;
725bad_lock:
Sage Weilbe655592011-11-30 09:47:09 -0800726 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700727bad:
728 if (xattrs) {
729 for (i = 0; i < numattr; i++)
730 kfree(xattrs[i]);
731 kfree(xattrs);
732 }
733 ci->i_xattrs.names_size = 0;
734 return err;
735}
736
737static int __get_required_blob_size(struct ceph_inode_info *ci, int name_size,
738 int val_size)
739{
740 /*
741 * 4 bytes for the length, and additional 4 bytes per each xattr name,
742 * 4 bytes per each value
743 */
744 int size = 4 + ci->i_xattrs.count*(4 + 4) +
745 ci->i_xattrs.names_size +
746 ci->i_xattrs.vals_size;
747 dout("__get_required_blob_size c=%d names.size=%d vals.size=%d\n",
748 ci->i_xattrs.count, ci->i_xattrs.names_size,
749 ci->i_xattrs.vals_size);
750
751 if (name_size)
752 size += 4 + 4 + name_size + val_size;
753
754 return size;
755}
756
757/*
758 * If there are dirty xattrs, reencode xattrs into the prealloc_blob
Luis Henriques12fe3dd2019-07-19 15:32:21 +0100759 * and swap into place. It returns the old i_xattrs.blob (or NULL) so
760 * that it can be freed by the caller as the i_ceph_lock is likely to be
761 * held.
Sage Weil355da1e2009-10-06 11:31:08 -0700762 */
Luis Henriques12fe3dd2019-07-19 15:32:21 +0100763struct ceph_buffer *__ceph_build_xattrs_blob(struct ceph_inode_info *ci)
Sage Weil355da1e2009-10-06 11:31:08 -0700764{
765 struct rb_node *p;
766 struct ceph_inode_xattr *xattr = NULL;
Luis Henriques12fe3dd2019-07-19 15:32:21 +0100767 struct ceph_buffer *old_blob = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700768 void *dest;
769
770 dout("__build_xattrs_blob %p\n", &ci->vfs_inode);
771 if (ci->i_xattrs.dirty) {
772 int need = __get_required_blob_size(ci, 0, 0);
773
774 BUG_ON(need > ci->i_xattrs.prealloc_blob->alloc_len);
775
776 p = rb_first(&ci->i_xattrs.index);
777 dest = ci->i_xattrs.prealloc_blob->vec.iov_base;
778
779 ceph_encode_32(&dest, ci->i_xattrs.count);
780 while (p) {
781 xattr = rb_entry(p, struct ceph_inode_xattr, node);
782
783 ceph_encode_32(&dest, xattr->name_len);
784 memcpy(dest, xattr->name, xattr->name_len);
785 dest += xattr->name_len;
786 ceph_encode_32(&dest, xattr->val_len);
787 memcpy(dest, xattr->val, xattr->val_len);
788 dest += xattr->val_len;
789
790 p = rb_next(p);
791 }
792
793 /* adjust buffer len; it may be larger than we need */
794 ci->i_xattrs.prealloc_blob->vec.iov_len =
795 dest - ci->i_xattrs.prealloc_blob->vec.iov_base;
796
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800797 if (ci->i_xattrs.blob)
Luis Henriques12fe3dd2019-07-19 15:32:21 +0100798 old_blob = ci->i_xattrs.blob;
Sage Weil355da1e2009-10-06 11:31:08 -0700799 ci->i_xattrs.blob = ci->i_xattrs.prealloc_blob;
800 ci->i_xattrs.prealloc_blob = NULL;
801 ci->i_xattrs.dirty = false;
Sage Weil4a625be2010-08-22 15:03:56 -0700802 ci->i_xattrs.version++;
Sage Weil355da1e2009-10-06 11:31:08 -0700803 }
Luis Henriques12fe3dd2019-07-19 15:32:21 +0100804
805 return old_blob;
Sage Weil355da1e2009-10-06 11:31:08 -0700806}
807
Yan, Zheng315f2402016-03-07 10:34:50 +0800808static inline int __get_request_mask(struct inode *in) {
809 struct ceph_mds_request *req = current->journal_info;
810 int mask = 0;
811 if (req && req->r_target_inode == in) {
812 if (req->r_op == CEPH_MDS_OP_LOOKUP ||
813 req->r_op == CEPH_MDS_OP_LOOKUPINO ||
814 req->r_op == CEPH_MDS_OP_LOOKUPPARENT ||
815 req->r_op == CEPH_MDS_OP_GETATTR) {
816 mask = le32_to_cpu(req->r_args.getattr.mask);
817 } else if (req->r_op == CEPH_MDS_OP_OPEN ||
818 req->r_op == CEPH_MDS_OP_CREATE) {
819 mask = le32_to_cpu(req->r_args.open.mask);
820 }
821 }
822 return mask;
823}
824
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800825ssize_t __ceph_getxattr(struct inode *inode, const char *name, void *value,
Sage Weil355da1e2009-10-06 11:31:08 -0700826 size_t size)
827{
Sage Weil355da1e2009-10-06 11:31:08 -0700828 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700829 struct ceph_inode_xattr *xattr;
Alex Elder881a5fa2012-01-23 15:49:28 -0600830 struct ceph_vxattr *vxattr = NULL;
Yan, Zheng315f2402016-03-07 10:34:50 +0800831 int req_mask;
Jeff Laytonf1d1b512019-06-24 07:39:18 -0400832 ssize_t err;
Sage Weil355da1e2009-10-06 11:31:08 -0700833
Sage Weil0bee82f2013-01-20 22:00:58 -0800834 /* let's see if a virtual xattr was requested */
835 vxattr = ceph_match_vxattr(inode, name);
Yan, Zheng29dccfa2016-03-12 13:32:16 +0800836 if (vxattr) {
Yan, Zheng49a9f4f2018-04-25 17:30:23 +0800837 int mask = 0;
838 if (vxattr->flags & VXATTR_FLAG_RSTAT)
839 mask |= CEPH_STAT_RSTAT;
840 err = ceph_do_getattr(inode, mask, true);
Yan, Zheng1684dd02017-06-14 15:54:56 +0800841 if (err)
842 return err;
Yan, Zheng29dccfa2016-03-12 13:32:16 +0800843 err = -ENODATA;
Jeff Layton3b421012019-06-13 15:17:00 -0400844 if (!(vxattr->exists_cb && !vxattr->exists_cb(ci))) {
Yan, Zheng29dccfa2016-03-12 13:32:16 +0800845 err = vxattr->getxattr_cb(ci, value, size);
Jeff Layton3b421012019-06-13 15:17:00 -0400846 if (size && size < err)
847 err = -ERANGE;
848 }
majianpenga1dc1932013-06-19 14:58:10 +0800849 return err;
Sage Weil0bee82f2013-01-20 22:00:58 -0800850 }
851
Yan, Zheng315f2402016-03-07 10:34:50 +0800852 req_mask = __get_request_mask(inode);
853
majianpenga1dc1932013-06-19 14:58:10 +0800854 spin_lock(&ci->i_ceph_lock);
Jeff Laytond36e0b62020-01-07 13:12:57 -0500855 dout("getxattr %p name '%s' ver=%lld index_ver=%lld\n", inode, name,
majianpenga1dc1932013-06-19 14:58:10 +0800856 ci->i_xattrs.version, ci->i_xattrs.index_version);
857
Yan, Zheng508b32d2014-09-16 21:46:17 +0800858 if (ci->i_xattrs.version == 0 ||
Yan, Zheng315f2402016-03-07 10:34:50 +0800859 !((req_mask & CEPH_CAP_XATTR_SHARED) ||
Xiubo Li1af16d52020-03-19 23:45:00 -0400860 __ceph_caps_issued_mask_metric(ci, CEPH_CAP_XATTR_SHARED, 1))) {
Sage Weilbe655592011-11-30 09:47:09 -0800861 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng315f2402016-03-07 10:34:50 +0800862
863 /* security module gets xattr while filling trace */
Markus Elfringd37b1d92017-08-20 20:22:02 +0200864 if (current->journal_info) {
Yan, Zheng315f2402016-03-07 10:34:50 +0800865 pr_warn_ratelimited("sync getxattr %p "
866 "during filling trace\n", inode);
867 return -EBUSY;
868 }
869
Sage Weil355da1e2009-10-06 11:31:08 -0700870 /* get xattrs from mds (if we don't already have them) */
Yan, Zheng508b32d2014-09-16 21:46:17 +0800871 err = ceph_do_getattr(inode, CEPH_STAT_CAP_XATTR, true);
Sage Weil355da1e2009-10-06 11:31:08 -0700872 if (err)
873 return err;
Yan, Zheng508b32d2014-09-16 21:46:17 +0800874 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700875 }
876
Sage Weil355da1e2009-10-06 11:31:08 -0700877 err = __build_xattrs(inode);
878 if (err < 0)
879 goto out;
880
Sage Weil355da1e2009-10-06 11:31:08 -0700881 err = -ENODATA; /* == ENOATTR */
882 xattr = __get_xattr(ci, name);
Sage Weil0bee82f2013-01-20 22:00:58 -0800883 if (!xattr)
Sage Weil355da1e2009-10-06 11:31:08 -0700884 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700885
886 err = -ERANGE;
887 if (size && size < xattr->val_len)
888 goto out;
889
890 err = xattr->val_len;
891 if (size == 0)
892 goto out;
893
894 memcpy(value, xattr->val, xattr->val_len);
895
Markus Elfringd37b1d92017-08-20 20:22:02 +0200896 if (current->journal_info &&
Jeff Layton026105e2019-08-06 10:41:40 -0400897 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) &&
898 security_ismaclabel(name + XATTR_SECURITY_PREFIX_LEN))
Yan, Zheng315f2402016-03-07 10:34:50 +0800899 ci->i_ceph_flags |= CEPH_I_SEC_INITED;
Sage Weil355da1e2009-10-06 11:31:08 -0700900out:
Sage Weilbe655592011-11-30 09:47:09 -0800901 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700902 return err;
903}
904
905ssize_t ceph_listxattr(struct dentry *dentry, char *names, size_t size)
906{
David Howells2b0143b2015-03-17 22:25:59 +0000907 struct inode *inode = d_inode(dentry);
Sage Weil355da1e2009-10-06 11:31:08 -0700908 struct ceph_inode_info *ci = ceph_inode(inode);
David Disseldorp2b2abca2019-04-18 14:15:48 +0200909 bool len_only = (size == 0);
Sage Weil355da1e2009-10-06 11:31:08 -0700910 u32 namelen;
911 int err;
Sage Weil355da1e2009-10-06 11:31:08 -0700912
Sage Weilbe655592011-11-30 09:47:09 -0800913 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700914 dout("listxattr %p ver=%lld index_ver=%lld\n", inode,
915 ci->i_xattrs.version, ci->i_xattrs.index_version);
916
Yan, Zheng508b32d2014-09-16 21:46:17 +0800917 if (ci->i_xattrs.version == 0 ||
Xiubo Li1af16d52020-03-19 23:45:00 -0400918 !__ceph_caps_issued_mask_metric(ci, CEPH_CAP_XATTR_SHARED, 1)) {
Sage Weilbe655592011-11-30 09:47:09 -0800919 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng508b32d2014-09-16 21:46:17 +0800920 err = ceph_do_getattr(inode, CEPH_STAT_CAP_XATTR, true);
Sage Weil355da1e2009-10-06 11:31:08 -0700921 if (err)
922 return err;
Yan, Zheng508b32d2014-09-16 21:46:17 +0800923 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700924 }
925
Sage Weil355da1e2009-10-06 11:31:08 -0700926 err = __build_xattrs(inode);
927 if (err < 0)
928 goto out;
Alex Elder3ce6cd12012-01-23 15:49:28 -0600929
David Disseldorp2b2abca2019-04-18 14:15:48 +0200930 /* add 1 byte for each xattr due to the null termination */
Sage Weilb65917d2013-01-20 22:02:39 -0800931 namelen = ci->i_xattrs.names_size + ci->i_xattrs.count;
David Disseldorp2b2abca2019-04-18 14:15:48 +0200932 if (!len_only) {
933 if (namelen > size) {
934 err = -ERANGE;
935 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700936 }
David Disseldorp2b2abca2019-04-18 14:15:48 +0200937 names = __copy_xattr_names(ci, names);
938 size -= namelen;
Sage Weilb65917d2013-01-20 22:02:39 -0800939 }
David Disseldorp2b2abca2019-04-18 14:15:48 +0200940 err = namelen;
Sage Weil355da1e2009-10-06 11:31:08 -0700941out:
Sage Weilbe655592011-11-30 09:47:09 -0800942 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700943 return err;
944}
945
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200946static int ceph_sync_setxattr(struct inode *inode, const char *name,
Sage Weil355da1e2009-10-06 11:31:08 -0700947 const char *value, size_t size, int flags)
948{
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200949 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
Sage Weil355da1e2009-10-06 11:31:08 -0700950 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700951 struct ceph_mds_request *req;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700952 struct ceph_mds_client *mdsc = fsc->mdsc;
Yan, Zheng25e6bae2014-09-16 19:15:28 +0800953 struct ceph_pagelist *pagelist = NULL;
Yan, Zheng04303d82016-04-21 12:11:54 +0800954 int op = CEPH_MDS_OP_SETXATTR;
Sage Weil355da1e2009-10-06 11:31:08 -0700955 int err;
Sage Weil355da1e2009-10-06 11:31:08 -0700956
Yan, Zheng0aeff372014-12-17 21:26:47 +0800957 if (size > 0) {
Yan, Zheng25e6bae2014-09-16 19:15:28 +0800958 /* copy value into pagelist */
Ilya Dryomov33165d42018-09-28 15:38:34 +0200959 pagelist = ceph_pagelist_alloc(GFP_NOFS);
Yan, Zheng25e6bae2014-09-16 19:15:28 +0800960 if (!pagelist)
Sage Weil355da1e2009-10-06 11:31:08 -0700961 return -ENOMEM;
Yan, Zheng25e6bae2014-09-16 19:15:28 +0800962
Yan, Zheng25e6bae2014-09-16 19:15:28 +0800963 err = ceph_pagelist_append(pagelist, value, size);
964 if (err)
965 goto out;
Yan, Zheng0aeff372014-12-17 21:26:47 +0800966 } else if (!value) {
Yan, Zheng04303d82016-04-21 12:11:54 +0800967 if (flags & CEPH_XATTR_REPLACE)
968 op = CEPH_MDS_OP_RMXATTR;
969 else
970 flags |= CEPH_XATTR_REMOVE;
Sage Weil355da1e2009-10-06 11:31:08 -0700971 }
972
973 dout("setxattr value=%.*s\n", (int)size, value);
974
975 /* do request */
Yan, Zheng04303d82016-04-21 12:11:54 +0800976 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
Julia Lawall60d87732009-11-21 12:53:08 +0100977 if (IS_ERR(req)) {
978 err = PTR_ERR(req);
979 goto out;
980 }
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400981
Sage Weil355da1e2009-10-06 11:31:08 -0700982 req->r_path2 = kstrdup(name, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400983 if (!req->r_path2) {
984 ceph_mdsc_put_request(req);
985 err = -ENOMEM;
986 goto out;
987 }
Sage Weil355da1e2009-10-06 11:31:08 -0700988
Yan, Zheng04303d82016-04-21 12:11:54 +0800989 if (op == CEPH_MDS_OP_SETXATTR) {
990 req->r_args.setxattr.flags = cpu_to_le32(flags);
991 req->r_pagelist = pagelist;
992 pagelist = NULL;
993 }
Sage Weil355da1e2009-10-06 11:31:08 -0700994
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400995 req->r_inode = inode;
996 ihold(inode);
997 req->r_num_caps = 1;
998 req->r_inode_drop = CEPH_CAP_XATTR_SHARED;
999
Sage Weil355da1e2009-10-06 11:31:08 -07001000 dout("xattr.ver (before): %lld\n", ci->i_xattrs.version);
Sage Weil752c8bd2013-02-05 13:52:29 -08001001 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil355da1e2009-10-06 11:31:08 -07001002 ceph_mdsc_put_request(req);
1003 dout("xattr.ver (after): %lld\n", ci->i_xattrs.version);
1004
1005out:
Yan, Zheng25e6bae2014-09-16 19:15:28 +08001006 if (pagelist)
1007 ceph_pagelist_release(pagelist);
Sage Weil355da1e2009-10-06 11:31:08 -07001008 return err;
1009}
1010
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +02001011int __ceph_setxattr(struct inode *inode, const char *name,
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001012 const void *value, size_t size, int flags)
Sage Weil355da1e2009-10-06 11:31:08 -07001013{
Alex Elder881a5fa2012-01-23 15:49:28 -06001014 struct ceph_vxattr *vxattr;
Sage Weil355da1e2009-10-06 11:31:08 -07001015 struct ceph_inode_info *ci = ceph_inode(inode);
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +02001016 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001017 struct ceph_cap_flush *prealloc_cf = NULL;
Luis Henriques86968ef2019-07-19 15:32:20 +01001018 struct ceph_buffer *old_blob = NULL;
Alex Elder18fa8b32012-01-23 15:49:28 -06001019 int issued;
Sage Weil355da1e2009-10-06 11:31:08 -07001020 int err;
Yan, Zhengfbc0b972014-02-11 13:01:19 +08001021 int dirty = 0;
Sage Weil355da1e2009-10-06 11:31:08 -07001022 int name_len = strlen(name);
1023 int val_len = size;
1024 char *newname = NULL;
1025 char *newval = NULL;
1026 struct ceph_inode_xattr *xattr = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -07001027 int required_blob_size;
Yan, Zhengf1919822018-04-08 09:54:39 +08001028 bool check_realm = false;
Yan, Zheng604d1b02015-05-01 17:49:16 +08001029 bool lock_snap_rwsem = false;
Sage Weil355da1e2009-10-06 11:31:08 -07001030
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02001031 if (ceph_snap(inode) != CEPH_NOSNAP)
1032 return -EROFS;
Sage Weil355da1e2009-10-06 11:31:08 -07001033
Alex Elder06476a62012-01-23 15:49:27 -06001034 vxattr = ceph_match_vxattr(inode, name);
Yan, Zhengf1919822018-04-08 09:54:39 +08001035 if (vxattr) {
Yan, Zheng4e9906e2018-04-25 17:14:05 +08001036 if (vxattr->flags & VXATTR_FLAG_READONLY)
Yan, Zhengf1919822018-04-08 09:54:39 +08001037 return -EOPNOTSUPP;
1038 if (value && !strncmp(vxattr->name, "ceph.quota", 10))
1039 check_realm = true;
1040 }
Sage Weil355da1e2009-10-06 11:31:08 -07001041
Sage Weil3adf6542013-01-31 11:53:41 -08001042 /* pass any unhandled ceph.* xattrs through to the MDS */
1043 if (!strncmp(name, XATTR_CEPH_PREFIX, XATTR_CEPH_PREFIX_LEN))
1044 goto do_sync_unlocked;
1045
Sage Weil355da1e2009-10-06 11:31:08 -07001046 /* preallocate memory for xattr name, value, index node */
1047 err = -ENOMEM;
Julia Lawall61413c22010-10-17 21:55:21 +02001048 newname = kmemdup(name, name_len + 1, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -07001049 if (!newname)
1050 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -07001051
1052 if (val_len) {
Alex Elderb829c192012-01-23 15:49:27 -06001053 newval = kmemdup(value, val_len, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -07001054 if (!newval)
1055 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -07001056 }
1057
1058 xattr = kmalloc(sizeof(struct ceph_inode_xattr), GFP_NOFS);
1059 if (!xattr)
1060 goto out;
1061
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001062 prealloc_cf = ceph_alloc_cap_flush();
1063 if (!prealloc_cf)
1064 goto out;
1065
Sage Weilbe655592011-11-30 09:47:09 -08001066 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -07001067retry:
1068 issued = __ceph_caps_issued(ci, NULL);
Yan, Zheng508b32d2014-09-16 21:46:17 +08001069 if (ci->i_xattrs.version == 0 || !(issued & CEPH_CAP_XATTR_EXCL))
Sage Weil355da1e2009-10-06 11:31:08 -07001070 goto do_sync;
Yan, Zheng604d1b02015-05-01 17:49:16 +08001071
1072 if (!lock_snap_rwsem && !ci->i_head_snapc) {
1073 lock_snap_rwsem = true;
1074 if (!down_read_trylock(&mdsc->snap_rwsem)) {
1075 spin_unlock(&ci->i_ceph_lock);
1076 down_read(&mdsc->snap_rwsem);
1077 spin_lock(&ci->i_ceph_lock);
1078 goto retry;
1079 }
1080 }
1081
Jeff Laytond36e0b62020-01-07 13:12:57 -05001082 dout("setxattr %p name '%s' issued %s\n", inode, name,
1083 ceph_cap_string(issued));
Sage Weil355da1e2009-10-06 11:31:08 -07001084 __build_xattrs(inode);
1085
1086 required_blob_size = __get_required_blob_size(ci, name_len, val_len);
1087
1088 if (!ci->i_xattrs.prealloc_blob ||
1089 required_blob_size > ci->i_xattrs.prealloc_blob->alloc_len) {
Alex Elder18fa8b32012-01-23 15:49:28 -06001090 struct ceph_buffer *blob;
Sage Weil355da1e2009-10-06 11:31:08 -07001091
Sage Weilbe655592011-11-30 09:47:09 -08001092 spin_unlock(&ci->i_ceph_lock);
Luis Henriques86968ef2019-07-19 15:32:20 +01001093 ceph_buffer_put(old_blob); /* Shouldn't be required */
1094 dout(" pre-allocating new blob size=%d\n", required_blob_size);
Sage Weilb6c1d5b2009-12-07 12:17:17 -08001095 blob = ceph_buffer_new(required_blob_size, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -07001096 if (!blob)
Yan, Zheng604d1b02015-05-01 17:49:16 +08001097 goto do_sync_unlocked;
Sage Weilbe655592011-11-30 09:47:09 -08001098 spin_lock(&ci->i_ceph_lock);
Luis Henriques86968ef2019-07-19 15:32:20 +01001099 /* prealloc_blob can't be released while holding i_ceph_lock */
Sage Weilb6c1d5b2009-12-07 12:17:17 -08001100 if (ci->i_xattrs.prealloc_blob)
Luis Henriques86968ef2019-07-19 15:32:20 +01001101 old_blob = ci->i_xattrs.prealloc_blob;
Sage Weil355da1e2009-10-06 11:31:08 -07001102 ci->i_xattrs.prealloc_blob = blob;
1103 goto retry;
1104 }
1105
Yan, Zhengbcdfeb22014-02-11 13:04:19 +08001106 err = __set_xattr(ci, newname, name_len, newval, val_len,
1107 flags, value ? 1 : -1, &xattr);
Alex Elder18fa8b32012-01-23 15:49:28 -06001108
Yan, Zhengfbc0b972014-02-11 13:01:19 +08001109 if (!err) {
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001110 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_XATTR_EXCL,
1111 &prealloc_cf);
Yan, Zhengfbc0b972014-02-11 13:01:19 +08001112 ci->i_xattrs.dirty = true;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001113 inode->i_ctime = current_time(inode);
Yan, Zhengfbc0b972014-02-11 13:01:19 +08001114 }
Alex Elder18fa8b32012-01-23 15:49:28 -06001115
Sage Weilbe655592011-11-30 09:47:09 -08001116 spin_unlock(&ci->i_ceph_lock);
Luis Henriques86968ef2019-07-19 15:32:20 +01001117 ceph_buffer_put(old_blob);
Yan, Zheng604d1b02015-05-01 17:49:16 +08001118 if (lock_snap_rwsem)
1119 up_read(&mdsc->snap_rwsem);
Sage Weilfca65b42011-05-04 11:33:47 -07001120 if (dirty)
1121 __mark_inode_dirty(inode, dirty);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001122 ceph_free_cap_flush(prealloc_cf);
Sage Weil355da1e2009-10-06 11:31:08 -07001123 return err;
1124
1125do_sync:
Sage Weilbe655592011-11-30 09:47:09 -08001126 spin_unlock(&ci->i_ceph_lock);
Sage Weil3adf6542013-01-31 11:53:41 -08001127do_sync_unlocked:
Yan, Zheng604d1b02015-05-01 17:49:16 +08001128 if (lock_snap_rwsem)
1129 up_read(&mdsc->snap_rwsem);
Yan, Zheng315f2402016-03-07 10:34:50 +08001130
1131 /* security module set xattr while filling trace */
Markus Elfringd37b1d92017-08-20 20:22:02 +02001132 if (current->journal_info) {
Yan, Zheng315f2402016-03-07 10:34:50 +08001133 pr_warn_ratelimited("sync setxattr %p "
1134 "during filling trace\n", inode);
1135 err = -EBUSY;
1136 } else {
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +02001137 err = ceph_sync_setxattr(inode, name, value, size, flags);
Yan, Zhengf1919822018-04-08 09:54:39 +08001138 if (err >= 0 && check_realm) {
1139 /* check if snaprealm was created for quota inode */
1140 spin_lock(&ci->i_ceph_lock);
1141 if ((ci->i_max_files || ci->i_max_bytes) &&
1142 !(ci->i_snap_realm &&
1143 ci->i_snap_realm->ino == ci->i_vino.ino))
1144 err = -EOPNOTSUPP;
1145 spin_unlock(&ci->i_ceph_lock);
1146 }
Yan, Zheng315f2402016-03-07 10:34:50 +08001147 }
Sage Weil355da1e2009-10-06 11:31:08 -07001148out:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001149 ceph_free_cap_flush(prealloc_cf);
Sage Weil355da1e2009-10-06 11:31:08 -07001150 kfree(newname);
1151 kfree(newval);
1152 kfree(xattr);
1153 return err;
1154}
1155
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02001156static int ceph_get_xattr_handler(const struct xattr_handler *handler,
1157 struct dentry *dentry, struct inode *inode,
1158 const char *name, void *value, size_t size)
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001159{
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02001160 if (!ceph_is_valid_xattr(name))
1161 return -EOPNOTSUPP;
1162 return __ceph_getxattr(inode, name, value, size);
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001163}
Yan, Zheng315f2402016-03-07 10:34:50 +08001164
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02001165static int ceph_set_xattr_handler(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -04001166 struct dentry *unused, struct inode *inode,
1167 const char *name, const void *value,
1168 size_t size, int flags)
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02001169{
1170 if (!ceph_is_valid_xattr(name))
1171 return -EOPNOTSUPP;
Al Viro59301222016-05-27 10:19:30 -04001172 return __ceph_setxattr(inode, name, value, size, flags);
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02001173}
1174
Wei Yongjun5130cce2016-10-17 15:11:29 +00001175static const struct xattr_handler ceph_other_xattr_handler = {
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02001176 .prefix = "", /* match any name => handlers called with full name */
1177 .get = ceph_get_xattr_handler,
1178 .set = ceph_set_xattr_handler,
1179};
1180
Yan, Zheng315f2402016-03-07 10:34:50 +08001181#ifdef CONFIG_SECURITY
1182bool ceph_security_xattr_wanted(struct inode *in)
1183{
1184 return in->i_security != NULL;
1185}
1186
1187bool ceph_security_xattr_deadlock(struct inode *in)
1188{
1189 struct ceph_inode_info *ci;
1190 bool ret;
Markus Elfringd37b1d92017-08-20 20:22:02 +02001191 if (!in->i_security)
Yan, Zheng315f2402016-03-07 10:34:50 +08001192 return false;
1193 ci = ceph_inode(in);
1194 spin_lock(&ci->i_ceph_lock);
1195 ret = !(ci->i_ceph_flags & CEPH_I_SEC_INITED) &&
1196 !(ci->i_xattrs.version > 0 &&
1197 __ceph_caps_issued_mask(ci, CEPH_CAP_XATTR_SHARED, 0));
1198 spin_unlock(&ci->i_ceph_lock);
1199 return ret;
1200}
Yan, Zhengac6713c2019-05-26 16:27:56 +08001201
1202#ifdef CONFIG_CEPH_FS_SECURITY_LABEL
1203int ceph_security_init_secctx(struct dentry *dentry, umode_t mode,
1204 struct ceph_acl_sec_ctx *as_ctx)
1205{
1206 struct ceph_pagelist *pagelist = as_ctx->pagelist;
1207 const char *name;
1208 size_t name_len;
1209 int err;
1210
1211 err = security_dentry_init_security(dentry, mode, &dentry->d_name,
1212 &as_ctx->sec_ctx,
1213 &as_ctx->sec_ctxlen);
1214 if (err < 0) {
1215 WARN_ON_ONCE(err != -EOPNOTSUPP);
1216 err = 0; /* do nothing */
1217 goto out;
1218 }
1219
1220 err = -ENOMEM;
1221 if (!pagelist) {
1222 pagelist = ceph_pagelist_alloc(GFP_KERNEL);
1223 if (!pagelist)
1224 goto out;
1225 err = ceph_pagelist_reserve(pagelist, PAGE_SIZE);
1226 if (err)
1227 goto out;
1228 ceph_pagelist_encode_32(pagelist, 1);
1229 }
1230
1231 /*
1232 * FIXME: Make security_dentry_init_security() generic. Currently
1233 * It only supports single security module and only selinux has
1234 * dentry_init_security hook.
1235 */
1236 name = XATTR_NAME_SELINUX;
1237 name_len = strlen(name);
1238 err = ceph_pagelist_reserve(pagelist,
1239 4 * 2 + name_len + as_ctx->sec_ctxlen);
1240 if (err)
1241 goto out;
1242
1243 if (as_ctx->pagelist) {
1244 /* update count of KV pairs */
1245 BUG_ON(pagelist->length <= sizeof(__le32));
1246 if (list_is_singular(&pagelist->head)) {
1247 le32_add_cpu((__le32*)pagelist->mapped_tail, 1);
1248 } else {
1249 struct page *page = list_first_entry(&pagelist->head,
1250 struct page, lru);
1251 void *addr = kmap_atomic(page);
1252 le32_add_cpu((__le32*)addr, 1);
1253 kunmap_atomic(addr);
1254 }
1255 } else {
1256 as_ctx->pagelist = pagelist;
1257 }
1258
1259 ceph_pagelist_encode_32(pagelist, name_len);
1260 ceph_pagelist_append(pagelist, name, name_len);
1261
1262 ceph_pagelist_encode_32(pagelist, as_ctx->sec_ctxlen);
1263 ceph_pagelist_append(pagelist, as_ctx->sec_ctx, as_ctx->sec_ctxlen);
1264
1265 err = 0;
1266out:
1267 if (pagelist && !as_ctx->pagelist)
1268 ceph_pagelist_release(pagelist);
1269 return err;
1270}
Jeff Layton668959a2019-08-06 09:07:51 -04001271#endif /* CONFIG_CEPH_FS_SECURITY_LABEL */
1272#endif /* CONFIG_SECURITY */
Yan, Zheng5c31e922019-05-26 15:35:39 +08001273
1274void ceph_release_acl_sec_ctx(struct ceph_acl_sec_ctx *as_ctx)
1275{
1276#ifdef CONFIG_CEPH_FS_POSIX_ACL
1277 posix_acl_release(as_ctx->acl);
1278 posix_acl_release(as_ctx->default_acl);
1279#endif
Yan, Zhengac6713c2019-05-26 16:27:56 +08001280#ifdef CONFIG_CEPH_FS_SECURITY_LABEL
1281 security_release_secctx(as_ctx->sec_ctx, as_ctx->sec_ctxlen);
1282#endif
Yan, Zheng5c31e922019-05-26 15:35:39 +08001283 if (as_ctx->pagelist)
1284 ceph_pagelist_release(as_ctx->pagelist);
1285}
Yan, Zhengac6713c2019-05-26 16:27:56 +08001286
1287/*
1288 * List of handlers for synthetic system.* attributes. Other
1289 * attributes are handled directly.
1290 */
1291const struct xattr_handler *ceph_xattr_handlers[] = {
1292#ifdef CONFIG_CEPH_FS_POSIX_ACL
1293 &posix_acl_access_xattr_handler,
1294 &posix_acl_default_xattr_handler,
1295#endif
Yan, Zhengac6713c2019-05-26 16:27:56 +08001296 &ceph_other_xattr_handler,
1297 NULL,
1298};