source: branches/samba-3.3.x/source/winbindd/winbindd_proto.h

Last change on this file was 342, checked in by Herwig Bauernfeind, 16 years ago

Update 3.3 to 3.3.9

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