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