/*
SSSD
Async LDAP Helper routines
Copyright (C) Simo Sorce <ssorce@redhat.com>
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 _SDAP_ASYNC_PRIVATE_H_
#define _SDAP_ASYNC_PRIVATE_H_
#include "config.h"
#include "util/sss_krb5.h"
#include "providers/ldap/sdap_async.h"
struct dn_item {
const char *dn;
/* Parent netgroup containing this record */
char *cn;
};
struct ldb_message **res,
bool *all_resolved);
struct tevent_context *ev);
struct tevent_context *ev,
struct sdap_options *opts,
struct sdap_handle *sh);
struct sysdb_attrs **rootdse);
/* from sdap_child_helpers.c */
struct tevent_context *ev,
const char *realm_str,
const char *princ_str,
const char *keytab_name,
int timeout);
int *result,
char **ccname,
struct sss_domain_info *dom,
struct sdap_options *opts,
struct sysdb_attrs **users,
int num_users,
struct sysdb_attrs *mapped_attrs,
char **_usn_value);
struct sss_domain_info *domain,
struct sdap_options *opts,
const char *name,
enum sysdb_member_type type,
char **sysdb_grouplist,
struct sysdb_attrs **ldap_groups,
int ldap_groups_count);
struct sss_domain_info *domain,
const char *name,
char ***grouplist);
struct sss_domain_info *domain,
const char *name,
char ***grouplist);
/* from sdap_async_nested_groups.c */
struct tevent_context *ev,
struct sdap_domain *sdom,
struct sdap_options *opts,
struct sdap_handle *sh,
struct sysdb_attrs *group);
struct tevent_req *req,
unsigned long *_num_users,
struct sysdb_attrs ***_users,
unsigned long *_num_groups,
struct sysdb_attrs ***_groups,
struct tevent_req *
struct tevent_context *ev,
struct sss_domain_info *group_dom,
struct sdap_ext_member_ctx *ext_ctx,
struct tevent_req *req);
/* from sdap_async_initgroups.c */
struct sss_domain_info *domain,
struct sdap_options *opts,
char **sysdb_groupnames,
struct sysdb_attrs **ldap_groups,
int ldap_groups_count);
/* from sdap_ad_groups.c */
struct sdap_options *opts,
struct sysdb_attrs *group_attrs,
const char *group_name,
bool *_need_filter);
struct tevent_req *rfc2307bis_nested_groups_send(
struct sdap_search_base **search_bases,
struct sss_domain_info *domain,
struct sdap_options *opts,
struct sysdb_attrs **groups,
unsigned long count);
struct tevent_req *
struct tevent_context *ev,
struct sdap_domain *local_sdom,
struct sdap_options *opts,
struct sss_domain_info *dom,
struct sysdb_attrs **groups,
#endif /* _SDAP_ASYNC_PRIVATE_H_ */