blob: 67a607709d4f7eb18d941cf1a70c7d00a7afba66 [file] [log] [blame]
Josef Bacik5103e942007-11-16 11:45:54 -05001/*
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>
Josef Bacik33268ea2008-07-24 12:16:36 -040023#include <linux/posix_acl.h>
Chris Masonc1e32da2008-01-22 12:46:56 -050024#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040026
Josef Bacik5103e942007-11-16 11:45:54 -050027#include "ctree.h"
Josef Bacik33268ea2008-07-24 12:16:36 -040028#include "btrfs_inode.h"
Josef Bacik5103e942007-11-16 11:45:54 -050029#include "xattr.h"
Josef Bacik33268ea2008-07-24 12:16:36 -040030
Christoph Hellwig4e34e712011-07-23 17:37:31 +020031struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
Josef Bacik33268ea2008-07-24 12:16:36 -040032{
Christoph Hellwig95819c02008-08-28 06:21:17 -040033 int size;
34 const char *name;
Josef Bacik33268ea2008-07-24 12:16:36 -040035 char *value = NULL;
Al Viro073aaa12009-06-09 12:11:54 -040036 struct posix_acl *acl;
37
Josef Bacik33268ea2008-07-24 12:16:36 -040038 switch (type) {
39 case ACL_TYPE_ACCESS:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010040 name = XATTR_NAME_POSIX_ACL_ACCESS;
Josef Bacik33268ea2008-07-24 12:16:36 -040041 break;
42 case ACL_TYPE_DEFAULT:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010043 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Josef Bacik33268ea2008-07-24 12:16:36 -040044 break;
45 default:
Al Viro073aaa12009-06-09 12:11:54 -040046 BUG();
Josef Bacik33268ea2008-07-24 12:16:36 -040047 }
48
Christoph Hellwig95819c02008-08-28 06:21:17 -040049 size = __btrfs_getxattr(inode, name, "", 0);
Josef Bacik33268ea2008-07-24 12:16:36 -040050 if (size > 0) {
David Sterba39a27ec2015-12-03 12:49:48 +010051 value = kzalloc(size, GFP_KERNEL);
Josef Bacik33268ea2008-07-24 12:16:36 -040052 if (!value)
53 return ERR_PTR(-ENOMEM);
Christoph Hellwig95819c02008-08-28 06:21:17 -040054 size = __btrfs_getxattr(inode, name, value, size);
Tsutomu Itohcfbffc32011-10-06 13:37:08 +090055 }
56 if (size > 0) {
Eric W. Biederman5f3a4a22012-09-10 20:17:44 -070057 acl = posix_acl_from_xattr(&init_user_ns, value, size);
Chris Mason7b1a14b2009-04-27 10:49:53 -040058 } else if (size == -ENOENT || size == -ENODATA || size == 0) {
59 /* FIXME, who returns -ENOENT? I think nobody */
Josef Bacik33268ea2008-07-24 12:16:36 -040060 acl = NULL;
Chris Mason7b1a14b2009-04-27 10:49:53 -040061 } else {
62 acl = ERR_PTR(-EIO);
Josef Bacik33268ea2008-07-24 12:16:36 -040063 }
Tsutomu Itohcfbffc32011-10-06 13:37:08 +090064 kfree(value);
65
Josef Bacik33268ea2008-07-24 12:16:36 -040066 return acl;
67}
68
Josef Bacik33268ea2008-07-24 12:16:36 -040069/*
70 * Needs to be called with fs_mutex held
71 */
Christoph Hellwig996a7102013-12-20 05:16:43 -080072static int __btrfs_set_acl(struct btrfs_trans_handle *trans,
Yan, Zhengf34f57a2009-11-12 09:35:27 +000073 struct inode *inode, struct posix_acl *acl, int type)
Josef Bacik33268ea2008-07-24 12:16:36 -040074{
Christoph Hellwig95819c02008-08-28 06:21:17 -040075 int ret, size = 0;
76 const char *name;
Josef Bacik33268ea2008-07-24 12:16:36 -040077 char *value = NULL;
Josef Bacik33268ea2008-07-24 12:16:36 -040078
Josef Bacik33268ea2008-07-24 12:16:36 -040079 switch (type) {
80 case ACL_TYPE_ACCESS:
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010081 name = XATTR_NAME_POSIX_ACL_ACCESS;
Chris Masona9cc71a2010-01-17 20:36:18 -050082 if (acl) {
Al Virod6952122011-07-23 18:56:36 -040083 ret = posix_acl_equiv_mode(acl, &inode->i_mode);
Chris Masona9cc71a2010-01-17 20:36:18 -050084 if (ret < 0)
85 return ret;
Liu Bo755ac672012-11-28 10:43:11 +000086 if (ret == 0)
87 acl = NULL;
Chris Masona9cc71a2010-01-17 20:36:18 -050088 }
89 ret = 0;
Josef Bacik33268ea2008-07-24 12:16:36 -040090 break;
91 case ACL_TYPE_DEFAULT:
92 if (!S_ISDIR(inode->i_mode))
93 return acl ? -EINVAL : 0;
Andreas Gruenbacher97d79292015-12-02 14:44:35 +010094 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Josef Bacik33268ea2008-07-24 12:16:36 -040095 break;
96 default:
97 return -EINVAL;
98 }
99
100 if (acl) {
101 size = posix_acl_xattr_size(acl->a_count);
David Sterba39a27ec2015-12-03 12:49:48 +0100102 value = kmalloc(size, GFP_KERNEL);
Josef Bacik33268ea2008-07-24 12:16:36 -0400103 if (!value) {
104 ret = -ENOMEM;
105 goto out;
106 }
107
Eric W. Biederman5f3a4a22012-09-10 20:17:44 -0700108 ret = posix_acl_to_xattr(&init_user_ns, acl, value, size);
Josef Bacik33268ea2008-07-24 12:16:36 -0400109 if (ret < 0)
110 goto out;
111 }
112
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000113 ret = __btrfs_setxattr(trans, inode, name, value, size, 0);
Josef Bacik33268ea2008-07-24 12:16:36 -0400114out:
Chris Masond3977122009-01-05 21:25:51 -0500115 kfree(value);
Josef Bacik33268ea2008-07-24 12:16:36 -0400116
117 if (!ret)
Al Viro073aaa12009-06-09 12:11:54 -0400118 set_cached_acl(inode, type, acl);
Josef Bacik33268ea2008-07-24 12:16:36 -0400119
120 return ret;
121}
Yanfb4bc1e2008-01-17 11:59:51 -0500122
Christoph Hellwig996a7102013-12-20 05:16:43 -0800123int btrfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
Yan744f52f2008-01-14 13:26:08 -0500124{
Christoph Hellwig996a7102013-12-20 05:16:43 -0800125 return __btrfs_set_acl(NULL, inode, acl, type);
Yan744f52f2008-01-14 13:26:08 -0500126}
Josef Bacik1caf9342007-11-19 10:18:17 -0500127
Josef Bacik33268ea2008-07-24 12:16:36 -0400128/*
129 * btrfs_init_acl is already generally called under fs_mutex, so the locking
130 * stuff has been fixed to work with that. If the locking stuff changes, we
131 * need to re-evaluate the acl locking stuff.
132 */
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000133int btrfs_init_acl(struct btrfs_trans_handle *trans,
134 struct inode *inode, struct inode *dir)
Josef Bacik33268ea2008-07-24 12:16:36 -0400135{
Christoph Hellwig996a7102013-12-20 05:16:43 -0800136 struct posix_acl *default_acl, *acl;
Josef Bacik33268ea2008-07-24 12:16:36 -0400137 int ret = 0;
138
139 /* this happens with subvols */
140 if (!dir)
141 return 0;
142
Christoph Hellwig996a7102013-12-20 05:16:43 -0800143 ret = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl);
Al Virobc26ab52011-07-23 00:18:02 -0400144 if (ret)
145 return ret;
Christoph Hellwig996a7102013-12-20 05:16:43 -0800146
147 if (default_acl) {
148 ret = __btrfs_set_acl(trans, inode, default_acl,
149 ACL_TYPE_DEFAULT);
150 posix_acl_release(default_acl);
151 }
152
153 if (acl) {
154 if (!ret)
155 ret = __btrfs_set_acl(trans, inode, acl,
156 ACL_TYPE_ACCESS);
157 posix_acl_release(acl);
158 }
159
160 if (!default_acl && !acl)
161 cache_no_acl(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -0400162 return ret;
163}