Files
linux-apfs/fs/jfs/acl.c
T

154 lines
3.5 KiB
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/*
* Copyright (C) International Business Machines Corp., 2002-2004
* Copyright (C) Andreas Gruenbacher, 2001
* Copyright (C) Linus Torvalds, 1991, 1992
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
2006-10-02 09:55:27 -05:00
* the Free Software Foundation; either version 2 of the License, or
2005-04-16 15:20:36 -07:00
* (at your option) any later version.
2006-10-02 09:55:27 -05:00
*
2005-04-16 15:20:36 -07:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
* the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2006-10-02 09:55:27 -05:00
* along with this program; if not, write to the Free Software
2005-04-16 15:20:36 -07:00
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <linux/sched.h>
#include <linux/slab.h>
2005-04-16 15:20:36 -07:00
#include <linux/fs.h>
2005-06-23 00:10:19 -07:00
#include <linux/posix_acl_xattr.h>
2005-04-16 15:20:36 -07:00
#include "jfs_incore.h"
#include "jfs_txnmgr.h"
2005-04-16 15:20:36 -07:00
#include "jfs_xattr.h"
#include "jfs_acl.h"
2011-07-23 17:37:31 +02:00
struct posix_acl *jfs_get_acl(struct inode *inode, int type)
2005-04-16 15:20:36 -07:00
{
struct posix_acl *acl;
char *ea_name;
int size;
char *value = NULL;
switch(type) {
case ACL_TYPE_ACCESS:
ea_name = XATTR_NAME_POSIX_ACL_ACCESS;
2005-04-16 15:20:36 -07:00
break;
case ACL_TYPE_DEFAULT:
ea_name = XATTR_NAME_POSIX_ACL_DEFAULT;
2005-04-16 15:20:36 -07:00
break;
default:
return ERR_PTR(-EINVAL);
}
size = __jfs_getxattr(inode, ea_name, NULL, 0);
if (size > 0) {
value = kmalloc(size, GFP_KERNEL);
if (!value)
return ERR_PTR(-ENOMEM);
size = __jfs_getxattr(inode, ea_name, value, size);
}
if (size < 0) {
2009-06-09 12:11:54 -04:00
if (size == -ENODATA)
2005-04-16 15:20:36 -07:00
acl = NULL;
2009-06-09 12:11:54 -04:00
else
2005-04-16 15:20:36 -07:00
acl = ERR_PTR(size);
} else {
acl = posix_acl_from_xattr(&init_user_ns, value, size);
2005-04-16 15:20:36 -07:00
}
kfree(value);
2005-04-16 15:20:36 -07:00
return acl;
}
2013-12-20 05:16:51 -08:00
static int __jfs_set_acl(tid_t tid, struct inode *inode, int type,
struct posix_acl *acl)
2005-04-16 15:20:36 -07:00
{
char *ea_name;
int rc;
int size = 0;
char *value = NULL;
2013-12-20 05:16:51 -08:00
switch (type) {
case ACL_TYPE_ACCESS:
ea_name = XATTR_NAME_POSIX_ACL_ACCESS;
if (acl) {
rc = posix_acl_update_mode(inode, &inode->i_mode, &acl);
if (rc)
return rc;
inode->i_ctime = current_time(inode);
mark_inode_dirty(inode);
}
2013-12-20 05:16:51 -08:00
break;
case ACL_TYPE_DEFAULT:
ea_name = XATTR_NAME_POSIX_ACL_DEFAULT;
2013-12-20 05:16:51 -08:00
break;
default:
return -EINVAL;
2005-04-16 15:20:36 -07:00
}
2013-12-20 05:16:51 -08:00
2005-04-16 15:20:36 -07:00
if (acl) {
2005-06-23 00:10:19 -07:00
size = posix_acl_xattr_size(acl->a_count);
2005-04-16 15:20:36 -07:00
value = kmalloc(size, GFP_KERNEL);
if (!value)
return -ENOMEM;
rc = posix_acl_to_xattr(&init_user_ns, acl, value, size);
2005-04-16 15:20:36 -07:00
if (rc < 0)
goto out;
}
rc = __jfs_setxattr(tid, inode, ea_name, value, size, 0);
2005-04-16 15:20:36 -07:00
out:
kfree(value);
2005-04-16 15:20:36 -07:00
2009-06-09 12:11:54 -04:00
if (!rc)
set_cached_acl(inode, type, acl);
2005-04-16 15:20:36 -07:00
return rc;
}
2013-12-20 05:16:51 -08:00
int jfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
{
int rc;
tid_t tid;
tid = txBegin(inode->i_sb, 0);
mutex_lock(&JFS_IP(inode)->commit_mutex);
rc = __jfs_set_acl(tid, inode, type, acl);
if (!rc)
rc = txCommit(tid, 1, &inode, 0);
txEnd(tid);
mutex_unlock(&JFS_IP(inode)->commit_mutex);
return rc;
}
int jfs_init_acl(tid_t tid, struct inode *inode, struct inode *dir)
2005-04-16 15:20:36 -07:00
{
2013-12-20 05:16:51 -08:00
struct posix_acl *default_acl, *acl;
2005-04-16 15:20:36 -07:00
int rc = 0;
2013-12-20 05:16:51 -08:00
rc = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl);
if (rc)
return rc;
2005-04-16 15:20:36 -07:00
2013-12-20 05:16:51 -08:00
if (default_acl) {
rc = __jfs_set_acl(tid, inode, ACL_TYPE_DEFAULT, default_acl);
posix_acl_release(default_acl);
}
2005-04-16 15:20:36 -07:00
if (acl) {
2013-12-20 05:16:51 -08:00
if (!rc)
rc = __jfs_set_acl(tid, inode, ACL_TYPE_ACCESS, acl);
2005-04-16 15:20:36 -07:00
posix_acl_release(acl);
2013-12-20 05:16:51 -08:00
}
2006-10-02 09:55:27 -05:00
2006-03-09 13:59:30 -06:00
JFS_IP(inode)->mode2 = (JFS_IP(inode)->mode2 & 0xffff0000) |
inode->i_mode;
2005-04-16 15:20:36 -07:00
return rc;
}