blob: f4fc8e0b847cc609e6af90a7c2afc1b96bfc1b37 [file] [log] [blame]
Thomas Gleixnerf2cde892019-05-27 08:55:20 +02001// SPDX-License-Identifier: GPL-2.0-only
Guangliang Zhao7221fe42013-11-11 15:18:03 +08002/*
3 * linux/fs/ceph/acl.c
4 *
5 * Copyright (C) 2013 Guangliang Zhao, <lucienchao@gmail.com>
Guangliang Zhao7221fe42013-11-11 15:18:03 +08006 */
7
8#include <linux/ceph/ceph_debug.h>
9#include <linux/fs.h>
10#include <linux/string.h>
11#include <linux/xattr.h>
12#include <linux/posix_acl_xattr.h>
13#include <linux/posix_acl.h>
14#include <linux/sched.h>
15#include <linux/slab.h>
16
17#include "super.h"
18
19static inline void ceph_set_cached_acl(struct inode *inode,
20 int type, struct posix_acl *acl)
21{
22 struct ceph_inode_info *ci = ceph_inode(inode);
23
24 spin_lock(&ci->i_ceph_lock);
Xiubo Li1af16d52020-03-19 23:45:00 -040025 if (__ceph_caps_issued_mask_metric(ci, CEPH_CAP_XATTR_SHARED, 0))
Guangliang Zhao7221fe42013-11-11 15:18:03 +080026 set_cached_acl(inode, type, acl);
Andreas Gruenbacherb8a7a3a2016-03-24 14:38:37 +010027 else
28 forget_cached_acl(inode, type);
Guangliang Zhao7221fe42013-11-11 15:18:03 +080029 spin_unlock(&ci->i_ceph_lock);
30}
31
Miklos Szeredi0cad6242021-08-18 22:08:24 +020032struct posix_acl *ceph_get_acl(struct inode *inode, int type, bool rcu)
Guangliang Zhao7221fe42013-11-11 15:18:03 +080033{
34 int size;
Chengguang Xuf0177542018-06-20 15:42:55 +080035 unsigned int retry_cnt = 0;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080036 const char *name;
37 char *value = NULL;
38 struct posix_acl *acl;
39
Miklos Szeredi0cad6242021-08-18 22:08:24 +020040 if (rcu)
41 return ERR_PTR(-ECHILD);
42
Guangliang Zhao7221fe42013-11-11 15:18:03 +080043 switch (type) {
44 case ACL_TYPE_ACCESS:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010045 name = XATTR_NAME_POSIX_ACL_ACCESS;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080046 break;
47 case ACL_TYPE_DEFAULT:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010048 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080049 break;
50 default:
51 BUG();
52 }
53
Chengguang Xuf0177542018-06-20 15:42:55 +080054retry:
Guangliang Zhao7221fe42013-11-11 15:18:03 +080055 size = __ceph_getxattr(inode, name, "", 0);
56 if (size > 0) {
57 value = kzalloc(size, GFP_NOFS);
58 if (!value)
59 return ERR_PTR(-ENOMEM);
60 size = __ceph_getxattr(inode, name, value, size);
61 }
62
Chengguang Xuf0177542018-06-20 15:42:55 +080063 if (size == -ERANGE && retry_cnt < 10) {
64 retry_cnt++;
65 kfree(value);
66 value = NULL;
67 goto retry;
68 }
69
70 if (size > 0) {
Guangliang Zhao7221fe42013-11-11 15:18:03 +080071 acl = posix_acl_from_xattr(&init_user_ns, value, size);
Chengguang Xuf0177542018-06-20 15:42:55 +080072 } else if (size == -ENODATA || size == 0) {
Guangliang Zhao7221fe42013-11-11 15:18:03 +080073 acl = NULL;
Chengguang Xuf0177542018-06-20 15:42:55 +080074 } else {
75 pr_err_ratelimited("get acl %llx.%llx failed, err=%d\n",
76 ceph_vinop(inode), size);
Guangliang Zhao7221fe42013-11-11 15:18:03 +080077 acl = ERR_PTR(-EIO);
Chengguang Xuf0177542018-06-20 15:42:55 +080078 }
Guangliang Zhao7221fe42013-11-11 15:18:03 +080079
80 kfree(value);
81
82 if (!IS_ERR(acl))
83 ceph_set_cached_acl(inode, type, acl);
84
85 return acl;
86}
87
Christian Brauner549c7292021-01-21 14:19:43 +010088int ceph_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
89 struct posix_acl *acl, int type)
Guangliang Zhao7221fe42013-11-11 15:18:03 +080090{
91 int ret = 0, size = 0;
92 const char *name = NULL;
93 char *value = NULL;
94 struct iattr newattrs;
Chengguang Xu93d35c72018-06-22 15:01:13 +080095 struct timespec64 old_ctime = inode->i_ctime;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080096 umode_t new_mode = inode->i_mode, old_mode = inode->i_mode;
97
Chengguang Xu5da20792018-09-02 23:21:09 +080098 if (ceph_snap(inode) != CEPH_NOSNAP) {
99 ret = -EROFS;
100 goto out;
101 }
102
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800103 switch (type) {
104 case ACL_TYPE_ACCESS:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100105 name = XATTR_NAME_POSIX_ACL_ACCESS;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800106 if (acl) {
Christian Braunere65ce2a2021-01-21 14:19:27 +0100107 ret = posix_acl_update_mode(&init_user_ns, inode,
108 &new_mode, &acl);
Jan Kara07393102016-09-19 17:39:09 +0200109 if (ret)
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800110 goto out;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800111 }
112 break;
113 case ACL_TYPE_DEFAULT:
114 if (!S_ISDIR(inode->i_mode)) {
115 ret = acl ? -EINVAL : 0;
116 goto out;
117 }
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100118 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800119 break;
120 default:
121 ret = -EINVAL;
122 goto out;
123 }
124
125 if (acl) {
126 size = posix_acl_xattr_size(acl->a_count);
127 value = kmalloc(size, GFP_NOFS);
128 if (!value) {
129 ret = -ENOMEM;
130 goto out;
131 }
132
133 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
134 if (ret < 0)
135 goto out_free;
136 }
137
138 if (new_mode != old_mode) {
Yan, Zheng4ca2fea2017-06-01 17:08:00 +0800139 newattrs.ia_ctime = current_time(inode);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800140 newattrs.ia_mode = new_mode;
Chengguang Xu93d35c72018-06-22 15:01:13 +0800141 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200142 ret = __ceph_setattr(inode, &newattrs);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800143 if (ret)
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200144 goto out_free;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800145 }
146
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200147 ret = __ceph_setxattr(inode, name, value, size, 0);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800148 if (ret) {
149 if (new_mode != old_mode) {
Chengguang Xu93d35c72018-06-22 15:01:13 +0800150 newattrs.ia_ctime = old_ctime;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800151 newattrs.ia_mode = old_mode;
Chengguang Xu93d35c72018-06-22 15:01:13 +0800152 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200153 __ceph_setattr(inode, &newattrs);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800154 }
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200155 goto out_free;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800156 }
157
158 ceph_set_cached_acl(inode, type, acl);
159
160out_free:
161 kfree(value);
162out:
163 return ret;
164}
165
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800166int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
Yan, Zheng5c31e922019-05-26 15:35:39 +0800167 struct ceph_acl_sec_ctx *as_ctx)
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800168{
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800169 struct posix_acl *acl, *default_acl;
170 size_t val_size1 = 0, val_size2 = 0;
171 struct ceph_pagelist *pagelist = NULL;
172 void *tmp_buf = NULL;
173 int err;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800174
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800175 err = posix_acl_create(dir, mode, &default_acl, &acl);
176 if (err)
177 return err;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800178
Christoph Hellwig75858232014-01-30 08:56:36 -0800179 if (acl) {
Chengguang Xu61ad36d2018-07-09 22:48:07 +0800180 err = posix_acl_equiv_mode(acl, mode);
181 if (err < 0)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800182 goto out_err;
Chengguang Xu61ad36d2018-07-09 22:48:07 +0800183 if (err == 0) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800184 posix_acl_release(acl);
185 acl = NULL;
186 }
Christoph Hellwig75858232014-01-30 08:56:36 -0800187 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800188
189 if (!default_acl && !acl)
190 return 0;
191
192 if (acl)
193 val_size1 = posix_acl_xattr_size(acl->a_count);
194 if (default_acl)
195 val_size2 = posix_acl_xattr_size(default_acl->a_count);
196
197 err = -ENOMEM;
Yan, Zheng687265e2015-06-13 17:27:05 +0800198 tmp_buf = kmalloc(max(val_size1, val_size2), GFP_KERNEL);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800199 if (!tmp_buf)
200 goto out_err;
Ilya Dryomov33165d42018-09-28 15:38:34 +0200201 pagelist = ceph_pagelist_alloc(GFP_KERNEL);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800202 if (!pagelist)
203 goto out_err;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800204
205 err = ceph_pagelist_reserve(pagelist, PAGE_SIZE);
206 if (err)
207 goto out_err;
208
209 ceph_pagelist_encode_32(pagelist, acl && default_acl ? 2 : 1);
210
211 if (acl) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100212 size_t len = strlen(XATTR_NAME_POSIX_ACL_ACCESS);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800213 err = ceph_pagelist_reserve(pagelist, len + val_size1 + 8);
214 if (err)
215 goto out_err;
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100216 ceph_pagelist_encode_string(pagelist, XATTR_NAME_POSIX_ACL_ACCESS,
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800217 len);
218 err = posix_acl_to_xattr(&init_user_ns, acl,
219 tmp_buf, val_size1);
220 if (err < 0)
221 goto out_err;
222 ceph_pagelist_encode_32(pagelist, val_size1);
223 ceph_pagelist_append(pagelist, tmp_buf, val_size1);
224 }
225 if (default_acl) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100226 size_t len = strlen(XATTR_NAME_POSIX_ACL_DEFAULT);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800227 err = ceph_pagelist_reserve(pagelist, len + val_size2 + 8);
228 if (err)
229 goto out_err;
Chengguang Xud80865b2018-08-17 22:05:31 +0800230 ceph_pagelist_encode_string(pagelist,
231 XATTR_NAME_POSIX_ACL_DEFAULT, len);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800232 err = posix_acl_to_xattr(&init_user_ns, default_acl,
233 tmp_buf, val_size2);
234 if (err < 0)
235 goto out_err;
236 ceph_pagelist_encode_32(pagelist, val_size2);
237 ceph_pagelist_append(pagelist, tmp_buf, val_size2);
238 }
239
240 kfree(tmp_buf);
241
Yan, Zheng5c31e922019-05-26 15:35:39 +0800242 as_ctx->acl = acl;
243 as_ctx->default_acl = default_acl;
244 as_ctx->pagelist = pagelist;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800245 return 0;
246
247out_err:
248 posix_acl_release(acl);
249 posix_acl_release(default_acl);
250 kfree(tmp_buf);
251 if (pagelist)
252 ceph_pagelist_release(pagelist);
253 return err;
254}
255
Yan, Zheng5c31e922019-05-26 15:35:39 +0800256void ceph_init_inode_acls(struct inode *inode, struct ceph_acl_sec_ctx *as_ctx)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800257{
258 if (!inode)
259 return;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800260 ceph_set_cached_acl(inode, ACL_TYPE_ACCESS, as_ctx->acl);
261 ceph_set_cached_acl(inode, ACL_TYPE_DEFAULT, as_ctx->default_acl);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800262}