3ff8d0bdc196b1464dc6d1d0ec9c03d197ae2966
[metze/samba/wip.git] / source3 / include / 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 _PROTO_H_
24 #define _PROTO_H_
25
26
27 /* The following definitions come from auth/auth.c  */
28
29 NTSTATUS smb_register_auth(int version, const char *name, auth_init_function init);
30 bool load_auth_module(struct auth_context *auth_context, 
31                       const char *module, auth_methods **ret) ;
32 NTSTATUS make_auth_context_subsystem(TALLOC_CTX *mem_ctx,
33                                      struct auth_context **auth_context);
34 NTSTATUS make_auth_context_fixed(TALLOC_CTX *mem_ctx,
35                                  struct auth_context **auth_context,
36                                  uchar chal[8]) ;
37
38 /* The following definitions come from auth/auth_builtin.c  */
39
40 NTSTATUS auth_builtin_init(void);
41
42 /* The following definitions come from auth/auth_compat.c  */
43
44 NTSTATUS check_plaintext_password(const char *smb_name,
45                                   DATA_BLOB plaintext_password,
46                                   struct auth_serversupplied_info **server_info);
47 bool password_ok(struct auth_context *actx, bool global_encrypted,
48                  const char *session_workgroup,
49                  const char *smb_name, DATA_BLOB password_blob);
50
51 /* The following definitions come from auth/auth_domain.c  */
52
53 void attempt_machine_password_change(void);
54 NTSTATUS auth_domain_init(void);
55
56 NTSTATUS auth_netlogond_init(void);
57
58 /* The following definitions come from auth/auth_ntlmssp.c  */
59
60 NTSTATUS auth_ntlmssp_steal_session_info(TALLOC_CTX *mem_ctx,
61                                 struct auth_ntlmssp_state *auth_ntlmssp_state,
62                                 struct auth_serversupplied_info **session_info);
63 NTSTATUS auth_ntlmssp_start(struct auth_ntlmssp_state **auth_ntlmssp_state);
64
65
66 /* The following definitions come from auth/auth_sam.c  */
67
68 NTSTATUS check_sam_security(const DATA_BLOB *challenge,
69                             TALLOC_CTX *mem_ctx,
70                             const struct auth_usersupplied_info *user_info,
71                             struct auth_serversupplied_info **server_info);
72 NTSTATUS check_sam_security_info3(const DATA_BLOB *challenge,
73                                   TALLOC_CTX *mem_ctx,
74                                   const struct auth_usersupplied_info *user_info,
75                                   struct netr_SamInfo3 **pinfo3);
76 NTSTATUS auth_sam_init(void);
77
78 /* The following definitions come from auth/auth_server.c  */
79
80 NTSTATUS auth_server_init(void);
81
82 /* The following definitions come from auth/auth_unix.c  */
83
84 NTSTATUS auth_unix_init(void);
85
86 /* The following definitions come from auth/auth_util.c  */
87
88 NTSTATUS make_user_info_map(struct auth_usersupplied_info **user_info,
89                             const char *smb_name,
90                             const char *client_domain,
91                             const char *workstation_name,
92                             DATA_BLOB *lm_pwd,
93                             DATA_BLOB *nt_pwd,
94                             const struct samr_Password *lm_interactive_pwd,
95                             const struct samr_Password *nt_interactive_pwd,
96                             const char *plaintext,
97                             enum auth_password_state password_state);
98 bool make_user_info_netlogon_network(struct auth_usersupplied_info **user_info,
99                                      const char *smb_name, 
100                                      const char *client_domain, 
101                                      const char *workstation_name,
102                                      uint32 logon_parameters,
103                                      const uchar *lm_network_pwd,
104                                      int lm_pwd_len,
105                                      const uchar *nt_network_pwd,
106                                      int nt_pwd_len);
107 bool make_user_info_netlogon_interactive(struct auth_usersupplied_info **user_info,
108                                          const char *smb_name, 
109                                          const char *client_domain, 
110                                          const char *workstation_name,
111                                          uint32 logon_parameters,
112                                          const uchar chal[8], 
113                                          const uchar lm_interactive_pwd[16], 
114                                          const uchar nt_interactive_pwd[16], 
115                                          const uchar *dc_sess_key);
116 bool make_user_info_for_reply(struct auth_usersupplied_info **user_info,
117                               const char *smb_name, 
118                               const char *client_domain,
119                               const uint8 chal[8],
120                               DATA_BLOB plaintext_password);
121 NTSTATUS make_user_info_for_reply_enc(struct auth_usersupplied_info **user_info,
122                                       const char *smb_name,
123                                       const char *client_domain, 
124                                       DATA_BLOB lm_resp, DATA_BLOB nt_resp);
125 bool make_user_info_guest(struct auth_usersupplied_info **user_info) ;
126 NTSTATUS make_server_info_sam(struct auth_serversupplied_info **server_info,
127                               struct samu *sampass);
128 NTSTATUS create_local_token(TALLOC_CTX *mem_ctx, 
129                             struct auth_serversupplied_info *server_info, 
130                             DATA_BLOB *session_key, 
131                             struct auth_serversupplied_info **session_info_out);
132 NTSTATUS create_token_from_username(TALLOC_CTX *mem_ctx, const char *username,
133                                     bool is_guest,
134                                     uid_t *uid, gid_t *gid,
135                                     char **found_username,
136                                     struct security_token **token);
137 bool user_in_group_sid(const char *username, const struct dom_sid *group_sid);
138 bool user_in_group(const char *username, const char *groupname);
139 NTSTATUS make_server_info_pw(struct auth_serversupplied_info **server_info,
140                              char *unix_username,
141                              struct passwd *pwd);
142 NTSTATUS make_session_info_from_username(TALLOC_CTX *mem_ctx,
143                                          const char *username,
144                                          bool is_guest,
145                                          struct auth_serversupplied_info **session_info);
146 struct auth_serversupplied_info *copy_serverinfo(TALLOC_CTX *mem_ctx,
147                                                  const struct auth_serversupplied_info *src);
148 bool init_guest_info(void);
149 NTSTATUS init_system_info(void);
150 bool session_info_set_session_key(struct auth_serversupplied_info *info,
151                                  DATA_BLOB session_key);
152 NTSTATUS make_server_info_guest(TALLOC_CTX *mem_ctx,
153                                 struct auth_serversupplied_info **server_info);
154 NTSTATUS make_session_info_system(TALLOC_CTX *mem_ctx,
155                                  struct auth_serversupplied_info **session_info);
156 const struct auth_serversupplied_info *get_session_info_system(void);
157 bool copy_current_user(struct current_user *dst, struct current_user *src);
158 struct passwd *smb_getpwnam( TALLOC_CTX *mem_ctx, const char *domuser,
159                              char **p_save_username, bool create );
160 NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, 
161                                 const char *sent_nt_username,
162                                 const char *domain,
163                                 struct auth_serversupplied_info **server_info,
164                                 struct netr_SamInfo3 *info3);
165 NTSTATUS make_server_info_wbcAuthUserInfo(TALLOC_CTX *mem_ctx,
166                                           const char *sent_nt_username,
167                                           const char *domain,
168                                           const struct wbcAuthUserInfo *info,
169                                           struct auth_serversupplied_info **server_info);
170 void free_user_info(struct auth_usersupplied_info **user_info);
171 bool make_auth_methods(struct auth_context *auth_context, auth_methods **auth_method) ;
172 bool is_trusted_domain(const char* dom_name);
173
174 /* The following definitions come from auth/user_info.c  */
175
176 NTSTATUS make_user_info(struct auth_usersupplied_info **ret_user_info,
177                         const char *smb_name,
178                         const char *internal_username,
179                         const char *client_domain,
180                         const char *domain,
181                         const char *workstation_name,
182                         const DATA_BLOB *lm_pwd,
183                         const DATA_BLOB *nt_pwd,
184                         const struct samr_Password *lm_interactive_pwd,
185                         const struct samr_Password *nt_interactive_pwd,
186                         const char *plaintext_password,
187                         enum auth_password_state password_state);
188 void free_user_info(struct auth_usersupplied_info **user_info);
189
190 /* The following definitions come from auth/auth_winbind.c  */
191
192 NTSTATUS auth_winbind_init(void);
193
194 /* The following definitions come from auth/server_info.c  */
195
196 struct netr_SamInfo2;
197 struct netr_SamInfo3;
198 struct netr_SamInfo6;
199
200 struct auth_serversupplied_info *make_server_info(TALLOC_CTX *mem_ctx);
201 NTSTATUS serverinfo_to_SamInfo2(struct auth_serversupplied_info *server_info,
202                                 uint8_t *pipe_session_key,
203                                 size_t pipe_session_key_len,
204                                 struct netr_SamInfo2 *sam2);
205 NTSTATUS serverinfo_to_SamInfo3(const struct auth_serversupplied_info *server_info,
206                                 uint8_t *pipe_session_key,
207                                 size_t pipe_session_key_len,
208                                 struct netr_SamInfo3 *sam3);
209 NTSTATUS serverinfo_to_SamInfo6(struct auth_serversupplied_info *server_info,
210                                 uint8_t *pipe_session_key,
211                                 size_t pipe_session_key_len,
212                                 struct netr_SamInfo6 *sam6);
213 NTSTATUS samu_to_SamInfo3(TALLOC_CTX *mem_ctx,
214                           struct samu *samu,
215                           const char *login_server,
216                           struct netr_SamInfo3 **_info3,
217                           struct extra_auth_info *extra);
218 struct netr_SamInfo3 *copy_netr_SamInfo3(TALLOC_CTX *mem_ctx,
219                                          struct netr_SamInfo3 *orig);
220 struct netr_SamInfo3 *wbcAuthUserInfo_to_netr_SamInfo3(TALLOC_CTX *mem_ctx,
221                                         const struct wbcAuthUserInfo *info);
222
223 /* The following definitions come from auth/auth_wbc.c  */
224
225 NTSTATUS auth_wbc_init(void);
226
227 /* The following definitions come from auth/pampass.c  */
228
229 bool smb_pam_claim_session(char *user, char *tty, char *rhost);
230 bool smb_pam_close_session(char *user, char *tty, char *rhost);
231 NTSTATUS smb_pam_accountcheck(const char *user, const char *rhost);
232 NTSTATUS smb_pam_passcheck(const char * user, const char * rhost,
233                            const char * password);
234 bool smb_pam_passchange(const char *user, const char *rhost,
235                         const char *oldpassword, const char *newpassword);
236 bool smb_pam_claim_session(char *user, char *tty, char *rhost);
237 bool smb_pam_close_session(char *in_user, char *tty, char *rhost);
238
239 /* The following definitions come from auth/pass_check.c  */
240
241 void dfs_unlogin(void);
242 NTSTATUS pass_check(const struct passwd *pass,
243                     const char *user,
244                     const char *rhost,
245                     const char *password,
246                     bool run_cracker);
247
248 /* The following definitions come from auth/token_util.c  */
249
250 bool nt_token_check_sid ( const struct dom_sid *sid, const struct security_token *token );
251 bool nt_token_check_domain_rid( struct security_token *token, uint32 rid );
252 struct security_token *get_root_nt_token( void );
253 NTSTATUS add_aliases(const struct dom_sid *domain_sid,
254                      struct security_token *token);
255 NTSTATUS create_builtin_users(const struct dom_sid *sid);
256 NTSTATUS create_builtin_administrators(const struct dom_sid *sid);
257 struct security_token *create_local_nt_token(TALLOC_CTX *mem_ctx,
258                                             const struct dom_sid *user_sid,
259                                             bool is_guest,
260                                             int num_groupsids,
261                                             const struct dom_sid *groupsids);
262 NTSTATUS create_local_nt_token_from_info3(TALLOC_CTX *mem_ctx,
263                                           bool is_guest,
264                                           struct netr_SamInfo3 *info3,
265                                           struct extra_auth_info *extra,
266                                           struct security_token **ntok);
267 void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid,
268                            int n_groups, gid_t *groups);
269
270 /* The following definitions come from groupdb/mapping.c  */
271
272 NTSTATUS add_initial_entry(gid_t gid, const char *sid, enum lsa_SidType sid_name_use, const char *nt_name, const char *comment);
273 bool get_domain_group_from_sid(struct dom_sid sid, GROUP_MAP *map);
274 int smb_create_group(const char *unix_group, gid_t *new_gid);
275 int smb_delete_group(const char *unix_group);
276 int smb_set_primary_group(const char *unix_group, const char* unix_user);
277 int smb_add_user_group(const char *unix_group, const char *unix_user);
278 int smb_delete_user_group(const char *unix_group, const char *unix_user);
279 NTSTATUS pdb_default_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
280                                  struct dom_sid sid);
281 NTSTATUS pdb_default_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
282                                  gid_t gid);
283 NTSTATUS pdb_default_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
284                                  const char *name);
285 NTSTATUS pdb_default_add_group_mapping_entry(struct pdb_methods *methods,
286                                                 GROUP_MAP *map);
287 NTSTATUS pdb_default_update_group_mapping_entry(struct pdb_methods *methods,
288                                                    GROUP_MAP *map);
289 NTSTATUS pdb_default_delete_group_mapping_entry(struct pdb_methods *methods,
290                                                    struct dom_sid sid);
291 NTSTATUS pdb_default_enum_group_mapping(struct pdb_methods *methods,
292                                            const struct dom_sid *sid, enum lsa_SidType sid_name_use,
293                                            GROUP_MAP **pp_rmap, size_t *p_num_entries,
294                                            bool unix_only);
295 NTSTATUS pdb_default_create_alias(struct pdb_methods *methods,
296                                   const char *name, uint32 *rid);
297 NTSTATUS pdb_default_delete_alias(struct pdb_methods *methods,
298                                   const struct dom_sid *sid);
299 NTSTATUS pdb_default_get_aliasinfo(struct pdb_methods *methods,
300                                    const struct dom_sid *sid,
301                                    struct acct_info *info);
302 NTSTATUS pdb_default_set_aliasinfo(struct pdb_methods *methods,
303                                    const struct dom_sid *sid,
304                                    struct acct_info *info);
305 NTSTATUS pdb_default_add_aliasmem(struct pdb_methods *methods,
306                                   const struct dom_sid *alias, const struct dom_sid *member);
307 NTSTATUS pdb_default_del_aliasmem(struct pdb_methods *methods,
308                                   const struct dom_sid *alias, const struct dom_sid *member);
309 NTSTATUS pdb_default_enum_aliasmem(struct pdb_methods *methods,
310                                    const struct dom_sid *alias, TALLOC_CTX *mem_ctx,
311                                    struct dom_sid **pp_members,
312                                    size_t *p_num_members);
313 NTSTATUS pdb_default_alias_memberships(struct pdb_methods *methods,
314                                        TALLOC_CTX *mem_ctx,
315                                        const struct dom_sid *domain_sid,
316                                        const struct dom_sid *members,
317                                        size_t num_members,
318                                        uint32 **pp_alias_rids,
319                                        size_t *p_num_alias_rids);
320 NTSTATUS pdb_nop_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
321                                  struct dom_sid sid);
322 NTSTATUS pdb_nop_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
323                                  gid_t gid);
324 NTSTATUS pdb_nop_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
325                                  const char *name);
326 NTSTATUS pdb_nop_add_group_mapping_entry(struct pdb_methods *methods,
327                                                 GROUP_MAP *map);
328 NTSTATUS pdb_nop_update_group_mapping_entry(struct pdb_methods *methods,
329                                                    GROUP_MAP *map);
330 NTSTATUS pdb_nop_delete_group_mapping_entry(struct pdb_methods *methods,
331                                                    struct dom_sid sid);
332 NTSTATUS pdb_nop_enum_group_mapping(struct pdb_methods *methods,
333                                            enum lsa_SidType sid_name_use,
334                                            GROUP_MAP **rmap, size_t *num_entries,
335                                            bool unix_only);
336 bool pdb_get_dom_grp_info(const struct dom_sid *sid, struct acct_info *info);
337 bool pdb_set_dom_grp_info(const struct dom_sid *sid, const struct acct_info *info);
338 NTSTATUS pdb_create_builtin_alias(uint32 rid);
339
340 /* The following definitions come from groupdb/mapping_tdb.c  */
341
342 const struct mapping_backend *groupdb_tdb_init(void);
343
344 /* The following definitions come from intl/lang_tdb.c  */
345
346 bool lang_tdb_init(const char *lang);
347 const char *lang_msg(const char *msgid);
348 void lang_msg_free(const char *msgstr);
349 char *lang_tdb_current(void);
350
351 /* The following definitions come from lib/access.c  */
352
353 bool client_match(const char *tok, const void *item);
354 bool list_match(const char **list,const void *item,
355                 bool (*match_fn)(const char *, const void *));
356 bool allow_access(const char **deny_list,
357                 const char **allow_list,
358                 const char *cname,
359                 const char *caddr);
360
361 /* The following definitions come from passdb/account_pol.c  */
362
363 void account_policy_names_list(const char ***names, int *num_names);
364 const char *decode_account_policy_name(enum pdb_policy_type type);
365 const char *get_account_policy_attr(enum pdb_policy_type type);
366 const char *account_policy_get_desc(enum pdb_policy_type type);
367 enum pdb_policy_type account_policy_name_to_typenum(const char *name);
368 bool account_policy_get_default(enum pdb_policy_type type, uint32_t *val);
369 bool init_account_policy(void);
370 bool account_policy_get(enum pdb_policy_type type, uint32_t *value);
371 bool account_policy_set(enum pdb_policy_type type, uint32_t value);
372 bool cache_account_policy_set(enum pdb_policy_type type, uint32_t value);
373 bool cache_account_policy_get(enum pdb_policy_type type, uint32_t *value);
374 struct db_context *get_account_pol_db( void );
375
376 /* The following definitions come from lib/adt_tree.c  */
377
378
379 /* The following definitions come from lib/afs.c  */
380
381 char *afs_createtoken_str(const char *username, const char *cell);
382 bool afs_login(connection_struct *conn);
383 bool afs_login(connection_struct *conn);
384 char *afs_createtoken_str(const char *username, const char *cell);
385
386 /* The following definitions come from lib/afs_settoken.c  */
387
388 int afs_syscall( int subcall,
389           char * path,
390           int cmd,
391           char * cmarg,
392           int follow);
393 bool afs_settoken_str(const char *token_string);
394 bool afs_settoken_str(const char *token_string);
395
396 /* The following definitions come from lib/audit.c  */
397
398 const char *audit_category_str(uint32 category);
399 const char *audit_param_str(uint32 category);
400 const char *audit_description_str(uint32 category);
401 bool get_audit_category_from_param(const char *param, uint32 *audit_category);
402 const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32 policy);
403
404 /* The following definitions come from lib/bitmap.c  */
405
406 struct bitmap *bitmap_talloc(TALLOC_CTX *mem_ctx, int n);
407 int bitmap_copy(struct bitmap * const dst, const struct bitmap * const src);
408 bool bitmap_set(struct bitmap *bm, unsigned i);
409 bool bitmap_clear(struct bitmap *bm, unsigned i);
410 bool bitmap_query(struct bitmap *bm, unsigned i);
411 int bitmap_find(struct bitmap *bm, unsigned ofs);
412
413 /* The following definitions come from lib/charcnv.c  */
414
415 char lp_failed_convert_char(void);
416 void lazy_initialize_conv(void);
417 void gfree_charcnv(void);
418 void init_iconv(void);
419 size_t convert_string(charset_t from, charset_t to,
420                       void const *src, size_t srclen, 
421                       void *dest, size_t destlen, bool allow_bad_conv);
422 size_t unix_strupper(const char *src, size_t srclen, char *dest, size_t destlen);
423 char *talloc_strdup_upper(TALLOC_CTX *ctx, const char *s);
424 char *strupper_talloc(TALLOC_CTX *ctx, const char *s);
425 size_t unix_strlower(const char *src, size_t srclen, char *dest, size_t destlen);
426 char *talloc_strdup_lower(TALLOC_CTX *ctx, const char *s);
427 char *strlower_talloc(TALLOC_CTX *ctx, const char *s);
428 size_t ucs2_align(const void *base_ptr, const void *p, int flags);
429 size_t push_ascii(void *dest, const char *src, size_t dest_len, int flags);
430 size_t push_ascii_fstring(void *dest, const char *src);
431 size_t push_ascii_nstring(void *dest, const char *src);
432 size_t pull_ascii(char *dest, const void *src, size_t dest_len, size_t src_len, int flags);
433 size_t pull_ascii_fstring(char *dest, const void *src);
434 size_t pull_ascii_nstring(char *dest, size_t dest_len, const void *src);
435 size_t push_ucs2(const void *base_ptr, void *dest, const char *src, size_t dest_len, int flags);
436 size_t push_utf8_fstring(void *dest, const char *src);
437 bool push_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
438                       size_t *converted_size);
439 size_t pull_ucs2(const void *base_ptr, char *dest, const void *src, size_t dest_len, size_t src_len, int flags);
440 size_t pull_ucs2_base_talloc(TALLOC_CTX *ctx,
441                         const void *base_ptr,
442                         char **ppdest,
443                         const void *src,
444                         size_t src_len,
445                         int flags);
446 size_t pull_ucs2_fstring(char *dest, const void *src);
447 bool push_ucs2_talloc(TALLOC_CTX *ctx, smb_ucs2_t **dest, const char *src,
448                       size_t *converted_size);
449 bool pull_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
450                       size_t *converted_size);
451 bool pull_ucs2_talloc(TALLOC_CTX *ctx, char **dest, const smb_ucs2_t *src,
452                       size_t *converted_size);
453 bool pull_ascii_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
454                        size_t *converted_size);
455 size_t push_string_check_fn(const char *function, unsigned int line,
456                             void *dest, const char *src,
457                             size_t dest_len, int flags);
458 size_t push_string_base(const char *function, unsigned int line,
459                         const char *base, uint16 flags2, 
460                         void *dest, const char *src,
461                         size_t dest_len, int flags);
462 size_t pull_string_fn(const char *function,
463                         unsigned int line,
464                         const void *base_ptr,
465                         uint16 smb_flags2,
466                         char *dest,
467                         const void *src,
468                         size_t dest_len,
469                         size_t src_len,
470                         int flags);
471 size_t pull_string_talloc_fn(const char *function,
472                         unsigned int line,
473                         TALLOC_CTX *ctx,
474                         const void *base_ptr,
475                         uint16 smb_flags2,
476                         char **ppdest,
477                         const void *src,
478                         size_t src_len,
479                         int flags);
480 size_t align_string(const void *base_ptr, const char *p, int flags);
481 codepoint_t next_codepoint_ext(const char *str, charset_t src_charset,
482                                size_t *bytes_consumed);
483 codepoint_t next_codepoint(const char *str, size_t *size);
484
485 /* The following definitions come from lib/clobber.c  */
486
487 void clobber_region(const char *fn, unsigned int line, char *dest, size_t len);
488
489 /* The following definitions come from lib/conn_tdb.c  */
490
491 struct db_record *connections_fetch_entry(TALLOC_CTX *mem_ctx,
492                                           connection_struct *conn,
493                                           const char *name);
494 int connections_traverse(int (*fn)(struct db_record *rec,
495                                    void *private_data),
496                          void *private_data);
497 int connections_forall(int (*fn)(struct db_record *rec,
498                                  const struct connections_key *key,
499                                  const struct connections_data *data,
500                                  void *private_data),
501                        void *private_data);
502 int connections_forall_read(int (*fn)(const struct connections_key *key,
503                                       const struct connections_data *data,
504                                       void *private_data),
505                             void *private_data);
506 bool connections_init(bool rw);
507
508 /* The following definitions come from lib/display_sec.c  */
509
510 char *get_sec_mask_str(TALLOC_CTX *ctx, uint32 type);
511 void display_sec_access(uint32_t *info);
512 void display_sec_ace_flags(uint8_t flags);
513 void display_sec_ace(struct security_ace *ace);
514 void display_sec_acl(struct security_acl *sec_acl);
515 void display_acl_type(uint16 type);
516 void display_sec_desc(struct security_descriptor *sec);
517
518 /* The following definitions come from lib/dmallocmsg.c  */
519
520 void register_dmalloc_msgs(struct messaging_context *msg_ctx);
521
522 /* The following definitions come from lib/dprintf.c  */
523
524 void display_set_stderr(void);
525
526 /* The following definitions come from lib/errmap_unix.c  */
527
528 NTSTATUS map_nt_error_from_unix(int unix_error);
529 int map_errno_from_nt_status(NTSTATUS status);
530
531 /* The following definitions come from lib/fault.c  */
532 void fault_setup(void (*fn)(void *));
533 void dump_core_setup(const char *progname);
534
535 /* The following definitions come from lib/file_id.c  */
536
537 struct file_id vfs_file_id_from_sbuf(connection_struct *conn, const SMB_STRUCT_STAT *sbuf);
538 bool file_id_equal(const struct file_id *id1, const struct file_id *id2);
539 const char *file_id_string_tos(const struct file_id *id);
540 void push_file_id_16(char *buf, const struct file_id *id);
541 void push_file_id_24(char *buf, const struct file_id *id);
542 void pull_file_id_24(char *buf, struct file_id *id);
543
544 /* The following definitions come from lib/gencache.c  */
545
546 bool gencache_set(const char *keystr, const char *value, time_t timeout);
547 bool gencache_del(const char *keystr);
548 bool gencache_get(const char *keystr, char **valstr, time_t *timeout);
549 bool gencache_parse(const char *keystr,
550                     void (*parser)(time_t timeout, DATA_BLOB blob,
551                                    void *private_data),
552                     void *private_data);
553 bool gencache_get_data_blob(const char *keystr, DATA_BLOB *blob,
554                             time_t *timeout, bool *was_expired);
555 bool gencache_stabilize(void);
556 bool gencache_set_data_blob(const char *keystr, const DATA_BLOB *blob, time_t timeout);
557 void gencache_iterate_blobs(void (*fn)(const char *key, DATA_BLOB value,
558                                        time_t timeout, void *private_data),
559                             void *private_data, const char *pattern);
560 void gencache_iterate(void (*fn)(const char* key, const char *value, time_t timeout, void* dptr),
561                       void* data, const char* keystr_pattern);
562
563 /* The following definitions come from lib/interface.c  */
564
565 bool ismyaddr(const struct sockaddr *ip);
566 bool ismyip_v4(struct in_addr ip);
567 bool is_local_net(const struct sockaddr *from);
568 void setup_linklocal_scope_id(struct sockaddr *pss);
569 bool is_local_net_v4(struct in_addr from);
570 int iface_count(void);
571 int iface_count_v4_nl(void);
572 const struct in_addr *first_ipv4_iface(void);
573 struct interface *get_interface(int n);
574 const struct sockaddr_storage *iface_n_sockaddr_storage(int n);
575 const struct in_addr *iface_n_ip_v4(int n);
576 const struct in_addr *iface_n_bcast_v4(int n);
577 const struct sockaddr_storage *iface_n_bcast(int n);
578 const struct sockaddr_storage *iface_ip(const struct sockaddr *ip);
579 bool iface_local(const struct sockaddr *ip);
580 void load_interfaces(void);
581 void gfree_interfaces(void);
582 bool interfaces_changed(void);
583
584 /* The following definitions come from lib/ldap_debug_handler.c  */
585
586 void init_ldap_debugging(void);
587
588 /* The following definitions come from lib/ldap_escape.c  */
589
590 char *escape_ldap_string(TALLOC_CTX *mem_ctx, const char *s);
591 char *escape_rdn_val_string_alloc(const char *s);
592
593 /* The following definitions come from lib/module.c  */
594
595 NTSTATUS smb_load_module(const char *module_name);
596 int smb_load_modules(const char **modules);
597 NTSTATUS smb_probe_module(const char *subsystem, const char *module);
598 NTSTATUS smb_load_module(const char *module_name);
599 int smb_load_modules(const char **modules);
600 NTSTATUS smb_probe_module(const char *subsystem, const char *module);
601 void init_modules(void);
602
603 /* The following definitions come from lib/ms_fnmatch.c  */
604
605 int ms_fnmatch(const char *pattern, const char *string, bool translate_pattern,
606                bool is_case_sensitive);
607 int gen_fnmatch(const char *pattern, const char *string);
608
609 /* The following definitions come from lib/pidfile.c  */
610
611 pid_t pidfile_pid(const char *name);
612 void pidfile_create(const char *program_name);
613 void pidfile_unlink(void);
614
615 /* The following definitions come from lib/privileges.c  */
616
617 bool get_privileges_for_sids(uint64_t *privileges, struct dom_sid *slist, int scount);
618 NTSTATUS get_privileges_for_sid_as_set(TALLOC_CTX *mem_ctx, PRIVILEGE_SET **privileges, struct dom_sid *sid);
619 NTSTATUS privilege_enumerate_accounts(struct dom_sid **sids, int *num_sids);
620 NTSTATUS privilege_enum_sids(enum sec_privilege privilege, TALLOC_CTX *mem_ctx,
621                              struct dom_sid **sids, int *num_sids);
622 bool grant_privilege_set(const struct dom_sid *sid, struct lsa_PrivilegeSet *set);
623 bool grant_privilege_by_name( const struct dom_sid *sid, const char *name);
624 bool revoke_all_privileges( const struct dom_sid *sid );
625 bool revoke_privilege_set(const struct dom_sid *sid, struct lsa_PrivilegeSet *set);
626 bool revoke_privilege_by_name(const struct dom_sid *sid, const char *name);
627 NTSTATUS privilege_create_account(const struct dom_sid *sid );
628 NTSTATUS privilege_delete_account(const struct dom_sid *sid);
629 NTSTATUS privilege_set_init(PRIVILEGE_SET *priv_set);
630 NTSTATUS privilege_set_init_by_ctx(TALLOC_CTX *mem_ctx, PRIVILEGE_SET *priv_set);
631 void privilege_set_free(PRIVILEGE_SET *priv_set);
632 bool is_privileged_sid( const struct dom_sid *sid );
633 bool grant_all_privileges( const struct dom_sid *sid );
634
635 /* The following definitions come from lib/recvfile.c  */
636
637 ssize_t sys_recvfile(int fromfd,
638                         int tofd,
639                         SMB_OFF_T offset,
640                         size_t count);
641 ssize_t sys_recvfile(int fromfd,
642                         int tofd,
643                         SMB_OFF_T offset,
644                         size_t count);
645 ssize_t drain_socket(int sockfd, size_t count);
646
647 /* The following definitions come from lib/secdesc.c  */
648
649 uint32_t get_sec_info(const struct security_descriptor *sd);
650 struct security_descriptor *sec_desc_merge(TALLOC_CTX *ctx, struct security_descriptor *new_sdb, struct security_descriptor *old_sdb);
651 struct sec_desc_buf *sec_desc_merge_buf(TALLOC_CTX *ctx, struct sec_desc_buf *new_sdb, struct sec_desc_buf *old_sdb);
652 struct security_descriptor *make_sec_desc(TALLOC_CTX *ctx,
653                         enum security_descriptor_revision revision,
654                         uint16 type,
655                         const struct dom_sid *owner_sid, const struct dom_sid *grp_sid,
656                         struct security_acl *sacl, struct security_acl *dacl, size_t *sd_size);
657 struct security_descriptor *dup_sec_desc(TALLOC_CTX *ctx, const struct security_descriptor *src);
658 NTSTATUS marshall_sec_desc(TALLOC_CTX *mem_ctx,
659                            struct security_descriptor *secdesc,
660                            uint8 **data, size_t *len);
661 NTSTATUS marshall_sec_desc_buf(TALLOC_CTX *mem_ctx,
662                                struct sec_desc_buf *secdesc_buf,
663                                uint8_t **data, size_t *len);
664 NTSTATUS unmarshall_sec_desc(TALLOC_CTX *mem_ctx, uint8 *data, size_t len,
665                              struct security_descriptor **psecdesc);
666 NTSTATUS unmarshall_sec_desc_buf(TALLOC_CTX *mem_ctx, uint8_t *data, size_t len,
667                                  struct sec_desc_buf **psecdesc_buf);
668 struct security_descriptor *make_standard_sec_desc(TALLOC_CTX *ctx, const struct dom_sid *owner_sid, const struct dom_sid *grp_sid,
669                                  struct security_acl *dacl, size_t *sd_size);
670 struct sec_desc_buf *make_sec_desc_buf(TALLOC_CTX *ctx, size_t len, struct security_descriptor *sec_desc);
671 struct sec_desc_buf *dup_sec_desc_buf(TALLOC_CTX *ctx, struct sec_desc_buf *src);
672 NTSTATUS sec_desc_add_sid(TALLOC_CTX *ctx, struct security_descriptor **psd, const struct dom_sid *sid, uint32 mask, size_t *sd_size);
673 NTSTATUS sec_desc_mod_sid(struct security_descriptor *sd, struct dom_sid *sid, uint32 mask);
674 NTSTATUS sec_desc_del_sid(TALLOC_CTX *ctx, struct security_descriptor **psd, struct dom_sid *sid, size_t *sd_size);
675 bool sd_has_inheritable_components(const struct security_descriptor *parent_ctr, bool container);
676 NTSTATUS se_create_child_secdesc(TALLOC_CTX *ctx,
677                                         struct security_descriptor **ppsd,
678                                         size_t *psize,
679                                         const struct security_descriptor *parent_ctr,
680                                         const struct dom_sid *owner_sid,
681                                         const struct dom_sid *group_sid,
682                                         bool container);
683 NTSTATUS se_create_child_secdesc_buf(TALLOC_CTX *ctx,
684                                         struct sec_desc_buf **ppsdb,
685                                         const struct security_descriptor *parent_ctr,
686                                         bool container);
687
688 /* The following definitions come from lib/sendfile.c  */
689
690 ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
691
692 /* The following definitions come from lib/server_mutex.c  */
693
694 struct named_mutex *grab_named_mutex(TALLOC_CTX *mem_ctx, const char *name,
695                                      int timeout);
696
697 /* The following definitions come from lib/sharesec.c  */
698
699 bool share_info_db_init(void);
700 struct security_descriptor *get_share_security_default( TALLOC_CTX *ctx, size_t *psize, uint32 def_access);
701 struct security_descriptor *get_share_security( TALLOC_CTX *ctx, const char *servicename,
702                               size_t *psize);
703 bool set_share_security(const char *share_name, struct security_descriptor *psd);
704 bool delete_share_security(const char *servicename);
705 bool share_access_check(const struct security_token *token, const char *sharename,
706                         uint32 desired_access);
707 bool parse_usershare_acl(TALLOC_CTX *ctx, const char *acl_str, struct security_descriptor **ppsd);
708
709 /* The following definitions come from lib/smbrun.c  */
710
711 int smbrun_no_sanitize(const char *cmd, int *outfd);
712 int smbrun(const char *cmd, int *outfd);
713 int smbrunsecret(const char *cmd, const char *secret);
714
715 /* The following definitions come from lib/sock_exec.c  */
716
717 int sock_exec(const char *prog);
718
719 /* The following definitions come from lib/substitute.c  */
720
721 void free_local_machine_name(void);
722 bool set_local_machine_name(const char *local_name, bool perm);
723 const char *get_local_machine_name(void);
724 bool set_remote_machine_name(const char *remote_name, bool perm);
725 const char *get_remote_machine_name(void);
726 void sub_set_smb_name(const char *name);
727 void set_current_user_info(const char *smb_name, const char *unix_name,
728                            const char *domain);
729 void sub_set_socket_ids(const char *peeraddr, const char *peername,
730                         const char *sockaddr);
731 const char *get_current_username(void);
732 void standard_sub_basic(const char *smb_name, const char *domain_name,
733                         char *str, size_t len);
734 char *talloc_sub_basic(TALLOC_CTX *mem_ctx, const char *smb_name,
735                        const char *domain_name, const char *str);
736 char *talloc_sub_specified(TALLOC_CTX *mem_ctx,
737                         const char *input_string,
738                         const char *username,
739                         const char *domain,
740                         uid_t uid,
741                         gid_t gid);
742 char *talloc_sub_advanced(TALLOC_CTX *mem_ctx,
743                           const char *servicename, const char *user,
744                           const char *connectpath, gid_t gid,
745                           const char *smb_name, const char *domain_name,
746                           const char *str);
747 void standard_sub_advanced(const char *servicename, const char *user,
748                            const char *connectpath, gid_t gid,
749                            const char *smb_name, const char *domain_name,
750                            char *str, size_t len);
751 char *standard_sub_conn(TALLOC_CTX *ctx, connection_struct *conn, const char *str);
752
753 /* The following definitions come from lib/sysacls.c  */
754
755 int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p);
756 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p);
757 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
758 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
759 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d);
760 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
761 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
762 char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p);
763 SMB_ACL_T sys_acl_init(int count);
764 int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p);
765 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type);
766 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p);
767 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d);
768 int sys_acl_free_text(char *text);
769 int sys_acl_free_acl(SMB_ACL_T acl_d) ;
770 int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype);
771 int sys_acl_valid(SMB_ACL_T acl_d);
772 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle, 
773                            const char *path_p, SMB_ACL_TYPE_T type);
774 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
775 int sys_acl_set_file(vfs_handle_struct *handle,
776                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
777 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
778                    SMB_ACL_T acl_d);
779 int sys_acl_delete_def_file(vfs_handle_struct *handle,
780                             const char *path);
781 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle,
782                            const char *path_p, SMB_ACL_TYPE_T type);
783 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
784 int sys_acl_set_file(vfs_handle_struct *handle,
785                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
786 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
787                    SMB_ACL_T acl_d);
788 int sys_acl_delete_def_file(vfs_handle_struct *handle,
789                             const char *path);
790 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle,
791                            const char *path_p, SMB_ACL_TYPE_T type);
792 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
793 int sys_acl_set_file(vfs_handle_struct *handle,
794                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
795 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
796                    SMB_ACL_T acl_d);
797 int sys_acl_delete_def_file(vfs_handle_struct *handle,
798                             const char *path);
799 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle,
800                            const char *path_p, SMB_ACL_TYPE_T type);
801 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
802 int sys_acl_set_file(vfs_handle_struct *handle,
803                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
804 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
805                    SMB_ACL_T acl_d);
806 int sys_acl_delete_def_file(vfs_handle_struct *handle,
807                             const char *path);
808 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle,
809                            const char *path_p, SMB_ACL_TYPE_T type);
810 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
811 int sys_acl_set_file(vfs_handle_struct *handle,
812                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
813 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
814                    SMB_ACL_T acl_d);
815 int sys_acl_delete_def_file(vfs_handle_struct *handle,
816                             const char *path);
817 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle,
818                            const char *path_p, SMB_ACL_TYPE_T type);
819 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
820 int sys_acl_set_file(vfs_handle_struct *handle,
821                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
822 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
823                    SMB_ACL_T acl_d);
824 int sys_acl_delete_def_file(vfs_handle_struct *handle,
825                             const char *path);
826 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle,
827                            const char *path_p, SMB_ACL_TYPE_T type);
828 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
829 int sys_acl_set_file(vfs_handle_struct *handle,
830                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
831 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
832                    SMB_ACL_T acl_d);
833 int sys_acl_delete_def_file(vfs_handle_struct *handle,
834                             const char *path);
835 int no_acl_syscall_error(int err);
836
837 /* The following definitions come from lib/sysquotas.c  */
838
839 int sys_get_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
840 int sys_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
841
842 /* The following definitions come from lib/sysquotas_*.c  */
843
844 int sys_get_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
845 int sys_set_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
846
847 int sys_get_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
848 int sys_set_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
849
850 int sys_get_nfs_quota(const char *path, const char *bdev,
851                       enum SMB_QUOTA_TYPE qtype,
852                       unid_t id, SMB_DISK_QUOTA *dp);
853 int sys_set_nfs_quota(const char *path, const char *bdev,
854                       enum SMB_QUOTA_TYPE qtype,
855                       unid_t id, SMB_DISK_QUOTA *dp);
856
857 /* The following definitions come from lib/system.c  */
858
859 void *sys_memalign( size_t align, size_t size );
860 int sys_usleep(long usecs);
861 ssize_t sys_read(int fd, void *buf, size_t count);
862 ssize_t sys_write(int fd, const void *buf, size_t count);
863 ssize_t sys_writev(int fd, const struct iovec *iov, int iovcnt);
864 ssize_t sys_pread(int fd, void *buf, size_t count, SMB_OFF_T off);
865 ssize_t sys_pwrite(int fd, const void *buf, size_t count, SMB_OFF_T off);
866 ssize_t sys_send(int s, const void *msg, size_t len, int flags);
867 ssize_t sys_sendto(int s,  const void *msg, size_t len, int flags, const struct sockaddr *to, socklen_t tolen);
868 ssize_t sys_recv(int fd, void *buf, size_t count, int flags);
869 ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen);
870 int sys_fcntl_ptr(int fd, int cmd, void *arg);
871 int sys_fcntl_long(int fd, int cmd, long arg);
872 void update_stat_ex_mtime(struct stat_ex *dst, struct timespec write_ts);
873 void update_stat_ex_create_time(struct stat_ex *dst, struct timespec create_time);
874 int sys_stat(const char *fname, SMB_STRUCT_STAT *sbuf,
875              bool fake_dir_create_times);
876 int sys_fstat(int fd, SMB_STRUCT_STAT *sbuf,
877               bool fake_dir_create_times);
878 int sys_lstat(const char *fname,SMB_STRUCT_STAT *sbuf,
879               bool fake_dir_create_times);
880 int sys_ftruncate(int fd, SMB_OFF_T offset);
881 int sys_posix_fallocate(int fd, SMB_OFF_T offset, SMB_OFF_T len);
882 int sys_fallocate(int fd, enum vfs_fallocate_mode mode, SMB_OFF_T offset, SMB_OFF_T len);
883 SMB_OFF_T sys_lseek(int fd, SMB_OFF_T offset, int whence);
884 int sys_fseek(FILE *fp, SMB_OFF_T offset, int whence);
885 SMB_OFF_T sys_ftell(FILE *fp);
886 int sys_creat(const char *path, mode_t mode);
887 int sys_open(const char *path, int oflag, mode_t mode);
888 FILE *sys_fopen(const char *path, const char *type);
889 void kernel_flock(int fd, uint32 share_mode, uint32 access_mask);
890 SMB_STRUCT_DIR *sys_opendir(const char *name);
891 SMB_STRUCT_DIR *sys_fdopendir(int fd);
892 SMB_STRUCT_DIRENT *sys_readdir(SMB_STRUCT_DIR *dirp);
893 void sys_seekdir(SMB_STRUCT_DIR *dirp, long offset);
894 long sys_telldir(SMB_STRUCT_DIR *dirp);
895 void sys_rewinddir(SMB_STRUCT_DIR *dirp);
896 int sys_closedir(SMB_STRUCT_DIR *dirp);
897 int sys_mknod(const char *path, mode_t mode, SMB_DEV_T dev);
898 int sys_waitpid(pid_t pid,int *status,int options);
899 char *sys_getwd(char *s);
900 void set_effective_capability(enum smbd_capability capability);
901 void drop_effective_capability(enum smbd_capability capability);
902 long sys_random(void);
903 void sys_srandom(unsigned int seed);
904 int groups_max(void);
905 int sys_getgroups(int setlen, gid_t *gidset);
906 int sys_setgroups(gid_t UNUSED(primary_gid), int setlen, gid_t *gidset);
907 void sys_setpwent(void);
908 struct passwd *sys_getpwent(void);
909 void sys_endpwent(void);
910 struct passwd *sys_getpwnam(const char *name);
911 struct passwd *sys_getpwuid(uid_t uid);
912 struct group *sys_getgrnam(const char *name);
913 struct group *sys_getgrgid(gid_t gid);
914 int sys_popen(const char *command);
915 int sys_pclose(int fd);
916 ssize_t sys_getxattr (const char *path, const char *name, void *value, size_t size);
917 ssize_t sys_lgetxattr (const char *path, const char *name, void *value, size_t size);
918 ssize_t sys_fgetxattr (int filedes, const char *name, void *value, size_t size);
919 ssize_t sys_listxattr (const char *path, char *list, size_t size);
920 ssize_t sys_llistxattr (const char *path, char *list, size_t size);
921 ssize_t sys_flistxattr (int filedes, char *list, size_t size);
922 int sys_removexattr (const char *path, const char *name);
923 int sys_lremovexattr (const char *path, const char *name);
924 int sys_fremovexattr (int filedes, const char *name);
925 int sys_setxattr (const char *path, const char *name, const void *value, size_t size, int flags);
926 int sys_lsetxattr (const char *path, const char *name, const void *value, size_t size, int flags);
927 int sys_fsetxattr (int filedes, const char *name, const void *value, size_t size, int flags);
928 uint32 unix_dev_major(SMB_DEV_T dev);
929 uint32 unix_dev_minor(SMB_DEV_T dev);
930 int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
931 int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
932 ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
933 int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
934 int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
935 int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
936 int sys_aio_suspend(const SMB_STRUCT_AIOCB * const cblist[], int n, const struct timespec *timeout);
937 int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
938 int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
939 ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
940 int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
941 int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
942 int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
943 int sys_aio_suspend(const SMB_STRUCT_AIOCB * const cblist[], int n, const struct timespec *timeout);
944 int sys_getpeereid( int s, uid_t *uid);
945 int sys_getnameinfo(const struct sockaddr *psa,
946                         socklen_t salen,
947                         char *host,
948                         size_t hostlen,
949                         char *service,
950                         size_t servlen,
951                         int flags);
952 int sys_connect(int fd, const struct sockaddr * addr);
953
954 /* The following definitions come from lib/system_smbd.c  */
955
956 bool getgroups_unix_user(TALLOC_CTX *mem_ctx, const char *user,
957                          gid_t primary_gid,
958                          gid_t **ret_groups, uint32_t *p_ngroups);
959
960 /* The following definitions come from lib/tallocmsg.c  */
961
962 void register_msg_pool_usage(struct messaging_context *msg_ctx);
963
964 /* The following definitions come from lib/time.c  */
965
966 void push_dos_date(uint8_t *buf, int offset, time_t unixdate, int zone_offset);
967 void push_dos_date2(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
968 void push_dos_date3(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
969 time_t pull_dos_date(const uint8_t *date_ptr, int zone_offset);
970 time_t pull_dos_date2(const uint8_t *date_ptr, int zone_offset);
971 time_t pull_dos_date3(const uint8_t *date_ptr, int zone_offset);
972 uint32_t convert_time_t_to_uint32_t(time_t t);
973 time_t convert_uint32_t_to_time_t(uint32_t u);
974 bool nt_time_is_zero(const NTTIME *nt);
975 time_t generalized_to_unix_time(const char *str);
976 int get_server_zone_offset(void);
977 int set_server_zone_offset(time_t t);
978 char *timeval_string(TALLOC_CTX *ctx, const struct timeval *tp, bool hires);
979 char *current_timestring(TALLOC_CTX *ctx, bool hires);
980 void srv_put_dos_date(char *buf,int offset,time_t unixdate);
981 void srv_put_dos_date2(char *buf,int offset, time_t unixdate);
982 void srv_put_dos_date3(char *buf,int offset,time_t unixdate);
983 void round_timespec(enum timestamp_set_resolution res, struct timespec *ts);
984 void put_long_date_timespec(enum timestamp_set_resolution res, char *p, struct timespec ts);
985 void put_long_date(char *p, time_t t);
986 void dos_filetime_timespec(struct timespec *tsp);
987 time_t make_unix_date(const void *date_ptr, int zone_offset);
988 time_t make_unix_date2(const void *date_ptr, int zone_offset);
989 time_t make_unix_date3(const void *date_ptr, int zone_offset);
990 time_t srv_make_unix_date(const void *date_ptr);
991 time_t srv_make_unix_date2(const void *date_ptr);
992 time_t srv_make_unix_date3(const void *date_ptr);
993 time_t convert_timespec_to_time_t(struct timespec ts);
994 struct timespec convert_time_t_to_timespec(time_t t);
995 struct timespec convert_timeval_to_timespec(const struct timeval tv);
996 struct timeval convert_timespec_to_timeval(const struct timespec ts);
997 struct timespec timespec_current(void);
998 struct timespec timespec_min(const struct timespec *ts1,
999                            const struct timespec *ts2);
1000 int timespec_compare(const struct timespec *ts1, const struct timespec *ts2);
1001 void round_timespec_to_sec(struct timespec *ts);
1002 void round_timespec_to_usec(struct timespec *ts);
1003 struct timespec interpret_long_date(const char *p);
1004 void TimeInit(void);
1005 void get_process_uptime(struct timeval *ret_time);
1006 void get_startup_time(struct timeval *ret_time);
1007 time_t nt_time_to_unix_abs(const NTTIME *nt);
1008 time_t uint64s_nt_time_to_unix_abs(const uint64_t *src);
1009 void unix_timespec_to_nt_time(NTTIME *nt, struct timespec ts);
1010 void unix_to_nt_time_abs(NTTIME *nt, time_t t);
1011 const char *time_to_asc(const time_t t);
1012 const char *display_time(NTTIME nttime);
1013 bool nt_time_is_set(const NTTIME *nt);
1014
1015 /* The following definitions come from lib/username.c  */
1016
1017 struct passwd *tcopy_passwd(TALLOC_CTX *mem_ctx, const struct passwd *from) ;
1018 void flush_pwnam_cache(void);
1019 struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) ;
1020 char *get_user_home_dir(TALLOC_CTX *mem_ctx, const char *user);
1021 struct passwd *Get_Pwnam_alloc(TALLOC_CTX *mem_ctx, const char *user);
1022
1023 /* The following definitions come from lib/util_names.c  */
1024 void gfree_netbios_names(void);
1025 bool set_global_myname(const char *myname);
1026 const char *global_myname(void);
1027 bool set_global_myworkgroup(const char *myworkgroup);
1028 const char *lp_workgroup(void);
1029 const char *get_global_sam_name(void);
1030
1031 /* The following definitions come from lib/util.c  */
1032
1033 enum protocol_types get_Protocol(void);
1034 void set_Protocol(enum protocol_types  p);
1035 bool all_zero(const uint8_t *ptr, size_t size);
1036 bool set_global_scope(const char *scope);
1037 const char *global_scope(void);
1038 void gfree_names(void);
1039 void gfree_all( void );
1040 const char *my_netbios_names(int i);
1041 bool set_netbios_aliases(const char **str_array);
1042 bool init_names(void);
1043 struct user_auth_info *user_auth_info_init(TALLOC_CTX *mem_ctx);
1044 const char *get_cmdline_auth_info_username(const struct user_auth_info *auth_info);
1045 void set_cmdline_auth_info_username(struct user_auth_info *auth_info,
1046                                     const char *username);
1047 const char *get_cmdline_auth_info_domain(const struct user_auth_info *auth_info);
1048 void set_cmdline_auth_info_domain(struct user_auth_info *auth_info,
1049                                   const char *domain);
1050 void set_cmdline_auth_info_password(struct user_auth_info *auth_info,
1051                                     const char *password);
1052 const char *get_cmdline_auth_info_password(const struct user_auth_info *auth_info);
1053 bool set_cmdline_auth_info_signing_state(struct user_auth_info *auth_info,
1054                                          const char *arg);
1055 int get_cmdline_auth_info_signing_state(const struct user_auth_info *auth_info);
1056 void set_cmdline_auth_info_use_ccache(struct user_auth_info *auth_info,
1057                                       bool b);
1058 bool get_cmdline_auth_info_use_ccache(const struct user_auth_info *auth_info);
1059 void set_cmdline_auth_info_use_kerberos(struct user_auth_info *auth_info,
1060                                         bool b);
1061 bool get_cmdline_auth_info_use_kerberos(const struct user_auth_info *auth_info);
1062 void set_cmdline_auth_info_fallback_after_kerberos(struct user_auth_info *auth_info,
1063                                         bool b);
1064 bool get_cmdline_auth_info_fallback_after_kerberos(const struct user_auth_info *auth_info);
1065 void set_cmdline_auth_info_use_krb5_ticket(struct user_auth_info *auth_info);
1066 void set_cmdline_auth_info_smb_encrypt(struct user_auth_info *auth_info);
1067 void set_cmdline_auth_info_use_machine_account(struct user_auth_info *auth_info);
1068 bool get_cmdline_auth_info_got_pass(const struct user_auth_info *auth_info);
1069 bool get_cmdline_auth_info_smb_encrypt(const struct user_auth_info *auth_info);
1070 bool get_cmdline_auth_info_use_machine_account(const struct user_auth_info *auth_info);
1071 struct user_auth_info *get_cmdline_auth_info_copy(TALLOC_CTX *mem_ctx,
1072                                                  const struct user_auth_info *info);
1073 bool set_cmdline_auth_info_machine_account_creds(struct user_auth_info *auth_info);
1074 void set_cmdline_auth_info_getpass(struct user_auth_info *auth_info);
1075 bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf,
1076                      bool fake_dir_create_times);
1077 bool socket_exist(const char *fname);
1078 uint64_t get_file_size_stat(const SMB_STRUCT_STAT *sbuf);
1079 SMB_OFF_T get_file_size(char *file_name);
1080 char *attrib_string(uint16 mode);
1081 void show_msg(char *buf);
1082 void smb_set_enclen(char *buf,int len,uint16 enc_ctx_num);
1083 void smb_setlen(char *buf,int len);
1084 int set_message_bcc(char *buf,int num_bytes);
1085 ssize_t message_push_blob(uint8 **outbuf, DATA_BLOB blob);
1086 char *unix_clean_name(TALLOC_CTX *ctx, const char *s);
1087 char *clean_name(TALLOC_CTX *ctx, const char *s);
1088 ssize_t write_data_at_offset(int fd, const char *buffer, size_t N, SMB_OFF_T pos);
1089 int set_blocking(int fd, bool set);
1090 NTSTATUS reinit_after_fork(struct messaging_context *msg_ctx,
1091                            struct event_context *ev_ctx,
1092                            struct server_id id,
1093                            bool parent_longlived);
1094 void *malloc_(size_t size);
1095 void *memalign_array(size_t el_size, size_t align, unsigned int count);
1096 void *calloc_array(size_t size, size_t nmemb);
1097 void *Realloc(void *p, size_t size, bool free_old_on_error);
1098 void add_to_large_array(TALLOC_CTX *mem_ctx, size_t element_size,
1099                         void *element, void *_array, uint32 *num_elements,
1100                         ssize_t *array_size);
1101 char *get_myname(TALLOC_CTX *ctx);
1102 char *get_mydnsdomname(TALLOC_CTX *ctx);
1103 int interpret_protocol(const char *str,int def);
1104 char *automount_lookup(TALLOC_CTX *ctx, const char *user_name);
1105 char *automount_lookup(TALLOC_CTX *ctx, const char *user_name);
1106 bool process_exists(const struct server_id pid);
1107 const char *uidtoname(uid_t uid);
1108 char *gidtoname(gid_t gid);
1109 uid_t nametouid(const char *name);
1110 gid_t nametogid(const char *name);
1111 void smb_panic(const char *const why);
1112 void log_stack_trace(void);
1113 const char *readdirname(SMB_STRUCT_DIR *p);
1114 bool is_in_path(const char *name, name_compare_entry *namelist, bool case_sensitive);
1115 void set_namearray(name_compare_entry **ppname_array, const char *namelist);
1116 void free_namearray(name_compare_entry *name_array);
1117 bool fcntl_lock(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
1118 bool fcntl_getlock(int fd, SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid);
1119 bool is_myname(const char *s);
1120 bool is_myworkgroup(const char *s);
1121 void ra_lanman_string( const char *native_lanman );
1122 const char *get_remote_arch_str(void);
1123 void set_remote_arch(enum remote_arch_types type);
1124 enum remote_arch_types get_remote_arch(void);
1125 const char *tab_depth(int level, int depth);
1126 int str_checksum(const char *s);
1127 void zero_free(void *p, size_t size);
1128 int set_maxfiles(int requested_max);
1129 int smb_mkstemp(char *name_template);
1130 void *smb_xmalloc_array(size_t size, unsigned int count);
1131 char *myhostname(void);
1132 char *lock_path(const char *name);
1133 char *pid_path(const char *name);
1134 char *lib_path(const char *name);
1135 char *modules_path(const char *name);
1136 char *data_path(const char *name);
1137 char *state_path(const char *name);
1138 char *cache_path(const char *name);
1139 const char *shlib_ext(void);
1140 bool parent_dirname(TALLOC_CTX *mem_ctx, const char *dir, char **parent,
1141                     const char **name);
1142 bool ms_has_wild(const char *s);
1143 bool ms_has_wild_w(const smb_ucs2_t *s);
1144 bool mask_match(const char *string, const char *pattern, bool is_case_sensitive);
1145 bool mask_match_search(const char *string, const char *pattern, bool is_case_sensitive);
1146 bool mask_match_list(const char *string, char **list, int listLen, bool is_case_sensitive);
1147 bool unix_wild_match(const char *pattern, const char *string);
1148 bool name_to_fqdn(fstring fqdn, const char *name);
1149 void *talloc_append_blob(TALLOC_CTX *mem_ctx, void *buf, DATA_BLOB blob);
1150 uint32 map_share_mode_to_deny_mode(uint32 share_access, uint32 private_options);
1151 pid_t procid_to_pid(const struct server_id *proc);
1152 void set_my_vnn(uint32 vnn);
1153 uint32 get_my_vnn(void);
1154 void set_my_unique_id(uint64_t unique_id);
1155 struct server_id pid_to_procid(pid_t pid);
1156 struct server_id procid_self(void);
1157 bool procid_equal(const struct server_id *p1, const struct server_id *p2);
1158 bool cluster_id_equal(const struct server_id *id1,
1159                       const struct server_id *id2);
1160 bool procid_is_me(const struct server_id *pid);
1161 struct server_id interpret_pid(const char *pid_string);
1162 char *procid_str(TALLOC_CTX *mem_ctx, const struct server_id *pid);
1163 char *procid_str_static(const struct server_id *pid);
1164 bool procid_valid(const struct server_id *pid);
1165 bool procid_is_local(const struct server_id *pid);
1166 bool trans_oob(uint32_t bufsize, uint32_t offset, uint32_t length);
1167 bool is_offset_safe(const char *buf_base, size_t buf_len, char *ptr, size_t off);
1168 char *get_safe_ptr(const char *buf_base, size_t buf_len, char *ptr, size_t off);
1169 char *get_safe_str_ptr(const char *buf_base, size_t buf_len, char *ptr, size_t off);
1170 int get_safe_SVAL(const char *buf_base, size_t buf_len, char *ptr, size_t off, int failval);
1171 int get_safe_IVAL(const char *buf_base, size_t buf_len, char *ptr, size_t off, int failval);
1172 void split_domain_user(TALLOC_CTX *mem_ctx,
1173                        const char *full_name,
1174                        char **domain,
1175                        char **user);
1176 void *_talloc_zero_zeronull(const void *ctx, size_t size, const char *name);
1177 void *_talloc_memdup_zeronull(const void *t, const void *p, size_t size, const char *name);
1178 void *_talloc_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
1179 void *_talloc_zero_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
1180 void *talloc_zeronull(const void *context, size_t size, const char *name);
1181 const char *strip_hostname(const char *s);
1182 bool tevent_req_poll_ntstatus(struct tevent_req *req,
1183                               struct tevent_context *ev,
1184                               NTSTATUS *status);
1185 bool any_nt_status_not_ok(NTSTATUS err1, NTSTATUS err2, NTSTATUS *result);
1186
1187 /* The following definitions come from lib/util_file.c  */
1188
1189 char **file_lines_pload(const char *syscmd, int *numlines);
1190 void file_lines_free(char **lines);
1191
1192 /* The following definitions come from lib/util_nscd.c  */
1193
1194 void smb_nscd_flush_user_cache(void);
1195 void smb_nscd_flush_group_cache(void);
1196
1197 /* The following definitions come from lib/util_nttoken.c  */
1198
1199 struct security_token *dup_nt_token(TALLOC_CTX *mem_ctx, const struct security_token *ptoken);
1200 NTSTATUS merge_nt_token(TALLOC_CTX *mem_ctx,
1201                         const struct security_token *token_1,
1202                         const struct security_token *token_2,
1203                         struct security_token **token_out);
1204 bool token_sid_in_ace(const struct security_token *token, const struct security_ace *ace);
1205
1206 /* The following definitions come from ..libcli/registry/util_reg.c  */
1207
1208 const char *str_regtype(int type);
1209 int regtype_by_string(const char *str);
1210 bool push_reg_sz(TALLOC_CTX *mem_ctx, DATA_BLOB *blob, const char *s);
1211 bool push_reg_multi_sz(TALLOC_CTX *mem_ctx, DATA_BLOB *blob, const char **a);
1212 bool pull_reg_sz(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob, const char **s);
1213 bool pull_reg_multi_sz(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob, const char ***a);
1214
1215 /* The following definitions come from lib/util_sec.c  */
1216
1217 void sec_init(void);
1218 uid_t sec_initial_uid(void);
1219 gid_t sec_initial_gid(void);
1220 bool non_root_mode(void);
1221 void gain_root_privilege(void);
1222 void gain_root_group_privilege(void);
1223 void set_effective_uid(uid_t uid);
1224 void set_effective_gid(gid_t gid);
1225 void save_re_uid(void);
1226 void restore_re_uid_fromroot(void);
1227 void restore_re_uid(void);
1228 void save_re_gid(void);
1229 void restore_re_gid(void);
1230 int set_re_uid(void);
1231 void become_user_permanently(uid_t uid, gid_t gid);
1232 bool is_setuid_root(void) ;
1233
1234 /* The following definitions come from lib/util_sid.c  */
1235
1236 char *sid_to_fstring(fstring sidstr_out, const struct dom_sid *sid);
1237 char *sid_string_talloc(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
1238 char *sid_string_dbg(const struct dom_sid *sid);
1239 char *sid_string_tos(const struct dom_sid *sid);
1240 bool sid_linearize(char *outbuf, size_t len, const struct dom_sid *sid);
1241 bool non_mappable_sid(struct dom_sid *sid);
1242 char *sid_binstring_hex(const struct dom_sid *sid);
1243 NTSTATUS sid_array_from_info3(TALLOC_CTX *mem_ctx,
1244                               const struct netr_SamInfo3 *info3,
1245                               struct dom_sid **user_sids,
1246                               uint32_t *num_user_sids,
1247                               bool include_user_group_rid,
1248                               bool skip_ressource_groups);
1249
1250 /* The following definitions come from lib/util_sock.c  */
1251
1252 bool is_broadcast_addr(const struct sockaddr *pss);
1253 bool is_loopback_ip_v4(struct in_addr ip);
1254 bool is_loopback_addr(const struct sockaddr *pss);
1255 bool is_zero_addr(const struct sockaddr *pss);
1256 void zero_ip_v4(struct in_addr *ip);
1257 void in_addr_to_sockaddr_storage(struct sockaddr_storage *ss,
1258                 struct in_addr ip);
1259 bool same_net(const struct sockaddr *ip1,
1260                 const struct sockaddr *ip2,
1261                 const struct sockaddr *mask);
1262 bool sockaddr_equal(const struct sockaddr *ip1,
1263                 const struct sockaddr *ip2);
1264 bool is_address_any(const struct sockaddr *psa);
1265 uint16_t get_sockaddr_port(const struct sockaddr_storage *pss);
1266 char *print_sockaddr(char *dest,
1267                         size_t destlen,
1268                         const struct sockaddr_storage *psa);
1269 char *print_canonical_sockaddr(TALLOC_CTX *ctx,
1270                         const struct sockaddr_storage *pss);
1271 const char *client_name(int fd);
1272 int get_socket_port(int fd);
1273 const char *client_addr(int fd, char *addr, size_t addrlen);
1274 const char *client_socket_addr(int fd, char *addr, size_t addr_len);
1275 int client_socket_port(int fd);
1276 void set_smb_read_error(enum smb_read_errors *pre,
1277                         enum smb_read_errors newerr);
1278 void cond_set_smb_read_error(enum smb_read_errors *pre,
1279                         enum smb_read_errors newerr);
1280 bool is_a_socket(int fd);
1281 void set_socket_options(int fd, const char *options);
1282 ssize_t read_udp_v4_socket(int fd,
1283                         char *buf,
1284                         size_t len,
1285                         struct sockaddr_storage *psa);
1286 NTSTATUS read_fd_with_timeout(int fd, char *buf,
1287                                   size_t mincnt, size_t maxcnt,
1288                                   unsigned int time_out,
1289                                   size_t *size_ret);
1290 NTSTATUS read_data(int fd, char *buffer, size_t N);
1291 ssize_t write_data(int fd, const char *buffer, size_t N);
1292 ssize_t write_data_iov(int fd, const struct iovec *orig_iov, int iovcnt);
1293 bool send_keepalive(int client);
1294 NTSTATUS read_smb_length_return_keepalive(int fd, char *inbuf,
1295                                           unsigned int timeout,
1296                                           size_t *len);
1297 NTSTATUS receive_smb_raw(int fd,
1298                         char *buffer,
1299                         size_t buflen,
1300                         unsigned int timeout,
1301                         size_t maxlen,
1302                         size_t *p_len);
1303 int open_socket_in(int type,
1304                 uint16_t port,
1305                 int dlevel,
1306                 const struct sockaddr_storage *psock,
1307                 bool rebind);
1308 NTSTATUS open_socket_out(const struct sockaddr_storage *pss, uint16_t port,
1309                          int timeout, int *pfd);
1310 struct tevent_req *open_socket_out_send(TALLOC_CTX *mem_ctx,
1311                                         struct event_context *ev,
1312                                         const struct sockaddr_storage *pss,
1313                                         uint16_t port,
1314                                         int timeout);
1315 NTSTATUS open_socket_out_recv(struct tevent_req *req, int *pfd);
1316 struct tevent_req *open_socket_out_defer_send(TALLOC_CTX *mem_ctx,
1317                                               struct event_context *ev,
1318                                               struct timeval wait_time,
1319                                               const struct sockaddr_storage *pss,
1320                                               uint16_t port,
1321                                               int timeout);
1322 NTSTATUS open_socket_out_defer_recv(struct tevent_req *req, int *pfd);
1323 int open_udp_socket(const char *host, int port);
1324 const char *get_peer_name(int fd, bool force_lookup);
1325 const char *get_peer_addr(int fd, char *addr, size_t addr_len);
1326 int create_pipe_sock(const char *socket_dir,
1327                      const char *socket_name,
1328                      mode_t dir_perms);
1329 const char *get_mydnsfullname(void);
1330 bool is_myname_or_ipaddr(const char *s);
1331 struct tevent_req *getaddrinfo_send(TALLOC_CTX *mem_ctx,
1332                                     struct tevent_context *ev,
1333                                     struct fncall_context *ctx,
1334                                     const char *node,
1335                                     const char *service,
1336                                     const struct addrinfo *hints);
1337 int getaddrinfo_recv(struct tevent_req *req, struct addrinfo **res);
1338 struct tevent_req *tstream_read_packet_send(TALLOC_CTX *mem_ctx,
1339                                             struct tevent_context *ev,
1340                                             struct tstream_context *stream,
1341                                             size_t initial,
1342                                             ssize_t (*more)(uint8_t *buf,
1343                                                             size_t buflen,
1344                                                             void *private_data),
1345                                             void *private_data);
1346 ssize_t tstream_read_packet_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1347                                  uint8_t **pbuf, int *perrno);
1348
1349 /* The following definitions come from lib/util_str.c  */
1350
1351 bool next_token(const char **ptr, char *buff, const char *sep, size_t bufsize);
1352 bool next_token_talloc(TALLOC_CTX *ctx,
1353                         const char **ptr,
1354                         char **pp_buff,
1355                         const char *sep);
1356 bool next_token_no_ltrim_talloc(TALLOC_CTX *ctx,
1357                         const char **ptr,
1358                         char **pp_buff,
1359                         const char *sep);
1360 int StrCaseCmp(const char *s, const char *t);
1361 int StrnCaseCmp(const char *s, const char *t, size_t len);
1362 bool strnequal(const char *s1,const char *s2,size_t n);
1363 bool strcsequal(const char *s1,const char *s2);
1364 void strnorm(char *s, int case_default);
1365 bool strisnormal(const char *s, int case_default);
1366 char *push_skip_string(char *buf);
1367 char *skip_string(const char *base, size_t len, char *buf);
1368 size_t str_charnum(const char *s);
1369 size_t str_ascii_charnum(const char *s);
1370 bool trim_char(char *s,char cfront,char cback);
1371 bool strhasupper(const char *s);
1372 bool strhaslower(const char *s);
1373 char *safe_strcpy_fn(const char *fn,
1374                 int line,
1375                 char *dest,
1376                 const char *src,
1377                 size_t maxlength);
1378 char *safe_strcat_fn(const char *fn,
1379                 int line,
1380                 char *dest,
1381                 const char *src,
1382                 size_t maxlength);
1383 char *alpha_strcpy_fn(const char *fn,
1384                 int line,
1385                 char *dest,
1386                 const char *src,
1387                 const char *other_safe_chars,
1388                 size_t maxlength);
1389 char *StrnCpy_fn(const char *fn, int line,char *dest,const char *src,size_t n);
1390 bool in_list(const char *s, const char *list, bool casesensitive);
1391 void string_free(char **s);
1392 bool string_set(char **dest,const char *src);
1393 void string_sub2(char *s,const char *pattern, const char *insert, size_t len,
1394                  bool remove_unsafe_characters, bool replace_once,
1395                  bool allow_trailing_dollar);
1396 void string_sub_once(char *s, const char *pattern,
1397                 const char *insert, size_t len);
1398 void string_sub(char *s,const char *pattern, const char *insert, size_t len);
1399 void fstring_sub(char *s,const char *pattern,const char *insert);
1400 char *realloc_string_sub2(char *string,
1401                         const char *pattern,
1402                         const char *insert,
1403                         bool remove_unsafe_characters,
1404                         bool allow_trailing_dollar);
1405 char *realloc_string_sub(char *string,
1406                         const char *pattern,
1407                         const char *insert);
1408 char *talloc_string_sub2(TALLOC_CTX *mem_ctx, const char *src,
1409                         const char *pattern,
1410                         const char *insert,
1411                         bool remove_unsafe_characters,
1412                         bool replace_once,
1413                         bool allow_trailing_dollar);
1414 char *talloc_string_sub(TALLOC_CTX *mem_ctx,
1415                         const char *src,
1416                         const char *pattern,
1417                         const char *insert);
1418 void all_string_sub(char *s,const char *pattern,const char *insert, size_t len);
1419 char *talloc_all_string_sub(TALLOC_CTX *ctx,
1420                                 const char *src,
1421                                 const char *pattern,
1422                                 const char *insert);
1423 char *octal_string(int i);
1424 char *string_truncate(char *s, unsigned int length);
1425 char *strchr_m(const char *src, char c);
1426 char *strrchr_m(const char *s, char c);
1427 char *strnrchr_m(const char *s, char c, unsigned int n);
1428 char *strstr_m(const char *src, const char *findstr);
1429 void strlower_m(char *s);
1430 void strupper_m(char *s);
1431 size_t strlen_m_ext(const char *s, const charset_t src_charset,
1432                     const charset_t dst_charset);
1433 size_t strlen_m_ext_term(const char *s, const charset_t src_charset,
1434                          const charset_t dst_charset);
1435 size_t strlen_m(const char *s);
1436 size_t strlen_m_term(const char *s);
1437 size_t strlen_m_term_null(const char *s);
1438 char *binary_string_rfc2254(TALLOC_CTX *mem_ctx, const uint8_t *buf, int len);
1439 char *binary_string(char *buf, int len);
1440 int fstr_sprintf(fstring s, const char *fmt, ...);
1441 bool str_list_sub_basic( char **list, const char *smb_name,
1442                          const char *domain_name );
1443 bool str_list_substitute(char **list, const char *pattern, const char *insert);
1444 bool str_list_check(const char **list, const char *s);
1445 bool str_list_check_ci(const char **list, const char *s);
1446
1447 char *ipstr_list_make(char **ipstr_list,
1448                         const struct ip_service *ip_list,
1449                         int ip_count);
1450 int ipstr_list_parse(const char *ipstr_list, struct ip_service **ip_list);
1451 void ipstr_list_free(char* ipstr_list);
1452 void rfc1738_unescape(char *buf);
1453 DATA_BLOB base64_decode_data_blob(const char *s);
1454 void base64_decode_inplace(char *s);
1455 char *base64_encode_data_blob(TALLOC_CTX *mem_ctx, DATA_BLOB data);
1456 uint64_t STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr);
1457 SMB_OFF_T conv_str_size(const char * str);
1458 void string_append(char **left, const char *right);
1459 bool add_string_to_array(TALLOC_CTX *mem_ctx,
1460                          const char *str, const char ***strings,
1461                          int *num);
1462 void sprintf_append(TALLOC_CTX *mem_ctx, char **string, ssize_t *len,
1463                     size_t *bufsize, const char *fmt, ...);
1464 int asprintf_strupper_m(char **strp, const char *fmt, ...);
1465 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...);
1466 char *talloc_asprintf_strlower_m(TALLOC_CTX *t, const char *fmt, ...);
1467 char *sstring_sub(const char *src, char front, char back);
1468 bool validate_net_name( const char *name,
1469                 const char *invalid_chars,
1470                 int max_len);
1471 char *escape_shell_string(const char *src);
1472 char **str_list_make_v3(TALLOC_CTX *mem_ctx, const char *string, const char *sep);
1473 char *sanitize_username(TALLOC_CTX *mem_ctx, const char *username);
1474
1475 /* The following definitions come from lib/util_unistr.c  */
1476
1477 void gfree_case_tables(void);
1478 void load_case_tables(void);
1479 size_t dos_PutUniCode(char *dst,const char *src, size_t len, bool null_terminate);
1480 char *skip_unibuf(char *src, size_t len);
1481 int rpcstr_push(void *dest, const char *src, size_t dest_len, int flags);
1482 int rpcstr_push_talloc(TALLOC_CTX *ctx, smb_ucs2_t **dest, const char *src);
1483 bool isvalid83_w(smb_ucs2_t c);
1484 size_t strlen_w(const smb_ucs2_t *src);
1485 size_t strnlen_w(const smb_ucs2_t *src, size_t max);
1486 smb_ucs2_t *strchr_w(const smb_ucs2_t *s, smb_ucs2_t c);
1487 smb_ucs2_t *strchr_wa(const smb_ucs2_t *s, char c);
1488 smb_ucs2_t *strrchr_w(const smb_ucs2_t *s, smb_ucs2_t c);
1489 smb_ucs2_t *strnrchr_w(const smb_ucs2_t *s, smb_ucs2_t c, unsigned int n);
1490 smb_ucs2_t *strstr_w(const smb_ucs2_t *s, const smb_ucs2_t *ins);
1491 bool strlower_w(smb_ucs2_t *s);
1492 bool strupper_w(smb_ucs2_t *s);
1493 void strnorm_w(smb_ucs2_t *s, int case_default);
1494 int strcmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b);
1495 int strncmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b, size_t len);
1496 int strcasecmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b);
1497 int strncasecmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b, size_t len);
1498 bool strequal_w(const smb_ucs2_t *s1, const smb_ucs2_t *s2);
1499 bool strnequal_w(const smb_ucs2_t *s1,const smb_ucs2_t *s2,size_t n);
1500 smb_ucs2_t *strdup_w(const smb_ucs2_t *src);
1501 smb_ucs2_t *strndup_w(const smb_ucs2_t *src, size_t len);
1502 smb_ucs2_t *strncpy_w(smb_ucs2_t *dest, const smb_ucs2_t *src, const size_t max);
1503 smb_ucs2_t *strncat_w(smb_ucs2_t *dest, const smb_ucs2_t *src, const size_t max);
1504 smb_ucs2_t *strcat_w(smb_ucs2_t *dest, const smb_ucs2_t *src);
1505 void string_replace_w(smb_ucs2_t *s, smb_ucs2_t oldc, smb_ucs2_t newc);
1506 bool trim_string_w(smb_ucs2_t *s, const smb_ucs2_t *front,
1507                                   const smb_ucs2_t *back);
1508 int strcmp_wa(const smb_ucs2_t *a, const char *b);
1509 int strncmp_wa(const smb_ucs2_t *a, const char *b, size_t len);
1510 smb_ucs2_t *strpbrk_wa(const smb_ucs2_t *s, const char *p);
1511 smb_ucs2_t *strstr_wa(const smb_ucs2_t *s, const char *ins);
1512 int toupper_ascii(int c);
1513 int tolower_ascii(int c);
1514 int isupper_ascii(int c);
1515 int islower_ascii(int c);
1516
1517 /* The following definitions come from lib/version.c  */
1518
1519 const char *samba_version_string(void);
1520
1521 /* The following definitions come from lib/winbind_util.c  */
1522
1523 bool winbind_lookup_name(const char *dom_name, const char *name, struct dom_sid *sid,
1524                          enum lsa_SidType *name_type);
1525 bool winbind_lookup_sid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
1526                         const char **domain, const char **name,
1527                         enum lsa_SidType *name_type);
1528 bool winbind_ping(void);
1529 bool winbind_sid_to_uid(uid_t *puid, const struct dom_sid *sid);
1530 bool winbind_uid_to_sid(struct dom_sid *sid, uid_t uid);
1531 bool winbind_sid_to_gid(gid_t *pgid, const struct dom_sid *sid);
1532 bool winbind_gid_to_sid(struct dom_sid *sid, gid_t gid);
1533 struct passwd * winbind_getpwnam(const char * sname);
1534 struct passwd * winbind_getpwsid(const struct dom_sid *sid);
1535 wbcErr wb_is_trusted_domain(const char *domain);
1536 bool winbind_lookup_rids(TALLOC_CTX *mem_ctx,
1537                          const struct dom_sid *domain_sid,
1538                          int num_rids, uint32 *rids,
1539                          const char **domain_name,
1540                          const char ***names, enum lsa_SidType **types);
1541 bool winbind_allocate_uid(uid_t *uid);
1542 bool winbind_allocate_gid(gid_t *gid);
1543 bool winbind_get_groups(TALLOC_CTX *mem_ctx,
1544                         const char *account,
1545                         uint32_t *num_groups,
1546                         gid_t ** _groups);
1547 bool winbind_get_sid_aliases(TALLOC_CTX *mem_ctx,
1548                              const struct dom_sid *dom_sid,
1549                              const struct dom_sid *members,
1550                              size_t num_members,
1551                              uint32_t **pp_alias_rids,
1552                              size_t *p_num_alias_rids);
1553
1554
1555 /* The following definitions come from lib/wins_srv.c  */
1556
1557 bool wins_srv_is_dead(struct in_addr wins_ip, struct in_addr src_ip);
1558 void wins_srv_alive(struct in_addr wins_ip, struct in_addr src_ip);
1559 void wins_srv_died(struct in_addr wins_ip, struct in_addr src_ip);
1560 unsigned wins_srv_count(void);
1561 char **wins_srv_tags(void);
1562 void wins_srv_tags_free(char **list);
1563 struct in_addr wins_srv_ip_tag(const char *tag, struct in_addr src_ip);
1564 unsigned wins_srv_count_tag(const char *tag);
1565
1566 /* The following definitions come from libsmb/cliconnect.c  */
1567
1568 ADS_STATUS cli_session_setup_spnego(struct cli_state *cli, const char *user, 
1569                               const char *pass, const char *user_domain,
1570                                     const char * dest_realm);
1571
1572 NTSTATUS cli_session_setup(struct cli_state *cli,
1573                            const char *user,
1574                            const char *pass, int passlen,
1575                            const char *ntpass, int ntpasslen,
1576                            const char *workgroup);
1577 struct tevent_req *cli_session_setup_guest_create(TALLOC_CTX *mem_ctx,
1578                                                   struct event_context *ev,
1579                                                   struct cli_state *cli,
1580                                                   struct tevent_req **psmbreq);
1581 struct tevent_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx,
1582                                                 struct event_context *ev,
1583                                                 struct cli_state *cli);
1584 NTSTATUS cli_session_setup_guest_recv(struct tevent_req *req);
1585 struct tevent_req *cli_ulogoff_send(TALLOC_CTX *mem_ctx,
1586                                     struct tevent_context *ev,
1587                                     struct cli_state *cli);
1588 NTSTATUS cli_ulogoff_recv(struct tevent_req *req);
1589 NTSTATUS cli_ulogoff(struct cli_state *cli);
1590 struct tevent_req *cli_tcon_andx_create(TALLOC_CTX *mem_ctx,
1591                                         struct event_context *ev,
1592                                         struct cli_state *cli,
1593                                         const char *share, const char *dev,
1594                                         const char *pass, int passlen,
1595                                         struct tevent_req **psmbreq);
1596 struct tevent_req *cli_tcon_andx_send(TALLOC_CTX *mem_ctx,
1597                                       struct event_context *ev,
1598                                       struct cli_state *cli,
1599                                       const char *share, const char *dev,
1600                                       const char *pass, int passlen);
1601 NTSTATUS cli_tcon_andx_recv(struct tevent_req *req);
1602 NTSTATUS cli_tcon_andx(struct cli_state *cli, const char *share,
1603                        const char *dev, const char *pass, int passlen);
1604 struct tevent_req *cli_tdis_send(TALLOC_CTX *mem_ctx,
1605                                  struct tevent_context *ev,
1606                                  struct cli_state *cli);
1607 NTSTATUS cli_tdis_recv(struct tevent_req *req);
1608 NTSTATUS cli_tdis(struct cli_state *cli);
1609 void cli_negprot_sendsync(struct cli_state *cli);
1610 NTSTATUS cli_negprot(struct cli_state *cli);
1611 struct tevent_req *cli_negprot_send(TALLOC_CTX *mem_ctx,
1612                                     struct event_context *ev,
1613                                     struct cli_state *cli);
1614 NTSTATUS cli_negprot_recv(struct tevent_req *req);
1615 bool cli_session_request(struct cli_state *cli,
1616                          struct nmb_name *calling, struct nmb_name *called);
1617 NTSTATUS cli_connect(struct cli_state *cli,
1618                 const char *host,
1619                 struct sockaddr_storage *dest_ss);
1620 NTSTATUS cli_start_connection(struct cli_state **output_cli, 
1621                               const char *my_name, 
1622                               const char *dest_host, 
1623                               struct sockaddr_storage *dest_ss, int port,
1624                               int signing_state, int flags);
1625 NTSTATUS cli_full_connection(struct cli_state **output_cli, 
1626                              const char *my_name, 
1627                              const char *dest_host, 
1628                              struct sockaddr_storage *dest_ss, int port,
1629                              const char *service, const char *service_type,
1630                              const char *user, const char *domain, 
1631                              const char *password, int flags,
1632                              int signing_state);
1633 bool attempt_netbios_session_request(struct cli_state **ppcli, const char *srchost, const char *desthost,
1634                                      struct sockaddr_storage *pdest_ss);
1635 NTSTATUS cli_raw_tcon(struct cli_state *cli, 
1636                       const char *service, const char *pass, const char *dev,
1637                       uint16 *max_xmit, uint16 *tid);
1638 struct cli_state *get_ipc_connect(char *server,
1639                                 struct sockaddr_storage *server_ss,
1640                                 const struct user_auth_info *user_info);
1641 struct cli_state *get_ipc_connect_master_ip(TALLOC_CTX *ctx,
1642                                 struct ip_service *mb_ip,
1643                                 const struct user_auth_info *user_info,
1644                                 char **pp_workgroup_out);
1645 struct cli_state *get_ipc_connect_master_ip_bcast(TALLOC_CTX *ctx,
1646                                         const struct user_auth_info *user_info,
1647                                         char **pp_workgroup_out);
1648
1649 /* The following definitions come from libsmb/clidfs.c  */
1650
1651 NTSTATUS cli_cm_force_encryption(struct cli_state *c,
1652                         const char *username,
1653                         const char *password,
1654                         const char *domain,
1655                         const char *sharename);
1656 struct cli_state *cli_cm_open(TALLOC_CTX *ctx,
1657                                 struct cli_state *referring_cli,
1658                                 const char *server,
1659                                 const char *share,
1660                                 const struct user_auth_info *auth_info,
1661                                 bool show_hdr,
1662                                 bool force_encrypt,
1663                                 int max_protocol,
1664                                 int port,
1665                                 int name_type);
1666 void cli_cm_display(const struct cli_state *c);
1667 NTSTATUS cli_dfs_get_referral(TALLOC_CTX *ctx,
1668                         struct cli_state *cli,
1669                         const char *path,
1670                         struct client_dfs_referral **refs,
1671                         size_t *num_refs,
1672                         size_t *consumed);
1673 bool cli_resolve_path(TALLOC_CTX *ctx,
1674                         const char *mountpt,
1675                         const struct user_auth_info *dfs_auth_info,
1676                         struct cli_state *rootcli,
1677                         const char *path,
1678                         struct cli_state **targetcli,
1679                         char **pp_targetpath);
1680
1681 bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
1682                         struct cli_state *cli,
1683                         const char *sharename,
1684                         char **pp_newserver,
1685                         char **pp_newshare,
1686                         bool force_encrypt,
1687                         const char *username,
1688                         const char *password,
1689                         const char *domain);
1690
1691 /* The following definitions come from libsmb/clientgen.c  */
1692
1693 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero);
1694 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout);
1695 void cli_set_port(struct cli_state *cli, int port);
1696 bool cli_state_seqnum_persistent(struct cli_state *cli,
1697                                  uint16_t mid);
1698 bool cli_state_seqnum_remove(struct cli_state *cli,
1699                              uint16_t mid);
1700 bool cli_receive_smb(struct cli_state *cli);
1701 bool cli_receive_smb_readX_header(struct cli_state *cli);
1702 bool cli_send_smb(struct cli_state *cli);
1703 bool cli_send_smb_direct_writeX(struct cli_state *cli,
1704                                 const char *p,
1705                                 size_t extradata);
1706 void cli_setup_packet_buf(struct cli_state *cli, char *buf);
1707 void cli_setup_packet(struct cli_state *cli);
1708 void cli_setup_bcc(struct cli_state *cli, void *p);
1709 NTSTATUS cli_set_domain(struct cli_state *cli, const char *domain);
1710 NTSTATUS cli_set_username(struct cli_state *cli, const char *username);
1711 NTSTATUS cli_set_password(struct cli_state *cli, const char *password);
1712 NTSTATUS cli_init_creds(struct cli_state *cli, const char *username, const char *domain, const char *password);
1713 struct cli_state *cli_initialise(void);
1714 struct cli_state *cli_initialise_ex(int signing_state);
1715 void cli_nt_pipes_close(struct cli_state *cli);
1716 void cli_shutdown(struct cli_state *cli);
1717 void cli_sockopt(struct cli_state *cli, const char *options);
1718 uint16 cli_setpid(struct cli_state *cli, uint16 pid);
1719 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive);
1720 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
1721                                  struct cli_state *cli, uint16_t num_echos,
1722                                  DATA_BLOB data);
1723 NTSTATUS cli_echo_recv(struct tevent_req *req);
1724 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data);
1725 bool cli_ucs2(struct cli_state *cli);
1726 bool is_andx_req(uint8_t cmd);
1727 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
1728                  uint8_t smb_command, uint8_t additional_flags,
1729                  uint8_t wct, uint16_t *vwv,
1730                  uint32_t num_bytes, const uint8_t *bytes,
1731                  struct tevent_req **result_parent,
1732                  uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
1733                  uint32_t *pnum_bytes, uint8_t **pbytes);
1734
1735 /* The following definitions come from libsmb/clierror.c  */
1736
1737 const char *cli_errstr(struct cli_state *cli);
1738 NTSTATUS cli_nt_error(struct cli_state *cli);
1739 void cli_dos_error(struct cli_state *cli, uint8 *eclass, uint32 *ecode);
1740 int cli_errno(struct cli_state *cli);
1741 bool cli_is_error(struct cli_state *cli);
1742 bool cli_is_nt_error(struct cli_state *cli);
1743 bool cli_is_dos_error(struct cli_state *cli);
1744 NTSTATUS cli_get_nt_error(struct cli_state *cli);
1745 void cli_set_nt_error(struct cli_state *cli, NTSTATUS status);
1746 void cli_reset_error(struct cli_state *cli);
1747 bool cli_state_is_connected(struct cli_state *cli);
1748
1749 /* The following definitions come from libsmb/clifile.c  */
1750
1751 struct tevent_req *cli_setpathinfo_send(TALLOC_CTX *mem_ctx,
1752                                         struct tevent_context *ev,
1753                                         struct cli_state *cli,
1754                                         uint16_t level,
1755                                         const char *path,
1756                                         uint8_t *data,
1757                                         size_t data_len);
1758 NTSTATUS cli_setpathinfo_recv(struct tevent_req *req);
1759 NTSTATUS cli_setpathinfo(struct cli_state *cli,
1760                          uint16_t level,
1761                          const char *path,
1762                          uint8_t *data,
1763                          size_t data_len);
1764
1765 struct tevent_req *cli_posix_symlink_send(TALLOC_CTX *mem_ctx,
1766                                         struct event_context *ev,
1767                                         struct cli_state *cli,
1768                                         const char *oldname,
1769                                         const char *newname);
1770 NTSTATUS cli_posix_symlink_recv(struct tevent_req *req);
1771 NTSTATUS cli_posix_symlink(struct cli_state *cli,
1772                         const char *oldname,
1773                         const char *newname);
1774 struct tevent_req *cli_posix_readlink_send(TALLOC_CTX *mem_ctx,
1775                                         struct event_context *ev,
1776                                         struct cli_state *cli,
1777                                         const char *fname,
1778                                         size_t len);
1779 NTSTATUS cli_posix_readlink_recv(struct tevent_req *req, struct cli_state *cli,
1780                                 char *retpath, size_t len);
1781 NTSTATUS cli_posix_readlink(struct cli_state *cli, const char *fname,
1782                         char *linkpath, size_t len);
1783 struct tevent_req *cli_posix_hardlink_send(TALLOC_CTX *mem_ctx,
1784                                         struct event_context *ev,
1785                                         struct cli_state *cli,
1786                                         const char *oldname,
1787                                         const char *newname);
1788 NTSTATUS cli_posix_hardlink_recv(struct tevent_req *req);
1789 NTSTATUS cli_posix_hardlink(struct cli_state *cli,
1790                         const char *oldname,
1791                         const char *newname);
1792 uint32_t unix_perms_to_wire(mode_t perms);
1793 mode_t wire_perms_to_unix(uint32_t perms);
1794 struct tevent_req *cli_posix_getfacl_send(TALLOC_CTX *mem_ctx,
1795                                         struct event_context *ev,
1796                                         struct cli_state *cli,
1797                                         const char *fname);
1798 NTSTATUS cli_posix_getfacl_recv(struct tevent_req *req,
1799                                 TALLOC_CTX *mem_ctx,
1800                                 size_t *prb_size,
1801                                 char **retbuf);
1802 NTSTATUS cli_posix_getfacl(struct cli_state *cli,
1803                         const char *fname,
1804                         TALLOC_CTX *mem_ctx,
1805                         size_t *prb_size,
1806                         char **retbuf);
1807 struct tevent_req *cli_posix_stat_send(TALLOC_CTX *mem_ctx,
1808                                         struct event_context *ev,
1809                                         struct cli_state *cli,
1810                                         const char *fname);
1811 NTSTATUS cli_posix_stat_recv(struct tevent_req *req,
1812                                 SMB_STRUCT_STAT *sbuf);
1813 NTSTATUS cli_posix_stat(struct cli_state *cli,
1814                         const char *fname,
1815                         SMB_STRUCT_STAT *sbuf);
1816 struct tevent_req *cli_posix_chmod_send(TALLOC_CTX *mem_ctx,
1817                                         struct event_context *ev,
1818                                         struct cli_state *cli,
1819                                         const char *fname,
1820                                         mode_t mode);
1821 NTSTATUS cli_posix_chmod_recv(struct tevent_req *req);
1822 NTSTATUS cli_posix_chmod(struct cli_state *cli, const char *fname, mode_t mode);
1823 struct tevent_req *cli_posix_chown_send(TALLOC_CTX *mem_ctx,
1824                                         struct event_context *ev,
1825                                         struct cli_state *cli,
1826                                         const char *fname,
1827                                         uid_t uid,
1828                                         gid_t gid);
1829 NTSTATUS cli_posix_chown_recv(struct tevent_req *req);
1830 NTSTATUS cli_posix_chown(struct cli_state *cli,
1831                         const char *fname,
1832                         uid_t uid,
1833                         gid_t gid);
1834 struct tevent_req *cli_rename_send(TALLOC_CTX *mem_ctx,
1835                                 struct event_context *ev,
1836                                 struct cli_state *cli,
1837                                 const char *fname_src,
1838                                 const char *fname_dst);
1839 NTSTATUS cli_rename_recv(struct tevent_req *req);
1840 NTSTATUS cli_rename(struct cli_state *cli, const char *fname_src, const char *fname_dst);
1841 struct tevent_req *cli_ntrename_send(TALLOC_CTX *mem_ctx,
1842                                 struct event_context *ev,
1843                                 struct cli_state *cli,
1844                                 const char *fname_src,
1845                                 const char *fname_dst);
1846 NTSTATUS cli_ntrename_recv(struct tevent_req *req);
1847 NTSTATUS cli_ntrename(struct cli_state *cli, const char *fname_src, const char *fname_dst);
1848
1849 struct tevent_req *cli_nt_hardlink_send(TALLOC_CTX *mem_ctx,
1850                                 struct event_context *ev,
1851                                 struct cli_state *cli,
1852                                 const char *fname_src,
1853                                 const char *fname_dst);
1854 NTSTATUS cli_nt_hardlink_recv(struct tevent_req *req);
1855 NTSTATUS cli_nt_hardlink(struct cli_state *cli, const char *fname_src, const char *fname_dst);
1856
1857 struct tevent_req *cli_unlink_send(TALLOC_CTX *mem_ctx,
1858                                 struct event_context *ev,
1859                                 struct cli_state *cli,
1860                                 const char *fname,
1861                                 uint16_t mayhave_attrs);
1862 NTSTATUS cli_unlink_recv(struct tevent_req *req);
1863 NTSTATUS cli_unlink(struct cli_state *cli, const char *fname, uint16_t mayhave_attrs);
1864
1865 struct tevent_req *cli_mkdir_send(TALLOC_CTX *mem_ctx,
1866                                   struct event_context *ev,
1867                                   struct cli_state *cli,
1868                                   const char *dname);
1869 NTSTATUS cli_mkdir_recv(struct tevent_req *req);
1870 NTSTATUS cli_mkdir(struct cli_state *cli, const char *dname);
1871 struct tevent_req *cli_rmdir_send(TALLOC_CTX *mem_ctx,
1872                                   struct event_context *ev,
1873                                   struct cli_state *cli,
1874                                   const char *dname);
1875 NTSTATUS cli_rmdir_recv(struct tevent_req *req);
1876 NTSTATUS cli_rmdir(struct cli_state *cli, const char *dname);
1877 struct tevent_req *cli_nt_delete_on_close_send(TALLOC_CTX *mem_ctx,
1878                                         struct event_context *ev,
1879                                         struct cli_state *cli,
1880                                         uint16_t fnum,
1881                                         bool flag);
1882 NTSTATUS cli_nt_delete_on_close_recv(struct tevent_req *req);
1883 NTSTATUS cli_nt_delete_on_close(struct cli_state *cli, uint16_t fnum, bool flag);
1884 struct tevent_req *cli_ntcreate_send(TALLOC_CTX *mem_ctx,
1885                                      struct event_context *ev,
1886                                      struct cli_state *cli,
1887                                      const char *fname,
1888                                      uint32_t CreatFlags,
1889                                      uint32_t DesiredAccess,
1890                                      uint32_t FileAttributes,
1891                                      uint32_t ShareAccess,
1892                                      uint32_t CreateDisposition,
1893                                      uint32_t CreateOptions,
1894                                      uint8_t SecurityFlags);
1895 NTSTATUS cli_ntcreate_recv(struct tevent_req *req, uint16_t *pfnum);
1896 NTSTATUS cli_ntcreate(struct cli_state *cli,
1897                       const char *fname,
1898                       uint32_t CreatFlags,
1899                       uint32_t DesiredAccess,
1900                       uint32_t FileAttributes,
1901                       uint32_t ShareAccess,
1902                       uint32_t CreateDisposition,
1903                       uint32_t CreateOptions,
1904                       uint8_t SecurityFlags,
1905                       uint16_t *pfid);
1906 uint8_t *smb_bytes_push_str(uint8_t *buf, bool ucs2, const char *str,
1907                             size_t str_len, size_t *pconverted_size);
1908 uint8_t *smb_bytes_push_bytes(uint8_t *buf, uint8_t prefix,
1909                               const uint8_t *bytes, size_t num_bytes);
1910 struct tevent_req *cli_open_create(TALLOC_CTX *mem_ctx,
1911                                    struct event_context *ev,
1912                                    struct cli_state *cli, const char *fname,
1913                                    int flags, int share_mode,
1914                                    struct tevent_req **psmbreq);
1915 struct tevent_req *cli_open_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
1916                                  struct cli_state *cli, const char *fname,
1917                                  int flags, int share_mode);
1918 NTSTATUS cli_open_recv(struct tevent_req *req, uint16_t *fnum);
1919 NTSTATUS cli_open(struct cli_state *cli, const char *fname, int flags, int share_mode, uint16_t *pfnum);
1920 struct tevent_req *cli_close_create(TALLOC_CTX *mem_ctx,
1921                                     struct event_context *ev,
1922                                     struct cli_state *cli, uint16_t fnum,
1923                                     struct tevent_req **psubreq);
1924 struct tevent_req *cli_close_send(TALLOC_CTX *mem_ctx,
1925                                   struct event_context *ev,
1926                                   struct cli_state *cli, uint16_t fnum);
1927 NTSTATUS cli_close_recv(struct tevent_req *req);
1928 NTSTATUS cli_close(struct cli_state *cli, uint16_t fnum);
1929 struct tevent_req *cli_ftruncate_send(TALLOC_CTX *mem_ctx,
1930                                         struct event_context *ev,
1931                                         struct cli_state *cli,
1932                                         uint16_t fnum,
1933                                         uint64_t size);
1934 NTSTATUS cli_ftruncate_recv(struct tevent_req *req);
1935 NTSTATUS cli_ftruncate(struct cli_state *cli, uint16_t fnum, uint64_t size);
1936 NTSTATUS cli_locktype(struct cli_state *cli, uint16_t fnum,
1937                       uint32_t offset, uint32_t len,
1938                       int timeout, unsigned char locktype);
1939 bool cli_lock(struct cli_state *cli, uint16_t fnum,
1940               uint32_t offset, uint32_t len, int timeout, enum brl_type lock_type);
1941 struct tevent_req *cli_unlock_send(TALLOC_CTX *mem_ctx,
1942                                 struct event_context *ev,
1943                                 struct cli_state *cli,
1944                                 uint16_t fnum,
1945                                 uint64_t offset,
1946                                 uint64_t len);
1947 NTSTATUS cli_unlock_recv(struct tevent_req *req);
1948 NTSTATUS cli_unlock(struct cli_state *cli, uint16_t fnum, uint32_t offset, uint32_t len);
1949 bool cli_lock64(struct cli_state *cli, uint16_t fnum,
1950                 uint64_t offset, uint64_t len, int timeout, enum brl_type lock_type);
1951 struct tevent_req *cli_unlock64_send(TALLOC_CTX *mem_ctx,
1952                                 struct event_context *ev,
1953                                 struct cli_state *cli,
1954                                 uint16_t fnum,
1955                                 uint64_t offset,
1956                                 uint64_t len);
1957 NTSTATUS cli_unlock64_recv(struct tevent_req *req);
1958 NTSTATUS cli_unlock64(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
1959 struct tevent_req *cli_posix_lock_send(TALLOC_CTX *mem_ctx,
1960                                         struct event_context *ev,
1961                                         struct cli_state *cli,
1962                                         uint16_t fnum,
1963                                         uint64_t offset,
1964                                         uint64_t len,
1965                                         bool wait_lock,
1966                                         enum brl_type lock_type);
1967 NTSTATUS cli_posix_lock_recv(struct tevent_req *req);
1968 NTSTATUS cli_posix_lock(struct cli_state *cli, uint16_t fnum,
1969                         uint64_t offset, uint64_t len,
1970                         bool wait_lock, enum brl_type lock_type);
1971 struct tevent_req *cli_posix_unlock_send(TALLOC_CTX *mem_ctx,
1972                                         struct event_context *ev,
1973                                         struct cli_state *cli,
1974                                         uint16_t fnum,
1975                                         uint64_t offset,
1976                                         uint64_t len);
1977 NTSTATUS cli_posix_unlock_recv(struct tevent_req *req);
1978 NTSTATUS cli_posix_unlock(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
1979 struct tevent_req *cli_getattrE_send(TALLOC_CTX *mem_ctx,
1980                                 struct event_context *ev,
1981                                 struct cli_state *cli,
1982                                 uint16_t fnum);
1983 NTSTATUS cli_getattrE_recv(struct tevent_req *req,
1984                         uint16_t *attr,
1985                         SMB_OFF_T *size,
1986                         time_t *change_time,
1987                         time_t *access_time,
1988                         time_t *write_time);
1989 NTSTATUS cli_getattrE(struct cli_state *cli,
1990                         uint16_t fnum,
1991                         uint16_t *attr,
1992                         SMB_OFF_T *size,
1993                         time_t *change_time,
1994                         time_t *access_time,
1995                         time_t *write_time);
1996 struct tevent_req *cli_setattrE_send(TALLOC_CTX *mem_ctx,
1997                                 struct event_context *ev,
1998                                 struct cli_state *cli,
1999                                 uint16_t fnum,
2000                                 time_t change_time,
2001                                 time_t access_time,
2002                                 time_t write_time);
2003 NTSTATUS cli_setattrE_recv(struct tevent_req *req);
2004 NTSTATUS cli_setattrE(struct cli_state *cli,
2005                         uint16_t fnum,
2006                         time_t change_time,
2007                         time_t access_time,
2008                         time_t write_time);
2009 struct tevent_req *cli_getatr_send(TALLOC_CTX *mem_ctx,
2010                                 struct event_context *ev,
2011                                 struct cli_state *cli,
2012                                 const char *fname);
2013 NTSTATUS cli_getatr_recv(struct tevent_req *req,
2014                                 uint16_t *attr,
2015                                 SMB_OFF_T *size,
2016                                 time_t *write_time);
2017 NTSTATUS cli_getatr(struct cli_state *cli,
2018                         const char *fname,
2019                         uint16_t *attr,
2020                         SMB_OFF_T *size,
2021                         time_t *write_time);
2022 struct tevent_req *cli_setatr_send(TALLOC_CTX *mem_ctx,
2023                                 struct event_context *ev,
2024                                 struct cli_state *cli,
2025                                 const char *fname,
2026                                 uint16_t attr,
2027                                 time_t mtime);
2028 NTSTATUS cli_setatr_recv(struct tevent_req *req);
2029 NTSTATUS cli_setatr(struct cli_state *cli,
2030                 const char *fname,
2031                 uint16_t attr,
2032                 time_t mtime);
2033 struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
2034                                   struct event_context *ev,
2035                                   struct cli_state *cli,
2036                                   const char *fname);
2037 NTSTATUS cli_chkpath_recv(struct tevent_req *req);
2038 NTSTATUS cli_chkpath(struct cli_state *cli, const char *path);
2039 struct tevent_req *cli_dskattr_send(TALLOC_CTX *mem_ctx,
2040                                   struct event_context *ev,
2041                                   struct cli_state *cli);
2042 NTSTATUS cli_dskattr_recv(struct tevent_req *req, int *bsize, int *total,
2043                           int *avail);
2044 NTSTATUS cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail);
2045 struct tevent_req *cli_ctemp_send(TALLOC_CTX *mem_ctx,
2046                                 struct event_context *ev,
2047                                 struct cli_state *cli,
2048                                 const char *path);
2049 NTSTATUS cli_ctemp_recv(struct tevent_req *req,
2050                         TALLOC_CTX *ctx,
2051                         uint16_t *pfnum,
2052                         char **outfile);
2053 NTSTATUS cli_ctemp(struct cli_state *cli,
2054                         TALLOC_CTX *ctx,
2055                         const char *path,
2056                         uint16_t *pfnum,
2057                         char **out_path);
2058 NTSTATUS cli_raw_ioctl(struct cli_state *cli, uint16_t fnum, uint32_t code, DATA_BLOB *blob);
2059 NTSTATUS cli_set_ea_path(struct cli_state *cli, const char *path,
2060                          const char *ea_name, const char *ea_val,
2061                          size_t ea_len);
2062 NTSTATUS cli_set_ea_fnum(struct cli_state *cli, uint16_t fnum,
2063                          const char *ea_name, const char *ea_val,
2064                          size_t ea_len);
2065 struct tevent_req *cli_get_ea_list_path_send(TALLOC_CTX *mem_ctx,
2066                                              struct tevent_context *ev,
2067                                              struct cli_state *cli,
2068                                              const char *fname);
2069 NTSTATUS cli_get_ea_list_path_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2070                                    size_t *pnum_eas, struct ea_struct **peas);
2071 NTSTATUS cli_get_ea_list_path(struct cli_state *cli, const char *path,
2072                 TALLOC_CTX *ctx,
2073                 size_t *pnum_eas,
2074                 struct ea_struct **pea_list);
2075 bool cli_get_ea_list_fnum(struct cli_state *cli, uint16_t fnum,
2076                 TALLOC_CTX *ctx,
2077                 size_t *pnum_eas,
2078                 struct ea_struct **pea_list);
2079 struct tevent_req *cli_posix_open_send(TALLOC_CTX *mem_ctx,
2080                                         struct event_context *ev,
2081                                         struct cli_state *cli,
2082                                         const char *fname,
2083                                         int flags,
2084                                         mode_t mode);
2085 NTSTATUS cli_posix_open_recv(struct tevent_req *req, uint16_t *pfnum);
2086 NTSTATUS cli_posix_open(struct cli_state *cli, const char *fname,
2087                         int flags, mode_t mode, uint16_t *fnum);
2088 struct tevent_req *cli_posix_mkdir_send(TALLOC_CTX *mem_ctx,
2089                                         struct event_context *ev,
2090                                         struct cli_state *cli,
2091                                         const char *fname,
2092                                         mode_t mode);
2093 NTSTATUS cli_posix_mkdir_recv(struct tevent_req *req);
2094 NTSTATUS cli_posix_mkdir(struct cli_state *cli, const char *fname, mode_t mode);
2095
2096 struct tevent_req *cli_posix_unlink_send(TALLOC_CTX *mem_ctx,
2097                                         struct event_context *ev,
2098                                         struct cli_state *cli,
2099                                         const char *fname);
2100 NTSTATUS cli_posix_unlink_recv(struct tevent_req *req);
2101 NTSTATUS cli_posix_unlink(struct cli_state *cli, const char *fname);
2102
2103 struct tevent_req *cli_posix_rmdir_send(TALLOC_CTX *mem_ctx,
2104                                         struct event_context *ev,
2105                                         struct cli_state *cli,
2106                                         const char *fname);
2107 NTSTATUS cli_posix_rmdir_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx);
2108 NTSTATUS cli_posix_rmdir(struct cli_state *cli, const char *fname);
2109 struct tevent_req *cli_notify_send(TALLOC_CTX *mem_ctx,
2110                                    struct tevent_context *ev,
2111                                    struct cli_state *cli, uint16_t fnum,
2112                                    uint32_t buffer_size,
2113                                    uint32_t completion_filter, bool recursive);
2114 NTSTATUS cli_notify_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2115                          uint32_t *pnum_changes,
2116                          struct notify_change **pchanges);
2117
2118 /* The following definitions come from libsmb/clifsinfo.c  */
2119
2120 struct tevent_req *cli_unix_extensions_version_send(TALLOC_CTX *mem_ctx,
2121                                                     struct tevent_context *ev,
2122                                                     struct cli_state *cli);
2123 NTSTATUS cli_unix_extensions_version_recv(struct tevent_req *req,
2124                                           uint16_t *pmajor, uint16_t *pminor,
2125                                           uint32_t *pcaplow,
2126                                           uint32_t *pcaphigh);
2127 NTSTATUS cli_unix_extensions_version(struct cli_state *cli, uint16 *pmajor,
2128                                      uint16 *pminor, uint32 *pcaplow,
2129                                      uint32 *pcaphigh);
2130 struct tevent_req *cli_set_unix_extensions_capabilities_send(
2131         TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli,
2132         uint16_t major, uint16_t minor, uint32_t caplow, uint32_t caphigh);
2133 NTSTATUS cli_set_unix_extensions_capabilities_recv(struct tevent_req *req);
2134 NTSTATUS cli_set_unix_extensions_capabilities(struct cli_state *cli,
2135                                               uint16 major, uint16 minor,
2136                                               uint32 caplow, uint32 caphigh);
2137 struct tevent_req *cli_get_fs_attr_info_send(TALLOC_CTX *mem_ctx,
2138                                              struct tevent_context *ev,
2139                                              struct cli_state *cli);
2140 NTSTATUS cli_get_fs_attr_info_recv(struct tevent_req *req, uint32_t *fs_attr);
2141 NTSTATUS cli_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr);
2142 NTSTATUS cli_get_fs_volume_info(struct cli_state *cli, fstring volume_name,
2143                                 uint32 *pserial_number, time_t *pdate);
2144 NTSTATUS cli_get_fs_full_size_info(struct cli_state *cli,
2145                                    uint64_t *total_allocation_units,
2146                                    uint64_t *caller_allocation_units,
2147                                    uint64_t *actual_allocation_units,
2148                                    uint64_t *sectors_per_allocation_unit,
2149                                    uint64_t *bytes_per_sector);
2150 NTSTATUS cli_get_posix_fs_info(struct cli_state *cli,
2151                                uint32 *optimal_transfer_size,
2152                                uint32 *block_size,
2153                                uint64_t *total_blocks,
2154                                uint64_t *blocks_available,
2155                                uint64_t *user_blocks_available,
2156                                uint64_t *total_file_nodes,
2157                                uint64_t *free_file_nodes,
2158                                uint64_t *fs_identifier);
2159 NTSTATUS cli_raw_ntlm_smb_encryption_start(struct cli_state *cli, 
2160                                 const char *user,
2161                                 const char *pass,
2162                                 const char *domain);
2163 NTSTATUS cli_gss_smb_encryption_start(struct cli_state *cli);
2164 NTSTATUS cli_force_encryption(struct cli_state *c,
2165                         const char *username,
2166                         const char *password,
2167                         const char *domain);
2168
2169 /* The following definitions come from libsmb/clikrb5.c  */
2170
2171 bool unwrap_edata_ntstatus(TALLOC_CTX *mem_ctx, 
2172                            DATA_BLOB *edata, 
2173                            DATA_BLOB *edata_out);
2174 bool unwrap_pac(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, DATA_BLOB *unwrapped_pac_data);
2175
2176 /* The following definitions come from libsmb/clilist.c  */
2177
2178 NTSTATUS cli_list_old(struct cli_state *cli,const char *Mask,uint16 attribute,
2179                       NTSTATUS (*fn)(const char *, struct file_info *,
2180                                  const char *, void *), void *state);
2181 NTSTATUS cli_list_trans(struct cli_state *cli, const char *mask,
2182                         uint16_t attribute, int info_level,
2183                         NTSTATUS (*fn)(const char *mnt, struct file_info *finfo,
2184                                    const char *mask, void *private_data),
2185                         void *private_data);
2186 struct tevent_req *cli_list_send(TALLOC_CTX *mem_ctx,
2187                                  struct tevent_context *ev,
2188                                  struct cli_state *cli,
2189                                  const char *mask,
2190                                  uint16_t attribute,
2191                                  uint16_t info_level);
2192 NTSTATUS cli_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2193                        struct file_info **finfo, size_t *num_finfo);
2194 NTSTATUS cli_list(struct cli_state *cli,const char *Mask,uint16 attribute,
2195                   NTSTATUS (*fn)(const char *, struct file_info *, const char *,
2196                              void *), void *state);
2197
2198 /* The following definitions come from libsmb/climessage.c  */
2199
2200 struct tevent_req *cli_message_send(TALLOC_CTX *mem_ctx,
2201                                     struct tevent_context *ev,
2202                                     struct cli_state *cli,
2203                                     const char *host, const char *username,
2204                                     const char *message);
2205 NTSTATUS cli_message_recv(struct tevent_req *req);
2206 NTSTATUS cli_message(struct cli_state *cli, const char *host,
2207                      const char *username, const char *message);
2208
2209 /* The following definitions come from libsmb/clioplock.c  */
2210
2211 struct tevent_req *cli_oplock_ack_send(TALLOC_CTX *mem_ctx,
2212                                        struct tevent_context *ev,
2213                                        struct cli_state *cli,
2214                                        uint16_t fnum, uint8_t level);
2215 NTSTATUS cli_oplock_ack_recv(struct tevent_req *req);
2216 NTSTATUS cli_oplock_ack(struct cli_state *cli, uint16_t fnum, unsigned char level);
2217 void cli_oplock_handler(struct cli_state *cli, 
2218                         NTSTATUS (*handler)(struct cli_state *, uint16_t, unsigned char));
2219
2220 /* The following definitions come from libsmb/cliprint.c  */
2221
2222 int cli_print_queue(struct cli_state *cli,
2223                     void (*fn)(struct print_job_info *));
2224 int cli_printjob_del(struct cli_state *cli, int job);
2225
2226 /* The following definitions come from libsmb/cliquota.c  */
2227
2228 NTSTATUS cli_get_quota_handle(struct cli_state *cli, uint16_t *quota_fnum);
2229 void free_ntquota_list(SMB_NTQUOTA_LIST **qt_list);
2230 NTSTATUS cli_get_user_quota(struct cli_state *cli, int quota_fnum,
2231                             SMB_NTQUOTA_STRUCT *pqt);
2232 NTSTATUS cli_set_user_quota(struct cli_state *cli, int quota_fnum,
2233                             SMB_NTQUOTA_STRUCT *pqt);
2234 NTSTATUS cli_list_user_quota(struct cli_state *cli, int quota_fnum,
2235                              SMB_NTQUOTA_LIST **pqt_list);
2236 NTSTATUS cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum,
2237                                SMB_NTQUOTA_STRUCT *pqt);
2238 NTSTATUS cli_set_fs_quota_info(struct cli_state *cli, int quota_fnum,
2239                                SMB_NTQUOTA_STRUCT *pqt);
2240
2241 /* The following definitions come from libsmb/clirap.c  */
2242
2243 bool cli_api(struct cli_state *cli,
2244              char *param, int prcnt, int mprcnt,
2245              char *data, int drcnt, int mdrcnt,
2246              char **rparam, unsigned int *rprcnt,
2247              char **rdata, unsigned int *rdrcnt);
2248 bool cli_NetWkstaUserLogon(struct cli_state *cli,char *user, char *workstation);
2249 int cli_RNetShareEnum(struct cli_state *cli, void (*fn)(const char *, uint32, const char *, void *), void *state);
2250 bool cli_NetServerEnum(struct cli_state *cli, char *workgroup, uint32 stype,
2251                        void (*fn)(const char *, uint32, const char *, void *),
2252                        void *state);
2253 bool cli_oem_change_password(struct cli_state *cli, const char *user, const char *new_password,
2254                              const char *old_password);
2255 struct tevent_req *cli_qpathinfo1_send(TALLOC_CTX *mem_ctx,
2256                                        struct event_context *ev,
2257                                        struct cli_state *cli,
2258                                        const char *fname);
2259 NTSTATUS cli_qpathinfo1_recv(struct tevent_req *req,
2260                              time_t *change_time,
2261                              time_t *access_time,
2262                              time_t *write_time,
2263                              SMB_OFF_T *size,
2264                              uint16 *mode);
2265 NTSTATUS cli_qpathinfo1(struct cli_state *cli,
2266                         const char *fname,
2267                         time_t *change_time,
2268                         time_t *access_time,
2269                         time_t *write_time,
2270                         SMB_OFF_T *size,
2271                         uint16 *mode);
2272 NTSTATUS cli_setpathinfo_basic(struct cli_state *cli, const char *fname,
2273                                time_t create_time,
2274                                time_t access_time,
2275                                time_t write_time,
2276                                time_t change_time,
2277                                uint16 mode);
2278 struct tevent_req *cli_qpathinfo2_send(TALLOC_CTX *mem_ctx,
2279                                        struct event_context *ev,
2280                                        struct cli_state *cli,
2281                                        const char *fname);
2282 NTSTATUS cli_qpathinfo2_recv(struct tevent_req *req,
2283                              struct timespec *create_time,
2284                              struct timespec *access_time,
2285                              struct timespec *write_time,
2286                              struct timespec *change_time,
2287                              SMB_OFF_T *size, uint16 *mode,
2288                              SMB_INO_T *ino);
2289 NTSTATUS cli_qpathinfo2(struct cli_state *cli, const char *fname,
2290                         struct timespec *create_time,
2291                         struct timespec *access_time,
2292                         struct timespec *write_time,
2293                         struct timespec *change_time,
2294                         SMB_OFF_T *size, uint16 *mode,
2295                         SMB_INO_T *ino);
2296 struct tevent_req *cli_qpathinfo_streams_send(TALLOC_CTX *mem_ctx,
2297                                               struct tevent_context *ev,
2298                                               struct cli_state *cli,
2299                                               const char *fname);
2300 NTSTATUS cli_qpathinfo_streams_recv(struct tevent_req *req,
2301                                     TALLOC_CTX *mem_ctx,
2302                                     unsigned int *pnum_streams,
2303                                     struct stream_struct **pstreams);
2304 NTSTATUS cli_qpathinfo_streams(struct cli_state *cli, const char *fname,
2305                                TALLOC_CTX *mem_ctx,
2306                                unsigned int *pnum_streams,
2307                                struct stream_struct **pstreams);
2308 NTSTATUS cli_qfilename(struct cli_state *cli, uint16_t fnum, char *name,
2309                        size_t namelen);
2310 NTSTATUS cli_qfileinfo_basic(struct cli_state *cli, uint16_t fnum,
2311                              uint16 *mode, SMB_OFF_T *size,
2312                              struct timespec *create_time,
2313                              struct timespec *access_time,
2314                              struct timespec *write_time,
2315                              struct timespec *change_time,
2316                              SMB_INO_T *ino);
2317 struct tevent_req *cli_qpathinfo_basic_send(TALLOC_CTX *mem_ctx,
2318                                             struct event_context *ev,
2319                                             struct cli_state *cli,
2320                                             const char *fname);
2321 NTSTATUS cli_qpathinfo_basic_recv(struct tevent_req *req,
2322                                   SMB_STRUCT_STAT *sbuf, uint32 *attributes);
2323 NTSTATUS cli_qpathinfo_basic(struct cli_state *cli, const char *name,
2324                              SMB_STRUCT_STAT *sbuf, uint32 *attributes);
2325 NTSTATUS cli_qpathinfo_alt_name(struct cli_state *cli, const char *fname, fstring alt_name);
2326 struct tevent_req *cli_qpathinfo_send(TALLOC_CTX *mem_ctx,
2327                                       struct tevent_context *ev,
2328                                       struct cli_state *cli, const char *fname,
2329                                       uint16_t level, uint32_t min_rdata,
2330                                       uint32_t max_rdata);
2331 NTSTATUS cli_qpathinfo_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2332                             uint8_t **rdata, uint32_t *num_rdata);
2333 NTSTATUS cli_qpathinfo(TALLOC_CTX *mem_ctx, struct cli_state *cli,
2334                        const char *fname, uint16_t level, uint32_t min_rdata,
2335                        uint32_t max_rdata,
2336                        uint8_t **rdata, uint32_t *num_rdata);
2337
2338 struct tevent_req *cli_qfileinfo_send(TALLOC_CTX *mem_ctx,
2339                                       struct tevent_context *ev,
2340                                       struct cli_state *cli, uint16_t fnum,
2341                                       uint16_t level, uint32_t min_rdata,
2342                                       uint32_t max_rdata);
2343 NTSTATUS cli_qfileinfo_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2344                             uint8_t **rdata, uint32_t *num_rdata);
2345 NTSTATUS cli_qfileinfo(TALLOC_CTX *mem_ctx, struct cli_state *cli,
2346                        uint16_t fnum, uint16_t level, uint32_t min_rdata,
2347                        uint32_t max_rdata,
2348                        uint8_t **rdata, uint32_t *num_rdata);
2349
2350 struct tevent_req *cli_flush_send(TALLOC_CTX *mem_ctx,
2351                                   struct event_context *ev,
2352                                   struct cli_state *cli,
2353                                   uint16_t fnum);
2354 NTSTATUS cli_flush_recv(struct tevent_req *req);
2355 NTSTATUS cli_flush(TALLOC_CTX *mem_ctx, struct cli_state *cli, uint16_t fnum);
2356
2357 struct tevent_req *cli_shadow_copy_data_send(TALLOC_CTX *mem_ctx,
2358                                              struct tevent_context *ev,
2359                                              struct cli_state *cli,
2360                                              uint16_t fnum,
2361                                              bool get_names);
2362 NTSTATUS cli_shadow_copy_data_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2363                                    char ***pnames, int *pnum_names);
2364 NTSTATUS cli_shadow_copy_data(TALLOC_CTX *mem_ctx, struct cli_state *cli,
2365                               uint16_t fnum, bool get_names,
2366                               char ***pnames, int *pnum_names);
2367
2368 /* The following definitions come from libsmb/clirap2.c  */
2369 struct rap_group_info_1;
2370 struct rap_user_info_1;
2371 struct rap_share_info_2;
2372
2373 int cli_NetGroupDelete(struct cli_state *cli, const char *group_name);
2374 int cli_NetGroupAdd(struct cli_state *cli, struct rap_group_info_1 *grinfo);
2375 int cli_RNetGroupEnum(struct cli_state *cli, void (*fn)(const char *, const char *, void *), void *state);
2376 int cli_RNetGroupEnum0(struct cli_state *cli,
2377                        void (*fn)(const char *, void *),
2378                        void *state);
2379 int cli_NetGroupDelUser(struct cli_state * cli, const char *group_name, const char *user_name);
2380 int cli_NetGroupAddUser(struct cli_state * cli, const char *group_name, const char *user_name);
2381 int cli_NetGroupGetUsers(struct cli_state * cli, const char *group_name, void (*fn)(const char *, void *), void *state );
2382 int cli_NetUserGetGroups(struct cli_state * cli, const char *user_name, void (*fn)(const char *, void *), void *state );
2383 int cli_NetUserDelete(struct cli_state *cli, const char * user_name );
2384 int cli_NetUserAdd(struct cli_state *cli, struct rap_user_info_1 * userinfo );
2385 int cli_RNetUserEnum(struct cli_state *cli, void (*fn)(const char *, const char *, const char *, const char *, void *), void *state);
2386 int cli_RNetUserEnum0(struct cli_state *cli,
2387                       void (*fn)(const char *, void *),
2388                       void *state);
2389 int cli_NetFileClose(struct cli_state *cli, uint32 file_id );
2390 int cli_NetFileGetInfo(struct cli_state *cli, uint32 file_id, void (*fn)(const char *, const char *, uint16, uint16, uint32));
2391 int cli_NetFileEnum(struct cli_state *cli, const char * user,
2392                     const char * base_path,
2393                     void (*fn)(const char *, const char *, uint16, uint16,
2394                                uint32));
2395 int cli_NetShareAdd(struct cli_state *cli, struct rap_share_info_2 * sinfo );
2396 int cli_NetShareDelete(struct cli_state *cli, const char * share_name );
2397 bool cli_get_pdc_name(struct cli_state *cli, const char *workgroup, char **pdc_name);
2398 bool cli_get_server_domain(struct cli_state *cli);
2399 bool cli_get_server_type(struct cli_state *cli, uint32 *pstype);
2400 bool cli_get_server_name(TALLOC_CTX *mem_ctx, struct cli_state *cli,
2401                          char **servername);
2402 bool cli_ns_check_server_type(struct cli_state *cli, char *workgroup, uint32 stype);
2403 bool cli_NetWkstaUserLogoff(struct cli_state *cli, const char *user, const char *workstation);
2404 int cli_NetPrintQEnum(struct cli_state *cli,
2405                 void (*qfn)(const char*,uint16,uint16,uint16,const char*,const char*,const char*,const char*,const char*,uint16,uint16),
2406                 void (*jfn)(uint16,const char*,const char*,const char*,const char*,uint16,uint16,const char*,unsigned int,unsigned int,const char*));
2407 int cli_NetPrintQGetInfo(struct cli_state *cli, const char *printer,
2408         void (*qfn)(const char*,uint16,uint16,uint16,const char*,const char*,const char*,const char*,const char*,uint16,uint16),
2409         void (*jfn)(uint16,const char*,const char*,const char*,const char*,uint16,uint16,const char*,unsigned int,unsigned int,const char*));
2410 int cli_RNetServiceEnum(struct cli_state *cli, void (*fn)(const char *, const char *, void *), void *state);
2411 int cli_NetSessionEnum(struct cli_state *cli, void (*fn)(char *, char *, uint16, uint16, uint16, unsigned int, unsigned int, unsigned int, char *));
2412 int cli_NetSessionGetInfo(struct cli_state *cli, const char *workstation,
2413                 void (*fn)(const char *, const char *, uint16, uint16, uint16, unsigned int, unsigned int, unsigned int, const char *));
2414 int cli_NetSessionDel(struct cli_state *cli, const char *workstation);
2415 int cli_NetConnectionEnum(struct cli_state *cli, const char *qualifier,
2416                         void (*fn)(uint16_t conid, uint16_t contype,
2417                                 uint16_t numopens, uint16_t numusers,
2418                                 uint32_t contime, const char *username,
2419                                 const char *netname));
2420
2421 /* The following definitions come from libsmb/clireadwrite.c  */
2422
2423 struct tevent_req *cli_read_andx_create(TALLOC_CTX *mem_ctx,
2424                                         struct event_context *ev,
2425                                         struct cli_state *cli, uint16_t fnum,
2426                                         off_t offset, size_t size,
2427                                         struct tevent_req **psmbreq);
2428 struct tevent_req *cli_read_andx_send(TALLOC_CTX *mem_ctx,
2429                                       struct event_context *ev,
2430                                       struct cli_state *cli, uint16_t fnum,
2431                                       off_t offset, size_t size);
2432 NTSTATUS cli_read_andx_recv(struct tevent_req *req, ssize_t *received,
2433                             uint8_t **rcvbuf);
2434 struct tevent_req *cli_pull_send(TALLOC_CTX *mem_ctx,
2435                                  struct event_context *ev,
2436                                  struct cli_state *cli,
2437                                  uint16_t fnum, off_t start_offset,
2438                                  SMB_OFF_T size, size_t window_size,
2439                                  NTSTATUS (*sink)(char *buf, size_t n,
2440                                                   void *priv),
2441                                  void *priv);
2442 NTSTATUS cli_pull_recv(struct tevent_req *req, SMB_OFF_T *received);
2443 NTSTATUS cli_pull(struct cli_state *cli, uint16_t fnum,
2444                   off_t start_offset, SMB_OFF_T size, size_t window_size,
2445                   NTSTATUS (*sink)(char *buf, size_t n, void *priv),
2446                   void *priv, SMB_OFF_T *received);
2447 ssize_t cli_read(struct cli_state *cli, uint16_t fnum, char *buf,
2448                  off_t offset, size_t size);
2449 ssize_t cli_readraw(struct cli_state *cli, uint16_t fnum, char *buf, off_t offset, size_t size);
2450 ssize_t cli_write(struct cli_state *cli,
2451                  uint16_t fnum, uint16 write_mode,
2452                  const char *buf, off_t offset, size_t size);
2453 ssize_t cli_smbwrite(struct cli_state *cli,
2454                      uint16_t fnum, char *buf, off_t offset, size_t size1);
2455 struct tevent_req *cli_write_andx_create(TALLOC_CTX *mem_ctx,
2456                                          struct event_context *ev,
2457                                          struct cli_state *cli, uint16_t fnum,
2458                                          uint16_t mode, const uint8_t *buf,
2459                                          off_t offset, size_t size,
2460                                          struct tevent_req **reqs_before,
2461                                          int num_reqs_before,
2462                                          struct tevent_req **psmbreq);
2463 struct tevent_req *cli_write_andx_send(TALLOC_CTX *mem_ctx,
2464                                        struct event_context *ev,
2465                                        struct cli_state *cli, uint16_t fnum,
2466                                        uint16_t mode, const uint8_t *buf,
2467                                        off_t offset, size_t size);
2468 NTSTATUS cli_write_andx_recv(struct tevent_req *req, size_t *pwritten);
2469
2470 struct tevent_req *cli_push_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
2471                                  struct cli_state *cli,
2472                                  uint16_t fnum, uint16_t mode,
2473                                  off_t start_offset, size_t window_size,
2474                                  size_t (*source)(uint8_t *buf, size_t n,
2475                                                   void *priv),
2476                                  void *priv);
2477 NTSTATUS cli_push_recv(struct tevent_req *req);
2478 NTSTATUS cli_push(struct cli_state *cli, uint16_t fnum, uint16_t mode,
2479                   off_t start_offset, size_t window_size,
2480                   size_t (*source)(uint8_t *buf, size_t n, void *priv),
2481                   void *priv);
2482
2483 /* The following definitions come from libsmb/clisecdesc.c  */
2484
2485 struct security_descriptor *cli_query_secdesc(struct cli_state *cli, uint16_t fnum,
2486                             TALLOC_CTX *mem_ctx);
2487 NTSTATUS cli_set_secdesc(struct cli_state *cli, uint16_t fnum,
2488                          struct security_descriptor *sd);
2489
2490 /* The following definitions come from libsmb/clispnego.c  */
2491
2492 DATA_BLOB spnego_gen_negTokenInit(TALLOC_CTX *ctx,
2493                                   const char *OIDs[],
2494                                   DATA_BLOB *psecblob,
2495                                   const char *principal);
2496 bool spnego_parse_negTokenInit(TALLOC_CTX *ctx,
2497                                DATA_BLOB blob,
2498                                char *OIDs[ASN1_MAX_OIDS],
2499                                char **principal,
2500                                DATA_BLOB *secblob);
2501 DATA_BLOB spnego_gen_krb5_wrap(TALLOC_CTX *ctx, const DATA_BLOB ticket, const uint8 tok_id[2]);
2502 bool spnego_parse_krb5_wrap(TALLOC_CTX *ctx, DATA_BLOB blob, DATA_BLOB *ticket, uint8 tok_id[2]);
2503 int spnego_gen_krb5_negTokenInit(TALLOC_CTX *ctx,
2504                             const char *principal, int time_offset,
2505                             DATA_BLOB *targ,
2506                             DATA_BLOB *session_key_krb5, uint32 extra_ap_opts,
2507                             time_t *expire_time);
2508 bool spnego_parse_challenge(TALLOC_CTX *ctx, const DATA_BLOB blob,
2509                             DATA_BLOB *chal1, DATA_BLOB *chal2);
2510 DATA_BLOB spnego_gen_auth(TALLOC_CTX *ctx, DATA_BLOB blob);
2511 bool spnego_parse_auth(TALLOC_CTX *ctx, DATA_BLOB blob, DATA_BLOB *auth);
2512 DATA_BLOB spnego_gen_auth_response(TALLOC_CTX *ctx, DATA_BLOB *reply, NTSTATUS nt_status,
2513                                    const char *mechOID);
2514 bool spnego_parse_auth_response(TALLOC_CTX *ctx,
2515                                 DATA_BLOB blob, NTSTATUS nt_status,
2516                                 const char *mechOID,
2517                                 DATA_BLOB *auth);
2518
2519 bool spnego_parse_auth_and_mic(TALLOC_CTX *ctx, DATA_BLOB blob,
2520                                 DATA_BLOB *auth, DATA_BLOB *signature);
2521 DATA_BLOB spnego_gen_auth_response_and_mic(TALLOC_CTX *ctx,
2522                                            NTSTATUS nt_status,
2523                                            const char *mechOID,
2524                                            DATA_BLOB *reply,
2525                                            DATA_BLOB *mechlistMIC);
2526 bool spnego_mech_list_blob(TALLOC_CTX *mem_ctx,
2527                            char **oid_list, DATA_BLOB *data);
2528
2529 /* The following definitions come from libsmb/clistr.c  */
2530
2531 size_t clistr_push_fn(const char *function,
2532                         unsigned int line,
2533                         struct cli_state *cli,
2534                         void *dest,
2535                         const char *src,
2536                         int dest_len,
2537                         int flags);
2538 size_t clistr_pull_fn(const char *function,
2539                         unsigned int line,
2540                         const char *inbuf,
2541                         char *dest,
2542                         const void *src,
2543                         int dest_len,
2544                         int src_len,
2545                         int flags);
2546 size_t clistr_pull_talloc_fn(const char *function,
2547                                 unsigned int line,
2548                                 TALLOC_CTX *ctx,
2549                                 const char *base,
2550                                 uint16_t flags2,
2551                                 char **pp_dest,
2552                                 const void *src,
2553                                 int src_len,
2554                                 int flags);
2555 size_t clistr_align_out(struct cli_state *cli, const void *p, int flags);
2556
2557 /* The following definitions come from libsmb/clitrans.c  */
2558
2559 struct tevent_req *cli_trans_send(
2560         TALLOC_CTX *mem_ctx, struct event_context *ev,
2561         struct cli_state *cli, uint8_t cmd,
2562         const char *pipe_name, uint16_t fid, uint16_t function, int flags,
2563         uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
2564         uint8_t *param, uint32_t num_param, uint32_t max_param,
2565         uint8_t *data, uint32_t num_data, uint32_t max_data);
2566 NTSTATUS cli_trans_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2567                         uint16_t *recv_flags2,
2568                         uint16_t **setup, uint8_t min_setup,
2569                         uint8_t *num_setup,
2570                         uint8_t **param, uint32_t min_param,
2571                         uint32_t *num_param,
2572                         uint8_t **data, uint32_t min_data,
2573                         uint32_t *num_data);
2574 NTSTATUS cli_trans(TALLOC_CTX *mem_ctx, struct cli_state *cli,
2575                    uint8_t trans_cmd,
2576                    const char *pipe_name, uint16_t fid, uint16_t function,
2577                    int flags,
2578                    uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
2579                    uint8_t *param, uint32_t num_param, uint32_t max_param,
2580                    uint8_t *data, uint32_t num_data, uint32_t max_data,
2581                    uint16_t *recv_flags2,
2582                    uint16_t **rsetup, uint8_t min_rsetup, uint8_t *num_rsetup,
2583                    uint8_t **rparam, uint32_t min_rparam, uint32_t *num_rparam,
2584                    uint8_t **rdata, uint32_t min_rdata, uint32_t *num_rdata);
2585
2586 /* The following definitions come from libsmb/conncache.c  */
2587
2588 NTSTATUS check_negative_conn_cache_timeout( const char *domain, const char *server, unsigned int failed_cache_timeout );
2589 NTSTATUS check_negative_conn_cache( const char *domain, const char *server);
2590 void add_failed_connection_entry(const char *domain, const char *server, NTSTATUS result) ;
2591 void flush_negative_conn_cache_for_domain(const char *domain);
2592
2593 /* The following definitions come from libsmb/dsgetdcname.c  */
2594
2595 struct netr_DsRGetDCNameInfo;
2596
2597 void debug_dsdcinfo_flags(int lvl, uint32_t flags);
2598 NTSTATUS dsgetdcname(TALLOC_CTX *mem_ctx,
2599                      struct messaging_context *msg_ctx,
2600                      const char *domain_name,
2601                      const struct GUID *domain_guid,
2602                      const char *site_name,
2603                      uint32_t flags,
2604                      struct netr_DsRGetDCNameInfo **info);
2605
2606 /* The following definitions come from libsmb/errormap.c  */
2607
2608 NTSTATUS dos_to_ntstatus(uint8 eclass, uint32 ecode);
2609 void ntstatus_to_dos(NTSTATUS ntstatus, uint8 *eclass, uint32 *ecode);
2610 NTSTATUS werror_to_ntstatus(WERROR error);
2611 WERROR ntstatus_to_werror(NTSTATUS error);
2612 NTSTATUS map_nt_error_from_wbcErr(wbcErr wbc_err);
2613 NTSTATUS map_nt_error_from_gss(uint32 gss_maj, uint32 minor);
2614
2615 /* The following definitions come from libsmb/namecache.c  */
2616
2617 bool namecache_enable(void);
2618 bool namecache_store(const char *name,
2619                         int name_type,
2620                         int num_names,
2621                         struct ip_service *ip_list);
2622 bool namecache_fetch(const char *name,
2623                         int name_type,
2624                         struct ip_service **ip_list,
2625                         int *num_names);
2626 bool namecache_delete(const char *name, int name_type);
2627 void namecache_flush(void);
2628 bool namecache_status_store(const char *keyname, int keyname_type,
2629                 int name_type, const struct sockaddr_storage *keyip,
2630                 const char *srvname);
2631 bool namecache_status_fetch(const char *keyname,
2632                                 int keyname_type,
2633                                 int name_type,
2634                                 const struct sockaddr_storage *keyip,
2635                                 char *srvname_out);
2636
2637 /* The following definitions come from libsmb/namequery.c  */
2638
2639 bool saf_store( const char *domain, const char *servername );
2640 bool saf_join_store( const char *domain, const char *servername );
2641 bool saf_delete( const char *domain );
2642 char *saf_fetch( const char *domain );
2643 struct tevent_req *node_status_query_send(TALLOC_CTX *mem_ctx,
2644                                           struct tevent_context *ev,
2645                                           struct nmb_name *name,
2646                                           const struct sockaddr_storage *addr);
2647 NTSTATUS node_status_query_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2648                                 struct node_status **pnode_status,
2649                                 int *pnum_names,
2650                                 struct node_status_extra *extra);
2651 NTSTATUS node_status_query(TALLOC_CTX *mem_ctx, struct nmb_name *name,
2652                            const struct sockaddr_storage *addr,
2653                            struct node_status **pnode_status,
2654                            int *pnum_names,
2655                            struct node_status_extra *extra);
2656 bool name_status_find(const char *q_name,
2657                         int q_type,
2658                         int type,
2659                         const struct sockaddr_storage *to_ss,
2660                         fstring name);
2661 int ip_service_compare(struct ip_service *ss1, struct ip_service *ss2);
2662 struct tevent_req *name_query_send(TALLOC_CTX *mem_ctx,
2663                                    struct tevent_context *ev,
2664                                    const char *name, int name_type,
2665                                    bool bcast, bool recurse,
2666                                    const struct sockaddr_storage *addr);
2667 NTSTATUS name_query_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2668                          struct sockaddr_storage **addrs, int *num_addrs,
2669                          uint8_t *flags);
2670 NTSTATUS name_query(const char *name, int name_type,
2671                     bool bcast, bool recurse,
2672                     const struct sockaddr_storage *to_ss,
2673                     TALLOC_CTX *mem_ctx,
2674                     struct sockaddr_storage **addrs,
2675                     int *num_addrs, uint8_t *flags);
2676 NTSTATUS name_resolve_bcast(const char *name,
2677                         int name_type,
2678                         struct ip_service **return_iplist,
2679                         int *return_count);
2680 NTSTATUS resolve_wins(const char *name,
2681                 int name_type,
2682                 struct ip_service **return_iplist,
2683                 int *return_count);
2684 NTSTATUS internal_resolve_name(const char *name,
2685                                 int name_type,
2686                                 const char *sitename,
2687                                 struct ip_service **return_iplist,
2688                                 int *return_count,
2689                                 const char *resolve_order);
2690 bool resolve_name(const char *name,
2691                 struct sockaddr_storage *return_ss,
2692                 int name_type,
2693                 bool prefer_ipv4);
2694 NTSTATUS resolve_name_list(TALLOC_CTX *ctx,
2695                 const char *name,
2696                 int name_type,
2697                 struct sockaddr_storage **return_ss_arr,
2698                 unsigned int *p_num_entries);
2699 bool find_master_ip(const char *group, struct sockaddr_storage *master_ss);
2700 bool get_pdc_ip(const char *domain, struct sockaddr_storage *pss);
2701 NTSTATUS get_sorted_dc_list( const char *domain,
2702                         const char *sitename,
2703                         struct ip_service **ip_list,
2704                         int *count,
2705                         bool ads_only );
2706 NTSTATUS get_kdc_list( const char *realm,
2707                         const char *sitename,
2708                         struct ip_service **ip_list,
2709                         int *count);
2710
2711 /* The following definitions come from libsmb/namequery_dc.c  */
2712
2713 bool get_dc_name(const char *domain,
2714                 const char *realm,
2715                 fstring srv_name,
2716                 struct sockaddr_storage *ss_out);
2717
2718 /* The following definitions come from libsmb/nmblib.c  */
2719
2720 void debug_nmb_packet(struct packet_struct *p);
2721 void put_name(char *dest, const char *name, int pad, unsigned int name_type);
2722 char *nmb_namestr(const struct nmb_name *n);
2723 struct packet_struct *copy_packet(struct packet_struct *packet);
2724 void free_packet(struct packet_struct *packet);
2725 int packet_trn_id(struct packet_struct *p);
2726 struct packet_struct *parse_packet(char *buf,int length,
2727                                    enum packet_type packet_type,
2728                                    struct in_addr ip,
2729                                    int port);
2730 struct packet_struct *read_packet(int fd,enum packet_type packet_type);
2731 void make_nmb_name( struct nmb_name *n, const char *name, int type);
2732 bool nmb_name_equal(struct nmb_name *n1, struct nmb_name *n2);
2733 int build_packet(char *buf, size_t buflen, struct packet_struct *p);
2734 bool send_packet(struct packet_struct *p);
2735 struct packet_struct *receive_packet(int fd,enum packet_type type,int t);
2736 bool match_mailslot_name(struct packet_struct *p, const char *mailslot_name);
2737 int matching_len_bits(unsigned char *p1, unsigned char *p2, size_t len);
2738 void sort_query_replies(char *data, int n, struct in_addr ip);
2739 char *name_mangle(TALLOC_CTX *mem_ctx, const char *In, char name_type);
2740 int name_extract(unsigned char *buf,size_t buf_len, unsigned int ofs, fstring name);
2741 int name_len(unsigned char *s1, size_t buf_len);
2742
2743 /* The following definitions come from libsmb/nterr.c  */
2744
2745 const char *nt_errstr(NTSTATUS nt_code);
2746 const char *get_friendly_nt_error_msg(NTSTATUS nt_code);
2747 const char *get_nt_error_c_code(NTSTATUS nt_code);
2748 NTSTATUS nt_status_string_to_code(const char *nt_status_str);
2749 NTSTATUS nt_status_squash(NTSTATUS nt_status);
2750
2751 /* The following definitions come from libsmb/ntlmssp.c  */
2752
2753 NTSTATUS ntlmssp_set_username(struct ntlmssp_state *ntlmssp_state, const char *user) ;
2754 NTSTATUS ntlmssp_set_hashes(struct ntlmssp_state *ntlmssp_state,
2755                             const uint8_t lm_hash[16],
2756                             const uint8_t nt_hash[16]) ;
2757 NTSTATUS ntlmssp_set_password(struct ntlmssp_state *ntlmssp_state, const char *password) ;
2758 NTSTATUS ntlmssp_set_domain(struct ntlmssp_state *ntlmssp_state, const char *domain) ;
2759 void ntlmssp_want_feature_list(struct ntlmssp_state *ntlmssp_state, char *feature_list);
2760 void ntlmssp_want_feature(struct ntlmssp_state *ntlmssp_state, uint32_t feature);
2761 NTSTATUS ntlmssp_update(struct ntlmssp_state *ntlmssp_state,
2762                         const DATA_BLOB in, DATA_BLOB *out) ;
2763 DATA_BLOB ntlmssp_weaken_keys(struct ntlmssp_state *ntlmssp_state, TALLOC_CTX *mem_ctx);
2764 NTSTATUS ntlmssp_server_start(TALLOC_CTX *mem_ctx,
2765                               bool is_standalone,
2766                               const char *netbios_name,
2767                               const char *netbios_domain,
2768                               const char *dns_name,
2769                               const char *dns_domain,
2770                               struct ntlmssp_state **ntlmssp_state);
2771 NTSTATUS ntlmssp_client_start(TALLOC_CTX *mem_ctx,
2772                               const char *netbios_name,
2773                               const char *netbios_domain,
2774                               bool use_ntlmv2,
2775                               struct ntlmssp_state **_ntlmssp_state);
2776
2777 /* The following definitions come from libsmb/passchange.c  */
2778
2779 NTSTATUS remote_password_change(const char *remote_machine, const char *user_name, 
2780                                 const char *old_passwd, const char *new_passwd,
2781                                 char **err_str);
2782
2783 /* The following definitions come from libsmb/samlogon_cache.c  */
2784
2785 bool netsamlogon_cache_init(void);
2786 bool netsamlogon_cache_shutdown(void);
2787 void netsamlogon_clear_cached_user(const struct dom_sid *user_sid);
2788 bool netsamlogon_cache_store(const char *username, struct netr_SamInfo3 *info3);
2789 struct netr_SamInfo3 *netsamlogon_cache_get(TALLOC_CTX *mem_ctx, const struct dom_sid *user_sid);
2790 bool netsamlogon_cache_have(const struct dom_sid *user_sid);
2791
2792 /* The following definitions come from libsmb/smb_seal.c  */
2793
2794 NTSTATUS get_enc_ctx_num(const uint8_t *buf, uint16 *p_enc_ctx_num);
2795 bool common_encryption_on(struct smb_trans_enc_state *es);
2796 NTSTATUS common_ntlm_decrypt_buffer(struct ntlmssp_state *ntlmssp_state, char *buf);
2797 NTSTATUS common_ntlm_encrypt_buffer(struct ntlmssp_state *ntlmssp_state,
2798                                 uint16 enc_ctx_num,
2799                                 char *buf,
2800                                 char **ppbuf_out);
2801 NTSTATUS common_encrypt_buffer(struct smb_trans_enc_state *es, char *buffer, char **buf_out);
2802 NTSTATUS common_decrypt_buffer(struct smb_trans_enc_state *es, char *buf);
2803 void common_free_encryption_state(struct smb_trans_enc_state **pp_es);
2804 void common_free_enc_buffer(struct smb_trans_enc_state *es, char *buf);
2805 bool cli_encryption_on(struct cli_state *cli);
2806 void cli_free_encryption_context(struct cli_state *cli);
2807 void cli_free_enc_buffer(struct cli_state *cli, char *buf);
2808 NTSTATUS cli_decrypt_message(struct cli_state *cli);
2809 NTSTATUS cli_encrypt_message(struct cli_state *cli, char *buf, char **buf_out);
2810
2811 /* The following definitions come from libsmb/clisigning.c  */
2812
2813 bool cli_simple_set_signing(struct cli_state *cli,
2814                             const DATA_BLOB user_session_key,
2815                             const DATA_BLOB response);
2816 bool cli_temp_set_signing(struct cli_state *cli);
2817 void cli_calculate_sign_mac(struct cli_state *cli, char *buf, uint32_t *seqnum);
2818 bool cli_check_sign_mac(struct cli_state *cli, const char *buf, uint32_t seqnum);
2819 bool client_is_signing_on(struct cli_state *cli);
2820 bool client_is_signing_allowed(struct cli_state *cli);
2821 bool client_is_signing_mandatory(struct cli_state *cli);
2822 void cli_set_signing_negotiated(struct cli_state *cli);
2823
2824 /* The following definitions come from smbd/signing.c  */
2825
2826 struct smbd_server_connection;
2827 bool srv_check_sign_mac(struct smbd_server_connection *conn,
2828                         const char *inbuf, uint32_t *seqnum, bool trusted_channel);
2829 void srv_calculate_sign_mac(struct smbd_server_connection *conn,
2830                             char *outbuf, uint32_t seqnum);
2831 void srv_cancel_sign_response(struct smbd_server_connection *conn);
2832 bool srv_init_signing(struct smbd_server_connection *conn);
2833 void srv_set_signing_negotiated(struct smbd_server_connection *conn);
2834 bool srv_is_signing_active(struct smbd_server_connection *conn);
2835 bool srv_is_signing_negotiated(struct smbd_server_connection *conn);
2836 void srv_set_signing(struct smbd_server_connection *conn,
2837                      const DATA_BLOB user_session_key,
2838                      const DATA_BLOB response);
2839
2840 /* The following definitions come from libsmb/smberr.c  */
2841
2842 const char *smb_dos_err_name(uint8 e_class, uint16 num);
2843 const char *get_dos_error_msg(WERROR result);
2844 const char *smb_dos_err_class(uint8 e_class);
2845 char *smb_dos_errstr(char *inbuf);
2846 WERROR map_werror_from_unix(int error);
2847
2848 /* The following definitions come from libsmb/trustdom_cache.c  */
2849
2850 bool trustdom_cache_enable(void);
2851 bool trustdom_cache_shutdown(void);
2852 bool trustdom_cache_store(char* name, char* alt_name, const struct dom_sid *sid,
2853                           time_t timeout);
2854 bool trustdom_cache_fetch(const char* name, struct dom_sid* sid);
2855 uint32 trustdom_cache_fetch_timestamp( void );
2856 bool trustdom_cache_store_timestamp( uint32 t, time_t timeout );
2857 void trustdom_cache_flush(void);
2858 void update_trustdom_cache( void );
2859
2860 /* The following definitions come from libsmb/trusts_util.c  */
2861
2862 NTSTATUS trust_pw_change_and_store_it(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
2863                                       const char *domain,
2864                                       const char *account_name,
2865                                       unsigned char orig_trust_passwd_hash[16],
2866                                       enum netr_SchannelType sec_channel_type);
2867 NTSTATUS trust_pw_find_change_and_store_it(struct rpc_pipe_client *cli, 
2868                                            TALLOC_CTX *mem_ctx, 
2869                                            const char *domain) ;
2870 bool enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain,
2871                                      char ***domain_names, uint32 *num_domains,
2872                                      struct dom_sid **sids );
2873 NTSTATUS change_trust_account_password( const char *domain, const char *remote_machine);
2874
2875 /* The following definitions come from libsmb/unexpected.c  */
2876
2877 struct nb_packet_server;
2878 struct nb_packet_reader;
2879
2880 NTSTATUS nb_packet_server_create(TALLOC_CTX *mem_ctx,
2881                                  struct tevent_context *ev,
2882                                  int max_clients,
2883                                  struct nb_packet_server **presult);
2884 void nb_packet_dispatch(struct nb_packet_server *server,
2885                         struct packet_struct *p);
2886 struct tevent_req *nb_packet_reader_send(TALLOC_CTX *mem_ctx,
2887                                          struct tevent_context *ev,
2888                                          enum packet_type type,
2889                                          int trn_id,
2890                                          const char *mailslot_name);
2891 NTSTATUS nb_packet_reader_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
2892                                struct nb_packet_reader **preader);
2893 struct tevent_req *nb_packet_read_send(TALLOC_CTX *mem_ctx,
2894                                        struct tevent_context *ev,
2895                                        struct nb_packet_reader *reader);
2896 NTSTATUS nb_packet_read_recv(struct tevent_req *req,
2897                              struct packet_struct **ppacket);
2898
2899 /* The following definitions come from locking/brlock.c  */
2900
2901 bool brl_same_context(const struct lock_context *ctx1, 
2902                              const struct lock_context *ctx2);
2903 NTSTATUS brl_lock_failed(files_struct *fsp, const struct lock_struct *lock, bool blocking_lock);
2904 void brl_init(bool read_only);
2905 void brl_shutdown(void);
2906
2907 NTSTATUS brl_lock_windows_default(struct byte_range_lock *br_lck,
2908                 struct lock_struct *plock,
2909                 bool blocking_lock);
2910
2911 NTSTATUS brl_lock(struct messaging_context *msg_ctx,
2912                 struct byte_range_lock *br_lck,
2913                 uint64_t smblctx,
2914                 struct server_id pid,
2915                 br_off start,
2916                 br_off size, 
2917                 enum brl_type lock_type,
2918                 enum brl_flavour lock_flav,
2919                 bool blocking_lock,
2920                 uint64_t *psmblctx,
2921                 struct blocking_lock_record *blr);
2922 bool brl_unlock(struct messaging_context *msg_ctx,
2923                 struct byte_range_lock *br_lck,
2924                 uint64_t smblctx,
2925                 struct server_id pid,
2926                 br_off start,
2927                 br_off size,
2928                 enum brl_flavour lock_flav);
2929 bool brl_unlock_windows_default(struct messaging_context *msg_ctx,
2930                                struct byte_range_lock *br_lck,
2931                                const struct lock_struct *plock);
2932 bool brl_locktest(struct byte_range_lock *br_lck,
2933                 uint64_t smblctx,
2934                 struct server_id pid,
2935                 br_off start,
2936                 br_off size, 
2937                 enum brl_type lock_type,
2938                 enum brl_flavour lock_flav);
2939 NTSTATUS brl_lockquery(struct byte_range_lock *br_lck,
2940                 uint64_t *psmblctx,
2941                 struct server_id pid,
2942                 br_off *pstart,
2943                 br_off *psize, 
2944                 enum brl_type *plock_type,
2945                 enum brl_flavour lock_flav);
2946 bool brl_lock_cancel(struct byte_range_lock *br_lck,
2947                 uint64_t smblctx,
2948                 struct server_id pid,
2949                 br_off start,
2950                 br_off size,
2951                 enum brl_flavour lock_flav,
2952                 struct blocking_lock_record *blr);
2953 bool brl_lock_cancel_default(struct byte_range_lock *br_lck,
2954                 struct lock_struct *plock);
2955 void brl_close_fnum(struct messaging_context *msg_ctx,
2956                     struct byte_range_lock *br_lck);
2957 int brl_forall(void (*fn)(struct file_id id, struct server_id pid,
2958                           enum brl_type lock_type,
2959                           enum brl_flavour lock_flav,
2960                           br_off start, br_off size,
2961                           void *private_data),
2962                void *private_data);
2963 struct byte_range_lock *brl_get_locks(TALLOC_CTX *mem_ctx,
2964                                         files_struct *fsp);
2965 struct byte_range_lock *brl_get_locks_readonly(files_struct *fsp);
2966 void brl_register_msgs(struct messaging_context *msg_ctx);
2967
2968 /* The following definitions come from locking/locking.c  */
2969
2970 const char *lock_type_name(enum brl_type lock_type);
2971 const char *lock_flav_name(enum brl_flavour lock_flav);
2972 void init_strict_lock_struct(files_struct *fsp,
2973                                 uint64_t smblctx,
2974                                 br_off start,
2975                                 br_off size,
2976                                 enum brl_type lock_type,
2977                                 struct lock_struct *plock);
2978 bool strict_lock_default(files_struct *fsp,
2979                                 struct lock_struct *plock);
2980 void strict_unlock_default(files_struct *fsp,
2981                                 struct lock_struct *plock);
2982 NTSTATUS query_lock(files_struct *fsp,
2983                         uint64_t *psmblctx,
2984                         uint64_t *pcount,
2985                         uint64_t *poffset,
2986                         enum brl_type *plock_type,
2987                         enum brl_flavour lock_flav);
2988 struct byte_range_lock *do_lock(struct messaging_context *msg_ctx,
2989                         files_struct *fsp,
2990                         uint64_t smblctx,
2991                         uint64_t count,
2992                         uint64_t offset,
2993                         enum brl_type lock_type,
2994                         enum brl_flavour lock_flav,
2995                         bool blocking_lock,
2996                         NTSTATUS *perr,
2997                         uint64_t *psmblctx,
2998                         struct blocking_lock_record *blr);
2999 NTSTATUS do_unlock(struct messaging_context *msg_ctx,
3000                         files_struct *fsp,
3001                         uint64_t smblctx,
3002                         uint64_t count,
3003                         uint64_t offset,
3004                         enum brl_flavour lock_flav);
3005 NTSTATUS do_lock_cancel(files_struct *fsp,
3006                         uint64 smblctx,
3007                         uint64_t count,
3008                         uint64_t offset,
3009                         enum brl_flavour lock_flav,
3010                         struct blocking_lock_record *blr);
3011 void locking_close_file(struct messaging_context *msg_ctx,
3012                         files_struct *fsp,
3013                         enum file_close_type close_type);
3014 bool locking_init(void);
3015 bool locking_init_readonly(void);
3016 bool locking_end(void);
3017 char *share_mode_str(TALLOC_CTX *ctx, int num, const struct share_mode_entry *e);
3018 struct share_mode_lock *get_share_mode_lock(TALLOC_CTX *mem_ctx,
3019                                             const struct file_id id,
3020                                             const char *servicepath,
3021                                             const struct smb_filename *smb_fname,
3022                                             const struct timespec *old_write_time);
3023 struct share_mode_lock *fetch_share_mode_unlocked(TALLOC_CTX *mem_ctx,
3024                                                   const struct file_id id);
3025 bool rename_share_filename(struct messaging_context *msg_ctx,
3026                         struct share_mode_lock *lck,
3027                         const char *servicepath,
3028                         uint32_t orig_name_hash,
3029                         uint32_t new_name_hash,
3030                         const struct smb_filename *smb_fname);
3031 void get_file_infos(struct file_id id,
3032                     uint32_t name_hash,
3033                     bool *delete_on_close,
3034                     struct timespec *write_time);
3035 bool is_valid_share_mode_entry(const struct share_mode_entry *e);
3036 bool is_deferred_open_entry(const struct share_mode_entry *e);
3037 bool is_unused_share_mode_entry(const struct share_mode_entry *e);
3038 void set_share_mode(struct share_mode_lock *lck, files_struct *fsp,
3039                     uid_t uid, uint64_t mid, uint16 op_type);
3040 void add_deferred_open(struct share_mode_lock *lck, uint64_t mid,
3041                        struct timeval request_time,
3042                        struct server_id pid, struct file_id id);
3043 bool del_share_mode(struct share_mode_lock *lck, files_struct *fsp);
3044 void del_deferred_open_entry(struct share_mode_lock *lck, uint64_t mid,
3045                              struct server_id pid);
3046 bool remove_share_oplock(struct share_mode_lock *lck, files_struct *fsp);
3047 bool downgrade_share_oplock(struct share_mode_lock *lck, files_struct *fsp);
3048 NTSTATUS can_set_delete_on_close(files_struct *fsp, uint32 dosmode);
3049 const UNIX_USER_TOKEN *get_delete_on_close_token(struct share_mode_lock *lck, uint32_t name_hash);
3050 void set_delete_on_close_lck(files_struct *fsp,
3051                         struct share_mode_lock *lck,
3052                         bool delete_on_close,
3053                         const UNIX_USER_TOKEN *tok);
3054 bool set_delete_on_close(files_struct *fsp, bool delete_on_close, const UNIX_USER_TOKEN *tok);
3055 bool is_delete_on_close_set(struct share_mode_lock *lck, uint32_t name_hash);
3056 bool set_sticky_write_time(struct file_id fileid, struct timespec write_time);
3057 bool set_write_time(struct file_id fileid, struct timespec write_time);
3058 int share_mode_forall(void (*fn)(const struct share_mode_entry *, const char *,
3059                                  const char *, void *),
3060                       void *private_data);
3061
3062 /* The following definitions come from locking/posix.c  */
3063
3064 bool is_posix_locked(files_struct *fsp,
3065                         uint64_t *pu_offset,
3066                         uint64_t *pu_count,
3067                         enum brl_type *plock_type,
3068                         enum brl_flavour lock_flav);
3069 bool posix_locking_init(bool read_only);
3070 bool posix_locking_end(void);
3071 void reduce_windows_lock_ref_count(files_struct *fsp, unsigned int dcount);
3072 int fd_close_posix(struct files_struct *fsp);
3073 bool set_posix_lock_windows_flavour(files_struct *fsp,
3074                         uint64_t u_offset,
3075                         uint64_t u_count,
3076                         enum brl_type lock_type,
3077                         const struct lock_context *lock_ctx,
3078                         const struct lock_struct *plocks,
3079                         int num_locks,
3080                         int *errno_ret);
3081 bool release_posix_lock_windows_flavour(files_struct *fsp,
3082                                 uint64_t u_offset,
3083                                 uint64_t u_count,
3084                                 enum brl_type deleted_lock_type,
3085                                 const struct lock_context *lock_ctx,
3086                                 const struct lock_struct *plocks,
3087                                 int num_locks);
3088 bool set_posix_lock_posix_flavour(files_struct *fsp,
3089                         uint64_t u_offset,
3090                         uint64_t u_count,
3091                         enum brl_type lock_type,
3092                         int *errno_ret);
3093 bool release_posix_lock_posix_flavour(files_struct *fsp,
3094                                 uint64_t u_offset,
3095                                 uint64_t u_count,
3096                                 const struct lock_context *lock_ctx,
3097                                 const struct lock_struct *plocks,
3098                                 int num_locks);
3099
3100 /* The following definitions come from modules/vfs_default.c  */
3101
3102 ssize_t vfswrap_llistxattr(struct vfs_handle_struct *handle, const char *path, char *list, size_t size);
3103 ssize_t vfswrap_flistxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size);
3104 NTSTATUS vfs_default_init(void);
3105
3106 /* The following definitions come from param/loadparm.c  */
3107
3108 char *lp_smb_ports(void);
3109 char *lp_dos_charset(void);
3110 char *lp_unix_charset(void);
3111 char *lp_display_charset(void);
3112 char *lp_logfile(void);
3113 char *lp_configfile(void);
3114 char *lp_smb_passwd_file(void);
3115 char *lp_private_dir(void);
3116 char *lp_serverstring(void);
3117 int lp_printcap_cache_time(void);
3118 char *lp_addport_cmd(void);
3119 char *lp_enumports_cmd(void);
3120 char *lp_addprinter_cmd(void);
3121 char *lp_deleteprinter_cmd(void);
3122 char *lp_os2_driver_map(void);
3123 char *lp_lockdir(void);
3124 char *lp_statedir(void);
3125 char *lp_cachedir(void);
3126 char *lp_piddir(void);
3127 char *lp_mangling_method(void);
3128 int lp_mangle_prefix(void);
3129 char *lp_utmpdir(void);
3130 char *lp_wtmpdir(void);
3131 bool lp_utmp(void);
3132 char *lp_rootdir(void);
3133 char *lp_defaultservice(void);
3134 char *lp_msg_command(void);
3135 char *lp_get_quota_command(void);
3136 char *lp_set_quota_command(void);
3137 char *lp_auto_services(void);
3138 char *lp_passwd_program(void);
3139 char *lp_passwd_chat(void);
3140 char *lp_passwordserver(void);
3141 char *lp_name_resolve_order(void);
3142 char *lp_realm(void);
3143 const char *lp_afs_username_map(void);
3144 int lp_afs_token_lifetime(void);
3145 char *lp_log_nt_token_command(void);
3146 char *lp_username_map(void);
3147 const char *lp_logon_script(void);
3148 const char *lp_logon_path(void);
3149 const char *lp_logon_drive(void);
3150 const char *lp_logon_home(void);
3151 char *lp_remote_announce(void);
3152 char *lp_remote_browse_sync(void);
3153 bool lp_nmbd_bind_explicit_broadcast(void);
3154 const char **lp_wins_server_list(void);
3155 const char **lp_interfaces(void);
3156 const char *lp_socket_address(void);
3157 char *lp_nis_home_map_name(void);
3158 const char **lp_netbios_aliases(void);
3159 const char *lp_passdb_backend(void);
3160 const char **lp_preload_modules(void);
3161 char *lp_panic_action(void);
3162 char *lp_adduser_script(void);
3163 char *lp_renameuser_script(void);
3164 char *lp_deluser_script(void);
3165 const char *lp_guestaccount(void);
3166 char *lp_addgroup_script(void);
3167 char *lp_delgroup_script(void);
3168 char *lp_addusertogroup_script(void);
3169 char *lp_deluserfromgroup_script(void);
3170 char *lp_setprimarygroup_script(void);
3171 char *lp_addmachine_script(void);
3172 char *lp_shutdown_script(void);
3173 char *lp_abort_shutdown_script(void);
3174 char *lp_username_map_script(void);
3175 int lp_username_map_cache_time(void);
3176 char *lp_check_password_script(void);
3177 char *lp_wins_hook(void);
3178 const char *lp_template_homedir(void);
3179 const char *lp_template_shell(void);
3180 const char *lp_winbind_separator(void);
3181 int lp_acl_compatibility(void);
3182 bool lp_winbind_enum_users(void);
3183 bool lp_winbind_enum_groups(void);
3184 bool lp_winbind_use_default_domain(void);
3185 bool lp_winbind_trusted_domains_only(void);
3186 bool lp_winbind_nested_groups(void);
3187 int lp_winbind_expand_groups(void);
3188 bool lp_winbind_refresh_tickets(void);
3189 bool lp_winbind_offline_logon(void);
3190 bool lp_winbind_normalize_names(void);
3191 bool lp_winbind_rpc_only(void);
3192 bool lp_create_krb5_conf(void);
3193 int lp_winbind_max_domain_connections(void);
3194 const char *lp_idmap_backend(void);
3195 bool lp_idmap_read_only(void);
3196 int lp_idmap_cache_time(void);
3197 int lp_idmap_negative_cache_time(void);
3198 int lp_keepalive(void);
3199 bool lp_passdb_expand_explicit(void);
3200 char *lp_ldap_suffix(void);
3201 char *lp_ldap_admin_dn(void);
3202 int lp_ldap_ssl(void);
3203 bool lp_ldap_ssl_ads(void);
3204 int lp_ldap_deref(void);
3205 int lp_ldap_follow_referral(void);
3206 int lp_ldap_passwd_sync(void);
3207 bool lp_ldap_delete_dn(void);
3208 int lp_ldap_replication_sleep(void);
3209 int lp_ldap_timeout(void);
3210 int lp_ldap_connection_timeout(void);
3211 int lp_ldap_page_size(void);
3212 int lp_ldap_debug_level(void);
3213 int lp_ldap_debug_threshold(void);
3214 char *lp_add_share_cmd(void);
3215 char *lp_change_share_cmd(void);
3216 char *lp_delete_share_cmd(void);
3217 char *lp_usershare_path(void);
3218 const char **lp_usershare_prefix_allow_list(void);
3219 const char **lp_usershare_prefix_deny_list(void);
3220 const char **lp_eventlog_list(void);
3221 bool lp_registry_shares(void);
3222 bool lp_usershare_allow_guests(void);
3223 bool lp_usershare_owner_only(void);
3224 bool lp_disable_netbios(void);
3225 bool lp_reset_on_zero_vc(void);
3226 bool lp_log_writeable_files_on_exit(void);
3227 bool lp_ms_add_printer_wizard(void);
3228 bool lp_dns_proxy(void);
3229 bool lp_wins_support(void);
3230 bool lp_we_are_a_wins_server(void);
3231 bool lp_wins_proxy(void);
3232 bool lp_local_master(void);
3233 bool lp_domain_logons(void);
3234 const char **lp_init_logon_delayed_hosts(void);
3235 int lp_init_logon_delay(void);
3236 bool lp_load_printers(void);
3237 bool lp_readraw(void);
3238 bool _lp_readraw(void);
3239 bool lp_large_readwrite(void);
3240 bool lp_writeraw(void);
3241 bool _lp_writeraw(void);
3242 bool lp_null_passwords(void);
3243 bool lp_obey_pam_restrictions(void);
3244 bool lp_encrypted_passwords(void);
3245 int lp_client_schannel(void);
3246 int lp_server_schannel(void);
3247 bool lp_syslog_only(void);
3248 bool lp_timestamp_logs(void);
3249 bool lp_debug_prefix_timestamp(void);
3250 bool lp_debug_hires_timestamp(void);
3251 bool lp_debug_pid(void);
3252 bool lp_debug_uid(void);
3253 bool lp_debug_class(void);
3254 bool lp_enable_core_files(void);
3255 bool lp_browse_list(void);
3256 bool lp_nis_home_map(void);
3257 bool lp_bind_interfaces_only(void);
3258 bool lp_pam_password_change(void);
3259 bool lp_unix_password_sync(void);
3260 bool lp_passwd_chat_debug(void);
3261 int lp_passwd_chat_timeout(void);
3262 bool lp_nt_pipe_support(void);
3263 bool lp_nt_status_support(void);
3264 bool lp_stat_cache(void);
3265 int lp_max_stat_cache_size(void);
3266 bool lp_allow_trusted_domains(void);
3267 bool lp_map_untrusted_to_domain(void);
3268 int lp_restrict_anonymous(void);
3269 bool lp_lanman_auth(void);
3270 bool lp_ntlm_auth(void);
3271 bool lp_client_plaintext_auth(void);
3272 bool lp_client_lanman_auth(void);
3273 bool lp_client_ntlmv2_auth(void);
3274 bool lp_host_msdfs(void);
3275 bool lp_kernel_oplocks(void);
3276 bool lp_enhanced_browsing(void);
3277 bool lp_use_mmap(void);
3278 bool lp_unix_extensions(void);
3279 bool lp_use_spnego(void);
3280 bool lp_client_use_spnego(void);
3281 bool lp_client_use_spnego_principal(void);
3282 bool lp_send_spnego_principal(void);
3283 bool lp_hostname_lookups(void);
3284 bool lp_change_notify(const struct share_params *p );
3285 bool lp_kernel_change_notify(const struct share_params *p );
3286 char * lp_dedicated_keytab_file(void);
3287 int lp_kerberos_method(void);
3288 bool lp_defer_sharing_violations(void);
3289 bool lp_enable_privileges(void);
3290 bool lp_enable_asu_support(void);
3291 int lp_os_level(void);
3292 int lp_max_ttl(void);
3293 int lp_max_wins_ttl(void);
3294 int lp_min_wins_ttl(void);
3295 int lp_max_log_size(void);
3296 int lp_max_open_files(void);
3297 int lp_open_files_db_hash_size(void);
3298 int lp_maxxmit(void);
3299 int lp_maxmux(void);
3300 int lp_passwordlevel(void);
3301 int lp_usernamelevel(void);
3302 int lp_deadtime(void);
3303 bool lp_getwd_cache(void);
3304 int lp_maxprotocol(void);
3305 int lp_minprotocol(void);
3306 int lp_security(void);
3307 const char **lp_auth_methods(void);
3308 bool lp_paranoid_server_security(void);
3309 int lp_maxdisksize(void);
3310 int lp_lpqcachetime(void);
3311 int lp_max_smbd_processes(void);
3312 bool _lp_disable_spoolss(void);
3313 int lp_syslog(void);
3314 int lp_lm_announce(void);
3315 int lp_lm_interval(void);
3316 int lp_machine_password_timeout(void);
3317 int lp_map_to_guest(void);
3318 int lp_oplock_break_wait_time(void);
3319 int lp_lock_spin_time(void);
3320 int lp_usershare_max_shares(void);
3321 const char *lp_socket_options(void);
3322 int lp_config_backend(void);
3323 int lp_smb2_max_read(void);
3324 int lp_smb2_max_write(void);
3325 int lp_smb2_max_trans(void);
3326 int lp_smb2_max_credits(void);
3327 char *lp_preexec(int );
3328 char *lp_postexec(int );
3329 char *lp_rootpreexec(int );
3330 char *lp_rootpostexec(int );
3331 char *lp_servicename(int );
3332 const char *lp_const_servicename(int );
3333 char *lp_pathname(int );
3334 char *lp_dontdescend(int );
3335 char *lp_username(int );
3336 const char **lp_invalid_users(int );
3337 const char **lp_valid_users(int );
3338 const char **lp_admin_users(int );
3339 const char **lp_svcctl_list(void);
3340 char *lp_cups_options(int );
3341 char *lp_cups_server(void);
3342 int lp_cups_encrypt(void);
3343 char *lp_iprint_server(void);
3344 int lp_cups_connection_timeout(void);
3345 const char *lp_ctdbd_socket(void);
3346 const char **lp_cluster_addresses(void);
3347 bool lp_clustering(void);
3348 int lp_ctdb_timeout(void);
3349 int lp_ctdb_locktime_warn_threshold(void);
3350 char *lp_printcommand(int );
3351 char *lp_lpqcommand(int );
3352 char *lp_lprmcommand(int );
3353 char *lp_lppausecommand(int );
3354 char *lp_lpresumecommand(int );
3355 char *lp_queuepausecommand(int );
3356 char *lp_queueresumecommand(int );
3357 const char *lp_printjob_username(int );
3358 const char **lp_hostsallow(int );
3359 const char **lp_hostsdeny(int );
3360 char *lp_magicscript(int );
3361 char *lp_magicoutput(int );
3362 char *lp_comment(int );
3363 char *lp_force_user(int );
3364 char *lp_force_group(int );
3365 const char **lp_readlist(int );
3366 const char **lp_writelist(int );
3367 const char **lp_printer_admin(int );
3368 char *lp_fstype(int );
3369 const char **lp_vfs_objects(int );
3370 char *lp_msdfs_proxy(int );
3371 char *lp_veto_files(int );
3372 char *lp_hide_files(int );
3373 char *lp_veto_oplocks(int );
3374 bool lp_msdfs_root(int );
3375 char *lp_aio_write_behind(int );
3376 char *lp_dfree_command(int );
3377 bool lp_autoloaded(int );
3378 bool lp_preexec_close(int );
3379 bool lp_rootpreexec_close(int );
3380 int lp_casesensitive(int );
3381 bool lp_preservecase(int );
3382 bool lp_shortpreservecase(int );
3383 bool lp_hide_dot_files(int );
3384 bool lp_hide_special_files(int );
3385 bool lp_hideunreadable(int );
3386 bool lp_hideunwriteable_files(int );
3387 bool lp_browseable(int );
3388 bool lp_access_based_share_enum(int );
3389 bool lp_readonly(int );
3390 bool lp_no_set_dir(int );
3391 bool lp_guest_ok(int );
3392 bool lp_guest_only(int );
3393 bool lp_administrative_share(int );
3394 bool lp_print_ok(int );
3395 bool lp_map_hidden(int );
3396 bool lp_map_archive(int );
3397 bool lp_store_dos_attributes(int );
3398 bool lp_dmapi_support(int );
3399 bool lp_locking(const struct share_params *p );
3400 int lp_strict_locking(const struct share_params *p );
3401 bool lp_posix_locking(const struct share_params *p );
3402 bool lp_share_modes(int );
3403 bool lp_oplocks(int );
3404 bool lp_level2_oplocks(int );
3405 bool lp_onlyuser(int );
3406 bool lp_manglednames(const struct share_params *p );
3407 bool lp_widelinks(int );
3408 bool lp_symlinks(int );
3409 bool lp_syncalways(int );
3410 bool lp_strict_allocate(int );
3411 bool lp_strict_sync(int );
3412 bool lp_map_system(int );
3413 bool lp_delete_readonly(int );
3414 bool lp_fake_oplocks(int );
3415 bool lp_recursive_veto_delete(int );
3416 bool lp_dos_filemode(int );
3417 bool lp_dos_filetimes(int );
3418 bool lp_dos_filetime_resolution(int );
3419 bool lp_fake_dir_create_times(int);
3420 bool lp_async_smb_echo_handler(void);
3421 bool lp_multicast_dns_register(void);
3422 bool lp_blocking_locks(int );
3423 bool lp_inherit_perms(int );
3424 bool lp_inherit_acls(int );
3425 bool lp_inherit_owner(int );
3426 bool lp_use_client_driver(int );
3427 bool lp_default_devmode(int );
3428 bool lp_force_printername(int );
3429 bool lp_nt_acl_support(int );
3430 bool lp_force_unknown_acl_user(int );
3431 bool lp_ea_support(int );
3432 bool _lp_use_sendfile(int );
3433 bool lp_profile_acls(int );
3434 bool lp_map_acl_inherit(int );
3435 bool lp_afs_share(int );
3436 bool lp_acl_check_permissions(int );
3437 bool lp_acl_group_control(int );
3438 bool lp_acl_map_full_control(int );
3439 int lp_create_mask(int );
3440 int lp_force_create_mode(int );
3441 int lp_security_mask(int );
3442 int lp_force_security_mode(int );
3443 int lp_dir_mask(int );
3444 int lp_force_dir_mode(int );
3445 int lp_dir_security_mask(int );
3446 int lp_force_dir_security_mode(int );
3447 int lp_max_connections(int );
3448 int lp_defaultcase(int );
3449 int lp_minprintspace(int );
3450 int lp_printing(int );
3451 int lp_max_reported_jobs(int );
3452 int lp_oplock_contention_limit(int );
3453 int lp_csc_policy(int );
3454 int lp_write_cache_size(int );
3455 int lp_block_size(int );
3456 int lp_dfree_cache_time(int );
3457 int lp_allocation_roundup_size(int );
3458 int lp_aio_read_size(int );
3459 int lp_aio_write_size(int );
3460 int lp_map_readonly(int );
3461 int lp_directory_name_cache_size(int );
3462 int lp_smb_encrypt(int );
3463 char lp_magicchar(const struct share_params *p );
3464 int lp_winbind_cache_time(void);
3465 int lp_winbind_reconnect_delay(void);
3466 int lp_winbind_max_clients(void);
3467 const char **lp_winbind_nss_info(void);
3468 int lp_algorithmic_rid_base(void);
3469 int lp_name_cache_timeout(void);
3470 int lp_client_signing(void);
3471 int lp_server_signing(void);
3472 int lp_client_ldap_sasl_wrapping(void);
3473 char *lp_parm_talloc_string(int snum, const char *type, const char *option, const char *def);
3474 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def);
3475 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def);
3476 int lp_parm_int(int snum, const char *type, const char *option, int def);
3477 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def);
3478 bool lp_parm_bool(int snum, const char *type, const char *option, bool def);
3479 int lp_parm_enum(int snum, const char *type, const char *option,
3480                  const struct enum_list *_enum, int def);
3481 char *canonicalize_servicename(TALLOC_CTX *ctx, const char *src);
3482 bool lp_add_home(const char *pszHomename, int iDefaultService,
3483                  const char *user, const char *pszHomedir);
3484 int lp_add_service(const char *pszService, int iDefaultService);
3485 bool lp_add_printer(const char *pszPrintername, int iDefaultService);
3486 bool lp_parameter_is_valid(const char *pszParmName);
3487 bool lp_parameter_is_global(const char *pszParmName);
3488 bool lp_parameter_is_canonical(const char *parm_name);
3489 bool lp_canonicalize_parameter(const char *parm_name, const char **canon_parm,
3490                                bool *inverse);
3491 bool lp_canonicalize_parameter_with_value(const char *parm_name,
3492                                           const char *val,
3493                                           const char **canon_parm,
3494                                           const char **canon_val);
3495 void show_parameter_list(void);
3496 bool lp_string_is_valid_boolean(const char *parm_value);
3497 bool lp_invert_boolean(const char *str, const char **inverse_str);
3498 bool lp_canonicalize_boolean(const char *str, const char**canon_str);
3499 bool service_ok(int iService);
3500 bool process_registry_service(const char *service_name);
3501 bool process_registry_shares(void);
3502 bool lp_config_backend_is_registry(void);
3503 bool lp_config_backend_is_file(void);
3504 bool lp_file_list_changed(void);
3505 bool lp_idmap_uid(uid_t *low, uid_t *high);
3506 bool lp_idmap_gid(gid_t *low, gid_t *high);
3507 const char *lp_ldap_machine_suffix(void);
3508 const char *lp_ldap_user_suffix(void);
3509 const char *lp_ldap_group_suffix(void);
3510 const char *lp_ldap_idmap_suffix(void);
3511 void *lp_local_ptr_by_snum(int snum, void *ptr);
3512 bool lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue);
3513 bool lp_set_cmdline(const char *pszParmName, const char *pszParmValue);
3514 bool lp_set_option(const char *option);
3515 void init_locals(void);
3516 bool lp_is_default(int snum, struct parm_struct *parm);
3517 bool dump_a_parameter(int snum, char *parm_name, FILE * f, bool isGlobal);
3518 struct parm_struct *lp_get_parameter(const char *param_name);
3519 struct parm_struct *lp_next_parameter(int snum, int *i, int allparameters);
3520 bool lp_snum_ok(int iService);
3521 void lp_add_one_printer(const char *name, const char *comment, void *pdata);
3522 bool lp_loaded(void);
3523 void lp_killunused(bool (*snumused) (int));
3524 void lp_kill_all_services(void);
3525 void lp_killservice(int iServiceIn);
3526 const char* server_role_str(uint32 role);
3527 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx,
3528                         SMB_STRUCT_STAT *psbuf,
3529                         const char *servicename,
3530                         int snum,
3531                         char **lines,
3532                         int numlines,
3533                         char **pp_sharepath,
3534                         char **pp_comment,
3535                         char **pp_cp_share_name,
3536                         struct security_descriptor **ppsd,
3537                         bool *pallow_guest);
3538 int load_usershare_service(const char *servicename);
3539 int load_usershare_shares(void);
3540 void gfree_loadparm(void);
3541 void lp_set_in_client(bool b);
3542 bool lp_is_in_client(void);
3543 bool lp_load(const char *pszFname,
3544              bool global_only,
3545              bool save_defaults,
3546              bool add_ipc,
3547              bool initialize_globals);
3548 bool lp_load_initial_only(const char *pszFname);
3549 bool lp_load_with_registry_shares(const char *pszFname,
3550                                   bool global_only,
3551                                   bool save_defaults,
3552                                   bool add_ipc,
3553                                   bool initialize_globals);
3554 int lp_numservices(void);
3555 void lp_dump(FILE *f, bool show_defaults, int maxtoprint);
3556 void lp_dump_one(FILE * f, bool show_defaults, int snum);
3557 int lp_servicenumber(const char *pszServiceName);
3558 bool share_defined(const char *service_name);
3559 struct share_params *get_share_params(TALLOC_CTX *mem_ctx,
3560                                       const char *sharename);
3561 struct share_iterator *share_list_all(TALLOC_CTX *mem_ctx);
3562 struct share_params *next_share(struct share_iterator *list);
3563 struct share_params *next_printer(struct share_iterator *list);
3564 struct share_params *snum2params_static(int snum);
3565 const char *volume_label(int snum);
3566 bool lp_domain_master(void);
3567 bool lp_domain_master_true_or_auto(void);
3568 bool lp_preferred_master(void);
3569 void lp_remove_service(int snum);
3570 void lp_copy_service(int snum, const char *new_name);
3571 int lp_default_server_announce(void);
3572 int lp_major_announce_version(void);
3573 int lp_minor_announce_version(void);
3574 void lp_set_name_resolve_order(const char *new_order);
3575 const char *lp_printername(int snum);
3576 void lp_set_logfile(const char *name);
3577 int lp_maxprintjobs(int snum);
3578 const char *lp_printcapname(void);
3579 bool lp_disable_spoolss( void );
3580 void lp_set_spoolss_state( uint32 state );
3581 uint32 lp_get_spoolss_state( void );
3582 bool lp_use_sendfile(int snum, struct smb_signing_state *signing_state);
3583 void set_use_sendfile(int snum, bool val);
3584 void set_store_dos_attributes(int snum, bool val);
3585 void lp_set_mangling_method(const char *new_method);
3586 bool lp_posix_pathnames(void);
3587 void lp_set_posix_pathnames(void);
3588 enum brl_flavour lp_posix_cifsu_locktype(files_struct *fsp);
3589 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val);
3590 int lp_min_receive_file_size(void);
3591 char* lp_perfcount_module(void);
3592 void lp_set_passdb_backend(const char *backend);
3593 void widelinks_warning(int snum);
3594 char *lp_ncalrpc_dir(void);
3595
3596 /* The following definitions come from param/loadparm_server_role.c  */
3597
3598 int lp_server_role(void);
3599 void set_server_role(void);
3600
3601 /* The following definitions come from param/util.c  */
3602
3603 uint32 get_int_param( const char* param );
3604 char* get_string_param( const char* param );
3605
3606 /* The following definitions come from passdb/login_cache.c  */
3607
3608 bool login_cache_init(void);
3609 bool login_cache_shutdown(void);
3610 bool login_cache_read(struct samu *sampass, struct login_cache *entry);
3611 bool login_cache_write(const struct samu *sampass,
3612                        const struct login_cache *entry);
3613 bool login_cache_delentry(const struct samu *sampass);
3614
3615 /* The following definitions come from passdb/lookup_sid.c  */
3616
3617 bool lookup_name(TALLOC_CTX *mem_ctx,
3618                  const char *full_name, int flags,
3619                  const char **ret_domain, const char **ret_name,
3620                  struct dom_sid *ret_sid, enum lsa_SidType *ret_type);
3621 bool lookup_name_smbconf(TALLOC_CTX *mem_ctx,
3622                  const char *full_name, int flags,
3623                  const char **ret_domain, const char **ret_name,
3624                  struct dom_sid *ret_sid, enum lsa_SidType *ret_type);
3625 NTSTATUS lookup_sids(TALLOC_CTX *mem_ctx, int num_sids,
3626                      const struct dom_sid **sids, int level,
3627                      struct lsa_dom_info **ret_domains,
3628                      struct lsa_name_info **ret_names);
3629 bool lookup_sid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
3630                 const char **ret_domain, const char **ret_name,
3631                 enum lsa_SidType *ret_type);
3632 void store_uid_sid_cache(const struct dom_sid *psid, uid_t uid);
3633 void store_gid_sid_cache(const struct dom_sid *psid, gid_t gid);
3634 void uid_to_sid(struct dom_sid *psid, uid_t uid);
3635 void gid_to_sid(struct dom_sid *psid, gid_t gid);
3636 bool sid_to_uid(const struct dom_sid *psid, uid_t *puid);
3637 bool sid_to_gid(const struct dom_sid *psid, gid_t *pgid);
3638 NTSTATUS get_primary_group_sid(TALLOC_CTX *mem_ctx,
3639                                 const char *username,
3640                                 struct passwd **_pwd,
3641                                 struct dom_sid **_group_sid);
3642
3643 /* The following definitions come from passdb/machine_sid.c  */
3644
3645 struct dom_sid  *get_global_sam_sid(void);
3646 void reset_global_sam_sid(void) ;
3647 bool sid_check_is_domain(const struct dom_sid  *sid);
3648 bool sid_check_is_in_our_domain(const struct dom_sid  *sid);
3649
3650 /* The following definitions come from passdb/passdb.c  */
3651
3652 const char *my_sam_name(void);
3653 struct samu *samu_new( TALLOC_CTX *ctx );
3654 NTSTATUS samu_set_unix(struct samu *user, const struct passwd *pwd);
3655 NTSTATUS samu_alloc_rid_unix(struct samu *user, const struct passwd *pwd);
3656 char *pdb_encode_acct_ctrl(uint32_t acct_ctrl, size_t length);
3657 uint32_t pdb_decode_acct_ctrl(const char *p);
3658 void pdb_sethexpwd(char p[33], const unsigned char *pwd, uint32_t acct_ctrl);
3659 bool pdb_gethexpwd(const char *p, unsigned char *pwd);
3660 void pdb_sethexhours(char *p, const unsigned char *hours);
3661 bool pdb_gethexhours(const char *p, unsigned char *hours);
3662 int algorithmic_rid_base(void);
3663 uid_t algorithmic_pdb_user_rid_to_uid(uint32_t user_rid);
3664 uid_t max_algorithmic_uid(void);
3665 uint32_t algorithmic_pdb_uid_to_user_rid(uid_t uid);
3666 gid_t pdb_group_rid_to_gid(uint32_t group_rid);
3667 gid_t max_algorithmic_gid(void);
3668 uint32_t algorithmic_pdb_gid_to_group_rid(gid_t gid);
3669 bool algorithmic_pdb_rid_is_user(uint32_t rid);
3670 bool lookup_global_sam_name(const char *name, int flags, uint32_t *rid,
3671                             enum lsa_SidType *type);
3672 NTSTATUS local_password_change(const char *user_name,
3673                                 int local_flags,
3674                                 const char *new_passwd, 
3675                                 char **pp_err_str,
3676                                 char **pp_msg_str);
3677 bool init_samu_from_buffer(struct samu *sampass, uint32_t level,
3678                            uint8_t *buf, uint32_t buflen);
3679 uint32_t init_buffer_from_samu (uint8_t **buf, struct samu *sampass, bool size_only);
3680 bool pdb_copy_sam_account(struct samu *dst, struct samu *src );
3681 bool pdb_update_bad_password_count(struct samu *sampass, bool *updated);
3682 bool pdb_update_autolock_flag(struct samu *sampass, bool *updated);
3683 bool pdb_increment_bad_password_count(struct samu *sampass);
3684 bool is_dc_trusted_domain_situation(const char *domain_name);
3685 bool get_trust_pw_clear(const char *domain, char **ret_pwd,
3686                         const char **account_name,
3687                         enum netr_SchannelType *channel);
3688 bool get_trust_pw_hash(const char *domain, uint8_t ret_pwd[16],
3689                        const char **account_name,
3690                        enum netr_SchannelType *channel);
3691
3692 /* The following definitions come from passdb/pdb_compat.c  */
3693
3694 uint32_t pdb_get_user_rid (const struct samu *sampass);
3695 uint32_t pdb_get_group_rid (struct samu *sampass);
3696 bool pdb_set_user_sid_from_rid (struct samu *sampass, uint32_t rid, enum pdb_value_state flag);
3697 bool pdb_set_group_sid_from_rid (struct samu *sampass, uint32_t grid, enum pdb_value_state flag);
3698
3699 /* The following definitions come from passdb/pdb_get_set.c  */
3700
3701 uint32_t pdb_get_acct_ctrl(const struct samu *sampass);
3702 time_t pdb_get_logon_time(const struct samu *sampass);
3703 time_t pdb_get_logoff_time(const struct samu *sampass);
3704 time_t pdb_get_kickoff_time(const struct samu *sampass);
3705 time_t pdb_get_bad_password_time(const struct samu *sampass);
3706 time_t pdb_get_pass_last_set_time(const struct samu *sampass);
3707 time_t pdb_get_pass_can_change_time(const struct samu *sampass);
3708 time_t pdb_get_pass_can_change_time_noncalc(const struct samu *sampass);
3709 time_t pdb_get_pass_must_change_time(const struct samu *sampass);
3710 bool pdb_get_pass_can_change(const struct samu *sampass);
3711 uint16_t pdb_get_logon_divs(const struct samu *sampass);
3712 uint32_t pdb_get_hours_len(const struct samu *sampass);
3713 const uint8_t *pdb_get_hours(const struct samu *sampass);
3714 const uint8_t *pdb_get_nt_passwd(const struct samu *sampass);
3715 const uint8_t *pdb_get_lanman_passwd(const struct samu *sampass);
3716 const uint8_t *pdb_get_pw_history(const struct samu *sampass, uint32_t *current_hist_len);
3717 const char *pdb_get_plaintext_passwd(const struct samu *sampass);
3718 const struct dom_sid *pdb_get_user_sid(const struct samu *sampass);
3719 const struct dom_sid *pdb_get_group_sid(struct samu *sampass);
3720 enum pdb_value_state pdb_get_init_flags(const struct samu *sampass, enum pdb_elements element);
3721 const char *pdb_get_username(const struct samu *sampass);
3722 const char *pdb_get_domain(const struct samu *sampass);
3723 const char *pdb_get_nt_username(const struct samu *sampass);
3724 const char *pdb_get_fullname(const struct samu *sampass);
3725 const char *pdb_get_homedir(const struct samu *sampass);
3726 const char *pdb_get_dir_drive(const struct samu *sampass);
3727 const char *pdb_get_logon_script(const struct samu *sampass);
3728 const char *pdb_get_profile_path(const struct samu *sampass);
3729 const char *pdb_get_acct_desc(const struct samu *sampass);
3730 const char *pdb_get_workstations(const struct samu *sampass);
3731 const char *pdb_get_comment(const struct samu *sampass);
3732 const char *pdb_get_munged_dial(const struct samu *sampass);
3733 uint16_t pdb_get_bad_password_count(const struct samu *sampass);
3734 uint16_t pdb_get_logon_count(const struct samu *sampass);
3735 uint16_t pdb_get_country_code(const struct samu *sampass);
3736 uint16_t pdb_get_code_page(const struct samu *sampass);
3737 uint32_t pdb_get_unknown_6(const struct samu *sampass);
3738 void *pdb_get_backend_private_data(const struct samu *sampass, const struct pdb_methods *my_methods);
3739 bool pdb_set_acct_ctrl(struct samu *sampass, uint32_t acct_ctrl, enum pdb_value_state flag);
3740 bool pdb_set_logon_time(struct samu *sampass, time_t mytime, enum pdb_value_state flag);
3741 bool pdb_set_logoff_time(struct samu *sampass, time_t mytime, enum pdb_value_state flag);
3742 bool pdb_set_kickoff_time(struct samu *sampass, time_t mytime, enum pdb_value_state flag);
3743 bool pdb_set_bad_password_time(struct samu *sampass, time_t mytime, enum pdb_value_state flag);
3744 bool pdb_set_pass_can_change_time(struct samu *sampass, time_t mytime, enum pdb_value_state flag);
3745 bool pdb_set_pass_must_change_time(struct samu *sampass, time_t mytime, enum pdb_value_state flag);
3746 bool pdb_set_pass_last_set_time(struct samu *sampass, time_t mytime, enum pdb_value_state flag);
3747 bool pdb_set_hours_len(struct samu *sampass, uint32_t len, enum pdb_value_state flag);
3748 bool pdb_set_logon_divs(struct samu *sampass, uint16_t hours, enum pdb_value_state flag);
3749 bool pdb_set_init_flags(struct samu *sampass, enum pdb_elements element, enum pdb_value_state value_flag);
3750 bool pdb_set_user_sid(struct samu *sampass, const struct dom_sid *u_sid, enum pdb_value_state flag);
3751 bool pdb_set_user_sid_from_string(struct samu *sampass, fstring u_sid, enum pdb_value_state flag);
3752 bool pdb_set_group_sid(struct samu *sampass, const struct dom_sid *g_sid, enum pdb_value_state flag);
3753 bool pdb_set_username(struct samu *sampass, const char *username, enum pdb_value_state flag);
3754 bool pdb_set_domain(struct samu *sampass, const char *domain, enum pdb_value_state flag);
3755 bool pdb_set_nt_username(struct samu *sampass, const char *nt_username, enum pdb_value_state flag);
3756 bool pdb_set_fullname(struct samu *sampass, const char *full_name, enum pdb_value_state flag);
3757 bool pdb_set_logon_script(struct samu *sampass, const char *logon_script, enum pdb_value_state flag);
3758 bool pdb_set_profile_path(struct samu *sampass, const char *profile_path, enum pdb_value_state flag);
3759 bool pdb_set_dir_drive(struct samu *sampass, const char *dir_drive, enum pdb_value_state flag);
3760 bool pdb_set_homedir(struct samu *sampass, const char *home_dir, enum pdb_value_state flag);
3761 bool pdb_set_acct_desc(struct samu *sampass, const char *acct_desc, enum pdb_value_state flag);
3762 bool pdb_set_workstations(struct samu *sampass, const char *workstations, enum pdb_value_state flag);
3763 bool pdb_set_comment(struct samu *sampass, const char *comment, enum pdb_value_state flag);
3764 bool pdb_set_munged_dial(struct samu *sampass, const char *munged_dial, enum pdb_value_state flag);
3765 bool pdb_set_nt_passwd(struct samu *sampass, const uint8_t pwd[NT_HASH_LEN], enum pdb_value_state flag);
3766 bool pdb_set_lanman_passwd(struct samu *sampass, const uint8_t pwd[LM_HASH_LEN], enum pdb_value_state flag);
3767 bool pdb_set_pw_history(struct samu *sampass, const uint8_t *pwd, uint32_t historyLen, enum pdb_value_state flag);
3768 bool pdb_set_plaintext_pw_only(struct samu *sampass, const char *password, enum pdb_value_state flag);
3769 bool pdb_set_bad_password_count(struct samu *sampass, uint16_t bad_password_count, enum pdb_value_state flag);
3770 bool pdb_set_logon_count(struct samu *sampass, uint16_t logon_count, enum pdb_value_state flag);
3771 bool pdb_set_country_code(struct samu *sampass, uint16_t country_code,
3772                           enum pdb_value_state flag);
3773 bool pdb_set_code_page(struct samu *sampass, uint16_t code_page,
3774                        enum pdb_value_state flag);
3775 bool pdb_set_unknown_6(struct samu *sampass, uint32_t unkn, enum pdb_value_state flag);
3776 bool pdb_set_hours(struct samu *sampass, const uint8 *hours, int hours_len,
3777                    enum pdb_value_state flag);
3778 bool pdb_set_backend_private_data(struct samu *sampass, void *private_data, 
3779                                    void (*free_fn)(void **), 
3780                                    const struct pdb_methods *my_methods, 
3781                                    enum pdb_value_state flag);
3782 bool pdb_set_pass_can_change(struct samu *sampass, bool canchange);
3783 bool pdb_set_plaintext_passwd(struct samu *sampass, const char *plaintext);
3784 uint32_t pdb_build_fields_present(struct samu *sampass);
3785
3786 /* The following definitions come from passdb/pdb_interface.c  */
3787
3788 NTSTATUS smb_register_passdb(int version, const char *name, pdb_init_function init) ;
3789 struct pdb_init_function_entry *pdb_find_backend_entry(const char *name);
3790 struct event_context *pdb_get_event_context(void);
3791 NTSTATUS make_pdb_method_name(struct pdb_methods **methods, const char *selected);
3792 struct pdb_domain_info *pdb_get_domain_info(TALLOC_CTX *mem_ctx);
3793 bool pdb_getsampwnam(struct samu *sam_acct, const char *username) ;
3794 bool pdb_getsampwsid(struct samu *sam_acct, const struct dom_sid *sid) ;
3795 NTSTATUS pdb_create_user(TALLOC_CTX *mem_ctx, const char *name, uint32_t flags,
3796                          uint32_t *rid);
3797 NTSTATUS pdb_delete_user(TALLOC_CTX *mem_ctx, struct samu *sam_acct);
3798 NTSTATUS pdb_add_sam_account(struct samu *sam_acct) ;
3799 NTSTATUS pdb_update_sam_account(struct samu *sam_acct) ;
3800 NTSTATUS pdb_delete_sam_account(struct samu *sam_acct) ;
3801 NTSTATUS pdb_rename_sam_account(struct samu *oldname, const char *newname);
3802 NTSTATUS pdb_update_login_attempts(struct samu *sam_acct, bool success);
3803 bool pdb_getgrsid(GROUP_MAP *map, struct dom_sid sid);
3804 bool pdb_getgrgid(GROUP_MAP *map, gid_t gid);
3805 bool pdb_getgrnam(GROUP_MAP *map, const char *name);
3806 NTSTATUS pdb_create_dom_group(TALLOC_CTX *mem_ctx, const char *name,
3807                               uint32_t *rid);
3808 NTSTATUS pdb_delete_dom_group(TALLOC_CTX *mem_ctx, uint32_t rid);
3809 NTSTATUS pdb_add_group_mapping_entry(GROUP_MAP *map);
3810 NTSTATUS pdb_update_group_mapping_entry(GROUP_MAP *map);
3811 NTSTATUS pdb_delete_group_mapping_entry(struct dom_sid sid);
3812 bool pdb_enum_group_mapping(const struct dom_sid *sid, enum lsa_SidType sid_name_use, GROUP_MAP **pp_rmap,
3813                             size_t *p_num_entries, bool unix_only);
3814 NTSTATUS pdb_enum_group_members(TALLOC_CTX *mem_ctx,
3815                                 const struct dom_sid *sid,
3816                                 uint32_t **pp_member_rids,
3817                                 size_t *p_num_members);
3818 NTSTATUS pdb_enum_group_memberships(TALLOC_CTX *mem_ctx, struct samu *user,
3819                                     struct dom_sid **pp_sids, gid_t **pp_gids,
3820                                     uint32_t *p_num_groups);
3821 NTSTATUS pdb_set_unix_primary_group(TALLOC_CTX *mem_ctx, struct samu *user);
3822 NTSTATUS pdb_add_groupmem(TALLOC_CTX *mem_ctx, uint32_t group_rid,
3823                           uint32_t member_rid);
3824 NTSTATUS pdb_del_groupmem(TALLOC_CTX *mem_ctx, uint32_t group_rid,
3825                           uint32_t member_rid);
3826 NTSTATUS pdb_create_alias(const char *name, uint32_t *rid);
3827 NTSTATUS pdb_delete_alias(const struct dom_sid *sid);
3828 NTSTATUS pdb_get_aliasinfo(const struct dom_sid *sid, struct acct_info *info);
3829 NTSTATUS pdb_set_aliasinfo(const struct dom_sid *sid, struct acct_info *info);
3830 NTSTATUS pdb_add_aliasmem(const struct dom_sid *alias, const struct dom_sid *member);
3831 NTSTATUS pdb_del_aliasmem(const struct dom_sid *alias, const struct dom_sid *member);
3832 NTSTATUS pdb_enum_aliasmem(const struct dom_sid *alias, TALLOC_CTX *mem_ctx,
3833                            struct dom_sid **pp_members, size_t *p_num_members);
3834 NTSTATUS pdb_enum_alias_memberships(TALLOC_CTX *mem_ctx,
3835                                     const struct dom_sid *domain_sid,
3836                                     const struct dom_sid *members, size_t num_members,
3837                                     uint32_t **pp_alias_rids,
3838                                     size_t *p_num_alias_rids);
3839 NTSTATUS pdb_lookup_rids(const struct dom_sid *domain_sid,
3840                          int num_rids,
3841                          uint32_t *rids,
3842                          const char **names,
3843                          enum lsa_SidType *attrs);
3844 NTSTATUS pdb_lookup_names(const struct dom_sid *domain_sid,
3845                           int num_names,
3846                           const char **names,
3847                           uint32_t *rids,
3848                           enum lsa_SidType *attrs);
3849 bool pdb_get_account_policy(enum pdb_policy_type type, uint32_t *value);
3850 bool pdb_set_account_policy(enum pdb_policy_type type, uint32_t value);
3851 bool pdb_get_seq_num(time_t *seq_num);
3852 bool pdb_uid_to_sid(uid_t uid, struct dom_sid *sid);
3853 bool pdb_gid_to_sid(gid_t gid, struct dom_sid *sid);
3854 bool pdb_sid_to_id(const struct dom_sid *sid, union unid_t *id,
3855                    enum lsa_SidType *type);
3856 uint32_t pdb_capabilities(void);
3857 bool pdb_new_rid(uint32_t *rid);
3858 bool initialize_password_db(bool reload, struct event_context *event_ctx);
3859 struct pdb_search *pdb_search_init(TALLOC_CTX *mem_ctx,
3860                                    enum pdb_search_type type);
3861 struct pdb_search *pdb_search_users(TALLOC_CTX *mem_ctx, uint32_t acct_flags);
3862 struct pdb_search *pdb_search_groups(TALLOC_CTX *mem_ctx);
3863 struct pdb_search *pdb_search_aliases(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
3864 uint32_t pdb_search_entries(struct pdb_search *search,
3865                           uint32_t start_idx, uint32_t max_entries,
3866                           struct samr_displayentry **result);
3867 bool pdb_get_trusteddom_pw(const char *domain, char** pwd, struct dom_sid *sid,
3868                            time_t *pass_last_set_time);
3869 bool pdb_set_trusteddom_pw(const char* domain, const char* pwd,
3870                            const struct dom_sid *sid);
3871 bool pdb_del_trusteddom_pw(const char *domain);
3872 NTSTATUS pdb_enum_trusteddoms(TALLOC_CTX *mem_ctx, uint32_t *num_domains,
3873                               struct trustdom_info ***domains);
3874 NTSTATUS pdb_get_trusted_domain(TALLOC_CTX *mem_ctx, const char *domain,
3875                                 struct pdb_trusted_domain **td);
3876 NTSTATUS pdb_get_trusted_domain_by_sid(TALLOC_CTX *mem_ctx, struct dom_sid *sid,
3877                                 struct pdb_trusted_domain **td);
3878 NTSTATUS pdb_set_trusted_domain(const char* domain,
3879                                 const struct pdb_trusted_domain *td);
3880 NTSTATUS pdb_del_trusted_domain(const char *domain);
3881 NTSTATUS pdb_enum_trusted_domains(TALLOC_CTX *mem_ctx, uint32_t *num_domains,
3882                                   struct pdb_trusted_domain ***domains);
3883 NTSTATUS make_pdb_method( struct pdb_methods **methods ) ;
3884
3885 /* The following definitions come from passdb/pdb_ldap.c  */
3886
3887 const char** get_userattr_list( TALLOC_CTX *mem_ctx, int schema_ver );
3888 NTSTATUS pdb_init_ldapsam_compat(struct pdb_methods **pdb_method, const char *location);
3889 NTSTATUS pdb_init_ldapsam(struct pdb_methods **pdb_method, const char *location);
3890 NTSTATUS pdb_ldap_init(void);
3891
3892 /* The following definitions come from passdb/pdb_nds.c  */
3893
3894 struct smbldap_state;
3895
3896 int pdb_nds_get_password(
3897         struct smbldap_state *ldap_state,
3898         char *object_dn,
3899         size_t *pwd_len,
3900         char *pwd );
3901 int pdb_nds_set_password(
3902         struct smbldap_state *ldap_state,
3903         char *object_dn,
3904         const char *pwd );
3905 NTSTATUS pdb_nds_init(void);
3906
3907 /* The following definitions come from passdb/pdb_nds.c  */
3908
3909 NTSTATUS pdb_ipa_init(void);
3910
3911 /* The following definitions come from passdb/pdb_smbpasswd.c  */
3912
3913 NTSTATUS pdb_smbpasswd_init(void) ;
3914
3915 /* The following definitions come from passdb/pdb_wbc_sam.c  */
3916
3917 NTSTATUS pdb_wbc_sam_init(void);
3918
3919 /* The following definitions come from passdb/pdb_tdb.c  */
3920
3921 bool init_sam_from_buffer_v2(struct samu *sampass, uint8_t *buf, uint32_t buflen);
3922 NTSTATUS pdb_tdbsam_init(void);
3923
3924 /* The following definitions come from passdb/util_builtin.c  */
3925
3926 bool lookup_builtin_rid(TALLOC_CTX *mem_ctx, uint32 rid, const char **name);
3927 bool lookup_builtin_name(const char *name, uint32 *rid);
3928 const char *builtin_domain_name(void);
3929 bool sid_check_is_builtin(const struct dom_sid *sid);
3930 bool sid_check_is_in_builtin(const struct dom_sid *sid);
3931
3932 /* The following definitions come from passdb/util_unixsids.c  */
3933
3934 bool sid_check_is_unix_users(const struct dom_sid *sid);
3935 bool sid_check_is_in_unix_users(const struct dom_sid *sid);
3936 void uid_to_unix_users_sid(uid_t uid, struct dom_sid *sid);
3937 void gid_to_unix_groups_sid(gid_t gid, struct dom_sid *sid);
3938 const char *unix_users_domain_name(void);
3939 bool lookup_unix_user_name(const char *name, struct dom_sid *sid);
3940 bool sid_check_is_unix_groups(const struct dom_sid *sid);
3941 bool sid_check_is_in_unix_groups(const struct dom_sid *sid);
3942 const char *unix_groups_domain_name(void);
3943 bool lookup_unix_group_name(const char *name, struct dom_sid *sid);
3944
3945 /* The following definitions come from passdb/util_wellknown.c  */
3946
3947 bool sid_check_is_wellknown_domain(const struct dom_sid *sid, const char **name);
3948 bool sid_check_is_in_wellknown_domain(const struct dom_sid *sid);
3949 bool lookup_wellknown_sid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
3950                           const char **domain, const char **name);
3951 bool lookup_wellknown_name(TALLOC_CTX *mem_ctx, const char *name,
3952                            struct dom_sid *sid, const char **domain);
3953
3954 /* The following definitions come from printing/load.c  */
3955
3956 void load_printers(struct tevent_context *ev,
3957                    struct messaging_context *msg_ctx);
3958
3959 /* The following definitions come from printing/lpq_parse.c  */
3960
3961 bool parse_lpq_entry(enum printing_types printing_type,char *line,
3962                      print_queue_struct *buf,
3963                      print_status_struct *status,bool first);
3964 uint32_t print_parse_jobid(const char *fname);
3965
3966 /* The following definitions come from printing/notify.c  */
3967
3968 int print_queue_snum(const char *qname);
3969 void print_notify_send_messages(struct messaging_context *msg_ctx,
3970                                 unsigned int timeout);
3971 void notify_printer_status_byname(struct tevent_context *ev,
3972                                   struct messaging_context *msg_ctx,
3973                                   const char *sharename, uint32 status);
3974 void notify_printer_status(struct tevent_context *ev,
3975                            struct messaging_context *msg_ctx,
3976                            int snum, uint32 status);
3977 void notify_job_status_byname(struct tevent_context *ev,
3978                               struct messaging_context *msg_ctx,
3979                               const char *sharename, uint32 jobid,
3980                               uint32 status,
3981                               uint32 flags);
3982 void notify_job_status(struct tevent_context *ev,
3983                        struct messaging_context *msg_ctx,
3984                        const char *sharename, uint32 jobid, uint32 status);
3985 void notify_job_total_bytes(struct tevent_context *ev,
3986                             struct messaging_context *msg_ctx,
3987                             const char *sharename, uint32 jobid,
3988                             uint32 size);
3989 void notify_job_total_pages(struct tevent_context *ev,
3990                             struct messaging_context *msg_ctx,
3991                             const char *sharename, uint32 jobid,
3992                             uint32 pages);
3993 void notify_job_username(struct tevent_context *ev,
3994                          struct messaging_context *msg_ctx,
3995                          const char *sharename, uint32 jobid, char *name);
3996 void notify_job_name(struct tevent_context *ev,
3997                      struct messaging_context *msg_ctx,
3998                      const char *sharename, uint32 jobid, char *name);
3999 void notify_job_submitted(struct tevent_context *ev,
4000                           struct messaging_context *msg_ctx,
4001                           const char *sharename, uint32 jobid,
4002                           time_t submitted);
4003 void notify_printer_driver(struct tevent_context *ev,
4004                            struct messaging_context *msg_ctx,
4005                            int snum, const char *driver_name);
4006 void notify_printer_comment(struct tevent_context *ev,
4007                             struct messaging_context *msg_ctx,
4008                             int snum, const char *comment);
4009 void notify_printer_sharename(struct tevent_context *ev,
4010                               struct messaging_context *msg_ctx,
4011                               int snum, const char *share_name);
4012 void notify_printer_printername(struct tevent_context *ev,
4013                                 struct messaging_context *msg_ctx,
4014                                 int snum, const char *printername);
4015 void notify_printer_port(struct tevent_context *ev,
4016                          struct messaging_context *msg_ctx,
4017                          int snum, const char *port_name);
4018 void notify_printer_location(struct tevent_context *ev,
4019                              struct messaging_context *msg_ctx,
4020                              int snum, const char *location);
4021 void notify_printer_byname(struct tevent_context *ev,
4022                            struct messaging_context *msg_ctx,
4023                            const char *printername, uint32 change,
4024                            const char *value);
4025 void notify_printer_sepfile(struct tevent_context *ev,
4026                             struct messaging_context *msg_ctx,
4027                             int snum, const char *sepfile);
4028
4029 /* The following definitions come from printing/pcap.c  */
4030
4031 void pcap_cache_reload(struct tevent_context *ev,
4032                        struct messaging_context *msg_ctx,
4033                        void (*post_cache_fill_fn)(struct tevent_context *,
4034                                                   struct messaging_context *));
4035 bool pcap_printername_ok(const char *printername);
4036
4037 /* The following definitions come from printing/printing.c  */
4038
4039 uint16 pjobid_to_rap(const char* sharename, uint32 jobid);
4040 bool rap_to_pjobid(uint16 rap_jobid, fstring sharename, uint32 *pjobid);
4041 void rap_jobid_delete(const char* sharename, uint32 jobid);
4042 bool print_backend_init(struct messaging_context *msg_ctx);
4043 void start_background_queue(struct tevent_context *ev,
4044                             struct messaging_context *msg);
4045 void printing_end(void);
4046
4047 /* The following definitions come from printing/printing_db.c  */
4048
4049 struct tdb_print_db *get_print_db_byname(const char *printername);
4050 void release_print_db( struct tdb_print_db *pdb);
4051 void close_all_print_db(void);
4052 TDB_DATA get_printer_notify_pid_list(TDB_CONTEXT *tdb, const char *printer_name, bool cleanlist);
4053
4054 /* The following definitions come from profile/profile.c  */
4055
4056 void set_profile_level(int level, struct server_id src);
4057 bool profile_setup(struct messaging_context *msg_ctx, bool rdonly);
4058
4059 /* The following definitions come from rpc_client/cli_pipe.c  */
4060 bool smb_register_ndr_interface(const struct ndr_interface_table *interface);
4061 const struct ndr_interface_table *get_iface_from_syntax(
4062         const struct ndr_syntax_id *syntax);
4063 const char *get_pipe_name_from_syntax(TALLOC_CTX *mem_ctx,
4064                                      const struct ndr_syntax_id *syntax);
4065
4066 struct tevent_req *rpc_api_pipe_req_send(TALLOC_CTX *mem_ctx,
4067                                          struct event_context *ev,
4068                                          struct rpc_pipe_client *cli,
4069                                          uint8_t op_num,
4070                                          DATA_BLOB *req_data);
4071 NTSTATUS rpc_api_pipe_req_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
4072                                DATA_BLOB *reply_pdu);
4073 struct tevent_req *rpc_pipe_bind_send(TALLOC_CTX *mem_ctx,
4074                                       struct event_context *ev,
4075                                       struct rpc_pipe_client *cli,
4076                                       struct pipe_auth_data *auth);
4077 NTSTATUS rpc_pipe_bind_recv(struct tevent_req *req);
4078 NTSTATUS rpc_pipe_bind(struct rpc_pipe_client *cli,
4079                        struct pipe_auth_data *auth);
4080 unsigned int rpccli_set_timeout(struct rpc_pipe_client *cli,
4081                                 unsigned int timeout);
4082 bool rpccli_is_connected(struct rpc_pipe_client *rpc_cli);
4083 bool rpccli_get_pwd_hash(struct rpc_pipe_client *cli, uint8_t nt_hash[16]);
4084 NTSTATUS rpccli_anon_bind_data(TALLOC_CTX *mem_ctx,
4085                                struct pipe_auth_data **presult);
4086 NTSTATUS rpccli_schannel_bind_data(TALLOC_CTX *mem_ctx, const char *domain,
4087                                    enum dcerpc_AuthLevel auth_level,
4088                                    struct netlogon_creds_CredentialState *creds,
4089                                    struct pipe_auth_data **presult);
4090 NTSTATUS rpc_pipe_open_tcp(TALLOC_CTX *mem_ctx, const char *host,
4091                            const struct ndr_syntax_id *abstract_syntax,
4092                            struct rpc_pipe_client **presult);
4093 NTSTATUS rpc_pipe_open_ncalrpc(TALLOC_CTX *mem_ctx, const char *socket_path,
4094                                const struct ndr_syntax_id *abstract_syntax,
4095                                struct rpc_pipe_client **presult);
4096 struct dcerpc_binding_handle *rpccli_bh_create(struct rpc_pipe_client *c);
4097 struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
4098                                               const struct ndr_syntax_id *syntax,
4099                                               struct client_address *client_id,
4100                                               const struct auth_serversupplied_info *session_info,
4101                                               struct messaging_context *msg_ctx);
4102 NTSTATUS rpcint_binding_handle(TALLOC_CTX *mem_ctx,
4103                                const struct ndr_interface_table *ndr_table,
4104                                struct client_address *client_id,
4105                                const struct auth_serversupplied_info *session_info,
4106                                struct messaging_context *msg_ctx,
4107                                struct dcerpc_binding_handle **binding_handle);
4108 NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx,
4109                                 const struct ndr_syntax_id *abstract_syntax,
4110                                 const struct auth_serversupplied_info *serversupplied_info,
4111                                 struct client_address *client_id,
4112                                 struct messaging_context *msg_ctx,
4113                                 struct rpc_pipe_client **presult);
4114 NTSTATUS rpc_pipe_open_interface(TALLOC_CTX *mem_ctx,
4115                                  const struct ndr_syntax_id *syntax,
4116                                  const struct auth_serversupplied_info *session_info,
4117                                  struct client_address *client_id,
4118                                  struct messaging_context *msg_ctx,
4119                                  struct rpc_pipe_client **cli_pipe);
4120 NTSTATUS cli_rpc_pipe_open_noauth(struct cli_state *cli,
4121                                   const struct ndr_syntax_id *interface,
4122                                   struct rpc_pipe_client **presult);
4123 NTSTATUS cli_rpc_pipe_open_noauth_transport(struct cli_state *cli,
4124                                             enum dcerpc_transport_t transport,
4125                                             const struct ndr_syntax_id *interface,
4126                                             struct rpc_pipe_client **presult);
4127 NTSTATUS cli_rpc_pipe_open_ntlmssp(struct cli_state *cli,
4128                                    const struct ndr_syntax_id *interface,
4129                                    enum dcerpc_transport_t transport,
4130                                    enum dcerpc_AuthLevel auth_level,
4131                                    const char *domain,
4132                                    const char *username,
4133                                    const char *password,
4134                                    struct rpc_pipe_client **presult);
4135 NTSTATUS cli_rpc_pipe_open_spnego_ntlmssp(struct cli_state *cli,
4136                                           const struct ndr_syntax_id *interface,
4137                                           enum dcerpc_transport_t transport,
4138                                           enum dcerpc_AuthLevel auth_level,
4139                                           const char *domain,
4140                                           const char *username,
4141                                           const char *password,
4142                                           struct rpc_pipe_client **presult);
4143 NTSTATUS get_schannel_session_key(struct cli_state *cli,
4144                                   const char *domain,
4145                                   uint32 *pneg_flags,
4146                                   struct rpc_pipe_client **presult);
4147 NTSTATUS cli_rpc_pipe_open_schannel_with_key(struct cli_state *cli,
4148                                              const struct ndr_syntax_id *interface,
4149                                              enum dcerpc_transport_t transport,
4150                                              enum dcerpc_AuthLevel auth_level,
4151                                              const char *domain,
4152                                              struct netlogon_creds_CredentialState **pdc,
4153                                              struct rpc_pipe_client **presult);
4154 NTSTATUS cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state *cli,
4155                                                  const struct ndr_syntax_id *interface,
4156                                                  enum dcerpc_transport_t transport,
4157                                                  enum dcerpc_AuthLevel auth_level,
4158                                                  const char *domain,
4159                                                  const char *username,
4160                                                  const char *password,
4161                                                  struct rpc_pipe_client **presult);
4162 NTSTATUS cli_rpc_pipe_open_schannel(struct cli_state *cli,
4163                                     const struct ndr_syntax_id *interface,
4164                                     enum dcerpc_transport_t transport,
4165                                     enum dcerpc_AuthLevel auth_level,
4166                                     const char *domain,
4167                                     struct rpc_pipe_client **presult);
4168 NTSTATUS cli_rpc_pipe_open_krb5(struct cli_state *cli,
4169                                 const struct ndr_syntax_id *interface,
4170                                 enum dcerpc_transport_t transport,
4171                                 enum dcerpc_AuthLevel auth_level,
4172                                 const char *service_princ,
4173                                 const char *username,
4174                                 const char *password,
4175                                 struct rpc_pipe_client **presult);
4176 NTSTATUS cli_rpc_pipe_open_spnego_krb5(struct cli_state *cli,
4177                                         const struct ndr_syntax_id *interface,
4178                                         enum dcerpc_transport_t transport,
4179                                         enum dcerpc_AuthLevel auth_level,
4180                                         const char *server,
4181                                         const char *username,
4182                                         const char *password,
4183                                         struct rpc_pipe_client **presult);
4184 NTSTATUS cli_get_session_key(TALLOC_CTX *mem_ctx,
4185                              struct rpc_pipe_client *cli,
4186                              DATA_BLOB *session_key);
4187
4188 /* The following definitions come from rpc_client/rpc_transport_np.c  */
4189
4190 struct tevent_req *rpc_transport_np_init_send(TALLOC_CTX *mem_ctx,
4191                                               struct event_context *ev,
4192                                               struct cli_state *cli,
4193                                               const struct ndr_syntax_id *abstract_syntax);
4194 NTSTATUS rpc_transport_np_init_recv(struct tevent_req *req,
4195                                     TALLOC_CTX *mem_ctx,
4196                                     struct rpc_cli_transport **presult);
4197 NTSTATUS rpc_transport_np_init(TALLOC_CTX *mem_ctx, struct cli_state *cli,
4198                                const struct ndr_syntax_id *abstract_syntax,
4199                                struct rpc_cli_transport **presult);
4200 struct cli_state *rpc_pipe_np_smb_conn(struct rpc_pipe_client *p);
4201
4202 /* The following definitions come from rpc_client/rpc_transport_smbd.c  */
4203
4204 struct tevent_req *rpc_cli_smbd_conn_init_send(TALLOC_CTX *mem_ctx,
4205                                                struct event_context *ev,
4206                                                void (*stdout_callback)(char *buf,
4207                                                                        size_t len,
4208                                                                        void *priv),
4209                                                void *priv);
4210 NTSTATUS rpc_cli_smbd_conn_init_recv(struct tevent_req *req,
4211                                      TALLOC_CTX *mem_ctx,
4212                                      struct rpc_cli_smbd_conn **pconn);
4213 NTSTATUS rpc_cli_smbd_conn_init(TALLOC_CTX *mem_ctx,
4214                                 struct rpc_cli_smbd_conn **pconn,
4215                                 void (*stdout_callback)(char *buf,
4216                                                         size_t len,
4217                                                         void *priv),
4218                                 void *priv);
4219
4220 struct tevent_req *rpc_transport_smbd_init_send(TALLOC_CTX *mem_ctx,
4221                                                 struct event_context *ev,
4222                                                 struct rpc_cli_smbd_conn *conn,
4223                                                 const struct ndr_syntax_id *abstract_syntax);
4224 NTSTATUS rpc_transport_smbd_init_recv(struct tevent_req *req,
4225                                       TALLOC_CTX *mem_ctx,
4226                                       struct rpc_cli_transport **presult);
4227 NTSTATUS rpc_transport_smbd_init(TALLOC_CTX *mem_ctx,
4228                                  struct rpc_cli_smbd_conn *conn,
4229                                  const struct ndr_syntax_id *abstract_syntax,
4230                                  struct rpc_cli_transport **presult);
4231 struct cli_state *rpc_pipe_smbd_smb_conn(struct rpc_pipe_client *p);
4232
4233 /* The following definitions come from rpc_client/rpc_transport_sock.c  */
4234
4235 NTSTATUS rpc_transport_sock_init(TALLOC_CTX *mem_ctx, int fd,
4236                                  struct rpc_cli_transport **presult);
4237
4238 /* The following definitions come from rpc_client/rpc_transport_tstream.c  */
4239 NTSTATUS rpc_transport_tstream_init(TALLOC_CTX *mem_ctx,
4240                                 struct tstream_context **stream,
4241                                 struct rpc_cli_transport **presult);
4242
4243 /* The following definitions come from rpc_server/srv_eventlog_nt.c  */
4244
4245 /* The following definitions come from rpc_server/rpc_handles.c  */
4246
4247 size_t num_pipe_handles(struct pipes_struct *p);
4248 bool init_pipe_handles(struct pipes_struct *p, const struct ndr_syntax_id *syntax);
4249 bool create_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd, void *data_ptr);
4250 bool find_policy_by_hnd(struct pipes_struct *p, const struct policy_handle *hnd,
4251                         void **data_p);
4252 bool close_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd);
4253 void close_policy_by_pipe(struct pipes_struct *p);
4254 bool pipe_access_check(struct pipes_struct *p);
4255
4256 void *_policy_handle_create(struct pipes_struct *p, struct policy_handle *hnd,
4257                             uint32_t access_granted, size_t data_size,
4258                             const char *type, NTSTATUS *pstatus);
4259 #define policy_handle_create(_p, _hnd, _access, _type, _pstatus) \
4260         (_type *)_policy_handle_create((_p), (_hnd), (_access), sizeof(_type), #_type, \
4261                                        (_pstatus))
4262
4263 void *_policy_handle_find(struct pipes_struct *p,
4264                           const struct policy_handle *hnd,
4265                           uint32_t access_required, uint32_t *paccess_granted,
4266                           const char *name, const char *location,
4267                           NTSTATUS *pstatus);
4268 #define policy_handle_find(_p, _hnd, _access_required, _access_granted, _type, _pstatus) \
4269         (_type *)_policy_handle_find((_p), (_hnd), (_access_required), \
4270                                      (_access_granted), #_type, __location__, (_pstatus))
4271
4272
4273 /* The following definitions come from rpc_server/srv_rpc_register.c  */
4274
4275 struct rpc_srv_callbacks {
4276         bool (*init)(void *private_data);
4277         bool (*shutdown)(void *private_data);
4278         void *private_data;
4279 };
4280
4281 NTSTATUS rpc_srv_register(int version, const char *clnt,
4282                           const char *srv,
4283                           const struct ndr_interface_table *iface,
4284                           const struct api_struct *cmds, int size,
4285                           const struct rpc_srv_callbacks *rpc_srv_cb);
4286
4287 NTSTATUS rpc_srv_unregister(const struct ndr_interface_table *iface);
4288
4289 /* The following definitions come from rpc_server/srv_pipe.c  */
4290
4291 bool create_next_pdu(struct pipes_struct *p);
4292 bool api_pipe_bind_auth3(struct pipes_struct *p, struct ncacn_packet *pkt);
4293 bool setup_fault_pdu(struct pipes_struct *p, NTSTATUS status);
4294 NTSTATUS rpc_pipe_register_commands(int version, const char *clnt,
4295                                     const char *srv,
4296                                     const struct ndr_syntax_id *interface,
4297                                     const struct api_struct *cmds, int size);
4298 bool is_known_pipename(const char *cli_filename, struct ndr_syntax_id *syntax);
4299
4300 /* The following definitions come from rpc_server/srv_pipe_hnd.c  */
4301
4302 struct pipes_struct *get_first_internal_pipe(void);
4303 struct pipes_struct *get_next_internal_pipe(struct pipes_struct *p);
4304 bool check_open_pipes(void);
4305 int close_internal_rpc_pipe_hnd(struct pipes_struct *p);
4306
4307 bool fsp_is_np(struct files_struct *fsp);
4308 struct tsocket_address;
4309 NTSTATUS np_open(TALLOC_CTX *mem_ctx, const char *name,
4310                  const struct tsocket_address *local_address,
4311                  const struct tsocket_address *remote_address,
4312                  struct client_address *client_id,
4313                  struct auth_serversupplied_info *session_info,
4314                  struct messaging_context *msg_ctx,
4315                  struct fake_file_handle **phandle);
4316 bool np_read_in_progress(struct fake_file_handle *handle);
4317 struct tevent_req *np_write_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
4318                                  struct fake_file_handle *handle,
4319                                  const uint8_t *data, size_t len);
4320 NTSTATUS np_write_recv(struct tevent_req *req, ssize_t *pnwritten);
4321 struct tevent_req *np_read_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
4322                                 struct fake_file_handle *handle,
4323                                 uint8_t *data, size_t len);
4324 NTSTATUS np_read_recv(struct tevent_req *req, ssize_t *nread,
4325                       bool *is_data_outstanding);
4326
4327 ssize_t process_incoming_data(struct pipes_struct *p, char *data, size_t n);
4328
4329 /* The following definitions come from rpc_server/srv_spoolss_nt.c  */
4330 void srv_spoolss_cleanup(void);
4331
4332 void do_drv_upgrade_printer(struct messaging_context *msg,
4333                             void *private_data,
4334                             uint32_t msg_type,
4335                             struct server_id server_id,
4336                             DATA_BLOB *data);
4337 void update_monitored_printq_cache(struct messaging_context *msg_ctx);
4338 void reset_all_printerdata(struct messaging_context *msg,
4339                            void *private_data,
4340                            uint32_t msg_type,
4341                            struct server_id server_id,
4342                            DATA_BLOB *data);
4343
4344 /* The following definitions come from rpc_server/srv_srvsvc_nt.c  */
4345
4346 char *valid_share_pathname(TALLOC_CTX *ctx, const char *dos_pathname);
4347
4348 /* The following definitions come from rpc_server/srv_svcctl_nt.c  */
4349
4350 bool init_service_op_table( void );
4351 bool shutdown_service_op_table(void);
4352
4353 /* The following definitions come from rpcclient/cmd_dfs.c  */
4354
4355
4356 /* The following definitions come from rpcclient/cmd_dssetup.c  */
4357
4358
4359 /* The following definitions come from rpcclient/cmd_echo.c  */
4360
4361
4362 /* The following definitions come from rpcclient/cmd_lsarpc.c  */
4363
4364
4365 /* The following definitions come from rpcclient/cmd_netlogon.c  */
4366
4367
4368 /* The following definitions come from rpcclient/cmd_ntsvcs.c  */
4369
4370
4371 /* The following definitions come from rpcclient/cmd_samr.c  */
4372
4373
4374 /* The following definitions come from rpcclient/cmd_shutdown.c  */
4375
4376
4377 /* The following definitions come from rpcclient/cmd_spoolss.c  */
4378
4379
4380 /* The following definitions come from rpcclient/cmd_srvsvc.c  */
4381
4382
4383 /* The following definitions come from rpcclient/cmd_test.c  */
4384
4385
4386 /* The following definitions come from rpcclient/cmd_wkssvc.c  */
4387
4388
4389 /* The following definitions come from rpcclient/rpcclient.c  */
4390
4391
4392 /* The following definitions come from services/svc_netlogon.c  */
4393
4394
4395 /* The following definitions come from services/svc_rcinit.c  */
4396
4397
4398 /* The following definitions come from services/svc_spoolss.c  */
4399
4400
4401 /* The following definitions come from services/svc_winreg.c  */
4402
4403
4404 /* The following definitions come from services/svc_wins.c  */
4405
4406
4407 /* The following definitions come from smbd/aio.c  */
4408
4409 NTSTATUS schedule_aio_read_and_X(connection_struct *conn,
4410                              struct smb_request *req,
4411                              files_struct *fsp, SMB_OFF_T startpos,
4412                              size_t smb_maxcnt);
4413 NTSTATUS schedule_aio_write_and_X(connection_struct *conn,
4414                               struct smb_request *req,
4415                               files_struct *fsp, char *data,
4416                               SMB_OFF_T startpos,
4417                               size_t numtowrite);
4418 NTSTATUS schedule_smb2_aio_read(connection_struct *conn,
4419                                 struct smb_request *smbreq,
4420                                 files_struct *fsp,
4421                                 TALLOC_CTX *ctx,
4422                                 DATA_BLOB *preadbuf,
4423                                 SMB_OFF_T startpos,
4424                                 size_t smb_maxcnt);
4425 NTSTATUS schedule_aio_smb2_write(connection_struct *conn,
4426                                 struct smb_request *smbreq,
4427                                 files_struct *fsp,
4428                                 uint64_t in_offset,
4429                                 DATA_BLOB in_data,
4430                                 bool write_through);
4431 int wait_for_aio_completion(files_struct *fsp);
4432 void cancel_aio_by_fsp(files_struct *fsp);
4433 void smbd_aio_complete_aio_ex(struct aio_extra *aio_ex);
4434
4435 /* The following definitions come from smbd/blocking.c  */
4436
4437 void brl_timeout_fn(struct event_context *event_ctx,
4438                 struct timed_event *te,
4439                 struct timeval now,
4440                 void *private_data);
4441 struct timeval timeval_brl_min(const struct timeval *tv1,
4442                         const struct timeval *tv2);
4443 void process_blocking_lock_queue(struct smbd_server_connection *sconn);
4444 bool push_blocking_lock_request( struct byte_range_lock *br_lck,
4445                 struct smb_request *req,
4446                 files_struct *fsp,
4447                 int lock_timeout,
4448                 int lock_num,
4449                 uint64_t smblctx,
4450                 enum brl_type lock_type,
4451                 enum brl_flavour lock_flav,
4452                 uint64_t offset,
4453                 uint64_t count,
4454                 uint64_t blocking_smblctx);
4455 void cancel_pending_lock_requests_by_fid(files_struct *fsp,
4456                         struct byte_range_lock *br_lck,
4457                         enum file_close_type close_type);
4458 void remove_pending_lock_requests_by_mid_smb1(
4459         struct smbd_server_connection *sconn, uint64_t mid);
4460 bool blocking_lock_was_deferred_smb1(
4461         struct smbd_server_connection *sconn, uint64_t mid);
4462 struct blocking_lock_record *blocking_lock_cancel_smb1(files_struct *fsp,
4463                         uint64_t smblctx,
4464                         uint64_t offset,
4465                         uint64_t count,
4466                         enum brl_flavour lock_flav,
4467                         unsigned char locktype,
4468                         NTSTATUS err);
4469
4470 /* The following definitions come from smbd/close.c  */
4471
4472 void set_close_write_time(struct files_struct *fsp, struct timespec ts);
4473 NTSTATUS close_file(struct smb_request *req, files_struct *fsp,
4474                     enum file_close_type close_type);
4475 void msg_close_file(struct messaging_context *msg_ctx,
4476                     void *private_data,
4477                     uint32_t msg_type,
4478                     struct server_id server_id,
4479                     DATA_BLOB *data);
4480 NTSTATUS delete_all_streams(connection_struct *conn, const char *fname);
4481
4482 /* The following definitions come from smbd/conn.c  */
4483
4484 void conn_init(struct smbd_server_connection *sconn);
4485 int conn_num_open(struct smbd_server_connection *sconn);
4486 bool conn_snum_used(int snum);
4487 connection_struct *conn_find(struct smbd_server_connection *sconn,
4488                              unsigned cnum);
4489 connection_struct *conn_new(struct smbd_server_connection *sconn);
4490 bool conn_close_all(struct smbd_server_connection *sconn);
4491 bool conn_idle_all(struct smbd_server_connection *sconn, time_t t);
4492 void conn_clear_vuid_caches(struct smbd_server_connection *sconn, uint16 vuid);
4493 void conn_free(connection_struct *conn);
4494 void msg_force_tdis(struct messaging_context *msg,
4495                     void *private_data,
4496                     uint32_t msg_type,
4497                     struct server_id server_id,
4498                     DATA_BLOB *data);
4499
4500 /* The following definitions come from smbd/connection.c  */
4501
4502 bool yield_connection(connection_struct *conn, const char *name);
4503 int count_current_connections( const char *sharename, bool clear  );
4504 bool claim_connection(connection_struct *conn, const char *name);
4505
4506 /* The following definitions come from smbd/dfree.c  */
4507
4508 uint64_t sys_disk_free(connection_struct *conn, const char *path, bool small_query, 
4509                               uint64_t *bsize,uint64_t *dfree,uint64_t *dsize);
4510 uint64_t get_dfree_info(connection_struct *conn,
4511                         const char *path,
4512                         bool small_query,
4513                         uint64_t *bsize,
4514                         uint64_t *dfree,
4515                         uint64_t *dsize);
4516
4517 /* The following definitions come from smbd/dir.c  */
4518
4519 bool make_dir_struct(TALLOC_CTX *ctx,
4520                         char *buf,
4521                         const char *mask,
4522                         const char *fname,
4523                         SMB_OFF_T size,
4524                         uint32 mode,
4525                         time_t date,
4526                         bool uc);
4527 bool init_dptrs(struct smbd_server_connection *sconn);
4528 char *dptr_path(struct smbd_server_connection *sconn, int key);
4529 char *dptr_wcard(struct smbd_server_connection *sconn, int key);
4530 uint16 dptr_attr(struct smbd_server_connection *sconn, int key);
4531 void dptr_close(struct smbd_server_connection *sconn, int *key);
4532 void dptr_closecnum(connection_struct *conn);
4533 void dptr_idlecnum(connection_struct *conn);
4534 void dptr_closepath(struct smbd_server_connection *sconn,
4535                     char *path,uint16 spid);
4536 NTSTATUS dptr_create(connection_struct *conn, files_struct *fsp,
4537                 const char *path, bool old_handle, bool expect_close,uint16 spid,
4538                 const char *wcard, bool wcard_has_wild, uint32 attr, struct dptr_struct **dptr_ret);
4539 void dptr_CloseDir(files_struct *fsp);
4540 void dptr_SeekDir(struct dptr_struct *dptr, long offset);
4541 long dptr_TellDir(struct dptr_struct *dptr);
4542 bool dptr_has_wild(struct dptr_struct *dptr);
4543 int dptr_dnum(struct dptr_struct *dptr);
4544 char *dptr_ReadDirName(TALLOC_CTX *ctx,
4545                         struct dptr_struct *dptr,
4546                         long *poffset,
4547                         SMB_STRUCT_STAT *pst);
4548 bool dptr_SearchDir(struct dptr_struct *dptr, const char *name, long *poffset, SMB_STRUCT_STAT *pst);
4549 void dptr_DirCacheAdd(struct dptr_struct *dptr, const char *name, long offset);
4550 void dptr_init_search_op(struct dptr_struct *dptr);
4551 bool dptr_fill(struct smbd_server_connection *sconn,
4552                char *buf1,unsigned int key);
4553 struct dptr_struct *dptr_fetch(struct smbd_server_connection *sconn,
4554                                char *buf,int *num);
4555 struct dptr_struct *dptr_fetch_lanman2(struct smbd_server_connection *sconn,
4556                                        int dptr_num);
4557 bool dir_check_ftype(connection_struct *conn, uint32 mode, uint32 dirtype);
4558 bool get_dir_entry(TALLOC_CTX *ctx,
4559                 struct dptr_struct *dirptr,
4560                 const char *mask,
4561                 uint32 dirtype,
4562                 char **pp_fname_out,
4563                 SMB_OFF_T *size,
4564                 uint32 *mode,
4565                 struct timespec *date,
4566                 bool check_descend,
4567                 bool ask_sharemode);
4568 bool is_visible_file(connection_struct *conn, const char *dir_path, const char *name, SMB_STRUCT_STAT *pst, bool use_veto);
4569 struct smb_Dir *OpenDir(TALLOC_CTX *mem_ctx, connection_struct *conn,
4570                         const char *name, const char *mask, uint32 attr);
4571 const char *ReadDirName(struct smb_Dir *dirp, long *poffset,
4572                         SMB_STRUCT_STAT *sbuf, char **talloced);
4573 void RewindDir(struct smb_Dir *dirp, long *poffset);
4574 void SeekDir(struct smb_Dir *dirp, long offset);
4575 long TellDir(struct smb_Dir *dirp);
4576 void DirCacheAdd(struct smb_Dir *dirp, const char *name, long offset);
4577 bool SearchDir(struct smb_Dir *dirp, const char *name, long *poffset);
4578 NTSTATUS can_delete_directory(struct connection_struct *conn,
4579                                 const char *dirname);
4580
4581 /* The following definitions come from smbd/dmapi.c  */
4582
4583 const void *dmapi_get_current_session(void);
4584 bool dmapi_have_session(void);
4585 bool dmapi_new_session(void);
4586 bool dmapi_destroy_session(void);
4587 uint32 dmapi_file_flags(const char * const path);
4588
4589 /* The following definitions come from smbd/dnsregister.c  */
4590
4591 bool smbd_setup_mdns_registration(struct tevent_context *ev,
4592                                   TALLOC_CTX *mem_ctx,
4593                                   uint16_t port);
4594
4595 /* The following definitions come from smbd/dosmode.c  */
4596
4597 mode_t unix_mode(connection_struct *conn, int dosmode,
4598                  const struct smb_filename *smb_fname,
4599                  const char *inherit_from_dir);
4600 uint32 dos_mode_msdfs(connection_struct *conn,
4601                       const struct smb_filename *smb_fname);
4602 int dos_attributes_to_stat_dos_flags(uint32_t dosmode);
4603 uint32 dos_mode(connection_struct *conn, struct smb_filename *smb_fname);
4604 int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname,
4605                      uint32 dosmode, const char *parent_dir, bool newfile);
4606 NTSTATUS file_set_sparse(connection_struct *conn,
4607                          struct files_struct *fsp,
4608                          bool sparse);
4609 int file_ntimes(connection_struct *conn, const struct smb_filename *smb_fname,
4610                 struct smb_file_time *ft);
4611 bool set_sticky_write_time_path(struct file_id fileid, struct timespec mtime);
4612 bool set_sticky_write_time_fsp(struct files_struct *fsp,
4613                                struct timespec mtime);
4614
4615 NTSTATUS set_create_timespec_ea(connection_struct *conn,
4616                                 const struct smb_filename *smb_fname,
4617                                 struct timespec create_time);
4618
4619 struct timespec get_create_timespec(connection_struct *conn,
4620                                 struct files_struct *fsp,
4621                                 const struct smb_filename *smb_fname);
4622
4623 struct timespec get_change_timespec(connection_struct *conn,
4624                                 struct files_struct *fsp,
4625                                 const struct smb_filename *smb_fname);
4626
4627 /* The following definitions come from smbd/error.c  */
4628
4629 bool use_nt_status(void);
4630 void error_packet_set(char *outbuf, uint8 eclass, uint32 ecode, NTSTATUS ntstatus, int line, const char *file);
4631 int error_packet(char *outbuf, uint8 eclass, uint32 ecode, NTSTATUS ntstatus, int line, const char *file);
4632 void reply_nt_error(struct smb_request *req, NTSTATUS ntstatus,
4633                     int line, const char *file);
4634 void reply_force_dos_error(struct smb_request *req, uint8 eclass, uint32 ecode,
4635                     int line, const char *file);
4636 void reply_both_error(struct smb_request *req, uint8 eclass, uint32 ecode,
4637                       NTSTATUS status, int line, const char *file);
4638 void reply_openerror(struct smb_request *req, NTSTATUS status);
4639
4640 /* The following definitions come from smbd/file_access.c  */
4641
4642 bool can_access_file_acl(struct connection_struct *conn,
4643                          const struct smb_filename *smb_fname,
4644                          uint32_t access_mask);
4645 bool can_delete_file_in_directory(connection_struct *conn,
4646                                   struct smb_filename *smb_fname);
4647 bool can_access_file_data(connection_struct *conn,
4648                           const struct smb_filename *smb_fname,
4649                           uint32 access_mask);
4650 bool can_write_to_file(connection_struct *conn,
4651                        const struct smb_filename *smb_fname);
4652 bool directory_has_default_acl(connection_struct *conn, const char *fname);
4653
4654 /* The following definitions come from smbd/fileio.c  */
4655
4656 ssize_t read_file(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n);
4657 void update_write_time_handler(struct event_context *ctx,
4658                                       struct timed_event *te,
4659                                       struct timeval now,
4660                                       void *private_data);
4661 void trigger_write_time_update(struct files_struct *fsp);
4662 void trigger_write_time_update_immediate(struct files_struct *fsp);
4663 ssize_t write_file(struct smb_request *req,
4664                         files_struct *fsp,
4665                         const char *data,
4666                         SMB_OFF_T pos,
4667                         size_t n);
4668 void delete_write_cache(files_struct *fsp);
4669 void set_filelen_write_cache(files_struct *fsp, SMB_OFF_T file_size);
4670 ssize_t flush_write_cache(files_struct *fsp, enum flush_reason_enum reason);
4671 NTSTATUS sync_file(connection_struct *conn, files_struct *fsp, bool write_through);
4672 int fsp_stat(files_struct *fsp);
4673
4674 /* The following definitions come from smbd/filename.c  */
4675
4676 NTSTATUS unix_convert(TALLOC_CTX *ctx,
4677                       connection_struct *conn,
4678                       const char *orig_path,
4679                       struct smb_filename **smb_fname,
4680                       uint32_t ucf_flags);
4681 NTSTATUS check_name(connection_struct *conn, const char *name);
4682 int get_real_filename(connection_struct *conn, const char *path,
4683                       const char *name, TALLOC_CTX *mem_ctx,
4684                       char **found_name);
4685 NTSTATUS filename_convert(TALLOC_CTX *mem_ctx,
4686                         connection_struct *conn,
4687                         bool dfs_path,
4688                         const char *name_in,
4689                         uint32_t ucf_flags,
4690                         bool *ppath_contains_wcard,
4691                         struct smb_filename **pp_smb_fname);
4692
4693 /* The following definitions come from smbd/filename_utils.c */
4694
4695 NTSTATUS get_full_smb_filename(TALLOC_CTX *ctx, const struct smb_filename *smb_fname,
4696                               char **full_name);
4697 NTSTATUS create_synthetic_smb_fname(TALLOC_CTX *ctx, const char *base_name,
4698                                     const char *stream_name,
4699                                     const SMB_STRUCT_STAT *psbuf,
4700                                     struct smb_filename **smb_fname_out);
4701 NTSTATUS create_synthetic_smb_fname_split(TALLOC_CTX *ctx,
4702                                           const char *fname,
4703                                           const SMB_STRUCT_STAT *psbuf,
4704                                           struct smb_filename **smb_fname_out);
4705 const char *smb_fname_str_dbg(const struct smb_filename *smb_fname);
4706 const char *fsp_str_dbg(const struct files_struct *fsp);
4707 NTSTATUS copy_smb_filename(TALLOC_CTX *ctx,
4708                            const struct smb_filename *smb_fname_in,
4709                            struct smb_filename **smb_fname_out);
4710 bool is_ntfs_stream_smb_fname(const struct smb_filename *smb_fname);
4711 bool is_ntfs_default_stream_smb_fname(const struct smb_filename *smb_fname);
4712
4713 /* The following definitions come from smbd/files.c  */
4714
4715 NTSTATUS file_new(struct smb_request *req, connection_struct *conn,
4716                   files_struct **result);
4717 void file_close_conn(connection_struct *conn);
4718 void file_close_pid(struct smbd_server_connection *sconn, uint16 smbpid,
4719                     int vuid);
4720 bool file_init(struct smbd_server_connection *sconn);
4721 void file_close_user(struct smbd_server_connection *sconn, int vuid);
4722 struct files_struct *files_forall(
4723         struct smbd_server_connection *sconn,
4724         struct files_struct *(*fn)(struct files_struct *fsp,
4725                                    void *private_data),
4726         void *private_data);
4727 files_struct *file_find_fd(struct smbd_server_connection *sconn, int fd);
4728 files_struct *file_find_dif(struct smbd_server_connection *sconn,
4729                             struct file_id id, unsigned long gen_id);
4730 files_struct *file_find_di_first(struct smbd_server_connection *sconn,
4731                                  struct file_id id);
4732 files_struct *file_find_di_next(files_struct *start_fsp);
4733 bool file_find_subpath(files_struct *dir_fsp);
4734 void file_sync_all(connection_struct *conn);
4735 void file_free(struct smb_request *req, files_struct *fsp);
4736 files_struct *file_fsp(struct smb_request *req, uint16 fid);
4737 NTSTATUS dup_file_fsp(struct smb_request *req, files_struct *from,
4738                       uint32 access_mask, uint32 share_access,
4739                       uint32 create_options, files_struct *to);
4740 NTSTATUS file_name_hash(connection_struct *conn,
4741                         const char *name, uint32_t *p_name_hash);
4742 NTSTATUS fsp_set_smb_fname(struct files_struct *fsp,
4743                            const struct smb_filename *smb_fname_in);
4744
4745 /* The following definitions come from smbd/ipc.c  */
4746
4747 void send_trans_reply(connection_struct *conn,
4748                       struct smb_request *req,
4749                       char *rparam, int rparam_len,
4750                       char *rdata, int rdata_len,
4751                       bool buffer_too_large);
4752 void reply_trans(struct smb_request *req);
4753 void reply_transs(struct smb_request *req);
4754
4755 /* The following definitions come from smbd/lanman.c  */
4756
4757 void api_reply(connection_struct *conn, uint16 vuid,
4758                struct smb_request *req,
4759                char *data, char *params,
4760                int tdscnt, int tpscnt,
4761                int mdrcnt, int mprcnt);
4762
4763 /* The following definitions come from smbd/mangle.c  */
4764
4765 void mangle_reset_cache(void);
4766 void mangle_change_to_posix(void);
4767 bool mangle_is_mangled(const char *s, const struct share_params *p);
4768 bool mangle_is_8_3(const char *fname, bool check_case,
4769                    const struct share_params *p);
4770 bool mangle_is_8_3_wildcards(const char *fname, bool check_case,
4771                              const struct share_params *p);
4772 bool mangle_must_mangle(const char *fname,
4773                    const struct share_params *p);
4774 bool mangle_lookup_name_from_8_3(TALLOC_CTX *ctx,
4775                         const char *in,
4776                         char **out, /* talloced on the given context. */
4777                         const struct share_params *p);
4778 bool name_to_8_3(const char *in,
4779                 char out[13],
4780                 bool cache83,
4781                 const struct share_params *p);
4782
4783 /* The following definitions come from smbd/mangle_hash.c  */
4784
4785 const struct mangle_fns *mangle_hash_init(void);
4786
4787 /* The following definitions come from smbd/mangle_hash2.c  */
4788
4789 const struct mangle_fns *mangle_hash2_init(void);
4790 const struct mangle_fns *posix_mangle_init(void);
4791
4792 /* The following definitions come from auth/user_util.c  */
4793
4794 bool map_username(TALLOC_CTX *ctx, const char *user_in, char **p_user_out);
4795
4796 /* The following definitions come from auth/user_krb5.c  */
4797 struct PAC_LOGON_INFO;
4798 NTSTATUS get_user_from_kerberos_info(TALLOC_CTX *mem_ctx,
4799                                      const char *cli_name,
4800                                      const char *princ_name,
4801                                      struct PAC_LOGON_INFO *logon_info,
4802                                      bool *is_mapped,
4803                                      bool *mapped_to_guest,
4804                                      char **ntuser,
4805                                      char **ntdomain,
4806                                      char **username,
4807                                      struct passwd **_pw);
4808 NTSTATUS make_session_info_krb5(TALLOC_CTX *mem_ctx,
4809                                 char *ntuser,
4810                                 char *ntdomain,
4811                                 char *username,
4812                                 struct passwd *pw,
4813                                 struct PAC_LOGON_INFO *logon_info,
4814                                 bool mapped_to_guest, bool username_was_mapped,
4815                                 DATA_BLOB *session_key, 
4816                                 struct auth_serversupplied_info **session_info);
4817
4818 /* The following definitions come from smbd/message.c  */
4819
4820 void reply_sends(struct smb_request *req);
4821 void reply_sendstrt(struct smb_request *req);
4822 void reply_sendtxt(struct smb_request *req);
4823 void reply_sendend(struct smb_request *req);
4824
4825 /* The following definitions come from smbd/msdfs.c  */
4826
4827 bool is_msdfs_link(connection_struct *conn,
4828                 const char *path,
4829                 SMB_STRUCT_STAT *sbufp);
4830 NTSTATUS get_referred_path(TALLOC_CTX *ctx,
4831                         const char *dfs_path,
4832                         struct junction_map *jucn,
4833                         int *consumedcntp,
4834                         bool *self_referralp);
4835 int setup_dfs_referral(connection_struct *orig_conn,
4836                         const char *dfs_path,
4837                         int max_referral_level,
4838                         char **ppdata, NTSTATUS *pstatus);
4839 bool create_junction(TALLOC_CTX *ctx,
4840                 const char *dfs_path,
4841                 struct junction_map *jucn);
4842 bool create_msdfs_link(const struct junction_map *jucn);
4843 bool remove_msdfs_link(const struct junction_map *jucn);
4844 struct junction_map *enum_msdfs_links(TALLOC_CTX *ctx, size_t *p_num_jn);
4845 NTSTATUS resolve_dfspath(TALLOC_CTX *ctx,
4846                         connection_struct *conn,
4847                         bool dfs_pathnames,
4848                         const char *name_in,
4849                         char **pp_name_out);
4850 NTSTATUS resolve_dfspath_wcard(TALLOC_CTX *ctx,
4851                                 connection_struct *conn,
4852                                 bool dfs_pathnames,
4853                                 const char *name_in,
4854                                 bool allow_wcards,
4855                                 char **pp_name_out,
4856                                 bool *ppath_contains_wcard);
4857 NTSTATUS create_conn_struct(TALLOC_CTX *ctx,
4858                                 connection_struct **pconn,
4859                                 int snum,
4860                                 const char *path,
4861                                 const struct auth_serversupplied_info *session_info,
4862                                 char **poldcwd);
4863
4864 /* The following definitions come from smbd/negprot.c  */
4865
4866 void reply_negprot(struct smb_request *req);
4867
4868 /* The following definitions come from smbd/notify.c  */
4869
4870 void change_notify_reply(struct smb_request *req,
4871                          NTSTATUS error_code,
4872                          uint32_t max_param,
4873                          struct notify_change_buf *notify_buf,
4874                          void (*reply_fn)(struct smb_request *req,
4875                                           NTSTATUS error_code,
4876                                           uint8_t *buf, size_t len));
4877 NTSTATUS change_notify_create(struct files_struct *fsp, uint32 filter,
4878                               bool recursive);
4879 NTSTATUS change_notify_add_request(struct smb_request *req,
4880                                 uint32 max_param,
4881                                 uint32 filter, bool recursive,
4882                                 struct files_struct *fsp,
4883                                 void (*reply_fn)(struct smb_request *req,
4884                                         NTSTATUS error_code,
4885                                         uint8_t *buf, size_t len));
4886 void remove_pending_change_notify_requests_by_mid(
4887         struct smbd_server_connection *sconn, uint64_t mid);
4888 void remove_pending_change_notify_requests_by_fid(files_struct *fsp,
4889                                                   NTSTATUS status);
4890 void notify_fname(connection_struct *conn, uint32 action, uint32 filter,
4891                   const char *path);
4892 char *notify_filter_string(TALLOC_CTX *mem_ctx, uint32 filter);
4893 struct sys_notify_context *sys_notify_context_create(connection_struct *conn,
4894                                                      TALLOC_CTX *mem_ctx, 
4895                                                      struct event_context *ev);
4896 NTSTATUS sys_notify_watch(struct sys_notify_context *ctx,
4897                           struct notify_entry *e,
4898                           void (*callback)(struct sys_notify_context *ctx, 
4899                                            void *private_data,
4900                                            struct notify_event *ev),
4901                           void *private_data, void *handle);
4902
4903 /* The following definitions come from smbd/notify_inotify.c  */
4904
4905 NTSTATUS inotify_watch(struct sys_notify_context *ctx,
4906                        struct notify_entry *e,
4907                        void (*callback)(struct sys_notify_context *ctx, 
4908                                         void *private_data,
4909                                         struct notify_event *ev),
4910                        void *private_data, 
4911                        void *handle_p);
4912
4913 /* The following definitions come from smbd/notify_internal.c  */
4914
4915 struct notify_context *notify_init(TALLOC_CTX *mem_ctx, struct server_id server, 
4916                                    struct messaging_context *messaging_ctx,
4917                                    struct event_context *ev,
4918                                    connection_struct *conn);
4919 bool notify_internal_parent_init(TALLOC_CTX *mem_ctx);
4920 NTSTATUS notify_add(struct notify_context *notify, struct notify_entry *e0,
4921                     void (*callback)(void *, const struct notify_event *), 
4922                     void *private_data);
4923 NTSTATUS notify_remove(struct notify_context *notify, void *private_data);
4924 NTSTATUS notify_remove_onelevel(struct notify_context *notify,
4925                                 const struct file_id *fid,
4926                                 void *private_data);
4927 void notify_onelevel(struct notify_context *notify, uint32_t action,
4928                      uint32_t filter, struct file_id fid, const char *name);
4929 void notify_trigger(struct notify_context *notify,
4930                     uint32_t action, uint32_t filter, const char *path);
4931
4932 /* The following definitions come from smbd/ntquotas.c  */
4933
4934 int vfs_get_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt);
4935 int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt);
4936 int vfs_get_user_ntquota_list(files_struct *fsp, SMB_NTQUOTA_LIST **qt_list);
4937 void *init_quota_handle(TALLOC_CTX *mem_ctx);
4938
4939 /* The following definitions come from smbd/nttrans.c  */
4940
4941 void send_nt_replies(connection_struct *conn,
4942                         struct smb_request *req, NTSTATUS nt_error,
4943                      char *params, int paramsize,
4944                      char *pdata, int datasize);
4945 void reply_ntcreate_and_X(struct smb_request *req);
4946 NTSTATUS set_sd(files_struct *fsp, uint8_t *data, uint32_t sd_len,
4947                        uint32_t security_info_sent);
4948 struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size);
4949 void reply_ntcancel(struct smb_request *req);
4950 void reply_ntrename(struct smb_request *req);
4951 NTSTATUS smbd_do_query_security_desc(connection_struct *conn,
4952                                         TALLOC_CTX *mem_ctx,
4953                                         files_struct *fsp,
4954                                         uint32_t security_info_wanted,
4955                                         uint32_t max_data_count,
4956                                         uint8_t **ppmarshalled_sd,
4957                                         size_t *psd_size);
4958 void reply_nttrans(struct smb_request *req);
4959 void reply_nttranss(struct smb_request *req);
4960
4961 /* The following definitions come from smbd/open.c  */
4962
4963 NTSTATUS smb1_file_se_access_check(connection_struct *conn,
4964                                 const struct security_descriptor *sd,
4965                                 const struct security_token *token,
4966                                 uint32_t access_desired,
4967                                 uint32_t *access_granted);
4968 NTSTATUS fd_close(files_struct *fsp);
4969 void change_file_owner_to_parent(connection_struct *conn,
4970                                  const char *inherit_from_dir,
4971                                  files_struct *fsp);
4972 NTSTATUS change_dir_owner_to_parent(connection_struct *conn,
4973                                     const char *inherit_from_dir,
4974                                     const char *fname,
4975                                     SMB_STRUCT_STAT *psbuf);
4976 bool is_executable(const char *fname);
4977 bool is_stat_open(uint32 access_mask);
4978 bool request_timed_out(struct timeval request_time,
4979                        struct timeval timeout);
4980 bool open_match_attributes(connection_struct *conn,
4981                            uint32 old_dos_attr,
4982                            uint32 new_dos_attr,
4983                            mode_t existing_unx_mode,
4984                            mode_t new_unx_mode,
4985                            mode_t *returned_unx_mode);
4986 NTSTATUS fcb_or_dos_open(struct smb_request *req,
4987                          connection_struct *conn,
4988                          files_struct *fsp_to_dup_into,
4989                          const struct smb_filename *smb_fname,
4990                          struct file_id id,
4991                          uint16 file_pid,
4992                          uint16 vuid,
4993                          uint32 access_mask,
4994                          uint32 share_access,
4995                          uint32 create_options);
4996 bool map_open_params_to_ntcreate(const struct smb_filename *smb_fname,
4997                                  int deny_mode, int open_func,
4998                                  uint32 *paccess_mask,
4999                                  uint32 *pshare_mode,
5000                                  uint32 *pcreate_disposition,
5001                                  uint32 *pcreate_options,
5002                                  uint32_t *pprivate_flags);
5003 void remove_deferred_open_entry(struct file_id id, uint64_t mid,
5004                                 struct server_id pid);
5005 NTSTATUS open_file_fchmod(connection_struct *conn,
5006                           struct smb_filename *smb_fname,
5007                           files_struct **result);
5008 NTSTATUS create_directory(connection_struct *conn, struct smb_request *req,
5009                           struct smb_filename *smb_dname);
5010 void msg_file_was_renamed(struct messaging_context *msg,
5011                           void *private_data,
5012                           uint32_t msg_type,
5013                           struct server_id server_id,
5014                           DATA_BLOB *data);
5015 NTSTATUS open_streams_for_delete(connection_struct *conn,
5016                                  const char *fname);
5017 NTSTATUS create_file_default(connection_struct *conn,
5018                              struct smb_request *req,
5019                              uint16_t root_dir_fid,
5020                              struct smb_filename * smb_fname,
5021                              uint32_t access_mask,
5022                              uint32_t share_access,
5023                              uint32_t create_disposition,
5024                              uint32_t create_options,
5025                              uint32_t file_attributes,
5026                              uint32_t oplock_request,
5027                              uint64_t allocation_size,
5028                              uint32_t private_flags,
5029                              struct security_descriptor *sd,
5030                              struct ea_list *ea_list,
5031
5032                              files_struct **result,
5033                              int *pinfo);
5034 NTSTATUS get_relative_fid_filename(connection_struct *conn,
5035                                    struct smb_request *req,
5036                                    uint16_t root_dir_fid,
5037                                    struct smb_filename *smb_fname);
5038
5039 /* The following definitions come from smbd/oplock.c  */
5040
5041 int32 get_number_of_exclusive_open_oplocks(void);
5042 void break_kernel_oplock(struct messaging_context *msg_ctx, files_struct *fsp);
5043 bool set_file_oplock(files_struct *fsp, int oplock_type);
5044 void release_file_oplock(files_struct *fsp);
5045 bool remove_oplock(files_struct *fsp);
5046 bool downgrade_oplock(files_struct *fsp);
5047 bool should_notify_deferred_opens(void);
5048 void break_level2_to_none_async(files_struct *fsp);
5049 void reply_to_oplock_break_requests(files_struct *fsp);
5050 void process_oplock_async_level2_break_message(struct messaging_context *msg_ctx,
5051                                                       void *private_data,
5052                                                       uint32_t msg_type,
5053                                                       struct server_id src,
5054                                                       DATA_BLOB *data);
5055 void contend_level2_oplocks_begin(files_struct *fsp,
5056                                   enum level2_contention_type type);
5057 void contend_level2_oplocks_end(files_struct *fsp,
5058                                 enum level2_contention_type type);
5059 void share_mode_entry_to_message(char *msg, const struct share_mode_entry *e);
5060 void message_to_share_mode_entry(struct share_mode_entry *e, char *msg);
5061 bool init_oplocks(struct messaging_context *msg_ctx);
5062
5063 /* The following definitions come from smbd/oplock_irix.c  */
5064
5065 struct kernel_oplocks *irix_init_kernel_oplocks(TALLOC_CTX *mem_ctx) ;
5066
5067 /* The following definitions come from smbd/oplock_linux.c  */
5068
5069 void linux_set_lease_capability(void);
5070 int linux_set_lease_sighandler(int fd);
5071 int linux_setlease(int fd, int leasetype);
5072 struct kernel_oplocks *linux_init_kernel_oplocks(TALLOC_CTX *mem_ctx) ;
5073
5074 /* The following definitions come from smbd/oplock_onefs.c  */
5075
5076 struct kernel_oplocks *onefs_init_kernel_oplocks(TALLOC_CTX *mem_ctx);
5077
5078 /* The following definitions come from smbd/password.c  */
5079
5080 user_struct *get_valid_user_struct(struct smbd_server_connection *sconn,
5081                                    uint16 vuid);
5082 bool is_partial_auth_vuid(struct smbd_server_connection *sconn, uint16 vuid);
5083 user_struct *get_partial_auth_user_struct(struct smbd_server_connection *sconn,
5084                                           uint16 vuid);
5085 void invalidate_vuid(struct smbd_server_connection *sconn, uint16 vuid);
5086 void invalidate_all_vuids(struct smbd_server_connection *sconn);
5087 int register_initial_vuid(struct smbd_server_connection *sconn);
5088 int register_homes_share(const char *username);
5089 int register_existing_vuid(struct smbd_server_connection *sconn,
5090                         uint16 vuid,
5091                         struct auth_serversupplied_info *session_info,
5092                         DATA_BLOB response_blob,
5093                         const char *smb_name);
5094 void add_session_user(struct smbd_server_connection *sconn, const char *user);
5095 void add_session_workgroup(struct smbd_server_connection *sconn,
5096                            const char *workgroup);
5097 const char *get_session_workgroup(struct smbd_server_connection *sconn);
5098 bool user_in_netgroup(TALLOC_CTX *ctx, const char *user, const char *ngname);
5099 bool user_in_list(TALLOC_CTX *ctx, const char *user,const char **list);
5100 bool authorise_login(struct smbd_server_connection *sconn,
5101                      int snum, fstring user, DATA_BLOB password,
5102                      bool *guest);
5103
5104 /* The following definitions come from smbd/pipes.c  */
5105
5106 NTSTATUS open_np_file(struct smb_request *smb_req, const char *name,
5107                       struct files_struct **pfsp);
5108 void reply_open_pipe_and_X(connection_struct *conn, struct smb_request *req);
5109 void reply_pipe_write(struct smb_request *req);
5110 void reply_pipe_write_and_X(struct smb_request *req);
5111 void reply_pipe_read_and_X(struct smb_request *req);
5112 void reply_pipe_close(connection_struct *conn, struct smb_request *req);
5113
5114 /* The following definitions come from smbd/posix_acls.c  */
5115
5116 void create_file_sids(const SMB_STRUCT_STAT *psbuf, struct dom_sid *powner_sid, struct dom_sid *pgroup_sid);
5117 bool nt4_compatible_acls(void);
5118 uint32_t map_canon_ace_perms(int snum,
5119                                 enum security_ace_type *pacl_type,
5120                                 mode_t perms,
5121                                 bool directory_ace);
5122 NTSTATUS unpack_nt_owners(connection_struct *conn, uid_t *puser, gid_t *pgrp, uint32 security_info_sent, const struct security_descriptor *psd);
5123 SMB_ACL_T free_empty_sys_acl(connection_struct *conn, SMB_ACL_T the_acl);
5124 NTSTATUS posix_fget_nt_acl(struct files_struct *fsp, uint32_t security_info,
5125                            struct security_descriptor **ppdesc);
5126 NTSTATUS posix_get_nt_acl(struct connection_struct *conn, const char *name,
5127                           uint32_t security_info, struct security_descriptor **ppdesc);
5128 NTSTATUS try_chown(files_struct *fsp, uid_t uid, gid_t gid);
5129 NTSTATUS append_parent_acl(files_struct *fsp,
5130                                 const struct security_descriptor *pcsd,
5131                                 struct security_descriptor **pp_new_sd);
5132 NTSTATUS set_nt_acl(files_struct *fsp, uint32 security_info_sent, const struct security_descriptor *psd);
5133 int get_acl_group_bits( connection_struct *conn, const char *fname, mode_t *mode );
5134 int chmod_acl(connection_struct *conn, const char *name, mode_t mode);
5135 int inherit_access_posix_acl(connection_struct *conn, const char *inherit_from_dir,
5136                        const char *name, mode_t mode);
5137 int fchmod_acl(files_struct *fsp, mode_t mode);
5138 bool set_unix_posix_default_acl(connection_struct *conn, const char *fname,
5139                                 const SMB_STRUCT_STAT *psbuf,
5140                                 uint16 num_def_acls, const char *pdata);
5141 bool set_unix_posix_acl(connection_struct *conn, files_struct *fsp, const char *fname, uint16 num_acls, const char *pdata);
5142 struct security_descriptor *get_nt_acl_no_snum( TALLOC_CTX *ctx, const char *fname);
5143 NTSTATUS make_default_filesystem_acl(TALLOC_CTX *ctx,
5144                                         const char *name,
5145                                         SMB_STRUCT_STAT *psbuf,
5146                                         struct security_descriptor **ppdesc);
5147
5148 /* The following definitions come from smbd/process.c  */
5149
5150 void smbd_setup_sig_term_handler(void);
5151 void smbd_setup_sig_hup_handler(struct tevent_context *ev,
5152                                 struct messaging_context *msg_ctx);
5153 bool srv_send_smb(struct smbd_server_connection *sconn, char *buffer,
5154                   bool no_signing, uint32_t seqnum,
5155                   bool do_encrypt,
5156                   struct smb_perfcount_data *pcd);
5157 int srv_set_message(char *buf,
5158                         int num_words,
5159                         int num_bytes,
5160                         bool zero);
5161 void remove_deferred_open_message_smb(uint64_t mid);
5162 void schedule_deferred_open_message_smb(uint64_t mid);
5163 bool open_was_deferred(uint64_t mid);
5164 bool get_deferred_open_message_state(struct smb_request *smbreq,
5165                                 struct timeval *p_request_time,
5166                                 void **pp_state);
5167 bool push_deferred_open_message_smb(struct smb_request *req,
5168                                 struct timeval request_time,
5169                                 struct timeval timeout,
5170                                 struct file_id id,
5171                                 char *private_data,
5172                                 size_t priv_len);
5173 struct idle_event *event_add_idle(struct event_context *event_ctx,
5174                                   TALLOC_CTX *mem_ctx,
5175                                   struct timeval interval,
5176                                   const char *name,
5177                                   bool (*handler)(const struct timeval *now,
5178                                                   void *private_data),
5179                                   void *private_data);
5180 NTSTATUS allow_new_trans(struct trans_state *list, uint64_t mid);
5181 void reply_outbuf(struct smb_request *req, uint8 num_words, uint32 num_bytes);
5182 const char *smb_fn_name(int type);
5183 void add_to_common_flags2(uint32 v);
5184 void remove_from_common_flags2(uint32 v);
5185 void construct_reply_common_req(struct smb_request *req, char *outbuf);
5186 size_t req_wct_ofs(struct smb_request *req);
5187 void chain_reply(struct smb_request *req);
5188 bool req_is_in_chain(struct smb_request *req);
5189 void smbd_process(struct smbd_server_connection *sconn);
5190
5191 /* The following definitions come from smbd/quotas.c  */
5192
5193 bool disk_quotas(const char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
5194 bool disk_quotas(const char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
5195 bool disk_quotas(const char *path,
5196                 uint64_t *bsize,
5197                 uint64_t *dfree,
5198                 uint64_t *dsize);
5199 bool disk_quotas(const char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
5200 bool disk_quotas(const char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
5201 bool disk_quotas(const char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
5202 bool disk_quotas_vxfs(const char *name, char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
5203 bool disk_quotas(const char *path,uint64_t *bsize,uint64_t *dfree,uint64_t *dsize);
5204 bool disk_quotas(const char *path,uint64_t *bsize,uint64_t *dfree,uint64_t *dsize);
5205
5206 /* The following definitions come from smbd/reply.c  */
5207
5208 NTSTATUS check_path_syntax(char *path);
5209 NTSTATUS check_path_syntax_wcard(char *path, bool *p_contains_wcard);
5210 NTSTATUS check_path_syntax_posix(char *path);
5211 size_t srvstr_get_path_wcard(TALLOC_CTX *ctx,
5212                         const char *inbuf,
5213                         uint16 smb_flags2,
5214                         char **pp_dest,
5215                         const char *src,
5216                         size_t src_len,
5217                         int flags,
5218                         NTSTATUS *err,
5219                         bool *contains_wcard);
5220 size_t srvstr_get_path(TALLOC_CTX *ctx,
5221                         const char *inbuf,
5222                         uint16 smb_flags2,
5223                         char **pp_dest,
5224                         const char *src,
5225                         size_t src_len,
5226                         int flags,
5227                         NTSTATUS *err);
5228 size_t srvstr_get_path_req_wcard(TALLOC_CTX *mem_ctx, struct smb_request *req,
5229                                  char **pp_dest, const char *src, int flags,
5230                                  NTSTATUS *err, bool *contains_wcard);
5231 size_t srvstr_get_path_req(TALLOC_CTX *mem_ctx, struct smb_request *req,
5232                            char **pp_dest, const char *src, int flags,
5233                            NTSTATUS *err);
5234 bool check_fsp_open(connection_struct *conn, struct smb_request *req,
5235                     files_struct *fsp);
5236 bool check_fsp(connection_struct *conn, struct smb_request *req,
5237                files_struct *fsp);
5238 bool check_fsp_ntquota_handle(connection_struct *conn, struct smb_request *req,
5239                               files_struct *fsp);
5240 void reply_special(struct smbd_server_connection *sconn, char *inbuf, size_t inbuf_len);
5241 void reply_tcon(struct smb_request *req);
5242 void reply_tcon_and_X(struct smb_request *req);
5243 void reply_unknown_new(struct smb_request *req, uint8 type);
5244 void reply_ioctl(struct smb_request *req);
5245 void reply_checkpath(struct smb_request *req);
5246 void reply_getatr(struct smb_request *req);
5247 void reply_setatr(struct smb_request *req);
5248 void reply_dskattr(struct smb_request *req);
5249 void reply_search(struct smb_request *req);
5250 void reply_fclose(struct smb_request *req);
5251 void reply_open(struct smb_request *req);
5252 void reply_open_and_X(struct smb_request *req);
5253 void reply_ulogoffX(struct smb_request *req);
5254 void reply_mknew(struct smb_request *req);
5255 void reply_ctemp(struct smb_request *req);
5256 NTSTATUS unlink_internals(connection_struct *conn, struct smb_request *req,
5257                           uint32 dirtype, struct smb_filename *smb_fname,
5258                           bool has_wild);
5259 void reply_unlink(struct smb_request *req);
5260 ssize_t fake_sendfile(files_struct *fsp, SMB_OFF_T startpos, size_t nread);
5261 void sendfile_short_send(files_struct *fsp,
5262                                 ssize_t nread,
5263                                 size_t headersize,
5264                                 size_t smb_maxcnt);
5265 void reply_readbraw(struct smb_request *req);
5266 void reply_lockread(struct smb_request *req);
5267 void reply_read(struct smb_request *req);
5268 void reply_read_and_X(struct smb_request *req);
5269 void error_to_writebrawerr(struct smb_request *req);
5270 void reply_writebraw(struct smb_request *req);
5271 void reply_writeunlock(struct smb_request *req);
5272 void reply_write(struct smb_request *req);
5273 bool is_valid_writeX_buffer(struct smbd_server_connection *sconn,
5274                             const uint8_t *inbuf);
5275 void reply_write_and_X(struct smb_request *req);
5276 void reply_lseek(struct smb_request *req);
5277 void reply_flush(struct smb_request *req);
5278 void reply_exit(struct smb_request *req);
5279 void reply_close(struct smb_request *req);
5280 void reply_writeclose(struct smb_request *req);
5281 void reply_lock(struct smb_request *req);
5282 void reply_unlock(struct smb_request *req);
5283 void reply_tdis(struct smb_request *req);
5284 void reply_echo(struct smb_request *req);
5285 void reply_printopen(struct smb_request *req);
5286 void reply_printclose(struct smb_request *req);
5287 void reply_printqueue(struct smb_request *req);
5288 void reply_printwrite(struct smb_request *req);
5289 void reply_mkdir(struct smb_request *req);
5290 void reply_rmdir(struct smb_request *req);
5291 NTSTATUS rename_internals_fsp(connection_struct *conn,
5292                         files_struct *fsp,
5293                         const struct smb_filename *smb_fname_dst_in,
5294                         uint32 attrs,
5295                         bool replace_if_exists);
5296 NTSTATUS rename_internals(TALLOC_CTX *ctx,
5297                         connection_struct *conn,
5298                         struct smb_request *req,
5299                         struct smb_filename *smb_fname_src,
5300                         struct smb_filename *smb_fname_dst,
5301                         uint32 attrs,
5302                         bool replace_if_exists,
5303                         bool src_has_wild,
5304                         bool dest_has_wild,
5305                         uint32_t access_mask);
5306 void reply_mv(struct smb_request *req);
5307 NTSTATUS copy_file(TALLOC_CTX *ctx,
5308                         connection_struct *conn,
5309                         struct smb_filename *smb_fname_src,
5310                         struct smb_filename *smb_fname_dst,
5311                         int ofun,
5312                         int count,
5313                         bool target_is_directory);
5314 void reply_copy(struct smb_request *req);
5315 uint64_t get_lock_pid(const uint8_t *data, int data_offset,
5316                     bool large_file_format);
5317 uint64_t get_lock_count(const uint8_t *data, int data_offset,
5318                         bool large_file_format);
5319 uint64_t get_lock_offset(const uint8_t *data, int data_offset,
5320                          bool large_file_format, bool *err);
5321 void reply_lockingX(struct smb_request *req);
5322 void reply_readbmpx(struct smb_request *req);
5323 void reply_readbs(struct smb_request *req);
5324 void reply_setattrE(struct smb_request *req);
5325 void reply_writebmpx(struct smb_request *req);
5326 void reply_writebs(struct smb_request *req);
5327 void reply_getattrE(struct smb_request *req);
5328
5329 /* The following definitions come from smbd/seal.c  */
5330
5331 uint16_t srv_enc_ctx(void);
5332 bool is_encrypted_packet(const uint8_t *inbuf);
5333 void srv_free_enc_buffer(char *buf);
5334 NTSTATUS srv_decrypt_buffer(char *buf);
5335 NTSTATUS srv_encrypt_buffer(char *buf, char **buf_out);
5336 NTSTATUS srv_request_encryption_setup(connection_struct *conn,
5337                                         unsigned char **ppdata,
5338                                         size_t *p_data_size,
5339                                         unsigned char **pparam,
5340                                         size_t *p_param_size);
5341 NTSTATUS srv_encryption_start(connection_struct *conn);
5342 void server_encryption_shutdown(void);
5343
5344 /* The following definitions come from smbd/sec_ctx.c  */
5345
5346 bool unix_token_equal(const UNIX_USER_TOKEN *t1, const UNIX_USER_TOKEN *t2);
5347 bool push_sec_ctx(void);
5348 void set_sec_ctx(uid_t uid, gid_t gid, int ngroups, gid_t *groups, struct security_token *token);
5349 void set_root_sec_ctx(void);
5350 bool pop_sec_ctx(void);
5351 void init_sec_ctx(void);
5352
5353 /* The following definitions come from lib/server_contexts.c  */
5354 struct tevent_context *server_event_context(void);
5355 void server_event_context_free(void);
5356 struct messaging_context *server_messaging_context(void);
5357 void server_messaging_context_free(void);
5358
5359 /* The following definitions come from smbd/server.c  */
5360
5361 struct event_context *smbd_event_context(void);
5362 struct messaging_context *smbd_messaging_context(void);
5363 struct memcache *smbd_memcache(void);
5364 void reload_printers(struct tevent_context *ev,
5365                      struct messaging_context *msg_ctx);
5366 bool reload_services(struct messaging_context *msg_ctx, int smb_sock,
5367                      bool test);
5368 void reload_pcap_change_notify(struct tevent_context *ev,
5369                                struct messaging_context *msg_ctx);
5370 void exit_server(const char *const explanation);
5371 void exit_server_cleanly(const char *const explanation);
5372 void exit_server_fault(void);
5373
5374 /* The following definitions come from smbd/service.c  */
5375
5376 bool set_conn_connectpath(connection_struct *conn, const char *connectpath);
5377 bool set_current_service(connection_struct *conn, uint16 flags, bool do_chdir);
5378 void load_registry_shares(void);
5379 int add_home_service(const char *service, const char *username, const char *homedir);
5380 int find_service(TALLOC_CTX *ctx, const char *service, char **p_service_out);
5381 connection_struct *make_connection_snum(struct smbd_server_connection *sconn,
5382                                         int snum, user_struct *vuser,
5383                                         DATA_BLOB password,
5384                                         const char *pdev,
5385                                         NTSTATUS *pstatus);
5386 connection_struct *make_connection(struct smbd_server_connection *sconn,
5387                                    const char *service_in, DATA_BLOB password,
5388                                    const char *pdev, uint16 vuid,
5389                                    NTSTATUS *status);
5390 void close_cnum(connection_struct *conn, uint16 vuid);
5391
5392 /* The following definitions come from smbd/session.c  */
5393
5394 bool session_init(void);
5395 bool session_claim(struct smbd_server_connection *sconn, user_struct *vuser);
5396 void session_yield(user_struct *vuser);
5397 int list_sessions(TALLOC_CTX *mem_ctx, struct sessionid **session_list);
5398
5399 /* The following definitions come from lib/sessionid_tdb.c  */
5400
5401 bool sessionid_init(void);
5402 struct db_record *sessionid_fetch_record(TALLOC_CTX *mem_ctx, const char *key);
5403 int sessionid_traverse(int (*fn)(struct db_record *rec, const char *key,
5404                                  struct sessionid *session,
5405                                  void *private_data),
5406                        void *private_data);
5407 int sessionid_traverse_read(int (*fn)(const char *key,
5408                                       struct sessionid *session,
5409                                       void *private_data),
5410                             void *private_data);
5411
5412 /* The following definitions come from smbd/sesssetup.c  */
5413
5414 NTSTATUS do_map_to_guest(NTSTATUS status,
5415                 struct auth_serversupplied_info **session_info,
5416                 const char *user, const char *domain);
5417
5418 NTSTATUS parse_spnego_mechanisms(TALLOC_CTX *ctx,
5419                 DATA_BLOB blob_in,
5420                 DATA_BLOB *pblob_out,
5421                 char **kerb_mechOID);
5422 void reply_sesssetup_and_X(struct smb_request *req);
5423
5424 /* The following definitions come from smbd/share_access.c  */
5425
5426 bool token_contains_name_in_list(const char *username,
5427                                  const char *domain,
5428                                  const char *sharename,
5429                                  const struct security_token *token,
5430                                  const char **list);
5431 bool user_ok_token(const char *username, const char *domain,
5432                    const struct security_token *token, int snum);
5433 bool is_share_read_only_for_token(const char *username,
5434                                   const char *domain,
5435                                   const struct security_token *token,
5436                                   connection_struct *conn);
5437
5438 /* The following definitions come from smbd/srvstr.c  */
5439
5440 size_t srvstr_push_fn(const char *function, unsigned int line,
5441                       const char *base_ptr, uint16 smb_flags2, void *dest,
5442                       const char *src, int dest_len, int flags);
5443 ssize_t message_push_string(uint8 **outbuf, const char *str, int flags);
5444
5445 /* The following definitions come from smbd/statcache.c  */
5446
5447 void stat_cache_add( const char *full_orig_name,
5448                 char *translated_path,
5449                 bool case_sensitive);
5450 bool stat_cache_lookup(connection_struct *conn,
5451                         char **pp_name,
5452                         char **pp_dirpath,
5453                         char **pp_start,
5454                         SMB_STRUCT_STAT *pst);
5455 void send_stat_cache_delete_message(struct messaging_context *msg_ctx,
5456                                     const char *name);
5457 void stat_cache_delete(const char *name);
5458 unsigned int fast_string_hash(TDB_DATA *key);
5459 bool reset_stat_cache( void );
5460
5461 /* The following definitions come from smbd/statvfs.c  */
5462
5463 int sys_statvfs(const char *path, vfs_statvfs_struct *statbuf);
5464
5465 /* The following definitions come from smbd/trans2.c  */
5466
5467 uint64_t smb_roundup(connection_struct *conn, uint64_t val);
5468 uint64_t get_FileIndex(connection_struct *conn, const SMB_STRUCT_STAT *psbuf);
5469 NTSTATUS get_ea_value(TALLOC_CTX *mem_ctx, connection_struct *conn,
5470                       files_struct *fsp, const char *fname,
5471                       const char *ea_name, struct ea_struct *pea);
5472 NTSTATUS get_ea_names_from_file(TALLOC_CTX *mem_ctx, connection_struct *conn,
5473                                 files_struct *fsp, const char *fname,
5474                                 char ***pnames, size_t *pnum_names);
5475 NTSTATUS set_ea(connection_struct *conn, files_struct *fsp,
5476                 const struct smb_filename *smb_fname, struct ea_list *ea_list);
5477 struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t data_size, size_t *pbytes_used);
5478 void send_trans2_replies(connection_struct *conn,
5479                         struct smb_request *req,
5480                          const char *params,
5481                          int paramsize,
5482                          const char *pdata,
5483                          int datasize,
5484                          int max_data_bytes);
5485 unsigned char *create_volume_objectid(connection_struct *conn, unsigned char objid[16]);
5486 NTSTATUS hardlink_internals(TALLOC_CTX *ctx,
5487                 connection_struct *conn,
5488                 struct smb_request *req,
5489                 bool overwrite_if_exists,
5490                 const struct smb_filename *smb_fname_old,
5491                 struct smb_filename *smb_fname_new);
5492 NTSTATUS smb_set_file_time(connection_struct *conn,
5493                            files_struct *fsp,
5494                            const struct smb_filename *smb_fname,
5495                            struct smb_file_time *ft,
5496                            bool setting_write_time);
5497 void reply_findclose(struct smb_request *req);
5498 void reply_findnclose(struct smb_request *req);
5499 void reply_trans2(struct smb_request *req);
5500 void reply_transs2(struct smb_request *req);
5501
5502 /* The following definitions come from smbd/uid.c  */
5503
5504 bool change_to_guest(void);
5505 void conn_clear_vuid_cache(connection_struct *conn, uint16_t vuid);
5506 bool change_to_user(connection_struct *conn, uint16 vuid);
5507 bool change_to_root_user(void);
5508 bool become_authenticated_pipe_user(struct pipes_struct *p);
5509 bool unbecome_authenticated_pipe_user(void);
5510 void become_root(void);
5511 void unbecome_root(void);
5512 bool become_user(connection_struct *conn, uint16 vuid);
5513 bool unbecome_user(void);
5514 uid_t get_current_uid(connection_struct *conn);
5515 gid_t get_current_gid(connection_struct *conn);
5516 const UNIX_USER_TOKEN *get_current_utok(connection_struct *conn);
5517 const struct security_token *get_current_nttok(connection_struct *conn);
5518 uint16_t get_current_vuid(connection_struct *conn);
5519
5520 /* The following definitions come from smbd/utmp.c  */
5521
5522 void sys_utmp_claim(const char *username, const char *hostname,
5523                         const char *ip_addr_str,
5524                         const char *id_str, int id_num);
5525 void sys_utmp_yield(const char *username, const char *hostname,
5526                         const char *ip_addr_str,
5527                         const char *id_str, int id_num);
5528 void sys_utmp_yield(const char *username, const char *hostname,
5529                         const char *ip_addr_str,
5530                         const char *id_str, int id_num);
5531 void sys_utmp_claim(const char *username, const char *hostname,
5532                         const char *ip_addr_str,
5533                         const char *id_str, int id_num);
5534
5535 /* The following definitions come from smbd/vfs.c  */
5536
5537 NTSTATUS smb_register_vfs(int version, const char *name,
5538                           const struct vfs_fn_pointers *fns);
5539 bool vfs_init_custom(connection_struct *conn, const char *vfs_object);
5540 void *vfs_add_fsp_extension_notype(vfs_handle_struct *handle,
5541                                    files_struct *fsp, size_t ext_size,
5542                                    void (*destroy_fn)(void *p_data));
5543 void vfs_remove_fsp_extension(vfs_handle_struct *handle, files_struct *fsp);
5544 void *vfs_memctx_fsp_extension(vfs_handle_struct *handle, files_struct *fsp);
5545 void *vfs_fetch_fsp_extension(vfs_handle_struct *handle, files_struct *fsp);
5546 bool smbd_vfs_init(connection_struct *conn);
5547 NTSTATUS vfs_file_exist(connection_struct *conn, struct smb_filename *smb_fname);
5548 ssize_t vfs_read_data(files_struct *fsp, char *buf, size_t byte_count);
5549 ssize_t vfs_pread_data(files_struct *fsp, char *buf,
5550                 size_t byte_count, SMB_OFF_T offset);
5551 ssize_t vfs_write_data(struct smb_request *req,
5552                         files_struct *fsp,
5553                         const char *buffer,
5554                         size_t N);
5555 ssize_t vfs_pwrite_data(struct smb_request *req,
5556                         files_struct *fsp,
5557                         const char *buffer,
5558                         size_t N,
5559                         SMB_OFF_T offset);
5560 int vfs_allocate_file_space(files_struct *fsp, uint64_t len);
5561 int vfs_set_filelen(files_struct *fsp, SMB_OFF_T len);
5562 int vfs_slow_fallocate(files_struct *fsp, SMB_OFF_T offset, SMB_OFF_T len);
5563 int vfs_fill_sparse(files_struct *fsp, SMB_OFF_T len);
5564 SMB_OFF_T vfs_transfer_file(files_struct *in, files_struct *out, SMB_OFF_T n);
5565 const char *vfs_readdirname(connection_struct *conn, void *p,
5566                             SMB_STRUCT_STAT *sbuf, char **talloced);
5567 int vfs_ChDir(connection_struct *conn, const char *path);
5568 char *vfs_GetWd(TALLOC_CTX *ctx, connection_struct *conn);
5569 NTSTATUS check_reduced_name(connection_struct *conn, const char *fname);
5570 int vfs_stat_smb_fname(struct connection_struct *conn, const char *fname,
5571                        SMB_STRUCT_STAT *psbuf);
5572 int vfs_lstat_smb_fname(struct connection_struct *conn, const char *fname,
5573                         SMB_STRUCT_STAT *psbuf);
5574 NTSTATUS vfs_stat_fsp(files_struct *fsp);
5575 NTSTATUS vfs_chown_fsp(files_struct *fsp, uid_t uid, gid_t gid);
5576
5577 /* The following definitions come from utils/passwd_util.c  */
5578
5579 char *stdin_new_passwd( void);
5580 char *get_pass( const char *prompt, bool stdin_get);
5581
5582 /* The following definitions come from winbindd/nss_info.c  */
5583
5584
5585 /* The following definitions come from winbindd/nss_info_template.c  */
5586
5587 NTSTATUS nss_info_template_init( void );
5588
5589 /* The following definitions come from lib/avahi.c */
5590
5591 struct AvahiPoll *tevent_avahi_poll(TALLOC_CTX *mem_ctx,
5592                                     struct tevent_context *ev);
5593
5594 /* The following definitions come from smbd/avahi_register.c */
5595
5596 void *avahi_start_register(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
5597                            uint16_t port);
5598
5599 /* Misc protos */
5600
5601 struct fncall_context *fncall_context_init(TALLOC_CTX *mem_ctx,
5602                                            int max_threads);
5603 struct tevent_req *fncall_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
5604                                struct fncall_context *ctx,
5605                                void (*fn)(void *private_data),
5606                                void *private_data);
5607 int fncall_recv(struct tevent_req *req, int *perr);
5608
5609 struct tevent_req *smbsock_connect_send(TALLOC_CTX *mem_ctx,
5610                                         struct tevent_context *ev,
5611                                         const struct sockaddr_storage *addr,
5612                                         uint16_t port,
5613                                         const char *called_name,
5614                                         int called_type,
5615                                         const char *calling_name,
5616                                         int calling_type);
5617 NTSTATUS smbsock_connect_recv(struct tevent_req *req, int *sock,
5618                               uint16_t *ret_port);
5619 NTSTATUS smbsock_connect(const struct sockaddr_storage *addr, uint16_t port,
5620                          const char *called_name, int called_type,
5621                          const char *calling_name, int calling_type,
5622                          int *pfd, uint16_t *ret_port);
5623
5624 struct tevent_req *smbsock_any_connect_send(TALLOC_CTX *mem_ctx,
5625                                             struct tevent_context *ev,
5626                                             const struct sockaddr_storage *addrs,
5627                                             const char **called_names,
5628                                             int *called_types,
5629                                             const char **calling_names,
5630                                             int *calling_types,
5631                                             size_t num_addrs, uint16_t port);
5632 NTSTATUS smbsock_any_connect_recv(struct tevent_req *req, int *pfd,
5633                                   size_t *chosen_index, uint16_t *chosen_port);
5634 NTSTATUS smbsock_any_connect(const struct sockaddr_storage *addrs,
5635                              const char **called_names,
5636                              int *called_types,
5637                              const char **calling_names,
5638                              int *calling_types,
5639                              size_t num_addrs,
5640                              uint16_t port,
5641                              int *pfd, size_t *chosen_index,
5642                              uint16_t *chosen_port);
5643
5644 /* The following definitions come from rpc_server/srv_samr_nt.c */
5645 NTSTATUS access_check_object( struct security_descriptor *psd, struct security_token *token,
5646                               enum sec_privilege needed_priv_1, enum sec_privilege needed_priv_2,
5647                               uint32 rights_mask,
5648                               uint32 des_access, uint32 *acc_granted,
5649                               const char *debug );
5650 void map_max_allowed_access(const struct security_token *nt_token,
5651                             const struct security_unix_token *unix_token,
5652                             uint32_t *pacc_requested);
5653
5654 /* The following definitions come from ../libds/common/flag_mapping.c  */
5655
5656 uint32_t ds_acb2uf(uint32_t acb);
5657 uint32_t ds_uf2acb(uint32_t uf);
5658 uint32_t ds_uf2atype(uint32_t uf);
5659 uint32_t ds_gtype2atype(uint32_t gtype);
5660 enum lsa_SidType ds_atype_map(uint32_t atype);
5661 uint32_t ds_uf2prim_group_rid(uint32_t uf);
5662
5663 #endif /*  _PROTO_H_  */