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