Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2008 Christoph Hellwig. |
| 4 | * Portions Copyright (C) 2000-2008 Silicon Graphics, Inc. |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include "xfs.h" |
Darrick J. Wong | 5467b34 | 2019-06-28 19:25:35 -0700 | [diff] [blame] | 8 | #include "xfs_shared.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 9 | #include "xfs_format.h" |
Dave Chinner | 6943283 | 2013-08-12 20:49:23 +1000 | [diff] [blame] | 10 | #include "xfs_log_format.h" |
Dave Chinner | 5706278 | 2013-10-15 09:17:51 +1100 | [diff] [blame] | 11 | #include "xfs_da_format.h" |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 12 | #include "xfs_inode.h" |
| 13 | #include "xfs_attr.h" |
Darrick J. Wong | 5f213dd | 2019-11-06 17:19:33 -0800 | [diff] [blame] | 14 | #include "xfs_acl.h" |
Christoph Hellwig | a254462 | 2020-02-26 17:30:33 -0800 | [diff] [blame] | 15 | #include "xfs_da_btree.h" |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 16 | |
| 17 | #include <linux/posix_acl_xattr.h> |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 18 | |
| 19 | |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 20 | static int |
Al Viro | b296821 | 2016-04-10 20:48:24 -0400 | [diff] [blame] | 21 | xfs_xattr_get(const struct xattr_handler *handler, struct dentry *unused, |
| 22 | struct inode *inode, const char *name, void *value, size_t size) |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 23 | { |
Christoph Hellwig | e5171d7 | 2020-02-26 17:30:34 -0800 | [diff] [blame] | 24 | struct xfs_da_args args = { |
| 25 | .dp = XFS_I(inode), |
Christoph Hellwig | d5f0f49 | 2020-02-26 17:30:42 -0800 | [diff] [blame] | 26 | .attr_filter = handler->flags, |
Christoph Hellwig | e5171d7 | 2020-02-26 17:30:34 -0800 | [diff] [blame] | 27 | .name = name, |
| 28 | .namelen = strlen(name), |
| 29 | .value = value, |
| 30 | .valuelen = size, |
| 31 | }; |
| 32 | int error; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 33 | |
Christoph Hellwig | e5171d7 | 2020-02-26 17:30:34 -0800 | [diff] [blame] | 34 | error = xfs_attr_get(&args); |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 35 | if (error) |
| 36 | return error; |
Christoph Hellwig | e5171d7 | 2020-02-26 17:30:34 -0800 | [diff] [blame] | 37 | return args.valuelen; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | static int |
Al Viro | 5930122 | 2016-05-27 10:19:30 -0400 | [diff] [blame] | 41 | xfs_xattr_set(const struct xattr_handler *handler, struct dentry *unused, |
| 42 | struct inode *inode, const char *name, const void *value, |
| 43 | size_t size, int flags) |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 44 | { |
Christoph Hellwig | a254462 | 2020-02-26 17:30:33 -0800 | [diff] [blame] | 45 | struct xfs_da_args args = { |
| 46 | .dp = XFS_I(inode), |
Christoph Hellwig | d5f0f49 | 2020-02-26 17:30:42 -0800 | [diff] [blame] | 47 | .attr_filter = handler->flags, |
| 48 | .attr_flags = flags, |
Christoph Hellwig | a254462 | 2020-02-26 17:30:33 -0800 | [diff] [blame] | 49 | .name = name, |
| 50 | .namelen = strlen(name), |
| 51 | .value = (void *)value, |
| 52 | .valuelen = size, |
| 53 | }; |
Brian Foster | 67d8e04 | 2015-11-03 12:40:59 +1100 | [diff] [blame] | 54 | int error; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 55 | |
Christoph Hellwig | a254462 | 2020-02-26 17:30:33 -0800 | [diff] [blame] | 56 | error = xfs_attr_set(&args); |
Christoph Hellwig | d5f0f49 | 2020-02-26 17:30:42 -0800 | [diff] [blame] | 57 | if (!error && (handler->flags & XFS_ATTR_ROOT)) |
Christoph Hellwig | 5a3930e | 2020-02-26 17:30:41 -0800 | [diff] [blame] | 58 | xfs_forget_acl(inode, name); |
Brian Foster | 67d8e04 | 2015-11-03 12:40:59 +1100 | [diff] [blame] | 59 | return error; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 60 | } |
| 61 | |
Stephen Hemminger | 46e5876 | 2010-05-13 17:53:20 -0700 | [diff] [blame] | 62 | static const struct xattr_handler xfs_xattr_user_handler = { |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 63 | .prefix = XATTR_USER_PREFIX, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 64 | .flags = 0, /* no flags implies user namespace */ |
| 65 | .get = xfs_xattr_get, |
| 66 | .set = xfs_xattr_set, |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 67 | }; |
| 68 | |
Stephen Hemminger | 46e5876 | 2010-05-13 17:53:20 -0700 | [diff] [blame] | 69 | static const struct xattr_handler xfs_xattr_trusted_handler = { |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 70 | .prefix = XATTR_TRUSTED_PREFIX, |
Christoph Hellwig | d5f0f49 | 2020-02-26 17:30:42 -0800 | [diff] [blame] | 71 | .flags = XFS_ATTR_ROOT, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 72 | .get = xfs_xattr_get, |
| 73 | .set = xfs_xattr_set, |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 74 | }; |
| 75 | |
Stephen Hemminger | 46e5876 | 2010-05-13 17:53:20 -0700 | [diff] [blame] | 76 | static const struct xattr_handler xfs_xattr_security_handler = { |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 77 | .prefix = XATTR_SECURITY_PREFIX, |
Christoph Hellwig | d5f0f49 | 2020-02-26 17:30:42 -0800 | [diff] [blame] | 78 | .flags = XFS_ATTR_SECURE, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 79 | .get = xfs_xattr_get, |
| 80 | .set = xfs_xattr_set, |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 81 | }; |
| 82 | |
Stephen Hemminger | 46e5876 | 2010-05-13 17:53:20 -0700 | [diff] [blame] | 83 | const struct xattr_handler *xfs_xattr_handlers[] = { |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 84 | &xfs_xattr_user_handler, |
| 85 | &xfs_xattr_trusted_handler, |
| 86 | &xfs_xattr_security_handler, |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 87 | #ifdef CONFIG_XFS_POSIX_ACL |
Christoph Hellwig | 2401dc2 | 2013-12-20 05:16:50 -0800 | [diff] [blame] | 88 | &posix_acl_access_xattr_handler, |
| 89 | &posix_acl_default_xattr_handler, |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 90 | #endif |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 91 | NULL |
| 92 | }; |
| 93 | |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 94 | static void |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 95 | __xfs_xattr_put_listent( |
| 96 | struct xfs_attr_list_context *context, |
| 97 | char *prefix, |
| 98 | int prefix_len, |
| 99 | unsigned char *name, |
| 100 | int namelen) |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 101 | { |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 102 | char *offset; |
| 103 | int arraytop; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 104 | |
Darrick J. Wong | 3b50086 | 2019-02-13 11:15:17 -0800 | [diff] [blame] | 105 | if (context->count < 0 || context->seen_enough) |
| 106 | return; |
| 107 | |
Christoph Hellwig | a9c8c69 | 2020-02-26 17:30:37 -0800 | [diff] [blame] | 108 | if (!context->buffer) |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 109 | goto compute_size; |
| 110 | |
| 111 | arraytop = context->count + prefix_len + namelen + 1; |
| 112 | if (arraytop > context->firstu) { |
| 113 | context->count = -1; /* insufficient space */ |
Artem Savkov | 791cc43 | 2016-09-14 07:40:35 +1000 | [diff] [blame] | 114 | context->seen_enough = 1; |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 115 | return; |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 116 | } |
Christoph Hellwig | a9c8c69 | 2020-02-26 17:30:37 -0800 | [diff] [blame] | 117 | offset = context->buffer + context->count; |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 118 | strncpy(offset, prefix, prefix_len); |
| 119 | offset += prefix_len; |
| 120 | strncpy(offset, (char *)name, namelen); /* real name */ |
| 121 | offset += namelen; |
| 122 | *offset = '\0'; |
| 123 | |
| 124 | compute_size: |
| 125 | context->count += prefix_len + namelen + 1; |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 126 | return; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 127 | } |
| 128 | |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 129 | static void |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 130 | xfs_xattr_put_listent( |
| 131 | struct xfs_attr_list_context *context, |
| 132 | int flags, |
| 133 | unsigned char *name, |
| 134 | int namelen, |
Eric Sandeen | e5bd12b | 2016-04-06 07:57:32 +1000 | [diff] [blame] | 135 | int valuelen) |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 136 | { |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 137 | char *prefix; |
| 138 | int prefix_len; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 139 | |
| 140 | ASSERT(context->count >= 0); |
| 141 | |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 142 | if (flags & XFS_ATTR_ROOT) { |
| 143 | #ifdef CONFIG_XFS_POSIX_ACL |
| 144 | if (namelen == SGI_ACL_FILE_SIZE && |
| 145 | strncmp(name, SGI_ACL_FILE, |
| 146 | SGI_ACL_FILE_SIZE) == 0) { |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 147 | __xfs_xattr_put_listent( |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 148 | context, XATTR_SYSTEM_PREFIX, |
| 149 | XATTR_SYSTEM_PREFIX_LEN, |
| 150 | XATTR_POSIX_ACL_ACCESS, |
| 151 | strlen(XATTR_POSIX_ACL_ACCESS)); |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 152 | } else if (namelen == SGI_ACL_DEFAULT_SIZE && |
| 153 | strncmp(name, SGI_ACL_DEFAULT, |
| 154 | SGI_ACL_DEFAULT_SIZE) == 0) { |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 155 | __xfs_xattr_put_listent( |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 156 | context, XATTR_SYSTEM_PREFIX, |
| 157 | XATTR_SYSTEM_PREFIX_LEN, |
| 158 | XATTR_POSIX_ACL_DEFAULT, |
| 159 | strlen(XATTR_POSIX_ACL_DEFAULT)); |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 160 | } |
| 161 | #endif |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 162 | |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 163 | /* |
| 164 | * Only show root namespace entries if we are actually allowed to |
| 165 | * see them. |
| 166 | */ |
| 167 | if (!capable(CAP_SYS_ADMIN)) |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 168 | return; |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 169 | |
| 170 | prefix = XATTR_TRUSTED_PREFIX; |
| 171 | prefix_len = XATTR_TRUSTED_PREFIX_LEN; |
| 172 | } else if (flags & XFS_ATTR_SECURE) { |
| 173 | prefix = XATTR_SECURITY_PREFIX; |
| 174 | prefix_len = XATTR_SECURITY_PREFIX_LEN; |
| 175 | } else { |
| 176 | prefix = XATTR_USER_PREFIX; |
| 177 | prefix_len = XATTR_USER_PREFIX_LEN; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 178 | } |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 179 | |
Eric Sandeen | f7a136a | 2016-12-05 12:32:14 +1100 | [diff] [blame] | 180 | __xfs_xattr_put_listent(context, prefix, prefix_len, name, |
| 181 | namelen); |
| 182 | return; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | ssize_t |
Eric Sandeen | 2a6fba6 | 2016-04-06 07:57:18 +1000 | [diff] [blame] | 186 | xfs_vn_listxattr( |
| 187 | struct dentry *dentry, |
| 188 | char *data, |
| 189 | size_t size) |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 190 | { |
| 191 | struct xfs_attr_list_context context; |
Eric Sandeen | 2a6fba6 | 2016-04-06 07:57:18 +1000 | [diff] [blame] | 192 | struct inode *inode = d_inode(dentry); |
| 193 | int error; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 194 | |
| 195 | /* |
| 196 | * First read the regular on-disk attributes. |
| 197 | */ |
| 198 | memset(&context, 0, sizeof(context)); |
| 199 | context.dp = XFS_I(inode); |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 200 | context.resynch = 1; |
Christoph Hellwig | a9c8c69 | 2020-02-26 17:30:37 -0800 | [diff] [blame] | 201 | context.buffer = size ? data : NULL; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 202 | context.bufsize = size; |
| 203 | context.firstu = context.bufsize; |
Andreas Gruenbacher | 5d92b75 | 2015-12-02 14:44:40 +0100 | [diff] [blame] | 204 | context.put_listent = xfs_xattr_put_listent; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 205 | |
Christoph Hellwig | 17e1dd8 | 2020-02-26 17:30:39 -0800 | [diff] [blame] | 206 | error = xfs_attr_list(&context); |
Eric Sandeen | 2a6fba6 | 2016-04-06 07:57:18 +1000 | [diff] [blame] | 207 | if (error) |
| 208 | return error; |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 209 | if (context.count < 0) |
| 210 | return -ERANGE; |
| 211 | |
Lachlan McIlroy | f9e09f0 | 2008-06-23 13:34:09 +1000 | [diff] [blame] | 212 | return context.count; |
| 213 | } |