fs: provide rcu-walk aware permission i_ops
[deliverable/linux.git] / fs / gfs2 / acl.c
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3a8a9a10 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
b3b94faa
DT
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa0 7 * of the GNU General Public License version 2.
b3b94faa
DT
8 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
2646a1f6 15#include <linux/xattr.h>
b3b94faa
DT
16#include <linux/posix_acl.h>
17#include <linux/posix_acl_xattr.h>
5c676f6d 18#include <linux/gfs2_ondisk.h>
b3b94faa
DT
19
20#include "gfs2.h"
5c676f6d 21#include "incore.h"
b3b94faa 22#include "acl.h"
307cf6e6 23#include "xattr.h"
b3b94faa
DT
24#include "glock.h"
25#include "inode.h"
26#include "meta_io.h"
27#include "trans.h"
5c676f6d 28#include "util.h"
b3b94faa 29
479c427d 30static const char *gfs2_acl_name(int type)
b3b94faa 31{
479c427d
SW
32 switch (type) {
33 case ACL_TYPE_ACCESS:
34 return GFS2_POSIX_ACL_ACCESS;
35 case ACL_TYPE_DEFAULT:
36 return GFS2_POSIX_ACL_DEFAULT;
37 }
38 return NULL;
39}
b3b94faa 40
479c427d
SW
41static struct posix_acl *gfs2_acl_get(struct gfs2_inode *ip, int type)
42{
43 struct posix_acl *acl;
44 const char *name;
45 char *data;
46 int len;
40b78a32 47
3767ac21 48 if (!ip->i_eattr)
479c427d 49 return NULL;
b3b94faa 50
106381bf
SW
51 acl = get_cached_acl(&ip->i_inode, type);
52 if (acl != ACL_NOT_CACHED)
53 return acl;
54
479c427d
SW
55 name = gfs2_acl_name(type);
56 if (name == NULL)
57 return ERR_PTR(-EINVAL);
b3b94faa 58
479c427d
SW
59 len = gfs2_xattr_acl_get(ip, name, &data);
60 if (len < 0)
61 return ERR_PTR(len);
62 if (len == 0)
63 return NULL;
b3b94faa 64
479c427d
SW
65 acl = posix_acl_from_xattr(data, len);
66 kfree(data);
67 return acl;
b3b94faa
DT
68}
69
70/**
77386e1f 71 * gfs2_check_acl - Check an ACL to see if we're allowed to do something
b3b94faa
DT
72 * @inode: the file we want to do something to
73 * @mask: what we want to do
74 *
75 * Returns: errno
76 */
77
b74c79e9 78int gfs2_check_acl(struct inode *inode, int mask, unsigned int flags)
b3b94faa 79{
479c427d 80 struct posix_acl *acl;
b3b94faa
DT
81 int error;
82
b74c79e9
NP
83 if (flags & IPERM_FLAG_RCU)
84 return -ECHILD;
85
479c427d
SW
86 acl = gfs2_acl_get(GFS2_I(inode), ACL_TYPE_ACCESS);
87 if (IS_ERR(acl))
88 return PTR_ERR(acl);
b3b94faa
DT
89
90 if (acl) {
91 error = posix_acl_permission(inode, acl, mask);
92 posix_acl_release(acl);
93 return error;
94 }
95
96 return -EAGAIN;
97}
98
69dca424 99static int gfs2_set_mode(struct inode *inode, mode_t mode)
b3b94faa 100{
69dca424 101 int error = 0;
b3b94faa 102
69dca424
SW
103 if (mode != inode->i_mode) {
104 struct iattr iattr;
b3b94faa 105
69dca424
SW
106 iattr.ia_valid = ATTR_MODE;
107 iattr.ia_mode = mode;
b3b94faa 108
69dca424
SW
109 error = gfs2_setattr_simple(GFS2_I(inode), &iattr);
110 }
b3b94faa 111
69dca424 112 return error;
b3b94faa
DT
113}
114
479c427d 115static int gfs2_acl_set(struct inode *inode, int type, struct posix_acl *acl)
b3b94faa 116{
b3b94faa 117 int error;
479c427d
SW
118 int len;
119 char *data;
120 const char *name = gfs2_acl_name(type);
121
122 BUG_ON(name == NULL);
123 len = posix_acl_to_xattr(acl, NULL, 0);
124 if (len == 0)
125 return 0;
126 data = kmalloc(len, GFP_NOFS);
127 if (data == NULL)
128 return -ENOMEM;
129 error = posix_acl_to_xattr(acl, data, len);
130 if (error < 0)
131 goto out;
431547b3 132 error = __gfs2_xattr_set(inode, name, data, len, 0, GFS2_EATYPE_SYS);
106381bf
SW
133 if (!error)
134 set_cached_acl(inode, type, acl);
479c427d
SW
135out:
136 kfree(data);
137 return error;
138}
139
140int gfs2_acl_create(struct gfs2_inode *dip, struct inode *inode)
141{
142 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
143 struct posix_acl *acl, *clone;
144 mode_t mode = inode->i_mode;
145 int error = 0;
b3b94faa
DT
146
147 if (!sdp->sd_args.ar_posix_acl)
148 return 0;
479c427d 149 if (S_ISLNK(inode->i_mode))
b3b94faa
DT
150 return 0;
151
479c427d
SW
152 acl = gfs2_acl_get(dip, ACL_TYPE_DEFAULT);
153 if (IS_ERR(acl))
154 return PTR_ERR(acl);
b3b94faa 155 if (!acl) {
ce3b0f8d 156 mode &= ~current_umask();
479c427d
SW
157 if (mode != inode->i_mode)
158 error = gfs2_set_mode(inode, mode);
b3b94faa
DT
159 return error;
160 }
161
479c427d
SW
162 if (S_ISDIR(inode->i_mode)) {
163 error = gfs2_acl_set(inode, ACL_TYPE_DEFAULT, acl);
164 if (error)
165 goto out;
166 }
167
16c5f06f 168 clone = posix_acl_clone(acl, GFP_NOFS);
b3b94faa
DT
169 error = -ENOMEM;
170 if (!clone)
171 goto out;
172 posix_acl_release(acl);
173 acl = clone;
174
b3b94faa
DT
175 error = posix_acl_create_masq(acl, &mode);
176 if (error < 0)
177 goto out;
40b78a32
SW
178 if (error == 0)
179 goto munge;
b3b94faa 180
479c427d 181 error = gfs2_acl_set(inode, ACL_TYPE_ACCESS, acl);
40b78a32
SW
182 if (error)
183 goto out;
184munge:
479c427d 185 error = gfs2_set_mode(inode, mode);
a91ea69f 186out:
b3b94faa 187 posix_acl_release(acl);
b3b94faa
DT
188 return error;
189}
190
191int gfs2_acl_chmod(struct gfs2_inode *ip, struct iattr *attr)
192{
479c427d 193 struct posix_acl *acl, *clone;
b3b94faa
DT
194 char *data;
195 unsigned int len;
196 int error;
197
479c427d
SW
198 acl = gfs2_acl_get(ip, ACL_TYPE_ACCESS);
199 if (IS_ERR(acl))
200 return PTR_ERR(acl);
b3b94faa
DT
201 if (!acl)
202 return gfs2_setattr_simple(ip, attr);
203
16c5f06f 204 clone = posix_acl_clone(acl, GFP_NOFS);
b3b94faa
DT
205 error = -ENOMEM;
206 if (!clone)
207 goto out;
208 posix_acl_release(acl);
209 acl = clone;
210
211 error = posix_acl_chmod_masq(acl, attr->ia_mode);
212 if (!error) {
479c427d
SW
213 len = posix_acl_to_xattr(acl, NULL, 0);
214 data = kmalloc(len, GFP_NOFS);
215 error = -ENOMEM;
216 if (data == NULL)
217 goto out;
b3b94faa 218 posix_acl_to_xattr(acl, data, len);
479c427d
SW
219 error = gfs2_xattr_acl_chmod(ip, attr, data);
220 kfree(data);
106381bf 221 set_cached_acl(&ip->i_inode, ACL_TYPE_ACCESS, acl);
b3b94faa
DT
222 }
223
a91ea69f 224out:
b3b94faa 225 posix_acl_release(acl);
b3b94faa
DT
226 return error;
227}
228
2646a1f6
SW
229static int gfs2_acl_type(const char *name)
230{
231 if (strcmp(name, GFS2_POSIX_ACL_ACCESS) == 0)
232 return ACL_TYPE_ACCESS;
233 if (strcmp(name, GFS2_POSIX_ACL_DEFAULT) == 0)
234 return ACL_TYPE_DEFAULT;
235 return -EINVAL;
236}
237
431547b3
CH
238static int gfs2_xattr_system_get(struct dentry *dentry, const char *name,
239 void *buffer, size_t size, int xtype)
2646a1f6 240{
431547b3 241 struct inode *inode = dentry->d_inode;
f72f2d2e 242 struct gfs2_sbd *sdp = GFS2_SB(inode);
106381bf 243 struct posix_acl *acl;
2646a1f6 244 int type;
106381bf 245 int error;
2646a1f6 246
f72f2d2e
SW
247 if (!sdp->sd_args.ar_posix_acl)
248 return -EOPNOTSUPP;
249
2646a1f6
SW
250 type = gfs2_acl_type(name);
251 if (type < 0)
252 return type;
253
106381bf
SW
254 acl = gfs2_acl_get(GFS2_I(inode), type);
255 if (IS_ERR(acl))
256 return PTR_ERR(acl);
257 if (acl == NULL)
258 return -ENODATA;
2646a1f6 259
106381bf
SW
260 error = posix_acl_to_xattr(acl, buffer, size);
261 posix_acl_release(acl);
262
263 return error;
264}
2646a1f6 265
431547b3
CH
266static int gfs2_xattr_system_set(struct dentry *dentry, const char *name,
267 const void *value, size_t size, int flags,
268 int xtype)
2646a1f6 269{
431547b3 270 struct inode *inode = dentry->d_inode;
2646a1f6
SW
271 struct gfs2_sbd *sdp = GFS2_SB(inode);
272 struct posix_acl *acl = NULL;
273 int error = 0, type;
274
275 if (!sdp->sd_args.ar_posix_acl)
276 return -EOPNOTSUPP;
277
278 type = gfs2_acl_type(name);
279 if (type < 0)
280 return type;
281 if (flags & XATTR_CREATE)
282 return -EINVAL;
283 if (type == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode))
284 return value ? -EACCES : 0;
285 if ((current_fsuid() != inode->i_uid) && !capable(CAP_FOWNER))
286 return -EPERM;
287 if (S_ISLNK(inode->i_mode))
288 return -EOPNOTSUPP;
289
290 if (!value)
291 goto set_acl;
292
293 acl = posix_acl_from_xattr(value, size);
294 if (!acl) {
295 /*
296 * acl_set_file(3) may request that we set default ACLs with
297 * zero length -- defend (gracefully) against that here.
298 */
299 goto out;
300 }
301 if (IS_ERR(acl)) {
302 error = PTR_ERR(acl);
303 goto out;
304 }
305
306 error = posix_acl_valid(acl);
307 if (error)
308 goto out_release;
309
310 error = -EINVAL;
311 if (acl->a_count > GFS2_ACL_MAX_ENTRIES)
312 goto out_release;
313
314 if (type == ACL_TYPE_ACCESS) {
315 mode_t mode = inode->i_mode;
316 error = posix_acl_equiv_mode(acl, &mode);
317
318 if (error <= 0) {
319 posix_acl_release(acl);
320 acl = NULL;
321
322 if (error < 0)
323 return error;
324 }
325
326 error = gfs2_set_mode(inode, mode);
327 if (error)
328 goto out_release;
329 }
330
331set_acl:
431547b3 332 error = __gfs2_xattr_set(inode, name, value, size, 0, GFS2_EATYPE_SYS);
106381bf
SW
333 if (!error) {
334 if (acl)
335 set_cached_acl(inode, type, acl);
336 else
337 forget_cached_acl(inode, type);
338 }
2646a1f6
SW
339out_release:
340 posix_acl_release(acl);
341out:
342 return error;
343}
344
b7bb0a12 345const struct xattr_handler gfs2_xattr_system_handler = {
2646a1f6 346 .prefix = XATTR_SYSTEM_PREFIX,
431547b3 347 .flags = GFS2_EATYPE_SYS,
2646a1f6
SW
348 .get = gfs2_xattr_system_get,
349 .set = gfs2_xattr_system_set,
350};
351
This page took 0.378521 seconds and 5 git commands to generate.