s3-winbindd: add and use winbindd_lookup_names().
[Samba.git] / source / winbindd / winbindd_proto.h
blob9203c5a9743b753ec0444792ef1a009e2c8239ab
1 /*
2 * Unix SMB/CIFS implementation.
3 * collected prototypes header
5 * frozen from "make proto" in May 2008
7 * Copyright (C) Michael Adam 2008
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #ifndef _WINBINDD_PROTO_H_
24 #define _WINBINDD_PROTO_H_
27 /* The following definitions come from auth/token_util.c */
29 bool nt_token_check_sid ( const DOM_SID *sid, const NT_USER_TOKEN *token );
30 bool nt_token_check_domain_rid( NT_USER_TOKEN *token, uint32 rid );
31 NT_USER_TOKEN *get_root_nt_token( void );
32 NTSTATUS add_aliases(const DOM_SID *domain_sid,
33 struct nt_user_token *token);
34 struct nt_user_token *create_local_nt_token(TALLOC_CTX *mem_ctx,
35 const DOM_SID *user_sid,
36 bool is_guest,
37 int num_groupsids,
38 const DOM_SID *groupsids);
39 void debug_nt_user_token(int dbg_class, int dbg_lev, NT_USER_TOKEN *token);
40 void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid,
41 int n_groups, gid_t *groups);
43 /* The following definitions come from smbd/connection.c */
45 bool yield_connection(connection_struct *conn, const char *name);
46 int count_current_connections( const char *sharename, bool clear );
47 int count_all_current_connections(void);
48 bool claim_connection(connection_struct *conn, const char *name,
49 uint32 msg_flags);
50 bool register_message_flags(bool doreg, uint32 msg_flags);
51 bool store_pipe_opendb( smb_np_struct *p );
52 bool delete_pipe_opendb( smb_np_struct *p );
54 /* The following definitions come from winbindd/winbindd.c */
56 struct event_context *winbind_event_context(void);
57 struct messaging_context *winbind_messaging_context(void);
58 void add_fd_event(struct winbindd_fd_event *ev);
59 void remove_fd_event(struct winbindd_fd_event *ev);
60 void setup_async_read(struct winbindd_fd_event *event, void *data, size_t length,
61 void (*finished)(void *private_data, bool success),
62 void *private_data);
63 void setup_async_write(struct winbindd_fd_event *event, void *data, size_t length,
64 void (*finished)(void *private_data, bool success),
65 void *private_data);
66 void request_error(struct winbindd_cli_state *state);
67 void request_ok(struct winbindd_cli_state *state);
68 void winbind_check_sighup(const char *lfile);
69 void winbind_check_sigterm(bool in_parent);
70 bool winbindd_use_idmap_cache(void);
71 bool winbindd_use_cache(void);
72 int main(int argc, char **argv, char **envp);
74 /* The following definitions come from winbindd/winbindd_ads.c */
76 /* The following definitions come from winbindd/winbindd_rpc.c */
78 NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
79 struct winbindd_domain *domain,
80 uint32_t num_sids,
81 const struct dom_sid *sids,
82 char ***domains,
83 char ***names,
84 enum lsa_SidType **types);
85 NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
86 struct winbindd_domain *domain,
87 uint32_t num_names,
88 const char **names,
89 const char ***domains,
90 struct dom_sid **sids,
91 enum lsa_SidType **types);
93 /* The following definitions come from winbindd/winbindd_async.c */
95 void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
96 const struct winbindd_request *request,
97 void (*cont)(TALLOC_CTX *mem_ctx, bool success,
98 struct winbindd_response *response,
99 void *c, void *private_data),
100 void *c, void *private_data);
101 void do_async_domain(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
102 const struct winbindd_request *request,
103 void (*cont)(TALLOC_CTX *mem_ctx, bool success,
104 struct winbindd_response *response,
105 void *c, void *private_data),
106 void *c, void *private_data);
107 void winbindd_lookupsid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
108 void (*cont)(void *private_data, bool success,
109 const char *dom_name,
110 const char *name,
111 enum lsa_SidType type),
112 void *private_data);
113 enum winbindd_result winbindd_dual_lookupsid(struct winbindd_domain *domain,
114 struct winbindd_cli_state *state);
115 void winbindd_lookupname_async(TALLOC_CTX *mem_ctx,
116 const char *dom_name, const char *name,
117 void (*cont)(void *private_data, bool success,
118 const DOM_SID *sid,
119 enum lsa_SidType type),
120 enum winbindd_cmd orig_cmd,
121 void *private_data);
122 enum winbindd_result winbindd_dual_lookupname(struct winbindd_domain *domain,
123 struct winbindd_cli_state *state);
124 void winbindd_listent_async(TALLOC_CTX *mem_ctx,
125 struct winbindd_domain *domain,
126 void (*cont)(void *private_data, bool success,
127 fstring dom_name, char* extra_data),
128 void *private_data, enum ent_type type);
129 enum winbindd_result winbindd_dual_list_users(struct winbindd_domain *domain,
130 struct winbindd_cli_state *state);
131 enum winbindd_result winbindd_dual_list_groups(struct winbindd_domain *domain,
132 struct winbindd_cli_state *state);
133 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
134 size_t num_sids, char **result, ssize_t *len);
135 enum winbindd_result winbindd_dual_lookuprids(struct winbindd_domain *domain,
136 struct winbindd_cli_state *state);
137 void winbindd_getsidaliases_async(struct winbindd_domain *domain,
138 TALLOC_CTX *mem_ctx,
139 const DOM_SID *sids, size_t num_sids,
140 void (*cont)(void *private_data,
141 bool success,
142 const DOM_SID *aliases,
143 size_t num_aliases),
144 void *private_data);
145 enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain,
146 struct winbindd_cli_state *state);
147 void winbindd_gettoken_async(TALLOC_CTX *mem_ctx, const DOM_SID *user_sid,
148 void (*cont)(void *private_data, bool success,
149 DOM_SID *sids, size_t num_sids),
150 void *private_data);
151 void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
152 const DOM_SID *sid,
153 void (*cont)(void *private_data, bool success,
154 const char *acct_name,
155 const char *full_name,
156 const char *homedir,
157 const char *shell,
158 gid_t gid,
159 uint32 group_rid),
160 void *private_data);
162 /* The following definitions come from winbindd/winbindd_cache.c */
164 void winbindd_check_cache_size(time_t t);
165 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
166 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
167 NTSTATUS wcache_get_creds(struct winbindd_domain *domain,
168 TALLOC_CTX *mem_ctx,
169 const DOM_SID *sid,
170 const uint8 **cached_nt_pass,
171 const uint8 **cached_salt);
172 NTSTATUS wcache_save_creds(struct winbindd_domain *domain,
173 TALLOC_CTX *mem_ctx,
174 const DOM_SID *sid,
175 const uint8 nt_pass[NT_HASH_LEN]);
176 void wcache_invalidate_samlogon(struct winbindd_domain *domain,
177 struct netr_SamInfo3 *info3);
178 bool wcache_invalidate_cache(void);
179 bool init_wcache(void);
180 bool initialize_winbindd_cache(void);
181 void close_winbindd_cache(void);
182 void cache_store_response(pid_t pid, struct winbindd_response *response);
183 bool cache_retrieve_response(pid_t pid, struct winbindd_response * response);
184 void cache_cleanup_response(pid_t pid);
185 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
186 char **domain_name, char **name,
187 enum lsa_SidType *type);
188 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
189 const char *domain_name,
190 const char *name,
191 DOM_SID *sid,
192 enum lsa_SidType *type);
193 void cache_name2sid(struct winbindd_domain *domain,
194 const char *domain_name, const char *name,
195 enum lsa_SidType type, const DOM_SID *sid);
196 void wcache_flush_cache(void);
197 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
198 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
199 bool set_global_winbindd_state_offline(void);
200 void set_global_winbindd_state_online(void);
201 bool get_global_winbindd_state_offline(void);
202 int winbindd_validate_cache(void);
203 int winbindd_validate_cache_nobackup(void);
204 bool winbindd_cache_validate_and_initialize(void);
205 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
206 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
207 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
208 void wcache_tdc_clear( void );
209 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain,
210 const DOM_SID *user_sid,
211 TALLOC_CTX *ctx,
212 ADS_STRUCT *ads, LDAPMessage *msg,
213 char **homedir, char **shell, char **gecos,
214 gid_t *p_gid);
216 /* The following definitions come from winbindd/winbindd_ccache_access.c */
218 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
219 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
220 struct winbindd_cli_state *state);
222 /* The following definitions come from winbindd/winbindd_cm.c */
224 void set_domain_offline(struct winbindd_domain *domain);
225 void set_domain_online_request(struct winbindd_domain *domain);
226 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
227 const char *server,
228 NTSTATUS result);
229 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
230 void close_conns_after_fork(void);
231 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
232 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
233 struct rpc_pipe_client **cli, POLICY_HND *sam_handle);
234 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
235 struct rpc_pipe_client **cli, POLICY_HND *lsa_policy);
236 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
237 struct rpc_pipe_client **cli);
239 /* The following definitions come from winbindd/winbindd_cred_cache.c */
241 bool ccache_entry_exists(const char *username);
242 bool ccache_entry_identical(const char *username,
243 uid_t uid,
244 const char *ccname);
245 void ccache_remove_all_after_fork(void);
246 void ccache_regain_all_now(void);
247 NTSTATUS add_ccache_to_list(const char *princ_name,
248 const char *ccname,
249 const char *service,
250 const char *username,
251 const char *realm,
252 uid_t uid,
253 time_t create_time,
254 time_t ticket_end,
255 time_t renew_until,
256 bool postponed_request);
257 NTSTATUS remove_ccache(const char *username);
258 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
259 NTSTATUS winbindd_add_memory_creds(const char *username,
260 uid_t uid,
261 const char *pass);
262 NTSTATUS winbindd_delete_memory_creds(const char *username);
263 NTSTATUS winbindd_replace_memory_creds(const char *username,
264 const char *pass);
266 /* The following definitions come from winbindd/winbindd_creds.c */
268 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
269 TALLOC_CTX *mem_ctx,
270 const DOM_SID *sid,
271 struct netr_SamInfo3 **info3,
272 const uint8 *cached_nt_pass[NT_HASH_LEN],
273 const uint8 *cred_salt[NT_HASH_LEN]);
274 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
275 TALLOC_CTX *mem_ctx,
276 const char *user,
277 const char *pass,
278 struct netr_SamInfo3 *info3,
279 const DOM_SID *user_sid);
280 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
281 TALLOC_CTX *mem_ctx,
282 const char *user,
283 const char *pass,
284 struct netr_SamInfo3 *info3);
285 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
286 TALLOC_CTX *mem_ctx,
287 const DOM_SID *sid,
288 const char *pass);
289 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
290 TALLOC_CTX *mem_ctx,
291 const char *user,
292 const char *pass);
294 /* The following definitions come from winbindd/winbindd_domain.c */
296 void setup_domain_child(struct winbindd_domain *domain,
297 struct winbindd_child *child);
299 /* The following definitions come from winbindd/winbindd_dual.c */
301 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
302 struct winbindd_request *request,
303 struct winbindd_response *response,
304 void (*continuation)(void *private_data, bool success),
305 void *private_data);
306 void async_domain_request(TALLOC_CTX *mem_ctx,
307 struct winbindd_domain *domain,
308 struct winbindd_request *request,
309 struct winbindd_response *response,
310 void (*continuation)(void *private_data_data, bool success),
311 void *private_data_data);
312 void sendto_child(struct winbindd_cli_state *state,
313 struct winbindd_child *child);
314 void sendto_domain(struct winbindd_cli_state *state,
315 struct winbindd_domain *domain);
316 void setup_child(struct winbindd_child *child,
317 const struct winbindd_child_dispatch_table *table,
318 const char *logprefix,
319 const char *logname);
320 void winbind_child_died(pid_t pid);
321 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
322 void winbind_msg_debug(struct messaging_context *msg_ctx,
323 void *private_data,
324 uint32_t msg_type,
325 struct server_id server_id,
326 DATA_BLOB *data);
327 void winbind_msg_offline(struct messaging_context *msg_ctx,
328 void *private_data,
329 uint32_t msg_type,
330 struct server_id server_id,
331 DATA_BLOB *data);
332 void winbind_msg_online(struct messaging_context *msg_ctx,
333 void *private_data,
334 uint32_t msg_type,
335 struct server_id server_id,
336 DATA_BLOB *data);
337 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
338 void *private_data,
339 uint32_t msg_type,
340 struct server_id server_id,
341 DATA_BLOB *data);
342 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
343 void *private_data,
344 uint32_t msg_type,
345 struct server_id server_id,
346 DATA_BLOB *data);
347 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
348 void *private_data,
349 uint32_t msg_type,
350 struct server_id server_id,
351 DATA_BLOB *data);
352 bool winbindd_reinit_after_fork(const char *logfilename);
354 /* The following definitions come from winbindd/winbindd_group.c */
356 void winbindd_getgrnam(struct winbindd_cli_state *state);
357 void winbindd_getgrgid(struct winbindd_cli_state *state);
358 void winbindd_setgrent(struct winbindd_cli_state *state);
359 void winbindd_endgrent(struct winbindd_cli_state *state);
360 void winbindd_getgrent(struct winbindd_cli_state *state);
361 void winbindd_list_groups(struct winbindd_cli_state *state);
362 void winbindd_getgroups(struct winbindd_cli_state *state);
363 void winbindd_getusersids(struct winbindd_cli_state *state);
364 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
365 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
366 struct winbindd_cli_state *state);
367 bool get_sam_group_entries(struct getent_state *ent);
370 /* The following definitions come from winbindd/winbindd_idmap.c */
372 void init_idmap_child(void);
373 struct winbindd_child *idmap_child(void);
374 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
375 void (*cont)(void *private_data, bool success),
376 void *private_data);
377 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
378 struct winbindd_cli_state *state);
379 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
380 void (*cont)(void *private_data, bool success),
381 void *private_data);
382 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
383 struct winbindd_cli_state *state);
384 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
385 void (*cont)(void *private_data, bool success),
386 void *private_data);
387 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
388 struct winbindd_cli_state *state);
389 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
390 void (*cont)(void *private_data, bool success, void *data, int len),
391 void *private_data);
392 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
393 struct winbindd_cli_state *state);
394 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
395 void (*cont)(void *private_data, bool success, uid_t uid),
396 void *private_data);
397 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
398 struct winbindd_cli_state *state);
399 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
400 void (*cont)(void *private_data, bool success, gid_t gid),
401 void *private_data);
402 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
403 struct winbindd_cli_state *state);
404 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
405 void (*cont)(void *private_data, bool success, const char *sid),
406 void *private_data);
407 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
408 struct winbindd_cli_state *state);
409 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
410 void (*cont)(void *private_data, bool success, const char *sid),
411 void *private_data);
412 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
413 struct winbindd_cli_state *state);
415 /* The following definitions come from winbindd/winbindd_locator.c */
417 void init_locator_child(void);
418 struct winbindd_child *locator_child(void);
419 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
421 /* The following definitions come from winbindd/winbindd_misc.c */
423 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
424 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
425 struct winbindd_cli_state *state);
426 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
427 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
428 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
429 struct winbindd_cli_state *state);
430 void winbindd_getdcname(struct winbindd_cli_state *state);
431 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
432 struct winbindd_cli_state *state);
433 void winbindd_show_sequence(struct winbindd_cli_state *state);
434 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
435 struct winbindd_cli_state *state);
436 void winbindd_domain_info(struct winbindd_cli_state *state);
437 void winbindd_ping(struct winbindd_cli_state *state);
438 void winbindd_info(struct winbindd_cli_state *state);
439 void winbindd_interface_version(struct winbindd_cli_state *state);
440 void winbindd_domain_name(struct winbindd_cli_state *state);
441 void winbindd_netbios_name(struct winbindd_cli_state *state);
442 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
444 /* The following definitions come from winbindd/winbindd_ndr.c */
446 void ndr_print_winbindd_child(struct ndr_print *ndr,
447 const char *name,
448 const struct winbindd_child *r);
449 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
450 const char *name,
451 const struct winbindd_cm_conn *r);
452 void ndr_print_winbindd_methods(struct ndr_print *ndr,
453 const char *name,
454 const struct winbindd_methods *r);
455 void ndr_print_winbindd_domain(struct ndr_print *ndr,
456 const char *name,
457 const struct winbindd_domain *r);
459 /* The following definitions come from winbindd/winbindd_pam.c */
461 struct winbindd_domain *find_auth_domain(struct winbindd_cli_state *state,
462 const char *domain_name);
463 void winbindd_pam_auth(struct winbindd_cli_state *state);
464 NTSTATUS winbindd_dual_pam_auth_cached(struct winbindd_domain *domain,
465 struct winbindd_cli_state *state,
466 struct netr_SamInfo3 **info3);
467 NTSTATUS winbindd_dual_pam_auth_kerberos(struct winbindd_domain *domain,
468 struct winbindd_cli_state *state,
469 struct netr_SamInfo3 **info3);
470 NTSTATUS winbindd_dual_pam_auth_samlogon(struct winbindd_domain *domain,
471 struct winbindd_cli_state *state,
472 struct netr_SamInfo3 **info3);
473 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
474 struct winbindd_cli_state *state) ;
475 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
476 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
477 struct winbindd_cli_state *state) ;
478 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
479 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
480 struct winbindd_cli_state *state);
481 void winbindd_pam_logoff(struct winbindd_cli_state *state);
482 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
483 struct winbindd_cli_state *state) ;
484 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
485 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
487 /* The following definitions come from winbindd/winbindd_passdb.c */
490 /* The following definitions come from winbindd/winbindd_reconnect.c */
493 /* The following definitions come from winbindd/winbindd_sid.c */
495 void winbindd_lookupsid(struct winbindd_cli_state *state);
496 void winbindd_lookupname(struct winbindd_cli_state *state);
497 void winbindd_lookuprids(struct winbindd_cli_state *state);
498 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
499 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
500 void winbindd_sids_to_unixids(struct winbindd_cli_state *state);
501 void winbindd_set_mapping(struct winbindd_cli_state *state);
502 void winbindd_remove_mapping(struct winbindd_cli_state *state);
503 void winbindd_set_hwm(struct winbindd_cli_state *state);
504 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
505 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
506 void winbindd_allocate_uid(struct winbindd_cli_state *state);
507 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
508 struct winbindd_cli_state *state);
509 void winbindd_allocate_gid(struct winbindd_cli_state *state);
510 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
511 struct winbindd_cli_state *state);
513 /* The following definitions come from winbindd/winbindd_user.c */
515 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
516 struct winbindd_cli_state *state);
517 void winbindd_getpwnam(struct winbindd_cli_state *state);
518 void winbindd_getpwuid(struct winbindd_cli_state *state);
519 void winbindd_setpwent(struct winbindd_cli_state *state);
520 void winbindd_endpwent(struct winbindd_cli_state *state);
521 void winbindd_getpwent(struct winbindd_cli_state *state);
522 void winbindd_list_users(struct winbindd_cli_state *state);
524 /* The following definitions come from winbindd/winbindd_util.c */
526 struct winbindd_domain *domain_list(void);
527 void free_domain_list(void);
528 void rescan_trusted_domains( void );
529 enum winbindd_result init_child_connection(struct winbindd_domain *domain,
530 void (*continuation)(void *private_data,
531 bool success),
532 void *private_data);
533 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
534 struct winbindd_cli_state *state);
535 bool init_domain_list(void);
536 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
537 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
538 struct winbindd_domain *find_domain_from_name(const char *domain_name);
539 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
540 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
541 struct winbindd_domain *find_our_domain(void);
542 struct winbindd_domain *find_root_domain(void);
543 struct winbindd_domain *find_builtin_domain(void);
544 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
545 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
546 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
547 enum winbindd_cmd orig_cmd,
548 struct winbindd_domain *domain,
549 const char *domain_name,
550 const char *name, DOM_SID *sid,
551 enum lsa_SidType *type);
552 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
553 struct winbindd_domain *domain,
554 DOM_SID *sid,
555 char **dom_name,
556 char **name,
557 enum lsa_SidType *type);
558 void free_getent_state(struct getent_state *state);
559 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
560 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
561 char **domain, char **user);
562 void parse_add_domuser(void *buf, char *domuser, int *len);
563 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
564 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
565 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
566 const char *domain,
567 const char *user,
568 bool can_assume);
569 const char *get_winbind_pipe_dir(void) ;
570 char *get_winbind_priv_pipe_dir(void) ;
571 int open_winbindd_socket(void);
572 int open_winbindd_priv_socket(void);
573 void close_winbindd_socket(void);
574 struct winbindd_cli_state *winbindd_client_list(void);
575 void winbindd_add_client(struct winbindd_cli_state *cli);
576 void winbindd_remove_client(struct winbindd_cli_state *cli);
577 void winbindd_kill_all_clients(void);
578 int winbindd_num_clients(void);
579 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
580 TALLOC_CTX *mem_ctx,
581 const DOM_SID *user_sid,
582 uint32 *p_num_groups, DOM_SID **user_sids);
584 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
585 struct winbindd_domain *domain,
586 char *name,
587 char **normalized);
588 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
589 char *name,
590 char **normalized);
592 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
593 struct winbindd_domain *domain,
594 const char *name, char **alias);
595 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
596 struct winbindd_domain *domain,
597 const char *alias, char **name);
599 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
600 bool winbindd_internal_child(struct winbindd_child *child);
601 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
602 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
603 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
604 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
605 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
607 /* The following definitions come from winbindd/winbindd_wins.c */
609 void winbindd_wins_byip(struct winbindd_cli_state *state);
610 void winbindd_wins_byname(struct winbindd_cli_state *state);
612 #endif /* _WINBINDD_PROTO_H_ */