Whamcloud - gitweb
f01b3cf3c6a4c10fbb539f774ccc40e34e3c49ce
[fs/lustre-release.git] / lustre / utils / gss / lsupport.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, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
25  * Use is subject to license terms.
26  *
27  * Copyright (c) 2012, 2014 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/utils/gss/lsupport.h
34  */
35
36 #ifndef __LSUPPORT_H__
37 #define __LSUPPORT_H__
38
39 #include <assert.h>
40 #include <unistd.h>
41 #include <stdint.h>
42
43 #include <lnet/types.h>
44
45 #define GSSD_CLI        (0)
46 #define GSSD_SVC        (1)
47
48 void gssd_init_unique(int type);
49 void gssd_exit_unique(int type);
50
51 /*
52  * copied from lustre source
53  */
54
55 #define LUSTRE_GSS_SVC_MGS      0
56 #define LUSTRE_GSS_SVC_MDS      1
57 #define LUSTRE_GSS_SVC_OSS      2
58
59 #define LUSTRE_GSS_SVC_MASK     0x0000FFFF
60 #define LUSTRE_GSS_MECH_MASK    0xFFFF0000
61 #define LUSTRE_GSS_MECH_SHIFT   16
62
63 extern const char * lustre_svc_name[];
64
65 enum lgss_mech {
66         LGSS_MECH_KRB5  = 0,
67         LGSS_MECH_NULL  = 1,
68         LGSS_MECH_SK    = 2,
69 };
70
71 struct lgssd_upcall_data {
72         uint32_t        seq;
73         uint32_t        uid;
74         uint32_t        gid;
75         uint32_t        svc;
76         uint64_t        nid;
77         char            obd[64];
78 };
79
80 #define GSSD_INTERFACE_VERSION        (1)
81
82 struct lgssd_ioctl_param {
83         int             version;        /* in   */
84         int             secid;          /* in   */
85         char           *uuid;           /* in   */
86         int             lustre_svc;     /* in   */
87         uid_t           uid;            /* in   */
88         gid_t           gid;            /* in   */
89         long            send_token_size;/* in   */
90         char           *send_token;     /* in   */
91         long            reply_buf_size; /* in   */
92         char           *reply_buf;      /* in   */
93         long            status;         /* out  */
94         long            reply_length;   /* out  */
95 };
96
97 #define GSSD_DEFAULT_GETHOSTNAME_EX     "/etc/lustre/nid2hostname"
98 #define MAPPING_DATABASE_FILE           "/etc/lustre/idmap.conf"
99
100 int lnet_nid2hostname(lnet_nid_t nid, char *buf, int buflen);
101 void cleanup_mapping(void);
102 int lookup_mapping(char *princ, lnet_nid_t nid, uid_t *uid);
103
104 #endif /* __LSUPPORT_H__ */