22#ifndef __DATA_PROVIDER_H__
23#define __DATA_PROVIDER_H__
41#include "confdb/confdb.h"
42#include "sss_client/sss_cli.h"
43#include "util/authtok.h"
44#include "util/sss_pam_data.h"
45#include "providers/data_provider_req.h"
47#define DATA_PROVIDER_VERSION 0x0001
48#define DATA_PROVIDER_PIPE "private/sbus-dp"
50#define DP_PATH "/org/freedesktop/sssd/dataprovider"
116#define DP_ERR_DECIDE -1
118#define DP_ERR_OFFLINE 1
119#define DP_ERR_TIMEOUT 2
120#define DP_ERR_FATAL 3
122#define BE_FILTER_NAME 1
123#define BE_FILTER_IDNUM 2
124#define BE_FILTER_ENUM 3
125#define BE_FILTER_SECID 4
126#define BE_FILTER_UUID 5
127#define BE_FILTER_CERT 6
128#define BE_FILTER_WILDCARD 7
129#define BE_FILTER_ADDR 8
131#define DP_SEC_ID "secid"
132#define DP_CERT "cert"
135#define DP_SEC_ID_LEN (sizeof(DP_SEC_ID) - 1)
136#define DP_CERT_LEN (sizeof(DP_CERT) - 1)
138#define DP_WILDCARD "wildcard"
139#define DP_WILDCARD_LEN (sizeof(DP_WILDCARD) - 1)
141#define EXTRA_NAME_IS_UPN "U"
142#define EXTRA_INPUT_MAYBE_WITH_VIEW "V"
145#define SSS_SERVER_INFO 0x80000000
147#define SSS_KRB5_INFO 0x40000000
148#define SSS_LDAP_INFO 0x20000000
149#define SSS_PROXY_INFO 0x10000000
151#define SSS_KRB5_INFO_TGT_LIFETIME (SSS_SERVER_INFO|SSS_KRB5_INFO|0x01)
152#define SSS_KRB5_INFO_UPN (SSS_SERVER_INFO|SSS_KRB5_INFO|0x02)
154bool dp_pack_pam_request(DBusMessage *msg,
struct pam_data *pd);
155bool dp_unpack_pam_request(DBusMessage *msg, TALLOC_CTX *mem_ctx,
156 struct pam_data **new_pd, DBusError *dbus_error);
158bool dp_pack_pam_response(DBusMessage *msg,
struct pam_data *pd);
159bool dp_unpack_pam_response(DBusMessage *msg,
struct pam_data *pd,
160 DBusError *dbus_error);
162void dp_id_callback(DBusPendingCall *pending,
void *ptr);
165int dp_get_sbus_address(TALLOC_CTX *mem_ctx,
166 char **address,
const char *domain_name);
172#define DP_REQ_OPT_FILES_INITGR "files_initgr_request"
176#define NULL_STRING { .string = NULL }
177#define NULL_BLOB { .blob = { NULL, 0 } }
178#define NULL_NUMBER { .number = 0 }
179#define BOOL_FALSE { .boolean = false }
180#define BOOL_TRUE { .boolean = true }
197 struct dp_opt_blob blob;
203 const char *opt_name;
204 enum dp_opt_type type;
205 union dp_opt_value def_val;
206 union dp_opt_value val;
209#define DP_OPTION_TERMINATOR { NULL, 0, NULL_STRING, NULL_STRING }
211void dp_option_inherit(
char **inherit_opt_list,
213 struct dp_option *parent_opts,
214 struct dp_option *subdom_opts);
216int dp_get_options(TALLOC_CTX *memctx,
217 struct confdb_ctx *cdb,
218 const char *conf_path,
219 struct dp_option *def_opts,
221 struct dp_option **_opts);
223int dp_copy_options(TALLOC_CTX *memctx,
224 struct dp_option *src_opts,
226 struct dp_option **_opts);
228int dp_copy_defaults(TALLOC_CTX *memctx,
229 struct dp_option *src_opts,
231 struct dp_option **_opts);
233const char *_dp_opt_get_cstring(
struct dp_option *opts,
234 int id,
const char *location);
235char *_dp_opt_get_string(
struct dp_option *opts,
236 int id,
const char *location);
237struct dp_opt_blob _dp_opt_get_blob(struct dp_option *opts,
238 int id,
const char *location);
239int _dp_opt_get_int(
struct dp_option *opts,
240 int id,
const char *location);
241bool _dp_opt_get_bool(
struct dp_option *opts,
242 int id,
const char *location);
243#define dp_opt_get_cstring(o, i) _dp_opt_get_cstring(o, i, __FUNCTION__)
244#define dp_opt_get_string(o, i) _dp_opt_get_string(o, i, __FUNCTION__)
245#define dp_opt_get_blob(o, i) _dp_opt_get_blob(o, i, __FUNCTION__)
246#define dp_opt_get_int(o, i) _dp_opt_get_int(o, i, __FUNCTION__)
247#define dp_opt_get_bool(o, i) _dp_opt_get_bool(o, i, __FUNCTION__)
249int _dp_opt_set_string(
struct dp_option *opts,
int id,
250 const char *s,
const char *location);
251int _dp_opt_set_blob(
struct dp_option *opts,
int id,
252 struct dp_opt_blob b,
const char *location);
253int _dp_opt_set_int(
struct dp_option *opts,
int id,
254 int i,
const char *location);
255int _dp_opt_set_bool(
struct dp_option *opts,
int id,
256 bool b,
const char *location);
257#define dp_opt_set_string(o, i, v) _dp_opt_set_string(o, i, v, __FUNCTION__)
258#define dp_opt_set_blob(o, i, v) _dp_opt_set_blob(o, i, v, __FUNCTION__)
259#define dp_opt_set_int(o, i, v) _dp_opt_set_int(o, i, v, __FUNCTION__)
260#define dp_opt_set_bool(o, i, v) _dp_opt_set_bool(o, i, v, __FUNCTION__)
266 DP_RES_OPT_FAMILY_ORDER,
267 DP_RES_OPT_RESOLVER_TIMEOUT,
268 DP_RES_OPT_RESOLVER_OP_TIMEOUT,
269 DP_RES_OPT_RESOLVER_SERVER_TIMEOUT,
270 DP_RES_OPT_DNS_DOMAIN,