blob: b705958309b8e8fe848054efbfd17b27d25da684 (
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
|
/*
Authors:
Pavel Březina <pbrezina@redhat.com>
Copyright (C) 2018 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 _SSS_IFACE_H_
#define _SSS_IFACE_H_
#include "config.h"
#include <stdint.h>
#include <talloc.h>
#include "confdb/confdb.h"
#include "providers/data_provider_req.h"
#include "providers/data_provider/dp_flags.h"
#define SSS_MONITOR_ADDRESS "unix:path=" PIPE_PATH "/private/sbus-monitor"
#define SSS_BACKEND_ADDRESS "unix:path=" PIPE_PATH "/private/sbus-dp_%s"
#define SSS_BUS_MONITOR "sssd.monitor"
#define SSS_BUS_AUTOFS "sssd.autofs"
#define SSS_BUS_IFP "sssd.ifp"
#define SSS_BUS_NSS "sssd.nss"
#define SSS_BUS_PAC "sssd.pac"
#define SSS_BUS_PAM "sssd.pam"
#define SSS_BUS_SSH "sssd.ssh"
#define SSS_BUS_SUDO "sssd.sudo"
#define SSS_BUS_PATH "/sssd"
#define NSS_SBUS_SERVICE_NAME "nss"
#define NSS_SBUS_SERVICE_VERSION 0x0001
#define SSS_PAM_SBUS_SERVICE_NAME "pam"
#define SSS_PAM_SBUS_SERVICE_VERSION 0x0001
#define SSS_SUDO_SBUS_SERVICE_NAME "sudo"
#define SSS_SUDO_SBUS_SERVICE_VERSION 0x0001
#define SSS_AUTOFS_SBUS_SERVICE_NAME "autofs"
#define SSS_AUTOFS_SBUS_SERVICE_VERSION 0x0001
#define SSS_SSH_SBUS_SERVICE_NAME "ssh"
#define SSS_SSH_SBUS_SERVICE_VERSION 0x0001
#define SSS_IFP_SBUS_SERVICE_NAME "ifp"
#define SSS_IFP_SBUS_SERVICE_VERSION 0x0001
#define PAC_SBUS_SERVICE_NAME "pac"
#define PAC_SBUS_SERVICE_VERSION 0x0001
/**
* Return domain address.
*/
char *
sss_iface_domain_address(TALLOC_CTX *mem_ctx,
struct sss_domain_info *domain);
/**
* Return domain bus name.
*/
char *
sss_iface_domain_bus(TALLOC_CTX *mem_ctx,
struct sss_domain_info *domain);
/**
* Return proxy child bus name.
*/
char *
sss_iface_proxy_bus(TALLOC_CTX *mem_ctx,
uint32_t id);
#endif /* _SSS_IFACE_H_ */
|