cifs-utils: struct cifs_sid definition to new cifsidmap.h header
[jlayton/cifs-utils.git] / cifsidmap.h
1 /*
2  * ID Mapping Plugin interface for cifs-utils
3  * Copyright (C) 2012 Jeff Layton (jlayton@samba.org)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 #include <stdint.h>
19
20 #ifndef _CIFSIDMAP_H
21 #define _CIFSIDMAP_H
22
23 #define NUM_AUTHS (6)                   /* number of authority fields */
24 #define SID_MAX_SUB_AUTHORITIES (15)    /* max number of sub authority fields */
25
26 /*
27  * Binary representation of a SID as presented to/from the kernel. Note that
28  * the sub_auth field is always stored in little-endian here.
29  */
30 struct cifs_sid {
31         uint8_t revision; /* revision level */
32         uint8_t num_subauth;
33         uint8_t authority[NUM_AUTHS];
34         uint32_t sub_auth[SID_MAX_SUB_AUTHORITIES];
35 } __attribute__((packed));
36
37 #endif /* _CIFSIDMAP_H */