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