1 #include <linux/capability.h>
3 #include <linux/posix_acl.h>
4 #include <linux/reiserfs_fs.h>
5 #include <linux/errno.h>
6 #include <linux/pagemap.h>
7 #include <linux/xattr.h>
8 #include <linux/posix_acl_xattr.h>
9 #include <linux/reiserfs_xattr.h>
10 #include <linux/reiserfs_acl.h>
11 #include <asm/uaccess.h>
13 static int reiserfs_set_acl(struct reiserfs_transaction_handle *th,
14 struct inode *inode, int type,
15 struct posix_acl *acl);
18 xattr_set_acl(struct inode *inode, int type, const void *value, size_t size)
20 struct posix_acl *acl;
22 struct reiserfs_transaction_handle th;
23 size_t jcreate_blocks;
24 if (!reiserfs_posixacl(inode->i_sb))
26 if (!is_owner_or_cap(inode))
30 acl = posix_acl_from_xattr(value, size);
34 error = posix_acl_valid(acl);
41 /* Pessimism: We can't assume that anything from the xattr root up
42 * has been created. */
44 jcreate_blocks = reiserfs_xattr_jcreate_nblocks(inode) +
45 reiserfs_xattr_nblocks(inode, size) * 2;
47 reiserfs_write_lock(inode->i_sb);
48 error = journal_begin(&th, inode->i_sb, jcreate_blocks);
50 error = reiserfs_set_acl(&th, inode, type, acl);
51 error2 = journal_end(&th, inode->i_sb, jcreate_blocks);
55 reiserfs_write_unlock(inode->i_sb);
58 posix_acl_release(acl);
63 xattr_get_acl(struct inode *inode, int type, void *buffer, size_t size)
65 struct posix_acl *acl;
68 if (!reiserfs_posixacl(inode->i_sb))
71 acl = reiserfs_get_acl(inode, type);
76 error = posix_acl_to_xattr(acl, buffer, size);
77 posix_acl_release(acl);
83 * Convert from filesystem to in-memory representation.
85 static struct posix_acl *posix_acl_from_disk(const void *value, size_t size)
87 const char *end = (char *)value + size;
89 struct posix_acl *acl;
93 if (size < sizeof(reiserfs_acl_header))
94 return ERR_PTR(-EINVAL);
95 if (((reiserfs_acl_header *) value)->a_version !=
96 cpu_to_le32(REISERFS_ACL_VERSION))
97 return ERR_PTR(-EINVAL);
98 value = (char *)value + sizeof(reiserfs_acl_header);
99 count = reiserfs_acl_count(size);
101 return ERR_PTR(-EINVAL);
104 acl = posix_acl_alloc(count, GFP_NOFS);
106 return ERR_PTR(-ENOMEM);
107 for (n = 0; n < count; n++) {
108 reiserfs_acl_entry *entry = (reiserfs_acl_entry *) value;
109 if ((char *)value + sizeof(reiserfs_acl_entry_short) > end)
111 acl->a_entries[n].e_tag = le16_to_cpu(entry->e_tag);
112 acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm);
113 switch (acl->a_entries[n].e_tag) {
118 value = (char *)value +
119 sizeof(reiserfs_acl_entry_short);
120 acl->a_entries[n].e_id = ACL_UNDEFINED_ID;
125 value = (char *)value + sizeof(reiserfs_acl_entry);
126 if ((char *)value > end)
128 acl->a_entries[n].e_id = le32_to_cpu(entry->e_id);
140 posix_acl_release(acl);
141 return ERR_PTR(-EINVAL);
145 * Convert from in-memory to filesystem representation.
147 static void *posix_acl_to_disk(const struct posix_acl *acl, size_t * size)
149 reiserfs_acl_header *ext_acl;
153 *size = reiserfs_acl_size(acl->a_count);
154 ext_acl = kmalloc(sizeof(reiserfs_acl_header) +
156 sizeof(reiserfs_acl_entry),
159 return ERR_PTR(-ENOMEM);
160 ext_acl->a_version = cpu_to_le32(REISERFS_ACL_VERSION);
161 e = (char *)ext_acl + sizeof(reiserfs_acl_header);
162 for (n = 0; n < acl->a_count; n++) {
163 reiserfs_acl_entry *entry = (reiserfs_acl_entry *) e;
164 entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag);
165 entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
166 switch (acl->a_entries[n].e_tag) {
169 entry->e_id = cpu_to_le32(acl->a_entries[n].e_id);
170 e += sizeof(reiserfs_acl_entry);
177 e += sizeof(reiserfs_acl_entry_short);
184 return (char *)ext_acl;
188 return ERR_PTR(-EINVAL);
191 static inline void iset_acl(struct inode *inode, struct posix_acl **i_acl,
192 struct posix_acl *acl)
194 spin_lock(&inode->i_lock);
195 if (*i_acl != ACL_NOT_CACHED)
196 posix_acl_release(*i_acl);
197 *i_acl = posix_acl_dup(acl);
198 spin_unlock(&inode->i_lock);
201 static inline struct posix_acl *iget_acl(struct inode *inode,
202 struct posix_acl **i_acl)
204 struct posix_acl *acl = ACL_NOT_CACHED;
206 spin_lock(&inode->i_lock);
207 if (*i_acl != ACL_NOT_CACHED)
208 acl = posix_acl_dup(*i_acl);
209 spin_unlock(&inode->i_lock);
215 * Inode operation get_posix_acl().
217 * inode->i_mutex: down
218 * BKL held [before 2.5.x]
220 struct posix_acl *reiserfs_get_acl(struct inode *inode, int type)
223 struct posix_acl *acl, **p_acl;
228 case ACL_TYPE_ACCESS:
229 name = POSIX_ACL_XATTR_ACCESS;
230 p_acl = &inode->i_acl;
232 case ACL_TYPE_DEFAULT:
233 name = POSIX_ACL_XATTR_DEFAULT;
234 p_acl = &inode->i_default_acl;
237 return ERR_PTR(-EINVAL);
240 acl = iget_acl(inode, p_acl);
241 if (acl != ACL_NOT_CACHED)
244 size = reiserfs_xattr_get(inode, name, NULL, 0);
246 if (size == -ENODATA || size == -ENOSYS) {
250 return ERR_PTR(size);
253 value = kmalloc(size, GFP_NOFS);
255 return ERR_PTR(-ENOMEM);
257 retval = reiserfs_xattr_get(inode, name, value, size);
258 if (retval == -ENODATA || retval == -ENOSYS) {
259 /* This shouldn't actually happen as it should have
260 been caught above.. but just in case */
263 } else if (retval < 0) {
264 acl = ERR_PTR(retval);
266 acl = posix_acl_from_disk(value, retval);
268 iset_acl(inode, p_acl, acl);
276 * Inode operation set_posix_acl().
278 * inode->i_mutex: down
279 * BKL held [before 2.5.x]
282 reiserfs_set_acl(struct reiserfs_transaction_handle *th, struct inode *inode,
283 int type, struct posix_acl *acl)
287 struct posix_acl **p_acl;
291 if (S_ISLNK(inode->i_mode))
295 case ACL_TYPE_ACCESS:
296 name = POSIX_ACL_XATTR_ACCESS;
297 p_acl = &inode->i_acl;
299 mode_t mode = inode->i_mode;
300 error = posix_acl_equiv_mode(acl, &mode);
304 inode->i_mode = mode;
310 case ACL_TYPE_DEFAULT:
311 name = POSIX_ACL_XATTR_DEFAULT;
312 p_acl = &inode->i_default_acl;
313 if (!S_ISDIR(inode->i_mode))
314 return acl ? -EACCES : 0;
321 value = posix_acl_to_disk(acl, &size);
323 return (int)PTR_ERR(value);
326 error = reiserfs_xattr_set_handle(th, inode, name, value, size, 0);
329 * Ensure that the inode gets dirtied if we're only using
330 * the mode bits and an old ACL didn't exist. We don't need
331 * to check if the inode is hashed here since we won't get
332 * called by reiserfs_inherit_default_acl().
334 if (error == -ENODATA) {
336 if (type == ACL_TYPE_ACCESS) {
337 inode->i_ctime = CURRENT_TIME_SEC;
338 mark_inode_dirty(inode);
345 iset_acl(inode, p_acl, acl);
350 /* dir->i_mutex: locked,
351 * inode is new and not released into the wild yet */
353 reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th,
354 struct inode *dir, struct dentry *dentry,
357 struct posix_acl *acl;
360 /* ACLs only get applied to files and directories */
361 if (S_ISLNK(inode->i_mode))
364 /* ACLs can only be used on "new" objects, so if it's an old object
365 * there is nothing to inherit from */
366 if (get_inode_sd_version(dir) == STAT_DATA_V1)
369 /* Don't apply ACLs to objects in the .reiserfs_priv tree.. This
370 * would be useless since permissions are ignored, and a pain because
371 * it introduces locking cycles */
372 if (IS_PRIVATE(dir)) {
373 inode->i_flags |= S_PRIVATE;
377 acl = reiserfs_get_acl(dir, ACL_TYPE_DEFAULT);
382 struct posix_acl *acl_copy;
383 mode_t mode = inode->i_mode;
386 /* Copy the default ACL to the default ACL of a new directory */
387 if (S_ISDIR(inode->i_mode)) {
388 err = reiserfs_set_acl(th, inode, ACL_TYPE_DEFAULT,
394 /* Now we reconcile the new ACL and the mode,
395 potentially modifying both */
396 acl_copy = posix_acl_clone(acl, GFP_NOFS);
402 need_acl = posix_acl_create_masq(acl_copy, &mode);
404 if (mode != inode->i_mode) {
405 inode->i_mode = mode;
408 /* If we need an ACL.. */
410 err = reiserfs_set_acl(th, inode,
418 posix_acl_release(acl_copy);
420 posix_acl_release(acl);
423 /* no ACL, apply umask */
424 inode->i_mode &= ~current_umask();
430 /* This is used to cache the default acl before a new object is created.
431 * The biggest reason for this is to get an idea of how many blocks will
432 * actually be required for the create operation if we must inherit an ACL.
433 * An ACL write can add up to 3 object creations and an additional file write
434 * so we'd prefer not to reserve that many blocks in the journal if we can.
435 * It also has the advantage of not loading the ACL with a transaction open,
436 * this may seem silly, but if the owner of the directory is doing the
437 * creation, the ACL may not be loaded since the permissions wouldn't require
439 * We return the number of blocks required for the transaction.
441 int reiserfs_cache_default_acl(struct inode *inode)
443 struct posix_acl *acl;
446 if (IS_PRIVATE(inode))
449 acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT);
451 if (acl && !IS_ERR(acl)) {
452 int size = reiserfs_acl_size(acl->a_count);
454 /* Other xattrs can be created during inode creation. We don't
455 * want to claim too many blocks, so we check to see if we
456 * we need to create the tree to the xattrs, and then we
457 * just want two files. */
458 nblocks = reiserfs_xattr_jcreate_nblocks(inode);
459 nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
461 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
463 /* We need to account for writes + bitmaps for two files */
464 nblocks += reiserfs_xattr_nblocks(inode, size) * 4;
465 posix_acl_release(acl);
471 int reiserfs_acl_chmod(struct inode *inode)
473 struct posix_acl *acl, *clone;
476 if (S_ISLNK(inode->i_mode))
479 if (get_inode_sd_version(inode) == STAT_DATA_V1 ||
480 !reiserfs_posixacl(inode->i_sb)) {
484 acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
489 clone = posix_acl_clone(acl, GFP_NOFS);
490 posix_acl_release(acl);
493 error = posix_acl_chmod_masq(clone, inode->i_mode);
495 struct reiserfs_transaction_handle th;
496 size_t size = reiserfs_xattr_nblocks(inode,
497 reiserfs_acl_size(clone->a_count));
498 reiserfs_write_lock(inode->i_sb);
499 error = journal_begin(&th, inode->i_sb, size * 2);
502 error = reiserfs_set_acl(&th, inode, ACL_TYPE_ACCESS,
504 error2 = journal_end(&th, inode->i_sb, size * 2);
508 reiserfs_write_unlock(inode->i_sb);
510 posix_acl_release(clone);
515 posix_acl_access_get(struct inode *inode, const char *name,
516 void *buffer, size_t size)
518 if (strlen(name) != sizeof(POSIX_ACL_XATTR_ACCESS) - 1)
520 return xattr_get_acl(inode, ACL_TYPE_ACCESS, buffer, size);
524 posix_acl_access_set(struct inode *inode, const char *name,
525 const void *value, size_t size, int flags)
527 if (strlen(name) != sizeof(POSIX_ACL_XATTR_ACCESS) - 1)
529 return xattr_set_acl(inode, ACL_TYPE_ACCESS, value, size);
532 static size_t posix_acl_access_list(struct inode *inode, char *list,
533 size_t list_size, const char *name,
536 const size_t size = sizeof(POSIX_ACL_XATTR_ACCESS);
537 if (!reiserfs_posixacl(inode->i_sb))
539 if (list && size <= list_size)
540 memcpy(list, POSIX_ACL_XATTR_ACCESS, size);
544 struct xattr_handler reiserfs_posix_acl_access_handler = {
545 .prefix = POSIX_ACL_XATTR_ACCESS,
546 .get = posix_acl_access_get,
547 .set = posix_acl_access_set,
548 .list = posix_acl_access_list,
552 posix_acl_default_get(struct inode *inode, const char *name,
553 void *buffer, size_t size)
555 if (strlen(name) != sizeof(POSIX_ACL_XATTR_DEFAULT) - 1)
557 return xattr_get_acl(inode, ACL_TYPE_DEFAULT, buffer, size);
561 posix_acl_default_set(struct inode *inode, const char *name,
562 const void *value, size_t size, int flags)
564 if (strlen(name) != sizeof(POSIX_ACL_XATTR_DEFAULT) - 1)
566 return xattr_set_acl(inode, ACL_TYPE_DEFAULT, value, size);
569 static size_t posix_acl_default_list(struct inode *inode, char *list,
570 size_t list_size, const char *name,
573 const size_t size = sizeof(POSIX_ACL_XATTR_DEFAULT);
574 if (!reiserfs_posixacl(inode->i_sb))
576 if (list && size <= list_size)
577 memcpy(list, POSIX_ACL_XATTR_DEFAULT, size);
581 struct xattr_handler reiserfs_posix_acl_default_handler = {
582 .prefix = POSIX_ACL_XATTR_DEFAULT,
583 .get = posix_acl_default_get,
584 .set = posix_acl_default_set,
585 .list = posix_acl_default_list,