idmap: Remove "domname" from idmap_backends_unixid_to_sid
[Samba.git] / source3 / winbindd / idmap_proto.h
blob159aac603073df9f80e2b3e74d1c6665794dd3b7
1 /*
2 * Unix SMB/CIFS implementation.
3 * ID Mapping
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
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.
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.
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/>.
25 #ifndef _WINBINDD_IDMAP_PROTO_H_
26 #define _WINBINDD_IDMAP_PROTO_H_
28 /* The following definitions come from winbindd/idmap.c */
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(struct id_map *id);
39 /* The following definitions come from winbindd/idmap_nss.c */
41 NTSTATUS idmap_nss_init(void);
43 /* The following definitions come from winbindd/idmap_passdb.c */
45 NTSTATUS idmap_passdb_init(void);
47 /* The following definitions come from winbindd/idmap_tdb.c */
49 NTSTATUS idmap_tdb_init(void);
51 /* The following definitions come from winbindd/idmap_util.c */
53 NTSTATUS idmap_uid_to_sid(const char *domname, struct dom_sid *sid, uid_t uid);
54 NTSTATUS idmap_gid_to_sid(const char *domname, struct dom_sid *sid, gid_t gid);
55 bool idmap_unix_id_is_in_range(uint32_t id, struct idmap_domain *dom);
56 struct id_map *idmap_find_map_by_id(struct id_map **maps, enum id_type type,
57 uint32_t id);
58 struct id_map *idmap_find_map_by_sid(struct id_map **maps, struct dom_sid *sid);
59 char *idmap_fetch_secret(const char *backend, const char *domain,
60 const char *identity);
62 /* max number of ids requested per LDAP batch query */
63 #define IDMAP_LDAP_MAX_IDS 30
65 #endif /* _WINBINDD_IDMAP_PROTO_H_ */