This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / fs / ext3 / acl.c
1 /*
2  * linux/fs/ext3/acl.c
3  *
4  * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
5  */
6
7 #include <linux/init.h>
8 #include <linux/sched.h>
9 #include <linux/slab.h>
10 #include <linux/fs.h>
11 #include <linux/namei.h> 
12 #include <linux/ext3_jbd.h>
13 #include <linux/ext3_fs.h>
14 #include <linux/vs_base.h>
15 #include "xattr.h"
16 #include "acl.h"
17
18 /*
19  * Convert from filesystem to in-memory representation.
20  */
21 static struct posix_acl *
22 ext3_acl_from_disk(const void *value, size_t size)
23 {
24         const char *end = (char *)value + size;
25         int n, count;
26         struct posix_acl *acl;
27
28         if (!value)
29                 return NULL;
30         if (size < sizeof(ext3_acl_header))
31                  return ERR_PTR(-EINVAL);
32         if (((ext3_acl_header *)value)->a_version !=
33             cpu_to_le32(EXT3_ACL_VERSION))
34                 return ERR_PTR(-EINVAL);
35         value = (char *)value + sizeof(ext3_acl_header);
36         count = ext3_acl_count(size);
37         if (count < 0)
38                 return ERR_PTR(-EINVAL);
39         if (count == 0)
40                 return NULL;
41         acl = posix_acl_alloc(count, GFP_KERNEL);
42         if (!acl)
43                 return ERR_PTR(-ENOMEM);
44         for (n=0; n < count; n++) {
45                 ext3_acl_entry *entry =
46                         (ext3_acl_entry *)value;
47                 if ((char *)value + sizeof(ext3_acl_entry_short) > end)
48                         goto fail;
49                 acl->a_entries[n].e_tag  = le16_to_cpu(entry->e_tag);
50                 acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm);
51                 switch(acl->a_entries[n].e_tag) {
52                         case ACL_USER_OBJ:
53                         case ACL_GROUP_OBJ:
54                         case ACL_MASK:
55                         case ACL_OTHER:
56                                 value = (char *)value +
57                                         sizeof(ext3_acl_entry_short);
58                                 acl->a_entries[n].e_id = ACL_UNDEFINED_ID;
59                                 break;
60
61                         case ACL_USER:
62                         case ACL_GROUP:
63                                 value = (char *)value + sizeof(ext3_acl_entry);
64                                 if ((char *)value > end)
65                                         goto fail;
66                                 acl->a_entries[n].e_id =
67                                         le32_to_cpu(entry->e_id);
68                                 break;
69
70                         default:
71                                 goto fail;
72                 }
73         }
74         if (value != end)
75                 goto fail;
76         return acl;
77
78 fail:
79         posix_acl_release(acl);
80         return ERR_PTR(-EINVAL);
81 }
82
83 /*
84  * Convert from in-memory to filesystem representation.
85  */
86 static void *
87 ext3_acl_to_disk(const struct posix_acl *acl, size_t *size)
88 {
89         ext3_acl_header *ext_acl;
90         char *e;
91         size_t n;
92
93         *size = ext3_acl_size(acl->a_count);
94         ext_acl = (ext3_acl_header *)kmalloc(sizeof(ext3_acl_header) +
95                 acl->a_count * sizeof(ext3_acl_entry), GFP_KERNEL);
96         if (!ext_acl)
97                 return ERR_PTR(-ENOMEM);
98         ext_acl->a_version = cpu_to_le32(EXT3_ACL_VERSION);
99         e = (char *)ext_acl + sizeof(ext3_acl_header);
100         for (n=0; n < acl->a_count; n++) {
101                 ext3_acl_entry *entry = (ext3_acl_entry *)e;
102                 entry->e_tag  = cpu_to_le16(acl->a_entries[n].e_tag);
103                 entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
104                 switch(acl->a_entries[n].e_tag) {
105                         case ACL_USER:
106                         case ACL_GROUP:
107                                 entry->e_id =
108                                         cpu_to_le32(acl->a_entries[n].e_id);
109                                 e += sizeof(ext3_acl_entry);
110                                 break;
111
112                         case ACL_USER_OBJ:
113                         case ACL_GROUP_OBJ:
114                         case ACL_MASK:
115                         case ACL_OTHER:
116                                 e += sizeof(ext3_acl_entry_short);
117                                 break;
118
119                         default:
120                                 goto fail;
121                 }
122         }
123         return (char *)ext_acl;
124
125 fail:
126         kfree(ext_acl);
127         return ERR_PTR(-EINVAL);
128 }
129
130 static inline struct posix_acl *
131 ext3_iget_acl(struct inode *inode, struct posix_acl **i_acl)
132 {
133         struct posix_acl *acl = EXT3_ACL_NOT_CACHED;
134
135         spin_lock(&inode->i_lock);
136         if (*i_acl != EXT3_ACL_NOT_CACHED)
137                 acl = posix_acl_dup(*i_acl);
138         spin_unlock(&inode->i_lock);
139
140         return acl;
141 }
142
143 static inline void
144 ext3_iset_acl(struct inode *inode, struct posix_acl **i_acl,
145                   struct posix_acl *acl)
146 {
147         spin_lock(&inode->i_lock);
148         if (*i_acl != EXT3_ACL_NOT_CACHED)
149                 posix_acl_release(*i_acl);
150         *i_acl = posix_acl_dup(acl);
151         spin_unlock(&inode->i_lock);
152 }
153
154 /*
155  * Inode operation get_posix_acl().
156  *
157  * inode->i_sem: don't care
158  */
159 static struct posix_acl *
160 ext3_get_acl(struct inode *inode, int type)
161 {
162         struct ext3_inode_info *ei = EXT3_I(inode);
163         int name_index;
164         char *value = NULL;
165         struct posix_acl *acl;
166         int retval;
167
168         if (!test_opt(inode->i_sb, POSIX_ACL))
169                 return NULL;
170
171         switch(type) {
172                 case ACL_TYPE_ACCESS:
173                         acl = ext3_iget_acl(inode, &ei->i_acl);
174                         if (acl != EXT3_ACL_NOT_CACHED)
175                                 return acl;
176                         name_index = EXT3_XATTR_INDEX_POSIX_ACL_ACCESS;
177                         break;
178
179                 case ACL_TYPE_DEFAULT:
180                         acl = ext3_iget_acl(inode, &ei->i_default_acl);
181                         if (acl != EXT3_ACL_NOT_CACHED)
182                                 return acl;
183                         name_index = EXT3_XATTR_INDEX_POSIX_ACL_DEFAULT;
184                         break;
185
186                 default:
187                         return ERR_PTR(-EINVAL);
188         }
189         retval = ext3_xattr_get(inode, name_index, "", NULL, 0);
190         if (retval > 0) {
191                 value = kmalloc(retval, GFP_KERNEL);
192                 if (!value)
193                         return ERR_PTR(-ENOMEM);
194                 retval = ext3_xattr_get(inode, name_index, "", value, retval);
195         }
196         if (retval > 0)
197                 acl = ext3_acl_from_disk(value, retval);
198         else if (retval == -ENODATA || retval == -ENOSYS)
199                 acl = NULL;
200         else
201                 acl = ERR_PTR(retval);
202         if (value)
203                 kfree(value);
204
205         if (!IS_ERR(acl)) {
206                 switch(type) {
207                         case ACL_TYPE_ACCESS:
208                                 ext3_iset_acl(inode, &ei->i_acl, acl);
209                                 break;
210
211                         case ACL_TYPE_DEFAULT:
212                                 ext3_iset_acl(inode, &ei->i_default_acl, acl);
213                                 break;
214                 }
215         }
216         return acl;
217 }
218
219 /*
220  * Set the access or default ACL of an inode.
221  *
222  * inode->i_sem: down unless called from ext3_new_inode
223  */
224 static int
225 ext3_set_acl(handle_t *handle, struct inode *inode, int type,
226              struct posix_acl *acl)
227 {
228         struct ext3_inode_info *ei = EXT3_I(inode);
229         int name_index;
230         void *value = NULL;
231         size_t size;
232         int error;
233
234         if (S_ISLNK(inode->i_mode))
235                 return -EOPNOTSUPP;
236
237         switch(type) {
238                 case ACL_TYPE_ACCESS:
239                         name_index = EXT3_XATTR_INDEX_POSIX_ACL_ACCESS;
240                         if (acl) {
241                                 mode_t mode = inode->i_mode;
242                                 error = posix_acl_equiv_mode(acl, &mode);
243                                 if (error < 0)
244                                         return error;
245                                 else {
246                                         inode->i_mode = mode;
247                                         ext3_mark_inode_dirty(handle, inode);
248                                         if (error == 0)
249                                                 acl = NULL;
250                                 }
251                         }
252                         break;
253
254                 case ACL_TYPE_DEFAULT:
255                         name_index = EXT3_XATTR_INDEX_POSIX_ACL_DEFAULT;
256                         if (!S_ISDIR(inode->i_mode))
257                                 return acl ? -EACCES : 0;
258                         break;
259
260                 default:
261                         return -EINVAL;
262         }
263         if (acl) {
264                 if (acl->a_count > EXT3_ACL_MAX_ENTRIES)
265                         return -EINVAL;
266                 value = ext3_acl_to_disk(acl, &size);
267                 if (IS_ERR(value))
268                         return (int)PTR_ERR(value);
269         }
270
271         error = ext3_xattr_set_handle(handle, inode, name_index, "",
272                                       value, size, 0);
273
274         if (value)
275                 kfree(value);
276         if (!error) {
277                 switch(type) {
278                         case ACL_TYPE_ACCESS:
279                                 ext3_iset_acl(inode, &ei->i_acl, acl);
280                                 break;
281
282                         case ACL_TYPE_DEFAULT:
283                                 ext3_iset_acl(inode, &ei->i_default_acl, acl);
284                                 break;
285                 }
286         }
287         return error;
288 }
289
290 int
291 ext3_permission(struct inode *inode, int mask, struct nameidata *nd)
292 {
293         int mode = inode->i_mode;
294
295 #warning MEF Need new BME patch for 2.6.10
296         /* Nobody gets write access to a read-only fs */
297         if ((mask & MAY_WRITE) && (IS_RDONLY(inode) ||
298             (nd && MNT_IS_RDONLY(nd->mnt))) &&
299             (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
300                 return -EROFS;
301
302         return generic_permission(inode, mask, 0);
303 }
304
305 /*
306  * Initialize the ACLs of a new inode. Called from ext3_new_inode.
307  *
308  * dir->i_sem: down
309  * inode->i_sem: up (access to inode is still exclusive)
310  */
311 int
312 ext3_init_acl(handle_t *handle, struct inode *inode, struct inode *dir)
313 {
314         struct posix_acl *acl = NULL;
315         int error = 0;
316
317         if (!S_ISLNK(inode->i_mode)) {
318                 if (test_opt(dir->i_sb, POSIX_ACL)) {
319                         acl = ext3_get_acl(dir, ACL_TYPE_DEFAULT);
320                         if (IS_ERR(acl))
321                                 return PTR_ERR(acl);
322                 }
323                 if (!acl)
324                         inode->i_mode &= ~current->fs->umask;
325         }
326         if (test_opt(inode->i_sb, POSIX_ACL) && acl) {
327                 struct posix_acl *clone;
328                 mode_t mode;
329
330                 if (S_ISDIR(inode->i_mode)) {
331                         error = ext3_set_acl(handle, inode,
332                                              ACL_TYPE_DEFAULT, acl);
333                         if (error)
334                                 goto cleanup;
335                 }
336                 clone = posix_acl_clone(acl, GFP_KERNEL);
337                 error = -ENOMEM;
338                 if (!clone)
339                         goto cleanup;
340
341                 mode = inode->i_mode;
342                 error = posix_acl_create_masq(clone, &mode);
343                 if (error >= 0) {
344                         inode->i_mode = mode;
345                         if (error > 0) {
346                                 /* This is an extended ACL */
347                                 error = ext3_set_acl(handle, inode,
348                                                      ACL_TYPE_ACCESS, clone);
349                         }
350                 }
351                 posix_acl_release(clone);
352         }
353 cleanup:
354         posix_acl_release(acl);
355         return error;
356 }
357
358 /*
359  * Does chmod for an inode that may have an Access Control List. The
360  * inode->i_mode field must be updated to the desired value by the caller
361  * before calling this function.
362  * Returns 0 on success, or a negative error number.
363  *
364  * We change the ACL rather than storing some ACL entries in the file
365  * mode permission bits (which would be more efficient), because that
366  * would break once additional permissions (like  ACL_APPEND, ACL_DELETE
367  * for directories) are added. There are no more bits available in the
368  * file mode.
369  *
370  * inode->i_sem: down
371  */
372 int
373 ext3_acl_chmod(struct inode *inode)
374 {
375         struct posix_acl *acl, *clone;
376         int error;
377
378         if (S_ISLNK(inode->i_mode))
379                 return -EOPNOTSUPP;
380         if (!test_opt(inode->i_sb, POSIX_ACL))
381                 return 0;
382         acl = ext3_get_acl(inode, ACL_TYPE_ACCESS);
383         if (IS_ERR(acl) || !acl)
384                 return PTR_ERR(acl);
385         clone = posix_acl_clone(acl, GFP_KERNEL);
386         posix_acl_release(acl);
387         if (!clone)
388                 return -ENOMEM;
389         error = posix_acl_chmod_masq(clone, inode->i_mode);
390         if (!error) {
391                 handle_t *handle;
392                 int retries = 0;
393
394         retry:
395                 handle = ext3_journal_start(inode, EXT3_DATA_TRANS_BLOCKS);
396                 if (IS_ERR(handle)) {
397                         error = PTR_ERR(handle);
398                         ext3_std_error(inode->i_sb, error);
399                         goto out;
400                 }
401                 error = ext3_set_acl(handle, inode, ACL_TYPE_ACCESS, clone);
402                 ext3_journal_stop(handle);
403                 if (error == -ENOSPC &&
404                     ext3_should_retry_alloc(inode->i_sb, &retries))
405                         goto retry;
406         }
407 out:
408         posix_acl_release(clone);
409         return error;
410 }
411
412 /*
413  * Extended attribute handlers
414  */
415 static size_t
416 ext3_xattr_list_acl_access(struct inode *inode, char *list, size_t list_len,
417                            const char *name, size_t name_len)
418 {
419         const size_t size = sizeof(XATTR_NAME_ACL_ACCESS);
420
421         if (!test_opt(inode->i_sb, POSIX_ACL))
422                 return 0;
423         if (list && size <= list_len)
424                 memcpy(list, XATTR_NAME_ACL_ACCESS, size);
425         return size;
426 }
427
428 static size_t
429 ext3_xattr_list_acl_default(struct inode *inode, char *list, size_t list_len,
430                             const char *name, size_t name_len)
431 {
432         const size_t size = sizeof(XATTR_NAME_ACL_DEFAULT);
433
434         if (!test_opt(inode->i_sb, POSIX_ACL))
435                 return 0;
436         if (list && size <= list_len)
437                 memcpy(list, XATTR_NAME_ACL_DEFAULT, size);
438         return size;
439 }
440
441 static int
442 ext3_xattr_get_acl(struct inode *inode, int type, void *buffer, size_t size)
443 {
444         struct posix_acl *acl;
445         int error;
446
447         if (!test_opt(inode->i_sb, POSIX_ACL))
448                 return -EOPNOTSUPP;
449
450         acl = ext3_get_acl(inode, type);
451         if (IS_ERR(acl))
452                 return PTR_ERR(acl);
453         if (acl == NULL)
454                 return -ENODATA;
455         error = posix_acl_to_xattr(acl, buffer, size);
456         posix_acl_release(acl);
457
458         return error;
459 }
460
461 static int
462 ext3_xattr_get_acl_access(struct inode *inode, const char *name,
463                           void *buffer, size_t size)
464 {
465         if (strcmp(name, "") != 0)
466                 return -EINVAL;
467         return ext3_xattr_get_acl(inode, ACL_TYPE_ACCESS, buffer, size);
468 }
469
470 static int
471 ext3_xattr_get_acl_default(struct inode *inode, const char *name,
472                            void *buffer, size_t size)
473 {
474         if (strcmp(name, "") != 0)
475                 return -EINVAL;
476         return ext3_xattr_get_acl(inode, ACL_TYPE_DEFAULT, buffer, size);
477 }
478
479 static int
480 ext3_xattr_set_acl(struct inode *inode, int type, const void *value,
481                    size_t size)
482 {
483         handle_t *handle;
484         struct posix_acl *acl;
485         int error, retries = 0;
486
487         if (!test_opt(inode->i_sb, POSIX_ACL))
488                 return -EOPNOTSUPP;
489         if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
490                 return -EPERM;
491
492         if (value) {
493                 acl = posix_acl_from_xattr(value, size);
494                 if (IS_ERR(acl))
495                         return PTR_ERR(acl);
496                 else if (acl) {
497                         error = posix_acl_valid(acl);
498                         if (error)
499                                 goto release_and_out;
500                 }
501         } else
502                 acl = NULL;
503
504 retry:
505         handle = ext3_journal_start(inode, EXT3_DATA_TRANS_BLOCKS);
506         if (IS_ERR(handle))
507                 return PTR_ERR(handle);
508         error = ext3_set_acl(handle, inode, type, acl);
509         ext3_journal_stop(handle);
510         if (error == -ENOSPC && ext3_should_retry_alloc(inode->i_sb, &retries))
511                 goto retry;
512
513 release_and_out:
514         posix_acl_release(acl);
515         return error;
516 }
517
518 static int
519 ext3_xattr_set_acl_access(struct inode *inode, const char *name,
520                           const void *value, size_t size, int flags)
521 {
522         if (strcmp(name, "") != 0)
523                 return -EINVAL;
524         return ext3_xattr_set_acl(inode, ACL_TYPE_ACCESS, value, size);
525 }
526
527 static int
528 ext3_xattr_set_acl_default(struct inode *inode, const char *name,
529                            const void *value, size_t size, int flags)
530 {
531         if (strcmp(name, "") != 0)
532                 return -EINVAL;
533         return ext3_xattr_set_acl(inode, ACL_TYPE_DEFAULT, value, size);
534 }
535
536 struct xattr_handler ext3_xattr_acl_access_handler = {
537         .prefix = XATTR_NAME_ACL_ACCESS,
538         .list   = ext3_xattr_list_acl_access,
539         .get    = ext3_xattr_get_acl_access,
540         .set    = ext3_xattr_set_acl_access,
541 };
542
543 struct xattr_handler ext3_xattr_acl_default_handler = {
544         .prefix = XATTR_NAME_ACL_DEFAULT,
545         .list   = ext3_xattr_list_acl_default,
546         .get    = ext3_xattr_get_acl_default,
547         .set    = ext3_xattr_set_acl_default,
548 };