blob: 5fcfc9857c119d568c40da16ebc2f0784243b3f7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) International Business Machines Corp., 2002-2004
3 * Copyright (C) Andreas Gruenbacher, 2001
4 * Copyright (C) Linus Torvalds, 1991, 1992
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
Dave Kleikamp63f83c92006-10-02 09:55:27 -05008 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * (at your option) any later version.
Dave Kleikamp63f83c92006-10-02 09:55:27 -050010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
14 * the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
Dave Kleikamp63f83c92006-10-02 09:55:27 -050017 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/sched.h>
22#include <linux/fs.h>
23#include <linux/quotaops.h>
Christoph Hellwig9a59f452005-06-23 00:10:19 -070024#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "jfs_incore.h"
Dave Kleikamp4f4b4012005-09-01 09:02:43 -050026#include "jfs_txnmgr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "jfs_xattr.h"
28#include "jfs_acl.h"
29
30static struct posix_acl *jfs_get_acl(struct inode *inode, int type)
31{
32 struct posix_acl *acl;
33 char *ea_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 struct posix_acl **p_acl;
35 int size;
36 char *value = NULL;
37
38 switch(type) {
39 case ACL_TYPE_ACCESS:
Christoph Hellwig9a59f452005-06-23 00:10:19 -070040 ea_name = POSIX_ACL_XATTR_ACCESS;
Al Viro05fc0792009-06-08 19:54:52 -040041 p_acl = &inode->i_acl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 break;
43 case ACL_TYPE_DEFAULT:
Christoph Hellwig9a59f452005-06-23 00:10:19 -070044 ea_name = POSIX_ACL_XATTR_DEFAULT;
Al Viro05fc0792009-06-08 19:54:52 -040045 p_acl = &inode->i_default_acl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 break;
47 default:
48 return ERR_PTR(-EINVAL);
49 }
50
Al Viro05fc0792009-06-08 19:54:52 -040051 if (*p_acl != ACL_NOT_CACHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return posix_acl_dup(*p_acl);
53
54 size = __jfs_getxattr(inode, ea_name, NULL, 0);
55
56 if (size > 0) {
57 value = kmalloc(size, GFP_KERNEL);
58 if (!value)
59 return ERR_PTR(-ENOMEM);
60 size = __jfs_getxattr(inode, ea_name, value, size);
61 }
62
63 if (size < 0) {
64 if (size == -ENODATA) {
65 *p_acl = NULL;
66 acl = NULL;
67 } else
68 acl = ERR_PTR(size);
69 } else {
70 acl = posix_acl_from_xattr(value, size);
71 if (!IS_ERR(acl))
72 *p_acl = posix_acl_dup(acl);
73 }
Jesper Juhl259692b2005-05-09 10:47:14 -050074 kfree(value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return acl;
76}
77
Dave Kleikamp4f4b4012005-09-01 09:02:43 -050078static int jfs_set_acl(tid_t tid, struct inode *inode, int type,
79 struct posix_acl *acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 char *ea_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 struct posix_acl **p_acl;
83 int rc;
84 int size = 0;
85 char *value = NULL;
86
87 if (S_ISLNK(inode->i_mode))
88 return -EOPNOTSUPP;
89
90 switch(type) {
91 case ACL_TYPE_ACCESS:
Christoph Hellwig9a59f452005-06-23 00:10:19 -070092 ea_name = POSIX_ACL_XATTR_ACCESS;
Al Viro05fc0792009-06-08 19:54:52 -040093 p_acl = &inode->i_acl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 break;
95 case ACL_TYPE_DEFAULT:
Christoph Hellwig9a59f452005-06-23 00:10:19 -070096 ea_name = POSIX_ACL_XATTR_DEFAULT;
Al Viro05fc0792009-06-08 19:54:52 -040097 p_acl = &inode->i_default_acl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (!S_ISDIR(inode->i_mode))
99 return acl ? -EACCES : 0;
100 break;
101 default:
102 return -EINVAL;
103 }
104 if (acl) {
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700105 size = posix_acl_xattr_size(acl->a_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 value = kmalloc(size, GFP_KERNEL);
107 if (!value)
108 return -ENOMEM;
109 rc = posix_acl_to_xattr(acl, value, size);
110 if (rc < 0)
111 goto out;
112 }
Dave Kleikamp4f4b4012005-09-01 09:02:43 -0500113 rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114out:
Jesper Juhl259692b2005-05-09 10:47:14 -0500115 kfree(value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 if (!rc) {
Al Viro05fc0792009-06-08 19:54:52 -0400118 if (*p_acl && (*p_acl != ACL_NOT_CACHED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 posix_acl_release(*p_acl);
120 *p_acl = posix_acl_dup(acl);
121 }
122 return rc;
123}
124
125static int jfs_check_acl(struct inode *inode, int mask)
126{
Al Viro05fc0792009-06-08 19:54:52 -0400127 if (inode->i_acl == ACL_NOT_CACHED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct posix_acl *acl = jfs_get_acl(inode, ACL_TYPE_ACCESS);
129 if (IS_ERR(acl))
130 return PTR_ERR(acl);
131 posix_acl_release(acl);
132 }
133
Al Viro05fc0792009-06-08 19:54:52 -0400134 if (inode->i_acl)
135 return posix_acl_permission(inode, inode->i_acl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -EAGAIN;
137}
138
Al Viroe6305c42008-07-15 21:03:57 -0400139int jfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 return generic_permission(inode, mask, jfs_check_acl);
142}
143
Dave Kleikamp4f4b4012005-09-01 09:02:43 -0500144int jfs_init_acl(tid_t tid, struct inode *inode, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct posix_acl *acl = NULL;
147 struct posix_acl *clone;
148 mode_t mode;
149 int rc = 0;
150
151 if (S_ISLNK(inode->i_mode))
152 return 0;
153
154 acl = jfs_get_acl(dir, ACL_TYPE_DEFAULT);
155 if (IS_ERR(acl))
156 return PTR_ERR(acl);
157
158 if (acl) {
159 if (S_ISDIR(inode->i_mode)) {
Dave Kleikamp4f4b4012005-09-01 09:02:43 -0500160 rc = jfs_set_acl(tid, inode, ACL_TYPE_DEFAULT, acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (rc)
162 goto cleanup;
163 }
164 clone = posix_acl_clone(acl, GFP_KERNEL);
165 if (!clone) {
166 rc = -ENOMEM;
167 goto cleanup;
168 }
169 mode = inode->i_mode;
170 rc = posix_acl_create_masq(clone, &mode);
171 if (rc >= 0) {
172 inode->i_mode = mode;
173 if (rc > 0)
Dave Kleikamp4f4b4012005-09-01 09:02:43 -0500174 rc = jfs_set_acl(tid, inode, ACL_TYPE_ACCESS,
175 clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177 posix_acl_release(clone);
178cleanup:
179 posix_acl_release(acl);
180 } else
Al Viroce3b0f82009-03-29 19:08:22 -0400181 inode->i_mode &= ~current_umask();
Dave Kleikamp63f83c92006-10-02 09:55:27 -0500182
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600183 JFS_IP(inode)->mode2 = (JFS_IP(inode)->mode2 & 0xffff0000) |
184 inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 return rc;
187}
188
189static int jfs_acl_chmod(struct inode *inode)
190{
191 struct posix_acl *acl, *clone;
192 int rc;
193
194 if (S_ISLNK(inode->i_mode))
195 return -EOPNOTSUPP;
196
197 acl = jfs_get_acl(inode, ACL_TYPE_ACCESS);
198 if (IS_ERR(acl) || !acl)
199 return PTR_ERR(acl);
200
201 clone = posix_acl_clone(acl, GFP_KERNEL);
202 posix_acl_release(acl);
203 if (!clone)
204 return -ENOMEM;
205
206 rc = posix_acl_chmod_masq(clone, inode->i_mode);
Dave Kleikamp4f4b4012005-09-01 09:02:43 -0500207 if (!rc) {
208 tid_t tid = txBegin(inode->i_sb, 0);
Ingo Molnar1de87442006-01-24 15:22:50 -0600209 mutex_lock(&JFS_IP(inode)->commit_mutex);
Dave Kleikamp4f4b4012005-09-01 09:02:43 -0500210 rc = jfs_set_acl(tid, inode, ACL_TYPE_ACCESS, clone);
211 if (!rc)
212 rc = txCommit(tid, 1, &inode, 0);
213 txEnd(tid);
Ingo Molnar1de87442006-01-24 15:22:50 -0600214 mutex_unlock(&JFS_IP(inode)->commit_mutex);
Dave Kleikamp4f4b4012005-09-01 09:02:43 -0500215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 posix_acl_release(clone);
218 return rc;
219}
220
221int jfs_setattr(struct dentry *dentry, struct iattr *iattr)
222{
223 struct inode *inode = dentry->d_inode;
224 int rc;
225
226 rc = inode_change_ok(inode, iattr);
227 if (rc)
228 return rc;
229
230 if ((iattr->ia_valid & ATTR_UID && iattr->ia_uid != inode->i_uid) ||
231 (iattr->ia_valid & ATTR_GID && iattr->ia_gid != inode->i_gid)) {
Jan Karac94d2a22009-01-26 17:22:32 +0100232 if (vfs_dq_transfer(inode, iattr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -EDQUOT;
234 }
235
236 rc = inode_setattr(inode, iattr);
237
238 if (!rc && (iattr->ia_valid & ATTR_MODE))
239 rc = jfs_acl_chmod(inode);
240
241 return rc;
242}