blob: 7118f1a780a9592ac67114f25ca7e9e040f937d4 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
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>
Steven Whitehouse2646a1f2009-10-02 11:50:54 +010015#include <linux/xattr.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016#include <linux/posix_acl.h>
17#include <linux/posix_acl_xattr.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "acl.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010023#include "xattr.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "glock.h"
25#include "inode.h"
26#include "meta_io.h"
27#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050028#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
Steven Whitehouse479c4272009-10-02 12:00:00 +010030static const char *gfs2_acl_name(int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +000031{
Steven Whitehouse479c4272009-10-02 12:00:00 +010032 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}
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
Steven Whitehouse479c4272009-10-02 12:00:00 +010041static 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;
Steven Whitehouse40b78a32009-08-26 18:41:32 +010047
Steven Whitehouse3767ac22008-11-03 14:28:42 +000048 if (!ip->i_eattr)
Steven Whitehouse479c4272009-10-02 12:00:00 +010049 return NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000050
Steven Whitehouse106381b2009-09-29 16:26:23 +010051 acl = get_cached_acl(&ip->i_inode, type);
52 if (acl != ACL_NOT_CACHED)
53 return acl;
54
Steven Whitehouse479c4272009-10-02 12:00:00 +010055 name = gfs2_acl_name(type);
56 if (name == NULL)
57 return ERR_PTR(-EINVAL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000058
Steven Whitehouse479c4272009-10-02 12:00:00 +010059 len = gfs2_xattr_acl_get(ip, name, &data);
60 if (len < 0)
61 return ERR_PTR(len);
62 if (len == 0)
63 return NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000064
Steven Whitehouse479c4272009-10-02 12:00:00 +010065 acl = posix_acl_from_xattr(data, len);
66 kfree(data);
67 return acl;
David Teiglandb3b94fa2006-01-16 16:50:04 +000068}
69
70/**
Steven Whitehouse77386e12006-11-29 10:41:49 -050071 * gfs2_check_acl - Check an ACL to see if we're allowed to do something
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 * @inode: the file we want to do something to
73 * @mask: what we want to do
74 *
75 * Returns: errno
76 */
77
Nick Pigginb74c79e2011-01-07 17:49:58 +110078int gfs2_check_acl(struct inode *inode, int mask, unsigned int flags)
David Teiglandb3b94fa2006-01-16 16:50:04 +000079{
Steven Whitehouse479c4272009-10-02 12:00:00 +010080 struct posix_acl *acl;
David Teiglandb3b94fa2006-01-16 16:50:04 +000081 int error;
82
Nick Pigginb74c79e2011-01-07 17:49:58 +110083 if (flags & IPERM_FLAG_RCU)
84 return -ECHILD;
85
Steven Whitehouse479c4272009-10-02 12:00:00 +010086 acl = gfs2_acl_get(GFS2_I(inode), ACL_TYPE_ACCESS);
87 if (IS_ERR(acl))
88 return PTR_ERR(acl);
David Teiglandb3b94fa2006-01-16 16:50:04 +000089
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
Steven Whitehouse69dca422009-09-29 12:40:19 +010099static int gfs2_set_mode(struct inode *inode, mode_t mode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100{
Steven Whitehouse69dca422009-09-29 12:40:19 +0100101 int error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102
Steven Whitehouse69dca422009-09-29 12:40:19 +0100103 if (mode != inode->i_mode) {
104 struct iattr iattr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105
Steven Whitehouse69dca422009-09-29 12:40:19 +0100106 iattr.ia_valid = ATTR_MODE;
107 iattr.ia_mode = mode;
108
109 error = gfs2_setattr_simple(GFS2_I(inode), &iattr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110 }
111
Steven Whitehouse69dca422009-09-29 12:40:19 +0100112 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113}
114
Steven Whitehouse479c4272009-10-02 12:00:00 +0100115static int gfs2_acl_set(struct inode *inode, int type, struct posix_acl *acl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117 int error;
Steven Whitehouse479c4272009-10-02 12:00:00 +0100118 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;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000132 error = __gfs2_xattr_set(inode, name, data, len, 0, GFS2_EATYPE_SYS);
Steven Whitehouse106381b2009-09-29 16:26:23 +0100133 if (!error)
134 set_cached_acl(inode, type, acl);
Steven Whitehouse479c4272009-10-02 12:00:00 +0100135out:
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;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000146
147 if (!sdp->sd_args.ar_posix_acl)
148 return 0;
Steven Whitehouse479c4272009-10-02 12:00:00 +0100149 if (S_ISLNK(inode->i_mode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 return 0;
151
Steven Whitehouse479c4272009-10-02 12:00:00 +0100152 acl = gfs2_acl_get(dip, ACL_TYPE_DEFAULT);
153 if (IS_ERR(acl))
154 return PTR_ERR(acl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155 if (!acl) {
Al Viroce3b0f82009-03-29 19:08:22 -0400156 mode &= ~current_umask();
Steven Whitehouse479c4272009-10-02 12:00:00 +0100157 if (mode != inode->i_mode)
158 error = gfs2_set_mode(inode, mode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000159 return error;
160 }
161
Steven Whitehouse479c4272009-10-02 12:00:00 +0100162 if (S_ISDIR(inode->i_mode)) {
163 error = gfs2_acl_set(inode, ACL_TYPE_DEFAULT, acl);
164 if (error)
165 goto out;
166 }
167
Josef Bacik16c5f062008-04-09 09:33:41 -0400168 clone = posix_acl_clone(acl, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000169 error = -ENOMEM;
170 if (!clone)
171 goto out;
172 posix_acl_release(acl);
173 acl = clone;
174
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175 error = posix_acl_create_masq(acl, &mode);
176 if (error < 0)
177 goto out;
Steven Whitehouse40b78a32009-08-26 18:41:32 +0100178 if (error == 0)
179 goto munge;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180
Steven Whitehouse479c4272009-10-02 12:00:00 +0100181 error = gfs2_acl_set(inode, ACL_TYPE_ACCESS, acl);
Steven Whitehouse40b78a32009-08-26 18:41:32 +0100182 if (error)
183 goto out;
184munge:
Steven Whitehouse479c4272009-10-02 12:00:00 +0100185 error = gfs2_set_mode(inode, mode);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400186out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 posix_acl_release(acl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000188 return error;
189}
190
191int gfs2_acl_chmod(struct gfs2_inode *ip, struct iattr *attr)
192{
Steven Whitehouse479c4272009-10-02 12:00:00 +0100193 struct posix_acl *acl, *clone;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000194 char *data;
195 unsigned int len;
196 int error;
197
Steven Whitehouse479c4272009-10-02 12:00:00 +0100198 acl = gfs2_acl_get(ip, ACL_TYPE_ACCESS);
199 if (IS_ERR(acl))
200 return PTR_ERR(acl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 if (!acl)
202 return gfs2_setattr_simple(ip, attr);
203
Josef Bacik16c5f062008-04-09 09:33:41 -0400204 clone = posix_acl_clone(acl, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205 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) {
Steven Whitehouse479c4272009-10-02 12:00:00 +0100213 len = posix_acl_to_xattr(acl, NULL, 0);
214 data = kmalloc(len, GFP_NOFS);
215 error = -ENOMEM;
216 if (data == NULL)
217 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000218 posix_acl_to_xattr(acl, data, len);
Steven Whitehouse479c4272009-10-02 12:00:00 +0100219 error = gfs2_xattr_acl_chmod(ip, attr, data);
220 kfree(data);
Steven Whitehouse106381b2009-09-29 16:26:23 +0100221 set_cached_acl(&ip->i_inode, ACL_TYPE_ACCESS, acl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222 }
223
Steven Whitehousea91ea692006-09-04 12:04:26 -0400224out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000225 posix_acl_release(acl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226 return error;
227}
228
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100229static 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
Christoph Hellwig431547b2009-11-13 09:52:56 +0000238static int gfs2_xattr_system_get(struct dentry *dentry, const char *name,
239 void *buffer, size_t size, int xtype)
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100240{
Christoph Hellwig431547b2009-11-13 09:52:56 +0000241 struct inode *inode = dentry->d_inode;
Steven Whitehousef72f2d22010-05-21 16:12:27 +0100242 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse106381b2009-09-29 16:26:23 +0100243 struct posix_acl *acl;
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100244 int type;
Steven Whitehouse106381b2009-09-29 16:26:23 +0100245 int error;
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100246
Steven Whitehousef72f2d22010-05-21 16:12:27 +0100247 if (!sdp->sd_args.ar_posix_acl)
248 return -EOPNOTSUPP;
249
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100250 type = gfs2_acl_type(name);
251 if (type < 0)
252 return type;
253
Steven Whitehouse106381b2009-09-29 16:26:23 +0100254 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;
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100259
Steven Whitehouse106381b2009-09-29 16:26:23 +0100260 error = posix_acl_to_xattr(acl, buffer, size);
261 posix_acl_release(acl);
262
263 return error;
264}
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100265
Christoph Hellwig431547b2009-11-13 09:52:56 +0000266static int gfs2_xattr_system_set(struct dentry *dentry, const char *name,
267 const void *value, size_t size, int flags,
268 int xtype)
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100269{
Christoph Hellwig431547b2009-11-13 09:52:56 +0000270 struct inode *inode = dentry->d_inode;
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100271 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:
Christoph Hellwig431547b2009-11-13 09:52:56 +0000332 error = __gfs2_xattr_set(inode, name, value, size, 0, GFS2_EATYPE_SYS);
Steven Whitehouse106381b2009-09-29 16:26:23 +0100333 if (!error) {
334 if (acl)
335 set_cached_acl(inode, type, acl);
336 else
337 forget_cached_acl(inode, type);
338 }
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100339out_release:
340 posix_acl_release(acl);
341out:
342 return error;
343}
344
Stephen Hemmingerb7bb0a12010-05-13 17:53:23 -0700345const struct xattr_handler gfs2_xattr_system_handler = {
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100346 .prefix = XATTR_SYSTEM_PREFIX,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000347 .flags = GFS2_EATYPE_SYS,
Steven Whitehouse2646a1f2009-10-02 11:50:54 +0100348 .get = gfs2_xattr_system_get,
349 .set = gfs2_xattr_system_set,
350};
351