Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 1 | /* |
| 2 | * (C) 2001 Clemson University and The University of Chicago |
| 3 | * |
| 4 | * See COPYING in top-level directory. |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Linux VFS extended attribute operations. |
| 9 | */ |
| 10 | |
| 11 | #include "protocol.h" |
Mike Marshall | 575e946 | 2015-12-04 12:56:14 -0500 | [diff] [blame] | 12 | #include "orangefs-kernel.h" |
| 13 | #include "orangefs-bufmap.h" |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 14 | #include <linux/posix_acl_xattr.h> |
| 15 | #include <linux/xattr.h> |
| 16 | |
| 17 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 18 | #define SYSTEM_ORANGEFS_KEY "system.pvfs2." |
| 19 | #define SYSTEM_ORANGEFS_KEY_LEN 13 |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 20 | |
| 21 | /* |
| 22 | * this function returns |
| 23 | * 0 if the key corresponding to name is not meant to be printed as part |
| 24 | * of a listxattr. |
| 25 | * 1 if the key corresponding to name is meant to be returned as part of |
| 26 | * a listxattr. |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 27 | * The ones that start SYSTEM_ORANGEFS_KEY are the ones to avoid printing. |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 28 | */ |
| 29 | static int is_reserved_key(const char *key, size_t size) |
| 30 | { |
| 31 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 32 | if (size < SYSTEM_ORANGEFS_KEY_LEN) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 33 | return 1; |
| 34 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 35 | return strncmp(key, SYSTEM_ORANGEFS_KEY, SYSTEM_ORANGEFS_KEY_LEN) ? 1 : 0; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | static inline int convert_to_internal_xattr_flags(int setxattr_flags) |
| 39 | { |
| 40 | int internal_flag = 0; |
| 41 | |
| 42 | if (setxattr_flags & XATTR_REPLACE) { |
| 43 | /* Attribute must exist! */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 44 | internal_flag = ORANGEFS_XATTR_REPLACE; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 45 | } else if (setxattr_flags & XATTR_CREATE) { |
| 46 | /* Attribute must not exist */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 47 | internal_flag = ORANGEFS_XATTR_CREATE; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 48 | } |
| 49 | return internal_flag; |
| 50 | } |
| 51 | |
| 52 | |
| 53 | /* |
| 54 | * Tries to get a specified key's attributes of a given |
| 55 | * file into a user-specified buffer. Note that the getxattr |
| 56 | * interface allows for the users to probe the size of an |
| 57 | * extended attribute by passing in a value of 0 to size. |
| 58 | * Thus our return value is always the size of the attribute |
| 59 | * unless the key does not exist for the file and/or if |
| 60 | * there were errors in fetching the attribute value. |
| 61 | */ |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 62 | ssize_t orangefs_inode_getxattr(struct inode *inode, const char *name, |
| 63 | void *buffer, size_t size) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 64 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 65 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 66 | struct orangefs_kernel_op_s *new_op = NULL; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 67 | ssize_t ret = -ENOMEM; |
| 68 | ssize_t length = 0; |
| 69 | int fsuid; |
| 70 | int fsgid; |
| 71 | |
| 72 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 73 | "%s: name %s, buffer_size %zd\n", |
| 74 | __func__, name, size); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 75 | |
Andreas Gruenbacher | 6c6ef9f | 2016-09-29 17:48:44 +0200 | [diff] [blame] | 76 | if (S_ISLNK(inode->i_mode)) |
| 77 | return -EOPNOTSUPP; |
| 78 | |
Martin Brandenburg | e675c5e | 2017-04-25 15:37:57 -0400 | [diff] [blame] | 79 | if (strlen(name) > ORANGEFS_MAX_XATTR_NAMELEN) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 80 | return -EINVAL; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 81 | |
Jann Horn | 78fee0b | 2016-06-25 01:51:52 +0200 | [diff] [blame] | 82 | fsuid = from_kuid(&init_user_ns, current_fsuid()); |
| 83 | fsgid = from_kgid(&init_user_ns, current_fsgid()); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 84 | |
| 85 | gossip_debug(GOSSIP_XATTR_DEBUG, |
| 86 | "getxattr on inode %pU, name %s " |
| 87 | "(uid %o, gid %o)\n", |
| 88 | get_khandle_from_ino(inode), |
| 89 | name, |
| 90 | fsuid, |
| 91 | fsgid); |
| 92 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 93 | down_read(&orangefs_inode->xattr_sem); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 94 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 95 | new_op = op_alloc(ORANGEFS_VFS_OP_GETXATTR); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 96 | if (!new_op) |
| 97 | goto out_unlock; |
| 98 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 99 | new_op->upcall.req.getxattr.refn = orangefs_inode->refn; |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 100 | strcpy(new_op->upcall.req.getxattr.key, name); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 101 | |
| 102 | /* |
| 103 | * NOTE: Although keys are meant to be NULL terminated textual |
| 104 | * strings, I am going to explicitly pass the length just in case |
| 105 | * we change this later on... |
| 106 | */ |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 107 | new_op->upcall.req.getxattr.key_sz = strlen(name) + 1; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 108 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 109 | ret = service_operation(new_op, "orangefs_inode_getxattr", |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 110 | get_interruptible_flag(inode)); |
| 111 | if (ret != 0) { |
| 112 | if (ret == -ENOENT) { |
| 113 | ret = -ENODATA; |
| 114 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 115 | "orangefs_inode_getxattr: inode %pU key %s" |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 116 | " does not exist!\n", |
| 117 | get_khandle_from_ino(inode), |
| 118 | (char *)new_op->upcall.req.getxattr.key); |
| 119 | } |
| 120 | goto out_release_op; |
| 121 | } |
| 122 | |
| 123 | /* |
| 124 | * Length returned includes null terminator. |
| 125 | */ |
| 126 | length = new_op->downcall.resp.getxattr.val_sz; |
| 127 | |
| 128 | /* |
| 129 | * Just return the length of the queried attribute. |
| 130 | */ |
| 131 | if (size == 0) { |
| 132 | ret = length; |
| 133 | goto out_release_op; |
| 134 | } |
| 135 | |
| 136 | /* |
| 137 | * Check to see if key length is > provided buffer size. |
| 138 | */ |
| 139 | if (length > size) { |
| 140 | ret = -ERANGE; |
| 141 | goto out_release_op; |
| 142 | } |
| 143 | |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 144 | memcpy(buffer, new_op->downcall.resp.getxattr.val, length); |
Mike Marshall | a9bb3ba | 2016-04-06 11:19:37 -0400 | [diff] [blame] | 145 | memset(buffer + length, 0, size - length); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 146 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 147 | "orangefs_inode_getxattr: inode %pU " |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 148 | "key %s key_sz %d, val_len %d\n", |
| 149 | get_khandle_from_ino(inode), |
| 150 | (char *)new_op-> |
| 151 | upcall.req.getxattr.key, |
| 152 | (int)new_op-> |
| 153 | upcall.req.getxattr.key_sz, |
| 154 | (int)ret); |
| 155 | |
| 156 | ret = length; |
| 157 | |
| 158 | out_release_op: |
| 159 | op_release(new_op); |
| 160 | out_unlock: |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 161 | up_read(&orangefs_inode->xattr_sem); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 162 | return ret; |
| 163 | } |
| 164 | |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 165 | static int orangefs_inode_removexattr(struct inode *inode, const char *name, |
| 166 | int flags) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 167 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 168 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 169 | struct orangefs_kernel_op_s *new_op = NULL; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 170 | int ret = -ENOMEM; |
| 171 | |
Martin Brandenburg | e675c5e | 2017-04-25 15:37:57 -0400 | [diff] [blame] | 172 | if (strlen(name) > ORANGEFS_MAX_XATTR_NAMELEN) |
| 173 | return -EINVAL; |
| 174 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 175 | down_write(&orangefs_inode->xattr_sem); |
| 176 | new_op = op_alloc(ORANGEFS_VFS_OP_REMOVEXATTR); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 177 | if (!new_op) |
| 178 | goto out_unlock; |
| 179 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 180 | new_op->upcall.req.removexattr.refn = orangefs_inode->refn; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 181 | /* |
| 182 | * NOTE: Although keys are meant to be NULL terminated |
| 183 | * textual strings, I am going to explicitly pass the |
| 184 | * length just in case we change this later on... |
| 185 | */ |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 186 | strcpy(new_op->upcall.req.removexattr.key, name); |
| 187 | new_op->upcall.req.removexattr.key_sz = strlen(name) + 1; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 188 | |
| 189 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 190 | "orangefs_inode_removexattr: key %s, key_sz %d\n", |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 191 | (char *)new_op->upcall.req.removexattr.key, |
| 192 | (int)new_op->upcall.req.removexattr.key_sz); |
| 193 | |
| 194 | ret = service_operation(new_op, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 195 | "orangefs_inode_removexattr", |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 196 | get_interruptible_flag(inode)); |
| 197 | if (ret == -ENOENT) { |
| 198 | /* |
| 199 | * Request to replace a non-existent attribute is an error. |
| 200 | */ |
| 201 | if (flags & XATTR_REPLACE) |
| 202 | ret = -ENODATA; |
| 203 | else |
| 204 | ret = 0; |
| 205 | } |
| 206 | |
| 207 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 208 | "orangefs_inode_removexattr: returning %d\n", ret); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 209 | |
| 210 | op_release(new_op); |
| 211 | out_unlock: |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 212 | up_write(&orangefs_inode->xattr_sem); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 213 | return ret; |
| 214 | } |
| 215 | |
| 216 | /* |
| 217 | * Tries to set an attribute for a given key on a file. |
| 218 | * |
| 219 | * Returns a -ve number on error and 0 on success. Key is text, but value |
| 220 | * can be binary! |
| 221 | */ |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 222 | int orangefs_inode_setxattr(struct inode *inode, const char *name, |
| 223 | const void *value, size_t size, int flags) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 224 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 225 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 226 | struct orangefs_kernel_op_s *new_op; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 227 | int internal_flag = 0; |
| 228 | int ret = -ENOMEM; |
| 229 | |
| 230 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 231 | "%s: name %s, buffer_size %zd\n", |
| 232 | __func__, name, size); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 233 | |
Martin Brandenburg | e675c5e | 2017-04-25 15:37:57 -0400 | [diff] [blame] | 234 | if (size > ORANGEFS_MAX_XATTR_VALUELEN) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 235 | return -EINVAL; |
Martin Brandenburg | e675c5e | 2017-04-25 15:37:57 -0400 | [diff] [blame] | 236 | if (strlen(name) > ORANGEFS_MAX_XATTR_NAMELEN) |
| 237 | return -EINVAL; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 238 | |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 239 | internal_flag = convert_to_internal_xattr_flags(flags); |
| 240 | |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 241 | /* This is equivalent to a removexattr */ |
| 242 | if (size == 0 && value == NULL) { |
| 243 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 244 | "removing xattr (%s)\n", |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 245 | name); |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 246 | return orangefs_inode_removexattr(inode, name, flags); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | gossip_debug(GOSSIP_XATTR_DEBUG, |
| 250 | "setxattr on inode %pU, name %s\n", |
| 251 | get_khandle_from_ino(inode), |
| 252 | name); |
| 253 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 254 | down_write(&orangefs_inode->xattr_sem); |
| 255 | new_op = op_alloc(ORANGEFS_VFS_OP_SETXATTR); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 256 | if (!new_op) |
| 257 | goto out_unlock; |
| 258 | |
| 259 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 260 | new_op->upcall.req.setxattr.refn = orangefs_inode->refn; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 261 | new_op->upcall.req.setxattr.flags = internal_flag; |
| 262 | /* |
| 263 | * NOTE: Although keys are meant to be NULL terminated textual |
| 264 | * strings, I am going to explicitly pass the length just in |
| 265 | * case we change this later on... |
| 266 | */ |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 267 | strcpy(new_op->upcall.req.setxattr.keyval.key, name); |
| 268 | new_op->upcall.req.setxattr.keyval.key_sz = strlen(name) + 1; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 269 | memcpy(new_op->upcall.req.setxattr.keyval.val, value, size); |
| 270 | new_op->upcall.req.setxattr.keyval.val_sz = size; |
| 271 | |
| 272 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 273 | "orangefs_inode_setxattr: key %s, key_sz %d " |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 274 | " value size %zd\n", |
| 275 | (char *)new_op->upcall.req.setxattr.keyval.key, |
| 276 | (int)new_op->upcall.req.setxattr.keyval.key_sz, |
| 277 | size); |
| 278 | |
| 279 | ret = service_operation(new_op, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 280 | "orangefs_inode_setxattr", |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 281 | get_interruptible_flag(inode)); |
| 282 | |
| 283 | gossip_debug(GOSSIP_XATTR_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 284 | "orangefs_inode_setxattr: returning %d\n", |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 285 | ret); |
| 286 | |
| 287 | /* when request is serviced properly, free req op struct */ |
| 288 | op_release(new_op); |
| 289 | out_unlock: |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 290 | up_write(&orangefs_inode->xattr_sem); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 291 | return ret; |
| 292 | } |
| 293 | |
| 294 | /* |
| 295 | * Tries to get a specified object's keys into a user-specified buffer of a |
| 296 | * given size. Note that like the previous instances of xattr routines, this |
| 297 | * also allows you to pass in a NULL pointer and 0 size to probe the size for |
| 298 | * subsequent memory allocations. Thus our return value is always the size of |
| 299 | * all the keys unless there were errors in fetching the keys! |
| 300 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 301 | ssize_t orangefs_listxattr(struct dentry *dentry, char *buffer, size_t size) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 302 | { |
| 303 | struct inode *inode = dentry->d_inode; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 304 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 305 | struct orangefs_kernel_op_s *new_op; |
| 306 | __u64 token = ORANGEFS_ITERATE_START; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 307 | ssize_t ret = -ENOMEM; |
| 308 | ssize_t total = 0; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 309 | int count_keys = 0; |
| 310 | int key_size; |
| 311 | int i = 0; |
Mike Marshall | 62441fa | 2015-12-17 16:11:40 -0500 | [diff] [blame] | 312 | int returned_count = 0; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 313 | |
| 314 | if (size > 0 && buffer == NULL) { |
| 315 | gossip_err("%s: bogus NULL pointers\n", __func__); |
| 316 | return -EINVAL; |
| 317 | } |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 318 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 319 | down_read(&orangefs_inode->xattr_sem); |
| 320 | new_op = op_alloc(ORANGEFS_VFS_OP_LISTXATTR); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 321 | if (!new_op) |
| 322 | goto out_unlock; |
| 323 | |
| 324 | if (buffer && size > 0) |
| 325 | memset(buffer, 0, size); |
| 326 | |
| 327 | try_again: |
| 328 | key_size = 0; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 329 | new_op->upcall.req.listxattr.refn = orangefs_inode->refn; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 330 | new_op->upcall.req.listxattr.token = token; |
| 331 | new_op->upcall.req.listxattr.requested_count = |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 332 | (size == 0) ? 0 : ORANGEFS_MAX_XATTR_LISTLEN; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 333 | ret = service_operation(new_op, __func__, |
| 334 | get_interruptible_flag(inode)); |
| 335 | if (ret != 0) |
| 336 | goto done; |
| 337 | |
| 338 | if (size == 0) { |
| 339 | /* |
| 340 | * This is a bit of a big upper limit, but I did not want to |
| 341 | * spend too much time getting this correct, since users end |
| 342 | * up allocating memory rather than us... |
| 343 | */ |
| 344 | total = new_op->downcall.resp.listxattr.returned_count * |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 345 | ORANGEFS_MAX_XATTR_NAMELEN; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 346 | goto done; |
| 347 | } |
| 348 | |
Mike Marshall | 62441fa | 2015-12-17 16:11:40 -0500 | [diff] [blame] | 349 | returned_count = new_op->downcall.resp.listxattr.returned_count; |
| 350 | if (returned_count < 0 || |
Martin Brandenburg | a956af3 | 2017-04-25 15:37:56 -0400 | [diff] [blame] | 351 | returned_count > ORANGEFS_MAX_XATTR_LISTLEN) { |
Mike Marshall | 62441fa | 2015-12-17 16:11:40 -0500 | [diff] [blame] | 352 | gossip_err("%s: impossible value for returned_count:%d:\n", |
| 353 | __func__, |
| 354 | returned_count); |
Martin Brandenburg | 02a5cc5 | 2016-03-16 14:01:43 -0400 | [diff] [blame] | 355 | ret = -EIO; |
Mike Marshall | 62441fa | 2015-12-17 16:11:40 -0500 | [diff] [blame] | 356 | goto done; |
| 357 | } |
| 358 | |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 359 | /* |
| 360 | * Check to see how much can be fit in the buffer. Fit only whole keys. |
| 361 | */ |
Mike Marshall | 62441fa | 2015-12-17 16:11:40 -0500 | [diff] [blame] | 362 | for (i = 0; i < returned_count; i++) { |
Martin Brandenburg | 02a5cc5 | 2016-03-16 14:01:43 -0400 | [diff] [blame] | 363 | if (new_op->downcall.resp.listxattr.lengths[i] < 0 || |
| 364 | new_op->downcall.resp.listxattr.lengths[i] > |
| 365 | ORANGEFS_MAX_XATTR_NAMELEN) { |
| 366 | gossip_err("%s: impossible value for lengths[%d]\n", |
| 367 | __func__, |
| 368 | new_op->downcall.resp.listxattr.lengths[i]); |
| 369 | ret = -EIO; |
| 370 | goto done; |
| 371 | } |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 372 | if (total + new_op->downcall.resp.listxattr.lengths[i] > size) |
| 373 | goto done; |
| 374 | |
| 375 | /* |
| 376 | * Since many dumb programs try to setxattr() on our reserved |
| 377 | * xattrs this is a feeble attempt at defeating those by not |
| 378 | * listing them in the output of listxattr.. sigh |
| 379 | */ |
| 380 | if (is_reserved_key(new_op->downcall.resp.listxattr.key + |
| 381 | key_size, |
| 382 | new_op->downcall.resp. |
| 383 | listxattr.lengths[i])) { |
| 384 | gossip_debug(GOSSIP_XATTR_DEBUG, "Copying key %d -> %s\n", |
| 385 | i, new_op->downcall.resp.listxattr.key + |
| 386 | key_size); |
| 387 | memcpy(buffer + total, |
| 388 | new_op->downcall.resp.listxattr.key + key_size, |
| 389 | new_op->downcall.resp.listxattr.lengths[i]); |
| 390 | total += new_op->downcall.resp.listxattr.lengths[i]; |
| 391 | count_keys++; |
| 392 | } else { |
| 393 | gossip_debug(GOSSIP_XATTR_DEBUG, "[RESERVED] key %d -> %s\n", |
| 394 | i, new_op->downcall.resp.listxattr.key + |
| 395 | key_size); |
| 396 | } |
| 397 | key_size += new_op->downcall.resp.listxattr.lengths[i]; |
| 398 | } |
| 399 | |
| 400 | /* |
| 401 | * Since the buffer was large enough, we might have to continue |
| 402 | * fetching more keys! |
| 403 | */ |
| 404 | token = new_op->downcall.resp.listxattr.token; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 405 | if (token != ORANGEFS_ITERATE_END) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 406 | goto try_again; |
| 407 | |
| 408 | done: |
| 409 | gossip_debug(GOSSIP_XATTR_DEBUG, "%s: returning %d" |
| 410 | " [size of buffer %ld] (filled in %d keys)\n", |
| 411 | __func__, |
| 412 | ret ? (int)ret : (int)total, |
| 413 | (long)size, |
| 414 | count_keys); |
| 415 | op_release(new_op); |
| 416 | if (ret == 0) |
| 417 | ret = total; |
| 418 | out_unlock: |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 419 | up_read(&orangefs_inode->xattr_sem); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 420 | return ret; |
| 421 | } |
| 422 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 423 | static int orangefs_xattr_set_default(const struct xattr_handler *handler, |
Al Viro | 5930122 | 2016-05-27 10:19:30 -0400 | [diff] [blame] | 424 | struct dentry *unused, |
| 425 | struct inode *inode, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 426 | const char *name, |
| 427 | const void *buffer, |
| 428 | size_t size, |
| 429 | int flags) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 430 | { |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 431 | return orangefs_inode_setxattr(inode, name, buffer, size, flags); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 432 | } |
| 433 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 434 | static int orangefs_xattr_get_default(const struct xattr_handler *handler, |
Al Viro | b296821 | 2016-04-10 20:48:24 -0400 | [diff] [blame] | 435 | struct dentry *unused, |
| 436 | struct inode *inode, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 437 | const char *name, |
| 438 | void *buffer, |
| 439 | size_t size) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 440 | { |
Andreas Gruenbacher | d373a71 | 2016-06-04 11:02:33 +0200 | [diff] [blame] | 441 | return orangefs_inode_getxattr(inode, name, buffer, size); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 442 | |
| 443 | } |
| 444 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 445 | static struct xattr_handler orangefs_xattr_default_handler = { |
Andreas Gruenbacher | 972a734 | 2016-05-30 11:25:59 +0200 | [diff] [blame] | 446 | .prefix = "", /* match any name => handlers called with full name */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 447 | .get = orangefs_xattr_get_default, |
| 448 | .set = orangefs_xattr_set_default, |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 449 | }; |
| 450 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 451 | const struct xattr_handler *orangefs_xattr_handlers[] = { |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 452 | &posix_acl_access_xattr_handler, |
| 453 | &posix_acl_default_xattr_handler, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 454 | &orangefs_xattr_default_handler, |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 455 | NULL |
| 456 | }; |