Remove unused init_child_connection()
[Samba.git] / source3 / winbindd / winbindd_proto.h
blobac0f71e148fdce8340f01828dd852a4f15dcc179
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);
52 /* The following definitions come from winbindd/winbindd.c */
54 struct event_context *winbind_event_context(void);
55 struct messaging_context *winbind_messaging_context(void);
56 void request_error(struct winbindd_cli_state *state);
57 void request_ok(struct winbindd_cli_state *state);
58 bool winbindd_setup_sig_term_handler(bool parent);
59 bool winbindd_setup_sig_hup_handler(const char *lfile);
60 bool winbindd_use_idmap_cache(void);
61 bool winbindd_use_cache(void);
62 int main(int argc, char **argv, char **envp);
64 /* The following definitions come from winbindd/winbindd_ads.c */
67 /* The following definitions come from winbindd/winbindd_async.c */
69 void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
70 const struct winbindd_request *request,
71 void (*cont)(TALLOC_CTX *mem_ctx, bool success,
72 struct winbindd_response *response,
73 void *c, void *private_data),
74 void *c, void *private_data);
75 void winbindd_lookupsid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
76 void (*cont)(void *private_data, bool success,
77 const char *dom_name,
78 const char *name,
79 enum lsa_SidType type),
80 void *private_data);
81 enum winbindd_result winbindd_dual_lookupsid(struct winbindd_domain *domain,
82 struct winbindd_cli_state *state);
83 void winbindd_lookupname_async(TALLOC_CTX *mem_ctx,
84 const char *dom_name, const char *name,
85 void (*cont)(void *private_data, bool success,
86 const DOM_SID *sid,
87 enum lsa_SidType type),
88 enum winbindd_cmd orig_cmd,
89 void *private_data);
90 enum winbindd_result winbindd_dual_lookupname(struct winbindd_domain *domain,
91 struct winbindd_cli_state *state);
92 void winbindd_listent_async(TALLOC_CTX *mem_ctx,
93 struct winbindd_domain *domain,
94 void (*cont)(void *private_data, bool success,
95 fstring dom_name, char* extra_data),
96 void *private_data, enum ent_type type);
97 enum winbindd_result winbindd_dual_list_users(struct winbindd_domain *domain,
98 struct winbindd_cli_state *state);
99 enum winbindd_result winbindd_dual_list_groups(struct winbindd_domain *domain,
100 struct winbindd_cli_state *state);
101 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
102 size_t num_sids, char **result, ssize_t *len);
103 bool parse_sidlist(TALLOC_CTX *mem_ctx, char *sidstr,
104 DOM_SID **sids, size_t *num_sids);
105 enum winbindd_result winbindd_dual_lookuprids(struct winbindd_domain *domain,
106 struct winbindd_cli_state *state);
107 void winbindd_getsidaliases_async(struct winbindd_domain *domain,
108 TALLOC_CTX *mem_ctx,
109 const DOM_SID *sids, size_t num_sids,
110 void (*cont)(void *private_data,
111 bool success,
112 const DOM_SID *aliases,
113 size_t num_aliases),
114 void *private_data);
115 enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain,
116 struct winbindd_cli_state *state);
117 void winbindd_gettoken_async(TALLOC_CTX *mem_ctx, const DOM_SID *user_sid,
118 void (*cont)(void *private_data, bool success,
119 DOM_SID *sids, size_t num_sids),
120 void *private_data);
121 void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
122 const DOM_SID *sid,
123 void (*cont)(void *private_data, bool success,
124 const char *acct_name,
125 const char *full_name,
126 const char *homedir,
127 const char *shell,
128 gid_t gid,
129 uint32 group_rid),
130 void *private_data);
132 /* The following definitions come from winbindd/winbindd_cache.c */
134 void winbindd_check_cache_size(time_t t);
135 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
136 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
137 NTSTATUS wcache_get_creds(struct winbindd_domain *domain,
138 TALLOC_CTX *mem_ctx,
139 const DOM_SID *sid,
140 const uint8 **cached_nt_pass,
141 const uint8 **cached_salt);
142 NTSTATUS wcache_save_creds(struct winbindd_domain *domain,
143 TALLOC_CTX *mem_ctx,
144 const DOM_SID *sid,
145 const uint8 nt_pass[NT_HASH_LEN]);
146 void wcache_invalidate_samlogon(struct winbindd_domain *domain,
147 struct netr_SamInfo3 *info3);
148 bool wcache_invalidate_cache(void);
149 bool init_wcache(void);
150 bool initialize_winbindd_cache(void);
151 void close_winbindd_cache(void);
152 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
153 char **domain_name, char **name,
154 enum lsa_SidType *type);
155 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
156 const char *domain_name,
157 const char *name,
158 DOM_SID *sid,
159 enum lsa_SidType *type);
160 void cache_name2sid(struct winbindd_domain *domain,
161 const char *domain_name, const char *name,
162 enum lsa_SidType type, const DOM_SID *sid);
163 void wcache_flush_cache(void);
164 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
165 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
166 bool set_global_winbindd_state_offline(void);
167 void set_global_winbindd_state_online(void);
168 bool get_global_winbindd_state_offline(void);
169 int winbindd_validate_cache(void);
170 int winbindd_validate_cache_nobackup(void);
171 bool winbindd_cache_validate_and_initialize(void);
172 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
173 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
174 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
175 void wcache_tdc_clear( void );
176 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain,
177 const DOM_SID *user_sid,
178 TALLOC_CTX *ctx,
179 ADS_STRUCT *ads, LDAPMessage *msg,
180 char **homedir, char **shell, char **gecos,
181 gid_t *p_gid);
183 /* The following definitions come from winbindd/winbindd_ccache_access.c */
185 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
186 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
187 struct winbindd_cli_state *state);
189 /* The following definitions come from winbindd/winbindd_cm.c */
191 void set_domain_offline(struct winbindd_domain *domain);
192 void set_domain_online_request(struct winbindd_domain *domain);
193 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
194 const char *server,
195 NTSTATUS result);
196 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
197 void close_conns_after_fork(void);
198 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
199 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
200 struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
201 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
202 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
203 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
204 struct rpc_pipe_client **cli);
206 /* The following definitions come from winbindd/winbindd_cred_cache.c */
208 bool ccache_entry_exists(const char *username);
209 bool ccache_entry_identical(const char *username,
210 uid_t uid,
211 const char *ccname);
212 void ccache_remove_all_after_fork(void);
213 void ccache_regain_all_now(void);
214 NTSTATUS add_ccache_to_list(const char *princ_name,
215 const char *ccname,
216 const char *service,
217 const char *username,
218 const char *realm,
219 uid_t uid,
220 time_t create_time,
221 time_t ticket_end,
222 time_t renew_until,
223 bool postponed_request);
224 NTSTATUS remove_ccache(const char *username);
225 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
226 NTSTATUS winbindd_add_memory_creds(const char *username,
227 uid_t uid,
228 const char *pass);
229 NTSTATUS winbindd_delete_memory_creds(const char *username);
230 NTSTATUS winbindd_replace_memory_creds(const char *username,
231 const char *pass);
233 /* The following definitions come from winbindd/winbindd_creds.c */
235 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
236 TALLOC_CTX *mem_ctx,
237 const DOM_SID *sid,
238 struct netr_SamInfo3 **info3,
239 const uint8 *cached_nt_pass[NT_HASH_LEN],
240 const uint8 *cred_salt[NT_HASH_LEN]);
241 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
242 TALLOC_CTX *mem_ctx,
243 const char *user,
244 const char *pass,
245 struct netr_SamInfo3 *info3,
246 const DOM_SID *user_sid);
247 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
248 TALLOC_CTX *mem_ctx,
249 const char *user,
250 const char *pass,
251 struct netr_SamInfo3 *info3);
252 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
253 TALLOC_CTX *mem_ctx,
254 const DOM_SID *sid,
255 const char *pass);
256 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
257 TALLOC_CTX *mem_ctx,
258 const char *user,
259 const char *pass);
261 /* The following definitions come from winbindd/winbindd_domain.c */
263 void setup_domain_child(struct winbindd_domain *domain,
264 struct winbindd_child *child);
266 /* The following definitions come from winbindd/winbindd_dual.c */
268 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
269 struct tevent_context *ev,
270 struct winbindd_child *child,
271 struct winbindd_request *request);
272 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
273 struct winbindd_response **presponse, int *err);
274 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
275 struct tevent_context *ev,
276 struct winbindd_domain *domain,
277 struct winbindd_request *request);
278 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
279 struct winbindd_response **presponse, int *err);
281 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
282 struct winbindd_request *request,
283 struct winbindd_response *response,
284 void (*continuation)(void *private_data, bool success),
285 void *private_data);
286 void async_domain_request(TALLOC_CTX *mem_ctx,
287 struct winbindd_domain *domain,
288 struct winbindd_request *request,
289 struct winbindd_response *response,
290 void (*continuation)(void *private_data_data, bool success),
291 void *private_data_data);
292 void sendto_child(struct winbindd_cli_state *state,
293 struct winbindd_child *child);
294 void sendto_domain(struct winbindd_cli_state *state,
295 struct winbindd_domain *domain);
296 void setup_child(struct winbindd_child *child,
297 const struct winbindd_child_dispatch_table *table,
298 const char *logprefix,
299 const char *logname);
300 void winbind_child_died(pid_t pid);
301 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
302 void winbind_msg_debug(struct messaging_context *msg_ctx,
303 void *private_data,
304 uint32_t msg_type,
305 struct server_id server_id,
306 DATA_BLOB *data);
307 void winbind_msg_offline(struct messaging_context *msg_ctx,
308 void *private_data,
309 uint32_t msg_type,
310 struct server_id server_id,
311 DATA_BLOB *data);
312 void winbind_msg_online(struct messaging_context *msg_ctx,
313 void *private_data,
314 uint32_t msg_type,
315 struct server_id server_id,
316 DATA_BLOB *data);
317 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
318 void *private_data,
319 uint32_t msg_type,
320 struct server_id server_id,
321 DATA_BLOB *data);
322 void winbind_msg_dump_event_list(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_dump_domain_list(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 bool winbindd_reinit_after_fork(const char *logfilename);
334 /* The following definitions come from winbindd/winbindd_group.c */
336 void winbindd_getgrnam(struct winbindd_cli_state *state);
337 void winbindd_getgrgid(struct winbindd_cli_state *state);
338 void winbindd_setgrent(struct winbindd_cli_state *state);
339 void winbindd_endgrent(struct winbindd_cli_state *state);
340 void winbindd_getgrent(struct winbindd_cli_state *state);
341 void winbindd_list_groups(struct winbindd_cli_state *state);
342 void winbindd_getgroups(struct winbindd_cli_state *state);
343 void winbindd_getusersids(struct winbindd_cli_state *state);
344 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
345 void winbindd_getsidaliases(struct winbindd_cli_state *state);
346 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
347 struct winbindd_cli_state *state);
348 bool get_sam_group_entries(struct getent_state *ent);
351 /* The following definitions come from winbindd/winbindd_idmap.c */
353 void init_idmap_child(void);
354 struct winbindd_child *idmap_child(void);
355 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
356 void (*cont)(void *private_data, bool success),
357 void *private_data);
358 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
359 struct winbindd_cli_state *state);
360 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
361 void (*cont)(void *private_data, bool success),
362 void *private_data);
363 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
364 struct winbindd_cli_state *state);
365 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
366 void (*cont)(void *private_data, bool success),
367 void *private_data);
368 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
369 struct winbindd_cli_state *state);
370 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
371 void (*cont)(void *private_data, bool success, void *data, int len),
372 void *private_data);
373 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
374 struct winbindd_cli_state *state);
375 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
376 void (*cont)(void *private_data, bool success, uid_t uid),
377 void *private_data);
378 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
379 struct winbindd_cli_state *state);
380 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
381 void (*cont)(void *private_data, bool success, gid_t gid),
382 void *private_data);
383 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
384 struct winbindd_cli_state *state);
385 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
386 void (*cont)(void *private_data, bool success, const char *sid),
387 void *private_data);
388 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
389 struct winbindd_cli_state *state);
390 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
391 void (*cont)(void *private_data, bool success, const char *sid),
392 void *private_data);
393 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
394 struct winbindd_cli_state *state);
396 /* The following definitions come from winbindd/winbindd_locator.c */
398 void init_locator_child(void);
399 struct winbindd_child *locator_child(void);
400 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
402 /* The following definitions come from winbindd/winbindd_misc.c */
404 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
405 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
406 struct winbindd_cli_state *state);
407 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
408 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
409 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
410 struct winbindd_cli_state *state);
411 void winbindd_getdcname(struct winbindd_cli_state *state);
412 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
413 struct winbindd_cli_state *state);
414 void winbindd_show_sequence(struct winbindd_cli_state *state);
415 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
416 struct winbindd_cli_state *state);
417 void winbindd_domain_info(struct winbindd_cli_state *state);
418 void winbindd_ping(struct winbindd_cli_state *state);
419 void winbindd_info(struct winbindd_cli_state *state);
420 void winbindd_interface_version(struct winbindd_cli_state *state);
421 void winbindd_domain_name(struct winbindd_cli_state *state);
422 void winbindd_netbios_name(struct winbindd_cli_state *state);
423 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
425 /* The following definitions come from winbindd/winbindd_ndr.c */
427 void ndr_print_winbindd_child(struct ndr_print *ndr,
428 const char *name,
429 const struct winbindd_child *r);
430 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
431 const char *name,
432 const struct winbindd_cm_conn *r);
433 void ndr_print_winbindd_methods(struct ndr_print *ndr,
434 const char *name,
435 const struct winbindd_methods *r);
436 void ndr_print_winbindd_domain(struct ndr_print *ndr,
437 const char *name,
438 const struct winbindd_domain *r);
440 /* The following definitions come from winbindd/winbindd_pam.c */
442 struct winbindd_domain *find_auth_domain(struct winbindd_cli_state *state,
443 const char *domain_name);
444 void winbindd_pam_auth(struct winbindd_cli_state *state);
445 NTSTATUS winbindd_dual_pam_auth_cached(struct winbindd_domain *domain,
446 struct winbindd_cli_state *state,
447 struct netr_SamInfo3 **info3);
448 NTSTATUS winbindd_dual_pam_auth_kerberos(struct winbindd_domain *domain,
449 struct winbindd_cli_state *state,
450 struct netr_SamInfo3 **info3);
451 NTSTATUS winbindd_dual_pam_auth_samlogon(struct winbindd_domain *domain,
452 struct winbindd_cli_state *state,
453 struct netr_SamInfo3 **info3);
454 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
455 struct winbindd_cli_state *state) ;
456 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
457 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
458 struct winbindd_cli_state *state) ;
459 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
460 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
461 struct winbindd_cli_state *state);
462 void winbindd_pam_logoff(struct winbindd_cli_state *state);
463 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
464 struct winbindd_cli_state *state) ;
465 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
466 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
468 /* The following definitions come from winbindd/winbindd_passdb.c */
471 /* The following definitions come from winbindd/winbindd_reconnect.c */
474 /* The following definitions come from winbindd/winbindd_sid.c */
476 void winbindd_lookupsid(struct winbindd_cli_state *state);
477 void winbindd_lookupname(struct winbindd_cli_state *state);
478 void winbindd_lookuprids(struct winbindd_cli_state *state);
479 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
480 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
481 void winbindd_set_mapping(struct winbindd_cli_state *state);
482 void winbindd_remove_mapping(struct winbindd_cli_state *state);
483 void winbindd_set_hwm(struct winbindd_cli_state *state);
484 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
485 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
486 void winbindd_allocate_uid(struct winbindd_cli_state *state);
487 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
488 struct winbindd_cli_state *state);
489 void winbindd_allocate_gid(struct winbindd_cli_state *state);
490 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
491 struct winbindd_cli_state *state);
493 /* The following definitions come from winbindd/winbindd_user.c */
495 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
496 struct winbindd_cli_state *state);
497 void winbindd_getpwnam(struct winbindd_cli_state *state);
498 void winbindd_getpwuid(struct winbindd_cli_state *state);
499 void winbindd_getpwsid(struct winbindd_cli_state *state);
500 void winbindd_setpwent(struct winbindd_cli_state *state);
501 void winbindd_endpwent(struct winbindd_cli_state *state);
502 void winbindd_getpwent(struct winbindd_cli_state *state);
503 void winbindd_list_users(struct winbindd_cli_state *state);
505 /* The following definitions come from winbindd/winbindd_util.c */
507 struct winbindd_domain *domain_list(void);
508 void free_domain_list(void);
509 void rescan_trusted_domains( void );
510 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
511 struct winbindd_cli_state *state);
512 bool init_domain_list(void);
513 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
514 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
515 struct winbindd_domain *find_domain_from_name(const char *domain_name);
516 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
517 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
518 struct winbindd_domain *find_our_domain(void);
519 struct winbindd_domain *find_root_domain(void);
520 struct winbindd_domain *find_builtin_domain(void);
521 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
522 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
523 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
524 enum winbindd_cmd orig_cmd,
525 struct winbindd_domain *domain,
526 const char *domain_name,
527 const char *name, DOM_SID *sid,
528 enum lsa_SidType *type);
529 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
530 struct winbindd_domain *domain,
531 DOM_SID *sid,
532 char **dom_name,
533 char **name,
534 enum lsa_SidType *type);
535 void free_getent_state(struct getent_state *state);
536 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
537 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
538 char **domain, char **user);
539 void parse_add_domuser(void *buf, char *domuser, int *len);
540 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
541 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
542 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
543 const char *domain,
544 const char *user,
545 bool can_assume);
546 const char *get_winbind_pipe_dir(void) ;
547 char *get_winbind_priv_pipe_dir(void) ;
548 int open_winbindd_socket(void);
549 int open_winbindd_priv_socket(void);
550 struct winbindd_cli_state *winbindd_client_list(void);
551 void winbindd_add_client(struct winbindd_cli_state *cli);
552 void winbindd_remove_client(struct winbindd_cli_state *cli);
553 void winbindd_kill_all_clients(void);
554 int winbindd_num_clients(void);
555 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
556 TALLOC_CTX *mem_ctx,
557 const DOM_SID *user_sid,
558 uint32 *p_num_groups, DOM_SID **user_sids);
560 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
561 struct winbindd_domain *domain,
562 char *name,
563 char **normalized);
564 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
565 char *name,
566 char **normalized);
568 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
569 struct winbindd_domain *domain,
570 const char *name, char **alias);
571 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
572 struct winbindd_domain *domain,
573 const char *alias, char **name);
575 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
576 bool winbindd_internal_child(struct winbindd_child *child);
577 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
578 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
579 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
580 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
581 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
583 /* The following definitions come from winbindd/winbindd_wins.c */
585 void winbindd_wins_byip(struct winbindd_cli_state *state);
586 void winbindd_wins_byname(struct winbindd_cli_state *state);
588 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
589 struct winbindd_request *request);
590 NTSTATUS wb_ping_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
591 struct winbindd_response **presp);
593 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
594 struct winbindd_cli_state *state);
596 #endif /* _WINBINDD_PROTO_H_ */