lib/util: consolidate module loading into common code
[samba.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 /* The following definitions come from lib/access.c  */
27
28 bool client_match(const char *tok, const void *item);
29 bool list_match(const char **list,const void *item,
30                 bool (*match_fn)(const char *, const void *));
31 bool allow_access(const char **deny_list,
32                 const char **allow_list,
33                 const char *cname,
34                 const char *caddr);
35
36 /* The following definitions come from lib/adt_tree.c  */
37
38
39 /* The following definitions come from lib/afs.c  */
40
41 char *afs_createtoken_str(const char *username, const char *cell);
42 bool afs_login(connection_struct *conn);
43 bool afs_login(connection_struct *conn);
44 char *afs_createtoken_str(const char *username, const char *cell);
45
46 /* The following definitions come from lib/afs_settoken.c  */
47
48 int afs_syscall( int subcall,
49           const char * path,
50           int cmd,
51           char * cmarg,
52           int follow);
53 bool afs_settoken_str(const char *token_string);
54 bool afs_settoken_str(const char *token_string);
55
56 /* The following definitions come from lib/audit.c  */
57
58 const char *audit_category_str(uint32 category);
59 const char *audit_param_str(uint32 category);
60 const char *audit_description_str(uint32 category);
61 bool get_audit_category_from_param(const char *param, uint32 *audit_category);
62 const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32 policy);
63
64 /* The following definitions come from lib/charcnv.c  */
65
66 void gfree_charcnv(void);
67 size_t ucs2_align(const void *base_ptr, const void *p, int flags);
68 size_t push_ascii(void *dest, const char *src, size_t dest_len, int flags);
69 size_t push_ascii_fstring(void *dest, const char *src);
70 size_t push_ascii_nstring(void *dest, const char *src);
71 size_t pull_ascii(char *dest, const void *src, size_t dest_len, size_t src_len, int flags);
72 size_t pull_ascii_fstring(char *dest, const void *src);
73 size_t pull_ascii_nstring(char *dest, size_t dest_len, const void *src);
74 size_t push_string_check_fn(void *dest, const char *src,
75                             size_t dest_len, int flags);
76 size_t push_string_base(const char *base, uint16 flags2,
77                         void *dest, const char *src,
78                         size_t dest_len, int flags);
79 size_t pull_string_fn(const void *base_ptr,
80                         uint16 smb_flags2,
81                         char *dest,
82                         const void *src,
83                         size_t dest_len,
84                         size_t src_len,
85                         int flags);
86 size_t pull_string_talloc(TALLOC_CTX *ctx,
87                         const void *base_ptr,
88                         uint16 smb_flags2,
89                         char **ppdest,
90                         const void *src,
91                         size_t src_len,
92                         int flags);
93 size_t align_string(const void *base_ptr, const char *p, int flags);
94 size_t dos_PutUniCode(char *dst,const char *src, size_t len, bool null_terminate);
95 int rpcstr_push(void *dest, const char *src, size_t dest_len, int flags);
96 int rpcstr_push_talloc(TALLOC_CTX *ctx, smb_ucs2_t **dest, const char *src);
97
98 /* The following definitions come from lib/conn_tdb.c  */
99
100 struct db_record *connections_fetch_entry(TALLOC_CTX *mem_ctx,
101                                           connection_struct *conn,
102                                           const char *name);
103 int connections_traverse(int (*fn)(struct db_record *rec,
104                                    void *private_data),
105                          void *private_data);
106 int connections_forall(int (*fn)(struct db_record *rec,
107                                  const struct connections_key *key,
108                                  const struct connections_data *data,
109                                  void *private_data),
110                        void *private_data);
111 int connections_forall_read(int (*fn)(const struct connections_key *key,
112                                       const struct connections_data *data,
113                                       void *private_data),
114                             void *private_data);
115 bool connections_init(bool rw);
116
117 /* The following definitions come from lib/dmallocmsg.c  */
118
119 void register_dmalloc_msgs(struct messaging_context *msg_ctx);
120
121 /* The following definitions come from lib/dprintf.c  */
122
123 void display_set_stderr(void);
124
125 /* The following definitions come from lib/errmap_unix.c  */
126
127 NTSTATUS map_nt_error_from_unix(int unix_error);
128 int map_errno_from_nt_status(NTSTATUS status);
129
130 /* The following definitions come from lib/file_id.c  */
131
132 struct file_id vfs_file_id_from_sbuf(connection_struct *conn, const SMB_STRUCT_STAT *sbuf);
133 bool file_id_equal(const struct file_id *id1, const struct file_id *id2);
134 const char *file_id_string_tos(const struct file_id *id);
135 void push_file_id_16(char *buf, const struct file_id *id);
136 void push_file_id_24(char *buf, const struct file_id *id);
137 void pull_file_id_24(char *buf, struct file_id *id);
138
139 /* The following definitions come from lib/gencache.c  */
140
141 bool gencache_set(const char *keystr, const char *value, time_t timeout);
142 bool gencache_del(const char *keystr);
143 bool gencache_get(const char *keystr, char **valstr, time_t *timeout);
144 bool gencache_parse(const char *keystr,
145                     void (*parser)(time_t timeout, DATA_BLOB blob,
146                                    void *private_data),
147                     void *private_data);
148 bool gencache_get_data_blob(const char *keystr, DATA_BLOB *blob,
149                             time_t *timeout, bool *was_expired);
150 bool gencache_stabilize(void);
151 bool gencache_set_data_blob(const char *keystr, const DATA_BLOB *blob, time_t timeout);
152 void gencache_iterate_blobs(void (*fn)(const char *key, DATA_BLOB value,
153                                        time_t timeout, void *private_data),
154                             void *private_data, const char *pattern);
155 void gencache_iterate(void (*fn)(const char* key, const char *value, time_t timeout, void* dptr),
156                       void* data, const char* keystr_pattern);
157
158 /* The following definitions come from lib/interface.c  */
159
160 bool ismyaddr(const struct sockaddr *ip);
161 bool ismyip_v4(struct in_addr ip);
162 bool is_local_net(const struct sockaddr *from);
163 void setup_linklocal_scope_id(struct sockaddr *pss);
164 bool is_local_net_v4(struct in_addr from);
165 int iface_count(void);
166 int iface_count_v4_nl(void);
167 const struct in_addr *first_ipv4_iface(void);
168 struct interface *get_interface(int n);
169 const struct sockaddr_storage *iface_n_sockaddr_storage(int n);
170 const struct in_addr *iface_n_ip_v4(int n);
171 const struct in_addr *iface_n_bcast_v4(int n);
172 const struct sockaddr_storage *iface_n_bcast(int n);
173 const struct sockaddr_storage *iface_ip(const struct sockaddr *ip);
174 bool iface_local(const struct sockaddr *ip);
175 void load_interfaces(void);
176 void gfree_interfaces(void);
177 bool interfaces_changed(void);
178
179 /* The following definitions come from lib/ldap_debug_handler.c  */
180
181 void init_ldap_debugging(void);
182
183 /* The following definitions come from lib/ldap_escape.c  */
184
185 char *escape_ldap_string(TALLOC_CTX *mem_ctx, const char *s);
186 char *escape_rdn_val_string_alloc(const char *s);
187
188 /* The following definitions come from lib/ms_fnmatch.c  */
189
190 int ms_fnmatch(const char *pattern, const char *string, bool translate_pattern,
191                bool is_case_sensitive);
192
193 /* The following definitions come from lib/pidfile.c  */
194
195 pid_t pidfile_pid(const char *name);
196 void pidfile_create(const char *program_name);
197 void pidfile_unlink(void);
198
199 /* The following definitions come from lib/recvfile.c  */
200
201 ssize_t sys_recvfile(int fromfd,
202                         int tofd,
203                         SMB_OFF_T offset,
204                         size_t count);
205 ssize_t sys_recvfile(int fromfd,
206                         int tofd,
207                         SMB_OFF_T offset,
208                         size_t count);
209 ssize_t drain_socket(int sockfd, size_t count);
210
211 /* The following definitions come from lib/sendfile.c  */
212
213 ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
214
215 /* The following definitions come from lib/server_mutex.c  */
216
217 struct named_mutex *grab_named_mutex(TALLOC_CTX *mem_ctx, const char *name,
218                                      int timeout);
219
220 /* The following definitions come from lib/sharesec.c  */
221
222 bool share_info_db_init(void);
223 struct security_descriptor *get_share_security_default( TALLOC_CTX *ctx, size_t *psize, uint32 def_access);
224 struct security_descriptor *get_share_security( TALLOC_CTX *ctx, const char *servicename,
225                               size_t *psize);
226 bool set_share_security(const char *share_name, struct security_descriptor *psd);
227 bool delete_share_security(const char *servicename);
228 bool share_access_check(const struct security_token *token,
229                         const char *sharename,
230                         uint32 desired_access,
231                         uint32_t *pgranted);
232 bool parse_usershare_acl(TALLOC_CTX *ctx, const char *acl_str, struct security_descriptor **ppsd);
233
234 /* The following definitions come from lib/smbrun.c  */
235
236 int smbrun_no_sanitize(const char *cmd, int *outfd);
237 int smbrun(const char *cmd, int *outfd);
238 int smbrunsecret(const char *cmd, const char *secret);
239
240 /* The following definitions come from lib/sock_exec.c  */
241
242 int sock_exec(const char *prog);
243
244 /* The following definitions come from lib/substitute.c  */
245
246 void free_local_machine_name(void);
247 bool set_local_machine_name(const char *local_name, bool perm);
248 const char *get_local_machine_name(void);
249 bool set_remote_machine_name(const char *remote_name, bool perm);
250 const char *get_remote_machine_name(void);
251 void sub_set_smb_name(const char *name);
252 void set_current_user_info(const char *smb_name, const char *unix_name,
253                            const char *domain);
254 void sub_set_socket_ids(const char *peeraddr, const char *peername,
255                         const char *sockaddr);
256 const char *get_current_username(void);
257 void standard_sub_basic(const char *smb_name, const char *domain_name,
258                         char *str, size_t len);
259 char *talloc_sub_basic(TALLOC_CTX *mem_ctx, const char *smb_name,
260                        const char *domain_name, const char *str);
261 char *talloc_sub_specified(TALLOC_CTX *mem_ctx,
262                         const char *input_string,
263                         const char *username,
264                         const char *domain,
265                         uid_t uid,
266                         gid_t gid);
267 char *talloc_sub_advanced(TALLOC_CTX *mem_ctx,
268                           const char *servicename, const char *user,
269                           const char *connectpath, gid_t gid,
270                           const char *smb_name, const char *domain_name,
271                           const char *str);
272 void standard_sub_advanced(const char *servicename, const char *user,
273                            const char *connectpath, gid_t gid,
274                            const char *smb_name, const char *domain_name,
275                            char *str, size_t len);
276 char *standard_sub_conn(TALLOC_CTX *ctx, connection_struct *conn, const char *str);
277
278 /* The following definitions come from lib/sysacls.c  */
279
280 int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p);
281 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p);
282 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
283 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
284 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d);
285 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
286 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
287 char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p);
288 SMB_ACL_T sys_acl_init(int count);
289 int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p);
290 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type);
291 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p);
292 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d);
293 int sys_acl_free_text(char *text);
294 int sys_acl_free_acl(SMB_ACL_T acl_d) ;
295 int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype);
296 int sys_acl_valid(SMB_ACL_T acl_d);
297 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle, 
298                            const char *path_p, SMB_ACL_TYPE_T type);
299 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
300 int sys_acl_set_file(vfs_handle_struct *handle,
301                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
302 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
303                    SMB_ACL_T acl_d);
304 int sys_acl_delete_def_file(vfs_handle_struct *handle,
305                             const char *path);
306 int no_acl_syscall_error(int err);
307
308 /* The following definitions come from lib/sysquotas.c  */
309
310 int sys_get_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
311 int sys_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
312
313 /* The following definitions come from lib/sysquotas_*.c  */
314
315 int sys_get_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
316 int sys_set_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
317
318 int sys_get_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
319 int sys_set_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
320
321 int sys_get_nfs_quota(const char *path, const char *bdev,
322                       enum SMB_QUOTA_TYPE qtype,
323                       unid_t id, SMB_DISK_QUOTA *dp);
324 int sys_set_nfs_quota(const char *path, const char *bdev,
325                       enum SMB_QUOTA_TYPE qtype,
326                       unid_t id, SMB_DISK_QUOTA *dp);
327
328 /* The following definitions come from lib/system.c  */
329
330 int sys_usleep(long usecs);
331 ssize_t sys_read(int fd, void *buf, size_t count);
332 ssize_t sys_write(int fd, const void *buf, size_t count);
333 ssize_t sys_writev(int fd, const struct iovec *iov, int iovcnt);
334 ssize_t sys_pread(int fd, void *buf, size_t count, SMB_OFF_T off);
335 ssize_t sys_pwrite(int fd, const void *buf, size_t count, SMB_OFF_T off);
336 ssize_t sys_send(int s, const void *msg, size_t len, int flags);
337 ssize_t sys_sendto(int s,  const void *msg, size_t len, int flags, const struct sockaddr *to, socklen_t tolen);
338 ssize_t sys_recv(int fd, void *buf, size_t count, int flags);
339 ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen);
340 int sys_fcntl_ptr(int fd, int cmd, void *arg);
341 int sys_fcntl_long(int fd, int cmd, long arg);
342 void update_stat_ex_mtime(struct stat_ex *dst, struct timespec write_ts);
343 void update_stat_ex_create_time(struct stat_ex *dst, struct timespec create_time);
344 int sys_stat(const char *fname, SMB_STRUCT_STAT *sbuf,
345              bool fake_dir_create_times);
346 int sys_fstat(int fd, SMB_STRUCT_STAT *sbuf,
347               bool fake_dir_create_times);
348 int sys_lstat(const char *fname,SMB_STRUCT_STAT *sbuf,
349               bool fake_dir_create_times);
350 int sys_ftruncate(int fd, SMB_OFF_T offset);
351 int sys_posix_fallocate(int fd, SMB_OFF_T offset, SMB_OFF_T len);
352 int sys_fallocate(int fd, enum vfs_fallocate_mode mode, SMB_OFF_T offset, SMB_OFF_T len);
353 SMB_OFF_T sys_lseek(int fd, SMB_OFF_T offset, int whence);
354 int sys_fseek(FILE *fp, SMB_OFF_T offset, int whence);
355 SMB_OFF_T sys_ftell(FILE *fp);
356 int sys_creat(const char *path, mode_t mode);
357 int sys_open(const char *path, int oflag, mode_t mode);
358 FILE *sys_fopen(const char *path, const char *type);
359 void kernel_flock(int fd, uint32 share_mode, uint32 access_mask);
360 SMB_STRUCT_DIR *sys_opendir(const char *name);
361 SMB_STRUCT_DIR *sys_fdopendir(int fd);
362 SMB_STRUCT_DIRENT *sys_readdir(SMB_STRUCT_DIR *dirp);
363 void sys_seekdir(SMB_STRUCT_DIR *dirp, long offset);
364 long sys_telldir(SMB_STRUCT_DIR *dirp);
365 void sys_rewinddir(SMB_STRUCT_DIR *dirp);
366 int sys_closedir(SMB_STRUCT_DIR *dirp);
367 int sys_mknod(const char *path, mode_t mode, SMB_DEV_T dev);
368 int sys_waitpid(pid_t pid,int *status,int options);
369 char *sys_getwd(void);
370 void set_effective_capability(enum smbd_capability capability);
371 void drop_effective_capability(enum smbd_capability capability);
372 long sys_random(void);
373 void sys_srandom(unsigned int seed);
374 int groups_max(void);
375 int sys_getgroups(int setlen, gid_t *gidset);
376 int sys_setgroups(gid_t UNUSED(primary_gid), int setlen, gid_t *gidset);
377 int sys_popen(const char *command);
378 int sys_pclose(int fd);
379 ssize_t sys_getxattr (const char *path, const char *name, void *value, size_t size);
380 ssize_t sys_lgetxattr (const char *path, const char *name, void *value, size_t size);
381 ssize_t sys_fgetxattr (int filedes, const char *name, void *value, size_t size);
382 ssize_t sys_listxattr (const char *path, char *list, size_t size);
383 ssize_t sys_llistxattr (const char *path, char *list, size_t size);
384 ssize_t sys_flistxattr (int filedes, char *list, size_t size);
385 int sys_removexattr (const char *path, const char *name);
386 int sys_lremovexattr (const char *path, const char *name);
387 int sys_fremovexattr (int filedes, const char *name);
388 int sys_setxattr (const char *path, const char *name, const void *value, size_t size, int flags);
389 int sys_lsetxattr (const char *path, const char *name, const void *value, size_t size, int flags);
390 int sys_fsetxattr (int filedes, const char *name, const void *value, size_t size, int flags);
391 uint32 unix_dev_major(SMB_DEV_T dev);
392 uint32 unix_dev_minor(SMB_DEV_T dev);
393 int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
394 int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
395 ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
396 int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
397 int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
398 int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
399 int sys_aio_suspend(const SMB_STRUCT_AIOCB * const cblist[], int n, const struct timespec *timeout);
400 int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
401 int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
402 ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
403 int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
404 int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
405 int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
406 int sys_aio_suspend(const SMB_STRUCT_AIOCB * const cblist[], int n, const struct timespec *timeout);
407
408 #if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T) && defined(HAVE_STAT64)
409 struct stat64;
410 void init_stat_ex_from_stat (struct stat_ex *dst,
411                             const struct stat64 *src,
412                             bool fake_dir_create_times);
413 #else
414 struct stat;
415 void init_stat_ex_from_stat (struct stat_ex *dst,
416                             const struct stat *src,
417                             bool fake_dir_create_times);
418 #endif
419
420 /* The following definitions come from lib/system_smbd.c  */
421
422 bool getgroups_unix_user(TALLOC_CTX *mem_ctx, const char *user,
423                          gid_t primary_gid,
424                          gid_t **ret_groups, uint32_t *p_ngroups);
425
426 /* The following definitions come from lib/tallocmsg.c  */
427
428 void register_msg_pool_usage(struct messaging_context *msg_ctx);
429
430 /* The following definitions come from lib/time.c  */
431
432 void push_dos_date(uint8_t *buf, int offset, time_t unixdate, int zone_offset);
433 void push_dos_date2(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
434 void push_dos_date3(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
435 uint32_t convert_time_t_to_uint32_t(time_t t);
436 time_t convert_uint32_t_to_time_t(uint32_t u);
437 bool nt_time_is_zero(const NTTIME *nt);
438 time_t generalized_to_unix_time(const char *str);
439 int get_server_zone_offset(void);
440 int set_server_zone_offset(time_t t);
441 char *timeval_string(TALLOC_CTX *ctx, const struct timeval *tp, bool hires);
442 char *current_timestring(TALLOC_CTX *ctx, bool hires);
443 void srv_put_dos_date(char *buf,int offset,time_t unixdate);
444 void srv_put_dos_date2(char *buf,int offset, time_t unixdate);
445 void srv_put_dos_date3(char *buf,int offset,time_t unixdate);
446 void round_timespec(enum timestamp_set_resolution res, struct timespec *ts);
447 void put_long_date_timespec(enum timestamp_set_resolution res, char *p, struct timespec ts);
448 void put_long_date(char *p, time_t t);
449 void dos_filetime_timespec(struct timespec *tsp);
450 time_t make_unix_date(const void *date_ptr, int zone_offset);
451 time_t make_unix_date2(const void *date_ptr, int zone_offset);
452 time_t make_unix_date3(const void *date_ptr, int zone_offset);
453 time_t srv_make_unix_date(const void *date_ptr);
454 time_t srv_make_unix_date2(const void *date_ptr);
455 time_t srv_make_unix_date3(const void *date_ptr);
456 struct timespec interpret_long_date(const char *p);
457 void TimeInit(void);
458 void get_process_uptime(struct timeval *ret_time);
459 void get_startup_time(struct timeval *ret_time);
460 time_t nt_time_to_unix_abs(const NTTIME *nt);
461 time_t uint64s_nt_time_to_unix_abs(const uint64_t *src);
462 void unix_to_nt_time_abs(NTTIME *nt, time_t t);
463 const char *time_to_asc(const time_t t);
464 const char *display_time(NTTIME nttime);
465 bool nt_time_is_set(const NTTIME *nt);
466
467 /* The following definitions come from lib/username.c  */
468
469 void flush_pwnam_cache(void);
470 char *get_user_home_dir(TALLOC_CTX *mem_ctx, const char *user);
471 struct passwd *Get_Pwnam_alloc(TALLOC_CTX *mem_ctx, const char *user);
472
473 /* The following definitions come from lib/util_names.c  */
474 const char *get_global_sam_name(void);
475
476 /* The following definitions come from lib/util.c  */
477
478 enum protocol_types get_Protocol(void);
479 void set_Protocol(enum protocol_types  p);
480 bool all_zero(const uint8_t *ptr, size_t size);
481 void gfree_names(void);
482 void gfree_all( void );
483 const char *my_netbios_names(int i);
484 bool set_netbios_aliases(const char **str_array);
485 bool init_names(void);
486 bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf,
487                      bool fake_dir_create_times);
488 bool socket_exist(const char *fname);
489 uint64_t get_file_size_stat(const SMB_STRUCT_STAT *sbuf);
490 SMB_OFF_T get_file_size(char *file_name);
491 void show_msg(const char *buf);
492 void smb_set_enclen(char *buf,int len,uint16 enc_ctx_num);
493 void smb_setlen(char *buf,int len);
494 int set_message_bcc(char *buf,int num_bytes);
495 ssize_t message_push_blob(uint8 **outbuf, DATA_BLOB blob);
496 char *unix_clean_name(TALLOC_CTX *ctx, const char *s);
497 char *clean_name(TALLOC_CTX *ctx, const char *s);
498 ssize_t write_data_at_offset(int fd, const char *buffer, size_t N, SMB_OFF_T pos);
499 int set_blocking(int fd, bool set);
500 NTSTATUS reinit_after_fork(struct messaging_context *msg_ctx,
501                            struct event_context *ev_ctx,
502                            struct server_id id,
503                            bool parent_longlived);
504 void *malloc_(size_t size);
505 void *memalign_array(size_t el_size, size_t align, unsigned int count);
506 void *calloc_array(size_t size, size_t nmemb);
507 void *Realloc(void *p, size_t size, bool free_old_on_error);
508 void add_to_large_array(TALLOC_CTX *mem_ctx, size_t element_size,
509                         void *element, void *_array, uint32 *num_elements,
510                         ssize_t *array_size);
511 char *get_myname(TALLOC_CTX *ctx);
512 char *get_mydnsdomname(TALLOC_CTX *ctx);
513 int interpret_protocol(const char *str,int def);
514 char *automount_lookup(TALLOC_CTX *ctx, const char *user_name);
515 char *automount_lookup(TALLOC_CTX *ctx, const char *user_name);
516 bool process_exists(const struct server_id pid);
517 const char *uidtoname(uid_t uid);
518 char *gidtoname(gid_t gid);
519 uid_t nametouid(const char *name);
520 gid_t nametogid(const char *name);
521 void smb_panic_s3(const char *why);
522 void log_stack_trace(void);
523 const char *readdirname(SMB_STRUCT_DIR *p);
524 bool is_in_path(const char *name, name_compare_entry *namelist, bool case_sensitive);
525 void set_namearray(name_compare_entry **ppname_array, const char *namelist);
526 void free_namearray(name_compare_entry *name_array);
527 bool fcntl_lock(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
528 bool fcntl_getlock(int fd, SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid);
529 bool is_myname(const char *s);
530 bool is_myworkgroup(const char *s);
531 void ra_lanman_string( const char *native_lanman );
532 const char *get_remote_arch_str(void);
533 void set_remote_arch(enum remote_arch_types type);
534 enum remote_arch_types get_remote_arch(void);
535 const char *tab_depth(int level, int depth);
536 int str_checksum(const char *s);
537 void zero_free(void *p, size_t size);
538 int set_maxfiles(int requested_max);
539 int smb_mkstemp(char *name_template);
540 void *smb_xmalloc_array(size_t size, unsigned int count);
541 char *myhostname(void);
542 char *myhostname_upper(void);
543 char *lock_path(const char *name);
544 char *pid_path(const char *name);
545 char *state_path(const char *name);
546 char *cache_path(const char *name);
547 bool parent_dirname(TALLOC_CTX *mem_ctx, const char *dir, char **parent,
548                     const char **name);
549 bool ms_has_wild(const char *s);
550 bool ms_has_wild_w(const smb_ucs2_t *s);
551 bool mask_match(const char *string, const char *pattern, bool is_case_sensitive);
552 bool mask_match_search(const char *string, const char *pattern, bool is_case_sensitive);
553 bool mask_match_list(const char *string, char **list, int listLen, bool is_case_sensitive);
554 bool unix_wild_match(const char *pattern, const char *string);
555 bool name_to_fqdn(fstring fqdn, const char *name);
556 void *talloc_append_blob(TALLOC_CTX *mem_ctx, void *buf, DATA_BLOB blob);
557 uint32 map_share_mode_to_deny_mode(uint32 share_access, uint32 private_options);
558 pid_t procid_to_pid(const struct server_id *proc);
559 void set_my_vnn(uint32 vnn);
560 uint32 get_my_vnn(void);
561 void set_my_unique_id(uint64_t unique_id);
562 struct server_id pid_to_procid(pid_t pid);
563 struct server_id procid_self(void);
564 bool procid_equal(const struct server_id *p1, const struct server_id *p2);
565 bool cluster_id_equal(const struct server_id *id1,
566                       const struct server_id *id2);
567 bool procid_is_me(const struct server_id *pid);
568 struct server_id interpret_pid(const char *pid_string);
569 char *procid_str_static(const struct server_id *pid);
570 bool procid_valid(const struct server_id *pid);
571 bool procid_is_local(const struct server_id *pid);
572 bool trans_oob(uint32_t bufsize, uint32_t offset, uint32_t length);
573 bool is_offset_safe(const char *buf_base, size_t buf_len, char *ptr, size_t off);
574 char *get_safe_ptr(const char *buf_base, size_t buf_len, char *ptr, size_t off);
575 char *get_safe_str_ptr(const char *buf_base, size_t buf_len, char *ptr, size_t off);
576 int get_safe_SVAL(const char *buf_base, size_t buf_len, char *ptr, size_t off, int failval);
577 int get_safe_IVAL(const char *buf_base, size_t buf_len, char *ptr, size_t off, int failval);
578 void split_domain_user(TALLOC_CTX *mem_ctx,
579                        const char *full_name,
580                        char **domain,
581                        char **user);
582 const char *strip_hostname(const char *s);
583 bool tevent_req_poll_ntstatus(struct tevent_req *req,
584                               struct tevent_context *ev,
585                               NTSTATUS *status);
586 bool any_nt_status_not_ok(NTSTATUS err1, NTSTATUS err2, NTSTATUS *result);
587 int timeval_to_msec(struct timeval t);
588 char *valid_share_pathname(TALLOC_CTX *ctx, const char *dos_pathname);
589 bool is_executable(const char *fname);
590 bool map_open_params_to_ntcreate(const char *smb_base_fname,
591                                  int deny_mode, int open_func,
592                                  uint32 *paccess_mask,
593                                  uint32 *pshare_mode,
594                                  uint32 *pcreate_disposition,
595                                  uint32 *pcreate_options,
596                                  uint32_t *pprivate_flags);
597 void init_modules(void);
598
599 /* The following definitions come from lib/util_cmdline.c  */
600
601 struct user_auth_info *user_auth_info_init(TALLOC_CTX *mem_ctx);
602 const char *get_cmdline_auth_info_username(const struct user_auth_info *auth_info);
603 void set_cmdline_auth_info_username(struct user_auth_info *auth_info,
604                                     const char *username);
605 const char *get_cmdline_auth_info_domain(const struct user_auth_info *auth_info);
606 void set_cmdline_auth_info_domain(struct user_auth_info *auth_info,
607                                   const char *domain);
608 void set_cmdline_auth_info_password(struct user_auth_info *auth_info,
609                                     const char *password);
610 const char *get_cmdline_auth_info_password(const struct user_auth_info *auth_info);
611 bool set_cmdline_auth_info_signing_state(struct user_auth_info *auth_info,
612                                          const char *arg);
613 int get_cmdline_auth_info_signing_state(const struct user_auth_info *auth_info);
614 void set_cmdline_auth_info_use_ccache(struct user_auth_info *auth_info,
615                                       bool b);
616 bool get_cmdline_auth_info_use_ccache(const struct user_auth_info *auth_info);
617 void set_cmdline_auth_info_use_kerberos(struct user_auth_info *auth_info,
618                                         bool b);
619 bool get_cmdline_auth_info_use_kerberos(const struct user_auth_info *auth_info);
620 void set_cmdline_auth_info_fallback_after_kerberos(struct user_auth_info *auth_info,
621                                         bool b);
622 bool get_cmdline_auth_info_fallback_after_kerberos(const struct user_auth_info *auth_info);
623 void set_cmdline_auth_info_use_krb5_ticket(struct user_auth_info *auth_info);
624 void set_cmdline_auth_info_smb_encrypt(struct user_auth_info *auth_info);
625 void set_cmdline_auth_info_use_machine_account(struct user_auth_info *auth_info);
626 bool get_cmdline_auth_info_got_pass(const struct user_auth_info *auth_info);
627 bool get_cmdline_auth_info_smb_encrypt(const struct user_auth_info *auth_info);
628 bool get_cmdline_auth_info_use_machine_account(const struct user_auth_info *auth_info);
629 bool set_cmdline_auth_info_machine_account_creds(struct user_auth_info *auth_info);
630 void set_cmdline_auth_info_getpass(struct user_auth_info *auth_info);
631
632 /* The following definitions come from lib/util_builtin.c  */
633
634 bool lookup_builtin_rid(TALLOC_CTX *mem_ctx, uint32 rid, const char **name);
635 bool lookup_builtin_name(const char *name, uint32 *rid);
636 const char *builtin_domain_name(void);
637 bool sid_check_is_builtin(const struct dom_sid *sid);
638 bool sid_check_is_in_builtin(const struct dom_sid *sid);
639
640 /* The following definitions come from lib/util_file.c  */
641
642 char **file_lines_pload(const char *syscmd, int *numlines);
643 void file_lines_free(char **lines);
644
645 /* The following definitions come from lib/util_nscd.c  */
646
647 void smb_nscd_flush_user_cache(void);
648 void smb_nscd_flush_group_cache(void);
649
650 /* The following definitions come from lib/util_nttoken.c  */
651
652 struct security_token *dup_nt_token(TALLOC_CTX *mem_ctx, const struct security_token *ptoken);
653 NTSTATUS merge_nt_token(TALLOC_CTX *mem_ctx,
654                         const struct security_token *token_1,
655                         const struct security_token *token_2,
656                         struct security_token **token_out);
657 bool token_sid_in_ace(const struct security_token *token, const struct security_ace *ace);
658
659 /* The following definitions come from lib/util_sec.c  */
660
661 void sec_init(void);
662 uid_t sec_initial_uid(void);
663 gid_t sec_initial_gid(void);
664 bool non_root_mode(void);
665 void gain_root_privilege(void);
666 void gain_root_group_privilege(void);
667 void set_effective_uid(uid_t uid);
668 void set_effective_gid(gid_t gid);
669 void save_re_uid(void);
670 void restore_re_uid_fromroot(void);
671 void restore_re_uid(void);
672 void save_re_gid(void);
673 void restore_re_gid(void);
674 int set_re_uid(void);
675 void become_user_permanently(uid_t uid, gid_t gid);
676 bool is_setuid_root(void) ;
677
678 /* The following definitions come from lib/util_sid.c  */
679
680 char *sid_to_fstring(fstring sidstr_out, const struct dom_sid *sid);
681 char *sid_string_talloc(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
682 char *sid_string_dbg(const struct dom_sid *sid);
683 char *sid_string_tos(const struct dom_sid *sid);
684 bool sid_linearize(char *outbuf, size_t len, const struct dom_sid *sid);
685 bool non_mappable_sid(struct dom_sid *sid);
686 char *sid_binstring_hex(const struct dom_sid *sid);
687 struct netr_SamInfo3;
688 NTSTATUS sid_array_from_info3(TALLOC_CTX *mem_ctx,
689                               const struct netr_SamInfo3 *info3,
690                               struct dom_sid **user_sids,
691                               uint32_t *num_user_sids,
692                               bool include_user_group_rid,
693                               bool skip_ressource_groups);
694
695 /* The following definitions come from lib/util_sock.c  */
696
697 bool is_broadcast_addr(const struct sockaddr *pss);
698 bool is_loopback_ip_v4(struct in_addr ip);
699 bool is_loopback_addr(const struct sockaddr *pss);
700 bool is_zero_addr(const struct sockaddr_storage *pss);
701 void zero_ip_v4(struct in_addr *ip);
702 void in_addr_to_sockaddr_storage(struct sockaddr_storage *ss,
703                 struct in_addr ip);
704 bool same_net(const struct sockaddr *ip1,
705                 const struct sockaddr *ip2,
706                 const struct sockaddr *mask);
707 bool sockaddr_equal(const struct sockaddr *ip1,
708                 const struct sockaddr *ip2);
709 bool is_address_any(const struct sockaddr *psa);
710 uint16_t get_sockaddr_port(const struct sockaddr_storage *pss);
711 char *print_sockaddr(char *dest,
712                         size_t destlen,
713                         const struct sockaddr_storage *psa);
714 char *print_canonical_sockaddr(TALLOC_CTX *ctx,
715                         const struct sockaddr_storage *pss);
716 const char *client_name(int fd);
717 int get_socket_port(int fd);
718 const char *client_addr(int fd, char *addr, size_t addrlen);
719 const char *client_socket_addr(int fd, char *addr, size_t addr_len);
720 int client_socket_port(int fd);
721 bool is_a_socket(int fd);
722 void set_socket_options(int fd, const char *options);
723 ssize_t read_udp_v4_socket(int fd,
724                         char *buf,
725                         size_t len,
726                         struct sockaddr_storage *psa);
727 NTSTATUS read_fd_with_timeout(int fd, char *buf,
728                                   size_t mincnt, size_t maxcnt,
729                                   unsigned int time_out,
730                                   size_t *size_ret);
731 NTSTATUS read_data(int fd, char *buffer, size_t N);
732 ssize_t write_data(int fd, const char *buffer, size_t N);
733 ssize_t write_data_iov(int fd, const struct iovec *orig_iov, int iovcnt);
734 bool send_keepalive(int client);
735 NTSTATUS read_smb_length_return_keepalive(int fd, char *inbuf,
736                                           unsigned int timeout,
737                                           size_t *len);
738 NTSTATUS receive_smb_raw(int fd,
739                         char *buffer,
740                         size_t buflen,
741                         unsigned int timeout,
742                         size_t maxlen,
743                         size_t *p_len);
744 int open_socket_in(int type,
745                 uint16_t port,
746                 int dlevel,
747                 const struct sockaddr_storage *psock,
748                 bool rebind);
749 NTSTATUS open_socket_out(const struct sockaddr_storage *pss, uint16_t port,
750                          int timeout, int *pfd);
751 struct tevent_req *open_socket_out_send(TALLOC_CTX *mem_ctx,
752                                         struct event_context *ev,
753                                         const struct sockaddr_storage *pss,
754                                         uint16_t port,
755                                         int timeout);
756 NTSTATUS open_socket_out_recv(struct tevent_req *req, int *pfd);
757 struct tevent_req *open_socket_out_defer_send(TALLOC_CTX *mem_ctx,
758                                               struct event_context *ev,
759                                               struct timeval wait_time,
760                                               const struct sockaddr_storage *pss,
761                                               uint16_t port,
762                                               int timeout);
763 NTSTATUS open_socket_out_defer_recv(struct tevent_req *req, int *pfd);
764 int open_udp_socket(const char *host, int port);
765 const char *get_peer_name(int fd, bool force_lookup);
766 const char *get_peer_addr(int fd, char *addr, size_t addr_len);
767
768 struct tsocket_address;
769
770 int get_remote_hostname(const struct tsocket_address *remote_address,
771                         char **name,
772                         TALLOC_CTX *mem_ctx);
773
774 int create_pipe_sock(const char *socket_dir,
775                      const char *socket_name,
776                      mode_t dir_perms);
777 int create_tcpip_socket(const struct sockaddr_storage *ifss, uint16_t *port);
778 const char *get_mydnsfullname(void);
779 bool is_myname_or_ipaddr(const char *s);
780 struct tevent_req *getaddrinfo_send(TALLOC_CTX *mem_ctx,
781                                     struct tevent_context *ev,
782                                     struct fncall_context *ctx,
783                                     const char *node,
784                                     const char *service,
785                                     const struct addrinfo *hints);
786 int getaddrinfo_recv(struct tevent_req *req, struct addrinfo **res);
787 int poll_one_fd(int fd, int events, int timeout, int *revents);
788 int poll_intr_one_fd(int fd, int events, int timeout, int *revents);
789 struct tstream_context;
790 struct tevent_req *tstream_read_packet_send(TALLOC_CTX *mem_ctx,
791                                             struct tevent_context *ev,
792                                             struct tstream_context *stream,
793                                             size_t initial,
794                                             ssize_t (*more)(uint8_t *buf,
795                                                             size_t buflen,
796                                                             void *private_data),
797                                             void *private_data);
798 ssize_t tstream_read_packet_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
799                                  uint8_t **pbuf, int *perrno);
800
801 /* The following definitions come from lib/util_str.c  */
802
803 bool next_token(const char **ptr, char *buff, const char *sep, size_t bufsize);
804 bool strnequal(const char *s1,const char *s2,size_t n);
805 bool strcsequal(const char *s1,const char *s2);
806 void strnorm(char *s, int case_default);
807 char *push_skip_string(char *buf);
808 char *skip_string(const char *base, size_t len, char *buf);
809 size_t str_charnum(const char *s);
810 bool trim_char(char *s,char cfront,char cback);
811 bool strhasupper(const char *s);
812 bool strhaslower(const char *s);
813 char *StrnCpy(char *dest,const char *src,size_t n);
814 bool in_list(const char *s, const char *list, bool casesensitive);
815 void string_free(char **s);
816 bool string_set(char **dest,const char *src);
817 void fstring_sub(char *s,const char *pattern,const char *insert);
818 char *realloc_string_sub2(char *string,
819                         const char *pattern,
820                         const char *insert,
821                         bool remove_unsafe_characters,
822                         bool allow_trailing_dollar);
823 char *realloc_string_sub(char *string,
824                         const char *pattern,
825                         const char *insert);
826 char *talloc_string_sub2(TALLOC_CTX *mem_ctx, const char *src,
827                         const char *pattern,
828                         const char *insert,
829                         bool remove_unsafe_characters,
830                         bool replace_once,
831                         bool allow_trailing_dollar);
832 char *talloc_string_sub(TALLOC_CTX *mem_ctx,
833                         const char *src,
834                         const char *pattern,
835                         const char *insert);
836 void all_string_sub(char *s,const char *pattern,const char *insert, size_t len);
837 char *talloc_all_string_sub(TALLOC_CTX *ctx,
838                                 const char *src,
839                                 const char *pattern,
840                                 const char *insert);
841 char *octal_string(int i);
842 char *string_truncate(char *s, unsigned int length);
843 char *strchr_m(const char *src, char c);
844 char *strrchr_m(const char *s, char c);
845 char *strnrchr_m(const char *s, char c, unsigned int n);
846 char *strstr_m(const char *src, const char *findstr);
847 void strlower_m(char *s);
848 void strupper_m(char *s);
849 size_t strlen_m(const char *s);
850 size_t strlen_m_term(const char *s);
851 size_t strlen_m_term_null(const char *s);
852 int fstr_sprintf(fstring s, const char *fmt, ...);
853 bool str_list_sub_basic( char **list, const char *smb_name,
854                          const char *domain_name );
855 bool str_list_substitute(char **list, const char *pattern, const char *insert);
856
857 char *ipstr_list_make(char **ipstr_list,
858                         const struct ip_service *ip_list,
859                         int ip_count);
860 int ipstr_list_parse(const char *ipstr_list, struct ip_service **ip_list);
861 void ipstr_list_free(char* ipstr_list);
862 uint64_t STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr);
863 uint64_t conv_str_size(const char * str);
864 bool add_string_to_array(TALLOC_CTX *mem_ctx,
865                          const char *str, const char ***strings,
866                          int *num);
867 void sprintf_append(TALLOC_CTX *mem_ctx, char **string, ssize_t *len,
868                     size_t *bufsize, const char *fmt, ...);
869 int asprintf_strupper_m(char **strp, const char *fmt, ...);
870 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...);
871 char *talloc_asprintf_strlower_m(TALLOC_CTX *t, const char *fmt, ...);
872 bool validate_net_name( const char *name,
873                 const char *invalid_chars,
874                 int max_len);
875 char *escape_shell_string(const char *src);
876 char **str_list_make_v3(TALLOC_CTX *mem_ctx, const char *string, const char *sep);
877
878 /* The following definitions come from lib/version.c  */
879
880 const char *samba_version_string(void);
881
882 /* The following definitions come from lib/wins_srv.c  */
883
884 bool wins_srv_is_dead(struct in_addr wins_ip, struct in_addr src_ip);
885 void wins_srv_alive(struct in_addr wins_ip, struct in_addr src_ip);
886 void wins_srv_died(struct in_addr wins_ip, struct in_addr src_ip);
887 unsigned wins_srv_count(void);
888 char **wins_srv_tags(void);
889 void wins_srv_tags_free(char **list);
890 struct in_addr wins_srv_ip_tag(const char *tag, struct in_addr src_ip);
891 bool wins_server_tag_ips(const char *tag, TALLOC_CTX *mem_ctx,
892                          struct in_addr **pservers, int *pnum_servers);
893 unsigned wins_srv_count_tag(const char *tag);
894
895 /* The following definitions come from libsmb/clispnego.c  */
896
897 DATA_BLOB spnego_gen_negTokenInit(TALLOC_CTX *ctx,
898                                   const char *OIDs[],
899                                   DATA_BLOB *psecblob,
900                                   const char *principal);
901
902 #ifndef ASN1_MAX_OIDS
903 #define ASN1_MAX_OIDS 20
904 #endif
905 bool spnego_parse_negTokenInit(TALLOC_CTX *ctx,
906                                DATA_BLOB blob,
907                                char *OIDs[ASN1_MAX_OIDS],
908                                char **principal,
909                                DATA_BLOB *secblob);
910 DATA_BLOB spnego_gen_krb5_wrap(TALLOC_CTX *ctx, const DATA_BLOB ticket, const uint8 tok_id[2]);
911 bool spnego_parse_krb5_wrap(TALLOC_CTX *ctx, DATA_BLOB blob, DATA_BLOB *ticket, uint8 tok_id[2]);
912 int spnego_gen_krb5_negTokenInit(TALLOC_CTX *ctx,
913                             const char *principal, int time_offset,
914                             DATA_BLOB *targ,
915                             DATA_BLOB *session_key_krb5, uint32 extra_ap_opts,
916                             time_t *expire_time);
917 bool spnego_parse_challenge(TALLOC_CTX *ctx, const DATA_BLOB blob,
918                             DATA_BLOB *chal1, DATA_BLOB *chal2);
919 DATA_BLOB spnego_gen_auth(TALLOC_CTX *ctx, DATA_BLOB blob);
920 bool spnego_parse_auth(TALLOC_CTX *ctx, DATA_BLOB blob, DATA_BLOB *auth);
921 DATA_BLOB spnego_gen_auth_response(TALLOC_CTX *ctx, DATA_BLOB *reply, NTSTATUS nt_status,
922                                    const char *mechOID);
923 bool spnego_parse_auth_response(TALLOC_CTX *ctx,
924                                 DATA_BLOB blob, NTSTATUS nt_status,
925                                 const char *mechOID,
926                                 DATA_BLOB *auth);
927
928 bool spnego_parse_auth_and_mic(TALLOC_CTX *ctx, DATA_BLOB blob,
929                                 DATA_BLOB *auth, DATA_BLOB *signature);
930 DATA_BLOB spnego_gen_auth_response_and_mic(TALLOC_CTX *ctx,
931                                            NTSTATUS nt_status,
932                                            const char *mechOID,
933                                            DATA_BLOB *reply,
934                                            DATA_BLOB *mechlistMIC);
935 bool spnego_mech_list_blob(TALLOC_CTX *mem_ctx,
936                            char **oid_list, DATA_BLOB *data);
937
938 /* The following definitions come from libsmb/conncache.c  */
939
940 NTSTATUS check_negative_conn_cache( const char *domain, const char *server);
941 void add_failed_connection_entry(const char *domain, const char *server, NTSTATUS result) ;
942 void flush_negative_conn_cache_for_domain(const char *domain);
943
944 /* The following definitions come from libsmb/dsgetdcname.c  */
945
946 struct netr_DsRGetDCNameInfo;
947
948 void debug_dsdcinfo_flags(int lvl, uint32_t flags);
949 NTSTATUS dsgetdcname(TALLOC_CTX *mem_ctx,
950                      struct messaging_context *msg_ctx,
951                      const char *domain_name,
952                      const struct GUID *domain_guid,
953                      const char *site_name,
954                      uint32_t flags,
955                      struct netr_DsRGetDCNameInfo **info);
956
957 /* The following definitions come from libsmb/errormap.c  */
958
959 NTSTATUS dos_to_ntstatus(uint8 eclass, uint32 ecode);
960 NTSTATUS map_nt_error_from_gss(uint32 gss_maj, uint32 minor);
961
962 /* The following definitions come from libsmb/namecache.c  */
963
964 bool namecache_store(const char *name,
965                         int name_type,
966                         int num_names,
967                         struct ip_service *ip_list);
968 bool namecache_fetch(const char *name,
969                         int name_type,
970                         struct ip_service **ip_list,
971                         int *num_names);
972 bool namecache_delete(const char *name, int name_type);
973 void namecache_flush(void);
974 bool namecache_status_store(const char *keyname, int keyname_type,
975                 int name_type, const struct sockaddr_storage *keyip,
976                 const char *srvname);
977 bool namecache_status_fetch(const char *keyname,
978                                 int keyname_type,
979                                 int name_type,
980                                 const struct sockaddr_storage *keyip,
981                                 char *srvname_out);
982
983 /* The following definitions come from libsmb/namequery.c  */
984
985 bool saf_store( const char *domain, const char *servername );
986 bool saf_join_store( const char *domain, const char *servername );
987 bool saf_delete( const char *domain );
988 char *saf_fetch( const char *domain );
989 struct tevent_req *node_status_query_send(TALLOC_CTX *mem_ctx,
990                                           struct tevent_context *ev,
991                                           struct nmb_name *name,
992                                           const struct sockaddr_storage *addr);
993 NTSTATUS node_status_query_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
994                                 struct node_status **pnode_status,
995                                 int *pnum_names,
996                                 struct node_status_extra *extra);
997 NTSTATUS node_status_query(TALLOC_CTX *mem_ctx, struct nmb_name *name,
998                            const struct sockaddr_storage *addr,
999                            struct node_status **pnode_status,
1000                            int *pnum_names,
1001                            struct node_status_extra *extra);
1002 bool name_status_find(const char *q_name,
1003                         int q_type,
1004                         int type,
1005                         const struct sockaddr_storage *to_ss,
1006                         fstring name);
1007 int ip_service_compare(struct ip_service *ss1, struct ip_service *ss2);
1008 struct tevent_req *name_query_send(TALLOC_CTX *mem_ctx,
1009                                    struct tevent_context *ev,
1010                                    const char *name, int name_type,
1011                                    bool bcast, bool recurse,
1012                                    const struct sockaddr_storage *addr);
1013 NTSTATUS name_query_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1014                          struct sockaddr_storage **addrs, int *num_addrs,
1015                          uint8_t *flags);
1016 NTSTATUS name_query(const char *name, int name_type,
1017                     bool bcast, bool recurse,
1018                     const struct sockaddr_storage *to_ss,
1019                     TALLOC_CTX *mem_ctx,
1020                     struct sockaddr_storage **addrs,
1021                     int *num_addrs, uint8_t *flags);
1022 struct tevent_req *name_resolve_bcast_send(TALLOC_CTX *mem_ctx,
1023                                            struct tevent_context *ev,
1024                                            const char *name,
1025                                            int name_type);
1026 NTSTATUS name_resolve_bcast_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1027                                  struct sockaddr_storage **addrs,
1028                                  int *num_addrs);
1029 NTSTATUS name_resolve_bcast(const char *name,
1030                         int name_type,
1031                         TALLOC_CTX *mem_ctx,
1032                         struct sockaddr_storage **return_iplist,
1033                         int *return_count);
1034 struct tevent_req *resolve_wins_send(TALLOC_CTX *mem_ctx,
1035                                      struct tevent_context *ev,
1036                                      const char *name,
1037                                      int name_type);
1038 NTSTATUS resolve_wins_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1039                            struct sockaddr_storage **addrs,
1040                            int *num_addrs, uint8_t *flags);
1041 NTSTATUS resolve_wins(const char *name,
1042                 int name_type,
1043                 TALLOC_CTX *mem_ctx,
1044                 struct sockaddr_storage **return_iplist,
1045                 int *return_count);
1046 NTSTATUS internal_resolve_name(const char *name,
1047                                 int name_type,
1048                                 const char *sitename,
1049                                 struct ip_service **return_iplist,
1050                                 int *return_count,
1051                                 const char *resolve_order);
1052 bool resolve_name(const char *name,
1053                 struct sockaddr_storage *return_ss,
1054                 int name_type,
1055                 bool prefer_ipv4);
1056 NTSTATUS resolve_name_list(TALLOC_CTX *ctx,
1057                 const char *name,
1058                 int name_type,
1059                 struct sockaddr_storage **return_ss_arr,
1060                 unsigned int *p_num_entries);
1061 bool find_master_ip(const char *group, struct sockaddr_storage *master_ss);
1062 bool get_pdc_ip(const char *domain, struct sockaddr_storage *pss);
1063 NTSTATUS get_sorted_dc_list( const char *domain,
1064                         const char *sitename,
1065                         struct ip_service **ip_list,
1066                         int *count,
1067                         bool ads_only );
1068 NTSTATUS get_kdc_list( const char *realm,
1069                         const char *sitename,
1070                         struct ip_service **ip_list,
1071                         int *count);
1072
1073 /* The following definitions come from libsmb/namequery_dc.c  */
1074
1075 bool get_dc_name(const char *domain,
1076                 const char *realm,
1077                 fstring srv_name,
1078                 struct sockaddr_storage *ss_out);
1079
1080 /* The following definitions come from libsmb/ntlmssp.c  */
1081 struct ntlmssp_state;
1082 NTSTATUS ntlmssp_set_username(struct ntlmssp_state *ntlmssp_state, const char *user) ;
1083 NTSTATUS ntlmssp_set_hashes(struct ntlmssp_state *ntlmssp_state,
1084                             const uint8_t lm_hash[16],
1085                             const uint8_t nt_hash[16]) ;
1086 NTSTATUS ntlmssp_set_password(struct ntlmssp_state *ntlmssp_state, const char *password) ;
1087 NTSTATUS ntlmssp_set_domain(struct ntlmssp_state *ntlmssp_state, const char *domain) ;
1088 void ntlmssp_want_feature_list(struct ntlmssp_state *ntlmssp_state, char *feature_list);
1089 void ntlmssp_want_feature(struct ntlmssp_state *ntlmssp_state, uint32_t feature);
1090 NTSTATUS ntlmssp_update(struct ntlmssp_state *ntlmssp_state,
1091                         const DATA_BLOB in, DATA_BLOB *out) ;
1092 NTSTATUS ntlmssp_server_start(TALLOC_CTX *mem_ctx,
1093                               bool is_standalone,
1094                               const char *netbios_name,
1095                               const char *netbios_domain,
1096                               const char *dns_name,
1097                               const char *dns_domain,
1098                               struct ntlmssp_state **ntlmssp_state);
1099 NTSTATUS ntlmssp_client_start(TALLOC_CTX *mem_ctx,
1100                               const char *netbios_name,
1101                               const char *netbios_domain,
1102                               bool use_ntlmv2,
1103                               struct ntlmssp_state **_ntlmssp_state);
1104
1105 /* The following definitions come from libsmb/passchange.c  */
1106
1107 NTSTATUS remote_password_change(const char *remote_machine, const char *user_name, 
1108                                 const char *old_passwd, const char *new_passwd,
1109                                 char **err_str);
1110
1111 /* The following definitions come from libsmb/samlogon_cache.c  */
1112
1113 bool netsamlogon_cache_init(void);
1114 bool netsamlogon_cache_shutdown(void);
1115 void netsamlogon_clear_cached_user(const struct dom_sid *user_sid);
1116 bool netsamlogon_cache_store(const char *username, struct netr_SamInfo3 *info3);
1117 struct netr_SamInfo3 *netsamlogon_cache_get(TALLOC_CTX *mem_ctx, const struct dom_sid *user_sid);
1118 bool netsamlogon_cache_have(const struct dom_sid *user_sid);
1119
1120 /* The following definitions come from libsmb/smberr.c  */
1121
1122 const char *smb_dos_err_name(uint8 e_class, uint16 num);
1123 const char *get_dos_error_msg(WERROR result);
1124 const char *smb_dos_err_class(uint8 e_class);
1125 WERROR map_werror_from_unix(int error);
1126
1127 /* The following definitions come from libsmb/trustdom_cache.c  */
1128
1129 bool trustdom_cache_enable(void);
1130 bool trustdom_cache_shutdown(void);
1131 bool trustdom_cache_store(char* name, char* alt_name, const struct dom_sid *sid,
1132                           time_t timeout);
1133 bool trustdom_cache_fetch(const char* name, struct dom_sid* sid);
1134 uint32 trustdom_cache_fetch_timestamp( void );
1135 bool trustdom_cache_store_timestamp( uint32 t, time_t timeout );
1136 void trustdom_cache_flush(void);
1137 void update_trustdom_cache( void );
1138
1139 /* The following definitions come from libsmb/trusts_util.c  */
1140
1141 NTSTATUS trust_pw_change_and_store_it(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
1142                                       const char *domain,
1143                                       const char *account_name,
1144                                       unsigned char orig_trust_passwd_hash[16],
1145                                       enum netr_SchannelType sec_channel_type);
1146 NTSTATUS trust_pw_find_change_and_store_it(struct rpc_pipe_client *cli, 
1147                                            TALLOC_CTX *mem_ctx, 
1148                                            const char *domain) ;
1149 bool enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain,
1150                                      char ***domain_names, uint32 *num_domains,
1151                                      struct dom_sid **sids );
1152 NTSTATUS change_trust_account_password( const char *domain, const char *remote_machine);
1153
1154 /* The following definitions come from param/loadparm.c  */
1155
1156 const char *lp_smb_ports(void);
1157 const char *lp_dos_charset(void);
1158 const char *lp_unix_charset(void);
1159 char *lp_logfile(void);
1160 char *lp_configfile(void);
1161 const char *lp_smb_passwd_file(void);
1162 const char *lp_private_dir(void);
1163 char *lp_serverstring(void);
1164 int lp_printcap_cache_time(void);
1165 char *lp_addport_cmd(void);
1166 char *lp_enumports_cmd(void);
1167 char *lp_addprinter_cmd(void);
1168 char *lp_deleteprinter_cmd(void);
1169 char *lp_os2_driver_map(void);
1170 const char *lp_lockdir(void);
1171 const char *lp_statedir(void);
1172 const char *lp_cachedir(void);
1173 const char *lp_piddir(void);
1174 char *lp_mangling_method(void);
1175 int lp_mangle_prefix(void);
1176 const char *lp_utmpdir(void);
1177 const char *lp_wtmpdir(void);
1178 bool lp_utmp(void);
1179 char *lp_rootdir(void);
1180 char *lp_defaultservice(void);
1181 char *lp_msg_command(void);
1182 char *lp_get_quota_command(void);
1183 char *lp_set_quota_command(void);
1184 char *lp_auto_services(void);
1185 char *lp_passwd_program(void);
1186 char *lp_passwd_chat(void);
1187 const char *lp_passwordserver(void);
1188 const char *lp_name_resolve_order(void);
1189 const char *lp_netbios_scope(void);
1190 const char *lp_netbios_name(void);
1191 const char *lp_workgroup(void);
1192 const char *lp_realm(void);
1193 const char *lp_dnsdomain(void);
1194 const char *lp_afs_username_map(void);
1195 int lp_afs_token_lifetime(void);
1196 char *lp_log_nt_token_command(void);
1197 char *lp_username_map(void);
1198 const char *lp_logon_script(void);
1199 const char *lp_logon_path(void);
1200 const char *lp_logon_drive(void);
1201 const char *lp_logon_home(void);
1202 char *lp_remote_announce(void);
1203 char *lp_remote_browse_sync(void);
1204 bool lp_nmbd_bind_explicit_broadcast(void);
1205 const char **lp_wins_server_list(void);
1206 const char **lp_interfaces(void);
1207 const char *lp_socket_address(void);
1208 char *lp_nis_home_map_name(void);
1209 const char **lp_netbios_aliases(void);
1210 const char *lp_passdb_backend(void);
1211 const char **lp_preload_modules(void);
1212 char *lp_panic_action(void);
1213 char *lp_adduser_script(void);
1214 char *lp_renameuser_script(void);
1215 char *lp_deluser_script(void);
1216 const char *lp_guestaccount(void);
1217 char *lp_addgroup_script(void);
1218 char *lp_delgroup_script(void);
1219 char *lp_addusertogroup_script(void);
1220 char *lp_deluserfromgroup_script(void);
1221 char *lp_setprimarygroup_script(void);
1222 char *lp_addmachine_script(void);
1223 char *lp_shutdown_script(void);
1224 char *lp_abort_shutdown_script(void);
1225 char *lp_username_map_script(void);
1226 int lp_username_map_cache_time(void);
1227 char *lp_check_password_script(void);
1228 char *lp_wins_hook(void);
1229 const char *lp_template_homedir(void);
1230 const char *lp_template_shell(void);
1231 const char *lp_winbind_separator(void);
1232 int lp_acl_compatibility(void);
1233 bool lp_winbind_enum_users(void);
1234 bool lp_winbind_enum_groups(void);
1235 bool lp_winbind_use_default_domain(void);
1236 bool lp_winbind_trusted_domains_only(void);
1237 bool lp_winbind_nested_groups(void);
1238 int lp_winbind_expand_groups(void);
1239 bool lp_winbind_refresh_tickets(void);
1240 bool lp_winbind_offline_logon(void);
1241 bool lp_winbind_normalize_names(void);
1242 bool lp_winbind_rpc_only(void);
1243 bool lp_create_krb5_conf(void);
1244 int lp_winbind_max_domain_connections(void);
1245 const char *lp_idmap_backend(void);
1246 int lp_idmap_cache_time(void);
1247 int lp_idmap_negative_cache_time(void);
1248 int lp_keepalive(void);
1249 bool lp_passdb_expand_explicit(void);
1250 char *lp_ldap_suffix(void);
1251 char *lp_ldap_admin_dn(void);
1252 int lp_ldap_ssl(void);
1253 bool lp_ldap_ssl_ads(void);
1254 int lp_ldap_deref(void);
1255 int lp_ldap_follow_referral(void);
1256 int lp_ldap_passwd_sync(void);
1257 bool lp_ldap_delete_dn(void);
1258 int lp_ldap_replication_sleep(void);
1259 int lp_ldap_timeout(void);
1260 int lp_ldap_connection_timeout(void);
1261 int lp_ldap_page_size(void);
1262 int lp_ldap_debug_level(void);
1263 int lp_ldap_debug_threshold(void);
1264 char *lp_add_share_cmd(void);
1265 char *lp_change_share_cmd(void);
1266 char *lp_delete_share_cmd(void);
1267 char *lp_usershare_path(void);
1268 const char **lp_usershare_prefix_allow_list(void);
1269 const char **lp_usershare_prefix_deny_list(void);
1270 const char **lp_eventlog_list(void);
1271 bool lp_registry_shares(void);
1272 bool lp_usershare_allow_guests(void);
1273 bool lp_usershare_owner_only(void);
1274 bool lp_disable_netbios(void);
1275 bool lp_reset_on_zero_vc(void);
1276 bool lp_log_writeable_files_on_exit(void);
1277 bool lp_ms_add_printer_wizard(void);
1278 bool lp_dns_proxy(void);
1279 bool lp_we_are_a_wins_server(void);
1280 bool lp_wins_proxy(void);
1281 bool lp_local_master(void);
1282 bool lp_domain_logons(void);
1283 const char **lp_init_logon_delayed_hosts(void);
1284 int lp_init_logon_delay(void);
1285 bool lp_load_printers(void);
1286 bool lp_readraw(void);
1287 bool _lp_readraw(void);
1288 bool lp_large_readwrite(void);
1289 bool lp_writeraw(void);
1290 bool _lp_writeraw(void);
1291 bool lp_null_passwords(void);
1292 bool lp_obey_pam_restrictions(void);
1293 bool lp_encrypted_passwords(void);
1294 int lp_client_schannel(void);
1295 int lp_server_schannel(void);
1296 bool lp_syslog_only(void);
1297 bool lp_timestamp_logs(void);
1298 bool lp_debug_prefix_timestamp(void);
1299 bool lp_debug_hires_timestamp(void);
1300 bool lp_debug_pid(void);
1301 bool lp_debug_uid(void);
1302 bool lp_debug_class(void);
1303 bool lp_enable_core_files(void);
1304 bool lp_browse_list(void);
1305 bool lp_nis_home_map(void);
1306 bool lp_bind_interfaces_only(void);
1307 bool lp_pam_password_change(void);
1308 bool lp_unix_password_sync(void);
1309 bool lp_passwd_chat_debug(void);
1310 int lp_passwd_chat_timeout(void);
1311 bool lp_nt_pipe_support(void);
1312 bool lp_nt_status_support(void);
1313 bool lp_stat_cache(void);
1314 int lp_max_stat_cache_size(void);
1315 bool lp_allow_trusted_domains(void);
1316 bool lp_map_untrusted_to_domain(void);
1317 int lp_restrict_anonymous(void);
1318 bool lp_lanman_auth(void);
1319 bool lp_ntlm_auth(void);
1320 bool lp_client_plaintext_auth(void);
1321 bool lp_client_lanman_auth(void);
1322 bool lp_client_ntlmv2_auth(void);
1323 bool lp_host_msdfs(void);
1324 bool lp_kernel_oplocks(void);
1325 bool lp_enhanced_browsing(void);
1326 bool lp_use_mmap(void);
1327 bool lp_unix_extensions(void);
1328 bool lp_use_spnego(void);
1329 bool lp_client_use_spnego(void);
1330 bool lp_client_use_spnego_principal(void);
1331 bool lp_send_spnego_principal(void);
1332 bool lp_hostname_lookups(void);
1333 bool lp_change_notify(const struct share_params *p );
1334 bool lp_kernel_change_notify(const struct share_params *p );
1335 const char * lp_dedicated_keytab_file(void);
1336 int lp_kerberos_method(void);
1337 bool lp_defer_sharing_violations(void);
1338 bool lp_enable_privileges(void);
1339 bool lp_enable_asu_support(void);
1340 int lp_os_level(void);
1341 int lp_max_ttl(void);
1342 int lp_max_wins_ttl(void);
1343 int lp_min_wins_ttl(void);
1344 int lp_max_log_size(void);
1345 int lp_max_open_files(void);
1346 int lp_open_files_db_hash_size(void);
1347 int lp_maxxmit(void);
1348 int lp_maxmux(void);
1349 int lp_passwordlevel(void);
1350 int lp_usernamelevel(void);
1351 int lp_deadtime(void);
1352 bool lp_getwd_cache(void);
1353 int lp_maxprotocol(void);
1354 int lp_minprotocol(void);
1355 int lp_security(void);
1356 const char **lp_auth_methods(void);
1357 bool lp_paranoid_server_security(void);
1358 int lp_maxdisksize(void);
1359 int lp_lpqcachetime(void);
1360 int lp_max_smbd_processes(void);
1361 bool _lp_disable_spoolss(void);
1362 int lp_syslog(void);
1363 int lp_lm_announce(void);
1364 int lp_lm_interval(void);
1365 int lp_machine_password_timeout(void);
1366 int lp_map_to_guest(void);
1367 int lp_oplock_break_wait_time(void);
1368 int lp_lock_spin_time(void);
1369 int lp_usershare_max_shares(void);
1370 const char *lp_socket_options(void);
1371 int lp_config_backend(void);
1372 int lp_smb2_max_read(void);
1373 int lp_smb2_max_write(void);
1374 int lp_smb2_max_trans(void);
1375 int lp_smb2_max_credits(void);
1376 char *lp_preexec(int );
1377 char *lp_postexec(int );
1378 char *lp_rootpreexec(int );
1379 char *lp_rootpostexec(int );
1380 char *lp_servicename(int );
1381 const char *lp_const_servicename(int );
1382 char *lp_pathname(int );
1383 char *lp_dontdescend(int );
1384 char *lp_username(int );
1385 const char **lp_invalid_users(int );
1386 const char **lp_valid_users(int );
1387 const char **lp_admin_users(int );
1388 const char **lp_svcctl_list(void);
1389 char *lp_cups_options(int );
1390 char *lp_cups_server(void);
1391 int lp_cups_encrypt(void);
1392 char *lp_iprint_server(void);
1393 int lp_cups_connection_timeout(void);
1394 const char *lp_ctdbd_socket(void);
1395 const char **lp_cluster_addresses(void);
1396 bool lp_clustering(void);
1397 int lp_ctdb_timeout(void);
1398 int lp_ctdb_locktime_warn_threshold(void);
1399 char *lp_printcommand(int );
1400 char *lp_lpqcommand(int );
1401 char *lp_lprmcommand(int );
1402 char *lp_lppausecommand(int );
1403 char *lp_lpresumecommand(int );
1404 char *lp_queuepausecommand(int );
1405 char *lp_queueresumecommand(int );
1406 const char *lp_printjob_username(int );
1407 const char **lp_hostsallow(int );
1408 const char **lp_hostsdeny(int );
1409 char *lp_magicscript(int );
1410 char *lp_magicoutput(int );
1411 char *lp_comment(int );
1412 char *lp_force_user(int );
1413 char *lp_force_group(int );
1414 const char **lp_readlist(int );
1415 const char **lp_writelist(int );
1416 const char **lp_printer_admin(int );
1417 char *lp_fstype(int );
1418 const char **lp_vfs_objects(int );
1419 char *lp_msdfs_proxy(int );
1420 char *lp_veto_files(int );
1421 char *lp_hide_files(int );
1422 char *lp_veto_oplocks(int );
1423 bool lp_msdfs_root(int );
1424 char *lp_aio_write_behind(int );
1425 char *lp_dfree_command(int );
1426 bool lp_autoloaded(int );
1427 bool lp_preexec_close(int );
1428 bool lp_rootpreexec_close(int );
1429 int lp_casesensitive(int );
1430 bool lp_preservecase(int );
1431 bool lp_shortpreservecase(int );
1432 bool lp_hide_dot_files(int );
1433 bool lp_hide_special_files(int );
1434 bool lp_hideunreadable(int );
1435 bool lp_hideunwriteable_files(int );
1436 bool lp_browseable(int );
1437 bool lp_access_based_share_enum(int );
1438 bool lp_readonly(int );
1439 bool lp_no_set_dir(int );
1440 bool lp_guest_ok(int );
1441 bool lp_guest_only(int );
1442 bool lp_administrative_share(int );
1443 bool lp_print_ok(int );
1444 bool lp_print_notify_backchannel(int );
1445 bool lp_map_hidden(int );
1446 bool lp_map_archive(int );
1447 bool lp_store_dos_attributes(int );
1448 bool lp_dmapi_support(int );
1449 bool lp_locking(const struct share_params *p );
1450 int lp_strict_locking(const struct share_params *p );
1451 bool lp_posix_locking(const struct share_params *p );
1452 bool lp_share_modes(int );
1453 bool lp_oplocks(int );
1454 bool lp_level2_oplocks(int );
1455 bool lp_onlyuser(int );
1456 bool lp_manglednames(const struct share_params *p );
1457 bool lp_allow_insecure_widelinks(void);
1458 bool lp_widelinks(int );
1459 bool lp_symlinks(int );
1460 bool lp_syncalways(int );
1461 bool lp_strict_allocate(int );
1462 bool lp_strict_sync(int );
1463 bool lp_map_system(int );
1464 bool lp_delete_readonly(int );
1465 bool lp_fake_oplocks(int );
1466 bool lp_recursive_veto_delete(int );
1467 bool lp_dos_filemode(int );
1468 bool lp_dos_filetimes(int );
1469 bool lp_dos_filetime_resolution(int );
1470 bool lp_fake_dir_create_times(int);
1471 bool lp_async_smb_echo_handler(void);
1472 bool lp_multicast_dns_register(void);
1473 bool lp_blocking_locks(int );
1474 bool lp_inherit_perms(int );
1475 bool lp_inherit_acls(int );
1476 bool lp_inherit_owner(int );
1477 bool lp_use_client_driver(int );
1478 bool lp_default_devmode(int );
1479 bool lp_force_printername(int );
1480 bool lp_nt_acl_support(int );
1481 bool lp_force_unknown_acl_user(int );
1482 bool lp_ea_support(int );
1483 bool lp__use_sendfile(int );
1484 bool lp_profile_acls(int );
1485 bool lp_map_acl_inherit(int );
1486 bool lp_afs_share(int );
1487 bool lp_acl_check_permissions(int );
1488 bool lp_acl_group_control(int );
1489 bool lp_acl_map_full_control(int );
1490 int lp_create_mask(int );
1491 int lp_force_create_mode(int );
1492 int lp_security_mask(int );
1493 int lp_force_security_mode(int );
1494 int lp_dir_mask(int );
1495 int lp_force_dir_mode(int );
1496 int lp_dir_security_mask(int );
1497 int lp_force_dir_security_mode(int );
1498 int lp_max_connections(int );
1499 int lp_defaultcase(int );
1500 int lp_minprintspace(int );
1501 int lp_printing(int );
1502 int lp_max_reported_jobs(int );
1503 int lp_oplock_contention_limit(int );
1504 int lp_csc_policy(int );
1505 int lp_write_cache_size(int );
1506 int lp_block_size(int );
1507 int lp_dfree_cache_time(int );
1508 int lp_allocation_roundup_size(int );
1509 int lp_aio_read_size(int );
1510 int lp_aio_write_size(int );
1511 int lp_map_readonly(int );
1512 int lp_directory_name_cache_size(int );
1513 int lp_smb_encrypt(int );
1514 char lp_magicchar(const struct share_params *p );
1515 int lp_winbind_cache_time(void);
1516 int lp_winbind_reconnect_delay(void);
1517 int lp_winbind_max_clients(void);
1518 const char **lp_winbind_nss_info(void);
1519 int lp_algorithmic_rid_base(void);
1520 int lp_name_cache_timeout(void);
1521 int lp_client_signing(void);
1522 int lp_server_signing(void);
1523 int lp_client_ldap_sasl_wrapping(void);
1524 char *lp_parm_talloc_string(int snum, const char *type, const char *option, const char *def);
1525 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def);
1526 struct loadparm_service;
1527 const char *lp_parm_const_string_service(struct loadparm_service *service, const char *type, const char *option);
1528 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def);
1529 int lp_parm_int(int snum, const char *type, const char *option, int def);
1530 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def);
1531 bool lp_parm_bool(int snum, const char *type, const char *option, bool def);
1532 struct enum_list;
1533 int lp_parm_enum(int snum, const char *type, const char *option,
1534                  const struct enum_list *_enum, int def);
1535 char *canonicalize_servicename(TALLOC_CTX *ctx, const char *src);
1536 bool lp_add_home(const char *pszHomename, int iDefaultService,
1537                  const char *user, const char *pszHomedir);
1538 int lp_add_service(const char *pszService, int iDefaultService);
1539 bool lp_add_printer(const char *pszPrintername, int iDefaultService);
1540 bool lp_parameter_is_valid(const char *pszParmName);
1541 bool lp_parameter_is_global(const char *pszParmName);
1542 bool lp_parameter_is_canonical(const char *parm_name);
1543 bool lp_canonicalize_parameter(const char *parm_name, const char **canon_parm,
1544                                bool *inverse);
1545 bool lp_canonicalize_parameter_with_value(const char *parm_name,
1546                                           const char *val,
1547                                           const char **canon_parm,
1548                                           const char **canon_val);
1549 void show_parameter_list(void);
1550 bool lp_string_is_valid_boolean(const char *parm_value);
1551 bool lp_invert_boolean(const char *str, const char **inverse_str);
1552 bool lp_canonicalize_boolean(const char *str, const char**canon_str);
1553 bool service_ok(int iService);
1554 bool process_registry_service(const char *service_name);
1555 bool process_registry_shares(void);
1556 bool lp_config_backend_is_registry(void);
1557 bool lp_config_backend_is_file(void);
1558 bool lp_file_list_changed(void);
1559 bool lp_idmap_uid(uid_t *low, uid_t *high);
1560 bool lp_idmap_gid(gid_t *low, gid_t *high);
1561 const char *lp_ldap_machine_suffix(void);
1562 const char *lp_ldap_user_suffix(void);
1563 const char *lp_ldap_group_suffix(void);
1564 const char *lp_ldap_idmap_suffix(void);
1565 struct parm_struct;
1566 /* Return a pointer to a service by name.  */
1567 struct loadparm_service *lp_service(const char *pszServiceName);
1568 struct loadparm_service *lp_servicebynum(int snum);
1569 struct loadparm_service *lp_default_loadparm_service(void);
1570 void *lp_parm_ptr(struct loadparm_service *service, struct parm_struct *parm);
1571 void *lp_local_ptr_by_snum(int snum, struct parm_struct *parm);
1572 bool lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue);
1573 bool lp_set_cmdline(const char *pszParmName, const char *pszParmValue);
1574 bool lp_set_option(const char *option);
1575 void init_locals(void);
1576 bool lp_is_default(int snum, struct parm_struct *parm);
1577 bool dump_a_parameter(int snum, char *parm_name, FILE * f, bool isGlobal);
1578 struct parm_struct *lp_get_parameter(const char *param_name);
1579 struct parm_struct *lp_next_parameter(int snum, int *i, int allparameters);
1580 bool lp_snum_ok(int iService);
1581 void lp_add_one_printer(const char *name, const char *comment,
1582                         const char *location, void *pdata);
1583 bool lp_loaded(void);
1584 void lp_killunused(struct smbd_server_connection *sconn,
1585                    bool (*snumused) (struct smbd_server_connection *, int));
1586 void lp_kill_all_services(void);
1587 void lp_killservice(int iServiceIn);
1588 const char* server_role_str(uint32 role);
1589 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx,
1590                         SMB_STRUCT_STAT *psbuf,
1591                         const char *servicename,
1592                         int snum,
1593                         char **lines,
1594                         int numlines,
1595                         char **pp_sharepath,
1596                         char **pp_comment,
1597                         char **pp_cp_share_name,
1598                         struct security_descriptor **ppsd,
1599                         bool *pallow_guest);
1600 int load_usershare_service(const char *servicename);
1601 int load_usershare_shares(struct smbd_server_connection *sconn);
1602 void gfree_loadparm(void);
1603 bool lp_load(const char *pszFname,
1604              bool global_only,
1605              bool save_defaults,
1606              bool add_ipc,
1607              bool initialize_globals);
1608 bool lp_load_initial_only(const char *pszFname);
1609 bool lp_load_global(const char *file_name);
1610 bool lp_load_client(const char *file_name);
1611 bool lp_load_global_no_reinit(const char *file_name);
1612 bool lp_load_client_no_reinit(const char *file_name);
1613 bool lp_load_with_registry_shares(const char *pszFname,
1614                                   bool global_only,
1615                                   bool save_defaults,
1616                                   bool add_ipc,
1617                                   bool initialize_globals);
1618 int lp_numservices(void);
1619 void lp_dump(FILE *f, bool show_defaults, int maxtoprint);
1620 void lp_dump_one(FILE * f, bool show_defaults, int snum);
1621 int lp_servicenumber(const char *pszServiceName);
1622 bool share_defined(const char *service_name);
1623 struct share_params *get_share_params(TALLOC_CTX *mem_ctx,
1624                                       const char *sharename);
1625 const char *volume_label(int snum);
1626 bool lp_domain_master(void);
1627 bool lp_domain_master_true_or_auto(void);
1628 bool lp_preferred_master(void);
1629 void lp_remove_service(int snum);
1630 void lp_copy_service(int snum, const char *new_name);
1631 int lp_default_server_announce(void);
1632 void lp_set_name_resolve_order(const char *new_order);
1633 const char *lp_printername(int snum);
1634 void lp_set_logfile(const char *name);
1635 int lp_maxprintjobs(int snum);
1636 const char *lp_printcapname(void);
1637 bool lp_disable_spoolss( void );
1638 void lp_set_spoolss_state( uint32 state );
1639 uint32 lp_get_spoolss_state( void );
1640 struct smb_signing_state;
1641 bool lp_use_sendfile(int snum, struct smb_signing_state *signing_state);
1642 void set_use_sendfile(int snum, bool val);
1643 void set_store_dos_attributes(int snum, bool val);
1644 void lp_set_mangling_method(const char *new_method);
1645 bool lp_posix_pathnames(void);
1646 void lp_set_posix_pathnames(void);
1647 enum brl_flavour lp_posix_cifsu_locktype(files_struct *fsp);
1648 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val);
1649 int lp_min_receive_file_size(void);
1650 char* lp_perfcount_module(void);
1651 void widelinks_warning(int snum);
1652 const char *lp_ncalrpc_dir(void);
1653
1654 /* The following definitions come from param/loadparm_ctx.c  */
1655
1656 const struct loadparm_s3_context *loadparm_s3_context(void);
1657
1658 /* The following definitions come from param/loadparm_server_role.c  */
1659
1660 int lp_server_role(void);
1661 void set_server_role(void);
1662
1663 /* The following definitions come from param/util.c  */
1664
1665 uint32 get_int_param( const char* param );
1666 char* get_string_param( const char* param );
1667
1668 /* The following definitions come from lib/server_contexts.c  */
1669 struct tevent_context *server_event_context(void);
1670 void server_event_context_free(void);
1671 struct messaging_context *server_messaging_context(void);
1672 void server_messaging_context_free(void);
1673
1674 /* The following definitions come from lib/sessionid_tdb.c  */
1675 struct sessionid;
1676 bool sessionid_init(void);
1677 struct db_record *sessionid_fetch_record(TALLOC_CTX *mem_ctx, const char *key);
1678 int sessionid_traverse(int (*fn)(struct db_record *rec, const char *key,
1679                                  struct sessionid *session,
1680                                  void *private_data),
1681                        void *private_data);
1682 int sessionid_traverse_read(int (*fn)(const char *key,
1683                                       struct sessionid *session,
1684                                       void *private_data),
1685                             void *private_data);
1686
1687 /* The following definitions come from utils/passwd_util.c  */
1688
1689 char *stdin_new_passwd( void);
1690 char *get_pass( const char *prompt, bool stdin_get);
1691
1692 /* The following definitions come from lib/avahi.c */
1693
1694 struct AvahiPoll *tevent_avahi_poll(TALLOC_CTX *mem_ctx,
1695                                     struct tevent_context *ev);
1696
1697 /* The following definitions come from lib/fncall.c */
1698
1699 struct fncall_context *fncall_context_init(TALLOC_CTX *mem_ctx,
1700                                            int max_threads);
1701 struct tevent_req *fncall_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
1702                                struct fncall_context *ctx,
1703                                void (*fn)(void *private_data),
1704                                void *private_data);
1705 int fncall_recv(struct tevent_req *req, int *perr);
1706
1707 /* The following definitions come from libsmb/smbsock_connect.c */
1708
1709 struct tevent_req *smbsock_connect_send(TALLOC_CTX *mem_ctx,
1710                                         struct tevent_context *ev,
1711                                         const struct sockaddr_storage *addr,
1712                                         uint16_t port,
1713                                         const char *called_name,
1714                                         int called_type,
1715                                         const char *calling_name,
1716                                         int calling_type);
1717 NTSTATUS smbsock_connect_recv(struct tevent_req *req, int *sock,
1718                               uint16_t *ret_port);
1719 NTSTATUS smbsock_connect(const struct sockaddr_storage *addr, uint16_t port,
1720                          const char *called_name, int called_type,
1721                          const char *calling_name, int calling_type,
1722                          int *pfd, uint16_t *ret_port, int sec_timeout);
1723
1724 struct tevent_req *smbsock_any_connect_send(TALLOC_CTX *mem_ctx,
1725                                             struct tevent_context *ev,
1726                                             const struct sockaddr_storage *addrs,
1727                                             const char **called_names,
1728                                             int *called_types,
1729                                             const char **calling_names,
1730                                             int *calling_types,
1731                                             size_t num_addrs, uint16_t port);
1732 NTSTATUS smbsock_any_connect_recv(struct tevent_req *req, int *pfd,
1733                                   size_t *chosen_index, uint16_t *chosen_port);
1734 NTSTATUS smbsock_any_connect(const struct sockaddr_storage *addrs,
1735                              const char **called_names,
1736                              int *called_types,
1737                              const char **calling_names,
1738                              int *calling_types,
1739                              size_t num_addrs,
1740                              uint16_t port,
1741                              int sec_timeout,
1742                              int *pfd, size_t *chosen_index,
1743                              uint16_t *chosen_port);
1744
1745 /* The following definitions come from lib/util_wellknown.c  */
1746
1747 bool sid_check_is_wellknown_domain(const struct dom_sid *sid, const char **name);
1748 bool sid_check_is_in_wellknown_domain(const struct dom_sid *sid);
1749 bool lookup_wellknown_sid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
1750                           const char **domain, const char **name);
1751 bool lookup_wellknown_name(TALLOC_CTX *mem_ctx, const char *name,
1752                            struct dom_sid *sid, const char **domain);
1753
1754 /* The following definitions come from lib/util_unixsids.c  */
1755
1756 bool sid_check_is_unix_users(const struct dom_sid *sid);
1757 bool sid_check_is_in_unix_users(const struct dom_sid *sid);
1758 void uid_to_unix_users_sid(uid_t uid, struct dom_sid *sid);
1759 void gid_to_unix_groups_sid(gid_t gid, struct dom_sid *sid);
1760 const char *unix_users_domain_name(void);
1761 bool lookup_unix_user_name(const char *name, struct dom_sid *sid);
1762 bool sid_check_is_unix_groups(const struct dom_sid *sid);
1763 bool sid_check_is_in_unix_groups(const struct dom_sid *sid);
1764 const char *unix_groups_domain_name(void);
1765 bool lookup_unix_group_name(const char *name, struct dom_sid *sid);
1766
1767 /* The following definitions come from lib/filename_util.c */
1768
1769 NTSTATUS get_full_smb_filename(TALLOC_CTX *ctx, const struct smb_filename *smb_fname,
1770                               char **full_name);
1771 NTSTATUS create_synthetic_smb_fname(TALLOC_CTX *ctx, const char *base_name,
1772                                     const char *stream_name,
1773                                     const SMB_STRUCT_STAT *psbuf,
1774                                     struct smb_filename **smb_fname_out);
1775 NTSTATUS create_synthetic_smb_fname_split(TALLOC_CTX *ctx,
1776                                           const char *fname,
1777                                           const SMB_STRUCT_STAT *psbuf,
1778                                           struct smb_filename **smb_fname_out);
1779 const char *smb_fname_str_dbg(const struct smb_filename *smb_fname);
1780 const char *fsp_str_dbg(const struct files_struct *fsp);
1781 NTSTATUS copy_smb_filename(TALLOC_CTX *ctx,
1782                            const struct smb_filename *smb_fname_in,
1783                            struct smb_filename **smb_fname_out);
1784 bool is_ntfs_stream_smb_fname(const struct smb_filename *smb_fname);
1785 bool is_ntfs_default_stream_smb_fname(const struct smb_filename *smb_fname);
1786
1787 /* The following definitions come from lib/dummyroot.c */
1788
1789 void become_root(void);
1790 void unbecome_root(void);
1791
1792 /* The following definitions come from lib/dummysmbd.c */
1793
1794 int find_service(TALLOC_CTX *ctx, const char *service_in, char **p_service_out);
1795 bool conn_snum_used(struct smbd_server_connection *sconn, int snum);
1796 void cancel_pending_lock_requests_by_fid(files_struct *fsp,
1797                         struct byte_range_lock *br_lck,
1798                         enum file_close_type close_type);
1799 void send_stat_cache_delete_message(struct messaging_context *msg_ctx,
1800                                     const char *name);
1801 NTSTATUS can_delete_directory(struct connection_struct *conn,
1802                                 const char *dirname);
1803 bool change_to_root_user(void);
1804 void contend_level2_oplocks_begin(files_struct *fsp,
1805                                   enum level2_contention_type type);
1806 void contend_level2_oplocks_end(files_struct *fsp,
1807                                 enum level2_contention_type type);
1808
1809 #endif /*  _PROTO_H_  */