s3-winbindd: Move idmap_fetch_secret to idmap_utils.c for reuse
[obnox/samba/samba-obnox.git] / source3 / winbindd / idmap_proto.h
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  ID Mapping
4  *
5  *  Copyright (C) Tim Potter 2000
6  *  Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
7  *  Copyright (C) Simo Sorce 2003-2007
8  *  Copyright (C) Jeremy Allison 2006
9  *  Copyright (C) Michael Adam 2009-2010
10  *
11  *  This program is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 3 of the License, or
14  *  (at your option) any later version.
15  *
16  *  This program is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25 #ifndef _WINBINDD_IDMAP_PROTO_H_
26 #define _WINBINDD_IDMAP_PROTO_H_
27
28 /* The following definitions come from winbindd/idmap.c  */
29
30 bool idmap_is_offline(void);
31 bool idmap_is_online(void);
32 NTSTATUS smb_register_idmap(int version, const char *name,
33                             struct idmap_methods *methods);
34 void idmap_close(void);
35 NTSTATUS idmap_allocate_uid(struct unixid *id);
36 NTSTATUS idmap_allocate_gid(struct unixid *id);
37 NTSTATUS idmap_backends_unixid_to_sid(const char *domname,
38                                       struct id_map *id);
39
40 /* The following definitions come from winbindd/idmap_nss.c  */
41
42 NTSTATUS idmap_nss_init(void);
43
44 /* The following definitions come from winbindd/idmap_passdb.c  */
45
46 NTSTATUS idmap_passdb_init(void);
47
48 /* The following definitions come from winbindd/idmap_tdb.c  */
49
50 NTSTATUS idmap_tdb_init(void);
51
52 /* The following definitions come from winbindd/idmap_util.c  */
53
54 NTSTATUS idmap_uid_to_sid(const char *domname, struct dom_sid *sid, uid_t uid);
55 NTSTATUS idmap_gid_to_sid(const char *domname, struct dom_sid *sid, gid_t gid);
56 bool idmap_unix_id_is_in_range(uint32_t id, struct idmap_domain *dom);
57 struct id_map *idmap_find_map_by_id(struct id_map **maps, enum id_type type,
58                                     uint32_t id);
59 struct id_map *idmap_find_map_by_sid(struct id_map **maps, struct dom_sid *sid);
60 char *idmap_fetch_secret(const char *backend, const char *domain,
61                          const char *identity);
62
63 /* max number of ids requested per LDAP batch query */
64 #define IDMAP_LDAP_MAX_IDS 30
65
66 #endif /* _WINBINDD_IDMAP_PROTO_H_ */