/*
SSSD
Files provider declarations
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 .
*/
#ifndef __FILES_PRIVATE_H_
#define __FILES_PRIVATE_H_
#include "config.h"
#include
#include
#include
#include
#include
#include
#include
#include "providers/data_provider/dp.h"
enum refresh_task_status {
REFRESH_NOT_RUNNIG = 0,
REFRESH_WAITING_TO_START,
REFRESH_ACTIVE
};
struct files_id_ctx {
struct be_ctx *be;
struct sss_domain_info *domain;
struct files_ctx *fctx;
struct sss_certmap_ctx *sss_certmap_ctx;
const char **passwd_files;
const char **group_files;
struct files_refresh_ctx *refresh_ctx;
struct tevent_req *users_req;
struct tevent_req *groups_req;
struct tevent_req *initgroups_req;
};
/* files_ops.c */
struct files_ctx *sf_init(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
const char **passwd_files,
const char **group_files,
struct files_id_ctx *id_ctx);
errno_t sf_add_certmap_req(struct files_refresh_ctx *refresh_ctx,
struct tevent_req *req);
/* files_id.c */
void handle_certmap(struct tevent_req *req);
struct tevent_req *
files_account_info_handler_send(TALLOC_CTX *mem_ctx,
struct files_id_ctx *id_ctx,
struct dp_id_data *data,
struct dp_req_params *params);
errno_t files_account_info_handler_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
struct dp_reply_std *data);
void files_account_info_finished(struct files_id_ctx *id_ctx,
int req_type,
errno_t ret);
/* files_auth.c */
struct tevent_req *files_auth_handler_send(TALLOC_CTX *mem_ctx,
void *unused,
struct pam_data *pd,
struct dp_req_params *params);
errno_t files_auth_handler_recv(TALLOC_CTX *mem_ctx,
struct tevent_req *req,
struct pam_data **_data);
/* files_certmap.c */
errno_t files_init_certmap(TALLOC_CTX *mem_ctx, struct files_id_ctx *id_ctx);
errno_t files_map_cert_to_user(struct files_id_ctx *id_ctx,
struct dp_id_data *data);
#endif /* __FILES_PRIVATE_H_ */