Whamcloud - gitweb
LU-8837 lmv: don't use lqr_alloc spinlock in lmv
[fs/lustre-release.git] / lustre / include / lustre_eacl.h
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) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  */
26 /*
27  * Copyright (c) 2012, 2017, Intel Corporation.
28  */
29 /*
30  * This file is part of Lustre, http://www.lustre.org/
31  * Lustre is a trademark of Sun Microsystems, Inc.
32  *
33  * lustre/lustre/include/lustre_idmap.h
34  *
35  * MDS data structures.
36  * See also lustre_idl.h for wire formats of requests.
37  */
38
39 #ifndef _LUSTRE_EACL_H
40 #define _LUSTRE_EACL_H
41
42 /** \defgroup eacl eacl
43  *
44  * @{
45  */
46
47 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
48 # include <linux/fs.h>
49 # include <lustre_compat.h>
50
51 #ifdef HAVE_SERVER_SUPPORT
52 struct lu_ucred;
53 struct lu_attr;
54 struct lustre_idmap_table;
55
56 #ifdef HAVE_STRUCT_POSIX_ACL_XATTR
57 # define posix_acl_xattr_header struct posix_acl_xattr_header
58 # define posix_acl_xattr_entry  struct posix_acl_xattr_entry
59 #endif
60
61 extern int lustre_posix_acl_permission(struct lu_ucred *mu,
62                                         const struct lu_attr *la,
63                                         unsigned int may_mask,
64                                         posix_acl_xattr_entry *entry,
65                                         int count);
66 extern int lustre_posix_acl_chmod_masq(posix_acl_xattr_entry *entry,
67                                        __u32 mode, int count);
68 extern int lustre_posix_acl_create_masq(posix_acl_xattr_entry *entry,
69                                         __u32 *pmode, int count);
70 extern int lustre_posix_acl_equiv_mode(posix_acl_xattr_entry *entry, mode_t *mode_p,
71                                        int count);
72 #endif /* HAVE_SERVER_SUPPORT */
73 #endif /* CONFIG_LUSTRE_FS_POSIX_ACL */
74
75 /** @} eacl */
76
77 #endif