s3:winbind: Add async wb_seqnums
[Samba/aatanasov.git] / source3 / winbindd / winbindd_proto.h
bloba144c99c80f9f74a01c0bb1d9c7f2ed187924c67
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, const 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 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
153 const struct dom_sid *sid,
154 TALLOC_CTX *mem_ctx,
155 char **domain_name,
156 char **name,
157 enum lsa_SidType *type);
158 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
159 char **domain_name, char **name,
160 enum lsa_SidType *type);
161 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
162 const char *domain_name,
163 const char *name,
164 DOM_SID *sid,
165 enum lsa_SidType *type);
166 void cache_name2sid(struct winbindd_domain *domain,
167 const char *domain_name, const char *name,
168 enum lsa_SidType type, const DOM_SID *sid);
169 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
170 const char *domain_name,
171 const char *name,
172 struct dom_sid *sid,
173 enum lsa_SidType *type);
174 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
175 TALLOC_CTX *mem_ctx,
176 const struct dom_sid *user_sid,
177 struct wbint_userinfo *info);
178 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
179 TALLOC_CTX *mem_ctx,
180 uint32 num_sids, const DOM_SID *sids,
181 uint32 *pnum_aliases, uint32 **paliases);
182 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
183 TALLOC_CTX *mem_ctx,
184 const struct dom_sid *user_sid,
185 uint32_t *pnum_sids,
186 struct dom_sid **psids);
188 void wcache_flush_cache(void);
189 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
190 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
191 bool set_global_winbindd_state_offline(void);
192 void set_global_winbindd_state_online(void);
193 bool get_global_winbindd_state_offline(void);
194 int winbindd_validate_cache(void);
195 int winbindd_validate_cache_nobackup(void);
196 bool winbindd_cache_validate_and_initialize(void);
197 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
198 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
199 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
200 void wcache_tdc_clear( void );
201 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain,
202 const DOM_SID *user_sid,
203 TALLOC_CTX *ctx,
204 ADS_STRUCT *ads, LDAPMessage *msg,
205 const char **homedir, const char **shell,
206 const char **gecos, gid_t *p_gid);
208 /* The following definitions come from winbindd/winbindd_ccache_access.c */
210 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
211 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
212 struct winbindd_cli_state *state);
214 /* The following definitions come from winbindd/winbindd_cm.c */
216 void set_domain_offline(struct winbindd_domain *domain);
217 void set_domain_online_request(struct winbindd_domain *domain);
218 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
219 const char *server,
220 NTSTATUS result);
221 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
222 void close_conns_after_fork(void);
223 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
224 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
225 struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
226 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
227 struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
228 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
229 struct rpc_pipe_client **cli);
231 /* The following definitions come from winbindd/winbindd_cred_cache.c */
233 bool ccache_entry_exists(const char *username);
234 bool ccache_entry_identical(const char *username,
235 uid_t uid,
236 const char *ccname);
237 void ccache_remove_all_after_fork(void);
238 void ccache_regain_all_now(void);
239 NTSTATUS add_ccache_to_list(const char *princ_name,
240 const char *ccname,
241 const char *service,
242 const char *username,
243 const char *realm,
244 uid_t uid,
245 time_t create_time,
246 time_t ticket_end,
247 time_t renew_until,
248 bool postponed_request);
249 NTSTATUS remove_ccache(const char *username);
250 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
251 NTSTATUS winbindd_add_memory_creds(const char *username,
252 uid_t uid,
253 const char *pass);
254 NTSTATUS winbindd_delete_memory_creds(const char *username);
255 NTSTATUS winbindd_replace_memory_creds(const char *username,
256 const char *pass);
258 /* The following definitions come from winbindd/winbindd_creds.c */
260 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
261 TALLOC_CTX *mem_ctx,
262 const DOM_SID *sid,
263 struct netr_SamInfo3 **info3,
264 const uint8 *cached_nt_pass[NT_HASH_LEN],
265 const uint8 *cred_salt[NT_HASH_LEN]);
266 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
267 TALLOC_CTX *mem_ctx,
268 const char *user,
269 const char *pass,
270 struct netr_SamInfo3 *info3,
271 const DOM_SID *user_sid);
272 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
273 TALLOC_CTX *mem_ctx,
274 const char *user,
275 const char *pass,
276 struct netr_SamInfo3 *info3);
277 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
278 TALLOC_CTX *mem_ctx,
279 const DOM_SID *sid,
280 const char *pass);
281 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
282 TALLOC_CTX *mem_ctx,
283 const char *user,
284 const char *pass);
286 /* The following definitions come from winbindd/winbindd_domain.c */
288 void setup_domain_child(struct winbindd_domain *domain,
289 struct winbindd_child *child);
291 /* The following definitions come from winbindd/winbindd_dual.c */
293 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
294 struct tevent_context *ev,
295 struct winbindd_child *child,
296 struct winbindd_request *request);
297 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
298 struct winbindd_response **presponse, int *err);
299 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
300 struct tevent_context *ev,
301 struct winbindd_domain *domain,
302 struct winbindd_request *request);
303 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
304 struct winbindd_response **presponse, int *err);
306 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
307 struct winbindd_request *request,
308 struct winbindd_response *response,
309 void (*continuation)(void *private_data, bool success),
310 void *private_data);
311 void async_domain_request(TALLOC_CTX *mem_ctx,
312 struct winbindd_domain *domain,
313 struct winbindd_request *request,
314 struct winbindd_response *response,
315 void (*continuation)(void *private_data_data, bool success),
316 void *private_data_data);
317 void sendto_child(struct winbindd_cli_state *state,
318 struct winbindd_child *child);
319 void sendto_domain(struct winbindd_cli_state *state,
320 struct winbindd_domain *domain);
321 void setup_child(struct winbindd_child *child,
322 const struct winbindd_child_dispatch_table *table,
323 const char *logprefix,
324 const char *logname);
325 void winbind_child_died(pid_t pid);
326 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
327 void winbind_msg_debug(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_offline(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_online(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_onlinestatus(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_event_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 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
353 void *private_data,
354 uint32_t msg_type,
355 struct server_id server_id,
356 DATA_BLOB *data);
357 bool winbindd_reinit_after_fork(const char *logfilename);
358 struct winbindd_domain *wb_child_domain(void);
360 /* The following definitions come from winbindd/winbindd_group.c */
362 void winbindd_getgrnam(struct winbindd_cli_state *state);
363 void winbindd_getgrgid(struct winbindd_cli_state *state);
364 void winbindd_setgrent(struct winbindd_cli_state *state);
365 void winbindd_endgrent(struct winbindd_cli_state *state);
366 void winbindd_getgrent(struct winbindd_cli_state *state);
367 void winbindd_list_groups(struct winbindd_cli_state *state);
368 void winbindd_getgroups(struct winbindd_cli_state *state);
369 void winbindd_getusersids(struct winbindd_cli_state *state);
370 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
371 void winbindd_getsidaliases(struct winbindd_cli_state *state);
372 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
373 struct winbindd_cli_state *state);
374 bool get_sam_group_entries(struct getent_state *ent);
377 /* The following definitions come from winbindd/winbindd_idmap.c */
379 void init_idmap_child(void);
380 struct winbindd_child *idmap_child(void);
381 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
382 void (*cont)(void *private_data, bool success),
383 void *private_data);
384 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
385 struct winbindd_cli_state *state);
386 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
387 void (*cont)(void *private_data, bool success),
388 void *private_data);
389 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
390 struct winbindd_cli_state *state);
391 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
392 void (*cont)(void *private_data, bool success),
393 void *private_data);
394 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
395 struct winbindd_cli_state *state);
396 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
397 void (*cont)(void *private_data, bool success, void *data, int len),
398 void *private_data);
399 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
400 struct winbindd_cli_state *state);
401 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
402 void (*cont)(void *private_data, bool success, uid_t uid),
403 void *private_data);
404 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
405 struct winbindd_cli_state *state);
406 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
407 void (*cont)(void *private_data, bool success, gid_t gid),
408 void *private_data);
409 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
410 struct winbindd_cli_state *state);
411 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
412 void (*cont)(void *private_data, bool success, const char *sid),
413 void *private_data);
414 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
415 struct winbindd_cli_state *state);
416 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
417 void (*cont)(void *private_data, bool success, const char *sid),
418 void *private_data);
419 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
420 struct winbindd_cli_state *state);
422 /* The following definitions come from winbindd/winbindd_locator.c */
424 void init_locator_child(void);
425 struct winbindd_child *locator_child(void);
426 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
428 /* The following definitions come from winbindd/winbindd_misc.c */
430 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
431 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
432 struct winbindd_cli_state *state);
433 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
434 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
435 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
436 struct winbindd_cli_state *state);
437 void winbindd_getdcname(struct winbindd_cli_state *state);
438 enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain,
439 struct winbindd_cli_state *state);
440 void winbindd_show_sequence(struct winbindd_cli_state *state);
441 enum winbindd_result winbindd_dual_show_sequence(struct winbindd_domain *domain,
442 struct winbindd_cli_state *state);
443 void winbindd_domain_info(struct winbindd_cli_state *state);
444 void winbindd_ping(struct winbindd_cli_state *state);
445 void winbindd_info(struct winbindd_cli_state *state);
446 void winbindd_interface_version(struct winbindd_cli_state *state);
447 void winbindd_domain_name(struct winbindd_cli_state *state);
448 void winbindd_netbios_name(struct winbindd_cli_state *state);
449 void winbindd_priv_pipe_dir(struct winbindd_cli_state *state);
451 /* The following definitions come from winbindd/winbindd_ndr.c */
453 void ndr_print_winbindd_child(struct ndr_print *ndr,
454 const char *name,
455 const struct winbindd_child *r);
456 void ndr_print_winbindd_cm_conn(struct ndr_print *ndr,
457 const char *name,
458 const struct winbindd_cm_conn *r);
459 void ndr_print_winbindd_methods(struct ndr_print *ndr,
460 const char *name,
461 const struct winbindd_methods *r);
462 void ndr_print_winbindd_domain(struct ndr_print *ndr,
463 const char *name,
464 const struct winbindd_domain *r);
466 /* The following definitions come from winbindd/winbindd_pam.c */
468 struct winbindd_domain *find_auth_domain(struct winbindd_cli_state *state,
469 const char *domain_name);
470 void winbindd_pam_auth(struct winbindd_cli_state *state);
471 NTSTATUS winbindd_dual_pam_auth_cached(struct winbindd_domain *domain,
472 struct winbindd_cli_state *state,
473 struct netr_SamInfo3 **info3);
474 NTSTATUS winbindd_dual_pam_auth_kerberos(struct winbindd_domain *domain,
475 struct winbindd_cli_state *state,
476 struct netr_SamInfo3 **info3);
477 NTSTATUS winbindd_dual_pam_auth_samlogon(struct winbindd_domain *domain,
478 struct winbindd_cli_state *state,
479 struct netr_SamInfo3 **info3);
480 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
481 struct winbindd_cli_state *state) ;
482 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
483 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
484 struct winbindd_cli_state *state) ;
485 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
486 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
487 struct winbindd_cli_state *state);
488 void winbindd_pam_logoff(struct winbindd_cli_state *state);
489 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
490 struct winbindd_cli_state *state) ;
491 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
492 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
494 /* The following definitions come from winbindd/winbindd_passdb.c */
497 /* The following definitions come from winbindd/winbindd_reconnect.c */
500 /* The following definitions come from winbindd/winbindd_sid.c */
502 void winbindd_lookupsid(struct winbindd_cli_state *state);
503 void winbindd_lookupname(struct winbindd_cli_state *state);
504 void winbindd_lookuprids(struct winbindd_cli_state *state);
505 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
506 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
507 void winbindd_set_mapping(struct winbindd_cli_state *state);
508 void winbindd_remove_mapping(struct winbindd_cli_state *state);
509 void winbindd_set_hwm(struct winbindd_cli_state *state);
510 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
511 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
512 void winbindd_allocate_uid(struct winbindd_cli_state *state);
513 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
514 struct winbindd_cli_state *state);
515 void winbindd_allocate_gid(struct winbindd_cli_state *state);
516 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
517 struct winbindd_cli_state *state);
519 /* The following definitions come from winbindd/winbindd_user.c */
521 bool fillup_pw_field(const char *lp_template,
522 const char *username,
523 const char *domname,
524 uid_t uid,
525 gid_t gid,
526 const char *in,
527 fstring out);
529 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
530 struct winbindd_cli_state *state);
531 void winbindd_getpwnam(struct winbindd_cli_state *state);
532 void winbindd_getpwuid(struct winbindd_cli_state *state);
533 void winbindd_getpwsid(struct winbindd_cli_state *state);
534 void winbindd_setpwent(struct winbindd_cli_state *state);
535 void winbindd_endpwent(struct winbindd_cli_state *state);
536 void winbindd_getpwent(struct winbindd_cli_state *state);
537 void winbindd_list_users(struct winbindd_cli_state *state);
539 /* The following definitions come from winbindd/winbindd_util.c */
541 struct winbindd_domain *domain_list(void);
542 void free_domain_list(void);
543 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
544 struct timeval now, void *private_data);
545 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
546 struct winbindd_cli_state *state);
547 bool init_domain_list(void);
548 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
549 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
550 struct winbindd_domain *find_domain_from_name(const char *domain_name);
551 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
552 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
553 struct winbindd_domain *find_our_domain(void);
554 struct winbindd_domain *find_root_domain(void);
555 struct winbindd_domain *find_builtin_domain(void);
556 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
557 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
558 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
559 enum winbindd_cmd orig_cmd,
560 struct winbindd_domain *domain,
561 const char *domain_name,
562 const char *name, DOM_SID *sid,
563 enum lsa_SidType *type);
564 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
565 struct winbindd_domain *domain,
566 DOM_SID *sid,
567 char **dom_name,
568 char **name,
569 enum lsa_SidType *type);
570 void free_getent_state(struct getent_state *state);
571 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
572 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
573 char **domain, char **user);
574 void parse_add_domuser(void *buf, char *domuser, int *len);
575 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
576 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
577 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
578 const char *domain,
579 const char *user,
580 bool can_assume);
581 const char *get_winbind_pipe_dir(void) ;
582 char *get_winbind_priv_pipe_dir(void) ;
583 int open_winbindd_socket(void);
584 int open_winbindd_priv_socket(void);
585 struct winbindd_cli_state *winbindd_client_list(void);
586 void winbindd_add_client(struct winbindd_cli_state *cli);
587 void winbindd_remove_client(struct winbindd_cli_state *cli);
588 void winbindd_kill_all_clients(void);
589 int winbindd_num_clients(void);
590 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
591 TALLOC_CTX *mem_ctx,
592 const DOM_SID *user_sid,
593 uint32 *p_num_groups, DOM_SID **user_sids);
595 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
596 struct winbindd_domain *domain,
597 char *name,
598 char **normalized);
599 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
600 char *name,
601 char **normalized);
603 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
604 struct winbindd_domain *domain,
605 const char *name, char **alias);
606 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
607 struct winbindd_domain *domain,
608 const char *alias, char **name);
610 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
611 bool winbindd_internal_child(struct winbindd_child *child);
612 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
613 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
614 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
615 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
616 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
618 /* The following definitions come from winbindd/winbindd_wins.c */
620 void winbindd_wins_byip(struct winbindd_cli_state *state);
621 void winbindd_wins_byname(struct winbindd_cli_state *state);
623 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
624 struct winbindd_request *request);
625 NTSTATUS wb_ping_recv(struct tevent_req *req,
626 struct winbindd_response *resp);
628 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
629 struct winbindd_cli_state *state);
631 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
632 struct winbindd_child *child);
633 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
634 struct winbindd_cli_state *state);
636 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
637 struct tevent_context *ev,
638 const struct dom_sid *sid);
639 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
640 enum lsa_SidType *type, const char **domain,
641 const char **name);
643 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
644 struct tevent_context *ev,
645 struct winbindd_request *request);
646 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
647 struct winbindd_response *response);
649 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
650 struct tevent_context *ev,
651 const char *dom_name, const char *name,
652 uint32_t flags);
653 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
654 enum lsa_SidType *type);
656 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
657 struct tevent_context *ev,
658 struct winbindd_request *request);
659 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
660 struct winbindd_response *response);
662 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
663 struct tevent_context *ev,
664 const struct dom_sid *sid);
665 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
667 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
668 struct tevent_context *ev,
669 struct winbindd_request *request);
670 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
671 struct winbindd_response *response);
673 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
674 struct tevent_context *ev,
675 const struct dom_sid *sid);
676 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
678 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
679 struct tevent_context *ev,
680 struct winbindd_request *request);
681 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
682 struct winbindd_response *response);
684 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
685 struct tevent_context *ev,
686 uid_t uid);
687 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
689 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
690 struct tevent_context *ev,
691 struct winbindd_request *request);
692 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
693 struct winbindd_response *response);
695 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
696 struct tevent_context *ev,
697 gid_t gid);
698 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
700 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
701 struct tevent_context *ev,
702 struct winbindd_request *request);
703 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
704 struct winbindd_response *response);
706 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
707 struct tevent_context *ev,
708 const struct dom_sid *user_sid);
709 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
710 struct wbint_userinfo **pinfo);
712 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
713 struct tevent_context *ev,
714 const struct dom_sid *user_sid,
715 struct winbindd_pw *pw);
716 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
718 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
719 struct tevent_context *ev,
720 struct winbindd_request *request);
721 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
722 struct winbindd_response *response);
724 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
725 struct tevent_context *ev,
726 struct winbindd_request *request);
727 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
728 struct winbindd_response *response);
730 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
731 struct tevent_context *ev,
732 struct winbindd_request *request);
733 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
734 struct winbindd_response *response);
735 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
736 struct tevent_context *ev,
737 struct winbindd_domain *domain,
738 int num_sids,
739 const struct dom_sid *sids);
740 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
741 uint32_t *num_aliases, uint32_t **aliases);
742 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
743 struct tevent_context *ev,
744 struct winbindd_request *request);
745 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
746 struct winbindd_response *response);
747 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
748 struct tevent_context *ev,
749 struct winbindd_domain *domain,
750 const struct dom_sid *sid);
751 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
752 int *num_sids, struct dom_sid **sids);
754 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
755 struct tevent_context *ev,
756 struct winbindd_request *request);
757 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
758 struct winbindd_response *response);
759 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
760 struct tevent_context *ev,
761 const struct dom_sid *sid);
762 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
763 int *num_sids, struct dom_sid **sids);
764 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
765 struct tevent_context *ev,
766 struct winbindd_request *request);
767 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
768 struct winbindd_response *response);
770 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
771 struct tevent_context *ev,
772 struct winbindd_domain *domain);
773 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
775 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
776 struct tevent_context *ev);
777 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
778 int *num_domains, struct winbindd_domain ***domains,
779 NTSTATUS **stati, uint32_t **seqnums);
781 #endif /* _WINBINDD_PROTO_H_ */