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