blob: 28f9793b9167791735e780f81518d92a529b00f0 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
2
Sage Weil355da1e2009-10-06 11:31:08 -07003#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004#include "mds_client.h"
5
6#include <linux/ceph/decode.h>
Sage Weil355da1e2009-10-06 11:31:08 -07007
8#include <linux/xattr.h>
Linus Torvalds4db658e2014-01-28 18:06:18 -08009#include <linux/posix_acl_xattr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Sage Weil355da1e2009-10-06 11:31:08 -070011
Alex Elder22891902012-01-23 15:49:28 -060012#define XATTR_CEPH_PREFIX "ceph."
13#define XATTR_CEPH_PREFIX_LEN (sizeof (XATTR_CEPH_PREFIX) - 1)
14
Guangliang Zhao7221fe42013-11-11 15:18:03 +080015/*
16 * List of handlers for synthetic system.* attributes. Other
17 * attributes are handled directly.
18 */
19const struct xattr_handler *ceph_xattr_handlers[] = {
20#ifdef CONFIG_CEPH_FS_POSIX_ACL
Linus Torvalds4db658e2014-01-28 18:06:18 -080021 &posix_acl_access_xattr_handler,
22 &posix_acl_default_xattr_handler,
Guangliang Zhao7221fe42013-11-11 15:18:03 +080023#endif
24 NULL,
25};
26
Sage Weil355da1e2009-10-06 11:31:08 -070027static bool ceph_is_valid_xattr(const char *name)
28{
Alex Elder22891902012-01-23 15:49:28 -060029 return !strncmp(name, XATTR_CEPH_PREFIX, XATTR_CEPH_PREFIX_LEN) ||
Sage Weil1a756272010-05-11 11:40:25 -070030 !strncmp(name, XATTR_SECURITY_PREFIX,
Sage Weil355da1e2009-10-06 11:31:08 -070031 XATTR_SECURITY_PREFIX_LEN) ||
Guangliang Zhao7221fe42013-11-11 15:18:03 +080032 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) ||
Sage Weil355da1e2009-10-06 11:31:08 -070033 !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
34 !strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
35}
36
37/*
38 * These define virtual xattrs exposing the recursive directory
39 * statistics and layout metadata.
40 */
Alex Elder881a5fa2012-01-23 15:49:28 -060041struct ceph_vxattr {
Sage Weil355da1e2009-10-06 11:31:08 -070042 char *name;
Alex Elder3ce6cd12012-01-23 15:49:28 -060043 size_t name_size; /* strlen(name) + 1 (for '\0') */
Sage Weil355da1e2009-10-06 11:31:08 -070044 size_t (*getxattr_cb)(struct ceph_inode_info *ci, char *val,
45 size_t size);
Sage Weil88601472013-01-31 11:53:27 -080046 bool readonly, hidden;
Sage Weilf36e4472013-01-20 21:59:29 -080047 bool (*exists_cb)(struct ceph_inode_info *ci);
Sage Weil355da1e2009-10-06 11:31:08 -070048};
49
Sage Weil32ab0bd2013-01-19 16:46:32 -080050/* layouts */
51
52static bool ceph_vxattrcb_layout_exists(struct ceph_inode_info *ci)
53{
54 size_t s;
55 char *p = (char *)&ci->i_layout;
56
57 for (s = 0; s < sizeof(ci->i_layout); s++, p++)
58 if (*p)
59 return true;
60 return false;
61}
62
63static size_t ceph_vxattrcb_layout(struct ceph_inode_info *ci, char *val,
64 size_t size)
65{
66 int ret;
67 struct ceph_fs_client *fsc = ceph_sb_to_client(ci->vfs_inode.i_sb);
68 struct ceph_osd_client *osdc = &fsc->client->osdc;
69 s64 pool = ceph_file_layout_pg_pool(ci->i_layout);
70 const char *pool_name;
71
72 dout("ceph_vxattrcb_layout %p\n", &ci->vfs_inode);
73 down_read(&osdc->map_sem);
74 pool_name = ceph_pg_pool_name_by_id(osdc->osdmap, pool);
75 if (pool_name)
76 ret = snprintf(val, size,
77 "stripe_unit=%lld stripe_count=%lld object_size=%lld pool=%s",
78 (unsigned long long)ceph_file_layout_su(ci->i_layout),
79 (unsigned long long)ceph_file_layout_stripe_count(ci->i_layout),
80 (unsigned long long)ceph_file_layout_object_size(ci->i_layout),
81 pool_name);
82 else
83 ret = snprintf(val, size,
84 "stripe_unit=%lld stripe_count=%lld object_size=%lld pool=%lld",
85 (unsigned long long)ceph_file_layout_su(ci->i_layout),
86 (unsigned long long)ceph_file_layout_stripe_count(ci->i_layout),
87 (unsigned long long)ceph_file_layout_object_size(ci->i_layout),
88 (unsigned long long)pool);
89
90 up_read(&osdc->map_sem);
91 return ret;
92}
93
Sage Weil695b7112013-01-20 22:08:33 -080094static size_t ceph_vxattrcb_layout_stripe_unit(struct ceph_inode_info *ci,
95 char *val, size_t size)
96{
97 return snprintf(val, size, "%lld",
98 (unsigned long long)ceph_file_layout_su(ci->i_layout));
99}
100
101static size_t ceph_vxattrcb_layout_stripe_count(struct ceph_inode_info *ci,
102 char *val, size_t size)
103{
104 return snprintf(val, size, "%lld",
105 (unsigned long long)ceph_file_layout_stripe_count(ci->i_layout));
106}
107
108static size_t ceph_vxattrcb_layout_object_size(struct ceph_inode_info *ci,
109 char *val, size_t size)
110{
111 return snprintf(val, size, "%lld",
112 (unsigned long long)ceph_file_layout_object_size(ci->i_layout));
113}
114
115static size_t ceph_vxattrcb_layout_pool(struct ceph_inode_info *ci,
116 char *val, size_t size)
117{
118 int ret;
119 struct ceph_fs_client *fsc = ceph_sb_to_client(ci->vfs_inode.i_sb);
120 struct ceph_osd_client *osdc = &fsc->client->osdc;
121 s64 pool = ceph_file_layout_pg_pool(ci->i_layout);
122 const char *pool_name;
123
124 down_read(&osdc->map_sem);
125 pool_name = ceph_pg_pool_name_by_id(osdc->osdmap, pool);
126 if (pool_name)
127 ret = snprintf(val, size, "%s", pool_name);
128 else
129 ret = snprintf(val, size, "%lld", (unsigned long long)pool);
130 up_read(&osdc->map_sem);
131 return ret;
132}
133
Sage Weil355da1e2009-10-06 11:31:08 -0700134/* directories */
135
Alex Elderaa4066e2012-01-23 15:49:28 -0600136static size_t ceph_vxattrcb_dir_entries(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700137 size_t size)
138{
139 return snprintf(val, size, "%lld", ci->i_files + ci->i_subdirs);
140}
141
Alex Elderaa4066e2012-01-23 15:49:28 -0600142static size_t ceph_vxattrcb_dir_files(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700143 size_t size)
144{
145 return snprintf(val, size, "%lld", ci->i_files);
146}
147
Alex Elderaa4066e2012-01-23 15:49:28 -0600148static size_t ceph_vxattrcb_dir_subdirs(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700149 size_t size)
150{
151 return snprintf(val, size, "%lld", ci->i_subdirs);
152}
153
Alex Elderaa4066e2012-01-23 15:49:28 -0600154static size_t ceph_vxattrcb_dir_rentries(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700155 size_t size)
156{
157 return snprintf(val, size, "%lld", ci->i_rfiles + ci->i_rsubdirs);
158}
159
Alex Elderaa4066e2012-01-23 15:49:28 -0600160static size_t ceph_vxattrcb_dir_rfiles(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700161 size_t size)
162{
163 return snprintf(val, size, "%lld", ci->i_rfiles);
164}
165
Alex Elderaa4066e2012-01-23 15:49:28 -0600166static size_t ceph_vxattrcb_dir_rsubdirs(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700167 size_t size)
168{
169 return snprintf(val, size, "%lld", ci->i_rsubdirs);
170}
171
Alex Elderaa4066e2012-01-23 15:49:28 -0600172static size_t ceph_vxattrcb_dir_rbytes(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700173 size_t size)
174{
175 return snprintf(val, size, "%lld", ci->i_rbytes);
176}
177
Alex Elderaa4066e2012-01-23 15:49:28 -0600178static size_t ceph_vxattrcb_dir_rctime(struct ceph_inode_info *ci, char *val,
Sage Weil355da1e2009-10-06 11:31:08 -0700179 size_t size)
180{
Alex Elder3489b422012-03-08 16:50:09 -0600181 return snprintf(val, size, "%ld.09%ld", (long)ci->i_rctime.tv_sec,
Sage Weil355da1e2009-10-06 11:31:08 -0700182 (long)ci->i_rctime.tv_nsec);
183}
184
Sage Weil32ab0bd2013-01-19 16:46:32 -0800185
Alex Eldereb788082012-01-23 15:49:28 -0600186#define CEPH_XATTR_NAME(_type, _name) XATTR_CEPH_PREFIX #_type "." #_name
Sage Weil695b7112013-01-20 22:08:33 -0800187#define CEPH_XATTR_NAME2(_type, _name, _name2) \
188 XATTR_CEPH_PREFIX #_type "." #_name "." #_name2
Alex Eldereb788082012-01-23 15:49:28 -0600189
Sage Weil88601472013-01-31 11:53:27 -0800190#define XATTR_NAME_CEPH(_type, _name) \
191 { \
192 .name = CEPH_XATTR_NAME(_type, _name), \
193 .name_size = sizeof (CEPH_XATTR_NAME(_type, _name)), \
194 .getxattr_cb = ceph_vxattrcb_ ## _type ## _ ## _name, \
195 .readonly = true, \
196 .hidden = false, \
Sage Weilf36e4472013-01-20 21:59:29 -0800197 .exists_cb = NULL, \
Sage Weil88601472013-01-31 11:53:27 -0800198 }
Sage Weil695b7112013-01-20 22:08:33 -0800199#define XATTR_LAYOUT_FIELD(_type, _name, _field) \
200 { \
201 .name = CEPH_XATTR_NAME2(_type, _name, _field), \
202 .name_size = sizeof (CEPH_XATTR_NAME2(_type, _name, _field)), \
203 .getxattr_cb = ceph_vxattrcb_ ## _name ## _ ## _field, \
204 .readonly = false, \
205 .hidden = true, \
206 .exists_cb = ceph_vxattrcb_layout_exists, \
207 }
Alex Eldereb788082012-01-23 15:49:28 -0600208
Alex Elder881a5fa2012-01-23 15:49:28 -0600209static struct ceph_vxattr ceph_dir_vxattrs[] = {
Sage Weil1f08f2b2013-01-20 22:07:12 -0800210 {
211 .name = "ceph.dir.layout",
212 .name_size = sizeof("ceph.dir.layout"),
213 .getxattr_cb = ceph_vxattrcb_layout,
214 .readonly = false,
215 .hidden = false,
216 .exists_cb = ceph_vxattrcb_layout_exists,
217 },
Sage Weil695b7112013-01-20 22:08:33 -0800218 XATTR_LAYOUT_FIELD(dir, layout, stripe_unit),
219 XATTR_LAYOUT_FIELD(dir, layout, stripe_count),
220 XATTR_LAYOUT_FIELD(dir, layout, object_size),
221 XATTR_LAYOUT_FIELD(dir, layout, pool),
Alex Eldereb788082012-01-23 15:49:28 -0600222 XATTR_NAME_CEPH(dir, entries),
223 XATTR_NAME_CEPH(dir, files),
224 XATTR_NAME_CEPH(dir, subdirs),
225 XATTR_NAME_CEPH(dir, rentries),
226 XATTR_NAME_CEPH(dir, rfiles),
227 XATTR_NAME_CEPH(dir, rsubdirs),
228 XATTR_NAME_CEPH(dir, rbytes),
229 XATTR_NAME_CEPH(dir, rctime),
Alex Elder2c3dd4f2013-02-19 12:25:56 -0600230 { .name = NULL, 0 } /* Required table terminator */
Sage Weil355da1e2009-10-06 11:31:08 -0700231};
Alex Elder3ce6cd12012-01-23 15:49:28 -0600232static size_t ceph_dir_vxattrs_name_size; /* total size of all names */
Sage Weil355da1e2009-10-06 11:31:08 -0700233
234/* files */
235
Alex Elder881a5fa2012-01-23 15:49:28 -0600236static struct ceph_vxattr ceph_file_vxattrs[] = {
Sage Weil32ab0bd2013-01-19 16:46:32 -0800237 {
238 .name = "ceph.file.layout",
239 .name_size = sizeof("ceph.file.layout"),
240 .getxattr_cb = ceph_vxattrcb_layout,
241 .readonly = false,
242 .hidden = false,
243 .exists_cb = ceph_vxattrcb_layout_exists,
244 },
Sage Weil695b7112013-01-20 22:08:33 -0800245 XATTR_LAYOUT_FIELD(file, layout, stripe_unit),
246 XATTR_LAYOUT_FIELD(file, layout, stripe_count),
247 XATTR_LAYOUT_FIELD(file, layout, object_size),
248 XATTR_LAYOUT_FIELD(file, layout, pool),
Alex Elder2c3dd4f2013-02-19 12:25:56 -0600249 { .name = NULL, 0 } /* Required table terminator */
Sage Weil355da1e2009-10-06 11:31:08 -0700250};
Alex Elder3ce6cd12012-01-23 15:49:28 -0600251static size_t ceph_file_vxattrs_name_size; /* total size of all names */
Sage Weil355da1e2009-10-06 11:31:08 -0700252
Alex Elder881a5fa2012-01-23 15:49:28 -0600253static struct ceph_vxattr *ceph_inode_vxattrs(struct inode *inode)
Sage Weil355da1e2009-10-06 11:31:08 -0700254{
255 if (S_ISDIR(inode->i_mode))
256 return ceph_dir_vxattrs;
257 else if (S_ISREG(inode->i_mode))
258 return ceph_file_vxattrs;
259 return NULL;
260}
261
Alex Elder3ce6cd12012-01-23 15:49:28 -0600262static size_t ceph_vxattrs_name_size(struct ceph_vxattr *vxattrs)
263{
264 if (vxattrs == ceph_dir_vxattrs)
265 return ceph_dir_vxattrs_name_size;
266 if (vxattrs == ceph_file_vxattrs)
267 return ceph_file_vxattrs_name_size;
268 BUG();
269
270 return 0;
271}
272
273/*
274 * Compute the aggregate size (including terminating '\0') of all
275 * virtual extended attribute names in the given vxattr table.
276 */
277static size_t __init vxattrs_name_size(struct ceph_vxattr *vxattrs)
278{
279 struct ceph_vxattr *vxattr;
280 size_t size = 0;
281
282 for (vxattr = vxattrs; vxattr->name; vxattr++)
Sage Weil88601472013-01-31 11:53:27 -0800283 if (!vxattr->hidden)
284 size += vxattr->name_size;
Alex Elder3ce6cd12012-01-23 15:49:28 -0600285
286 return size;
287}
288
289/* Routines called at initialization and exit time */
290
291void __init ceph_xattr_init(void)
292{
293 ceph_dir_vxattrs_name_size = vxattrs_name_size(ceph_dir_vxattrs);
294 ceph_file_vxattrs_name_size = vxattrs_name_size(ceph_file_vxattrs);
295}
296
297void ceph_xattr_exit(void)
298{
299 ceph_dir_vxattrs_name_size = 0;
300 ceph_file_vxattrs_name_size = 0;
301}
302
Alex Elder881a5fa2012-01-23 15:49:28 -0600303static struct ceph_vxattr *ceph_match_vxattr(struct inode *inode,
Sage Weil355da1e2009-10-06 11:31:08 -0700304 const char *name)
305{
Alex Elder881a5fa2012-01-23 15:49:28 -0600306 struct ceph_vxattr *vxattr = ceph_inode_vxattrs(inode);
Alex Elder06476a62012-01-23 15:49:27 -0600307
308 if (vxattr) {
309 while (vxattr->name) {
310 if (!strcmp(vxattr->name, name))
311 return vxattr;
312 vxattr++;
313 }
314 }
315
Sage Weil355da1e2009-10-06 11:31:08 -0700316 return NULL;
317}
318
319static int __set_xattr(struct ceph_inode_info *ci,
320 const char *name, int name_len,
321 const char *val, int val_len,
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800322 int flags, int update_xattr,
Sage Weil355da1e2009-10-06 11:31:08 -0700323 struct ceph_inode_xattr **newxattr)
324{
325 struct rb_node **p;
326 struct rb_node *parent = NULL;
327 struct ceph_inode_xattr *xattr = NULL;
328 int c;
329 int new = 0;
330
331 p = &ci->i_xattrs.index.rb_node;
332 while (*p) {
333 parent = *p;
334 xattr = rb_entry(parent, struct ceph_inode_xattr, node);
335 c = strncmp(name, xattr->name, min(name_len, xattr->name_len));
336 if (c < 0)
337 p = &(*p)->rb_left;
338 else if (c > 0)
339 p = &(*p)->rb_right;
340 else {
341 if (name_len == xattr->name_len)
342 break;
343 else if (name_len < xattr->name_len)
344 p = &(*p)->rb_left;
345 else
346 p = &(*p)->rb_right;
347 }
348 xattr = NULL;
349 }
350
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800351 if (update_xattr) {
352 int err = 0;
353 if (xattr && (flags & XATTR_CREATE))
354 err = -EEXIST;
355 else if (!xattr && (flags & XATTR_REPLACE))
356 err = -ENODATA;
357 if (err) {
358 kfree(name);
359 kfree(val);
360 return err;
361 }
362 }
363
Sage Weil355da1e2009-10-06 11:31:08 -0700364 if (!xattr) {
365 new = 1;
366 xattr = *newxattr;
367 xattr->name = name;
368 xattr->name_len = name_len;
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800369 xattr->should_free_name = update_xattr;
Sage Weil355da1e2009-10-06 11:31:08 -0700370
371 ci->i_xattrs.count++;
372 dout("__set_xattr count=%d\n", ci->i_xattrs.count);
373 } else {
374 kfree(*newxattr);
375 *newxattr = NULL;
376 if (xattr->should_free_val)
377 kfree((void *)xattr->val);
378
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800379 if (update_xattr) {
Sage Weil355da1e2009-10-06 11:31:08 -0700380 kfree((void *)name);
381 name = xattr->name;
382 }
383 ci->i_xattrs.names_size -= xattr->name_len;
384 ci->i_xattrs.vals_size -= xattr->val_len;
385 }
Sage Weil355da1e2009-10-06 11:31:08 -0700386 ci->i_xattrs.names_size += name_len;
387 ci->i_xattrs.vals_size += val_len;
388 if (val)
389 xattr->val = val;
390 else
391 xattr->val = "";
392
393 xattr->val_len = val_len;
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800394 xattr->dirty = update_xattr;
395 xattr->should_free_val = (val && update_xattr);
Sage Weil355da1e2009-10-06 11:31:08 -0700396
397 if (new) {
398 rb_link_node(&xattr->node, parent, p);
399 rb_insert_color(&xattr->node, &ci->i_xattrs.index);
400 dout("__set_xattr_val p=%p\n", p);
401 }
402
403 dout("__set_xattr_val added %llx.%llx xattr %p %s=%.*s\n",
404 ceph_vinop(&ci->vfs_inode), xattr, name, val_len, val);
405
406 return 0;
407}
408
409static struct ceph_inode_xattr *__get_xattr(struct ceph_inode_info *ci,
410 const char *name)
411{
412 struct rb_node **p;
413 struct rb_node *parent = NULL;
414 struct ceph_inode_xattr *xattr = NULL;
Sage Weil17db1432011-01-13 15:27:29 -0800415 int name_len = strlen(name);
Sage Weil355da1e2009-10-06 11:31:08 -0700416 int c;
417
418 p = &ci->i_xattrs.index.rb_node;
419 while (*p) {
420 parent = *p;
421 xattr = rb_entry(parent, struct ceph_inode_xattr, node);
422 c = strncmp(name, xattr->name, xattr->name_len);
Sage Weil17db1432011-01-13 15:27:29 -0800423 if (c == 0 && name_len > xattr->name_len)
424 c = 1;
Sage Weil355da1e2009-10-06 11:31:08 -0700425 if (c < 0)
426 p = &(*p)->rb_left;
427 else if (c > 0)
428 p = &(*p)->rb_right;
429 else {
430 dout("__get_xattr %s: found %.*s\n", name,
431 xattr->val_len, xattr->val);
432 return xattr;
433 }
434 }
435
436 dout("__get_xattr %s: not found\n", name);
437
438 return NULL;
439}
440
441static void __free_xattr(struct ceph_inode_xattr *xattr)
442{
443 BUG_ON(!xattr);
444
445 if (xattr->should_free_name)
446 kfree((void *)xattr->name);
447 if (xattr->should_free_val)
448 kfree((void *)xattr->val);
449
450 kfree(xattr);
451}
452
453static int __remove_xattr(struct ceph_inode_info *ci,
454 struct ceph_inode_xattr *xattr)
455{
456 if (!xattr)
457 return -EOPNOTSUPP;
458
459 rb_erase(&xattr->node, &ci->i_xattrs.index);
460
461 if (xattr->should_free_name)
462 kfree((void *)xattr->name);
463 if (xattr->should_free_val)
464 kfree((void *)xattr->val);
465
466 ci->i_xattrs.names_size -= xattr->name_len;
467 ci->i_xattrs.vals_size -= xattr->val_len;
468 ci->i_xattrs.count--;
469 kfree(xattr);
470
471 return 0;
472}
473
474static int __remove_xattr_by_name(struct ceph_inode_info *ci,
475 const char *name)
476{
477 struct rb_node **p;
478 struct ceph_inode_xattr *xattr;
479 int err;
480
481 p = &ci->i_xattrs.index.rb_node;
482 xattr = __get_xattr(ci, name);
483 err = __remove_xattr(ci, xattr);
484 return err;
485}
486
487static char *__copy_xattr_names(struct ceph_inode_info *ci,
488 char *dest)
489{
490 struct rb_node *p;
491 struct ceph_inode_xattr *xattr = NULL;
492
493 p = rb_first(&ci->i_xattrs.index);
494 dout("__copy_xattr_names count=%d\n", ci->i_xattrs.count);
495
496 while (p) {
497 xattr = rb_entry(p, struct ceph_inode_xattr, node);
498 memcpy(dest, xattr->name, xattr->name_len);
499 dest[xattr->name_len] = '\0';
500
501 dout("dest=%s %p (%s) (%d/%d)\n", dest, xattr, xattr->name,
502 xattr->name_len, ci->i_xattrs.names_size);
503
504 dest += xattr->name_len + 1;
505 p = rb_next(p);
506 }
507
508 return dest;
509}
510
511void __ceph_destroy_xattrs(struct ceph_inode_info *ci)
512{
513 struct rb_node *p, *tmp;
514 struct ceph_inode_xattr *xattr = NULL;
515
516 p = rb_first(&ci->i_xattrs.index);
517
518 dout("__ceph_destroy_xattrs p=%p\n", p);
519
520 while (p) {
521 xattr = rb_entry(p, struct ceph_inode_xattr, node);
522 tmp = p;
523 p = rb_next(tmp);
524 dout("__ceph_destroy_xattrs next p=%p (%.*s)\n", p,
525 xattr->name_len, xattr->name);
526 rb_erase(tmp, &ci->i_xattrs.index);
527
528 __free_xattr(xattr);
529 }
530
531 ci->i_xattrs.names_size = 0;
532 ci->i_xattrs.vals_size = 0;
533 ci->i_xattrs.index_version = 0;
534 ci->i_xattrs.count = 0;
535 ci->i_xattrs.index = RB_ROOT;
536}
537
538static int __build_xattrs(struct inode *inode)
Sage Weilbe655592011-11-30 09:47:09 -0800539 __releases(ci->i_ceph_lock)
540 __acquires(ci->i_ceph_lock)
Sage Weil355da1e2009-10-06 11:31:08 -0700541{
542 u32 namelen;
543 u32 numattr = 0;
544 void *p, *end;
545 u32 len;
546 const char *name, *val;
547 struct ceph_inode_info *ci = ceph_inode(inode);
548 int xattr_version;
549 struct ceph_inode_xattr **xattrs = NULL;
Sage Weil63ff78b2009-11-01 17:51:15 -0800550 int err = 0;
Sage Weil355da1e2009-10-06 11:31:08 -0700551 int i;
552
553 dout("__build_xattrs() len=%d\n",
554 ci->i_xattrs.blob ? (int)ci->i_xattrs.blob->vec.iov_len : 0);
555
556 if (ci->i_xattrs.index_version >= ci->i_xattrs.version)
557 return 0; /* already built */
558
559 __ceph_destroy_xattrs(ci);
560
561start:
562 /* updated internal xattr rb tree */
563 if (ci->i_xattrs.blob && ci->i_xattrs.blob->vec.iov_len > 4) {
564 p = ci->i_xattrs.blob->vec.iov_base;
565 end = p + ci->i_xattrs.blob->vec.iov_len;
566 ceph_decode_32_safe(&p, end, numattr, bad);
567 xattr_version = ci->i_xattrs.version;
Sage Weilbe655592011-11-30 09:47:09 -0800568 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700569
570 xattrs = kcalloc(numattr, sizeof(struct ceph_xattr *),
571 GFP_NOFS);
572 err = -ENOMEM;
573 if (!xattrs)
574 goto bad_lock;
575 memset(xattrs, 0, numattr*sizeof(struct ceph_xattr *));
576 for (i = 0; i < numattr; i++) {
577 xattrs[i] = kmalloc(sizeof(struct ceph_inode_xattr),
578 GFP_NOFS);
579 if (!xattrs[i])
580 goto bad_lock;
581 }
582
Sage Weilbe655592011-11-30 09:47:09 -0800583 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700584 if (ci->i_xattrs.version != xattr_version) {
585 /* lost a race, retry */
586 for (i = 0; i < numattr; i++)
587 kfree(xattrs[i]);
588 kfree(xattrs);
Alan Cox21ec6ff2012-07-20 08:18:36 -0500589 xattrs = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700590 goto start;
591 }
592 err = -EIO;
593 while (numattr--) {
594 ceph_decode_32_safe(&p, end, len, bad);
595 namelen = len;
596 name = p;
597 p += len;
598 ceph_decode_32_safe(&p, end, len, bad);
599 val = p;
600 p += len;
601
602 err = __set_xattr(ci, name, namelen, val, len,
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800603 0, 0, &xattrs[numattr]);
Sage Weil355da1e2009-10-06 11:31:08 -0700604
605 if (err < 0)
606 goto bad;
607 }
608 kfree(xattrs);
609 }
610 ci->i_xattrs.index_version = ci->i_xattrs.version;
611 ci->i_xattrs.dirty = false;
612
613 return err;
614bad_lock:
Sage Weilbe655592011-11-30 09:47:09 -0800615 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700616bad:
617 if (xattrs) {
618 for (i = 0; i < numattr; i++)
619 kfree(xattrs[i]);
620 kfree(xattrs);
621 }
622 ci->i_xattrs.names_size = 0;
623 return err;
624}
625
626static int __get_required_blob_size(struct ceph_inode_info *ci, int name_size,
627 int val_size)
628{
629 /*
630 * 4 bytes for the length, and additional 4 bytes per each xattr name,
631 * 4 bytes per each value
632 */
633 int size = 4 + ci->i_xattrs.count*(4 + 4) +
634 ci->i_xattrs.names_size +
635 ci->i_xattrs.vals_size;
636 dout("__get_required_blob_size c=%d names.size=%d vals.size=%d\n",
637 ci->i_xattrs.count, ci->i_xattrs.names_size,
638 ci->i_xattrs.vals_size);
639
640 if (name_size)
641 size += 4 + 4 + name_size + val_size;
642
643 return size;
644}
645
646/*
647 * If there are dirty xattrs, reencode xattrs into the prealloc_blob
648 * and swap into place.
649 */
650void __ceph_build_xattrs_blob(struct ceph_inode_info *ci)
651{
652 struct rb_node *p;
653 struct ceph_inode_xattr *xattr = NULL;
654 void *dest;
655
656 dout("__build_xattrs_blob %p\n", &ci->vfs_inode);
657 if (ci->i_xattrs.dirty) {
658 int need = __get_required_blob_size(ci, 0, 0);
659
660 BUG_ON(need > ci->i_xattrs.prealloc_blob->alloc_len);
661
662 p = rb_first(&ci->i_xattrs.index);
663 dest = ci->i_xattrs.prealloc_blob->vec.iov_base;
664
665 ceph_encode_32(&dest, ci->i_xattrs.count);
666 while (p) {
667 xattr = rb_entry(p, struct ceph_inode_xattr, node);
668
669 ceph_encode_32(&dest, xattr->name_len);
670 memcpy(dest, xattr->name, xattr->name_len);
671 dest += xattr->name_len;
672 ceph_encode_32(&dest, xattr->val_len);
673 memcpy(dest, xattr->val, xattr->val_len);
674 dest += xattr->val_len;
675
676 p = rb_next(p);
677 }
678
679 /* adjust buffer len; it may be larger than we need */
680 ci->i_xattrs.prealloc_blob->vec.iov_len =
681 dest - ci->i_xattrs.prealloc_blob->vec.iov_base;
682
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800683 if (ci->i_xattrs.blob)
684 ceph_buffer_put(ci->i_xattrs.blob);
Sage Weil355da1e2009-10-06 11:31:08 -0700685 ci->i_xattrs.blob = ci->i_xattrs.prealloc_blob;
686 ci->i_xattrs.prealloc_blob = NULL;
687 ci->i_xattrs.dirty = false;
Sage Weil4a625be2010-08-22 15:03:56 -0700688 ci->i_xattrs.version++;
Sage Weil355da1e2009-10-06 11:31:08 -0700689 }
690}
691
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800692ssize_t __ceph_getxattr(struct inode *inode, const char *name, void *value,
Sage Weil355da1e2009-10-06 11:31:08 -0700693 size_t size)
694{
Sage Weil355da1e2009-10-06 11:31:08 -0700695 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700696 int err;
697 struct ceph_inode_xattr *xattr;
Alex Elder881a5fa2012-01-23 15:49:28 -0600698 struct ceph_vxattr *vxattr = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700699
700 if (!ceph_is_valid_xattr(name))
701 return -ENODATA;
702
Sage Weil0bee82f2013-01-20 22:00:58 -0800703 /* let's see if a virtual xattr was requested */
704 vxattr = ceph_match_vxattr(inode, name);
705 if (vxattr && !(vxattr->exists_cb && !vxattr->exists_cb(ci))) {
706 err = vxattr->getxattr_cb(ci, value, size);
majianpenga1dc1932013-06-19 14:58:10 +0800707 return err;
Sage Weil0bee82f2013-01-20 22:00:58 -0800708 }
709
majianpenga1dc1932013-06-19 14:58:10 +0800710 spin_lock(&ci->i_ceph_lock);
711 dout("getxattr %p ver=%lld index_ver=%lld\n", inode,
712 ci->i_xattrs.version, ci->i_xattrs.index_version);
713
Sage Weil355da1e2009-10-06 11:31:08 -0700714 if (__ceph_caps_issued_mask(ci, CEPH_CAP_XATTR_SHARED, 1) &&
715 (ci->i_xattrs.index_version >= ci->i_xattrs.version)) {
716 goto get_xattr;
717 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800718 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700719 /* get xattrs from mds (if we don't already have them) */
720 err = ceph_do_getattr(inode, CEPH_STAT_CAP_XATTR);
721 if (err)
722 return err;
723 }
724
Sage Weilbe655592011-11-30 09:47:09 -0800725 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700726
Sage Weil355da1e2009-10-06 11:31:08 -0700727 err = __build_xattrs(inode);
728 if (err < 0)
729 goto out;
730
731get_xattr:
732 err = -ENODATA; /* == ENOATTR */
733 xattr = __get_xattr(ci, name);
Sage Weil0bee82f2013-01-20 22:00:58 -0800734 if (!xattr)
Sage Weil355da1e2009-10-06 11:31:08 -0700735 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700736
737 err = -ERANGE;
738 if (size && size < xattr->val_len)
739 goto out;
740
741 err = xattr->val_len;
742 if (size == 0)
743 goto out;
744
745 memcpy(value, xattr->val, xattr->val_len);
746
747out:
Sage Weilbe655592011-11-30 09:47:09 -0800748 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700749 return err;
750}
751
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800752ssize_t ceph_getxattr(struct dentry *dentry, const char *name, void *value,
753 size_t size)
754{
755 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
756 return generic_getxattr(dentry, name, value, size);
757
758 return __ceph_getxattr(dentry->d_inode, name, value, size);
759}
760
Sage Weil355da1e2009-10-06 11:31:08 -0700761ssize_t ceph_listxattr(struct dentry *dentry, char *names, size_t size)
762{
763 struct inode *inode = dentry->d_inode;
764 struct ceph_inode_info *ci = ceph_inode(inode);
Alex Elder881a5fa2012-01-23 15:49:28 -0600765 struct ceph_vxattr *vxattrs = ceph_inode_vxattrs(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700766 u32 vir_namelen = 0;
767 u32 namelen;
768 int err;
769 u32 len;
770 int i;
771
Sage Weilbe655592011-11-30 09:47:09 -0800772 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700773 dout("listxattr %p ver=%lld index_ver=%lld\n", inode,
774 ci->i_xattrs.version, ci->i_xattrs.index_version);
775
776 if (__ceph_caps_issued_mask(ci, CEPH_CAP_XATTR_SHARED, 1) &&
Henry C Changbddfa3c2010-04-29 09:32:28 -0700777 (ci->i_xattrs.index_version >= ci->i_xattrs.version)) {
Sage Weil355da1e2009-10-06 11:31:08 -0700778 goto list_xattr;
779 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800780 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700781 err = ceph_do_getattr(inode, CEPH_STAT_CAP_XATTR);
782 if (err)
783 return err;
784 }
785
Sage Weilbe655592011-11-30 09:47:09 -0800786 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700787
788 err = __build_xattrs(inode);
789 if (err < 0)
790 goto out;
791
792list_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -0600793 /*
794 * Start with virtual dir xattr names (if any) (including
795 * terminating '\0' characters for each).
796 */
797 vir_namelen = ceph_vxattrs_name_size(vxattrs);
798
Sage Weil355da1e2009-10-06 11:31:08 -0700799 /* adding 1 byte per each variable due to the null termination */
Sage Weilb65917d2013-01-20 22:02:39 -0800800 namelen = ci->i_xattrs.names_size + ci->i_xattrs.count;
Sage Weil355da1e2009-10-06 11:31:08 -0700801 err = -ERANGE;
Sage Weilb65917d2013-01-20 22:02:39 -0800802 if (size && vir_namelen + namelen > size)
Sage Weil355da1e2009-10-06 11:31:08 -0700803 goto out;
804
Sage Weilb65917d2013-01-20 22:02:39 -0800805 err = namelen + vir_namelen;
Sage Weil355da1e2009-10-06 11:31:08 -0700806 if (size == 0)
807 goto out;
808
809 names = __copy_xattr_names(ci, names);
810
811 /* virtual xattr names, too */
Sage Weilb65917d2013-01-20 22:02:39 -0800812 err = namelen;
813 if (vxattrs) {
Sage Weil355da1e2009-10-06 11:31:08 -0700814 for (i = 0; vxattrs[i].name; i++) {
Sage Weilb65917d2013-01-20 22:02:39 -0800815 if (!vxattrs[i].hidden &&
816 !(vxattrs[i].exists_cb &&
817 !vxattrs[i].exists_cb(ci))) {
818 len = sprintf(names, "%s", vxattrs[i].name);
819 names += len + 1;
820 err += len + 1;
821 }
Sage Weil355da1e2009-10-06 11:31:08 -0700822 }
Sage Weilb65917d2013-01-20 22:02:39 -0800823 }
Sage Weil355da1e2009-10-06 11:31:08 -0700824
825out:
Sage Weilbe655592011-11-30 09:47:09 -0800826 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700827 return err;
828}
829
830static int ceph_sync_setxattr(struct dentry *dentry, const char *name,
831 const char *value, size_t size, int flags)
832{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700833 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
Sage Weil355da1e2009-10-06 11:31:08 -0700834 struct inode *inode = dentry->d_inode;
835 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil5f21c962011-07-26 11:30:29 -0700836 struct inode *parent_inode;
Sage Weil355da1e2009-10-06 11:31:08 -0700837 struct ceph_mds_request *req;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700838 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil355da1e2009-10-06 11:31:08 -0700839 int err;
840 int i, nr_pages;
841 struct page **pages = NULL;
842 void *kaddr;
843
844 /* copy value into some pages */
845 nr_pages = calc_pages_for(0, size);
846 if (nr_pages) {
847 pages = kmalloc(sizeof(pages[0])*nr_pages, GFP_NOFS);
848 if (!pages)
849 return -ENOMEM;
850 err = -ENOMEM;
851 for (i = 0; i < nr_pages; i++) {
Yehuda Sadeh31459fe2010-03-17 13:54:02 -0700852 pages[i] = __page_cache_alloc(GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700853 if (!pages[i]) {
854 nr_pages = i;
855 goto out;
856 }
857 kaddr = kmap(pages[i]);
858 memcpy(kaddr, value + i*PAGE_CACHE_SIZE,
859 min(PAGE_CACHE_SIZE, size-i*PAGE_CACHE_SIZE));
860 }
861 }
862
863 dout("setxattr value=%.*s\n", (int)size, value);
864
865 /* do request */
866 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETXATTR,
867 USE_AUTH_MDS);
Julia Lawall60d87732009-11-21 12:53:08 +0100868 if (IS_ERR(req)) {
869 err = PTR_ERR(req);
870 goto out;
871 }
Sage Weil70b666c2011-05-27 09:24:26 -0700872 req->r_inode = inode;
873 ihold(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700874 req->r_inode_drop = CEPH_CAP_XATTR_SHARED;
875 req->r_num_caps = 1;
876 req->r_args.setxattr.flags = cpu_to_le32(flags);
877 req->r_path2 = kstrdup(name, GFP_NOFS);
878
879 req->r_pages = pages;
880 req->r_num_pages = nr_pages;
881 req->r_data_len = size;
882
883 dout("xattr.ver (before): %lld\n", ci->i_xattrs.version);
Sage Weil5f21c962011-07-26 11:30:29 -0700884 parent_inode = ceph_get_dentry_parent_inode(dentry);
Sage Weil355da1e2009-10-06 11:31:08 -0700885 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
Sage Weil5f21c962011-07-26 11:30:29 -0700886 iput(parent_inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700887 ceph_mdsc_put_request(req);
888 dout("xattr.ver (after): %lld\n", ci->i_xattrs.version);
889
890out:
891 if (pages) {
892 for (i = 0; i < nr_pages; i++)
893 __free_page(pages[i]);
894 kfree(pages);
895 }
896 return err;
897}
898
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800899int __ceph_setxattr(struct dentry *dentry, const char *name,
900 const void *value, size_t size, int flags)
Sage Weil355da1e2009-10-06 11:31:08 -0700901{
902 struct inode *inode = dentry->d_inode;
Alex Elder881a5fa2012-01-23 15:49:28 -0600903 struct ceph_vxattr *vxattr;
Sage Weil355da1e2009-10-06 11:31:08 -0700904 struct ceph_inode_info *ci = ceph_inode(inode);
Alex Elder18fa8b32012-01-23 15:49:28 -0600905 int issued;
Sage Weil355da1e2009-10-06 11:31:08 -0700906 int err;
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800907 int dirty = 0;
Sage Weil355da1e2009-10-06 11:31:08 -0700908 int name_len = strlen(name);
909 int val_len = size;
910 char *newname = NULL;
911 char *newval = NULL;
912 struct ceph_inode_xattr *xattr = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700913 int required_blob_size;
914
Sage Weil355da1e2009-10-06 11:31:08 -0700915 if (!ceph_is_valid_xattr(name))
916 return -EOPNOTSUPP;
917
Alex Elder06476a62012-01-23 15:49:27 -0600918 vxattr = ceph_match_vxattr(inode, name);
919 if (vxattr && vxattr->readonly)
920 return -EOPNOTSUPP;
Sage Weil355da1e2009-10-06 11:31:08 -0700921
Sage Weil3adf6542013-01-31 11:53:41 -0800922 /* pass any unhandled ceph.* xattrs through to the MDS */
923 if (!strncmp(name, XATTR_CEPH_PREFIX, XATTR_CEPH_PREFIX_LEN))
924 goto do_sync_unlocked;
925
Sage Weil355da1e2009-10-06 11:31:08 -0700926 /* preallocate memory for xattr name, value, index node */
927 err = -ENOMEM;
Julia Lawall61413c22010-10-17 21:55:21 +0200928 newname = kmemdup(name, name_len + 1, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700929 if (!newname)
930 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700931
932 if (val_len) {
Alex Elderb829c192012-01-23 15:49:27 -0600933 newval = kmemdup(value, val_len, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700934 if (!newval)
935 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700936 }
937
938 xattr = kmalloc(sizeof(struct ceph_inode_xattr), GFP_NOFS);
939 if (!xattr)
940 goto out;
941
Sage Weilbe655592011-11-30 09:47:09 -0800942 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700943retry:
944 issued = __ceph_caps_issued(ci, NULL);
Alex Elder18fa8b32012-01-23 15:49:28 -0600945 dout("setxattr %p issued %s\n", inode, ceph_cap_string(issued));
Sage Weil355da1e2009-10-06 11:31:08 -0700946 if (!(issued & CEPH_CAP_XATTR_EXCL))
947 goto do_sync;
948 __build_xattrs(inode);
949
950 required_blob_size = __get_required_blob_size(ci, name_len, val_len);
951
952 if (!ci->i_xattrs.prealloc_blob ||
953 required_blob_size > ci->i_xattrs.prealloc_blob->alloc_len) {
Alex Elder18fa8b32012-01-23 15:49:28 -0600954 struct ceph_buffer *blob;
Sage Weil355da1e2009-10-06 11:31:08 -0700955
Sage Weilbe655592011-11-30 09:47:09 -0800956 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700957 dout(" preaallocating new blob size=%d\n", required_blob_size);
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800958 blob = ceph_buffer_new(required_blob_size, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700959 if (!blob)
960 goto out;
Sage Weilbe655592011-11-30 09:47:09 -0800961 spin_lock(&ci->i_ceph_lock);
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800962 if (ci->i_xattrs.prealloc_blob)
963 ceph_buffer_put(ci->i_xattrs.prealloc_blob);
Sage Weil355da1e2009-10-06 11:31:08 -0700964 ci->i_xattrs.prealloc_blob = blob;
965 goto retry;
966 }
967
Sage Weil355da1e2009-10-06 11:31:08 -0700968 err = __set_xattr(ci, newname, name_len, newval,
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800969 val_len, flags, 1, &xattr);
Alex Elder18fa8b32012-01-23 15:49:28 -0600970
Yan, Zhengfbc0b972014-02-11 13:01:19 +0800971 if (!err) {
972 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_XATTR_EXCL);
973 ci->i_xattrs.dirty = true;
974 inode->i_ctime = CURRENT_TIME;
975 }
Alex Elder18fa8b32012-01-23 15:49:28 -0600976
Sage Weilbe655592011-11-30 09:47:09 -0800977 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -0700978 if (dirty)
979 __mark_inode_dirty(inode, dirty);
Sage Weil355da1e2009-10-06 11:31:08 -0700980 return err;
981
982do_sync:
Sage Weilbe655592011-11-30 09:47:09 -0800983 spin_unlock(&ci->i_ceph_lock);
Sage Weil3adf6542013-01-31 11:53:41 -0800984do_sync_unlocked:
Sage Weil355da1e2009-10-06 11:31:08 -0700985 err = ceph_sync_setxattr(dentry, name, value, size, flags);
986out:
987 kfree(newname);
988 kfree(newval);
989 kfree(xattr);
990 return err;
991}
992
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800993int ceph_setxattr(struct dentry *dentry, const char *name,
994 const void *value, size_t size, int flags)
995{
996 if (ceph_snap(dentry->d_inode) != CEPH_NOSNAP)
997 return -EROFS;
998
999 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
1000 return generic_setxattr(dentry, name, value, size, flags);
1001
1002 return __ceph_setxattr(dentry, name, value, size, flags);
1003}
1004
Sage Weil355da1e2009-10-06 11:31:08 -07001005static int ceph_send_removexattr(struct dentry *dentry, const char *name)
1006{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001007 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
1008 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil355da1e2009-10-06 11:31:08 -07001009 struct inode *inode = dentry->d_inode;
Sage Weil5f21c962011-07-26 11:30:29 -07001010 struct inode *parent_inode;
Sage Weil355da1e2009-10-06 11:31:08 -07001011 struct ceph_mds_request *req;
1012 int err;
1013
1014 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_RMXATTR,
1015 USE_AUTH_MDS);
1016 if (IS_ERR(req))
1017 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -07001018 req->r_inode = inode;
1019 ihold(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001020 req->r_inode_drop = CEPH_CAP_XATTR_SHARED;
1021 req->r_num_caps = 1;
1022 req->r_path2 = kstrdup(name, GFP_NOFS);
1023
Sage Weil5f21c962011-07-26 11:30:29 -07001024 parent_inode = ceph_get_dentry_parent_inode(dentry);
Sage Weil355da1e2009-10-06 11:31:08 -07001025 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
Sage Weil5f21c962011-07-26 11:30:29 -07001026 iput(parent_inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001027 ceph_mdsc_put_request(req);
1028 return err;
1029}
1030
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001031int __ceph_removexattr(struct dentry *dentry, const char *name)
Sage Weil355da1e2009-10-06 11:31:08 -07001032{
1033 struct inode *inode = dentry->d_inode;
Alex Elder881a5fa2012-01-23 15:49:28 -06001034 struct ceph_vxattr *vxattr;
Sage Weil355da1e2009-10-06 11:31:08 -07001035 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001036 int issued;
1037 int err;
Alex Elder83eb26a2012-01-11 17:41:01 -08001038 int required_blob_size;
Sage Weilfca65b42011-05-04 11:33:47 -07001039 int dirty;
Sage Weil355da1e2009-10-06 11:31:08 -07001040
Sage Weil355da1e2009-10-06 11:31:08 -07001041 if (!ceph_is_valid_xattr(name))
1042 return -EOPNOTSUPP;
1043
Alex Elder06476a62012-01-23 15:49:27 -06001044 vxattr = ceph_match_vxattr(inode, name);
1045 if (vxattr && vxattr->readonly)
1046 return -EOPNOTSUPP;
Sage Weil355da1e2009-10-06 11:31:08 -07001047
Sage Weild421acb2013-01-20 21:55:30 -08001048 /* pass any unhandled ceph.* xattrs through to the MDS */
1049 if (!strncmp(name, XATTR_CEPH_PREFIX, XATTR_CEPH_PREFIX_LEN))
1050 goto do_sync_unlocked;
1051
Alex Elder83eb26a2012-01-11 17:41:01 -08001052 err = -ENOMEM;
Sage Weilbe655592011-11-30 09:47:09 -08001053 spin_lock(&ci->i_ceph_lock);
Alex Elder83eb26a2012-01-11 17:41:01 -08001054retry:
Sage Weil355da1e2009-10-06 11:31:08 -07001055 issued = __ceph_caps_issued(ci, NULL);
1056 dout("removexattr %p issued %s\n", inode, ceph_cap_string(issued));
1057
1058 if (!(issued & CEPH_CAP_XATTR_EXCL))
1059 goto do_sync;
Alex Elder18fa8b32012-01-23 15:49:28 -06001060 __build_xattrs(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001061
Alex Elder83eb26a2012-01-11 17:41:01 -08001062 required_blob_size = __get_required_blob_size(ci, 0, 0);
1063
1064 if (!ci->i_xattrs.prealloc_blob ||
1065 required_blob_size > ci->i_xattrs.prealloc_blob->alloc_len) {
1066 struct ceph_buffer *blob;
1067
1068 spin_unlock(&ci->i_ceph_lock);
1069 dout(" preaallocating new blob size=%d\n", required_blob_size);
1070 blob = ceph_buffer_new(required_blob_size, GFP_NOFS);
1071 if (!blob)
1072 goto out;
1073 spin_lock(&ci->i_ceph_lock);
1074 if (ci->i_xattrs.prealloc_blob)
1075 ceph_buffer_put(ci->i_xattrs.prealloc_blob);
1076 ci->i_xattrs.prealloc_blob = blob;
1077 goto retry;
1078 }
1079
Sage Weil355da1e2009-10-06 11:31:08 -07001080 err = __remove_xattr_by_name(ceph_inode(inode), name);
Alex Elder18fa8b32012-01-23 15:49:28 -06001081
Sage Weilfca65b42011-05-04 11:33:47 -07001082 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_XATTR_EXCL);
Sage Weil355da1e2009-10-06 11:31:08 -07001083 ci->i_xattrs.dirty = true;
1084 inode->i_ctime = CURRENT_TIME;
Sage Weilbe655592011-11-30 09:47:09 -08001085 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001086 if (dirty)
1087 __mark_inode_dirty(inode, dirty);
Sage Weil355da1e2009-10-06 11:31:08 -07001088 return err;
1089do_sync:
Sage Weilbe655592011-11-30 09:47:09 -08001090 spin_unlock(&ci->i_ceph_lock);
Sage Weild421acb2013-01-20 21:55:30 -08001091do_sync_unlocked:
Sage Weil355da1e2009-10-06 11:31:08 -07001092 err = ceph_send_removexattr(dentry, name);
Alex Elder83eb26a2012-01-11 17:41:01 -08001093out:
Sage Weil355da1e2009-10-06 11:31:08 -07001094 return err;
1095}
1096
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001097int ceph_removexattr(struct dentry *dentry, const char *name)
1098{
1099 if (ceph_snap(dentry->d_inode) != CEPH_NOSNAP)
1100 return -EROFS;
1101
1102 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
1103 return generic_removexattr(dentry, name);
1104
1105 return __ceph_removexattr(dentry, name);
1106}