blob: 99800e564157ed5d3bb78b6e80c6d7f5b7d32051 [file] [log] [blame]
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -07001/*
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -07002 * (C) 2005 Andreas Gruenbacher <agruen@suse.de>
3 *
4 * This file is released under the GPL.
Christoph Hellwig1c7c4742009-11-03 16:44:44 +01005 *
6 * Generic ACL support for in-memory filesystems.
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -07007 */
8
9#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/gfp.h>
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070011#include <linux/fs.h>
12#include <linux/generic_acl.h>
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010013#include <linux/posix_acl.h>
14#include <linux/posix_acl_xattr.h>
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070015
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010016
17static size_t
18generic_acl_list(struct dentry *dentry, char *list, size_t list_size,
19 const char *name, size_t name_len, int type)
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070020{
21 struct posix_acl *acl;
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010022 const char *xname;
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070023 size_t size;
24
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010025 acl = get_cached_acl(dentry->d_inode, type);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070026 if (!acl)
27 return 0;
28 posix_acl_release(acl);
29
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010030 switch (type) {
31 case ACL_TYPE_ACCESS:
32 xname = POSIX_ACL_XATTR_ACCESS;
33 break;
34 case ACL_TYPE_DEFAULT:
35 xname = POSIX_ACL_XATTR_DEFAULT;
36 break;
37 default:
38 return 0;
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070039 }
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010040 size = strlen(xname) + 1;
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070041 if (list && size <= list_size)
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010042 memcpy(list, xname, size);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070043 return size;
44}
45
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010046static int
47generic_acl_get(struct dentry *dentry, const char *name, void *buffer,
48 size_t size, int type)
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070049{
50 struct posix_acl *acl;
51 int error;
52
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010053 if (strcmp(name, "") != 0)
54 return -EINVAL;
55
56 acl = get_cached_acl(dentry->d_inode, type);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070057 if (!acl)
58 return -ENODATA;
59 error = posix_acl_to_xattr(acl, buffer, size);
60 posix_acl_release(acl);
61
62 return error;
63}
64
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010065static int
66generic_acl_set(struct dentry *dentry, const char *name, const void *value,
67 size_t size, int flags, int type)
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070068{
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010069 struct inode *inode = dentry->d_inode;
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070070 struct posix_acl *acl = NULL;
71 int error;
72
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010073 if (strcmp(name, "") != 0)
74 return -EINVAL;
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070075 if (S_ISLNK(inode->i_mode))
76 return -EOPNOTSUPP;
Satyam Sharma3bd858a2007-07-17 15:00:08 +053077 if (!is_owner_or_cap(inode))
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -070078 return -EPERM;
79 if (value) {
80 acl = posix_acl_from_xattr(value, size);
81 if (IS_ERR(acl))
82 return PTR_ERR(acl);
83 }
84 if (acl) {
85 mode_t mode;
86
87 error = posix_acl_valid(acl);
88 if (error)
89 goto failed;
Christoph Hellwig1c7c4742009-11-03 16:44:44 +010090 switch (type) {
91 case ACL_TYPE_ACCESS:
92 mode = inode->i_mode;
93 error = posix_acl_equiv_mode(acl, &mode);
94 if (error < 0)
95 goto failed;
96 inode->i_mode = mode;
97 if (error == 0) {
98 posix_acl_release(acl);
99 acl = NULL;
100 }
101 break;
102 case ACL_TYPE_DEFAULT:
103 if (!S_ISDIR(inode->i_mode)) {
104 error = -EINVAL;
105 goto failed;
106 }
107 break;
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700108 }
109 }
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100110 set_cached_acl(inode, type, acl);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700111 error = 0;
112failed:
113 posix_acl_release(acl);
114 return error;
115}
116
117/**
118 * generic_acl_init - Take care of acl inheritance at @inode create time
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700119 *
120 * Files created inside a directory with a default ACL inherit the
121 * directory's default ACL.
122 */
123int
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100124generic_acl_init(struct inode *inode, struct inode *dir)
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700125{
126 struct posix_acl *acl = NULL;
127 mode_t mode = inode->i_mode;
128 int error;
129
Al Viroce3b0f82009-03-29 19:08:22 -0400130 inode->i_mode = mode & ~current_umask();
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700131 if (!S_ISLNK(inode->i_mode))
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100132 acl = get_cached_acl(dir, ACL_TYPE_DEFAULT);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700133 if (acl) {
134 struct posix_acl *clone;
135
136 if (S_ISDIR(inode->i_mode)) {
137 clone = posix_acl_clone(acl, GFP_KERNEL);
138 error = -ENOMEM;
139 if (!clone)
140 goto cleanup;
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100141 set_cached_acl(inode, ACL_TYPE_DEFAULT, clone);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700142 posix_acl_release(clone);
143 }
144 clone = posix_acl_clone(acl, GFP_KERNEL);
145 error = -ENOMEM;
146 if (!clone)
147 goto cleanup;
148 error = posix_acl_create_masq(clone, &mode);
149 if (error >= 0) {
150 inode->i_mode = mode;
151 if (error > 0)
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100152 set_cached_acl(inode, ACL_TYPE_ACCESS, clone);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700153 }
154 posix_acl_release(clone);
155 }
156 error = 0;
157
158cleanup:
159 posix_acl_release(acl);
160 return error;
161}
162
163/**
164 * generic_acl_chmod - change the access acl of @inode upon chmod()
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700165 *
166 * A chmod also changes the permissions of the owner, group/mask, and
167 * other ACL entries.
168 */
169int
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100170generic_acl_chmod(struct inode *inode)
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700171{
172 struct posix_acl *acl, *clone;
173 int error = 0;
174
175 if (S_ISLNK(inode->i_mode))
176 return -EOPNOTSUPP;
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100177 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700178 if (acl) {
179 clone = posix_acl_clone(acl, GFP_KERNEL);
180 posix_acl_release(acl);
181 if (!clone)
182 return -ENOMEM;
183 error = posix_acl_chmod_masq(clone, inode->i_mode);
184 if (!error)
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100185 set_cached_acl(inode, ACL_TYPE_ACCESS, clone);
Andreas Gruenbacherf0c8bd12006-09-29 02:01:34 -0700186 posix_acl_release(clone);
187 }
188 return error;
189}
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100190
191int
192generic_check_acl(struct inode *inode, int mask)
193{
194 struct posix_acl *acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
195
196 if (acl) {
197 int error = posix_acl_permission(inode, acl, mask);
198 posix_acl_release(acl);
199 return error;
200 }
201 return -EAGAIN;
202}
203
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700204const struct xattr_handler generic_acl_access_handler = {
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100205 .prefix = POSIX_ACL_XATTR_ACCESS,
206 .flags = ACL_TYPE_ACCESS,
207 .list = generic_acl_list,
208 .get = generic_acl_get,
209 .set = generic_acl_set,
210};
211
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700212const struct xattr_handler generic_acl_default_handler = {
Christoph Hellwig1c7c4742009-11-03 16:44:44 +0100213 .prefix = POSIX_ACL_XATTR_DEFAULT,
214 .flags = ACL_TYPE_DEFAULT,
215 .list = generic_acl_list,
216 .get = generic_acl_get,
217 .set = generic_acl_set,
218};