blob: e0465741c591d96668c35342558f58fcf3a796da [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
Sage Weil72466d02014-01-29 06:22:25 -080085int ceph_set_acl(struct inode *inode, struct posix_acl *acl, int type)
Guangliang Zhao7221fe42013-11-11 15:18:03 +080086{
87 int ret = 0, size = 0;
88 const char *name = NULL;
89 char *value = NULL;
90 struct iattr newattrs;
Chengguang Xu93d35c72018-06-22 15:01:13 +080091 struct timespec64 old_ctime = inode->i_ctime;
Guangliang Zhao7221fe42013-11-11 15:18:03 +080092 umode_t new_mode = inode->i_mode, old_mode = inode->i_mode;
93
Chengguang Xu5da20792018-09-02 23:21:09 +080094 if (ceph_snap(inode) != CEPH_NOSNAP) {
95 ret = -EROFS;
96 goto out;
97 }
98
Guangliang Zhao7221fe42013-11-11 15:18:03 +080099 switch (type) {
100 case ACL_TYPE_ACCESS:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100101 name = XATTR_NAME_POSIX_ACL_ACCESS;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800102 if (acl) {
Jan Kara07393102016-09-19 17:39:09 +0200103 ret = posix_acl_update_mode(inode, &new_mode, &acl);
104 if (ret)
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800105 goto out;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800106 }
107 break;
108 case ACL_TYPE_DEFAULT:
109 if (!S_ISDIR(inode->i_mode)) {
110 ret = acl ? -EINVAL : 0;
111 goto out;
112 }
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100113 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800114 break;
115 default:
116 ret = -EINVAL;
117 goto out;
118 }
119
120 if (acl) {
121 size = posix_acl_xattr_size(acl->a_count);
122 value = kmalloc(size, GFP_NOFS);
123 if (!value) {
124 ret = -ENOMEM;
125 goto out;
126 }
127
128 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
129 if (ret < 0)
130 goto out_free;
131 }
132
133 if (new_mode != old_mode) {
Yan, Zheng4ca2fea2017-06-01 17:08:00 +0800134 newattrs.ia_ctime = current_time(inode);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800135 newattrs.ia_mode = new_mode;
Chengguang Xu93d35c72018-06-22 15:01:13 +0800136 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200137 ret = __ceph_setattr(inode, &newattrs);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800138 if (ret)
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200139 goto out_free;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800140 }
141
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200142 ret = __ceph_setxattr(inode, name, value, size, 0);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800143 if (ret) {
144 if (new_mode != old_mode) {
Chengguang Xu93d35c72018-06-22 15:01:13 +0800145 newattrs.ia_ctime = old_ctime;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800146 newattrs.ia_mode = old_mode;
Chengguang Xu93d35c72018-06-22 15:01:13 +0800147 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200148 __ceph_setattr(inode, &newattrs);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800149 }
Andreas Gruenbachera26fecc2016-04-14 00:30:16 +0200150 goto out_free;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800151 }
152
153 ceph_set_cached_acl(inode, type, acl);
154
155out_free:
156 kfree(value);
157out:
158 return ret;
159}
160
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800161int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
Yan, Zheng5c31e922019-05-26 15:35:39 +0800162 struct ceph_acl_sec_ctx *as_ctx)
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800163{
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800164 struct posix_acl *acl, *default_acl;
165 size_t val_size1 = 0, val_size2 = 0;
166 struct ceph_pagelist *pagelist = NULL;
167 void *tmp_buf = NULL;
168 int err;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800169
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800170 err = posix_acl_create(dir, mode, &default_acl, &acl);
171 if (err)
172 return err;
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800173
Christoph Hellwig75858232014-01-30 08:56:36 -0800174 if (acl) {
Chengguang Xu61ad36d2018-07-09 22:48:07 +0800175 err = posix_acl_equiv_mode(acl, mode);
176 if (err < 0)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800177 goto out_err;
Chengguang Xu61ad36d2018-07-09 22:48:07 +0800178 if (err == 0) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800179 posix_acl_release(acl);
180 acl = NULL;
181 }
Christoph Hellwig75858232014-01-30 08:56:36 -0800182 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800183
184 if (!default_acl && !acl)
185 return 0;
186
187 if (acl)
188 val_size1 = posix_acl_xattr_size(acl->a_count);
189 if (default_acl)
190 val_size2 = posix_acl_xattr_size(default_acl->a_count);
191
192 err = -ENOMEM;
Yan, Zheng687265e2015-06-13 17:27:05 +0800193 tmp_buf = kmalloc(max(val_size1, val_size2), GFP_KERNEL);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800194 if (!tmp_buf)
195 goto out_err;
Ilya Dryomov33165d42018-09-28 15:38:34 +0200196 pagelist = ceph_pagelist_alloc(GFP_KERNEL);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800197 if (!pagelist)
198 goto out_err;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800199
200 err = ceph_pagelist_reserve(pagelist, PAGE_SIZE);
201 if (err)
202 goto out_err;
203
204 ceph_pagelist_encode_32(pagelist, acl && default_acl ? 2 : 1);
205
206 if (acl) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100207 size_t len = strlen(XATTR_NAME_POSIX_ACL_ACCESS);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800208 err = ceph_pagelist_reserve(pagelist, len + val_size1 + 8);
209 if (err)
210 goto out_err;
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100211 ceph_pagelist_encode_string(pagelist, XATTR_NAME_POSIX_ACL_ACCESS,
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800212 len);
213 err = posix_acl_to_xattr(&init_user_ns, acl,
214 tmp_buf, val_size1);
215 if (err < 0)
216 goto out_err;
217 ceph_pagelist_encode_32(pagelist, val_size1);
218 ceph_pagelist_append(pagelist, tmp_buf, val_size1);
219 }
220 if (default_acl) {
Andreas Gruenbacher97d79292015-12-02 14:44:35 +0100221 size_t len = strlen(XATTR_NAME_POSIX_ACL_DEFAULT);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800222 err = ceph_pagelist_reserve(pagelist, len + val_size2 + 8);
223 if (err)
224 goto out_err;
Chengguang Xud80865b2018-08-17 22:05:31 +0800225 ceph_pagelist_encode_string(pagelist,
226 XATTR_NAME_POSIX_ACL_DEFAULT, len);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800227 err = posix_acl_to_xattr(&init_user_ns, default_acl,
228 tmp_buf, val_size2);
229 if (err < 0)
230 goto out_err;
231 ceph_pagelist_encode_32(pagelist, val_size2);
232 ceph_pagelist_append(pagelist, tmp_buf, val_size2);
233 }
234
235 kfree(tmp_buf);
236
Yan, Zheng5c31e922019-05-26 15:35:39 +0800237 as_ctx->acl = acl;
238 as_ctx->default_acl = default_acl;
239 as_ctx->pagelist = pagelist;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800240 return 0;
241
242out_err:
243 posix_acl_release(acl);
244 posix_acl_release(default_acl);
245 kfree(tmp_buf);
246 if (pagelist)
247 ceph_pagelist_release(pagelist);
248 return err;
249}
250
Yan, Zheng5c31e922019-05-26 15:35:39 +0800251void ceph_init_inode_acls(struct inode *inode, struct ceph_acl_sec_ctx *as_ctx)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800252{
253 if (!inode)
254 return;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800255 ceph_set_cached_acl(inode, ACL_TYPE_ACCESS, as_ctx->acl);
256 ceph_set_cached_acl(inode, ACL_TYPE_DEFAULT, as_ctx->default_acl);
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800257}