Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright IBM Corporation, 2010 |
| 3 | * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of version 2.1 of the GNU Lesser General Public License |
| 7 | * as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it would be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 12 | * |
| 13 | */ |
| 14 | |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/fs.h> |
| 17 | #include <linux/sched.h> |
Al Viro | 070b365 | 2015-04-01 20:17:51 -0400 | [diff] [blame] | 18 | #include <linux/uio.h> |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 19 | #include <net/9p/9p.h> |
| 20 | #include <net/9p/client.h> |
| 21 | |
| 22 | #include "fid.h" |
| 23 | #include "xattr.h" |
| 24 | |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 25 | ssize_t v9fs_fid_xattr_get(struct p9_fid *fid, const char *name, |
| 26 | void *buffer, size_t buffer_size) |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 27 | { |
| 28 | ssize_t retval; |
Al Viro | e1200fe6 | 2015-04-01 23:42:28 -0400 | [diff] [blame] | 29 | u64 attr_size; |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 30 | struct p9_fid *attr_fid; |
Al Viro | e1200fe6 | 2015-04-01 23:42:28 -0400 | [diff] [blame] | 31 | struct kvec kvec = {.iov_base = buffer, .iov_len = buffer_size}; |
| 32 | struct iov_iter to; |
| 33 | int err; |
| 34 | |
| 35 | iov_iter_kvec(&to, READ | ITER_KVEC, &kvec, 1, buffer_size); |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 36 | |
| 37 | attr_fid = p9_client_xattrwalk(fid, name, &attr_size); |
| 38 | if (IS_ERR(attr_fid)) { |
| 39 | retval = PTR_ERR(attr_fid); |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 40 | p9_debug(P9_DEBUG_VFS, "p9_client_attrwalk failed %zd\n", |
| 41 | retval); |
Al Viro | e1200fe6 | 2015-04-01 23:42:28 -0400 | [diff] [blame] | 42 | return retval; |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 43 | } |
| 44 | if (attr_size > buffer_size) { |
Al Viro | e1200fe6 | 2015-04-01 23:42:28 -0400 | [diff] [blame] | 45 | if (!buffer_size) /* request to get the attr_size */ |
| 46 | retval = attr_size; |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 47 | else |
Al Viro | e1200fe6 | 2015-04-01 23:42:28 -0400 | [diff] [blame] | 48 | retval = -ERANGE; |
| 49 | } else { |
| 50 | iov_iter_truncate(&to, attr_size); |
| 51 | retval = p9_client_read(attr_fid, 0, &to, &err); |
| 52 | if (err) |
| 53 | retval = err; |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 54 | } |
Al Viro | e1200fe6 | 2015-04-01 23:42:28 -0400 | [diff] [blame] | 55 | p9_client_clunk(attr_fid); |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 56 | return retval; |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 57 | } |
| 58 | |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * v9fs_xattr_get() |
| 62 | * |
| 63 | * Copy an extended attribute into the buffer |
| 64 | * provided, or compute the buffer size required. |
| 65 | * Buffer is NULL to compute the size of the buffer required. |
| 66 | * |
| 67 | * Returns a negative error number on failure, or the number of bytes |
| 68 | * used / required on success. |
| 69 | */ |
| 70 | ssize_t v9fs_xattr_get(struct dentry *dentry, const char *name, |
| 71 | void *buffer, size_t buffer_size) |
| 72 | { |
| 73 | struct p9_fid *fid; |
| 74 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 75 | p9_debug(P9_DEBUG_VFS, "name = %s value_len = %zu\n", |
| 76 | name, buffer_size); |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 77 | fid = v9fs_fid_lookup(dentry); |
| 78 | if (IS_ERR(fid)) |
| 79 | return PTR_ERR(fid); |
| 80 | |
| 81 | return v9fs_fid_xattr_get(fid, name, buffer, buffer_size); |
| 82 | } |
| 83 | |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 84 | /* |
| 85 | * v9fs_xattr_set() |
| 86 | * |
| 87 | * Create, replace or remove an extended attribute for this inode. Buffer |
| 88 | * is NULL to remove an existing extended attribute, and non-NULL to |
| 89 | * either replace an existing extended attribute, or create a new extended |
| 90 | * attribute. The flags XATTR_REPLACE and XATTR_CREATE |
| 91 | * specify that an extended attribute must exist and must not exist |
| 92 | * previous to the call, respectively. |
| 93 | * |
| 94 | * Returns 0, or a negative error number on failure. |
| 95 | */ |
| 96 | int v9fs_xattr_set(struct dentry *dentry, const char *name, |
| 97 | const void *value, size_t value_len, int flags) |
| 98 | { |
Al Viro | 38baba9 | 2013-01-31 12:34:58 -0500 | [diff] [blame] | 99 | struct p9_fid *fid = v9fs_fid_lookup(dentry); |
| 100 | if (IS_ERR(fid)) |
| 101 | return PTR_ERR(fid); |
| 102 | return v9fs_fid_xattr_set(fid, name, value, value_len, flags); |
| 103 | } |
| 104 | |
| 105 | int v9fs_fid_xattr_set(struct p9_fid *fid, const char *name, |
| 106 | const void *value, size_t value_len, int flags) |
| 107 | { |
Al Viro | 070b365 | 2015-04-01 20:17:51 -0400 | [diff] [blame] | 108 | struct kvec kvec = {.iov_base = (void *)value, .iov_len = value_len}; |
| 109 | struct iov_iter from; |
| 110 | int retval; |
| 111 | |
| 112 | iov_iter_kvec(&from, WRITE | ITER_KVEC, &kvec, 1, value_len); |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 113 | |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 114 | p9_debug(P9_DEBUG_VFS, "name = %s value_len = %zu flags = %d\n", |
| 115 | name, value_len, flags); |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 116 | |
Al Viro | 38baba9 | 2013-01-31 12:34:58 -0500 | [diff] [blame] | 117 | /* Clone it */ |
| 118 | fid = p9_client_walk(fid, 0, NULL, 1); |
| 119 | if (IS_ERR(fid)) |
| 120 | return PTR_ERR(fid); |
| 121 | |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 122 | /* |
| 123 | * On success fid points to xattr |
| 124 | */ |
| 125 | retval = p9_client_xattrcreate(fid, name, value_len, flags); |
Al Viro | 070b365 | 2015-04-01 20:17:51 -0400 | [diff] [blame] | 126 | if (retval < 0) |
Joe Perches | 5d38515 | 2011-11-28 10:40:46 -0800 | [diff] [blame] | 127 | p9_debug(P9_DEBUG_VFS, "p9_client_xattrcreate failed %d\n", |
| 128 | retval); |
Al Viro | 070b365 | 2015-04-01 20:17:51 -0400 | [diff] [blame] | 129 | else |
| 130 | p9_client_write(fid, 0, &from, &retval); |
Geyslan G. Bem | bdd5c28 | 2013-10-21 16:47:58 -0300 | [diff] [blame] | 131 | p9_client_clunk(fid); |
| 132 | return retval; |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | ssize_t v9fs_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size) |
| 136 | { |
| 137 | return v9fs_xattr_get(dentry, NULL, buffer, buffer_size); |
| 138 | } |
| 139 | |
| 140 | const struct xattr_handler *v9fs_xattr_handlers[] = { |
| 141 | &v9fs_xattr_user_handler, |
Jim Garlick | d9a7385 | 2013-05-29 12:09:39 -0700 | [diff] [blame] | 142 | &v9fs_xattr_trusted_handler, |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 143 | #ifdef CONFIG_9P_FS_POSIX_ACL |
| 144 | &v9fs_xattr_acl_access_handler, |
| 145 | &v9fs_xattr_acl_default_handler, |
| 146 | #endif |
Jim Garlick | d9a7385 | 2013-05-29 12:09:39 -0700 | [diff] [blame] | 147 | #ifdef CONFIG_9P_FS_SECURITY |
| 148 | &v9fs_xattr_security_handler, |
| 149 | #endif |
Aneesh Kumar K.V | ebf4626 | 2010-05-31 13:22:56 +0530 | [diff] [blame] | 150 | NULL |
| 151 | }; |