2 * Copyright (C) International Business Machines Corp., 2002-2004
3 * Copyright (C) Andreas Gruenbacher, 2001
4 * Copyright (C) Linus Torvalds, 1991, 1992
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
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * 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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/sched.h>
23 #include <linux/quotaops.h>
24 #include "jfs_incore.h"
25 #include "jfs_xattr.h"
28 static struct posix_acl *jfs_get_acl(struct inode *inode, int type)
30 struct posix_acl *acl;
32 struct jfs_inode_info *ji = JFS_IP(inode);
33 struct posix_acl **p_acl;
39 ea_name = XATTR_NAME_ACL_ACCESS;
42 case ACL_TYPE_DEFAULT:
43 ea_name = XATTR_NAME_ACL_DEFAULT;
44 p_acl = &ji->i_default_acl;
47 return ERR_PTR(-EINVAL);
50 if (*p_acl != JFS_ACL_NOT_CACHED)
51 return posix_acl_dup(*p_acl);
53 size = __jfs_getxattr(inode, ea_name, NULL, 0);
56 value = kmalloc(size, GFP_KERNEL);
58 return ERR_PTR(-ENOMEM);
59 size = __jfs_getxattr(inode, ea_name, value, size);
63 if (size == -ENODATA) {
69 acl = posix_acl_from_xattr(value, size);
71 *p_acl = posix_acl_dup(acl);
78 static int jfs_set_acl(struct inode *inode, int type, struct posix_acl *acl)
81 struct jfs_inode_info *ji = JFS_IP(inode);
82 struct posix_acl **p_acl;
87 if (S_ISLNK(inode->i_mode))
92 ea_name = XATTR_NAME_ACL_ACCESS;
95 case ACL_TYPE_DEFAULT:
96 ea_name = XATTR_NAME_ACL_DEFAULT;
97 p_acl = &ji->i_default_acl;
98 if (!S_ISDIR(inode->i_mode))
99 return acl ? -EACCES : 0;
105 size = xattr_acl_size(acl->a_count);
106 value = kmalloc(size, GFP_KERNEL);
109 rc = posix_acl_to_xattr(acl, value, size);
113 rc = __jfs_setxattr(inode, ea_name, value, size, 0);
119 if (*p_acl && (*p_acl != JFS_ACL_NOT_CACHED))
120 posix_acl_release(*p_acl);
121 *p_acl = posix_acl_dup(acl);
126 static int jfs_check_acl(struct inode *inode, int mask)
128 struct jfs_inode_info *ji = JFS_IP(inode);
130 if (ji->i_acl == JFS_ACL_NOT_CACHED) {
131 struct posix_acl *acl = jfs_get_acl(inode, ACL_TYPE_ACCESS);
134 posix_acl_release(acl);
138 return posix_acl_permission(inode, ji->i_acl, mask);
142 int jfs_permission(struct inode *inode, int mask, struct nameidata *nd)
144 return generic_permission(inode, mask, jfs_check_acl);
147 int jfs_init_acl(struct inode *inode, struct inode *dir)
149 struct posix_acl *acl = NULL;
150 struct posix_acl *clone;
154 if (S_ISLNK(inode->i_mode))
157 acl = jfs_get_acl(dir, ACL_TYPE_DEFAULT);
162 if (S_ISDIR(inode->i_mode)) {
163 rc = jfs_set_acl(inode, ACL_TYPE_DEFAULT, acl);
167 clone = posix_acl_clone(acl, GFP_KERNEL);
172 mode = inode->i_mode;
173 rc = posix_acl_create_masq(clone, &mode);
175 inode->i_mode = mode;
177 rc = jfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
179 posix_acl_release(clone);
181 posix_acl_release(acl);
183 inode->i_mode &= ~current->fs->umask;
188 static int jfs_acl_chmod(struct inode *inode)
190 struct posix_acl *acl, *clone;
193 if (S_ISLNK(inode->i_mode))
196 acl = jfs_get_acl(inode, ACL_TYPE_ACCESS);
197 if (IS_ERR(acl) || !acl)
200 clone = posix_acl_clone(acl, GFP_KERNEL);
201 posix_acl_release(acl);
205 rc = posix_acl_chmod_masq(clone, inode->i_mode);
207 rc = jfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
209 posix_acl_release(clone);
213 int jfs_setattr(struct dentry *dentry, struct iattr *iattr)
215 struct inode *inode = dentry->d_inode;
218 rc = inode_change_ok(inode, iattr);
222 if ((iattr->ia_valid & ATTR_UID && iattr->ia_uid != inode->i_uid) ||
223 (iattr->ia_valid & ATTR_GID && iattr->ia_gid != inode->i_gid)) {
224 if (DQUOT_TRANSFER(inode, iattr))
228 rc = inode_setattr(inode, iattr);
230 if (!rc && (iattr->ia_valid & ATTR_MODE))
231 rc = jfs_acl_chmod(inode);