blob: e7314b525b19afdcc3028209d31c8e994ce3f9b8 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwigef14f0c2009-06-10 17:07:47 +02002/*
3 * Copyright (c) 2008, Christoph Hellwig
4 * All Rights Reserved.
Christoph Hellwigef14f0c2009-06-10 17:07:47 +02005 */
6#include "xfs.h"
Darrick J. Wong5467b342019-06-28 19:25:35 -07007#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +11008#include "xfs_format.h"
Dave Chinner69432832013-08-12 20:49:23 +10009#include "xfs_log_format.h"
Dave Chinner7fd36c42013-08-12 20:49:32 +100010#include "xfs_trans_resv.h"
Dave Chinner0a8aa192013-06-05 12:09:10 +100011#include "xfs_mount.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110012#include "xfs_inode.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110013#include "xfs_attr.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000014#include "xfs_trace.h"
Darrick J. Wonga5155b82019-11-02 09:40:53 -070015#include "xfs_error.h"
Darrick J. Wong5f213dd2019-11-06 17:19:33 -080016#include "xfs_acl.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020017
Darrick J. Wong5f213dd2019-11-06 17:19:33 -080018#include <linux/posix_acl_xattr.h>
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020019
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020020/*
21 * Locking scheme:
22 * - all ACL updates are protected by inode->i_mutex, which is taken before
23 * calling into this file.
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020024 */
25
26STATIC struct posix_acl *
Dave Chinner0a8aa192013-06-05 12:09:10 +100027xfs_acl_from_disk(
Darrick J. Wonga5155b82019-11-02 09:40:53 -070028 struct xfs_mount *mp,
Andreas Gruenbacher86a21c72015-11-03 12:41:59 +110029 const struct xfs_acl *aclp,
30 int len,
31 int max_entries)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020032{
33 struct posix_acl_entry *acl_e;
34 struct posix_acl *acl;
Andreas Gruenbacher86a21c72015-11-03 12:41:59 +110035 const struct xfs_acl_entry *ace;
Xi Wang093019c2011-12-12 21:55:52 +000036 unsigned int count, i;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020037
Darrick J. Wonga5155b82019-11-02 09:40:53 -070038 if (len < sizeof(*aclp)) {
39 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, aclp,
40 len);
Andreas Gruenbacher86a21c72015-11-03 12:41:59 +110041 return ERR_PTR(-EFSCORRUPTED);
Darrick J. Wonga5155b82019-11-02 09:40:53 -070042 }
43
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020044 count = be32_to_cpu(aclp->acl_cnt);
Darrick J. Wonga5155b82019-11-02 09:40:53 -070045 if (count > max_entries || XFS_ACL_SIZE(count) != len) {
46 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, aclp,
47 len);
Christoph Hellwigfa8b18e2011-11-20 15:35:32 +000048 return ERR_PTR(-EFSCORRUPTED);
Darrick J. Wonga5155b82019-11-02 09:40:53 -070049 }
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020050
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 Hellwigba8adad2020-02-21 08:31:27 -080070 acl_e->e_uid = make_kuid(&init_user_ns,
71 be32_to_cpu(ace->ae_id));
Dwight Engen288bbe02013-08-15 14:07:59 -040072 break;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020073 case ACL_GROUP:
Christoph Hellwigba8adad2020-02-21 08:31:27 -080074 acl_e->e_gid = make_kgid(&init_user_ns,
75 be32_to_cpu(ace->ae_id));
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020076 break;
77 case ACL_USER_OBJ:
78 case ACL_GROUP_OBJ:
79 case ACL_MASK:
80 case ACL_OTHER:
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020081 break;
82 default:
83 goto fail;
84 }
85 }
86 return acl;
87
88fail:
89 posix_acl_release(acl);
90 return ERR_PTR(-EINVAL);
91}
92
93STATIC void
94xfs_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 Engen288bbe02013-08-15 14:07:59 -0400106 switch (acl_e->e_tag) {
107 case ACL_USER:
Christoph Hellwigba8adad2020-02-21 08:31:27 -0800108 ace->ae_id = cpu_to_be32(
109 from_kuid(&init_user_ns, acl_e->e_uid));
Dwight Engen288bbe02013-08-15 14:07:59 -0400110 break;
111 case ACL_GROUP:
Christoph Hellwigba8adad2020-02-21 08:31:27 -0800112 ace->ae_id = cpu_to_be32(
113 from_kgid(&init_user_ns, acl_e->e_gid));
Dwight Engen288bbe02013-08-15 14:07:59 -0400114 break;
115 default:
116 ace->ae_id = cpu_to_be32(ACL_UNDEFINED_ID);
117 break;
118 }
119
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200120 ace->ae_perm = cpu_to_be16(acl_e->e_perm);
121 }
122}
123
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200124struct posix_acl *
125xfs_get_acl(struct inode *inode, int type)
126{
127 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig2401dc22013-12-20 05:16:50 -0800128 struct posix_acl *acl = NULL;
Dave Chinnerddbca702019-08-29 09:04:10 -0700129 struct xfs_acl *xfs_acl = NULL;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100130 unsigned char *ea_name;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200131 int error;
Dave Chinner0a8aa192013-06-05 12:09:10 +1000132 int len;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200133
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200134 trace_xfs_get_acl(ip);
135
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200136 switch (type) {
137 case ACL_TYPE_ACCESS:
138 ea_name = SGI_ACL_FILE;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200139 break;
140 case ACL_TYPE_DEFAULT:
141 ea_name = SGI_ACL_DEFAULT;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200142 break;
143 default:
Al Viro1cbd20d2009-06-09 13:29:39 -0400144 BUG();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200145 }
146
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200147 /*
148 * If we have a cached ACLs value just return it, not need to
149 * go out to the disk.
150 */
Dave Chinner0a8aa192013-06-05 12:09:10 +1000151 len = XFS_ACL_MAX_SIZE(ip->i_mount);
Allison Hendersond29f7812020-01-07 15:26:15 -0800152 error = xfs_attr_get(ip, ea_name, strlen(ea_name),
153 (unsigned char **)&xfs_acl, &len,
Dave Chinnerddbca702019-08-29 09:04:10 -0700154 ATTR_ALLOC | ATTR_ROOT);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200155 if (error) {
156 /*
157 * If the attribute doesn't exist make sure we have a negative
Andreas Gruenbacherb8a7a3a2016-03-24 14:38:37 +0100158 * cache entry, for any other error assume it is transient.
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200159 */
Andreas Gruenbacherb8a7a3a2016-03-24 14:38:37 +0100160 if (error != -ENOATTR)
161 acl = ERR_PTR(error);
162 } else {
Darrick J. Wonga5155b82019-11-02 09:40:53 -0700163 acl = xfs_acl_from_disk(ip->i_mount, xfs_acl, len,
Andreas Gruenbacherb8a7a3a2016-03-24 14:38:37 +0100164 XFS_ACL_MAX_ENTRIES(ip->i_mount));
Dave Chinnerddbca702019-08-29 09:04:10 -0700165 kmem_free(xfs_acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200166 }
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200167 return acl;
168}
169
Jan Kara8ba35872017-06-26 08:48:18 -0700170int
171__xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200172{
173 struct xfs_inode *ip = XFS_I(inode);
Dave Chinnera9273ca2010-01-20 10:47:48 +1100174 unsigned char *ea_name;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200175 int error;
176
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200177 switch (type) {
178 case ACL_TYPE_ACCESS:
179 ea_name = SGI_ACL_FILE;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200180 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 Hellwigef14f0c2009-06-10 17:07:47 +0200185 break;
186 default:
187 return -EINVAL;
188 }
189
190 if (acl) {
191 struct xfs_acl *xfs_acl;
Dave Chinner0a8aa192013-06-05 12:09:10 +1000192 int len = XFS_ACL_MAX_SIZE(ip->i_mount);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200193
Tetsuo Handa707e0dd2019-08-26 12:06:22 -0700194 xfs_acl = kmem_zalloc_large(len, 0);
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000195 if (!xfs_acl)
196 return -ENOMEM;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200197
198 xfs_acl_to_disk(xfs_acl, acl);
Dave Chinner0a8aa192013-06-05 12:09:10 +1000199
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 Hellwigef14f0c2009-06-10 17:07:47 +0200203
Allison Hendersond29f7812020-01-07 15:26:15 -0800204 error = xfs_attr_set(ip, ea_name, strlen(ea_name),
205 (unsigned char *)xfs_acl, len, ATTR_ROOT);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200206
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000207 kmem_free(xfs_acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200208 } else {
209 /*
210 * A NULL ACL argument means we want to remove the ACL.
211 */
Allison Hendersond29f7812020-01-07 15:26:15 -0800212 error = xfs_attr_remove(ip, ea_name,
213 strlen(ea_name),
214 ATTR_ROOT);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200215
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 Viro1cbd20d2009-06-09 13:29:39 -0400224 set_cached_acl(inode, type, acl);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200225 return error;
226}
227
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200228static int
Al Virod3fb6122011-07-23 18:37:50 -0400229xfs_set_mode(struct inode *inode, umode_t mode)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200230{
231 int error = 0;
232
233 if (mode != inode->i_mode) {
234 struct iattr iattr;
235
Christoph Hellwigd6d59ba2009-12-23 16:09:13 +0000236 iattr.ia_valid = ATTR_MODE | ATTR_CTIME;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200237 iattr.ia_mode = mode;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700238 iattr.ia_ctime = current_time(inode);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200239
Dave Chinner24513372014-06-25 14:58:08 +1000240 error = xfs_setattr_nonsize(XFS_I(inode), &iattr, XFS_ATTR_NOACL);
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200241 }
242
243 return error;
244}
245
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200246int
Christoph Hellwig2401dc22013-12-20 05:16:50 -0800247xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200248{
Dave Chinner67f2ffe2017-10-09 11:37:23 -0700249 umode_t mode;
250 bool set_mode = false;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000251 int error = 0;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200252
Christoph Hellwig2401dc22013-12-20 05:16:50 -0800253 if (!acl)
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200254 goto set_acl;
255
Jie Liu4ae69fe2014-02-07 15:26:11 +1100256 error = -E2BIG;
Dave Chinner0a8aa192013-06-05 12:09:10 +1000257 if (acl->a_count > XFS_ACL_MAX_ENTRIES(XFS_M(inode->i_sb)))
Christoph Hellwig2401dc22013-12-20 05:16:50 -0800258 return error;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200259
260 if (type == ACL_TYPE_ACCESS) {
Jan Kara07393102016-09-19 17:39:09 +0200261 error = posix_acl_update_mode(inode, &mode, &acl);
262 if (error)
263 return error;
Dave Chinner67f2ffe2017-10-09 11:37:23 -0700264 set_mode = true;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200265 }
266
267 set_acl:
Dave Chinner67f2ffe2017-10-09 11:37:23 -0700268 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 Hellwigef14f0c2009-06-10 17:07:47 +0200281}