blob: 898b6565ad3e2c114baca0282fafea6a5643071a [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,
322 int dirty,
323 int should_free_name, int should_free_val,
324 struct ceph_inode_xattr **newxattr)
325{
326 struct rb_node **p;
327 struct rb_node *parent = NULL;
328 struct ceph_inode_xattr *xattr = NULL;
329 int c;
330 int new = 0;
331
332 p = &ci->i_xattrs.index.rb_node;
333 while (*p) {
334 parent = *p;
335 xattr = rb_entry(parent, struct ceph_inode_xattr, node);
336 c = strncmp(name, xattr->name, min(name_len, xattr->name_len));
337 if (c < 0)
338 p = &(*p)->rb_left;
339 else if (c > 0)
340 p = &(*p)->rb_right;
341 else {
342 if (name_len == xattr->name_len)
343 break;
344 else if (name_len < xattr->name_len)
345 p = &(*p)->rb_left;
346 else
347 p = &(*p)->rb_right;
348 }
349 xattr = NULL;
350 }
351
352 if (!xattr) {
353 new = 1;
354 xattr = *newxattr;
355 xattr->name = name;
356 xattr->name_len = name_len;
357 xattr->should_free_name = should_free_name;
358
359 ci->i_xattrs.count++;
360 dout("__set_xattr count=%d\n", ci->i_xattrs.count);
361 } else {
362 kfree(*newxattr);
363 *newxattr = NULL;
364 if (xattr->should_free_val)
365 kfree((void *)xattr->val);
366
367 if (should_free_name) {
368 kfree((void *)name);
369 name = xattr->name;
370 }
371 ci->i_xattrs.names_size -= xattr->name_len;
372 ci->i_xattrs.vals_size -= xattr->val_len;
373 }
Sage Weil355da1e2009-10-06 11:31:08 -0700374 ci->i_xattrs.names_size += name_len;
375 ci->i_xattrs.vals_size += val_len;
376 if (val)
377 xattr->val = val;
378 else
379 xattr->val = "";
380
381 xattr->val_len = val_len;
382 xattr->dirty = dirty;
383 xattr->should_free_val = (val && should_free_val);
384
385 if (new) {
386 rb_link_node(&xattr->node, parent, p);
387 rb_insert_color(&xattr->node, &ci->i_xattrs.index);
388 dout("__set_xattr_val p=%p\n", p);
389 }
390
391 dout("__set_xattr_val added %llx.%llx xattr %p %s=%.*s\n",
392 ceph_vinop(&ci->vfs_inode), xattr, name, val_len, val);
393
394 return 0;
395}
396
397static struct ceph_inode_xattr *__get_xattr(struct ceph_inode_info *ci,
398 const char *name)
399{
400 struct rb_node **p;
401 struct rb_node *parent = NULL;
402 struct ceph_inode_xattr *xattr = NULL;
Sage Weil17db1432011-01-13 15:27:29 -0800403 int name_len = strlen(name);
Sage Weil355da1e2009-10-06 11:31:08 -0700404 int c;
405
406 p = &ci->i_xattrs.index.rb_node;
407 while (*p) {
408 parent = *p;
409 xattr = rb_entry(parent, struct ceph_inode_xattr, node);
410 c = strncmp(name, xattr->name, xattr->name_len);
Sage Weil17db1432011-01-13 15:27:29 -0800411 if (c == 0 && name_len > xattr->name_len)
412 c = 1;
Sage Weil355da1e2009-10-06 11:31:08 -0700413 if (c < 0)
414 p = &(*p)->rb_left;
415 else if (c > 0)
416 p = &(*p)->rb_right;
417 else {
418 dout("__get_xattr %s: found %.*s\n", name,
419 xattr->val_len, xattr->val);
420 return xattr;
421 }
422 }
423
424 dout("__get_xattr %s: not found\n", name);
425
426 return NULL;
427}
428
429static void __free_xattr(struct ceph_inode_xattr *xattr)
430{
431 BUG_ON(!xattr);
432
433 if (xattr->should_free_name)
434 kfree((void *)xattr->name);
435 if (xattr->should_free_val)
436 kfree((void *)xattr->val);
437
438 kfree(xattr);
439}
440
441static int __remove_xattr(struct ceph_inode_info *ci,
442 struct ceph_inode_xattr *xattr)
443{
444 if (!xattr)
445 return -EOPNOTSUPP;
446
447 rb_erase(&xattr->node, &ci->i_xattrs.index);
448
449 if (xattr->should_free_name)
450 kfree((void *)xattr->name);
451 if (xattr->should_free_val)
452 kfree((void *)xattr->val);
453
454 ci->i_xattrs.names_size -= xattr->name_len;
455 ci->i_xattrs.vals_size -= xattr->val_len;
456 ci->i_xattrs.count--;
457 kfree(xattr);
458
459 return 0;
460}
461
462static int __remove_xattr_by_name(struct ceph_inode_info *ci,
463 const char *name)
464{
465 struct rb_node **p;
466 struct ceph_inode_xattr *xattr;
467 int err;
468
469 p = &ci->i_xattrs.index.rb_node;
470 xattr = __get_xattr(ci, name);
471 err = __remove_xattr(ci, xattr);
472 return err;
473}
474
475static char *__copy_xattr_names(struct ceph_inode_info *ci,
476 char *dest)
477{
478 struct rb_node *p;
479 struct ceph_inode_xattr *xattr = NULL;
480
481 p = rb_first(&ci->i_xattrs.index);
482 dout("__copy_xattr_names count=%d\n", ci->i_xattrs.count);
483
484 while (p) {
485 xattr = rb_entry(p, struct ceph_inode_xattr, node);
486 memcpy(dest, xattr->name, xattr->name_len);
487 dest[xattr->name_len] = '\0';
488
489 dout("dest=%s %p (%s) (%d/%d)\n", dest, xattr, xattr->name,
490 xattr->name_len, ci->i_xattrs.names_size);
491
492 dest += xattr->name_len + 1;
493 p = rb_next(p);
494 }
495
496 return dest;
497}
498
499void __ceph_destroy_xattrs(struct ceph_inode_info *ci)
500{
501 struct rb_node *p, *tmp;
502 struct ceph_inode_xattr *xattr = NULL;
503
504 p = rb_first(&ci->i_xattrs.index);
505
506 dout("__ceph_destroy_xattrs p=%p\n", p);
507
508 while (p) {
509 xattr = rb_entry(p, struct ceph_inode_xattr, node);
510 tmp = p;
511 p = rb_next(tmp);
512 dout("__ceph_destroy_xattrs next p=%p (%.*s)\n", p,
513 xattr->name_len, xattr->name);
514 rb_erase(tmp, &ci->i_xattrs.index);
515
516 __free_xattr(xattr);
517 }
518
519 ci->i_xattrs.names_size = 0;
520 ci->i_xattrs.vals_size = 0;
521 ci->i_xattrs.index_version = 0;
522 ci->i_xattrs.count = 0;
523 ci->i_xattrs.index = RB_ROOT;
524}
525
526static int __build_xattrs(struct inode *inode)
Sage Weilbe655592011-11-30 09:47:09 -0800527 __releases(ci->i_ceph_lock)
528 __acquires(ci->i_ceph_lock)
Sage Weil355da1e2009-10-06 11:31:08 -0700529{
530 u32 namelen;
531 u32 numattr = 0;
532 void *p, *end;
533 u32 len;
534 const char *name, *val;
535 struct ceph_inode_info *ci = ceph_inode(inode);
536 int xattr_version;
537 struct ceph_inode_xattr **xattrs = NULL;
Sage Weil63ff78b2009-11-01 17:51:15 -0800538 int err = 0;
Sage Weil355da1e2009-10-06 11:31:08 -0700539 int i;
540
541 dout("__build_xattrs() len=%d\n",
542 ci->i_xattrs.blob ? (int)ci->i_xattrs.blob->vec.iov_len : 0);
543
544 if (ci->i_xattrs.index_version >= ci->i_xattrs.version)
545 return 0; /* already built */
546
547 __ceph_destroy_xattrs(ci);
548
549start:
550 /* updated internal xattr rb tree */
551 if (ci->i_xattrs.blob && ci->i_xattrs.blob->vec.iov_len > 4) {
552 p = ci->i_xattrs.blob->vec.iov_base;
553 end = p + ci->i_xattrs.blob->vec.iov_len;
554 ceph_decode_32_safe(&p, end, numattr, bad);
555 xattr_version = ci->i_xattrs.version;
Sage Weilbe655592011-11-30 09:47:09 -0800556 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700557
558 xattrs = kcalloc(numattr, sizeof(struct ceph_xattr *),
559 GFP_NOFS);
560 err = -ENOMEM;
561 if (!xattrs)
562 goto bad_lock;
563 memset(xattrs, 0, numattr*sizeof(struct ceph_xattr *));
564 for (i = 0; i < numattr; i++) {
565 xattrs[i] = kmalloc(sizeof(struct ceph_inode_xattr),
566 GFP_NOFS);
567 if (!xattrs[i])
568 goto bad_lock;
569 }
570
Sage Weilbe655592011-11-30 09:47:09 -0800571 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700572 if (ci->i_xattrs.version != xattr_version) {
573 /* lost a race, retry */
574 for (i = 0; i < numattr; i++)
575 kfree(xattrs[i]);
576 kfree(xattrs);
Alan Cox21ec6ff2012-07-20 08:18:36 -0500577 xattrs = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700578 goto start;
579 }
580 err = -EIO;
581 while (numattr--) {
582 ceph_decode_32_safe(&p, end, len, bad);
583 namelen = len;
584 name = p;
585 p += len;
586 ceph_decode_32_safe(&p, end, len, bad);
587 val = p;
588 p += len;
589
590 err = __set_xattr(ci, name, namelen, val, len,
591 0, 0, 0, &xattrs[numattr]);
592
593 if (err < 0)
594 goto bad;
595 }
596 kfree(xattrs);
597 }
598 ci->i_xattrs.index_version = ci->i_xattrs.version;
599 ci->i_xattrs.dirty = false;
600
601 return err;
602bad_lock:
Sage Weilbe655592011-11-30 09:47:09 -0800603 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700604bad:
605 if (xattrs) {
606 for (i = 0; i < numattr; i++)
607 kfree(xattrs[i]);
608 kfree(xattrs);
609 }
610 ci->i_xattrs.names_size = 0;
611 return err;
612}
613
614static int __get_required_blob_size(struct ceph_inode_info *ci, int name_size,
615 int val_size)
616{
617 /*
618 * 4 bytes for the length, and additional 4 bytes per each xattr name,
619 * 4 bytes per each value
620 */
621 int size = 4 + ci->i_xattrs.count*(4 + 4) +
622 ci->i_xattrs.names_size +
623 ci->i_xattrs.vals_size;
624 dout("__get_required_blob_size c=%d names.size=%d vals.size=%d\n",
625 ci->i_xattrs.count, ci->i_xattrs.names_size,
626 ci->i_xattrs.vals_size);
627
628 if (name_size)
629 size += 4 + 4 + name_size + val_size;
630
631 return size;
632}
633
634/*
635 * If there are dirty xattrs, reencode xattrs into the prealloc_blob
636 * and swap into place.
637 */
638void __ceph_build_xattrs_blob(struct ceph_inode_info *ci)
639{
640 struct rb_node *p;
641 struct ceph_inode_xattr *xattr = NULL;
642 void *dest;
643
644 dout("__build_xattrs_blob %p\n", &ci->vfs_inode);
645 if (ci->i_xattrs.dirty) {
646 int need = __get_required_blob_size(ci, 0, 0);
647
648 BUG_ON(need > ci->i_xattrs.prealloc_blob->alloc_len);
649
650 p = rb_first(&ci->i_xattrs.index);
651 dest = ci->i_xattrs.prealloc_blob->vec.iov_base;
652
653 ceph_encode_32(&dest, ci->i_xattrs.count);
654 while (p) {
655 xattr = rb_entry(p, struct ceph_inode_xattr, node);
656
657 ceph_encode_32(&dest, xattr->name_len);
658 memcpy(dest, xattr->name, xattr->name_len);
659 dest += xattr->name_len;
660 ceph_encode_32(&dest, xattr->val_len);
661 memcpy(dest, xattr->val, xattr->val_len);
662 dest += xattr->val_len;
663
664 p = rb_next(p);
665 }
666
667 /* adjust buffer len; it may be larger than we need */
668 ci->i_xattrs.prealloc_blob->vec.iov_len =
669 dest - ci->i_xattrs.prealloc_blob->vec.iov_base;
670
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800671 if (ci->i_xattrs.blob)
672 ceph_buffer_put(ci->i_xattrs.blob);
Sage Weil355da1e2009-10-06 11:31:08 -0700673 ci->i_xattrs.blob = ci->i_xattrs.prealloc_blob;
674 ci->i_xattrs.prealloc_blob = NULL;
675 ci->i_xattrs.dirty = false;
Sage Weil4a625be2010-08-22 15:03:56 -0700676 ci->i_xattrs.version++;
Sage Weil355da1e2009-10-06 11:31:08 -0700677 }
678}
679
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800680ssize_t __ceph_getxattr(struct inode *inode, const char *name, void *value,
Sage Weil355da1e2009-10-06 11:31:08 -0700681 size_t size)
682{
Sage Weil355da1e2009-10-06 11:31:08 -0700683 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700684 int err;
685 struct ceph_inode_xattr *xattr;
Alex Elder881a5fa2012-01-23 15:49:28 -0600686 struct ceph_vxattr *vxattr = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700687
688 if (!ceph_is_valid_xattr(name))
689 return -ENODATA;
690
Sage Weil0bee82f2013-01-20 22:00:58 -0800691 /* let's see if a virtual xattr was requested */
692 vxattr = ceph_match_vxattr(inode, name);
693 if (vxattr && !(vxattr->exists_cb && !vxattr->exists_cb(ci))) {
694 err = vxattr->getxattr_cb(ci, value, size);
majianpenga1dc1932013-06-19 14:58:10 +0800695 return err;
Sage Weil0bee82f2013-01-20 22:00:58 -0800696 }
697
majianpenga1dc1932013-06-19 14:58:10 +0800698 spin_lock(&ci->i_ceph_lock);
699 dout("getxattr %p ver=%lld index_ver=%lld\n", inode,
700 ci->i_xattrs.version, ci->i_xattrs.index_version);
701
Sage Weil355da1e2009-10-06 11:31:08 -0700702 if (__ceph_caps_issued_mask(ci, CEPH_CAP_XATTR_SHARED, 1) &&
703 (ci->i_xattrs.index_version >= ci->i_xattrs.version)) {
704 goto get_xattr;
705 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800706 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700707 /* get xattrs from mds (if we don't already have them) */
708 err = ceph_do_getattr(inode, CEPH_STAT_CAP_XATTR);
709 if (err)
710 return err;
711 }
712
Sage Weilbe655592011-11-30 09:47:09 -0800713 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700714
Sage Weil355da1e2009-10-06 11:31:08 -0700715 err = __build_xattrs(inode);
716 if (err < 0)
717 goto out;
718
719get_xattr:
720 err = -ENODATA; /* == ENOATTR */
721 xattr = __get_xattr(ci, name);
Sage Weil0bee82f2013-01-20 22:00:58 -0800722 if (!xattr)
Sage Weil355da1e2009-10-06 11:31:08 -0700723 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700724
725 err = -ERANGE;
726 if (size && size < xattr->val_len)
727 goto out;
728
729 err = xattr->val_len;
730 if (size == 0)
731 goto out;
732
733 memcpy(value, xattr->val, xattr->val_len);
734
735out:
Sage Weilbe655592011-11-30 09:47:09 -0800736 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700737 return err;
738}
739
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800740ssize_t ceph_getxattr(struct dentry *dentry, const char *name, void *value,
741 size_t size)
742{
743 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
744 return generic_getxattr(dentry, name, value, size);
745
746 return __ceph_getxattr(dentry->d_inode, name, value, size);
747}
748
Sage Weil355da1e2009-10-06 11:31:08 -0700749ssize_t ceph_listxattr(struct dentry *dentry, char *names, size_t size)
750{
751 struct inode *inode = dentry->d_inode;
752 struct ceph_inode_info *ci = ceph_inode(inode);
Alex Elder881a5fa2012-01-23 15:49:28 -0600753 struct ceph_vxattr *vxattrs = ceph_inode_vxattrs(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700754 u32 vir_namelen = 0;
755 u32 namelen;
756 int err;
757 u32 len;
758 int i;
759
Sage Weilbe655592011-11-30 09:47:09 -0800760 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700761 dout("listxattr %p ver=%lld index_ver=%lld\n", inode,
762 ci->i_xattrs.version, ci->i_xattrs.index_version);
763
764 if (__ceph_caps_issued_mask(ci, CEPH_CAP_XATTR_SHARED, 1) &&
Henry C Changbddfa3c2010-04-29 09:32:28 -0700765 (ci->i_xattrs.index_version >= ci->i_xattrs.version)) {
Sage Weil355da1e2009-10-06 11:31:08 -0700766 goto list_xattr;
767 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800768 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700769 err = ceph_do_getattr(inode, CEPH_STAT_CAP_XATTR);
770 if (err)
771 return err;
772 }
773
Sage Weilbe655592011-11-30 09:47:09 -0800774 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700775
776 err = __build_xattrs(inode);
777 if (err < 0)
778 goto out;
779
780list_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -0600781 /*
782 * Start with virtual dir xattr names (if any) (including
783 * terminating '\0' characters for each).
784 */
785 vir_namelen = ceph_vxattrs_name_size(vxattrs);
786
Sage Weil355da1e2009-10-06 11:31:08 -0700787 /* adding 1 byte per each variable due to the null termination */
Sage Weilb65917d2013-01-20 22:02:39 -0800788 namelen = ci->i_xattrs.names_size + ci->i_xattrs.count;
Sage Weil355da1e2009-10-06 11:31:08 -0700789 err = -ERANGE;
Sage Weilb65917d2013-01-20 22:02:39 -0800790 if (size && vir_namelen + namelen > size)
Sage Weil355da1e2009-10-06 11:31:08 -0700791 goto out;
792
Sage Weilb65917d2013-01-20 22:02:39 -0800793 err = namelen + vir_namelen;
Sage Weil355da1e2009-10-06 11:31:08 -0700794 if (size == 0)
795 goto out;
796
797 names = __copy_xattr_names(ci, names);
798
799 /* virtual xattr names, too */
Sage Weilb65917d2013-01-20 22:02:39 -0800800 err = namelen;
801 if (vxattrs) {
Sage Weil355da1e2009-10-06 11:31:08 -0700802 for (i = 0; vxattrs[i].name; i++) {
Sage Weilb65917d2013-01-20 22:02:39 -0800803 if (!vxattrs[i].hidden &&
804 !(vxattrs[i].exists_cb &&
805 !vxattrs[i].exists_cb(ci))) {
806 len = sprintf(names, "%s", vxattrs[i].name);
807 names += len + 1;
808 err += len + 1;
809 }
Sage Weil355da1e2009-10-06 11:31:08 -0700810 }
Sage Weilb65917d2013-01-20 22:02:39 -0800811 }
Sage Weil355da1e2009-10-06 11:31:08 -0700812
813out:
Sage Weilbe655592011-11-30 09:47:09 -0800814 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700815 return err;
816}
817
818static int ceph_sync_setxattr(struct dentry *dentry, const char *name,
819 const char *value, size_t size, int flags)
820{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700821 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
Sage Weil355da1e2009-10-06 11:31:08 -0700822 struct inode *inode = dentry->d_inode;
823 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil5f21c962011-07-26 11:30:29 -0700824 struct inode *parent_inode;
Sage Weil355da1e2009-10-06 11:31:08 -0700825 struct ceph_mds_request *req;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700826 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil355da1e2009-10-06 11:31:08 -0700827 int err;
828 int i, nr_pages;
829 struct page **pages = NULL;
830 void *kaddr;
831
832 /* copy value into some pages */
833 nr_pages = calc_pages_for(0, size);
834 if (nr_pages) {
835 pages = kmalloc(sizeof(pages[0])*nr_pages, GFP_NOFS);
836 if (!pages)
837 return -ENOMEM;
838 err = -ENOMEM;
839 for (i = 0; i < nr_pages; i++) {
Yehuda Sadeh31459fe2010-03-17 13:54:02 -0700840 pages[i] = __page_cache_alloc(GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700841 if (!pages[i]) {
842 nr_pages = i;
843 goto out;
844 }
845 kaddr = kmap(pages[i]);
846 memcpy(kaddr, value + i*PAGE_CACHE_SIZE,
847 min(PAGE_CACHE_SIZE, size-i*PAGE_CACHE_SIZE));
848 }
849 }
850
851 dout("setxattr value=%.*s\n", (int)size, value);
852
853 /* do request */
854 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETXATTR,
855 USE_AUTH_MDS);
Julia Lawall60d87732009-11-21 12:53:08 +0100856 if (IS_ERR(req)) {
857 err = PTR_ERR(req);
858 goto out;
859 }
Sage Weil70b666c2011-05-27 09:24:26 -0700860 req->r_inode = inode;
861 ihold(inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700862 req->r_inode_drop = CEPH_CAP_XATTR_SHARED;
863 req->r_num_caps = 1;
864 req->r_args.setxattr.flags = cpu_to_le32(flags);
865 req->r_path2 = kstrdup(name, GFP_NOFS);
866
867 req->r_pages = pages;
868 req->r_num_pages = nr_pages;
869 req->r_data_len = size;
870
871 dout("xattr.ver (before): %lld\n", ci->i_xattrs.version);
Sage Weil5f21c962011-07-26 11:30:29 -0700872 parent_inode = ceph_get_dentry_parent_inode(dentry);
Sage Weil355da1e2009-10-06 11:31:08 -0700873 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
Sage Weil5f21c962011-07-26 11:30:29 -0700874 iput(parent_inode);
Sage Weil355da1e2009-10-06 11:31:08 -0700875 ceph_mdsc_put_request(req);
876 dout("xattr.ver (after): %lld\n", ci->i_xattrs.version);
877
878out:
879 if (pages) {
880 for (i = 0; i < nr_pages; i++)
881 __free_page(pages[i]);
882 kfree(pages);
883 }
884 return err;
885}
886
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800887int __ceph_setxattr(struct dentry *dentry, const char *name,
888 const void *value, size_t size, int flags)
Sage Weil355da1e2009-10-06 11:31:08 -0700889{
890 struct inode *inode = dentry->d_inode;
Alex Elder881a5fa2012-01-23 15:49:28 -0600891 struct ceph_vxattr *vxattr;
Sage Weil355da1e2009-10-06 11:31:08 -0700892 struct ceph_inode_info *ci = ceph_inode(inode);
Alex Elder18fa8b32012-01-23 15:49:28 -0600893 int issued;
Sage Weil355da1e2009-10-06 11:31:08 -0700894 int err;
Alex Elder18fa8b32012-01-23 15:49:28 -0600895 int dirty;
Sage Weil355da1e2009-10-06 11:31:08 -0700896 int name_len = strlen(name);
897 int val_len = size;
898 char *newname = NULL;
899 char *newval = NULL;
900 struct ceph_inode_xattr *xattr = NULL;
Sage Weil355da1e2009-10-06 11:31:08 -0700901 int required_blob_size;
902
Sage Weil355da1e2009-10-06 11:31:08 -0700903 if (!ceph_is_valid_xattr(name))
904 return -EOPNOTSUPP;
905
Alex Elder06476a62012-01-23 15:49:27 -0600906 vxattr = ceph_match_vxattr(inode, name);
907 if (vxattr && vxattr->readonly)
908 return -EOPNOTSUPP;
Sage Weil355da1e2009-10-06 11:31:08 -0700909
Sage Weil3adf6542013-01-31 11:53:41 -0800910 /* pass any unhandled ceph.* xattrs through to the MDS */
911 if (!strncmp(name, XATTR_CEPH_PREFIX, XATTR_CEPH_PREFIX_LEN))
912 goto do_sync_unlocked;
913
Sage Weil355da1e2009-10-06 11:31:08 -0700914 /* preallocate memory for xattr name, value, index node */
915 err = -ENOMEM;
Julia Lawall61413c22010-10-17 21:55:21 +0200916 newname = kmemdup(name, name_len + 1, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700917 if (!newname)
918 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700919
920 if (val_len) {
Alex Elderb829c192012-01-23 15:49:27 -0600921 newval = kmemdup(value, val_len, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700922 if (!newval)
923 goto out;
Sage Weil355da1e2009-10-06 11:31:08 -0700924 }
925
926 xattr = kmalloc(sizeof(struct ceph_inode_xattr), GFP_NOFS);
927 if (!xattr)
928 goto out;
929
Sage Weilbe655592011-11-30 09:47:09 -0800930 spin_lock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700931retry:
932 issued = __ceph_caps_issued(ci, NULL);
Alex Elder18fa8b32012-01-23 15:49:28 -0600933 dout("setxattr %p issued %s\n", inode, ceph_cap_string(issued));
Sage Weil355da1e2009-10-06 11:31:08 -0700934 if (!(issued & CEPH_CAP_XATTR_EXCL))
935 goto do_sync;
936 __build_xattrs(inode);
937
938 required_blob_size = __get_required_blob_size(ci, name_len, val_len);
939
940 if (!ci->i_xattrs.prealloc_blob ||
941 required_blob_size > ci->i_xattrs.prealloc_blob->alloc_len) {
Alex Elder18fa8b32012-01-23 15:49:28 -0600942 struct ceph_buffer *blob;
Sage Weil355da1e2009-10-06 11:31:08 -0700943
Sage Weilbe655592011-11-30 09:47:09 -0800944 spin_unlock(&ci->i_ceph_lock);
Sage Weil355da1e2009-10-06 11:31:08 -0700945 dout(" preaallocating new blob size=%d\n", required_blob_size);
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800946 blob = ceph_buffer_new(required_blob_size, GFP_NOFS);
Sage Weil355da1e2009-10-06 11:31:08 -0700947 if (!blob)
948 goto out;
Sage Weilbe655592011-11-30 09:47:09 -0800949 spin_lock(&ci->i_ceph_lock);
Sage Weilb6c1d5b2009-12-07 12:17:17 -0800950 if (ci->i_xattrs.prealloc_blob)
951 ceph_buffer_put(ci->i_xattrs.prealloc_blob);
Sage Weil355da1e2009-10-06 11:31:08 -0700952 ci->i_xattrs.prealloc_blob = blob;
953 goto retry;
954 }
955
Sage Weil355da1e2009-10-06 11:31:08 -0700956 err = __set_xattr(ci, newname, name_len, newval,
957 val_len, 1, 1, 1, &xattr);
Alex Elder18fa8b32012-01-23 15:49:28 -0600958
Sage Weilfca65b42011-05-04 11:33:47 -0700959 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_XATTR_EXCL);
Sage Weil355da1e2009-10-06 11:31:08 -0700960 ci->i_xattrs.dirty = true;
961 inode->i_ctime = CURRENT_TIME;
Alex Elder18fa8b32012-01-23 15:49:28 -0600962
Sage Weilbe655592011-11-30 09:47:09 -0800963 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -0700964 if (dirty)
965 __mark_inode_dirty(inode, dirty);
Sage Weil355da1e2009-10-06 11:31:08 -0700966 return err;
967
968do_sync:
Sage Weilbe655592011-11-30 09:47:09 -0800969 spin_unlock(&ci->i_ceph_lock);
Sage Weil3adf6542013-01-31 11:53:41 -0800970do_sync_unlocked:
Sage Weil355da1e2009-10-06 11:31:08 -0700971 err = ceph_sync_setxattr(dentry, name, value, size, flags);
972out:
973 kfree(newname);
974 kfree(newval);
975 kfree(xattr);
976 return err;
977}
978
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800979int ceph_setxattr(struct dentry *dentry, const char *name,
980 const void *value, size_t size, int flags)
981{
982 if (ceph_snap(dentry->d_inode) != CEPH_NOSNAP)
983 return -EROFS;
984
985 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
986 return generic_setxattr(dentry, name, value, size, flags);
987
988 return __ceph_setxattr(dentry, name, value, size, flags);
989}
990
Sage Weil355da1e2009-10-06 11:31:08 -0700991static int ceph_send_removexattr(struct dentry *dentry, const char *name)
992{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700993 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
994 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil355da1e2009-10-06 11:31:08 -0700995 struct inode *inode = dentry->d_inode;
Sage Weil5f21c962011-07-26 11:30:29 -0700996 struct inode *parent_inode;
Sage Weil355da1e2009-10-06 11:31:08 -0700997 struct ceph_mds_request *req;
998 int err;
999
1000 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_RMXATTR,
1001 USE_AUTH_MDS);
1002 if (IS_ERR(req))
1003 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -07001004 req->r_inode = inode;
1005 ihold(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001006 req->r_inode_drop = CEPH_CAP_XATTR_SHARED;
1007 req->r_num_caps = 1;
1008 req->r_path2 = kstrdup(name, GFP_NOFS);
1009
Sage Weil5f21c962011-07-26 11:30:29 -07001010 parent_inode = ceph_get_dentry_parent_inode(dentry);
Sage Weil355da1e2009-10-06 11:31:08 -07001011 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
Sage Weil5f21c962011-07-26 11:30:29 -07001012 iput(parent_inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001013 ceph_mdsc_put_request(req);
1014 return err;
1015}
1016
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001017int __ceph_removexattr(struct dentry *dentry, const char *name)
Sage Weil355da1e2009-10-06 11:31:08 -07001018{
1019 struct inode *inode = dentry->d_inode;
Alex Elder881a5fa2012-01-23 15:49:28 -06001020 struct ceph_vxattr *vxattr;
Sage Weil355da1e2009-10-06 11:31:08 -07001021 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001022 int issued;
1023 int err;
Alex Elder83eb26a2012-01-11 17:41:01 -08001024 int required_blob_size;
Sage Weilfca65b42011-05-04 11:33:47 -07001025 int dirty;
Sage Weil355da1e2009-10-06 11:31:08 -07001026
Sage Weil355da1e2009-10-06 11:31:08 -07001027 if (!ceph_is_valid_xattr(name))
1028 return -EOPNOTSUPP;
1029
Alex Elder06476a62012-01-23 15:49:27 -06001030 vxattr = ceph_match_vxattr(inode, name);
1031 if (vxattr && vxattr->readonly)
1032 return -EOPNOTSUPP;
Sage Weil355da1e2009-10-06 11:31:08 -07001033
Sage Weild421acb2013-01-20 21:55:30 -08001034 /* pass any unhandled ceph.* xattrs through to the MDS */
1035 if (!strncmp(name, XATTR_CEPH_PREFIX, XATTR_CEPH_PREFIX_LEN))
1036 goto do_sync_unlocked;
1037
Alex Elder83eb26a2012-01-11 17:41:01 -08001038 err = -ENOMEM;
Sage Weilbe655592011-11-30 09:47:09 -08001039 spin_lock(&ci->i_ceph_lock);
Alex Elder83eb26a2012-01-11 17:41:01 -08001040retry:
Sage Weil355da1e2009-10-06 11:31:08 -07001041 issued = __ceph_caps_issued(ci, NULL);
1042 dout("removexattr %p issued %s\n", inode, ceph_cap_string(issued));
1043
1044 if (!(issued & CEPH_CAP_XATTR_EXCL))
1045 goto do_sync;
Alex Elder18fa8b32012-01-23 15:49:28 -06001046 __build_xattrs(inode);
Sage Weil355da1e2009-10-06 11:31:08 -07001047
Alex Elder83eb26a2012-01-11 17:41:01 -08001048 required_blob_size = __get_required_blob_size(ci, 0, 0);
1049
1050 if (!ci->i_xattrs.prealloc_blob ||
1051 required_blob_size > ci->i_xattrs.prealloc_blob->alloc_len) {
1052 struct ceph_buffer *blob;
1053
1054 spin_unlock(&ci->i_ceph_lock);
1055 dout(" preaallocating new blob size=%d\n", required_blob_size);
1056 blob = ceph_buffer_new(required_blob_size, GFP_NOFS);
1057 if (!blob)
1058 goto out;
1059 spin_lock(&ci->i_ceph_lock);
1060 if (ci->i_xattrs.prealloc_blob)
1061 ceph_buffer_put(ci->i_xattrs.prealloc_blob);
1062 ci->i_xattrs.prealloc_blob = blob;
1063 goto retry;
1064 }
1065
Sage Weil355da1e2009-10-06 11:31:08 -07001066 err = __remove_xattr_by_name(ceph_inode(inode), name);
Alex Elder18fa8b32012-01-23 15:49:28 -06001067
Sage Weilfca65b42011-05-04 11:33:47 -07001068 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_XATTR_EXCL);
Sage Weil355da1e2009-10-06 11:31:08 -07001069 ci->i_xattrs.dirty = true;
1070 inode->i_ctime = CURRENT_TIME;
Sage Weilbe655592011-11-30 09:47:09 -08001071 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001072 if (dirty)
1073 __mark_inode_dirty(inode, dirty);
Sage Weil355da1e2009-10-06 11:31:08 -07001074 return err;
1075do_sync:
Sage Weilbe655592011-11-30 09:47:09 -08001076 spin_unlock(&ci->i_ceph_lock);
Sage Weild421acb2013-01-20 21:55:30 -08001077do_sync_unlocked:
Sage Weil355da1e2009-10-06 11:31:08 -07001078 err = ceph_send_removexattr(dentry, name);
Alex Elder83eb26a2012-01-11 17:41:01 -08001079out:
Sage Weil355da1e2009-10-06 11:31:08 -07001080 return err;
1081}
1082
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001083int ceph_removexattr(struct dentry *dentry, const char *name)
1084{
1085 if (ceph_snap(dentry->d_inode) != CEPH_NOSNAP)
1086 return -EROFS;
1087
1088 if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
1089 return generic_removexattr(dentry, name);
1090
1091 return __ceph_removexattr(dentry, name);
1092}