upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / fs / jfs / acl.c
1 /*
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
8  *   the Free Software Foundation; either version 2 of the License, or 
9  *   (at your option) any later version.
10  * 
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.
15  *
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
19  */
20
21 #include <linux/sched.h>
22 #include <linux/fs.h>
23 #include <linux/namei.h> 
24 #include <linux/quotaops.h>
25 #include "jfs_incore.h"
26 #include "jfs_xattr.h"
27 #include "jfs_acl.h"
28
29 static struct posix_acl *jfs_get_acl(struct inode *inode, int type)
30 {
31         struct posix_acl *acl;
32         char *ea_name;
33         struct jfs_inode_info *ji = JFS_IP(inode);
34         struct posix_acl **p_acl;
35         int size;
36         char *value = NULL;
37
38         switch(type) {
39                 case ACL_TYPE_ACCESS:
40                         ea_name = XATTR_NAME_ACL_ACCESS;
41                         p_acl = &ji->i_acl;
42                         break;
43                 case ACL_TYPE_DEFAULT:
44                         ea_name = XATTR_NAME_ACL_DEFAULT;
45                         p_acl = &ji->i_default_acl;
46                         break;
47                 default:
48                         return ERR_PTR(-EINVAL);
49         }
50
51         if (*p_acl != JFS_ACL_NOT_CACHED)
52                 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         }
74         if (value)
75                 kfree(value);
76         return acl;
77 }
78
79 static int jfs_set_acl(struct inode *inode, int type, struct posix_acl *acl)
80 {
81         char *ea_name;
82         struct jfs_inode_info *ji = JFS_IP(inode);
83         struct posix_acl **p_acl;
84         int rc;
85         int size = 0;
86         char *value = NULL;
87
88         if (S_ISLNK(inode->i_mode))
89                 return -EOPNOTSUPP;
90
91         switch(type) {
92                 case ACL_TYPE_ACCESS:
93                         ea_name = XATTR_NAME_ACL_ACCESS;
94                         p_acl = &ji->i_acl;
95                         break;
96                 case ACL_TYPE_DEFAULT:
97                         ea_name = XATTR_NAME_ACL_DEFAULT;
98                         p_acl = &ji->i_default_acl;
99                         if (!S_ISDIR(inode->i_mode))
100                                 return acl ? -EACCES : 0;
101                         break;
102                 default:
103                         return -EINVAL;
104         }
105         if (acl) {
106                 size = xattr_acl_size(acl->a_count);
107                 value = kmalloc(size, GFP_KERNEL);
108                 if (!value)
109                         return -ENOMEM;
110                 rc = posix_acl_to_xattr(acl, value, size);
111                 if (rc < 0)
112                         goto out;
113         }
114         rc = __jfs_setxattr(inode, ea_name, value, size, 0);
115 out:
116         if (value)
117                 kfree(value);
118
119         if (!rc) {
120                 if (*p_acl && (*p_acl != JFS_ACL_NOT_CACHED))
121                         posix_acl_release(*p_acl);
122                 *p_acl = posix_acl_dup(acl);
123         }
124         return rc;
125 }
126
127 int jfs_permission(struct inode *inode, int mask, struct nameidata *nd)
128 {
129         int mode = inode->i_mode;
130
131 #warning MEF Need new BME patch for 2.6.10
132         /* Nobody gets write access to a read-only fs */
133         if ((mask & MAY_WRITE) && (IS_RDONLY(inode) ||
134             (nd && MNT_IS_RDONLY(nd->mnt))) &&
135             (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
136                 return -EROFS;
137
138         return generic_permission(inode, mask, 0);
139 }
140
141 int jfs_init_acl(struct inode *inode, struct inode *dir)
142 {
143         struct posix_acl *acl = NULL;
144         struct posix_acl *clone;
145         mode_t mode;
146         int rc = 0;
147
148         if (S_ISLNK(inode->i_mode))
149                 return 0;
150
151         acl = jfs_get_acl(dir, ACL_TYPE_DEFAULT);
152         if (IS_ERR(acl))
153                 return PTR_ERR(acl);
154
155         if (acl) {
156                 if (S_ISDIR(inode->i_mode)) {
157                         rc = jfs_set_acl(inode, ACL_TYPE_DEFAULT, acl);
158                         if (rc)
159                                 goto cleanup;
160                 }
161                 clone = posix_acl_clone(acl, GFP_KERNEL);
162                 if (!clone) {
163                         rc = -ENOMEM;
164                         goto cleanup;
165                 }
166                 mode = inode->i_mode;
167                 rc = posix_acl_create_masq(clone, &mode);
168                 if (rc >= 0) {
169                         inode->i_mode = mode;
170                         if (rc > 0)
171                                 rc = jfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
172                 }
173                 posix_acl_release(clone);
174 cleanup:
175                 posix_acl_release(acl);
176         } else
177                 inode->i_mode &= ~current->fs->umask;
178
179         return rc;
180 }
181
182 static int jfs_acl_chmod(struct inode *inode)
183 {
184         struct posix_acl *acl, *clone;
185         int rc;
186
187         if (S_ISLNK(inode->i_mode))
188                 return -EOPNOTSUPP;
189
190         acl = jfs_get_acl(inode, ACL_TYPE_ACCESS);
191         if (IS_ERR(acl) || !acl)
192                 return PTR_ERR(acl);
193
194         clone = posix_acl_clone(acl, GFP_KERNEL);
195         posix_acl_release(acl);
196         if (!clone)
197                 return -ENOMEM;
198
199         rc = posix_acl_chmod_masq(clone, inode->i_mode);
200         if (!rc)
201                 rc = jfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
202
203         posix_acl_release(clone);
204         return rc;
205 }
206
207 int jfs_setattr(struct dentry *dentry, struct iattr *iattr)
208 {
209         struct inode *inode = dentry->d_inode;
210         int rc;
211
212         rc = inode_change_ok(inode, iattr);
213         if (rc)
214                 return rc;
215
216         if ((iattr->ia_valid & ATTR_UID && iattr->ia_uid != inode->i_uid) ||
217             (iattr->ia_valid & ATTR_GID && iattr->ia_gid != inode->i_gid)) {
218                 if (DQUOT_TRANSFER(inode, iattr))
219                         return -EDQUOT;
220         }
221
222         rc = inode_setattr(inode, iattr);
223
224         if (!rc && (iattr->ia_valid & ATTR_MODE))
225                 rc = jfs_acl_chmod(inode);
226
227         return rc;
228 }