Thomas Gleixner | 7336d0e | 2019-05-31 01:09:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 4 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <linux/sched.h> |
| 8 | #include <linux/slab.h> |
| 9 | #include <linux/spinlock.h> |
| 10 | #include <linux/completion.h> |
| 11 | #include <linux/buffer_head.h> |
Steven Whitehouse | 2646a1f | 2009-10-02 11:50:54 +0100 | [diff] [blame] | 12 | #include <linux/xattr.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 13 | #include <linux/posix_acl.h> |
| 14 | #include <linux/posix_acl_xattr.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 15 | #include <linux/gfs2_ondisk.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 16 | |
| 17 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 18 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 19 | #include "acl.h" |
Steven Whitehouse | 307cf6e | 2009-08-26 18:51:04 +0100 | [diff] [blame] | 20 | #include "xattr.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 21 | #include "glock.h" |
| 22 | #include "inode.h" |
| 23 | #include "meta_io.h" |
Bob Peterson | d580712 | 2020-03-06 10:18:44 -0600 | [diff] [blame] | 24 | #include "quota.h" |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 25 | #include "rgrp.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 26 | #include "trans.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 27 | #include "util.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 28 | |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 29 | static const char *gfs2_acl_name(int type) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 30 | { |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 31 | switch (type) { |
| 32 | case ACL_TYPE_ACCESS: |
Andreas Gruenbacher | 97d7929 | 2015-12-02 14:44:35 +0100 | [diff] [blame] | 33 | return XATTR_POSIX_ACL_ACCESS; |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 34 | case ACL_TYPE_DEFAULT: |
Andreas Gruenbacher | 97d7929 | 2015-12-02 14:44:35 +0100 | [diff] [blame] | 35 | return XATTR_POSIX_ACL_DEFAULT; |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 36 | } |
| 37 | return NULL; |
| 38 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 39 | |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 40 | static struct posix_acl *__gfs2_get_acl(struct inode *inode, int type) |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 41 | { |
Steven Whitehouse | 018a01c | 2011-11-23 13:31:51 +0000 | [diff] [blame] | 42 | struct gfs2_inode *ip = GFS2_I(inode); |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 43 | struct posix_acl *acl; |
| 44 | const char *name; |
| 45 | char *data; |
| 46 | int len; |
Steven Whitehouse | 40b78a3 | 2009-08-26 18:41:32 +0100 | [diff] [blame] | 47 | |
Steven Whitehouse | 3767ac2 | 2008-11-03 14:28:42 +0000 | [diff] [blame] | 48 | if (!ip->i_eattr) |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 49 | return NULL; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 50 | |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 51 | name = gfs2_acl_name(type); |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 52 | len = gfs2_xattr_acl_get(ip, name, &data); |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 53 | if (len <= 0) |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 54 | return ERR_PTR(len); |
Eric W. Biederman | 5f3a4a28 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 55 | acl = posix_acl_from_xattr(&init_user_ns, data, len); |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 56 | kfree(data); |
| 57 | return acl; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Miklos Szeredi | 0cad624 | 2021-08-18 22:08:24 +0200 | [diff] [blame] | 60 | struct posix_acl *gfs2_get_acl(struct inode *inode, int type, bool rcu) |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 61 | { |
| 62 | struct gfs2_inode *ip = GFS2_I(inode); |
| 63 | struct gfs2_holder gh; |
| 64 | bool need_unlock = false; |
| 65 | struct posix_acl *acl; |
| 66 | |
Miklos Szeredi | 0cad624 | 2021-08-18 22:08:24 +0200 | [diff] [blame] | 67 | if (rcu) |
| 68 | return ERR_PTR(-ECHILD); |
| 69 | |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 70 | if (!gfs2_glock_is_locked_by_me(ip->i_gl)) { |
| 71 | int ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, |
| 72 | LM_FLAG_ANY, &gh); |
| 73 | if (ret) |
| 74 | return ERR_PTR(ret); |
| 75 | need_unlock = true; |
| 76 | } |
| 77 | acl = __gfs2_get_acl(inode, type); |
| 78 | if (need_unlock) |
| 79 | gfs2_glock_dq_uninit(&gh); |
| 80 | return acl; |
| 81 | } |
| 82 | |
| 83 | int __gfs2_set_acl(struct inode *inode, struct posix_acl *acl, int type) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 84 | { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 85 | int error; |
Chengguang Xu | 910f3d5 | 2018-06-22 09:51:43 +0800 | [diff] [blame] | 86 | size_t len; |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 87 | char *data; |
| 88 | const char *name = gfs2_acl_name(type); |
| 89 | |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 90 | if (acl) { |
Chengguang Xu | 910f3d5 | 2018-06-22 09:51:43 +0800 | [diff] [blame] | 91 | len = posix_acl_xattr_size(acl->a_count); |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 92 | data = kmalloc(len, GFP_NOFS); |
| 93 | if (data == NULL) |
| 94 | return -ENOMEM; |
| 95 | error = posix_acl_to_xattr(&init_user_ns, acl, data, len); |
| 96 | if (error < 0) |
| 97 | goto out; |
| 98 | } else { |
| 99 | data = NULL; |
| 100 | len = 0; |
Steven Whitehouse | 106381b | 2009-09-29 16:26:23 +0100 | [diff] [blame] | 101 | } |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 102 | |
| 103 | error = __gfs2_xattr_set(inode, name, data, len, 0, GFS2_EATYPE_SYS); |
| 104 | if (error) |
| 105 | goto out; |
Andreas Gruenbacher | 932e468 | 2015-02-13 12:16:37 -0600 | [diff] [blame] | 106 | set_cached_acl(inode, type, acl); |
Steven Whitehouse | 2646a1f | 2009-10-02 11:50:54 +0100 | [diff] [blame] | 107 | out: |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 108 | kfree(data); |
Steven Whitehouse | 2646a1f | 2009-10-02 11:50:54 +0100 | [diff] [blame] | 109 | return error; |
| 110 | } |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 111 | |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 112 | int gfs2_set_acl(struct user_namespace *mnt_userns, struct inode *inode, |
| 113 | struct posix_acl *acl, int type) |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 114 | { |
| 115 | struct gfs2_inode *ip = GFS2_I(inode); |
| 116 | struct gfs2_holder gh; |
| 117 | bool need_unlock = false; |
| 118 | int ret; |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 119 | umode_t mode; |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 120 | |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 121 | if (acl && acl->a_count > GFS2_ACL_MAX_ENTRIES(GFS2_SB(inode))) |
| 122 | return -E2BIG; |
| 123 | |
Bob Peterson | 2fba46a | 2020-02-27 12:47:53 -0600 | [diff] [blame] | 124 | ret = gfs2_qa_get(ip); |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 125 | if (ret) |
| 126 | return ret; |
| 127 | |
| 128 | if (!gfs2_glock_is_locked_by_me(ip->i_gl)) { |
| 129 | ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh); |
| 130 | if (ret) |
Bob Peterson | 2fba46a | 2020-02-27 12:47:53 -0600 | [diff] [blame] | 131 | goto out; |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 132 | need_unlock = true; |
| 133 | } |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 134 | |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 135 | mode = inode->i_mode; |
| 136 | if (type == ACL_TYPE_ACCESS && acl) { |
Christian Brauner | e65ce2a | 2021-01-21 14:19:27 +0100 | [diff] [blame] | 137 | ret = posix_acl_update_mode(&init_user_ns, inode, &mode, &acl); |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 138 | if (ret) |
| 139 | goto unlock; |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 140 | } |
| 141 | |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 142 | ret = __gfs2_set_acl(inode, acl, type); |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 143 | if (!ret && mode != inode->i_mode) { |
Andreas Gruenbacher | c2c4be2 | 2017-09-25 08:37:15 -0500 | [diff] [blame] | 144 | inode->i_ctime = current_time(inode); |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 145 | inode->i_mode = mode; |
| 146 | mark_inode_dirty(inode); |
| 147 | } |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 148 | unlock: |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 149 | if (need_unlock) |
| 150 | gfs2_glock_dq_uninit(&gh); |
Bob Peterson | 2fba46a | 2020-02-27 12:47:53 -0600 | [diff] [blame] | 151 | out: |
| 152 | gfs2_qa_put(ip); |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 153 | return ret; |
| 154 | } |