]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/jfs/acl.c
Merge tag 'char-misc-5.15-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-jammy-kernel.git] / fs / jfs / acl.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * Copyright (C) International Business Machines Corp., 2002-2004
4 * Copyright (C) Andreas Gruenbacher, 2001
5 * Copyright (C) Linus Torvalds, 1991, 1992
1da177e4
LT
6 */
7
8#include <linux/sched.h>
5a0e3ad6 9#include <linux/slab.h>
1da177e4 10#include <linux/fs.h>
9a59f452 11#include <linux/posix_acl_xattr.h>
1da177e4 12#include "jfs_incore.h"
4f4b401b 13#include "jfs_txnmgr.h"
1da177e4
LT
14#include "jfs_xattr.h"
15#include "jfs_acl.h"
16
0cad6246 17struct posix_acl *jfs_get_acl(struct inode *inode, int type, bool rcu)
1da177e4
LT
18{
19 struct posix_acl *acl;
20 char *ea_name;
1da177e4
LT
21 int size;
22 char *value = NULL;
23
0cad6246
MS
24 if (rcu)
25 return ERR_PTR(-ECHILD);
26
1da177e4
LT
27 switch(type) {
28 case ACL_TYPE_ACCESS:
97d79299 29 ea_name = XATTR_NAME_POSIX_ACL_ACCESS;
1da177e4
LT
30 break;
31 case ACL_TYPE_DEFAULT:
97d79299 32 ea_name = XATTR_NAME_POSIX_ACL_DEFAULT;
1da177e4
LT
33 break;
34 default:
35 return ERR_PTR(-EINVAL);
36 }
37
1da177e4
LT
38 size = __jfs_getxattr(inode, ea_name, NULL, 0);
39
40 if (size > 0) {
41 value = kmalloc(size, GFP_KERNEL);
42 if (!value)
43 return ERR_PTR(-ENOMEM);
44 size = __jfs_getxattr(inode, ea_name, value, size);
45 }
46
47 if (size < 0) {
073aaa1b 48 if (size == -ENODATA)
1da177e4 49 acl = NULL;
073aaa1b 50 else
1da177e4
LT
51 acl = ERR_PTR(size);
52 } else {
5f3a4a28 53 acl = posix_acl_from_xattr(&init_user_ns, value, size);
1da177e4 54 }
259692bd 55 kfree(value);
1da177e4
LT
56 return acl;
57}
58
2cc6a5a0 59static int __jfs_set_acl(tid_t tid, struct inode *inode, int type,
4f4b401b 60 struct posix_acl *acl)
1da177e4
LT
61{
62 char *ea_name;
1da177e4
LT
63 int rc;
64 int size = 0;
65 char *value = NULL;
66
2cc6a5a0
CH
67 switch (type) {
68 case ACL_TYPE_ACCESS:
97d79299 69 ea_name = XATTR_NAME_POSIX_ACL_ACCESS;
2cc6a5a0
CH
70 break;
71 case ACL_TYPE_DEFAULT:
97d79299 72 ea_name = XATTR_NAME_POSIX_ACL_DEFAULT;
2cc6a5a0
CH
73 break;
74 default:
75 return -EINVAL;
1da177e4 76 }
2cc6a5a0 77
1da177e4 78 if (acl) {
9a59f452 79 size = posix_acl_xattr_size(acl->a_count);
1da177e4
LT
80 value = kmalloc(size, GFP_KERNEL);
81 if (!value)
82 return -ENOMEM;
5f3a4a28 83 rc = posix_acl_to_xattr(&init_user_ns, acl, value, size);
1da177e4
LT
84 if (rc < 0)
85 goto out;
86 }
4f4b401b 87 rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0);
1da177e4 88out:
259692bd 89 kfree(value);
1da177e4 90
073aaa1b
AV
91 if (!rc)
92 set_cached_acl(inode, type, acl);
93
1da177e4
LT
94 return rc;
95}
96
549c7297
CB
97int jfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
98 struct posix_acl *acl, int type)
2cc6a5a0
CH
99{
100 int rc;
101 tid_t tid;
f070e5ac
EF
102 int update_mode = 0;
103 umode_t mode = inode->i_mode;
2cc6a5a0
CH
104
105 tid = txBegin(inode->i_sb, 0);
106 mutex_lock(&JFS_IP(inode)->commit_mutex);
9bcf66c7 107 if (type == ACL_TYPE_ACCESS && acl) {
e65ce2a5 108 rc = posix_acl_update_mode(&init_user_ns, inode, &mode, &acl);
9bcf66c7
JK
109 if (rc)
110 goto end_tx;
7ca5e8f0
CX
111 if (mode != inode->i_mode)
112 update_mode = 1;
9bcf66c7 113 }
2cc6a5a0 114 rc = __jfs_set_acl(tid, inode, type, acl);
f070e5ac
EF
115 if (!rc) {
116 if (update_mode) {
117 inode->i_mode = mode;
118 inode->i_ctime = current_time(inode);
119 mark_inode_dirty(inode);
120 }
2cc6a5a0 121 rc = txCommit(tid, 1, &inode, 0);
f070e5ac 122 }
9bcf66c7 123end_tx:
2cc6a5a0
CH
124 txEnd(tid);
125 mutex_unlock(&JFS_IP(inode)->commit_mutex);
126 return rc;
127}
128
4f4b401b 129int jfs_init_acl(tid_t tid, struct inode *inode, struct inode *dir)
1da177e4 130{
2cc6a5a0 131 struct posix_acl *default_acl, *acl;
1da177e4
LT
132 int rc = 0;
133
2cc6a5a0
CH
134 rc = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl);
135 if (rc)
136 return rc;
1da177e4 137
2cc6a5a0
CH
138 if (default_acl) {
139 rc = __jfs_set_acl(tid, inode, ACL_TYPE_DEFAULT, default_acl);
140 posix_acl_release(default_acl);
e8d4ceeb
CX
141 } else {
142 inode->i_default_acl = NULL;
2cc6a5a0 143 }
1da177e4
LT
144
145 if (acl) {
2cc6a5a0
CH
146 if (!rc)
147 rc = __jfs_set_acl(tid, inode, ACL_TYPE_ACCESS, acl);
1da177e4 148 posix_acl_release(acl);
e8d4ceeb
CX
149 } else {
150 inode->i_acl = NULL;
2cc6a5a0 151 }
63f83c9f 152
69eb66d7
DK
153 JFS_IP(inode)->mode2 = (JFS_IP(inode)->mode2 & 0xffff0000) |
154 inode->i_mode;
1da177e4
LT
155
156 return rc;
157}