summaryrefslogtreecommitdiffstats
path: root/src/lib/sifp/sss_sifp_dbus.h
blob: 57b136528e378432109e5e0d9ece5b2a30c7e41e (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
    Authors:
        Pavel Březina <pbrezina@redhat.com>

    Copyright (C) 2014 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_SIFP_DBUS_H_
#define SSS_SIFP_DBUS_H_

#include <sss_sifp.h>
#include <dbus/dbus.h>

/**
 * @defgroup sss_sifp_dbus Advanced InfoPipe method calls.
 *
 * Functions in this module provide a way to reuse sss_sifp connection
 * to the SSSD's InfoPipe responder.
 *
 * This allows the caller to send more sophisticated messages to the InfoPipe
 * and to use both sss_sifp and D-Bus without the need of maintaining two
 * separate D-Bus connections.
 *
 * However, these functions require the caller to understand the D-Bus
 * bindings from libdbus.
 *
 * @{
 */

/**
 * @brief Create a new method call message for SSSD InfoPipe bus.
 *
 * @param[in] object_path D-Bus object path
 * @param[in] interface   D-Bus interface
 * @param[in] method      D-Bus method
 *
 * @return D-Bus message.
 */
DBusMessage *
sss_sifp_create_message(const char *object_path,
                        const char *interface,
                        const char *method);

/**
 * @brief Send D-Bus message to SSSD InfoPipe bus with 5 seconds timeout.
 *
 * @param[in] ctx    sss_sifp context
 * @param[in] msg    D-Bus message
 * @param[in] _reply D-Bus reply, may be NULL if the caller is not interested
 *
 * @return D-Bus message.
 */
sss_sifp_error
sss_sifp_send_message(sss_sifp_ctx *ctx,
                      DBusMessage *msg,
                      DBusMessage **_reply);

/**
 * @brief Send D-Bus message to SSSD InfoPipe bus.
 *
 * @param[in] ctx     sss_sifp context
 * @param[in] msg     D-Bus message
 * @param[in] timeout Timeout
 * @param[in] _reply D-Bus reply, may be NULL if the caller is not interested
 *
 * @return D-Bus message.
 */
sss_sifp_error
sss_sifp_send_message_ex(sss_sifp_ctx *ctx,
                         DBusMessage *msg,
                         int timeout,
                         DBusMessage **_reply);

/**
 * @brief List objects that satisfies given conditions. This routine will
 * invoke List<method> D-Bus method on SSSD InfoPipe interface. Arguments
 * to this method are given as standard variadic D-Bus arguments.
 *
 * @param[in] ctx            sss_sifp context
 * @param[in] method         D-Bus method to call without the 'List' prefix
 * @param[out] _object_paths List of object paths
 * @param[in] first_arg_type Type of the first D-Bus argument
 * @param[in] ...            D-Bus arguments
 */
sss_sifp_error
sss_sifp_invoke_list(sss_sifp_ctx *ctx,
                     const char *method,
                     char ***_object_paths,
                     int first_arg_type,
                     ...);

/**
 * @brief Find single object that satisfies given conditions. This routine will
 * invoke Find<method> D-Bus method on SSSD InfoPipe interface. Arguments
 * to this method are given as standard variadic D-Bus arguments.
 *
 * @param[in] ctx            sss_sifp context
 * @param[in] method         D-Bus method to call without the 'Find' prefix
 * @param[out] _object_path  Object path
 * @param[in] first_arg_type Type of the first D-Bus argument
 * @param[in] ...            D-Bus arguments
 */
sss_sifp_error
sss_sifp_invoke_find(sss_sifp_ctx *ctx,
                     const char *method,
                     char **_object_path,
                     int first_arg_type,
                     ...);

/**
 * @}
 */
#endif /* SSS_SIFP_DBUS_H_ */