]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/ceph/acl.c
Merge tag 'for-5.14-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[mirror_ubuntu-jammy-kernel.git] / fs / ceph / acl.c
CommitLineData
f2cde895 1// SPDX-License-Identifier: GPL-2.0-only
7221fe4c
GZ
2/*
3 * linux/fs/ceph/acl.c
4 *
5 * Copyright (C) 2013 Guangliang Zhao, <lucienchao@gmail.com>
7221fe4c
GZ
6 */
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);
1af16d54 25 if (__ceph_caps_issued_mask_metric(ci, CEPH_CAP_XATTR_SHARED, 0))
7221fe4c 26 set_cached_acl(inode, type, acl);
b8a7a3a6
AG
27 else
28 forget_cached_acl(inode, type);
7221fe4c
GZ
29 spin_unlock(&ci->i_ceph_lock);
30}
31
7221fe4c
GZ
32struct posix_acl *ceph_get_acl(struct inode *inode, int type)
33{
34 int size;
f017754d 35 unsigned int retry_cnt = 0;
7221fe4c
GZ
36 const char *name;
37 char *value = NULL;
38 struct posix_acl *acl;
39
7221fe4c
GZ
40 switch (type) {
41 case ACL_TYPE_ACCESS:
97d79299 42 name = XATTR_NAME_POSIX_ACL_ACCESS;
7221fe4c
GZ
43 break;
44 case ACL_TYPE_DEFAULT:
97d79299 45 name = XATTR_NAME_POSIX_ACL_DEFAULT;
7221fe4c
GZ
46 break;
47 default:
48 BUG();
49 }
50
f017754d 51retry:
7221fe4c
GZ
52 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
f017754d
CX
60 if (size == -ERANGE && retry_cnt < 10) {
61 retry_cnt++;
62 kfree(value);
63 value = NULL;
64 goto retry;
65 }
66
67 if (size > 0) {
7221fe4c 68 acl = posix_acl_from_xattr(&init_user_ns, value, size);
f017754d 69 } else if (size == -ENODATA || size == 0) {
7221fe4c 70 acl = NULL;
f017754d
CX
71 } else {
72 pr_err_ratelimited("get acl %llx.%llx failed, err=%d\n",
73 ceph_vinop(inode), size);
7221fe4c 74 acl = ERR_PTR(-EIO);
f017754d 75 }
7221fe4c
GZ
76
77 kfree(value);
78
79 if (!IS_ERR(acl))
80 ceph_set_cached_acl(inode, type, acl);
81
82 return acl;
83}
84
549c7297
CB
85int ceph_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
86 struct posix_acl *acl, int type)
7221fe4c
GZ
87{
88 int ret = 0, size = 0;
89 const char *name = NULL;
90 char *value = NULL;
91 struct iattr newattrs;
93d35c75 92 struct timespec64 old_ctime = inode->i_ctime;
7221fe4c
GZ
93 umode_t new_mode = inode->i_mode, old_mode = inode->i_mode;
94
5da20799
CX
95 if (ceph_snap(inode) != CEPH_NOSNAP) {
96 ret = -EROFS;
97 goto out;
98 }
99
7221fe4c
GZ
100 switch (type) {
101 case ACL_TYPE_ACCESS:
97d79299 102 name = XATTR_NAME_POSIX_ACL_ACCESS;
7221fe4c 103 if (acl) {
e65ce2a5
CB
104 ret = posix_acl_update_mode(&init_user_ns, inode,
105 &new_mode, &acl);
07393101 106 if (ret)
7221fe4c 107 goto out;
7221fe4c
GZ
108 }
109 break;
110 case ACL_TYPE_DEFAULT:
111 if (!S_ISDIR(inode->i_mode)) {
112 ret = acl ? -EINVAL : 0;
113 goto out;
114 }
97d79299 115 name = XATTR_NAME_POSIX_ACL_DEFAULT;
7221fe4c
GZ
116 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) {
4ca2fea6 136 newattrs.ia_ctime = current_time(inode);
7221fe4c 137 newattrs.ia_mode = new_mode;
93d35c75 138 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
a26fecca 139 ret = __ceph_setattr(inode, &newattrs);
7221fe4c 140 if (ret)
a26fecca 141 goto out_free;
7221fe4c
GZ
142 }
143
a26fecca 144 ret = __ceph_setxattr(inode, name, value, size, 0);
7221fe4c
GZ
145 if (ret) {
146 if (new_mode != old_mode) {
93d35c75 147 newattrs.ia_ctime = old_ctime;
7221fe4c 148 newattrs.ia_mode = old_mode;
93d35c75 149 newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
a26fecca 150 __ceph_setattr(inode, &newattrs);
7221fe4c 151 }
a26fecca 152 goto out_free;
7221fe4c
GZ
153 }
154
155 ceph_set_cached_acl(inode, type, acl);
156
157out_free:
158 kfree(value);
159out:
160 return ret;
161}
162
b1ee94aa 163int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
5c31e92d 164 struct ceph_acl_sec_ctx *as_ctx)
7221fe4c 165{
b1ee94aa
YZ
166 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;
171
172 err = posix_acl_create(dir, mode, &default_acl, &acl);
173 if (err)
174 return err;
175
176 if (acl) {
61ad36d4
CX
177 err = posix_acl_equiv_mode(acl, mode);
178 if (err < 0)
b1ee94aa 179 goto out_err;
61ad36d4 180 if (err == 0) {
b1ee94aa
YZ
181 posix_acl_release(acl);
182 acl = NULL;
f5f18647 183 }
f5f18647 184 }
7221fe4c 185
b1ee94aa
YZ
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;
687265e5 195 tmp_buf = kmalloc(max(val_size1, val_size2), GFP_KERNEL);
b1ee94aa
YZ
196 if (!tmp_buf)
197 goto out_err;
33165d47 198 pagelist = ceph_pagelist_alloc(GFP_KERNEL);
b1ee94aa
YZ
199 if (!pagelist)
200 goto out_err;
b1ee94aa
YZ
201
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
75858236 208 if (acl) {
97d79299 209 size_t len = strlen(XATTR_NAME_POSIX_ACL_ACCESS);
b1ee94aa
YZ
210 err = ceph_pagelist_reserve(pagelist, len + val_size1 + 8);
211 if (err)
212 goto out_err;
97d79299 213 ceph_pagelist_encode_string(pagelist, XATTR_NAME_POSIX_ACL_ACCESS,
b1ee94aa
YZ
214 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);
75858236 221 }
b1ee94aa 222 if (default_acl) {
97d79299 223 size_t len = strlen(XATTR_NAME_POSIX_ACL_DEFAULT);
b1ee94aa
YZ
224 err = ceph_pagelist_reserve(pagelist, len + val_size2 + 8);
225 if (err)
226 goto out_err;
d80865bf
CX
227 ceph_pagelist_encode_string(pagelist,
228 XATTR_NAME_POSIX_ACL_DEFAULT, len);
b1ee94aa
YZ
229 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
5c31e92d
YZ
239 as_ctx->acl = acl;
240 as_ctx->default_acl = default_acl;
241 as_ctx->pagelist = pagelist;
b1ee94aa
YZ
242 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
5c31e92d 253void ceph_init_inode_acls(struct inode *inode, struct ceph_acl_sec_ctx *as_ctx)
b1ee94aa
YZ
254{
255 if (!inode)
256 return;
5c31e92d
YZ
257 ceph_set_cached_acl(inode, ACL_TYPE_ACCESS, as_ctx->acl);
258 ceph_set_cached_acl(inode, ACL_TYPE_DEFAULT, as_ctx->default_acl);
7221fe4c 259}