Whamcloud - gitweb
LU-14644 vvp: wait for nrpages to be updated
[fs/lustre-release.git] / lustre / llite / acl.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/llite/acl.c
33  *
34  * Author: Peter Braam <braam@clusterfs.com>
35  * Author: Phil Schwan <phil@clusterfs.com>
36  * Author: Andreas Dilger <adilger@clusterfs.com>
37  */
38
39 #include "llite_internal.h"
40
41 struct posix_acl *ll_get_acl(struct inode *inode, int type)
42 {
43         struct ll_inode_info *lli = ll_i2info(inode);
44         struct posix_acl *acl = NULL;
45         ENTRY;
46
47         spin_lock(&lli->lli_lock);
48         /* VFS' acl_permission_check->check_acl will release the refcount */
49         acl = posix_acl_dup(lli->lli_posix_acl);
50         spin_unlock(&lli->lli_lock);
51
52         RETURN(acl);
53 }
54
55 #ifdef HAVE_IOP_SET_ACL
56 int ll_set_acl(struct inode *inode, struct posix_acl *acl, int type)
57 {
58         struct ll_sb_info *sbi = ll_i2sbi(inode);
59         struct ptlrpc_request *req = NULL;
60         const char *name = NULL;
61         char *value = NULL;
62         size_t value_size = 0;
63         int rc = 0;
64         ENTRY;
65
66         switch (type) {
67         case ACL_TYPE_ACCESS:
68                 name = XATTR_NAME_POSIX_ACL_ACCESS;
69                 if (acl)
70                         rc = posix_acl_update_mode(inode, &inode->i_mode, &acl);
71                 break;
72
73         case ACL_TYPE_DEFAULT:
74                 name = XATTR_NAME_POSIX_ACL_DEFAULT;
75                 if (!S_ISDIR(inode->i_mode))
76                         rc = acl ? -EACCES : 0;
77                 break;
78
79         default:
80                 rc = -EINVAL;
81                 break;
82         }
83         if (rc)
84                 return rc;
85
86         if (acl) {
87                 value_size = posix_acl_xattr_size(acl->a_count);
88                 value = kmalloc(value_size, GFP_NOFS);
89                 if (value == NULL)
90                         GOTO(out, rc = -ENOMEM);
91
92                 rc = posix_acl_to_xattr(&init_user_ns, acl, value, value_size);
93                 if (rc < 0)
94                         GOTO(out_value, rc);
95         }
96
97         rc = md_setxattr(sbi->ll_md_exp, ll_inode2fid(inode),
98                          value ? OBD_MD_FLXATTR : OBD_MD_FLXATTRRM,
99                          name, value, value_size, 0, 0, &req);
100
101         ptlrpc_req_finished(req);
102 out_value:
103         kfree(value);
104 out:
105         if (rc)
106                 forget_cached_acl(inode, type);
107         else
108                 set_cached_acl(inode, type, acl);
109         RETURN(rc);
110 }
111 #endif /* HAVE_IOP_SET_ACL */