blob: 994d0a99463e9aeb08e0642b8259d9c3ced2aab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
Authors:
Simo Sorce <simo@redhat.com>
Copyright (C) 2016 Red Hat
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SSSD_UTIL_CREDS_H__
#define __SSSD_UTIL_CREDS_H__
/* following code comes from gss-proxy's gp_selinux.h file */
#ifdef HAVE_SELINUX
#include <selinux/context.h>
typedef context_t SELINUX_CTX;
#include <selinux/selinux.h>
typedef char * SEC_CTX;
#define SELINUX_context_new context_new
#define SELINUX_context_free context_free
#define SELINUX_context_str context_str
#define SELINUX_context_type_get context_type_get
#define SELINUX_context_user_get context_user_get
#define SELINUX_context_role_get context_role_get
#define SELINUX_context_range_get context_range_get
#define SELINUX_getpeercon getpeercon
#define SELINUX_freecon freecon
#else /* not HAVE_SELINUX */
typedef void * SELINUX_CTX;
typedef void * SEC_CTX;
#define SELINUX_context_new(x) NULL
#define SELINUX_context_free(x) (x) = NULL
#define SELINUX_context_dummy_get(x) "<SELinux not compiled in>"
#define SELINUX_context_str SELINUX_context_dummy_get
#define SELINUX_context_type_get SELINUX_context_dummy_get
#define SELINUX_context_user_get SELINUX_context_dummy_get
#define SELINUX_context_role_get SELINUX_context_dummy_get
#define SELINUX_context_range_get SELINUX_context_dummy_get
#include <errno.h>
#define SELINUX_getpeercon(x, y) -1; do { \
*(y) = NULL; \
errno = ENOTSUP; \
} while(0)
#define SELINUX_freecon(x) (x) = NULL
#endif /* done HAVE_SELINUX */
#ifdef HAVE_UCRED
#include <sys/socket.h>
struct cli_creds {
struct ucred ucred;
SELINUX_CTX selinux_ctx;
};
#define cli_creds_get_uid(x) (x->ucred.uid)
#define cli_creds_get_gid(x) (x->ucred.gid)
#else /* not HAVE_UCRED */
struct cli_creds {
SELINUX_CTX selinux_ctx;
};
#define cli_creds_get_uid(x) (-1)
#define cli_creds_get_gid(x) (-1)
#endif /* done HAVE_UCRED */
#endif /* __SSSD_UTIL_CREDS_H__ */
|