Whamcloud - gitweb
LU-10467 ptlrpc: discard SVC_SIGNAL and related functions
[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_FS_POSIX_ACL
48 # include <linux/fs.h>
49 # include <linux/posix_acl_xattr.h>
50
51 typedef struct {
52         __u16                   e_tag;
53         __u16                   e_perm;
54         __u32                   e_id;
55         __u32                   e_stat;
56 } ext_acl_xattr_entry;
57
58 typedef struct {
59         __u32                   a_count;
60         ext_acl_xattr_entry     a_entries[0];
61 } ext_acl_xattr_header;
62
63 #define CFS_ACL_XATTR_SIZE(count, prefix) \
64         (sizeof(prefix ## _header) + (count) * sizeof(prefix ## _entry))
65
66 #define CFS_ACL_XATTR_COUNT(size, prefix) \
67         (((size) - sizeof(prefix ## _header)) / sizeof(prefix ## _entry))
68
69 #ifdef HAVE_SERVER_SUPPORT
70 struct lu_ucred;
71 struct lu_attr;
72 struct lustre_idmap_table;
73
74 #ifdef HAVE_STRUCT_POSIX_ACL_XATTR
75 # define posix_acl_xattr_header struct posix_acl_xattr_header
76 # define posix_acl_xattr_entry  struct posix_acl_xattr_entry
77 #endif
78
79 extern int lustre_posix_acl_permission(struct lu_ucred *mu,
80                                         const struct lu_attr *la, int want,
81                                         posix_acl_xattr_entry *entry,
82                                         int count);
83 extern int lustre_posix_acl_chmod_masq(posix_acl_xattr_entry *entry,
84                                        __u32 mode, int count);
85 extern int lustre_posix_acl_create_masq(posix_acl_xattr_entry *entry,
86                                         __u32 *pmode, int count);
87 extern int lustre_posix_acl_equiv_mode(posix_acl_xattr_entry *entry, mode_t *mode_p,
88                                        int count);
89 #endif /* HAVE_SERVER_SUPPORT */
90 #endif /* CONFIG_FS_POSIX_ACL */
91
92 /** @} eacl */
93
94 #endif