Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2008, Christoph Hellwig |
| 4 | * All Rights Reserved. |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 5 | */ |
| 6 | #include "xfs.h" |
Darrick J. Wong | 5467b34 | 2019-06-28 19:25:35 -0700 | [diff] [blame] | 7 | #include "xfs_shared.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 8 | #include "xfs_format.h" |
Dave Chinner | 6943283 | 2013-08-12 20:49:23 +1000 | [diff] [blame] | 9 | #include "xfs_log_format.h" |
Dave Chinner | 7fd36c4 | 2013-08-12 20:49:32 +1000 | [diff] [blame] | 10 | #include "xfs_trans_resv.h" |
Dave Chinner | 0a8aa19 | 2013-06-05 12:09:10 +1000 | [diff] [blame] | 11 | #include "xfs_mount.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 12 | #include "xfs_inode.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 13 | #include "xfs_attr.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 14 | #include "xfs_trace.h" |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 15 | #include "xfs_error.h" |
Darrick J. Wong | 5f213dd | 2019-11-06 17:19:33 -0800 | [diff] [blame] | 16 | #include "xfs_acl.h" |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 17 | |
Darrick J. Wong | 5f213dd | 2019-11-06 17:19:33 -0800 | [diff] [blame] | 18 | #include <linux/posix_acl_xattr.h> |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 19 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 20 | /* |
| 21 | * Locking scheme: |
| 22 | * - all ACL updates are protected by inode->i_mutex, which is taken before |
| 23 | * calling into this file. |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | STATIC struct posix_acl * |
Dave Chinner | 0a8aa19 | 2013-06-05 12:09:10 +1000 | [diff] [blame] | 27 | xfs_acl_from_disk( |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 28 | struct xfs_mount *mp, |
Andreas Gruenbacher | 86a21c7 | 2015-11-03 12:41:59 +1100 | [diff] [blame] | 29 | const struct xfs_acl *aclp, |
| 30 | int len, |
| 31 | int max_entries) |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 32 | { |
| 33 | struct posix_acl_entry *acl_e; |
| 34 | struct posix_acl *acl; |
Andreas Gruenbacher | 86a21c7 | 2015-11-03 12:41:59 +1100 | [diff] [blame] | 35 | const struct xfs_acl_entry *ace; |
Xi Wang | 093019c | 2011-12-12 21:55:52 +0000 | [diff] [blame] | 36 | unsigned int count, i; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 37 | |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 38 | if (len < sizeof(*aclp)) { |
| 39 | XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, aclp, |
| 40 | len); |
Andreas Gruenbacher | 86a21c7 | 2015-11-03 12:41:59 +1100 | [diff] [blame] | 41 | return ERR_PTR(-EFSCORRUPTED); |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 42 | } |
| 43 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 44 | count = be32_to_cpu(aclp->acl_cnt); |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 45 | if (count > max_entries || XFS_ACL_SIZE(count) != len) { |
| 46 | XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, aclp, |
| 47 | len); |
Christoph Hellwig | fa8b18e | 2011-11-20 15:35:32 +0000 | [diff] [blame] | 48 | return ERR_PTR(-EFSCORRUPTED); |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 49 | } |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 50 | |
| 51 | acl = posix_acl_alloc(count, GFP_KERNEL); |
| 52 | if (!acl) |
| 53 | return ERR_PTR(-ENOMEM); |
| 54 | |
| 55 | for (i = 0; i < count; i++) { |
| 56 | acl_e = &acl->a_entries[i]; |
| 57 | ace = &aclp->acl_entry[i]; |
| 58 | |
| 59 | /* |
| 60 | * The tag is 32 bits on disk and 16 bits in core. |
| 61 | * |
| 62 | * Because every access to it goes through the core |
| 63 | * format first this is not a problem. |
| 64 | */ |
| 65 | acl_e->e_tag = be32_to_cpu(ace->ae_tag); |
| 66 | acl_e->e_perm = be16_to_cpu(ace->ae_perm); |
| 67 | |
| 68 | switch (acl_e->e_tag) { |
| 69 | case ACL_USER: |
Christoph Hellwig | ba8adad | 2020-02-21 08:31:27 -0800 | [diff] [blame^] | 70 | acl_e->e_uid = make_kuid(&init_user_ns, |
| 71 | be32_to_cpu(ace->ae_id)); |
Dwight Engen | 288bbe0 | 2013-08-15 14:07:59 -0400 | [diff] [blame] | 72 | break; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 73 | case ACL_GROUP: |
Christoph Hellwig | ba8adad | 2020-02-21 08:31:27 -0800 | [diff] [blame^] | 74 | acl_e->e_gid = make_kgid(&init_user_ns, |
| 75 | be32_to_cpu(ace->ae_id)); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 76 | break; |
| 77 | case ACL_USER_OBJ: |
| 78 | case ACL_GROUP_OBJ: |
| 79 | case ACL_MASK: |
| 80 | case ACL_OTHER: |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 81 | break; |
| 82 | default: |
| 83 | goto fail; |
| 84 | } |
| 85 | } |
| 86 | return acl; |
| 87 | |
| 88 | fail: |
| 89 | posix_acl_release(acl); |
| 90 | return ERR_PTR(-EINVAL); |
| 91 | } |
| 92 | |
| 93 | STATIC void |
| 94 | xfs_acl_to_disk(struct xfs_acl *aclp, const struct posix_acl *acl) |
| 95 | { |
| 96 | const struct posix_acl_entry *acl_e; |
| 97 | struct xfs_acl_entry *ace; |
| 98 | int i; |
| 99 | |
| 100 | aclp->acl_cnt = cpu_to_be32(acl->a_count); |
| 101 | for (i = 0; i < acl->a_count; i++) { |
| 102 | ace = &aclp->acl_entry[i]; |
| 103 | acl_e = &acl->a_entries[i]; |
| 104 | |
| 105 | ace->ae_tag = cpu_to_be32(acl_e->e_tag); |
Dwight Engen | 288bbe0 | 2013-08-15 14:07:59 -0400 | [diff] [blame] | 106 | switch (acl_e->e_tag) { |
| 107 | case ACL_USER: |
Christoph Hellwig | ba8adad | 2020-02-21 08:31:27 -0800 | [diff] [blame^] | 108 | ace->ae_id = cpu_to_be32( |
| 109 | from_kuid(&init_user_ns, acl_e->e_uid)); |
Dwight Engen | 288bbe0 | 2013-08-15 14:07:59 -0400 | [diff] [blame] | 110 | break; |
| 111 | case ACL_GROUP: |
Christoph Hellwig | ba8adad | 2020-02-21 08:31:27 -0800 | [diff] [blame^] | 112 | ace->ae_id = cpu_to_be32( |
| 113 | from_kgid(&init_user_ns, acl_e->e_gid)); |
Dwight Engen | 288bbe0 | 2013-08-15 14:07:59 -0400 | [diff] [blame] | 114 | break; |
| 115 | default: |
| 116 | ace->ae_id = cpu_to_be32(ACL_UNDEFINED_ID); |
| 117 | break; |
| 118 | } |
| 119 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 120 | ace->ae_perm = cpu_to_be16(acl_e->e_perm); |
| 121 | } |
| 122 | } |
| 123 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 124 | struct posix_acl * |
| 125 | xfs_get_acl(struct inode *inode, int type) |
| 126 | { |
| 127 | struct xfs_inode *ip = XFS_I(inode); |
Christoph Hellwig | 2401dc2 | 2013-12-20 05:16:50 -0800 | [diff] [blame] | 128 | struct posix_acl *acl = NULL; |
Dave Chinner | ddbca70 | 2019-08-29 09:04:10 -0700 | [diff] [blame] | 129 | struct xfs_acl *xfs_acl = NULL; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 130 | unsigned char *ea_name; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 131 | int error; |
Dave Chinner | 0a8aa19 | 2013-06-05 12:09:10 +1000 | [diff] [blame] | 132 | int len; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 133 | |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 134 | trace_xfs_get_acl(ip); |
| 135 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 136 | switch (type) { |
| 137 | case ACL_TYPE_ACCESS: |
| 138 | ea_name = SGI_ACL_FILE; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 139 | break; |
| 140 | case ACL_TYPE_DEFAULT: |
| 141 | ea_name = SGI_ACL_DEFAULT; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 142 | break; |
| 143 | default: |
Al Viro | 1cbd20d | 2009-06-09 13:29:39 -0400 | [diff] [blame] | 144 | BUG(); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 145 | } |
| 146 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 147 | /* |
| 148 | * If we have a cached ACLs value just return it, not need to |
| 149 | * go out to the disk. |
| 150 | */ |
Dave Chinner | 0a8aa19 | 2013-06-05 12:09:10 +1000 | [diff] [blame] | 151 | len = XFS_ACL_MAX_SIZE(ip->i_mount); |
Allison Henderson | d29f781 | 2020-01-07 15:26:15 -0800 | [diff] [blame] | 152 | error = xfs_attr_get(ip, ea_name, strlen(ea_name), |
| 153 | (unsigned char **)&xfs_acl, &len, |
Dave Chinner | ddbca70 | 2019-08-29 09:04:10 -0700 | [diff] [blame] | 154 | ATTR_ALLOC | ATTR_ROOT); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 155 | if (error) { |
| 156 | /* |
| 157 | * If the attribute doesn't exist make sure we have a negative |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 158 | * cache entry, for any other error assume it is transient. |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 159 | */ |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 160 | if (error != -ENOATTR) |
| 161 | acl = ERR_PTR(error); |
| 162 | } else { |
Darrick J. Wong | a5155b8 | 2019-11-02 09:40:53 -0700 | [diff] [blame] | 163 | acl = xfs_acl_from_disk(ip->i_mount, xfs_acl, len, |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 164 | XFS_ACL_MAX_ENTRIES(ip->i_mount)); |
Dave Chinner | ddbca70 | 2019-08-29 09:04:10 -0700 | [diff] [blame] | 165 | kmem_free(xfs_acl); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 166 | } |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 167 | return acl; |
| 168 | } |
| 169 | |
Jan Kara | 8ba3587 | 2017-06-26 08:48:18 -0700 | [diff] [blame] | 170 | int |
| 171 | __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type) |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 172 | { |
| 173 | struct xfs_inode *ip = XFS_I(inode); |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 174 | unsigned char *ea_name; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 175 | int error; |
| 176 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 177 | switch (type) { |
| 178 | case ACL_TYPE_ACCESS: |
| 179 | ea_name = SGI_ACL_FILE; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 180 | break; |
| 181 | case ACL_TYPE_DEFAULT: |
| 182 | if (!S_ISDIR(inode->i_mode)) |
| 183 | return acl ? -EACCES : 0; |
| 184 | ea_name = SGI_ACL_DEFAULT; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 185 | break; |
| 186 | default: |
| 187 | return -EINVAL; |
| 188 | } |
| 189 | |
| 190 | if (acl) { |
| 191 | struct xfs_acl *xfs_acl; |
Dave Chinner | 0a8aa19 | 2013-06-05 12:09:10 +1000 | [diff] [blame] | 192 | int len = XFS_ACL_MAX_SIZE(ip->i_mount); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 193 | |
Tetsuo Handa | 707e0dd | 2019-08-26 12:06:22 -0700 | [diff] [blame] | 194 | xfs_acl = kmem_zalloc_large(len, 0); |
Dave Chinner | fdd3cce | 2013-09-02 20:53:00 +1000 | [diff] [blame] | 195 | if (!xfs_acl) |
| 196 | return -ENOMEM; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 197 | |
| 198 | xfs_acl_to_disk(xfs_acl, acl); |
Dave Chinner | 0a8aa19 | 2013-06-05 12:09:10 +1000 | [diff] [blame] | 199 | |
| 200 | /* subtract away the unused acl entries */ |
| 201 | len -= sizeof(struct xfs_acl_entry) * |
| 202 | (XFS_ACL_MAX_ENTRIES(ip->i_mount) - acl->a_count); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 203 | |
Allison Henderson | d29f781 | 2020-01-07 15:26:15 -0800 | [diff] [blame] | 204 | error = xfs_attr_set(ip, ea_name, strlen(ea_name), |
| 205 | (unsigned char *)xfs_acl, len, ATTR_ROOT); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 206 | |
Dave Chinner | fdd3cce | 2013-09-02 20:53:00 +1000 | [diff] [blame] | 207 | kmem_free(xfs_acl); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 208 | } else { |
| 209 | /* |
| 210 | * A NULL ACL argument means we want to remove the ACL. |
| 211 | */ |
Allison Henderson | d29f781 | 2020-01-07 15:26:15 -0800 | [diff] [blame] | 212 | error = xfs_attr_remove(ip, ea_name, |
| 213 | strlen(ea_name), |
| 214 | ATTR_ROOT); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 215 | |
| 216 | /* |
| 217 | * If the attribute didn't exist to start with that's fine. |
| 218 | */ |
| 219 | if (error == -ENOATTR) |
| 220 | error = 0; |
| 221 | } |
| 222 | |
| 223 | if (!error) |
Al Viro | 1cbd20d | 2009-06-09 13:29:39 -0400 | [diff] [blame] | 224 | set_cached_acl(inode, type, acl); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 225 | return error; |
| 226 | } |
| 227 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 228 | static int |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 229 | xfs_set_mode(struct inode *inode, umode_t mode) |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 230 | { |
| 231 | int error = 0; |
| 232 | |
| 233 | if (mode != inode->i_mode) { |
| 234 | struct iattr iattr; |
| 235 | |
Christoph Hellwig | d6d59ba | 2009-12-23 16:09:13 +0000 | [diff] [blame] | 236 | iattr.ia_valid = ATTR_MODE | ATTR_CTIME; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 237 | iattr.ia_mode = mode; |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 238 | iattr.ia_ctime = current_time(inode); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 239 | |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 240 | error = xfs_setattr_nonsize(XFS_I(inode), &iattr, XFS_ATTR_NOACL); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | return error; |
| 244 | } |
| 245 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 246 | int |
Christoph Hellwig | 2401dc2 | 2013-12-20 05:16:50 -0800 | [diff] [blame] | 247 | xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type) |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 248 | { |
Dave Chinner | 67f2ffe | 2017-10-09 11:37:23 -0700 | [diff] [blame] | 249 | umode_t mode; |
| 250 | bool set_mode = false; |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 251 | int error = 0; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 252 | |
Christoph Hellwig | 2401dc2 | 2013-12-20 05:16:50 -0800 | [diff] [blame] | 253 | if (!acl) |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 254 | goto set_acl; |
| 255 | |
Jie Liu | 4ae69fe | 2014-02-07 15:26:11 +1100 | [diff] [blame] | 256 | error = -E2BIG; |
Dave Chinner | 0a8aa19 | 2013-06-05 12:09:10 +1000 | [diff] [blame] | 257 | if (acl->a_count > XFS_ACL_MAX_ENTRIES(XFS_M(inode->i_sb))) |
Christoph Hellwig | 2401dc2 | 2013-12-20 05:16:50 -0800 | [diff] [blame] | 258 | return error; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 259 | |
| 260 | if (type == ACL_TYPE_ACCESS) { |
Jan Kara | 0739310 | 2016-09-19 17:39:09 +0200 | [diff] [blame] | 261 | error = posix_acl_update_mode(inode, &mode, &acl); |
| 262 | if (error) |
| 263 | return error; |
Dave Chinner | 67f2ffe | 2017-10-09 11:37:23 -0700 | [diff] [blame] | 264 | set_mode = true; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | set_acl: |
Dave Chinner | 67f2ffe | 2017-10-09 11:37:23 -0700 | [diff] [blame] | 268 | error = __xfs_set_acl(inode, acl, type); |
| 269 | if (error) |
| 270 | return error; |
| 271 | |
| 272 | /* |
| 273 | * We set the mode after successfully updating the ACL xattr because the |
| 274 | * xattr update can fail at ENOSPC and we don't want to change the mode |
| 275 | * if the ACL update hasn't been applied. |
| 276 | */ |
| 277 | if (set_mode) |
| 278 | error = xfs_set_mode(inode, mode); |
| 279 | |
| 280 | return error; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 281 | } |