blob: 529af59d9fd30cbc9041ca25a3f6d86a2f4d7623 [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
Guangliang Zhao7221fe42013-11-11 15:18:03 +080032struct posix_acl *ceph_get_acl(struct inode *inode, int type)
33{
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
Guangliang Zhao7221fe42013-11-11 15:18:03 +080040 switch (type) {
41 case ACL_TYPE_ACCESS:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010042 name = XATTR_NAME_POSIX_ACL_ACCESS;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080043 break;
44 case ACL_TYPE_DEFAULT:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010045 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080046 break;
47 default:
48 BUG();
49 }
50
Chengguang Xuf0177542018-06-20 15:42:55 +080051retry:
Guangliang Zhao7221fe42013-11-11 15:18:03 +080052 size = __ceph_getxattr(inode, name, "", 0);
53 if (size > 0) {
54 value = kzalloc(size, GFP_NOFS);
55 if (!value)
56 return ERR_PTR(-ENOMEM);
57 size = __ceph_getxattr(inode, name, value, size);
58 }
59
Chengguang Xuf0177542018-06-20 15:42:55 +080060 if (size == -ERANGE && retry_cnt < 10) {
61 retry_cnt++;
62 kfree(value);
63 value = NULL;
64 goto retry;
65 }
66
67 if (size > 0) {
Guangliang Zhao7221fe42013-11-11 15:18:03 +080068 acl = posix_acl_from_xattr(&init_user_ns, value, size);
Chengguang Xuf0177542018-06-20 15:42:55 +080069 } else if (size == -ENODATA || size == 0) {
Guangliang Zhao7221fe42013-11-11 15:18:03 +080070 acl = NULL;
Chengguang Xuf0177542018-06-20 15:42:55 +080071 } else {
72 pr_err_ratelimited("get acl %llx.%llx failed, err=%d\n",
73 ceph_vinop(inode), size);
Guangliang Zhao7221fe42013-11-11 15:18:03 +080074 acl = ERR_PTR(-EIO);
Chengguang Xuf0177542018-06-20 15:42:55 +080075 }
Guangliang Zhao7221fe42013-11-11 15:18:03 +080076
77 kfree(value);
78
79 if (!IS_ERR(acl))
80 ceph_set_cached_acl(inode, type, acl);
81
82 return acl;
83}
84
Christian Brauner549c7292021-01-21 14:19:43 +010085int ceph_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
86 struct posix_acl *acl, int type)
Guangliang Zhao7221fe42013-11-11 15:18:03 +080087{
88 int ret = 0, size = 0;
89 const char *name = NULL;
90 char *value = NULL;
91 struct iattr newattrs;
Chengguang Xu93d35c72018-06-22 15:01:13 +080092 struct timespec64 old_ctime = inode->i_ctime;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080093 umode_t new_mode = inode->i_mode, old_mode = inode->i_mode;
94
Chengguang Xu5da20792018-09-02 23:21:09 +080095 if (ceph_snap(inode) != CEPH_NOSNAP) {
96 ret = -EROFS;
97 goto out;
98 }
99
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800100 switch (type) {
101 case ACL_TYPE_ACCESS:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100102 name = XATTR_NAME_POSIX_ACL_ACCESS;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800103 if (acl) {
Christian Braunere65ce2a2021-01-21 14:19:27 +0100104 ret = posix_acl_update_mode(&init_user_ns, inode,
105 &new_mode, &acl);
Jan Kara07393102016-09-19 17:39:09 +0200106 if (ret)
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800107 goto out;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800108 }
109 break;
110 case ACL_TYPE_DEFAULT:
111 if (!S_ISDIR(inode->i_mode)) {
112 ret = acl ? -EINVAL : 0;
113 goto out;
114 }
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100115 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800116 break;
117 default:
118 ret = -EINVAL;
119 goto out;
120 }
121
122 if (acl) {
123 size = posix_acl_xattr_size(acl->a_count);
124 value = kmalloc(size, GFP_NOFS);
125 if (!value) {
126 ret = -ENOMEM;
127 goto out;
128 }
129
130 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
131 if (ret < 0)
132 goto out_free;
133 }
134
135 if (new_mode != old_mode) {
Yan, Zheng4ca2fea2017-06-01 17:08:00 +0800136 newattrs.ia_ctime = current_time(inode);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800137 newattrs.ia_mode = new_mode;
Chengguang Xu93d35c72018-06-22 15:01:13 +0800138 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200139 ret = __ceph_setattr(inode, &newattrs);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800140 if (ret)
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200141 goto out_free;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800142 }
143
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200144 ret = __ceph_setxattr(inode, name, value, size, 0);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800145 if (ret) {
146 if (new_mode != old_mode) {
Chengguang Xu93d35c72018-06-22 15:01:13 +0800147 newattrs.ia_ctime = old_ctime;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800148 newattrs.ia_mode = old_mode;
Chengguang Xu93d35c72018-06-22 15:01:13 +0800149 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200150 __ceph_setattr(inode, &newattrs);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800151 }
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200152 goto out_free;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800153 }
154
155 ceph_set_cached_acl(inode, type, acl);
156
157out_free:
158 kfree(value);
159out:
160 return ret;
161}
162
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800163int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
Yan, Zheng5c31e922019-05-26 15:35:39 +0800164 struct ceph_acl_sec_ctx *as_ctx)
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800165{
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800166 struct posix_acl *acl, *default_acl;
167 size_t val_size1 = 0, val_size2 = 0;
168 struct ceph_pagelist *pagelist = NULL;
169 void *tmp_buf = NULL;
170 int err;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800171
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800172 err = posix_acl_create(dir, mode, &default_acl, &acl);
173 if (err)
174 return err;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800175
Christoph Hellwig75858232014-01-30 08:56:36 -0800176 if (acl) {
Chengguang Xu61ad36d2018-07-09 22:48:07 +0800177 err = posix_acl_equiv_mode(acl, mode);
178 if (err < 0)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800179 goto out_err;
Chengguang Xu61ad36d2018-07-09 22:48:07 +0800180 if (err == 0) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800181 posix_acl_release(acl);
182 acl = NULL;
183 }
Christoph Hellwig75858232014-01-30 08:56:36 -0800184 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800185
186 if (!default_acl && !acl)
187 return 0;
188
189 if (acl)
190 val_size1 = posix_acl_xattr_size(acl->a_count);
191 if (default_acl)
192 val_size2 = posix_acl_xattr_size(default_acl->a_count);
193
194 err = -ENOMEM;
Yan, Zheng687265e2015-06-13 17:27:05 +0800195 tmp_buf = kmalloc(max(val_size1, val_size2), GFP_KERNEL);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800196 if (!tmp_buf)
197 goto out_err;
Ilya Dryomov33165d42018-09-28 15:38:34 +0200198 pagelist = ceph_pagelist_alloc(GFP_KERNEL);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800199 if (!pagelist)
200 goto out_err;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800201
202 err = ceph_pagelist_reserve(pagelist, PAGE_SIZE);
203 if (err)
204 goto out_err;
205
206 ceph_pagelist_encode_32(pagelist, acl && default_acl ? 2 : 1);
207
208 if (acl) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100209 size_t len = strlen(XATTR_NAME_POSIX_ACL_ACCESS);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800210 err = ceph_pagelist_reserve(pagelist, len + val_size1 + 8);
211 if (err)
212 goto out_err;
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100213 ceph_pagelist_encode_string(pagelist, XATTR_NAME_POSIX_ACL_ACCESS,
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800214 len);
215 err = posix_acl_to_xattr(&init_user_ns, acl,
216 tmp_buf, val_size1);
217 if (err < 0)
218 goto out_err;
219 ceph_pagelist_encode_32(pagelist, val_size1);
220 ceph_pagelist_append(pagelist, tmp_buf, val_size1);
221 }
222 if (default_acl) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100223 size_t len = strlen(XATTR_NAME_POSIX_ACL_DEFAULT);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800224 err = ceph_pagelist_reserve(pagelist, len + val_size2 + 8);
225 if (err)
226 goto out_err;
Chengguang Xud80865b2018-08-17 22:05:31 +0800227 ceph_pagelist_encode_string(pagelist,
228 XATTR_NAME_POSIX_ACL_DEFAULT, len);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800229 err = posix_acl_to_xattr(&init_user_ns, default_acl,
230 tmp_buf, val_size2);
231 if (err < 0)
232 goto out_err;
233 ceph_pagelist_encode_32(pagelist, val_size2);
234 ceph_pagelist_append(pagelist, tmp_buf, val_size2);
235 }
236
237 kfree(tmp_buf);
238
Yan, Zheng5c31e922019-05-26 15:35:39 +0800239 as_ctx->acl = acl;
240 as_ctx->default_acl = default_acl;
241 as_ctx->pagelist = pagelist;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800242 return 0;
243
244out_err:
245 posix_acl_release(acl);
246 posix_acl_release(default_acl);
247 kfree(tmp_buf);
248 if (pagelist)
249 ceph_pagelist_release(pagelist);
250 return err;
251}
252
Yan, Zheng5c31e922019-05-26 15:35:39 +0800253void ceph_init_inode_acls(struct inode *inode, struct ceph_acl_sec_ctx *as_ctx)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800254{
255 if (!inode)
256 return;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800257 ceph_set_cached_acl(inode, ACL_TYPE_ACCESS, as_ctx->acl);
258 ceph_set_cached_acl(inode, ACL_TYPE_DEFAULT, as_ctx->default_acl);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800259}