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