This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / fs / reiserfs / xattr_acl.c
1 #include <linux/fs.h>
2 #include <linux/posix_acl.h>
3 #include <linux/reiserfs_fs.h>
4 #include <linux/errno.h>
5 #include <linux/pagemap.h>
6 #include <linux/xattr.h>
7 #include <linux/xattr_acl.h>
8 #include <linux/reiserfs_xattr.h>
9 #include <linux/reiserfs_acl.h>
10 #include <asm/uaccess.h>
11
12 static int
13 xattr_set_acl(struct inode *inode, int type, const void *value, size_t size)
14 {
15         struct posix_acl *acl;
16         int error;
17
18         if (!reiserfs_posixacl(inode->i_sb))
19                 return -EOPNOTSUPP;
20         if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
21                 return -EPERM;
22
23         if (value) {
24                 acl = posix_acl_from_xattr(value, size);
25                 if (IS_ERR(acl)) {
26                         return PTR_ERR(acl);
27                 } else if (acl) {
28                         error = posix_acl_valid(acl);
29                         if (error)
30                                 goto release_and_out;
31                 }
32         } else
33                 acl = NULL;
34
35         error = reiserfs_set_acl (inode, type, acl);
36
37 release_and_out:
38         posix_acl_release(acl);
39         return error;
40 }
41
42
43 static int
44 xattr_get_acl(struct inode *inode, int type, void *buffer, size_t size)
45 {
46         struct posix_acl *acl;
47         int error;
48
49         if (!reiserfs_posixacl(inode->i_sb))
50                 return -EOPNOTSUPP;
51
52         acl = reiserfs_get_acl (inode, type);
53         if (IS_ERR(acl))
54                 return PTR_ERR(acl);
55         if (acl == NULL)
56                 return -ENODATA;
57         error = posix_acl_to_xattr(acl, buffer, size);
58         posix_acl_release(acl);
59
60         return error;
61 }
62
63
64 /*
65  * Convert from filesystem to in-memory representation.
66  */
67 static struct posix_acl *
68 posix_acl_from_disk(const void *value, size_t size)
69 {
70         const char *end = (char *)value + size;
71         int n, count;
72         struct posix_acl *acl;
73
74         if (!value)
75                 return NULL;
76         if (size < sizeof(reiserfs_acl_header))
77                  return ERR_PTR(-EINVAL);
78         if (((reiserfs_acl_header *)value)->a_version !=
79             cpu_to_le32(REISERFS_ACL_VERSION))
80                 return ERR_PTR(-EINVAL);
81         value = (char *)value + sizeof(reiserfs_acl_header);
82         count = reiserfs_acl_count(size);
83         if (count < 0)
84                 return ERR_PTR(-EINVAL);
85         if (count == 0)
86                 return NULL;
87         acl = posix_acl_alloc(count, GFP_NOFS);
88         if (!acl)
89                 return ERR_PTR(-ENOMEM);
90         for (n=0; n < count; n++) {
91                 reiserfs_acl_entry *entry =
92                         (reiserfs_acl_entry *)value;
93                 if ((char *)value + sizeof(reiserfs_acl_entry_short) > end)
94                         goto fail;
95                 acl->a_entries[n].e_tag  = le16_to_cpu(entry->e_tag);
96                 acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm);
97                 switch(acl->a_entries[n].e_tag) {
98                         case ACL_USER_OBJ:
99                         case ACL_GROUP_OBJ:
100                         case ACL_MASK:
101                         case ACL_OTHER:
102                                 value = (char *)value +
103                                         sizeof(reiserfs_acl_entry_short);
104                                 acl->a_entries[n].e_id = ACL_UNDEFINED_ID;
105                                 break;
106
107                         case ACL_USER:
108                         case ACL_GROUP:
109                                 value = (char *)value + sizeof(reiserfs_acl_entry);
110                                 if ((char *)value > end)
111                                         goto fail;
112                                 acl->a_entries[n].e_id =
113                                         le32_to_cpu(entry->e_id);
114                                 break;
115
116                         default:
117                                 goto fail;
118                 }
119         }
120         if (value != end)
121                 goto fail;
122         return acl;
123
124 fail:
125         posix_acl_release(acl);
126         return ERR_PTR(-EINVAL);
127 }
128
129 /*
130  * Convert from in-memory to filesystem representation.
131  */
132 static void *
133 posix_acl_to_disk(const struct posix_acl *acl, size_t *size)
134 {
135         reiserfs_acl_header *ext_acl;
136         char *e;
137         int n;
138
139         *size = reiserfs_acl_size(acl->a_count);
140         ext_acl = (reiserfs_acl_header *)kmalloc(sizeof(reiserfs_acl_header) +
141                 acl->a_count * sizeof(reiserfs_acl_entry), GFP_NOFS);
142         if (!ext_acl)
143                 return ERR_PTR(-ENOMEM);
144         ext_acl->a_version = cpu_to_le32(REISERFS_ACL_VERSION);
145         e = (char *)ext_acl + sizeof(reiserfs_acl_header);
146         for (n=0; n < acl->a_count; n++) {
147                 reiserfs_acl_entry *entry = (reiserfs_acl_entry *)e;
148                 entry->e_tag  = cpu_to_le16(acl->a_entries[n].e_tag);
149                 entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
150                 switch(acl->a_entries[n].e_tag) {
151                         case ACL_USER:
152                         case ACL_GROUP:
153                                 entry->e_id =
154                                         cpu_to_le32(acl->a_entries[n].e_id);
155                                 e += sizeof(reiserfs_acl_entry);
156                                 break;
157
158                         case ACL_USER_OBJ:
159                         case ACL_GROUP_OBJ:
160                         case ACL_MASK:
161                         case ACL_OTHER:
162                                 e += sizeof(reiserfs_acl_entry_short);
163                                 break;
164
165                         default:
166                                 goto fail;
167                 }
168         }
169         return (char *)ext_acl;
170
171 fail:
172         kfree(ext_acl);
173         return ERR_PTR(-EINVAL);
174 }
175
176 /*
177  * Inode operation get_posix_acl().
178  *
179  * inode->i_sem: down
180  * BKL held [before 2.5.x]
181  */
182 struct posix_acl *
183 reiserfs_get_acl(struct inode *inode, int type)
184 {
185         char *name, *value;
186         struct posix_acl *acl, **p_acl;
187         size_t size;
188         int retval;
189         struct reiserfs_inode_info *reiserfs_i = REISERFS_I(inode);
190
191         switch (type) {
192             case ACL_TYPE_ACCESS:
193                 name = XATTR_NAME_ACL_ACCESS;
194                 p_acl = &reiserfs_i->i_acl_access;
195                 break;
196             case ACL_TYPE_DEFAULT:
197                 name = XATTR_NAME_ACL_DEFAULT;
198                 p_acl = &reiserfs_i->i_acl_default;
199                 break;
200             default:
201                 return ERR_PTR (-EINVAL);
202         }
203
204         if (IS_ERR (*p_acl)) {
205             if (PTR_ERR (*p_acl) == -ENODATA)
206                 return NULL;
207         } else if (*p_acl != NULL)
208             return posix_acl_dup (*p_acl);
209
210         size = reiserfs_xattr_get (inode, name, NULL, 0);
211         if ((int)size < 0) {
212             if (size == -ENODATA || size == -ENOSYS) {
213                 *p_acl = ERR_PTR (-ENODATA);
214                 return NULL;
215             }
216             return ERR_PTR (size);
217         }
218
219         value = kmalloc (size, GFP_NOFS);
220         if (!value)
221             return ERR_PTR (-ENOMEM);
222
223         retval = reiserfs_xattr_get(inode, name, value, size);
224         if (retval == -ENODATA || retval == -ENOSYS) {
225                 /* This shouldn't actually happen as it should have
226                    been caught above.. but just in case */
227                 acl = NULL;
228                 *p_acl = ERR_PTR (-ENODATA);
229         } else if (retval < 0) {
230                 acl = ERR_PTR(retval);
231         } else {
232                 acl = posix_acl_from_disk(value, retval);
233                 *p_acl = posix_acl_dup (acl);
234         }
235
236         kfree(value);
237         return acl;
238 }
239
240 /*
241  * Inode operation set_posix_acl().
242  *
243  * inode->i_sem: down
244  * BKL held [before 2.5.x]
245  */
246 int
247 reiserfs_set_acl(struct inode *inode, int type, struct posix_acl *acl)
248 {
249         char *name;
250         void *value = NULL;
251         struct posix_acl **p_acl;
252         size_t size;
253         int error;
254         struct reiserfs_inode_info *reiserfs_i = REISERFS_I(inode);
255
256         if (S_ISLNK(inode->i_mode))
257                 return -EOPNOTSUPP;
258
259         switch (type) {
260             case ACL_TYPE_ACCESS:
261                 name = XATTR_NAME_ACL_ACCESS;
262                 p_acl = &reiserfs_i->i_acl_access;
263                 if (acl) {
264                     mode_t mode = inode->i_mode;
265                     error = posix_acl_equiv_mode (acl, &mode);
266                     if (error < 0)
267                         return error;
268                     else {
269                         inode->i_mode = mode;
270                         if (error == 0)
271                             acl = NULL;
272                     }
273                 }
274                 break;
275             case ACL_TYPE_DEFAULT:
276                 name = XATTR_NAME_ACL_DEFAULT;
277                 p_acl = &reiserfs_i->i_acl_default;
278                 if (!S_ISDIR (inode->i_mode))
279                     return acl ? -EACCES : 0;
280                 break;
281             default:
282                 return -EINVAL;
283         }
284
285         if (acl) {
286             value = posix_acl_to_disk(acl, &size);
287             if (IS_ERR(value))
288                 return (int)PTR_ERR(value);
289             error = reiserfs_xattr_set(inode, name, value, size, 0);
290         } else {
291             error = reiserfs_xattr_del (inode, name);
292             if (error == -ENODATA)
293                 error = 0;
294         }
295
296         if (value)
297                 kfree(value);
298
299         if (!error) {
300             /* Release the old one */
301             if (!IS_ERR (*p_acl) && *p_acl)
302                 posix_acl_release (*p_acl);
303
304             if (acl == NULL)
305                 *p_acl = ERR_PTR (-ENODATA);
306             else
307                 *p_acl = posix_acl_dup (acl);
308         }
309
310         return error;
311 }
312
313 /* dir->i_sem: down,
314  * inode is new and not released into the wild yet */
315 int
316 reiserfs_inherit_default_acl (struct inode *dir, struct dentry *dentry, struct inode *inode)
317 {
318     struct posix_acl *acl;
319     int err = 0;
320
321     /* ACLs only get applied to files and directories */
322     if (S_ISLNK (inode->i_mode))
323         return 0;
324
325     /* ACLs can only be used on "new" objects, so if it's an old object
326      * there is nothing to inherit from */
327     if (get_inode_sd_version (dir) == STAT_DATA_V1)
328         goto apply_umask;
329
330     /* Don't apply ACLs to objects in the .reiserfs_priv tree.. This
331      * would be useless since permissions are ignored, and a pain because
332      * it introduces locking cycles */
333     if (is_reiserfs_priv_object (dir)) {
334         REISERFS_I(inode)->i_flags |= i_priv_object;
335         goto apply_umask;
336     }
337
338     acl = reiserfs_get_acl (dir, ACL_TYPE_DEFAULT);
339     if (IS_ERR (acl)) {
340         if (PTR_ERR (acl) == -ENODATA)
341             goto apply_umask;
342         return PTR_ERR (acl);
343     }
344
345     if (acl) {
346         struct posix_acl *acl_copy;
347         mode_t mode = inode->i_mode;
348         int need_acl;
349
350         /* Copy the default ACL to the default ACL of a new directory */
351         if (S_ISDIR (inode->i_mode)) {
352             err = reiserfs_set_acl (inode, ACL_TYPE_DEFAULT, acl);
353             if (err)
354                 goto cleanup;
355         }
356
357         /* Now we reconcile the new ACL and the mode,
358            potentially modifying both */
359         acl_copy = posix_acl_clone (acl, GFP_NOFS);
360         if (!acl_copy) {
361             err = -ENOMEM;
362             goto cleanup;
363         }
364
365
366         need_acl = posix_acl_create_masq (acl_copy, &mode);
367         if (need_acl >= 0) {
368             if (mode != inode->i_mode) {
369                 inode->i_mode = mode;
370             }
371
372             /* If we need an ACL.. */
373             if (need_acl > 0) {
374                 err = reiserfs_set_acl (inode, ACL_TYPE_ACCESS, acl_copy);
375                 if (err)
376                     goto cleanup_copy;
377             }
378         }
379 cleanup_copy:
380         posix_acl_release (acl_copy);
381 cleanup:
382         posix_acl_release (acl);
383     } else {
384 apply_umask:
385         /* no ACL, apply umask */
386         inode->i_mode &= ~current->fs->umask;
387     }
388
389     return err;
390 }
391
392 /* Looks up and caches the result of the default ACL.
393  * We do this so that we don't need to carry the xattr_sem into
394  * reiserfs_new_inode if we don't need to */
395 int
396 reiserfs_cache_default_acl (struct inode *inode)
397 {
398     int ret = 0;
399     if (reiserfs_posixacl (inode->i_sb) &&
400         !is_reiserfs_priv_object (inode)) {
401         struct posix_acl *acl;
402         reiserfs_read_lock_xattr_i (inode);
403         reiserfs_read_lock_xattrs (inode->i_sb);
404         acl = reiserfs_get_acl (inode, ACL_TYPE_DEFAULT);
405         reiserfs_read_unlock_xattrs (inode->i_sb);
406         reiserfs_read_unlock_xattr_i (inode);
407         ret = acl ? 1 : 0;
408         posix_acl_release (acl);
409     }
410
411     return ret;
412 }
413
414 int
415 reiserfs_acl_chmod (struct inode *inode)
416 {
417         struct posix_acl *acl, *clone;
418         int error;
419
420         if (S_ISLNK(inode->i_mode))
421                 return -EOPNOTSUPP;
422
423         if (get_inode_sd_version (inode) == STAT_DATA_V1 ||
424             !reiserfs_posixacl(inode->i_sb))
425         {
426             return 0;
427         }
428
429         reiserfs_read_lock_xattrs (inode->i_sb);
430         acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
431         reiserfs_read_unlock_xattrs (inode->i_sb);
432         if (!acl)
433                 return 0;
434         if (IS_ERR(acl))
435                 return PTR_ERR(acl);
436         clone = posix_acl_clone(acl, GFP_NOFS);
437         posix_acl_release(acl);
438         if (!clone)
439                 return -ENOMEM;
440         error = posix_acl_chmod_masq(clone, inode->i_mode);
441         if (!error) {
442                 int lock = !has_xattr_dir (inode);
443                 reiserfs_write_lock_xattr_i (inode);
444                 if (lock)
445                     reiserfs_write_lock_xattrs (inode->i_sb);
446                 else
447                     reiserfs_read_lock_xattrs (inode->i_sb);
448                 error = reiserfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
449                 if (lock)
450                     reiserfs_write_unlock_xattrs (inode->i_sb);
451                 else
452                     reiserfs_read_unlock_xattrs (inode->i_sb);
453                 reiserfs_write_unlock_xattr_i (inode);
454         }
455         posix_acl_release(clone);
456         return error;
457 }
458
459 static int
460 posix_acl_access_get(struct inode *inode, const char *name,
461                           void *buffer, size_t size)
462 {
463         if (strlen(name) != sizeof(XATTR_NAME_ACL_ACCESS)-1)
464                 return -EINVAL;
465         return xattr_get_acl(inode, ACL_TYPE_ACCESS, buffer, size);
466 }
467
468 static int
469 posix_acl_access_set(struct inode *inode, const char *name,
470                           const void *value, size_t size, int flags)
471 {
472         if (strlen(name) != sizeof(XATTR_NAME_ACL_ACCESS)-1)
473                 return -EINVAL;
474         return xattr_set_acl(inode, ACL_TYPE_ACCESS, value, size);
475 }
476
477 static int
478 posix_acl_access_del (struct inode *inode, const char *name)
479 {
480     struct reiserfs_inode_info *reiserfs_i = REISERFS_I(inode);
481     struct posix_acl **acl = &reiserfs_i->i_acl_access;
482     if (strlen(name) != sizeof(XATTR_NAME_ACL_ACCESS)-1)
483         return -EINVAL;
484     if (!IS_ERR (*acl) && *acl) {
485         posix_acl_release (*acl);
486         *acl = ERR_PTR (-ENODATA);
487     }
488
489     return 0;
490 }
491
492 static int
493 posix_acl_access_list (struct inode *inode, const char *name, int namelen, char *out)
494 {
495     int len = namelen;
496     if (!reiserfs_posixacl (inode->i_sb))
497         return 0;
498     if (out)
499         memcpy (out, name, len);
500
501     return len;
502 }
503
504 struct reiserfs_xattr_handler posix_acl_access_handler = {
505     prefix: XATTR_NAME_ACL_ACCESS,
506     get: posix_acl_access_get,
507     set: posix_acl_access_set,
508     del: posix_acl_access_del,
509     list: posix_acl_access_list,
510 };
511
512 static int
513 posix_acl_default_get (struct inode *inode, const char *name,
514                            void *buffer, size_t size)
515 {
516         if (strlen(name) != sizeof(XATTR_NAME_ACL_DEFAULT)-1)
517                 return -EINVAL;
518         return xattr_get_acl(inode, ACL_TYPE_DEFAULT, buffer, size);
519 }
520
521 static int
522 posix_acl_default_set(struct inode *inode, const char *name,
523                            const void *value, size_t size, int flags)
524 {
525         if (strlen(name) != sizeof(XATTR_NAME_ACL_DEFAULT)-1)
526                 return -EINVAL;
527         return xattr_set_acl(inode, ACL_TYPE_DEFAULT, value, size);
528 }
529
530 static int
531 posix_acl_default_del (struct inode *inode, const char *name)
532 {
533     struct reiserfs_inode_info *reiserfs_i = REISERFS_I(inode);
534     struct posix_acl **acl = &reiserfs_i->i_acl_default;
535     if (strlen(name) != sizeof(XATTR_NAME_ACL_DEFAULT)-1)
536         return -EINVAL;
537     if (!IS_ERR (*acl) && *acl) {
538         posix_acl_release (*acl);
539         *acl = ERR_PTR (-ENODATA);
540     }
541
542     return 0;
543 }
544
545 static int
546 posix_acl_default_list (struct inode *inode, const char *name, int namelen, char *out)
547 {
548     int len = namelen;
549     if (!reiserfs_posixacl (inode->i_sb))
550         return 0;
551     if (out)
552         memcpy (out, name, len);
553
554     return len;
555 }
556
557 struct reiserfs_xattr_handler posix_acl_default_handler = {
558     prefix: XATTR_NAME_ACL_DEFAULT,
559     get: posix_acl_default_get,
560     set: posix_acl_default_set,
561     del: posix_acl_default_del,
562     list: posix_acl_default_list,
563 };