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