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