Btrfs: fix a memory leak in btrfs_init_acl
[pandora-kernel.git] / fs / btrfs / acl.c
1 /*
2  * Copyright (C) 2007 Red Hat.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #include <linux/fs.h>
20 #include <linux/string.h>
21 #include <linux/xattr.h>
22 #include <linux/posix_acl_xattr.h>
23 #include <linux/posix_acl.h>
24 #include <linux/sched.h>
25
26 #include "ctree.h"
27 #include "btrfs_inode.h"
28 #include "xattr.h"
29
30 #ifdef CONFIG_BTRFS_FS_POSIX_ACL
31
32 static struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
33 {
34         int size;
35         const char *name;
36         char *value = NULL;
37         struct posix_acl *acl;
38
39         acl = get_cached_acl(inode, type);
40         if (acl != ACL_NOT_CACHED)
41                 return acl;
42
43         switch (type) {
44         case ACL_TYPE_ACCESS:
45                 name = POSIX_ACL_XATTR_ACCESS;
46                 break;
47         case ACL_TYPE_DEFAULT:
48                 name = POSIX_ACL_XATTR_DEFAULT;
49                 break;
50         default:
51                 BUG();
52         }
53
54         size = __btrfs_getxattr(inode, name, "", 0);
55         if (size > 0) {
56                 value = kzalloc(size, GFP_NOFS);
57                 if (!value)
58                         return ERR_PTR(-ENOMEM);
59                 size = __btrfs_getxattr(inode, name, value, size);
60                 if (size > 0) {
61                         acl = posix_acl_from_xattr(value, size);
62                         set_cached_acl(inode, type, acl);
63                 }
64                 kfree(value);
65         } else if (size == -ENOENT || size == -ENODATA || size == 0) {
66                 /* FIXME, who returns -ENOENT?  I think nobody */
67                 acl = NULL;
68                 set_cached_acl(inode, type, acl);
69         } else {
70                 acl = ERR_PTR(-EIO);
71         }
72
73         return acl;
74 }
75
76 static int btrfs_xattr_get_acl(struct inode *inode, int type,
77                                void *value, size_t size)
78 {
79         struct posix_acl *acl;
80         int ret = 0;
81
82         acl = btrfs_get_acl(inode, type);
83
84         if (IS_ERR(acl))
85                 return PTR_ERR(acl);
86         if (acl == NULL)
87                 return -ENODATA;
88         ret = posix_acl_to_xattr(acl, value, size);
89         posix_acl_release(acl);
90
91         return ret;
92 }
93
94 /*
95  * Needs to be called with fs_mutex held
96  */
97 static int btrfs_set_acl(struct btrfs_trans_handle *trans,
98                          struct inode *inode, struct posix_acl *acl, int type)
99 {
100         int ret, size = 0;
101         const char *name;
102         char *value = NULL;
103         mode_t mode;
104
105         if (acl) {
106                 ret = posix_acl_valid(acl);
107                 if (ret < 0)
108                         return ret;
109                 ret = 0;
110         }
111
112         switch (type) {
113         case ACL_TYPE_ACCESS:
114                 mode = inode->i_mode;
115                 name = POSIX_ACL_XATTR_ACCESS;
116                 if (acl) {
117                         ret = posix_acl_equiv_mode(acl, &mode);
118                         if (ret < 0)
119                                 return ret;
120                         inode->i_mode = mode;
121                 }
122                 ret = 0;
123                 break;
124         case ACL_TYPE_DEFAULT:
125                 if (!S_ISDIR(inode->i_mode))
126                         return acl ? -EINVAL : 0;
127                 name = POSIX_ACL_XATTR_DEFAULT;
128                 break;
129         default:
130                 return -EINVAL;
131         }
132
133         if (acl) {
134                 size = posix_acl_xattr_size(acl->a_count);
135                 value = kmalloc(size, GFP_NOFS);
136                 if (!value) {
137                         ret = -ENOMEM;
138                         goto out;
139                 }
140
141                 ret = posix_acl_to_xattr(acl, value, size);
142                 if (ret < 0)
143                         goto out;
144         }
145
146         ret = __btrfs_setxattr(trans, inode, name, value, size, 0);
147 out:
148         kfree(value);
149
150         if (!ret)
151                 set_cached_acl(inode, type, acl);
152
153         return ret;
154 }
155
156 static int btrfs_xattr_set_acl(struct inode *inode, int type,
157                                const void *value, size_t size)
158 {
159         int ret;
160         struct posix_acl *acl = NULL;
161
162         if (value) {
163                 acl = posix_acl_from_xattr(value, size);
164                 if (acl == NULL) {
165                         value = NULL;
166                         size = 0;
167                 } else if (IS_ERR(acl)) {
168                         return PTR_ERR(acl);
169                 }
170         }
171
172         ret = btrfs_set_acl(NULL, inode, acl, type);
173
174         posix_acl_release(acl);
175
176         return ret;
177 }
178
179
180 static int btrfs_xattr_acl_access_get(struct inode *inode, const char *name,
181                                       void *value, size_t size)
182 {
183         return btrfs_xattr_get_acl(inode, ACL_TYPE_ACCESS, value, size);
184 }
185
186 static int btrfs_xattr_acl_access_set(struct inode *inode, const char *name,
187                                       const void *value, size_t size, int flags)
188 {
189         return btrfs_xattr_set_acl(inode, ACL_TYPE_ACCESS, value, size);
190 }
191
192 static int btrfs_xattr_acl_default_get(struct inode *inode, const char *name,
193                                        void *value, size_t size)
194 {
195         return btrfs_xattr_get_acl(inode, ACL_TYPE_DEFAULT, value, size);
196 }
197
198 static int btrfs_xattr_acl_default_set(struct inode *inode, const char *name,
199                                const void *value, size_t size, int flags)
200 {
201         return btrfs_xattr_set_acl(inode, ACL_TYPE_DEFAULT, value, size);
202 }
203
204 int btrfs_check_acl(struct inode *inode, int mask)
205 {
206         struct posix_acl *acl;
207         int error = -EAGAIN;
208
209         acl = btrfs_get_acl(inode, ACL_TYPE_ACCESS);
210
211         if (IS_ERR(acl))
212                 return PTR_ERR(acl);
213         if (acl) {
214                 error = posix_acl_permission(inode, acl, mask);
215                 posix_acl_release(acl);
216         }
217
218         return error;
219 }
220
221 /*
222  * btrfs_init_acl is already generally called under fs_mutex, so the locking
223  * stuff has been fixed to work with that.  If the locking stuff changes, we
224  * need to re-evaluate the acl locking stuff.
225  */
226 int btrfs_init_acl(struct btrfs_trans_handle *trans,
227                    struct inode *inode, struct inode *dir)
228 {
229         struct posix_acl *acl = NULL;
230         int ret = 0;
231
232         /* this happens with subvols */
233         if (!dir)
234                 return 0;
235
236         if (!S_ISLNK(inode->i_mode)) {
237                 if (IS_POSIXACL(dir)) {
238                         acl = btrfs_get_acl(dir, ACL_TYPE_DEFAULT);
239                         if (IS_ERR(acl))
240                                 return PTR_ERR(acl);
241                 }
242
243                 if (!acl)
244                         inode->i_mode &= ~current_umask();
245         }
246
247         if (IS_POSIXACL(dir) && acl) {
248                 struct posix_acl *clone;
249                 mode_t mode;
250
251                 if (S_ISDIR(inode->i_mode)) {
252                         ret = btrfs_set_acl(trans, inode, acl,
253                                             ACL_TYPE_DEFAULT);
254                         if (ret)
255                                 goto failed;
256                 }
257                 clone = posix_acl_clone(acl, GFP_NOFS);
258                 ret = -ENOMEM;
259                 if (!clone)
260                         goto failed;
261
262                 mode = inode->i_mode;
263                 ret = posix_acl_create_masq(clone, &mode);
264                 if (ret >= 0) {
265                         inode->i_mode = mode;
266                         if (ret > 0) {
267                                 /* we need an acl */
268                                 ret = btrfs_set_acl(trans, inode, clone,
269                                                     ACL_TYPE_ACCESS);
270                         }
271                 }
272                 posix_acl_release(clone);
273         }
274 failed:
275         posix_acl_release(acl);
276
277         return ret;
278 }
279
280 int btrfs_acl_chmod(struct inode *inode)
281 {
282         struct posix_acl *acl, *clone;
283         int ret = 0;
284
285         if (S_ISLNK(inode->i_mode))
286                 return -EOPNOTSUPP;
287
288         if (!IS_POSIXACL(inode))
289                 return 0;
290
291         acl = btrfs_get_acl(inode, ACL_TYPE_ACCESS);
292         if (IS_ERR(acl) || !acl)
293                 return PTR_ERR(acl);
294
295         clone = posix_acl_clone(acl, GFP_KERNEL);
296         posix_acl_release(acl);
297         if (!clone)
298                 return -ENOMEM;
299
300         ret = posix_acl_chmod_masq(clone, inode->i_mode);
301         if (!ret)
302                 ret = btrfs_set_acl(NULL, inode, clone, ACL_TYPE_ACCESS);
303
304         posix_acl_release(clone);
305
306         return ret;
307 }
308
309 struct xattr_handler btrfs_xattr_acl_default_handler = {
310         .prefix = POSIX_ACL_XATTR_DEFAULT,
311         .get    = btrfs_xattr_acl_default_get,
312         .set    = btrfs_xattr_acl_default_set,
313 };
314
315 struct xattr_handler btrfs_xattr_acl_access_handler = {
316         .prefix = POSIX_ACL_XATTR_ACCESS,
317         .get    = btrfs_xattr_acl_access_get,
318         .set    = btrfs_xattr_acl_access_set,
319 };
320
321 #else /* CONFIG_BTRFS_FS_POSIX_ACL */
322
323 int btrfs_acl_chmod(struct inode *inode)
324 {
325         return 0;
326 }
327
328 int btrfs_init_acl(struct btrfs_trans_handle *trans,
329                    struct inode *inode, struct inode *dir)
330 {
331         return 0;
332 }
333
334 #endif /* CONFIG_BTRFS_FS_POSIX_ACL */