dcb8c30f0f36a8ec0c9bae063e755cac951c395d
[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
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 request_error(struct winbindd_cli_state *state);
57 void request_ok(struct winbindd_cli_state *state);
58 bool winbindd_setup_sig_term_handler(bool parent);
59 bool winbindd_setup_sig_hup_handler(const char *lfile);
60 bool winbindd_use_idmap_cache(void);
61 bool winbindd_use_cache(void);
62 int main(int argc, char **argv, char **envp);
63
64 /* The following definitions come from winbindd/winbindd_ads.c  */
65
66 /* The following definitions come from winbindd/winbindd_rpc.c  */
67
68 NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx,
69                               struct winbindd_domain *domain,
70                               uint32_t num_sids,
71                               const struct dom_sid *sids,
72                               char ***domains,
73                               char ***names,
74                               enum lsa_SidType **types);
75 NTSTATUS winbindd_lookup_names(TALLOC_CTX *mem_ctx,
76                                struct winbindd_domain *domain,
77                                uint32_t num_names,
78                                const char **names,
79                                const char ***domains,
80                                struct dom_sid **sids,
81                                enum lsa_SidType **types);
82
83 /* The following definitions come from winbindd/winbindd_async.c  */
84
85 enum winbindd_result winbindd_dual_lookupsid(struct winbindd_domain *domain,
86                                              struct winbindd_cli_state *state);
87 enum winbindd_result winbindd_dual_lookupname(struct winbindd_domain *domain,
88                                               struct winbindd_cli_state *state);
89 void winbindd_listent_async(TALLOC_CTX *mem_ctx,
90                                struct winbindd_domain *domain,
91                                void (*cont)(void *private_data, bool success,
92                                      fstring dom_name, char* extra_data),
93                                void *private_data, enum ent_type type);
94 enum winbindd_result winbindd_dual_list_users(struct winbindd_domain *domain,
95                                               struct winbindd_cli_state *state);
96 enum winbindd_result winbindd_dual_list_groups(struct winbindd_domain *domain,
97                                                struct winbindd_cli_state *state);
98 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
99                    size_t num_sids, char **result, ssize_t *len);
100 bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
101                    DOM_SID **sids, size_t *num_sids);
102 enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain,
103                                                  struct winbindd_cli_state *state);
104
105 /* The following definitions come from winbindd/winbindd_cache.c  */
106
107 void winbindd_check_cache_size(time_t t);
108 struct cache_entry *centry_start(struct winbindd_domain *domain, NTSTATUS status);
109 NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const DOM_SID *sid);
110 NTSTATUS wcache_get_creds(struct winbindd_domain *domain, 
111                           TALLOC_CTX *mem_ctx, 
112                           const DOM_SID *sid,
113                           const uint8 **cached_nt_pass,
114                           const uint8 **cached_salt);
115 NTSTATUS wcache_save_creds(struct winbindd_domain *domain, 
116                            TALLOC_CTX *mem_ctx, 
117                            const DOM_SID *sid, 
118                            const uint8 nt_pass[NT_HASH_LEN]);
119 void wcache_invalidate_samlogon(struct winbindd_domain *domain, 
120                                 struct netr_SamInfo3 *info3);
121 bool wcache_invalidate_cache(void);
122 bool init_wcache(void);
123 bool initialize_winbindd_cache(void);
124 void close_winbindd_cache(void);
125 NTSTATUS wcache_sid_to_name(struct winbindd_domain *domain,
126                             const struct dom_sid *sid,
127                             TALLOC_CTX *mem_ctx,
128                             char **domain_name,
129                             char **name,
130                             enum lsa_SidType *type);
131 NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
132                                 TALLOC_CTX *mem_ctx,
133                                 const struct dom_sid *group_sid,
134                                 uint32_t *num_names,
135                                 struct dom_sid **sid_mem, char ***names,
136                                 uint32_t **name_types);
137 bool lookup_cached_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
138                        char **domain_name, char **name,
139                        enum lsa_SidType *type);
140 bool lookup_cached_name(TALLOC_CTX *mem_ctx,
141                         const char *domain_name,
142                         const char *name,
143                         DOM_SID *sid,
144                         enum lsa_SidType *type);
145 void cache_name2sid(struct winbindd_domain *domain, 
146                     const char *domain_name, const char *name,
147                     enum lsa_SidType type, const DOM_SID *sid);
148 NTSTATUS wcache_name_to_sid(struct winbindd_domain *domain,
149                             const char *domain_name,
150                             const char *name,
151                             struct dom_sid *sid,
152                             enum lsa_SidType *type);
153 NTSTATUS wcache_query_user(struct winbindd_domain *domain,
154                            TALLOC_CTX *mem_ctx,
155                            const struct dom_sid *user_sid,
156                            struct wbint_userinfo *info);
157 NTSTATUS wcache_lookup_useraliases(struct winbindd_domain *domain,
158                                    TALLOC_CTX *mem_ctx,
159                                    uint32 num_sids, const DOM_SID *sids,
160                                    uint32 *pnum_aliases, uint32 **paliases);
161 NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain,
162                                   TALLOC_CTX *mem_ctx,
163                                   const struct dom_sid *user_sid,
164                                   uint32_t *pnum_sids,
165                                   struct dom_sid **psids);
166
167 void wcache_flush_cache(void);
168 NTSTATUS wcache_count_cached_creds(struct winbindd_domain *domain, int *count);
169 NTSTATUS wcache_remove_oldest_cached_creds(struct winbindd_domain *domain, const DOM_SID *sid) ;
170 bool set_global_winbindd_state_offline(void);
171 void set_global_winbindd_state_online(void);
172 bool get_global_winbindd_state_offline(void);
173 int winbindd_validate_cache(void);
174 int winbindd_validate_cache_nobackup(void);
175 bool winbindd_cache_validate_and_initialize(void);
176 bool wcache_tdc_fetch_list( struct winbindd_tdc_domain **domains, size_t *num_domains );
177 bool wcache_tdc_add_domain( struct winbindd_domain *domain );
178 struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const char *name );
179 void wcache_tdc_clear( void );
180 NTSTATUS nss_get_info_cached( struct winbindd_domain *domain, 
181                               const DOM_SID *user_sid,
182                               TALLOC_CTX *ctx,
183                               ADS_STRUCT *ads, LDAPMessage *msg,
184                               const char **homedir, const char **shell,
185                               const char **gecos, gid_t *p_gid);
186 bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
187                          time_t last_seq_check);
188 bool wcache_fetch_ndr(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
189                       uint32_t opnum, const DATA_BLOB *req, DATA_BLOB *resp);
190 void wcache_store_ndr(struct winbindd_domain *domain, uint32_t opnum,
191                       const DATA_BLOB *req, const DATA_BLOB *resp);
192
193 /* The following definitions come from winbindd/winbindd_ccache_access.c  */
194
195 void winbindd_ccache_ntlm_auth(struct winbindd_cli_state *state);
196 enum winbindd_result winbindd_dual_ccache_ntlm_auth(struct winbindd_domain *domain,
197                                                 struct winbindd_cli_state *state);
198
199 /* The following definitions come from winbindd/winbindd_cm.c  */
200
201 void set_domain_offline(struct winbindd_domain *domain);
202 void set_domain_online_request(struct winbindd_domain *domain);
203 void winbind_add_failed_connection_entry(const struct winbindd_domain *domain,
204                                         const char *server,
205                                         NTSTATUS result);
206 void invalidate_cm_connection(struct winbindd_cm_conn *conn);
207 void close_conns_after_fork(void);
208 NTSTATUS init_dc_connection(struct winbindd_domain *domain);
209 NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
210                         struct rpc_pipe_client **cli, struct policy_handle *sam_handle);
211 NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
212                         struct rpc_pipe_client **cli, struct policy_handle *lsa_policy);
213 NTSTATUS cm_connect_lsa_tcp(struct winbindd_domain *domain,
214                             TALLOC_CTX *mem_ctx,
215                             struct rpc_pipe_client **cli);
216 NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
217                              struct rpc_pipe_client **cli);
218
219 /* The following definitions come from winbindd/winbindd_cred_cache.c  */
220
221 bool ccache_entry_exists(const char *username);
222 bool ccache_entry_identical(const char *username,
223                             uid_t uid,
224                             const char *ccname);
225 void ccache_remove_all_after_fork(void);
226 void ccache_regain_all_now(void);
227 NTSTATUS add_ccache_to_list(const char *princ_name,
228                             const char *ccname,
229                             const char *service,
230                             const char *username,
231                             const char *realm,
232                             uid_t uid,
233                             time_t create_time,
234                             time_t ticket_end,
235                             time_t renew_until,
236                             bool postponed_request);
237 NTSTATUS remove_ccache(const char *username);
238 struct WINBINDD_MEMORY_CREDS *find_memory_creds_by_name(const char *username);
239 NTSTATUS winbindd_add_memory_creds(const char *username,
240                                    uid_t uid,
241                                    const char *pass);
242 NTSTATUS winbindd_delete_memory_creds(const char *username);
243 NTSTATUS winbindd_replace_memory_creds(const char *username,
244                                        const char *pass);
245
246 /* The following definitions come from winbindd/winbindd_creds.c  */
247
248 NTSTATUS winbindd_get_creds(struct winbindd_domain *domain,
249                             TALLOC_CTX *mem_ctx,
250                             const DOM_SID *sid,
251                             struct netr_SamInfo3 **info3,
252                             const uint8 *cached_nt_pass[NT_HASH_LEN],
253                             const uint8 *cred_salt[NT_HASH_LEN]);
254 NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
255                               TALLOC_CTX *mem_ctx, 
256                               const char *user, 
257                               const char *pass, 
258                               struct netr_SamInfo3 *info3,
259                               const DOM_SID *user_sid);
260 NTSTATUS winbindd_update_creds_by_info3(struct winbindd_domain *domain,
261                                         TALLOC_CTX *mem_ctx,
262                                         const char *user,
263                                         const char *pass,
264                                         struct netr_SamInfo3 *info3);
265 NTSTATUS winbindd_update_creds_by_sid(struct winbindd_domain *domain,
266                                       TALLOC_CTX *mem_ctx,
267                                       const DOM_SID *sid,
268                                       const char *pass);
269 NTSTATUS winbindd_update_creds_by_name(struct winbindd_domain *domain,
270                                        TALLOC_CTX *mem_ctx,
271                                        const char *user,
272                                        const char *pass);
273
274 /* The following definitions come from winbindd/winbindd_domain.c  */
275
276 void setup_domain_child(struct winbindd_domain *domain,
277                         struct winbindd_child *child);
278
279 /* The following definitions come from winbindd/winbindd_dual.c  */
280
281 struct tevent_req *wb_child_request_send(TALLOC_CTX *mem_ctx,
282                                          struct tevent_context *ev,
283                                          struct winbindd_child *child,
284                                          struct winbindd_request *request);
285 int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
286                           struct winbindd_response **presponse, int *err);
287 struct tevent_req *wb_domain_request_send(TALLOC_CTX *mem_ctx,
288                                           struct tevent_context *ev,
289                                           struct winbindd_domain *domain,
290                                           struct winbindd_request *request);
291 int wb_domain_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
292                            struct winbindd_response **presponse, int *err);
293
294 void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
295                    struct winbindd_request *request,
296                    struct winbindd_response *response,
297                    void (*continuation)(void *private_data, bool success),
298                    void *private_data);
299 void async_domain_request(TALLOC_CTX *mem_ctx,
300                           struct winbindd_domain *domain,
301                           struct winbindd_request *request,
302                           struct winbindd_response *response,
303                           void (*continuation)(void *private_data_data, bool success),
304                           void *private_data_data);
305 void sendto_child(struct winbindd_cli_state *state,
306                   struct winbindd_child *child);
307 void sendto_domain(struct winbindd_cli_state *state,
308                    struct winbindd_domain *domain);
309 void setup_child(struct winbindd_domain *domain, struct winbindd_child *child,
310                  const struct winbindd_child_dispatch_table *table,
311                  const char *logprefix,
312                  const char *logname);
313 void winbind_child_died(pid_t pid);
314 void winbindd_flush_negative_conn_cache(struct winbindd_domain *domain);
315 void winbind_msg_debug(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_offline(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_online(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 void winbind_msg_onlinestatus(struct messaging_context *msg_ctx,
331                               void *private_data,
332                               uint32_t msg_type,
333                               struct server_id server_id,
334                               DATA_BLOB *data);
335 void winbind_msg_dump_event_list(struct messaging_context *msg_ctx,
336                                  void *private_data,
337                                  uint32_t msg_type,
338                                  struct server_id server_id,
339                                  DATA_BLOB *data);
340 void winbind_msg_dump_domain_list(struct messaging_context *msg_ctx,
341                                   void *private_data,
342                                   uint32_t msg_type,
343                                   struct server_id server_id,
344                                   DATA_BLOB *data);
345 bool winbindd_reinit_after_fork(const char *logfilename);
346 struct winbindd_domain *wb_child_domain(void);
347
348 /* The following definitions come from winbindd/winbindd_group.c  */
349
350 void winbindd_getgrnam(struct winbindd_cli_state *state);
351 void winbindd_getgrgid(struct winbindd_cli_state *state);
352 void winbindd_setgrent(struct winbindd_cli_state *state);
353 void winbindd_endgrent(struct winbindd_cli_state *state);
354 void winbindd_getgrent(struct winbindd_cli_state *state);
355 void winbindd_list_groups(struct winbindd_cli_state *state);
356 void winbindd_getgroups(struct winbindd_cli_state *state);
357 void winbindd_getusersids(struct winbindd_cli_state *state);
358 void winbindd_getuserdomgroups(struct winbindd_cli_state *state);
359 void winbindd_getsidaliases(struct winbindd_cli_state *state);
360 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
361                                                     struct winbindd_cli_state *state);
362 bool get_sam_group_entries(struct getent_state *ent);
363 bool fill_grent(TALLOC_CTX *mem_ctx, struct winbindd_gr *gr,
364                 const char *dom_name, const char *gr_name, gid_t unix_gid);
365 NTSTATUS winbindd_print_groupmembers(struct talloc_dict *members,
366                                      TALLOC_CTX *mem_ctx,
367                                      int *num_members, char **result);
368
369
370 /* The following definitions come from winbindd/winbindd_idmap.c  */
371
372 void init_idmap_child(void);
373 struct winbindd_child *idmap_child(void);
374 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
375                              void (*cont)(void *private_data, bool success),
376                              void *private_data);
377 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
378                                             struct winbindd_cli_state *state);
379 void winbindd_remove_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
380                              void (*cont)(void *private_data, bool success),
381                              void *private_data);
382 enum winbindd_result winbindd_dual_remove_mapping(struct winbindd_domain *domain,
383                                             struct winbindd_cli_state *state);
384 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
385                              void (*cont)(void *private_data, bool success),
386                              void *private_data);
387 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
388                                             struct winbindd_cli_state *state);
389 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
390                          void (*cont)(void *private_data, bool success, void *data, int len),
391                          void *private_data);
392 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
393                                            struct winbindd_cli_state *state);
394
395 /* The following definitions come from winbindd/winbindd_locator.c  */
396
397 void init_locator_child(void);
398 struct winbindd_child *locator_child(void);
399 void winbindd_dsgetdcname(struct winbindd_cli_state *state);
400
401 /* The following definitions come from winbindd/winbindd_misc.c  */
402
403 void winbindd_check_machine_acct(struct winbindd_cli_state *state);
404 enum winbindd_result winbindd_dual_check_machine_acct(struct winbindd_domain *domain,
405                                                       struct winbindd_cli_state *state);
406 void winbindd_list_ent(struct winbindd_cli_state *state, enum ent_type type);
407 void winbindd_list_trusted_domains(struct winbindd_cli_state *state);
408 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
409                                                         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 bool check_request_flags(uint32_t flags);
441 struct winbindd_domain *find_auth_domain(uint8_t flags,
442                                          const char *domain_name);
443 NTSTATUS check_info3_in_group(struct netr_SamInfo3 *info3,
444                               const char *group_sid);
445 NTSTATUS append_auth_data(struct winbindd_cli_state *state,
446                           struct netr_SamInfo3 *info3,
447                           const char *name_domain,
448                           const char *name_user);
449 void winbindd_pam_auth(struct winbindd_cli_state *state);
450 enum winbindd_result winbindd_dual_pam_auth(struct winbindd_domain *domain,
451                                             struct winbindd_cli_state *state) ;
452 void winbindd_pam_auth_crap(struct winbindd_cli_state *state);
453 enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
454                                                  struct winbindd_cli_state *state) ;
455 void winbindd_pam_chauthtok(struct winbindd_cli_state *state);
456 enum winbindd_result winbindd_dual_pam_chauthtok(struct winbindd_domain *contact_domain,
457                                                  struct winbindd_cli_state *state);
458 void winbindd_pam_logoff(struct winbindd_cli_state *state);
459 enum winbindd_result winbindd_dual_pam_logoff(struct winbindd_domain *domain,
460                                               struct winbindd_cli_state *state) ;
461 void winbindd_pam_chng_pswd_auth_crap(struct winbindd_cli_state *state);
462 enum winbindd_result winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain *domainSt, struct winbindd_cli_state *state);
463
464 /* The following definitions come from winbindd/winbindd_passdb.c  */
465
466
467 /* The following definitions come from winbindd/winbindd_reconnect.c  */
468
469
470 /* The following definitions come from winbindd/winbindd_sid.c  */
471
472 void winbindd_lookupsid(struct winbindd_cli_state *state);
473 void winbindd_lookupname(struct winbindd_cli_state *state);
474 void winbindd_lookuprids(struct winbindd_cli_state *state);
475 void winbindd_sid_to_uid(struct winbindd_cli_state *state);
476 void winbindd_sid_to_gid(struct winbindd_cli_state *state);
477 void winbindd_set_mapping(struct winbindd_cli_state *state);
478 void winbindd_remove_mapping(struct winbindd_cli_state *state);
479 void winbindd_set_hwm(struct winbindd_cli_state *state);
480 void winbindd_uid_to_sid(struct winbindd_cli_state *state);
481 void winbindd_gid_to_sid(struct winbindd_cli_state *state);
482 void winbindd_allocate_uid(struct winbindd_cli_state *state);
483 enum winbindd_result winbindd_dual_allocate_uid(struct winbindd_domain *domain,
484                                                 struct winbindd_cli_state *state);
485 void winbindd_allocate_gid(struct winbindd_cli_state *state);
486 enum winbindd_result winbindd_dual_allocate_gid(struct winbindd_domain *domain,
487                                                 struct winbindd_cli_state *state);
488
489 /* The following definitions come from winbindd/winbindd_user.c  */
490
491 enum winbindd_result winbindd_dual_userinfo(struct winbindd_domain *domain,
492                                             struct winbindd_cli_state *state);
493 void winbindd_getpwnam(struct winbindd_cli_state *state);
494 void winbindd_getpwuid(struct winbindd_cli_state *state);
495 void winbindd_getpwsid(struct winbindd_cli_state *state);
496 void winbindd_setpwent(struct winbindd_cli_state *state);
497 void winbindd_endpwent(struct winbindd_cli_state *state);
498 void winbindd_getpwent(struct winbindd_cli_state *state);
499 void winbindd_list_users(struct winbindd_cli_state *state);
500
501 /* The following definitions come from winbindd/winbindd_util.c  */
502
503 struct winbindd_domain *domain_list(void);
504 void free_domain_list(void);
505 void rescan_trusted_domains(struct tevent_context *ev, struct tevent_timer *te,
506                             struct timeval now, void *private_data);
507 enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domain,
508                                                    struct winbindd_cli_state *state);
509 bool init_domain_list(void);
510 void check_domain_trusted( const char *name, const DOM_SID *user_sid );
511 struct winbindd_domain *find_domain_from_name_noinit(const char *domain_name);
512 struct winbindd_domain *find_domain_from_name(const char *domain_name);
513 struct winbindd_domain *find_domain_from_sid_noinit(const DOM_SID *sid);
514 struct winbindd_domain *find_domain_from_sid(const DOM_SID *sid);
515 struct winbindd_domain *find_our_domain(void);
516 struct winbindd_domain *find_root_domain(void);
517 struct winbindd_domain *find_builtin_domain(void);
518 struct winbindd_domain *find_lookup_domain_from_sid(const DOM_SID *sid);
519 struct winbindd_domain *find_lookup_domain_from_name(const char *domain_name);
520 bool winbindd_lookup_sid_by_name(TALLOC_CTX *mem_ctx,
521                                  enum winbindd_cmd orig_cmd,
522                                  struct winbindd_domain *domain, 
523                                  const char *domain_name,
524                                  const char *name, DOM_SID *sid, 
525                                  enum lsa_SidType *type);
526 bool winbindd_lookup_name_by_sid(TALLOC_CTX *mem_ctx,
527                                  struct winbindd_domain *domain,
528                                  DOM_SID *sid,
529                                  char **dom_name,
530                                  char **name,
531                                  enum lsa_SidType *type);
532 void free_getent_state(struct getent_state *state);
533 bool parse_domain_user(const char *domuser, fstring domain, fstring user);
534 bool parse_domain_user_talloc(TALLOC_CTX *mem_ctx, const char *domuser,
535                               char **domain, char **user);
536 void parse_add_domuser(void *buf, char *domuser, int *len);
537 bool canonicalize_username(fstring username_inout, fstring domain, fstring user);
538 void fill_domain_username(fstring name, const char *domain, const char *user, bool can_assume);
539 char *fill_domain_username_talloc(TALLOC_CTX *ctx,
540                                   const char *domain,
541                                   const char *user,
542                                   bool can_assume);
543 const char *get_winbind_pipe_dir(void) ;
544 char *get_winbind_priv_pipe_dir(void) ;
545 int open_winbindd_socket(void);
546 int open_winbindd_priv_socket(void);
547 struct winbindd_cli_state *winbindd_client_list(void);
548 void winbindd_add_client(struct winbindd_cli_state *cli);
549 void winbindd_remove_client(struct winbindd_cli_state *cli);
550 void winbindd_kill_all_clients(void);
551 int winbindd_num_clients(void);
552 NTSTATUS lookup_usergroups_cached(struct winbindd_domain *domain,
553                                   TALLOC_CTX *mem_ctx,
554                                   const DOM_SID *user_sid,
555                                   uint32 *p_num_groups, DOM_SID **user_sids);
556
557 NTSTATUS normalize_name_map(TALLOC_CTX *mem_ctx,
558                              struct winbindd_domain *domain,
559                              const char *name,
560                              char **normalized);
561 NTSTATUS normalize_name_unmap(TALLOC_CTX *mem_ctx,
562                               char *name,
563                               char **normalized);
564
565 NTSTATUS resolve_username_to_alias(TALLOC_CTX *mem_ctx,
566                                    struct winbindd_domain *domain,
567                                    const char *name, char **alias);
568 NTSTATUS resolve_alias_to_username(TALLOC_CTX *mem_ctx,
569                                    struct winbindd_domain *domain,
570                                    const char *alias, char **name);
571
572 bool winbindd_can_contact_domain(struct winbindd_domain *domain);
573 bool winbindd_internal_child(struct winbindd_child *child);
574 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
575 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
576 void winbindd_set_locator_kdc_envs(const struct winbindd_domain *domain);
577 void winbindd_unset_locator_kdc_env(const struct winbindd_domain *domain);
578 void set_auth_errors(struct winbindd_response *resp, NTSTATUS result);
579
580 /* The following definitions come from winbindd/winbindd_wins.c  */
581
582 void winbindd_wins_byip(struct winbindd_cli_state *state);
583 void winbindd_wins_byname(struct winbindd_cli_state *state);
584
585 struct tevent_req *wb_ping_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
586                                 struct winbindd_cli_state *cli,
587                                 struct winbindd_request *request);
588 NTSTATUS wb_ping_recv(struct tevent_req *req,
589                       struct winbindd_response *resp);
590
591 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
592                                         struct winbindd_cli_state *state);
593
594 struct rpc_pipe_client *wbint_rpccli_create(TALLOC_CTX *mem_ctx,
595                                             struct winbindd_domain *domain,
596                                             struct winbindd_child *child);
597 enum winbindd_result winbindd_dual_ndrcmd(struct winbindd_domain *domain,
598                                           struct winbindd_cli_state *state);
599
600 struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
601                                      struct tevent_context *ev,
602                                      const struct dom_sid *sid);
603 NTSTATUS wb_lookupsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
604                            enum lsa_SidType *type, const char **domain,
605                            const char **name);
606
607 struct tevent_req *winbindd_lookupsid_send(TALLOC_CTX *mem_ctx,
608                                            struct tevent_context *ev,
609                                            struct winbindd_cli_state *cli,
610                                            struct winbindd_request *request);
611 NTSTATUS winbindd_lookupsid_recv(struct tevent_req *req,
612                                  struct winbindd_response *response);
613
614 struct tevent_req *wb_lookupname_send(TALLOC_CTX *mem_ctx,
615                                       struct tevent_context *ev,
616                                       const char *dom_name, const char *name,
617                                       uint32_t flags);
618 NTSTATUS wb_lookupname_recv(struct tevent_req *req, struct dom_sid *sid,
619                             enum lsa_SidType *type);
620
621 struct tevent_req *winbindd_lookupname_send(TALLOC_CTX *mem_ctx,
622                                             struct tevent_context *ev,
623                                             struct winbindd_cli_state *cli,
624                                             struct winbindd_request *request);
625 NTSTATUS winbindd_lookupname_recv(struct tevent_req *req,
626                                   struct winbindd_response *response);
627
628 struct tevent_req *wb_sid2uid_send(TALLOC_CTX *mem_ctx,
629                                    struct tevent_context *ev,
630                                    const struct dom_sid *sid);
631 NTSTATUS wb_sid2uid_recv(struct tevent_req *req, uid_t *uid);
632
633 struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
634                                             struct tevent_context *ev,
635                                             struct winbindd_cli_state *cli,
636                                             struct winbindd_request *request);
637 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
638                                   struct winbindd_response *response);
639
640 struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
641                                    struct tevent_context *ev,
642                                    const struct dom_sid *sid);
643 NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
644
645 struct tevent_req *winbindd_sid_to_gid_send(TALLOC_CTX *mem_ctx,
646                                             struct tevent_context *ev,
647                                             struct winbindd_cli_state *cli,
648                                             struct winbindd_request *request);
649 NTSTATUS winbindd_sid_to_gid_recv(struct tevent_req *req,
650                                   struct winbindd_response *response);
651
652 struct tevent_req *wb_uid2sid_send(TALLOC_CTX *mem_ctx,
653                                    struct tevent_context *ev,
654                                    uid_t uid);
655 NTSTATUS wb_uid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
656
657 struct tevent_req *winbindd_uid_to_sid_send(TALLOC_CTX *mem_ctx,
658                                             struct tevent_context *ev,
659                                             struct winbindd_cli_state *cli,
660                                             struct winbindd_request *request);
661 NTSTATUS winbindd_uid_to_sid_recv(struct tevent_req *req,
662                                   struct winbindd_response *response);
663
664 struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
665                                    struct tevent_context *ev,
666                                    gid_t gid);
667 NTSTATUS wb_gid2sid_recv(struct tevent_req *req, struct dom_sid *sid);
668
669 struct tevent_req *winbindd_gid_to_sid_send(TALLOC_CTX *mem_ctx,
670                                             struct tevent_context *ev,
671                                             struct winbindd_cli_state *cli,
672                                             struct winbindd_request *request);
673 NTSTATUS winbindd_gid_to_sid_recv(struct tevent_req *req,
674                                   struct winbindd_response *response);
675
676 struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
677                                               struct tevent_context *ev,
678                                               struct winbindd_cli_state *cli,
679                                               struct winbindd_request *request);
680 NTSTATUS winbindd_allocate_uid_recv(struct tevent_req *req,
681                                     struct winbindd_response *response);
682
683 struct tevent_req *winbindd_allocate_gid_send(TALLOC_CTX *mem_ctx,
684                                               struct tevent_context *ev,
685                                               struct winbindd_cli_state *cli,
686                                               struct winbindd_request *request);
687 NTSTATUS winbindd_allocate_gid_recv(struct tevent_req *req,
688                                     struct winbindd_response *response);
689
690 struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
691                                      struct tevent_context *ev,
692                                      const struct dom_sid *user_sid);
693 NTSTATUS wb_queryuser_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
694                            struct wbint_userinfo **pinfo);
695
696 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
697                                     struct tevent_context *ev,
698                                     const struct dom_sid *user_sid,
699                                     struct winbindd_pw *pw);
700 NTSTATUS wb_getpwsid_recv(struct tevent_req *req);
701
702 struct tevent_req *winbindd_getpwsid_send(TALLOC_CTX *mem_ctx,
703                                           struct tevent_context *ev,
704                                           struct winbindd_cli_state *cli,
705                                           struct winbindd_request *request);
706 NTSTATUS winbindd_getpwsid_recv(struct tevent_req *req,
707                                 struct winbindd_response *response);
708
709 struct tevent_req *winbindd_getpwnam_send(TALLOC_CTX *mem_ctx,
710                                           struct tevent_context *ev,
711                                           struct winbindd_cli_state *cli,
712                                           struct winbindd_request *request);
713 NTSTATUS winbindd_getpwnam_recv(struct tevent_req *req,
714                                 struct winbindd_response *response);
715
716 struct tevent_req *winbindd_getpwuid_send(TALLOC_CTX *mem_ctx,
717                                           struct tevent_context *ev,
718                                           struct winbindd_cli_state *cli,
719                                           struct winbindd_request *request);
720 NTSTATUS winbindd_getpwuid_recv(struct tevent_req *req,
721                                 struct winbindd_response *response);
722 struct tevent_req *wb_lookupuseraliases_send(TALLOC_CTX *mem_ctx,
723                                              struct tevent_context *ev,
724                                              struct winbindd_domain *domain,
725                                              int num_sids,
726                                              const struct dom_sid *sids);
727 NTSTATUS wb_lookupuseraliases_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
728                                    uint32_t *num_aliases, uint32_t **aliases);
729 struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
730                                                struct tevent_context *ev,
731                                                struct winbindd_cli_state *cli,
732                                                struct winbindd_request *request);
733 NTSTATUS winbindd_getsidaliases_recv(struct tevent_req *req,
734                                      struct winbindd_response *response);
735 struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
736                                             struct tevent_context *ev,
737                                             struct winbindd_domain *domain,
738                                             const struct dom_sid *sid);
739 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
740                                   int *num_sids, struct dom_sid **sids);
741
742 struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
743                                                   struct tevent_context *ev,
744                                                   struct winbindd_cli_state *cli,
745                                                   struct winbindd_request *request);
746 NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
747                                         struct winbindd_response *response);
748 struct tevent_req *wb_gettoken_send(TALLOC_CTX *mem_ctx,
749                                     struct tevent_context *ev,
750                                     const struct dom_sid *sid);
751 NTSTATUS wb_gettoken_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
752                           int *num_sids, struct dom_sid **sids);
753 struct tevent_req *winbindd_getgroups_send(TALLOC_CTX *mem_ctx,
754                                            struct tevent_context *ev,
755                                            struct winbindd_cli_state *cli,
756                                            struct winbindd_request *request);
757 NTSTATUS winbindd_getgroups_recv(struct tevent_req *req,
758                                  struct winbindd_response *response);
759
760 struct tevent_req *wb_seqnum_send(TALLOC_CTX *mem_ctx,
761                                   struct tevent_context *ev,
762                                   struct winbindd_domain *domain);
763 NTSTATUS wb_seqnum_recv(struct tevent_req *req, uint32_t *seqnum);
764
765 struct tevent_req *wb_seqnums_send(TALLOC_CTX *mem_ctx,
766                                    struct tevent_context *ev);
767 NTSTATUS wb_seqnums_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
768                          int *num_domains, struct winbindd_domain ***domains,
769                          NTSTATUS **stati, uint32_t **seqnums);
770
771 struct tevent_req *winbindd_show_sequence_send(TALLOC_CTX *mem_ctx,
772                                                struct tevent_context *ev,
773                                                struct winbindd_cli_state *cli,
774                                                struct winbindd_request *request);
775 NTSTATUS winbindd_show_sequence_recv(struct tevent_req *req,
776                                      struct winbindd_response *response);
777
778 struct tevent_req *wb_group_members_send(TALLOC_CTX *mem_ctx,
779                                          struct tevent_context *ev,
780                                          const struct dom_sid *sid,
781                                          enum lsa_SidType type,
782                                          int max_depth);
783 NTSTATUS wb_group_members_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
784                                struct talloc_dict **members);
785
786 struct tevent_req *wb_getgrsid_send(TALLOC_CTX *mem_ctx,
787                                     struct tevent_context *ev,
788                                     const struct dom_sid *group_sid,
789                                     int max_nesting);
790 NTSTATUS wb_getgrsid_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
791                           const char **domname, const char **name, gid_t *gid,
792                           struct talloc_dict **members);
793
794 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
795                                           struct tevent_context *ev,
796                                           struct winbindd_cli_state *cli,
797                                           struct winbindd_request *request);
798 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
799                                 struct winbindd_response *response);
800
801 struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
802                                           struct tevent_context *ev,
803                                           struct winbindd_cli_state *cli,
804                                           struct winbindd_request *request);
805 NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
806                                 struct winbindd_response *response);
807
808 struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx,
809                                              struct tevent_context *ev,
810                                              struct winbindd_cli_state *cli,
811                                              struct winbindd_request *request);
812 NTSTATUS winbindd_getusersids_recv(struct tevent_req *req,
813                                    struct winbindd_response *response);
814
815 struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx,
816                                             struct tevent_context *ev,
817                                             struct winbindd_cli_state *cli,
818                                             struct winbindd_request *request);
819 NTSTATUS winbindd_lookuprids_recv(struct tevent_req *req,
820                                   struct winbindd_response *response);
821
822 struct tevent_req *wb_query_user_list_send(TALLOC_CTX *mem_ctx,
823                                            struct tevent_context *ev,
824                                            struct winbindd_domain *domain);
825 NTSTATUS wb_query_user_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
826                                  int *num_users,
827                                  struct wbint_userinfo **users);
828
829 struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
830                                       struct tevent_context *ev,
831                                       struct wbint_userinfo *info,
832                                       struct winbindd_pw *pw);
833 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
834
835 struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
836                                       struct tevent_context *ev,
837                                       struct getpwent_state *gstate,
838                                       struct winbindd_pw *pw);
839 NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
840
841 struct tevent_req *winbindd_setpwent_send(TALLOC_CTX *mem_ctx,
842                                           struct tevent_context *ev,
843                                           struct winbindd_cli_state *cli,
844                                           struct winbindd_request *request);
845 NTSTATUS winbindd_setpwent_recv(struct tevent_req *req,
846                                 struct winbindd_response *presp);
847
848 struct tevent_req *winbindd_getpwent_send(TALLOC_CTX *mem_ctx,
849                                           struct tevent_context *ev,
850                                           struct winbindd_cli_state *cli,
851                                           struct winbindd_request *request);
852 NTSTATUS winbindd_getpwent_recv(struct tevent_req *req,
853                                 struct winbindd_response *response);
854
855 struct tevent_req *winbindd_endpwent_send(TALLOC_CTX *mem_ctx,
856                                           struct tevent_context *ev,
857                                           struct winbindd_cli_state *cli,
858                                           struct winbindd_request *request);
859 NTSTATUS winbindd_endpwent_recv(struct tevent_req *req,
860                                 struct winbindd_response *response);
861
862 struct tevent_req *winbindd_dsgetdcname_send(TALLOC_CTX *mem_ctx,
863                                              struct tevent_context *ev,
864                                              struct winbindd_cli_state *cli,
865                                              struct winbindd_request *request);
866 NTSTATUS winbindd_dsgetdcname_recv(struct tevent_req *req,
867                                    struct winbindd_response *response);
868
869 struct tevent_req *wb_dsgetdcname_send(TALLOC_CTX *mem_ctx,
870                                        struct tevent_context *ev,
871                                        const char *domain_name,
872                                        const struct GUID *domain_guid,
873                                        const char *site_name,
874                                        uint32_t flags);
875 NTSTATUS wb_dsgetdcname_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
876                              struct netr_DsRGetDCNameInfo **pdcinfo);
877
878 struct tevent_req *winbindd_getdcname_send(TALLOC_CTX *mem_ctx,
879                                            struct tevent_context *ev,
880                                            struct winbindd_cli_state *cli,
881                                            struct winbindd_request *request);
882 NTSTATUS winbindd_getdcname_recv(struct tevent_req *req,
883                                  struct winbindd_response *response);
884
885 struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx,
886                                       struct tevent_context *ev,
887                                       int max_nesting,
888                                       struct getgrent_state *gstate,
889                                       struct winbindd_gr *gr);
890 NTSTATUS wb_next_grent_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
891                             struct talloc_dict **members);
892
893 struct tevent_req *winbindd_setgrent_send(TALLOC_CTX *mem_ctx,
894                                           struct tevent_context *ev,
895                                           struct winbindd_cli_state *cli,
896                                           struct winbindd_request *request);
897 NTSTATUS winbindd_setgrent_recv(struct tevent_req *req,
898                                 struct winbindd_response *response);
899 struct tevent_req *winbindd_getgrent_send(TALLOC_CTX *mem_ctx,
900                                           struct tevent_context *ev,
901                                           struct winbindd_cli_state *cli,
902                                           struct winbindd_request *request);
903 NTSTATUS winbindd_getgrent_recv(struct tevent_req *req,
904                                 struct winbindd_response *response);
905 struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx,
906                                           struct tevent_context *ev,
907                                           struct winbindd_cli_state *cli,
908                                           struct winbindd_request *request);
909 NTSTATUS winbindd_endgrent_recv(struct tevent_req *req,
910                                 struct winbindd_response *response);
911
912 struct tevent_req *winbindd_list_users_send(TALLOC_CTX *mem_ctx,
913                                             struct tevent_context *ev,
914                                             struct winbindd_cli_state *cli,
915                                             struct winbindd_request *request);
916 NTSTATUS winbindd_list_users_recv(struct tevent_req *req,
917                                   struct winbindd_response *response);
918
919 struct tevent_req *winbindd_list_groups_send(TALLOC_CTX *mem_ctx,
920                                              struct tevent_context *ev,
921                                              struct winbindd_cli_state *cli,
922                                              struct winbindd_request *request);
923 NTSTATUS winbindd_list_groups_recv(struct tevent_req *req,
924                                    struct winbindd_response *response);
925
926 struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx,
927                                                     struct tevent_context *ev,
928                                                     struct winbindd_cli_state *cli,
929                                                     struct winbindd_request *request);
930 NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req,
931                                           struct winbindd_response *presp);
932
933 struct tevent_req *winbindd_change_machine_acct_send(TALLOC_CTX *mem_ctx,
934                                                      struct tevent_context *ev,
935                                                      struct winbindd_cli_state *cli,
936                                                      struct winbindd_request *request);
937 NTSTATUS winbindd_change_machine_acct_recv(struct tevent_req *req,
938                                            struct winbindd_response *presp);
939
940 struct tevent_req *winbindd_set_mapping_send(TALLOC_CTX *mem_ctx,
941                                              struct tevent_context *ev,
942                                              struct winbindd_cli_state *cli,
943                                              struct winbindd_request *request);
944 NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,
945                                    struct winbindd_response *response);
946
947 struct tevent_req *winbindd_remove_mapping_send(TALLOC_CTX *mem_ctx,
948                                                 struct tevent_context *ev,
949                                                 struct winbindd_cli_state *cli,
950                                                 struct winbindd_request *request);
951 NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req,
952                                       struct winbindd_response *response);
953
954 struct tevent_req *winbindd_set_hwm_send(TALLOC_CTX *mem_ctx,
955                                          struct tevent_context *ev,
956                                          struct winbindd_cli_state *cli,
957                                          struct winbindd_request *request);
958 NTSTATUS winbindd_set_hwm_recv(struct tevent_req *req,
959                                struct winbindd_response *response);
960
961 #endif /*  _WINBINDD_PROTO_H_  */