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 | |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 60 | struct posix_acl *gfs2_get_acl(struct inode *inode, int type) |
| 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 | |
| 67 | if (!gfs2_glock_is_locked_by_me(ip->i_gl)) { |
| 68 | int ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, |
| 69 | LM_FLAG_ANY, &gh); |
| 70 | if (ret) |
| 71 | return ERR_PTR(ret); |
| 72 | need_unlock = true; |
| 73 | } |
| 74 | acl = __gfs2_get_acl(inode, type); |
| 75 | if (need_unlock) |
| 76 | gfs2_glock_dq_uninit(&gh); |
| 77 | return acl; |
| 78 | } |
| 79 | |
| 80 | 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] | 81 | { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 82 | int error; |
Chengguang Xu | 910f3d5 | 2018-06-22 09:51:43 +0800 | [diff] [blame] | 83 | size_t len; |
Steven Whitehouse | 479c427 | 2009-10-02 12:00:00 +0100 | [diff] [blame] | 84 | char *data; |
| 85 | const char *name = gfs2_acl_name(type); |
| 86 | |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 87 | if (acl) { |
Chengguang Xu | 910f3d5 | 2018-06-22 09:51:43 +0800 | [diff] [blame] | 88 | len = posix_acl_xattr_size(acl->a_count); |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 89 | data = kmalloc(len, GFP_NOFS); |
| 90 | if (data == NULL) |
| 91 | return -ENOMEM; |
| 92 | error = posix_acl_to_xattr(&init_user_ns, acl, data, len); |
| 93 | if (error < 0) |
| 94 | goto out; |
| 95 | } else { |
| 96 | data = NULL; |
| 97 | len = 0; |
Steven Whitehouse | 106381b | 2009-09-29 16:26:23 +0100 | [diff] [blame] | 98 | } |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 99 | |
| 100 | error = __gfs2_xattr_set(inode, name, data, len, 0, GFS2_EATYPE_SYS); |
| 101 | if (error) |
| 102 | goto out; |
Andreas Gruenbacher | 932e468 | 2015-02-13 12:16:37 -0600 | [diff] [blame] | 103 | set_cached_acl(inode, type, acl); |
Steven Whitehouse | 2646a1f | 2009-10-02 11:50:54 +0100 | [diff] [blame] | 104 | out: |
Christoph Hellwig | e01580b | 2013-12-20 05:16:52 -0800 | [diff] [blame] | 105 | kfree(data); |
Steven Whitehouse | 2646a1f | 2009-10-02 11:50:54 +0100 | [diff] [blame] | 106 | return error; |
| 107 | } |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 108 | |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 109 | int gfs2_set_acl(struct user_namespace *mnt_userns, struct inode *inode, |
| 110 | struct posix_acl *acl, int type) |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 111 | { |
| 112 | struct gfs2_inode *ip = GFS2_I(inode); |
| 113 | struct gfs2_holder gh; |
| 114 | bool need_unlock = false; |
| 115 | int ret; |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 116 | umode_t mode; |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 117 | |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 118 | if (acl && acl->a_count > GFS2_ACL_MAX_ENTRIES(GFS2_SB(inode))) |
| 119 | return -E2BIG; |
| 120 | |
Bob Peterson | 2fba46a | 2020-02-27 12:47:53 -0600 | [diff] [blame] | 121 | ret = gfs2_qa_get(ip); |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 122 | if (ret) |
| 123 | return ret; |
| 124 | |
| 125 | if (!gfs2_glock_is_locked_by_me(ip->i_gl)) { |
| 126 | ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh); |
| 127 | if (ret) |
Bob Peterson | 2fba46a | 2020-02-27 12:47:53 -0600 | [diff] [blame] | 128 | goto out; |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 129 | need_unlock = true; |
| 130 | } |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 131 | |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 132 | mode = inode->i_mode; |
| 133 | if (type == ACL_TYPE_ACCESS && acl) { |
Christian Brauner | e65ce2a | 2021-01-21 14:19:27 +0100 | [diff] [blame] | 134 | ret = posix_acl_update_mode(&init_user_ns, inode, &mode, &acl); |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 135 | if (ret) |
| 136 | goto unlock; |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 137 | } |
| 138 | |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 139 | ret = __gfs2_set_acl(inode, acl, type); |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 140 | if (!ret && mode != inode->i_mode) { |
Andreas Gruenbacher | c2c4be2 | 2017-09-25 08:37:15 -0500 | [diff] [blame] | 141 | inode->i_ctime = current_time(inode); |
Ernesto A. Fernández | 309e8cd | 2017-08-31 07:53:15 -0500 | [diff] [blame] | 142 | inode->i_mode = mode; |
| 143 | mark_inode_dirty(inode); |
| 144 | } |
Jan Kara | 914cea9 | 2017-07-19 10:56:42 -0500 | [diff] [blame] | 145 | unlock: |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 146 | if (need_unlock) |
| 147 | gfs2_glock_dq_uninit(&gh); |
Bob Peterson | 2fba46a | 2020-02-27 12:47:53 -0600 | [diff] [blame] | 148 | out: |
| 149 | gfs2_qa_put(ip); |
Al Viro | 1a39ba9 | 2016-05-13 03:59:17 +0200 | [diff] [blame] | 150 | return ret; |
| 151 | } |