blob: 9a5b757fbd2f623ae0b932d58e83d02eddd86992 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Mike Marshall1182fca2015-07-17 10:38:15 -04002/*
3 * (C) 2001 Clemson University and The University of Chicago
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -05004 * Copyright 2018 Omnibond Systems, L.L.C.
Mike Marshall1182fca2015-07-17 10:38:15 -04005 *
6 * See COPYING in top-level directory.
7 */
8
9/*
10 * Linux VFS extended attribute operations.
11 */
12
13#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -050014#include "orangefs-kernel.h"
15#include "orangefs-bufmap.h"
Mike Marshall1182fca2015-07-17 10:38:15 -040016#include <linux/posix_acl_xattr.h>
17#include <linux/xattr.h>
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -050018#include <linux/hashtable.h>
Mike Marshall1182fca2015-07-17 10:38:15 -040019
Yi Liu8bb8aef2015-11-24 15:12:14 -050020#define SYSTEM_ORANGEFS_KEY "system.pvfs2."
21#define SYSTEM_ORANGEFS_KEY_LEN 13
Mike Marshall1182fca2015-07-17 10:38:15 -040022
23/*
24 * this function returns
25 * 0 if the key corresponding to name is not meant to be printed as part
26 * of a listxattr.
27 * 1 if the key corresponding to name is meant to be returned as part of
28 * a listxattr.
Yi Liu8bb8aef2015-11-24 15:12:14 -050029 * The ones that start SYSTEM_ORANGEFS_KEY are the ones to avoid printing.
Mike Marshall1182fca2015-07-17 10:38:15 -040030 */
31static int is_reserved_key(const char *key, size_t size)
32{
33
Yi Liu8bb8aef2015-11-24 15:12:14 -050034 if (size < SYSTEM_ORANGEFS_KEY_LEN)
Mike Marshall1182fca2015-07-17 10:38:15 -040035 return 1;
36
Yi Liu8bb8aef2015-11-24 15:12:14 -050037 return strncmp(key, SYSTEM_ORANGEFS_KEY, SYSTEM_ORANGEFS_KEY_LEN) ? 1 : 0;
Mike Marshall1182fca2015-07-17 10:38:15 -040038}
39
40static inline int convert_to_internal_xattr_flags(int setxattr_flags)
41{
42 int internal_flag = 0;
43
44 if (setxattr_flags & XATTR_REPLACE) {
45 /* Attribute must exist! */
Yi Liu8bb8aef2015-11-24 15:12:14 -050046 internal_flag = ORANGEFS_XATTR_REPLACE;
Mike Marshall1182fca2015-07-17 10:38:15 -040047 } else if (setxattr_flags & XATTR_CREATE) {
48 /* Attribute must not exist */
Yi Liu8bb8aef2015-11-24 15:12:14 -050049 internal_flag = ORANGEFS_XATTR_CREATE;
Mike Marshall1182fca2015-07-17 10:38:15 -040050 }
51 return internal_flag;
52}
53
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -050054static unsigned int xattr_key(const char *key)
55{
56 unsigned int i = 0;
57 while (key)
58 i += *key++;
59 return i % 16;
60}
61
62static struct orangefs_cached_xattr *find_cached_xattr(struct inode *inode,
63 const char *key)
64{
65 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
66 struct orangefs_cached_xattr *cx;
67 struct hlist_head *h;
68 struct hlist_node *tmp;
69 h = &orangefs_inode->xattr_cache[xattr_key(key)];
70 if (hlist_empty(h))
71 return NULL;
72 hlist_for_each_entry_safe(cx, tmp, h, node) {
73/* if (!time_before(jiffies, cx->timeout)) {
74 hlist_del(&cx->node);
75 kfree(cx);
76 continue;
77 }*/
78 if (!strcmp(cx->key, key))
79 return cx;
80 }
81 return NULL;
82}
Mike Marshall1182fca2015-07-17 10:38:15 -040083
84/*
85 * Tries to get a specified key's attributes of a given
86 * file into a user-specified buffer. Note that the getxattr
87 * interface allows for the users to probe the size of an
88 * extended attribute by passing in a value of 0 to size.
89 * Thus our return value is always the size of the attribute
90 * unless the key does not exist for the file and/or if
91 * there were errors in fetching the attribute value.
92 */
Andreas Gruenbacherd373a712016-06-04 11:02:33 +020093ssize_t orangefs_inode_getxattr(struct inode *inode, const char *name,
94 void *buffer, size_t size)
Mike Marshall1182fca2015-07-17 10:38:15 -040095{
Yi Liu8bb8aef2015-11-24 15:12:14 -050096 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
97 struct orangefs_kernel_op_s *new_op = NULL;
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -050098 struct orangefs_cached_xattr *cx;
Mike Marshall1182fca2015-07-17 10:38:15 -040099 ssize_t ret = -ENOMEM;
100 ssize_t length = 0;
101 int fsuid;
102 int fsgid;
103
104 gossip_debug(GOSSIP_XATTR_DEBUG,
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200105 "%s: name %s, buffer_size %zd\n",
106 __func__, name, size);
Mike Marshall1182fca2015-07-17 10:38:15 -0400107
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200108 if (S_ISLNK(inode->i_mode))
109 return -EOPNOTSUPP;
110
Dan Carpenter5f13e582017-05-22 15:08:31 +0300111 if (strlen(name) >= ORANGEFS_MAX_XATTR_NAMELEN)
Mike Marshall1182fca2015-07-17 10:38:15 -0400112 return -EINVAL;
Mike Marshall1182fca2015-07-17 10:38:15 -0400113
Jann Horn78fee0b2016-06-25 01:51:52 +0200114 fsuid = from_kuid(&init_user_ns, current_fsuid());
115 fsgid = from_kgid(&init_user_ns, current_fsgid());
Mike Marshall1182fca2015-07-17 10:38:15 -0400116
117 gossip_debug(GOSSIP_XATTR_DEBUG,
118 "getxattr on inode %pU, name %s "
119 "(uid %o, gid %o)\n",
120 get_khandle_from_ino(inode),
121 name,
122 fsuid,
123 fsgid);
124
Yi Liu8bb8aef2015-11-24 15:12:14 -0500125 down_read(&orangefs_inode->xattr_sem);
Mike Marshall1182fca2015-07-17 10:38:15 -0400126
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500127 cx = find_cached_xattr(inode, name);
128 if (cx && time_before(jiffies, cx->timeout)) {
129 if (cx->length == -1) {
130 ret = -ENODATA;
131 goto out_unlock;
132 } else {
133 if (size == 0) {
134 ret = cx->length;
135 goto out_unlock;
136 }
137 if (cx->length > size) {
138 ret = -ERANGE;
139 goto out_unlock;
140 }
141 memcpy(buffer, cx->val, cx->length);
142 memset(buffer + cx->length, 0, size - cx->length);
143 ret = cx->length;
144 goto out_unlock;
145 }
146 }
147
Yi Liu8bb8aef2015-11-24 15:12:14 -0500148 new_op = op_alloc(ORANGEFS_VFS_OP_GETXATTR);
Mike Marshall1182fca2015-07-17 10:38:15 -0400149 if (!new_op)
150 goto out_unlock;
151
Yi Liu8bb8aef2015-11-24 15:12:14 -0500152 new_op->upcall.req.getxattr.refn = orangefs_inode->refn;
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200153 strcpy(new_op->upcall.req.getxattr.key, name);
Mike Marshall1182fca2015-07-17 10:38:15 -0400154
155 /*
156 * NOTE: Although keys are meant to be NULL terminated textual
157 * strings, I am going to explicitly pass the length just in case
158 * we change this later on...
159 */
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200160 new_op->upcall.req.getxattr.key_sz = strlen(name) + 1;
Mike Marshall1182fca2015-07-17 10:38:15 -0400161
Yi Liu8bb8aef2015-11-24 15:12:14 -0500162 ret = service_operation(new_op, "orangefs_inode_getxattr",
Mike Marshall1182fca2015-07-17 10:38:15 -0400163 get_interruptible_flag(inode));
164 if (ret != 0) {
165 if (ret == -ENOENT) {
166 ret = -ENODATA;
167 gossip_debug(GOSSIP_XATTR_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500168 "orangefs_inode_getxattr: inode %pU key %s"
Mike Marshall1182fca2015-07-17 10:38:15 -0400169 " does not exist!\n",
170 get_khandle_from_ino(inode),
171 (char *)new_op->upcall.req.getxattr.key);
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500172 cx = kmalloc(sizeof *cx, GFP_KERNEL);
173 if (cx) {
174 strcpy(cx->key, name);
175 cx->length = -1;
176 cx->timeout = jiffies +
177 orangefs_getattr_timeout_msecs*HZ/1000;
178 hash_add(orangefs_inode->xattr_cache, &cx->node,
179 xattr_key(cx->key));
180 }
Mike Marshall1182fca2015-07-17 10:38:15 -0400181 }
182 goto out_release_op;
183 }
184
185 /*
186 * Length returned includes null terminator.
187 */
188 length = new_op->downcall.resp.getxattr.val_sz;
189
190 /*
191 * Just return the length of the queried attribute.
192 */
193 if (size == 0) {
194 ret = length;
195 goto out_release_op;
196 }
197
198 /*
199 * Check to see if key length is > provided buffer size.
200 */
201 if (length > size) {
202 ret = -ERANGE;
203 goto out_release_op;
204 }
205
Mike Marshall1182fca2015-07-17 10:38:15 -0400206 memcpy(buffer, new_op->downcall.resp.getxattr.val, length);
Mike Marshalla9bb3ba2016-04-06 11:19:37 -0400207 memset(buffer + length, 0, size - length);
Mike Marshall1182fca2015-07-17 10:38:15 -0400208 gossip_debug(GOSSIP_XATTR_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500209 "orangefs_inode_getxattr: inode %pU "
Mike Marshall1182fca2015-07-17 10:38:15 -0400210 "key %s key_sz %d, val_len %d\n",
211 get_khandle_from_ino(inode),
212 (char *)new_op->
213 upcall.req.getxattr.key,
214 (int)new_op->
215 upcall.req.getxattr.key_sz,
216 (int)ret);
217
218 ret = length;
219
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500220 if (cx) {
221 strcpy(cx->key, name);
222 memcpy(cx->val, buffer, length);
223 cx->length = length;
224 cx->timeout = jiffies + HZ;
225 } else {
226 cx = kmalloc(sizeof *cx, GFP_KERNEL);
227 if (cx) {
228 strcpy(cx->key, name);
229 memcpy(cx->val, buffer, length);
230 cx->length = length;
231 cx->timeout = jiffies + HZ;
232 hash_add(orangefs_inode->xattr_cache, &cx->node,
233 xattr_key(cx->key));
234 }
235 }
236
Mike Marshall1182fca2015-07-17 10:38:15 -0400237out_release_op:
238 op_release(new_op);
239out_unlock:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500240 up_read(&orangefs_inode->xattr_sem);
Mike Marshall1182fca2015-07-17 10:38:15 -0400241 return ret;
242}
243
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200244static int orangefs_inode_removexattr(struct inode *inode, const char *name,
245 int flags)
Mike Marshall1182fca2015-07-17 10:38:15 -0400246{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500247 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
248 struct orangefs_kernel_op_s *new_op = NULL;
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500249 struct orangefs_cached_xattr *cx;
250 struct hlist_head *h;
251 struct hlist_node *tmp;
Mike Marshall1182fca2015-07-17 10:38:15 -0400252 int ret = -ENOMEM;
253
Dan Carpenter5f13e582017-05-22 15:08:31 +0300254 if (strlen(name) >= ORANGEFS_MAX_XATTR_NAMELEN)
Martin Brandenburge675c5e2017-04-25 15:37:57 -0400255 return -EINVAL;
256
Yi Liu8bb8aef2015-11-24 15:12:14 -0500257 down_write(&orangefs_inode->xattr_sem);
258 new_op = op_alloc(ORANGEFS_VFS_OP_REMOVEXATTR);
Mike Marshall1182fca2015-07-17 10:38:15 -0400259 if (!new_op)
260 goto out_unlock;
261
Yi Liu8bb8aef2015-11-24 15:12:14 -0500262 new_op->upcall.req.removexattr.refn = orangefs_inode->refn;
Mike Marshall1182fca2015-07-17 10:38:15 -0400263 /*
264 * NOTE: Although keys are meant to be NULL terminated
265 * textual strings, I am going to explicitly pass the
266 * length just in case we change this later on...
267 */
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200268 strcpy(new_op->upcall.req.removexattr.key, name);
269 new_op->upcall.req.removexattr.key_sz = strlen(name) + 1;
Mike Marshall1182fca2015-07-17 10:38:15 -0400270
271 gossip_debug(GOSSIP_XATTR_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500272 "orangefs_inode_removexattr: key %s, key_sz %d\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400273 (char *)new_op->upcall.req.removexattr.key,
274 (int)new_op->upcall.req.removexattr.key_sz);
275
276 ret = service_operation(new_op,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500277 "orangefs_inode_removexattr",
Mike Marshall1182fca2015-07-17 10:38:15 -0400278 get_interruptible_flag(inode));
279 if (ret == -ENOENT) {
280 /*
281 * Request to replace a non-existent attribute is an error.
282 */
283 if (flags & XATTR_REPLACE)
284 ret = -ENODATA;
285 else
286 ret = 0;
287 }
288
289 gossip_debug(GOSSIP_XATTR_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500290 "orangefs_inode_removexattr: returning %d\n", ret);
Mike Marshall1182fca2015-07-17 10:38:15 -0400291
292 op_release(new_op);
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500293
294 h = &orangefs_inode->xattr_cache[xattr_key(name)];
295 hlist_for_each_entry_safe(cx, tmp, h, node) {
296 if (!strcmp(cx->key, name)) {
297 hlist_del(&cx->node);
298 kfree(cx);
299 break;
300 }
301 }
302
Mike Marshall1182fca2015-07-17 10:38:15 -0400303out_unlock:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500304 up_write(&orangefs_inode->xattr_sem);
Mike Marshall1182fca2015-07-17 10:38:15 -0400305 return ret;
306}
307
308/*
309 * Tries to set an attribute for a given key on a file.
310 *
311 * Returns a -ve number on error and 0 on success. Key is text, but value
312 * can be binary!
313 */
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200314int orangefs_inode_setxattr(struct inode *inode, const char *name,
315 const void *value, size_t size, int flags)
Mike Marshall1182fca2015-07-17 10:38:15 -0400316{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500317 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
318 struct orangefs_kernel_op_s *new_op;
Mike Marshall1182fca2015-07-17 10:38:15 -0400319 int internal_flag = 0;
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500320 struct orangefs_cached_xattr *cx;
321 struct hlist_head *h;
322 struct hlist_node *tmp;
Mike Marshall1182fca2015-07-17 10:38:15 -0400323 int ret = -ENOMEM;
324
325 gossip_debug(GOSSIP_XATTR_DEBUG,
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200326 "%s: name %s, buffer_size %zd\n",
327 __func__, name, size);
Mike Marshall1182fca2015-07-17 10:38:15 -0400328
Martin Brandenburge675c5e2017-04-25 15:37:57 -0400329 if (size > ORANGEFS_MAX_XATTR_VALUELEN)
Mike Marshall1182fca2015-07-17 10:38:15 -0400330 return -EINVAL;
Dan Carpenter5f13e582017-05-22 15:08:31 +0300331 if (strlen(name) >= ORANGEFS_MAX_XATTR_NAMELEN)
Martin Brandenburge675c5e2017-04-25 15:37:57 -0400332 return -EINVAL;
Mike Marshall1182fca2015-07-17 10:38:15 -0400333
Mike Marshall1182fca2015-07-17 10:38:15 -0400334 internal_flag = convert_to_internal_xattr_flags(flags);
335
Mike Marshall1182fca2015-07-17 10:38:15 -0400336 /* This is equivalent to a removexattr */
Markus Elfring0b082732017-08-17 21:35:16 +0200337 if (size == 0 && !value) {
Mike Marshall1182fca2015-07-17 10:38:15 -0400338 gossip_debug(GOSSIP_XATTR_DEBUG,
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200339 "removing xattr (%s)\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400340 name);
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200341 return orangefs_inode_removexattr(inode, name, flags);
Mike Marshall1182fca2015-07-17 10:38:15 -0400342 }
343
344 gossip_debug(GOSSIP_XATTR_DEBUG,
345 "setxattr on inode %pU, name %s\n",
346 get_khandle_from_ino(inode),
347 name);
348
Yi Liu8bb8aef2015-11-24 15:12:14 -0500349 down_write(&orangefs_inode->xattr_sem);
350 new_op = op_alloc(ORANGEFS_VFS_OP_SETXATTR);
Mike Marshall1182fca2015-07-17 10:38:15 -0400351 if (!new_op)
352 goto out_unlock;
353
354
Yi Liu8bb8aef2015-11-24 15:12:14 -0500355 new_op->upcall.req.setxattr.refn = orangefs_inode->refn;
Mike Marshall1182fca2015-07-17 10:38:15 -0400356 new_op->upcall.req.setxattr.flags = internal_flag;
357 /*
358 * NOTE: Although keys are meant to be NULL terminated textual
359 * strings, I am going to explicitly pass the length just in
360 * case we change this later on...
361 */
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200362 strcpy(new_op->upcall.req.setxattr.keyval.key, name);
363 new_op->upcall.req.setxattr.keyval.key_sz = strlen(name) + 1;
Mike Marshall1182fca2015-07-17 10:38:15 -0400364 memcpy(new_op->upcall.req.setxattr.keyval.val, value, size);
365 new_op->upcall.req.setxattr.keyval.val_sz = size;
366
367 gossip_debug(GOSSIP_XATTR_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500368 "orangefs_inode_setxattr: key %s, key_sz %d "
Mike Marshall1182fca2015-07-17 10:38:15 -0400369 " value size %zd\n",
370 (char *)new_op->upcall.req.setxattr.keyval.key,
371 (int)new_op->upcall.req.setxattr.keyval.key_sz,
372 size);
373
374 ret = service_operation(new_op,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500375 "orangefs_inode_setxattr",
Mike Marshall1182fca2015-07-17 10:38:15 -0400376 get_interruptible_flag(inode));
377
378 gossip_debug(GOSSIP_XATTR_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500379 "orangefs_inode_setxattr: returning %d\n",
Mike Marshall1182fca2015-07-17 10:38:15 -0400380 ret);
381
382 /* when request is serviced properly, free req op struct */
383 op_release(new_op);
Martin Brandenburgfc2e2e92017-12-12 13:46:30 -0500384
385 h = &orangefs_inode->xattr_cache[xattr_key(name)];
386 hlist_for_each_entry_safe(cx, tmp, h, node) {
387 if (!strcmp(cx->key, name)) {
388 hlist_del(&cx->node);
389 kfree(cx);
390 break;
391 }
392 }
393
Mike Marshall1182fca2015-07-17 10:38:15 -0400394out_unlock:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500395 up_write(&orangefs_inode->xattr_sem);
Mike Marshall1182fca2015-07-17 10:38:15 -0400396 return ret;
397}
398
399/*
400 * Tries to get a specified object's keys into a user-specified buffer of a
401 * given size. Note that like the previous instances of xattr routines, this
402 * also allows you to pass in a NULL pointer and 0 size to probe the size for
403 * subsequent memory allocations. Thus our return value is always the size of
404 * all the keys unless there were errors in fetching the keys!
405 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500406ssize_t orangefs_listxattr(struct dentry *dentry, char *buffer, size_t size)
Mike Marshall1182fca2015-07-17 10:38:15 -0400407{
408 struct inode *inode = dentry->d_inode;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500409 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
410 struct orangefs_kernel_op_s *new_op;
411 __u64 token = ORANGEFS_ITERATE_START;
Mike Marshall1182fca2015-07-17 10:38:15 -0400412 ssize_t ret = -ENOMEM;
413 ssize_t total = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400414 int count_keys = 0;
415 int key_size;
416 int i = 0;
Mike Marshall62441fa2015-12-17 16:11:40 -0500417 int returned_count = 0;
Mike Marshall1182fca2015-07-17 10:38:15 -0400418
Markus Elfring0b082732017-08-17 21:35:16 +0200419 if (size > 0 && !buffer) {
Mike Marshall1182fca2015-07-17 10:38:15 -0400420 gossip_err("%s: bogus NULL pointers\n", __func__);
421 return -EINVAL;
422 }
Mike Marshall1182fca2015-07-17 10:38:15 -0400423
Yi Liu8bb8aef2015-11-24 15:12:14 -0500424 down_read(&orangefs_inode->xattr_sem);
425 new_op = op_alloc(ORANGEFS_VFS_OP_LISTXATTR);
Mike Marshall1182fca2015-07-17 10:38:15 -0400426 if (!new_op)
427 goto out_unlock;
428
429 if (buffer && size > 0)
430 memset(buffer, 0, size);
431
432try_again:
433 key_size = 0;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500434 new_op->upcall.req.listxattr.refn = orangefs_inode->refn;
Mike Marshall1182fca2015-07-17 10:38:15 -0400435 new_op->upcall.req.listxattr.token = token;
436 new_op->upcall.req.listxattr.requested_count =
Yi Liu8bb8aef2015-11-24 15:12:14 -0500437 (size == 0) ? 0 : ORANGEFS_MAX_XATTR_LISTLEN;
Mike Marshall1182fca2015-07-17 10:38:15 -0400438 ret = service_operation(new_op, __func__,
439 get_interruptible_flag(inode));
440 if (ret != 0)
441 goto done;
442
443 if (size == 0) {
444 /*
445 * This is a bit of a big upper limit, but I did not want to
446 * spend too much time getting this correct, since users end
447 * up allocating memory rather than us...
448 */
449 total = new_op->downcall.resp.listxattr.returned_count *
Yi Liu8bb8aef2015-11-24 15:12:14 -0500450 ORANGEFS_MAX_XATTR_NAMELEN;
Mike Marshall1182fca2015-07-17 10:38:15 -0400451 goto done;
452 }
453
Mike Marshall62441fa2015-12-17 16:11:40 -0500454 returned_count = new_op->downcall.resp.listxattr.returned_count;
455 if (returned_count < 0 ||
Martin Brandenburga956af32017-04-25 15:37:56 -0400456 returned_count > ORANGEFS_MAX_XATTR_LISTLEN) {
Mike Marshall62441fa2015-12-17 16:11:40 -0500457 gossip_err("%s: impossible value for returned_count:%d:\n",
458 __func__,
459 returned_count);
Martin Brandenburg02a5cc52016-03-16 14:01:43 -0400460 ret = -EIO;
Mike Marshall62441fa2015-12-17 16:11:40 -0500461 goto done;
462 }
463
Mike Marshall1182fca2015-07-17 10:38:15 -0400464 /*
465 * Check to see how much can be fit in the buffer. Fit only whole keys.
466 */
Mike Marshall62441fa2015-12-17 16:11:40 -0500467 for (i = 0; i < returned_count; i++) {
Martin Brandenburg02a5cc52016-03-16 14:01:43 -0400468 if (new_op->downcall.resp.listxattr.lengths[i] < 0 ||
469 new_op->downcall.resp.listxattr.lengths[i] >
470 ORANGEFS_MAX_XATTR_NAMELEN) {
471 gossip_err("%s: impossible value for lengths[%d]\n",
472 __func__,
473 new_op->downcall.resp.listxattr.lengths[i]);
474 ret = -EIO;
475 goto done;
476 }
Mike Marshall1182fca2015-07-17 10:38:15 -0400477 if (total + new_op->downcall.resp.listxattr.lengths[i] > size)
478 goto done;
479
480 /*
481 * Since many dumb programs try to setxattr() on our reserved
482 * xattrs this is a feeble attempt at defeating those by not
483 * listing them in the output of listxattr.. sigh
484 */
485 if (is_reserved_key(new_op->downcall.resp.listxattr.key +
486 key_size,
487 new_op->downcall.resp.
488 listxattr.lengths[i])) {
489 gossip_debug(GOSSIP_XATTR_DEBUG, "Copying key %d -> %s\n",
490 i, new_op->downcall.resp.listxattr.key +
491 key_size);
492 memcpy(buffer + total,
493 new_op->downcall.resp.listxattr.key + key_size,
494 new_op->downcall.resp.listxattr.lengths[i]);
495 total += new_op->downcall.resp.listxattr.lengths[i];
496 count_keys++;
497 } else {
498 gossip_debug(GOSSIP_XATTR_DEBUG, "[RESERVED] key %d -> %s\n",
499 i, new_op->downcall.resp.listxattr.key +
500 key_size);
501 }
502 key_size += new_op->downcall.resp.listxattr.lengths[i];
503 }
504
505 /*
506 * Since the buffer was large enough, we might have to continue
507 * fetching more keys!
508 */
509 token = new_op->downcall.resp.listxattr.token;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500510 if (token != ORANGEFS_ITERATE_END)
Mike Marshall1182fca2015-07-17 10:38:15 -0400511 goto try_again;
512
513done:
514 gossip_debug(GOSSIP_XATTR_DEBUG, "%s: returning %d"
515 " [size of buffer %ld] (filled in %d keys)\n",
516 __func__,
517 ret ? (int)ret : (int)total,
518 (long)size,
519 count_keys);
520 op_release(new_op);
521 if (ret == 0)
522 ret = total;
523out_unlock:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500524 up_read(&orangefs_inode->xattr_sem);
Mike Marshall1182fca2015-07-17 10:38:15 -0400525 return ret;
526}
527
Yi Liu8bb8aef2015-11-24 15:12:14 -0500528static int orangefs_xattr_set_default(const struct xattr_handler *handler,
Christian Braunere65ce2a2021-01-21 14:19:27 +0100529 struct user_namespace *mnt_userns,
Al Viro59301222016-05-27 10:19:30 -0400530 struct dentry *unused,
531 struct inode *inode,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500532 const char *name,
533 const void *buffer,
534 size_t size,
535 int flags)
Mike Marshall1182fca2015-07-17 10:38:15 -0400536{
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200537 return orangefs_inode_setxattr(inode, name, buffer, size, flags);
Mike Marshall1182fca2015-07-17 10:38:15 -0400538}
539
Yi Liu8bb8aef2015-11-24 15:12:14 -0500540static int orangefs_xattr_get_default(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -0400541 struct dentry *unused,
542 struct inode *inode,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500543 const char *name,
544 void *buffer,
545 size_t size)
Mike Marshall1182fca2015-07-17 10:38:15 -0400546{
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200547 return orangefs_inode_getxattr(inode, name, buffer, size);
Mike Marshall1182fca2015-07-17 10:38:15 -0400548
549}
550
Julia Lawall12174442017-08-02 10:35:14 +0200551static const struct xattr_handler orangefs_xattr_default_handler = {
Andreas Gruenbacher972a7342016-05-30 11:25:59 +0200552 .prefix = "", /* match any name => handlers called with full name */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500553 .get = orangefs_xattr_get_default,
554 .set = orangefs_xattr_set_default,
Mike Marshall1182fca2015-07-17 10:38:15 -0400555};
556
Yi Liu8bb8aef2015-11-24 15:12:14 -0500557const struct xattr_handler *orangefs_xattr_handlers[] = {
Mike Marshall1182fca2015-07-17 10:38:15 -0400558 &posix_acl_access_xattr_handler,
559 &posix_acl_default_xattr_handler,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500560 &orangefs_xattr_default_handler,
Mike Marshall1182fca2015-07-17 10:38:15 -0400561 NULL
562};