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
|
/*
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 <http://www.gnu.org/licenses/>.
*/
#ifndef __FILES_PRIVATE_H_
#define __FILES_PRIVATE_H_
#include "config.h"
#include <talloc.h>
#include <tevent.h>
#include <errno.h>
#include <sys/types.h>
#include <nss.h>
#include <pwd.h>
#include <grp.h>
#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_ */
|