License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 14:07:57 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-07-17 14:38:15 +00:00
|
|
|
/*
|
|
|
|
* (C) 2001 Clemson University and The University of Chicago
|
2017-12-12 18:46:30 +00:00
|
|
|
* Copyright 2018 Omnibond Systems, L.L.C.
|
2015-07-17 14:38:15 +00:00
|
|
|
*
|
|
|
|
* See COPYING in top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Linux VFS extended attribute operations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "protocol.h"
|
2015-12-04 17:56:14 +00:00
|
|
|
#include "orangefs-kernel.h"
|
|
|
|
#include "orangefs-bufmap.h"
|
2015-07-17 14:38:15 +00:00
|
|
|
#include <linux/posix_acl_xattr.h>
|
|
|
|
#include <linux/xattr.h>
|
2017-12-12 18:46:30 +00:00
|
|
|
#include <linux/hashtable.h>
|
2015-07-17 14:38:15 +00:00
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
#define SYSTEM_ORANGEFS_KEY "system.pvfs2."
|
|
|
|
#define SYSTEM_ORANGEFS_KEY_LEN 13
|
2015-07-17 14:38:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* this function returns
|
|
|
|
* 0 if the key corresponding to name is not meant to be printed as part
|
|
|
|
* of a listxattr.
|
|
|
|
* 1 if the key corresponding to name is meant to be returned as part of
|
|
|
|
* a listxattr.
|
2015-11-24 20:12:14 +00:00
|
|
|
* The ones that start SYSTEM_ORANGEFS_KEY are the ones to avoid printing.
|
2015-07-17 14:38:15 +00:00
|
|
|
*/
|
|
|
|
static int is_reserved_key(const char *key, size_t size)
|
|
|
|
{
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
if (size < SYSTEM_ORANGEFS_KEY_LEN)
|
2015-07-17 14:38:15 +00:00
|
|
|
return 1;
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
return strncmp(key, SYSTEM_ORANGEFS_KEY, SYSTEM_ORANGEFS_KEY_LEN) ? 1 : 0;
|
2015-07-17 14:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int convert_to_internal_xattr_flags(int setxattr_flags)
|
|
|
|
{
|
|
|
|
int internal_flag = 0;
|
|
|
|
|
|
|
|
if (setxattr_flags & XATTR_REPLACE) {
|
|
|
|
/* Attribute must exist! */
|
2015-11-24 20:12:14 +00:00
|
|
|
internal_flag = ORANGEFS_XATTR_REPLACE;
|
2015-07-17 14:38:15 +00:00
|
|
|
} else if (setxattr_flags & XATTR_CREATE) {
|
|
|
|
/* Attribute must not exist */
|
2015-11-24 20:12:14 +00:00
|
|
|
internal_flag = ORANGEFS_XATTR_CREATE;
|
2015-07-17 14:38:15 +00:00
|
|
|
}
|
|
|
|
return internal_flag;
|
|
|
|
}
|
|
|
|
|
2017-12-12 18:46:30 +00:00
|
|
|
static unsigned int xattr_key(const char *key)
|
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
|
|
|
while (key)
|
|
|
|
i += *key++;
|
|
|
|
return i % 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct orangefs_cached_xattr *find_cached_xattr(struct inode *inode,
|
|
|
|
const char *key)
|
|
|
|
{
|
|
|
|
struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
|
|
|
|
struct orangefs_cached_xattr *cx;
|
|
|
|
struct hlist_head *h;
|
|
|
|
struct hlist_node *tmp;
|
|
|
|
h = &orangefs_inode->xattr_cache[xattr_key(key)];
|
|
|
|
if (hlist_empty(h))
|
|
|
|
return NULL;
|
|
|
|
hlist_for_each_entry_safe(cx, tmp, h, node) {
|
|
|
|
/* if (!time_before(jiffies, cx->timeout)) {
|
|
|
|
hlist_del(&cx->node);
|
|
|
|
kfree(cx);
|
|
|
|
continue;
|
|
|
|
}*/
|
|
|
|
if (!strcmp(cx->key, key))
|
|
|
|
return cx;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-07-17 14:38:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Tries to get a specified key's attributes of a given
|
|
|
|
* file into a user-specified buffer. Note that the getxattr
|
|
|
|
* interface allows for the users to probe the size of an
|
|
|
|
* extended attribute by passing in a value of 0 to size.
|
|
|
|
* Thus our return value is always the size of the attribute
|
|
|
|
* unless the key does not exist for the file and/or if
|
|
|
|
* there were errors in fetching the attribute value.
|
|
|
|
*/
|
2016-06-04 09:02:33 +00:00
|
|
|
ssize_t orangefs_inode_getxattr(struct inode *inode, const char *name,
|
|
|
|
void *buffer, size_t size)
|
2015-07-17 14:38:15 +00:00
|
|
|
{
|
2015-11-24 20:12:14 +00:00
|
|
|
struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
|
|
|
|
struct orangefs_kernel_op_s *new_op = NULL;
|
2017-12-12 18:46:30 +00:00
|
|
|
struct orangefs_cached_xattr *cx;
|
2015-07-17 14:38:15 +00:00
|
|
|
ssize_t ret = -ENOMEM;
|
|
|
|
ssize_t length = 0;
|
|
|
|
int fsuid;
|
|
|
|
int fsgid;
|
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2016-06-04 09:02:33 +00:00
|
|
|
"%s: name %s, buffer_size %zd\n",
|
|
|
|
__func__, name, size);
|
2015-07-17 14:38:15 +00:00
|
|
|
|
xattr: Stop calling {get,set,remove}xattr inode operations
All filesystems that support xattrs by now do so via xattr handlers.
They all define sb->s_xattr, and their getxattr, setxattr, and
removexattr inode operations use the generic inode operations. On
filesystems that don't support xattrs, the xattr inode operations are
all NULL, and sb->s_xattr is also NULL.
This means that we can remove the getxattr, setxattr, and removexattr
inode operations and directly call the generic handlers, or better,
inline expand those handlers into fs/xattr.c.
Filesystems that do not support xattrs on some inodes should clear the
IOP_XATTR i_opflags flag in those inodes. (Right now, some filesystems
have checks to disable xattrs on some inodes in the ->list, ->get, and
->set xattr handler operations instead.) The IOP_XATTR flag is
automatically cleared in inodes of filesystems that don't have xattr
support.
In orangefs, symlinks do have a setxattr iop but no getxattr iop. Add a
check for symlinks to orangefs_inode_getxattr to preserve the current,
weird behavior; that check may not be necessary though.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2016-09-29 15:48:44 +00:00
|
|
|
if (S_ISLNK(inode->i_mode))
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2017-05-22 12:08:31 +00:00
|
|
|
if (strlen(name) >= ORANGEFS_MAX_XATTR_NAMELEN)
|
2015-07-17 14:38:15 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
orangefs: fix namespace handling
In orangefs_inode_getxattr(), an fsuid is written to dmesg. The kuid is
converted to a userspace uid via from_kuid(current_user_ns(), [...]), but
since dmesg is global, init_user_ns should be used here instead.
In copy_attributes_from_inode(), op_alloc() and fill_default_sys_attrs(),
upcall structures are populated with uids/gids that have been mapped into
the caller's namespace. However, those upcall structures are read by
another process (the userspace filesystem driver), and that process might
be running in another namespace. This effectively lets any user spoof its
uid and gid as seen by the userspace filesystem driver.
To fix the second issue, I just construct the opcall structures with
init_user_ns uids/gids and require the filesystem server to run in the
init namespace. Since orangefs is full of global state anyway (as the error
message in DUMP_DEVICE_ERROR explains, there can only be one userspace
orangefs filesystem driver at once), that shouldn't be a problem.
[
Why does orangefs even exist in the kernel if everything does upcalls into
userspace? What does orangefs do that couldn't be done with the FUSE
interface? If there is no good answer to those questions, I'd prefer to see
orangefs kicked out of the kernel. Can that be done for something that
shipped in a release?
According to commit f7ab093f74bf ("Orangefs: kernel client part 1"), they
even already have a FUSE daemon, and the only rational reason (apart from
"but most of our users report preferring to use our kernel module instead")
given for not wanting to use FUSE is one "in-the-works" feature that could
probably be integated into FUSE instead.
]
This patch has been compile-tested.
Signed-off-by: Jann Horn <jannh@google.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
2016-06-24 23:51:52 +00:00
|
|
|
fsuid = from_kuid(&init_user_ns, current_fsuid());
|
|
|
|
fsgid = from_kgid(&init_user_ns, current_fsgid());
|
2015-07-17 14:38:15 +00:00
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
|
|
|
"getxattr on inode %pU, name %s "
|
|
|
|
"(uid %o, gid %o)\n",
|
|
|
|
get_khandle_from_ino(inode),
|
|
|
|
name,
|
|
|
|
fsuid,
|
|
|
|
fsgid);
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
down_read(&orangefs_inode->xattr_sem);
|
2015-07-17 14:38:15 +00:00
|
|
|
|
2017-12-12 18:46:30 +00:00
|
|
|
cx = find_cached_xattr(inode, name);
|
|
|
|
if (cx && time_before(jiffies, cx->timeout)) {
|
|
|
|
if (cx->length == -1) {
|
|
|
|
ret = -ENODATA;
|
|
|
|
goto out_unlock;
|
|
|
|
} else {
|
|
|
|
if (size == 0) {
|
|
|
|
ret = cx->length;
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
if (cx->length > size) {
|
|
|
|
ret = -ERANGE;
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
memcpy(buffer, cx->val, cx->length);
|
|
|
|
memset(buffer + cx->length, 0, size - cx->length);
|
|
|
|
ret = cx->length;
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
new_op = op_alloc(ORANGEFS_VFS_OP_GETXATTR);
|
2015-07-17 14:38:15 +00:00
|
|
|
if (!new_op)
|
|
|
|
goto out_unlock;
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
new_op->upcall.req.getxattr.refn = orangefs_inode->refn;
|
2016-06-04 09:02:33 +00:00
|
|
|
strcpy(new_op->upcall.req.getxattr.key, name);
|
2015-07-17 14:38:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* NOTE: Although keys are meant to be NULL terminated textual
|
|
|
|
* strings, I am going to explicitly pass the length just in case
|
|
|
|
* we change this later on...
|
|
|
|
*/
|
2016-06-04 09:02:33 +00:00
|
|
|
new_op->upcall.req.getxattr.key_sz = strlen(name) + 1;
|
2015-07-17 14:38:15 +00:00
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
ret = service_operation(new_op, "orangefs_inode_getxattr",
|
2015-07-17 14:38:15 +00:00
|
|
|
get_interruptible_flag(inode));
|
|
|
|
if (ret != 0) {
|
|
|
|
if (ret == -ENOENT) {
|
|
|
|
ret = -ENODATA;
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_getxattr: inode %pU key %s"
|
2015-07-17 14:38:15 +00:00
|
|
|
" does not exist!\n",
|
|
|
|
get_khandle_from_ino(inode),
|
|
|
|
(char *)new_op->upcall.req.getxattr.key);
|
2017-12-12 18:46:30 +00:00
|
|
|
cx = kmalloc(sizeof *cx, GFP_KERNEL);
|
|
|
|
if (cx) {
|
|
|
|
strcpy(cx->key, name);
|
|
|
|
cx->length = -1;
|
|
|
|
cx->timeout = jiffies +
|
|
|
|
orangefs_getattr_timeout_msecs*HZ/1000;
|
|
|
|
hash_add(orangefs_inode->xattr_cache, &cx->node,
|
|
|
|
xattr_key(cx->key));
|
|
|
|
}
|
2015-07-17 14:38:15 +00:00
|
|
|
}
|
|
|
|
goto out_release_op;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Length returned includes null terminator.
|
|
|
|
*/
|
|
|
|
length = new_op->downcall.resp.getxattr.val_sz;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Just return the length of the queried attribute.
|
|
|
|
*/
|
|
|
|
if (size == 0) {
|
|
|
|
ret = length;
|
|
|
|
goto out_release_op;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to see if key length is > provided buffer size.
|
|
|
|
*/
|
|
|
|
if (length > size) {
|
|
|
|
ret = -ERANGE;
|
|
|
|
goto out_release_op;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(buffer, new_op->downcall.resp.getxattr.val, length);
|
2016-04-06 15:19:37 +00:00
|
|
|
memset(buffer + length, 0, size - length);
|
2015-07-17 14:38:15 +00:00
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_getxattr: inode %pU "
|
2015-07-17 14:38:15 +00:00
|
|
|
"key %s key_sz %d, val_len %d\n",
|
|
|
|
get_khandle_from_ino(inode),
|
|
|
|
(char *)new_op->
|
|
|
|
upcall.req.getxattr.key,
|
|
|
|
(int)new_op->
|
|
|
|
upcall.req.getxattr.key_sz,
|
|
|
|
(int)ret);
|
|
|
|
|
|
|
|
ret = length;
|
|
|
|
|
2017-12-12 18:46:30 +00:00
|
|
|
if (cx) {
|
|
|
|
strcpy(cx->key, name);
|
|
|
|
memcpy(cx->val, buffer, length);
|
|
|
|
cx->length = length;
|
|
|
|
cx->timeout = jiffies + HZ;
|
|
|
|
} else {
|
|
|
|
cx = kmalloc(sizeof *cx, GFP_KERNEL);
|
|
|
|
if (cx) {
|
|
|
|
strcpy(cx->key, name);
|
|
|
|
memcpy(cx->val, buffer, length);
|
|
|
|
cx->length = length;
|
|
|
|
cx->timeout = jiffies + HZ;
|
|
|
|
hash_add(orangefs_inode->xattr_cache, &cx->node,
|
|
|
|
xattr_key(cx->key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-17 14:38:15 +00:00
|
|
|
out_release_op:
|
|
|
|
op_release(new_op);
|
|
|
|
out_unlock:
|
2015-11-24 20:12:14 +00:00
|
|
|
up_read(&orangefs_inode->xattr_sem);
|
2015-07-17 14:38:15 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-04 09:02:33 +00:00
|
|
|
static int orangefs_inode_removexattr(struct inode *inode, const char *name,
|
|
|
|
int flags)
|
2015-07-17 14:38:15 +00:00
|
|
|
{
|
2015-11-24 20:12:14 +00:00
|
|
|
struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
|
|
|
|
struct orangefs_kernel_op_s *new_op = NULL;
|
2017-12-12 18:46:30 +00:00
|
|
|
struct orangefs_cached_xattr *cx;
|
|
|
|
struct hlist_head *h;
|
|
|
|
struct hlist_node *tmp;
|
2015-07-17 14:38:15 +00:00
|
|
|
int ret = -ENOMEM;
|
|
|
|
|
2017-05-22 12:08:31 +00:00
|
|
|
if (strlen(name) >= ORANGEFS_MAX_XATTR_NAMELEN)
|
2017-04-25 19:37:57 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
down_write(&orangefs_inode->xattr_sem);
|
|
|
|
new_op = op_alloc(ORANGEFS_VFS_OP_REMOVEXATTR);
|
2015-07-17 14:38:15 +00:00
|
|
|
if (!new_op)
|
|
|
|
goto out_unlock;
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
new_op->upcall.req.removexattr.refn = orangefs_inode->refn;
|
2015-07-17 14:38:15 +00:00
|
|
|
/*
|
|
|
|
* NOTE: Although keys are meant to be NULL terminated
|
|
|
|
* textual strings, I am going to explicitly pass the
|
|
|
|
* length just in case we change this later on...
|
|
|
|
*/
|
2016-06-04 09:02:33 +00:00
|
|
|
strcpy(new_op->upcall.req.removexattr.key, name);
|
|
|
|
new_op->upcall.req.removexattr.key_sz = strlen(name) + 1;
|
2015-07-17 14:38:15 +00:00
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_removexattr: key %s, key_sz %d\n",
|
2015-07-17 14:38:15 +00:00
|
|
|
(char *)new_op->upcall.req.removexattr.key,
|
|
|
|
(int)new_op->upcall.req.removexattr.key_sz);
|
|
|
|
|
|
|
|
ret = service_operation(new_op,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_removexattr",
|
2015-07-17 14:38:15 +00:00
|
|
|
get_interruptible_flag(inode));
|
|
|
|
if (ret == -ENOENT) {
|
|
|
|
/*
|
|
|
|
* Request to replace a non-existent attribute is an error.
|
|
|
|
*/
|
|
|
|
if (flags & XATTR_REPLACE)
|
|
|
|
ret = -ENODATA;
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_removexattr: returning %d\n", ret);
|
2015-07-17 14:38:15 +00:00
|
|
|
|
|
|
|
op_release(new_op);
|
2017-12-12 18:46:30 +00:00
|
|
|
|
|
|
|
h = &orangefs_inode->xattr_cache[xattr_key(name)];
|
|
|
|
hlist_for_each_entry_safe(cx, tmp, h, node) {
|
|
|
|
if (!strcmp(cx->key, name)) {
|
|
|
|
hlist_del(&cx->node);
|
|
|
|
kfree(cx);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-17 14:38:15 +00:00
|
|
|
out_unlock:
|
2015-11-24 20:12:14 +00:00
|
|
|
up_write(&orangefs_inode->xattr_sem);
|
2015-07-17 14:38:15 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tries to set an attribute for a given key on a file.
|
|
|
|
*
|
|
|
|
* Returns a -ve number on error and 0 on success. Key is text, but value
|
|
|
|
* can be binary!
|
|
|
|
*/
|
2016-06-04 09:02:33 +00:00
|
|
|
int orangefs_inode_setxattr(struct inode *inode, const char *name,
|
|
|
|
const void *value, size_t size, int flags)
|
2015-07-17 14:38:15 +00:00
|
|
|
{
|
2015-11-24 20:12:14 +00:00
|
|
|
struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
|
|
|
|
struct orangefs_kernel_op_s *new_op;
|
2015-07-17 14:38:15 +00:00
|
|
|
int internal_flag = 0;
|
2017-12-12 18:46:30 +00:00
|
|
|
struct orangefs_cached_xattr *cx;
|
|
|
|
struct hlist_head *h;
|
|
|
|
struct hlist_node *tmp;
|
2015-07-17 14:38:15 +00:00
|
|
|
int ret = -ENOMEM;
|
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2016-06-04 09:02:33 +00:00
|
|
|
"%s: name %s, buffer_size %zd\n",
|
|
|
|
__func__, name, size);
|
2015-07-17 14:38:15 +00:00
|
|
|
|
2017-04-25 19:37:57 +00:00
|
|
|
if (size > ORANGEFS_MAX_XATTR_VALUELEN)
|
|
|
|
return -EINVAL;
|
2017-05-22 12:08:31 +00:00
|
|
|
if (strlen(name) >= ORANGEFS_MAX_XATTR_NAMELEN)
|
2015-07-17 14:38:15 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
internal_flag = convert_to_internal_xattr_flags(flags);
|
|
|
|
|
|
|
|
/* This is equivalent to a removexattr */
|
2017-08-17 19:35:16 +00:00
|
|
|
if (size == 0 && !value) {
|
2015-07-17 14:38:15 +00:00
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2016-06-04 09:02:33 +00:00
|
|
|
"removing xattr (%s)\n",
|
2015-07-17 14:38:15 +00:00
|
|
|
name);
|
2016-06-04 09:02:33 +00:00
|
|
|
return orangefs_inode_removexattr(inode, name, flags);
|
2015-07-17 14:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
|
|
|
"setxattr on inode %pU, name %s\n",
|
|
|
|
get_khandle_from_ino(inode),
|
|
|
|
name);
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
down_write(&orangefs_inode->xattr_sem);
|
|
|
|
new_op = op_alloc(ORANGEFS_VFS_OP_SETXATTR);
|
2015-07-17 14:38:15 +00:00
|
|
|
if (!new_op)
|
|
|
|
goto out_unlock;
|
|
|
|
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
new_op->upcall.req.setxattr.refn = orangefs_inode->refn;
|
2015-07-17 14:38:15 +00:00
|
|
|
new_op->upcall.req.setxattr.flags = internal_flag;
|
|
|
|
/*
|
|
|
|
* NOTE: Although keys are meant to be NULL terminated textual
|
|
|
|
* strings, I am going to explicitly pass the length just in
|
|
|
|
* case we change this later on...
|
|
|
|
*/
|
2016-06-04 09:02:33 +00:00
|
|
|
strcpy(new_op->upcall.req.setxattr.keyval.key, name);
|
|
|
|
new_op->upcall.req.setxattr.keyval.key_sz = strlen(name) + 1;
|
2015-07-17 14:38:15 +00:00
|
|
|
memcpy(new_op->upcall.req.setxattr.keyval.val, value, size);
|
|
|
|
new_op->upcall.req.setxattr.keyval.val_sz = size;
|
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_setxattr: key %s, key_sz %d "
|
2015-07-17 14:38:15 +00:00
|
|
|
" value size %zd\n",
|
|
|
|
(char *)new_op->upcall.req.setxattr.keyval.key,
|
|
|
|
(int)new_op->upcall.req.setxattr.keyval.key_sz,
|
|
|
|
size);
|
|
|
|
|
|
|
|
ret = service_operation(new_op,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_setxattr",
|
2015-07-17 14:38:15 +00:00
|
|
|
get_interruptible_flag(inode));
|
|
|
|
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG,
|
2015-11-24 20:12:14 +00:00
|
|
|
"orangefs_inode_setxattr: returning %d\n",
|
2015-07-17 14:38:15 +00:00
|
|
|
ret);
|
|
|
|
|
|
|
|
/* when request is serviced properly, free req op struct */
|
|
|
|
op_release(new_op);
|
2017-12-12 18:46:30 +00:00
|
|
|
|
|
|
|
h = &orangefs_inode->xattr_cache[xattr_key(name)];
|
|
|
|
hlist_for_each_entry_safe(cx, tmp, h, node) {
|
|
|
|
if (!strcmp(cx->key, name)) {
|
|
|
|
hlist_del(&cx->node);
|
|
|
|
kfree(cx);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-17 14:38:15 +00:00
|
|
|
out_unlock:
|
2015-11-24 20:12:14 +00:00
|
|
|
up_write(&orangefs_inode->xattr_sem);
|
2015-07-17 14:38:15 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tries to get a specified object's keys into a user-specified buffer of a
|
|
|
|
* given size. Note that like the previous instances of xattr routines, this
|
|
|
|
* also allows you to pass in a NULL pointer and 0 size to probe the size for
|
|
|
|
* subsequent memory allocations. Thus our return value is always the size of
|
|
|
|
* all the keys unless there were errors in fetching the keys!
|
|
|
|
*/
|
2015-11-24 20:12:14 +00:00
|
|
|
ssize_t orangefs_listxattr(struct dentry *dentry, char *buffer, size_t size)
|
2015-07-17 14:38:15 +00:00
|
|
|
{
|
|
|
|
struct inode *inode = dentry->d_inode;
|
2015-11-24 20:12:14 +00:00
|
|
|
struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
|
|
|
|
struct orangefs_kernel_op_s *new_op;
|
|
|
|
__u64 token = ORANGEFS_ITERATE_START;
|
2015-07-17 14:38:15 +00:00
|
|
|
ssize_t ret = -ENOMEM;
|
|
|
|
ssize_t total = 0;
|
|
|
|
int count_keys = 0;
|
|
|
|
int key_size;
|
|
|
|
int i = 0;
|
2015-12-17 21:11:40 +00:00
|
|
|
int returned_count = 0;
|
2015-07-17 14:38:15 +00:00
|
|
|
|
2017-08-17 19:35:16 +00:00
|
|
|
if (size > 0 && !buffer) {
|
2015-07-17 14:38:15 +00:00
|
|
|
gossip_err("%s: bogus NULL pointers\n", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
down_read(&orangefs_inode->xattr_sem);
|
|
|
|
new_op = op_alloc(ORANGEFS_VFS_OP_LISTXATTR);
|
2015-07-17 14:38:15 +00:00
|
|
|
if (!new_op)
|
|
|
|
goto out_unlock;
|
|
|
|
|
|
|
|
if (buffer && size > 0)
|
|
|
|
memset(buffer, 0, size);
|
|
|
|
|
|
|
|
try_again:
|
|
|
|
key_size = 0;
|
2015-11-24 20:12:14 +00:00
|
|
|
new_op->upcall.req.listxattr.refn = orangefs_inode->refn;
|
2015-07-17 14:38:15 +00:00
|
|
|
new_op->upcall.req.listxattr.token = token;
|
|
|
|
new_op->upcall.req.listxattr.requested_count =
|
2015-11-24 20:12:14 +00:00
|
|
|
(size == 0) ? 0 : ORANGEFS_MAX_XATTR_LISTLEN;
|
2015-07-17 14:38:15 +00:00
|
|
|
ret = service_operation(new_op, __func__,
|
|
|
|
get_interruptible_flag(inode));
|
|
|
|
if (ret != 0)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (size == 0) {
|
|
|
|
/*
|
|
|
|
* This is a bit of a big upper limit, but I did not want to
|
|
|
|
* spend too much time getting this correct, since users end
|
|
|
|
* up allocating memory rather than us...
|
|
|
|
*/
|
|
|
|
total = new_op->downcall.resp.listxattr.returned_count *
|
2015-11-24 20:12:14 +00:00
|
|
|
ORANGEFS_MAX_XATTR_NAMELEN;
|
2015-07-17 14:38:15 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-12-17 21:11:40 +00:00
|
|
|
returned_count = new_op->downcall.resp.listxattr.returned_count;
|
|
|
|
if (returned_count < 0 ||
|
2017-04-25 19:37:56 +00:00
|
|
|
returned_count > ORANGEFS_MAX_XATTR_LISTLEN) {
|
2015-12-17 21:11:40 +00:00
|
|
|
gossip_err("%s: impossible value for returned_count:%d:\n",
|
|
|
|
__func__,
|
|
|
|
returned_count);
|
2016-03-16 18:01:43 +00:00
|
|
|
ret = -EIO;
|
2015-12-17 21:11:40 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-07-17 14:38:15 +00:00
|
|
|
/*
|
|
|
|
* Check to see how much can be fit in the buffer. Fit only whole keys.
|
|
|
|
*/
|
2015-12-17 21:11:40 +00:00
|
|
|
for (i = 0; i < returned_count; i++) {
|
2016-03-16 18:01:43 +00:00
|
|
|
if (new_op->downcall.resp.listxattr.lengths[i] < 0 ||
|
|
|
|
new_op->downcall.resp.listxattr.lengths[i] >
|
|
|
|
ORANGEFS_MAX_XATTR_NAMELEN) {
|
|
|
|
gossip_err("%s: impossible value for lengths[%d]\n",
|
|
|
|
__func__,
|
|
|
|
new_op->downcall.resp.listxattr.lengths[i]);
|
|
|
|
ret = -EIO;
|
|
|
|
goto done;
|
|
|
|
}
|
2015-07-17 14:38:15 +00:00
|
|
|
if (total + new_op->downcall.resp.listxattr.lengths[i] > size)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since many dumb programs try to setxattr() on our reserved
|
|
|
|
* xattrs this is a feeble attempt at defeating those by not
|
|
|
|
* listing them in the output of listxattr.. sigh
|
|
|
|
*/
|
|
|
|
if (is_reserved_key(new_op->downcall.resp.listxattr.key +
|
|
|
|
key_size,
|
|
|
|
new_op->downcall.resp.
|
|
|
|
listxattr.lengths[i])) {
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG, "Copying key %d -> %s\n",
|
|
|
|
i, new_op->downcall.resp.listxattr.key +
|
|
|
|
key_size);
|
|
|
|
memcpy(buffer + total,
|
|
|
|
new_op->downcall.resp.listxattr.key + key_size,
|
|
|
|
new_op->downcall.resp.listxattr.lengths[i]);
|
|
|
|
total += new_op->downcall.resp.listxattr.lengths[i];
|
|
|
|
count_keys++;
|
|
|
|
} else {
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG, "[RESERVED] key %d -> %s\n",
|
|
|
|
i, new_op->downcall.resp.listxattr.key +
|
|
|
|
key_size);
|
|
|
|
}
|
|
|
|
key_size += new_op->downcall.resp.listxattr.lengths[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since the buffer was large enough, we might have to continue
|
|
|
|
* fetching more keys!
|
|
|
|
*/
|
|
|
|
token = new_op->downcall.resp.listxattr.token;
|
2015-11-24 20:12:14 +00:00
|
|
|
if (token != ORANGEFS_ITERATE_END)
|
2015-07-17 14:38:15 +00:00
|
|
|
goto try_again;
|
|
|
|
|
|
|
|
done:
|
|
|
|
gossip_debug(GOSSIP_XATTR_DEBUG, "%s: returning %d"
|
|
|
|
" [size of buffer %ld] (filled in %d keys)\n",
|
|
|
|
__func__,
|
|
|
|
ret ? (int)ret : (int)total,
|
|
|
|
(long)size,
|
|
|
|
count_keys);
|
|
|
|
op_release(new_op);
|
|
|
|
if (ret == 0)
|
|
|
|
ret = total;
|
|
|
|
out_unlock:
|
2015-11-24 20:12:14 +00:00
|
|
|
up_read(&orangefs_inode->xattr_sem);
|
2015-07-17 14:38:15 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
static int orangefs_xattr_set_default(const struct xattr_handler *handler,
|
2023-01-13 11:49:23 +00:00
|
|
|
struct mnt_idmap *idmap,
|
2016-05-27 14:19:30 +00:00
|
|
|
struct dentry *unused,
|
|
|
|
struct inode *inode,
|
2015-11-24 20:12:14 +00:00
|
|
|
const char *name,
|
|
|
|
const void *buffer,
|
|
|
|
size_t size,
|
|
|
|
int flags)
|
2015-07-17 14:38:15 +00:00
|
|
|
{
|
2016-06-04 09:02:33 +00:00
|
|
|
return orangefs_inode_setxattr(inode, name, buffer, size, flags);
|
2015-07-17 14:38:15 +00:00
|
|
|
}
|
|
|
|
|
2015-11-24 20:12:14 +00:00
|
|
|
static int orangefs_xattr_get_default(const struct xattr_handler *handler,
|
2016-04-11 00:48:24 +00:00
|
|
|
struct dentry *unused,
|
|
|
|
struct inode *inode,
|
2015-11-24 20:12:14 +00:00
|
|
|
const char *name,
|
|
|
|
void *buffer,
|
|
|
|
size_t size)
|
2015-07-17 14:38:15 +00:00
|
|
|
{
|
2016-06-04 09:02:33 +00:00
|
|
|
return orangefs_inode_getxattr(inode, name, buffer, size);
|
2015-07-17 14:38:15 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-08-02 08:35:14 +00:00
|
|
|
static const struct xattr_handler orangefs_xattr_default_handler = {
|
2016-05-30 09:25:59 +00:00
|
|
|
.prefix = "", /* match any name => handlers called with full name */
|
2015-11-24 20:12:14 +00:00
|
|
|
.get = orangefs_xattr_get_default,
|
|
|
|
.set = orangefs_xattr_set_default,
|
2015-07-17 14:38:15 +00:00
|
|
|
};
|
|
|
|
|
2023-09-30 05:00:25 +00:00
|
|
|
const struct xattr_handler * const orangefs_xattr_handlers[] = {
|
2015-11-24 20:12:14 +00:00
|
|
|
&orangefs_xattr_default_handler,
|
2015-07-17 14:38:15 +00:00
|
|
|
NULL
|
|
|
|
};
|