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