s3-proto: remove duplicate prototypes.
[Samba.git] / source3 / include / proto.h
blob860749dc0f1abc5430e1a69299f514815799deba
1 /*
2 * Unix SMB/CIFS implementation.
3 * collected prototypes header
5 * frozen from "make proto" in May 2008
7 * Copyright (C) Michael Adam 2008
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.
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.
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/>.
23 #ifndef _PROTO_H_
24 #define _PROTO_H_
26 /* The following definitions come from lib/access.c */
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);
36 /* The following definitions come from lib/adt_tree.c */
39 /* The following definitions come from lib/afs.c */
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);
46 /* The following definitions come from lib/afs_settoken.c */
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);
56 /* The following definitions come from lib/audit.c */
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);
64 /* The following definitions come from lib/bitmap.c */
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);
73 /* The following definitions come from lib/charcnv.c */
75 char lp_failed_convert_char(void);
76 void lazy_initialize_conv(void);
77 void gfree_charcnv(void);
78 void init_iconv(void);
79 size_t convert_string(charset_t from, charset_t to,
80 void const *src, size_t srclen,
81 void *dest, size_t destlen, bool allow_bad_conv);
82 size_t unix_strupper(const char *src, size_t srclen, char *dest, size_t destlen);
83 char *talloc_strdup_upper(TALLOC_CTX *ctx, const char *s);
84 char *strupper_talloc(TALLOC_CTX *ctx, const char *s);
85 size_t unix_strlower(const char *src, size_t srclen, char *dest, size_t destlen);
86 char *talloc_strdup_lower(TALLOC_CTX *ctx, const char *s);
87 char *strlower_talloc(TALLOC_CTX *ctx, const char *s);
88 size_t ucs2_align(const void *base_ptr, const void *p, int flags);
89 size_t push_ascii(void *dest, const char *src, size_t dest_len, int flags);
90 size_t push_ascii_fstring(void *dest, const char *src);
91 size_t push_ascii_nstring(void *dest, const char *src);
92 size_t pull_ascii(char *dest, const void *src, size_t dest_len, size_t src_len, int flags);
93 size_t pull_ascii_fstring(char *dest, const void *src);
94 size_t pull_ascii_nstring(char *dest, size_t dest_len, const void *src);
95 size_t push_ucs2(const void *base_ptr, void *dest, const char *src, size_t dest_len, int flags);
96 size_t push_utf8_fstring(void *dest, const char *src);
97 bool push_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
98 size_t *converted_size);
99 size_t pull_ucs2(const void *base_ptr, char *dest, const void *src, size_t dest_len, size_t src_len, int flags);
100 size_t pull_ucs2_base_talloc(TALLOC_CTX *ctx,
101 const void *base_ptr,
102 char **ppdest,
103 const void *src,
104 size_t src_len,
105 int flags);
106 size_t pull_ucs2_fstring(char *dest, const void *src);
107 bool push_ucs2_talloc(TALLOC_CTX *ctx, smb_ucs2_t **dest, const char *src,
108 size_t *converted_size);
109 bool pull_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
110 size_t *converted_size);
111 bool pull_ucs2_talloc(TALLOC_CTX *ctx, char **dest, const smb_ucs2_t *src,
112 size_t *converted_size);
113 bool pull_ascii_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
114 size_t *converted_size);
115 size_t push_string_check_fn(const char *function, unsigned int line,
116 void *dest, const char *src,
117 size_t dest_len, int flags);
118 size_t push_string_base(const char *function, unsigned int line,
119 const char *base, uint16 flags2,
120 void *dest, const char *src,
121 size_t dest_len, int flags);
122 size_t pull_string_fn(const char *function,
123 unsigned int line,
124 const void *base_ptr,
125 uint16 smb_flags2,
126 char *dest,
127 const void *src,
128 size_t dest_len,
129 size_t src_len,
130 int flags);
131 size_t pull_string_talloc_fn(const char *function,
132 unsigned int line,
133 TALLOC_CTX *ctx,
134 const void *base_ptr,
135 uint16 smb_flags2,
136 char **ppdest,
137 const void *src,
138 size_t src_len,
139 int flags);
140 size_t align_string(const void *base_ptr, const char *p, int flags);
142 /* The following definitions come from lib/clobber.c */
144 void clobber_region(const char *fn, unsigned int line, char *dest, size_t len);
146 /* The following definitions come from lib/conn_tdb.c */
148 struct db_record *connections_fetch_entry(TALLOC_CTX *mem_ctx,
149 connection_struct *conn,
150 const char *name);
151 int connections_traverse(int (*fn)(struct db_record *rec,
152 void *private_data),
153 void *private_data);
154 int connections_forall(int (*fn)(struct db_record *rec,
155 const struct connections_key *key,
156 const struct connections_data *data,
157 void *private_data),
158 void *private_data);
159 int connections_forall_read(int (*fn)(const struct connections_key *key,
160 const struct connections_data *data,
161 void *private_data),
162 void *private_data);
163 bool connections_init(bool rw);
165 /* The following definitions come from lib/dmallocmsg.c */
167 void register_dmalloc_msgs(struct messaging_context *msg_ctx);
169 /* The following definitions come from lib/dprintf.c */
171 void display_set_stderr(void);
173 /* The following definitions come from lib/errmap_unix.c */
175 NTSTATUS map_nt_error_from_unix(int unix_error);
176 int map_errno_from_nt_status(NTSTATUS status);
178 /* The following definitions come from lib/fault.c */
179 void fault_setup(void (*fn)(void *));
180 void dump_core_setup(const char *progname);
182 /* The following definitions come from lib/file_id.c */
184 struct file_id vfs_file_id_from_sbuf(connection_struct *conn, const SMB_STRUCT_STAT *sbuf);
185 bool file_id_equal(const struct file_id *id1, const struct file_id *id2);
186 const char *file_id_string_tos(const struct file_id *id);
187 void push_file_id_16(char *buf, const struct file_id *id);
188 void push_file_id_24(char *buf, const struct file_id *id);
189 void pull_file_id_24(char *buf, struct file_id *id);
191 /* The following definitions come from lib/gencache.c */
193 bool gencache_set(const char *keystr, const char *value, time_t timeout);
194 bool gencache_del(const char *keystr);
195 bool gencache_get(const char *keystr, char **valstr, time_t *timeout);
196 bool gencache_parse(const char *keystr,
197 void (*parser)(time_t timeout, DATA_BLOB blob,
198 void *private_data),
199 void *private_data);
200 bool gencache_get_data_blob(const char *keystr, DATA_BLOB *blob,
201 time_t *timeout, bool *was_expired);
202 bool gencache_stabilize(void);
203 bool gencache_set_data_blob(const char *keystr, const DATA_BLOB *blob, time_t timeout);
204 void gencache_iterate_blobs(void (*fn)(const char *key, DATA_BLOB value,
205 time_t timeout, void *private_data),
206 void *private_data, const char *pattern);
207 void gencache_iterate(void (*fn)(const char* key, const char *value, time_t timeout, void* dptr),
208 void* data, const char* keystr_pattern);
210 /* The following definitions come from lib/interface.c */
212 bool ismyaddr(const struct sockaddr *ip);
213 bool ismyip_v4(struct in_addr ip);
214 bool is_local_net(const struct sockaddr *from);
215 void setup_linklocal_scope_id(struct sockaddr *pss);
216 bool is_local_net_v4(struct in_addr from);
217 int iface_count(void);
218 int iface_count_v4_nl(void);
219 const struct in_addr *first_ipv4_iface(void);
220 struct interface *get_interface(int n);
221 const struct sockaddr_storage *iface_n_sockaddr_storage(int n);
222 const struct in_addr *iface_n_ip_v4(int n);
223 const struct in_addr *iface_n_bcast_v4(int n);
224 const struct sockaddr_storage *iface_n_bcast(int n);
225 const struct sockaddr_storage *iface_ip(const struct sockaddr *ip);
226 bool iface_local(const struct sockaddr *ip);
227 void load_interfaces(void);
228 void gfree_interfaces(void);
229 bool interfaces_changed(void);
231 /* The following definitions come from lib/ldap_debug_handler.c */
233 void init_ldap_debugging(void);
235 /* The following definitions come from lib/ldap_escape.c */
237 char *escape_ldap_string(TALLOC_CTX *mem_ctx, const char *s);
238 char *escape_rdn_val_string_alloc(const char *s);
240 /* The following definitions come from lib/module.c */
242 NTSTATUS smb_load_module(const char *module_name);
243 int smb_load_modules(const char **modules);
244 NTSTATUS smb_probe_module(const char *subsystem, const char *module);
245 NTSTATUS smb_load_module(const char *module_name);
246 int smb_load_modules(const char **modules);
247 NTSTATUS smb_probe_module(const char *subsystem, const char *module);
248 void init_modules(void);
250 /* The following definitions come from lib/ms_fnmatch.c */
252 int ms_fnmatch(const char *pattern, const char *string, bool translate_pattern,
253 bool is_case_sensitive);
254 int gen_fnmatch(const char *pattern, const char *string);
256 /* The following definitions come from lib/pidfile.c */
258 pid_t pidfile_pid(const char *name);
259 void pidfile_create(const char *program_name);
260 void pidfile_unlink(void);
262 /* The following definitions come from lib/recvfile.c */
264 ssize_t sys_recvfile(int fromfd,
265 int tofd,
266 SMB_OFF_T offset,
267 size_t count);
268 ssize_t sys_recvfile(int fromfd,
269 int tofd,
270 SMB_OFF_T offset,
271 size_t count);
272 ssize_t drain_socket(int sockfd, size_t count);
274 /* The following definitions come from lib/secdesc.c */
276 uint32_t get_sec_info(const struct security_descriptor *sd);
277 struct security_descriptor *sec_desc_merge(TALLOC_CTX *ctx, struct security_descriptor *new_sdb, struct security_descriptor *old_sdb);
278 struct sec_desc_buf *sec_desc_merge_buf(TALLOC_CTX *ctx, struct sec_desc_buf *new_sdb, struct sec_desc_buf *old_sdb);
279 struct security_descriptor *make_sec_desc(TALLOC_CTX *ctx,
280 enum security_descriptor_revision revision,
281 uint16 type,
282 const struct dom_sid *owner_sid, const struct dom_sid *grp_sid,
283 struct security_acl *sacl, struct security_acl *dacl, size_t *sd_size);
284 struct security_descriptor *dup_sec_desc(TALLOC_CTX *ctx, const struct security_descriptor *src);
285 NTSTATUS marshall_sec_desc(TALLOC_CTX *mem_ctx,
286 struct security_descriptor *secdesc,
287 uint8 **data, size_t *len);
288 NTSTATUS marshall_sec_desc_buf(TALLOC_CTX *mem_ctx,
289 struct sec_desc_buf *secdesc_buf,
290 uint8_t **data, size_t *len);
291 NTSTATUS unmarshall_sec_desc(TALLOC_CTX *mem_ctx, uint8 *data, size_t len,
292 struct security_descriptor **psecdesc);
293 NTSTATUS unmarshall_sec_desc_buf(TALLOC_CTX *mem_ctx, uint8_t *data, size_t len,
294 struct sec_desc_buf **psecdesc_buf);
295 struct security_descriptor *make_standard_sec_desc(TALLOC_CTX *ctx, const struct dom_sid *owner_sid, const struct dom_sid *grp_sid,
296 struct security_acl *dacl, size_t *sd_size);
297 struct sec_desc_buf *make_sec_desc_buf(TALLOC_CTX *ctx, size_t len, struct security_descriptor *sec_desc);
298 struct sec_desc_buf *dup_sec_desc_buf(TALLOC_CTX *ctx, struct sec_desc_buf *src);
299 NTSTATUS sec_desc_add_sid(TALLOC_CTX *ctx, struct security_descriptor **psd, const struct dom_sid *sid, uint32 mask, size_t *sd_size);
300 NTSTATUS sec_desc_mod_sid(struct security_descriptor *sd, struct dom_sid *sid, uint32 mask);
301 NTSTATUS sec_desc_del_sid(TALLOC_CTX *ctx, struct security_descriptor **psd, struct dom_sid *sid, size_t *sd_size);
302 bool sd_has_inheritable_components(const struct security_descriptor *parent_ctr, bool container);
303 NTSTATUS se_create_child_secdesc(TALLOC_CTX *ctx,
304 struct security_descriptor **ppsd,
305 size_t *psize,
306 const struct security_descriptor *parent_ctr,
307 const struct dom_sid *owner_sid,
308 const struct dom_sid *group_sid,
309 bool container);
310 NTSTATUS se_create_child_secdesc_buf(TALLOC_CTX *ctx,
311 struct sec_desc_buf **ppsdb,
312 const struct security_descriptor *parent_ctr,
313 bool container);
315 /* The following definitions come from lib/sendfile.c */
317 ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
319 /* The following definitions come from lib/server_mutex.c */
321 struct named_mutex *grab_named_mutex(TALLOC_CTX *mem_ctx, const char *name,
322 int timeout);
324 /* The following definitions come from lib/sharesec.c */
326 bool share_info_db_init(void);
327 struct security_descriptor *get_share_security_default( TALLOC_CTX *ctx, size_t *psize, uint32 def_access);
328 struct security_descriptor *get_share_security( TALLOC_CTX *ctx, const char *servicename,
329 size_t *psize);
330 bool set_share_security(const char *share_name, struct security_descriptor *psd);
331 bool delete_share_security(const char *servicename);
332 bool share_access_check(const struct security_token *token, const char *sharename,
333 uint32 desired_access);
334 bool parse_usershare_acl(TALLOC_CTX *ctx, const char *acl_str, struct security_descriptor **ppsd);
336 /* The following definitions come from lib/smbrun.c */
338 int smbrun_no_sanitize(const char *cmd, int *outfd);
339 int smbrun(const char *cmd, int *outfd);
340 int smbrunsecret(const char *cmd, const char *secret);
342 /* The following definitions come from lib/sock_exec.c */
344 int sock_exec(const char *prog);
346 /* The following definitions come from lib/substitute.c */
348 void free_local_machine_name(void);
349 bool set_local_machine_name(const char *local_name, bool perm);
350 const char *get_local_machine_name(void);
351 bool set_remote_machine_name(const char *remote_name, bool perm);
352 const char *get_remote_machine_name(void);
353 void sub_set_smb_name(const char *name);
354 void set_current_user_info(const char *smb_name, const char *unix_name,
355 const char *domain);
356 void sub_set_socket_ids(const char *peeraddr, const char *peername,
357 const char *sockaddr);
358 const char *get_current_username(void);
359 void standard_sub_basic(const char *smb_name, const char *domain_name,
360 char *str, size_t len);
361 char *talloc_sub_basic(TALLOC_CTX *mem_ctx, const char *smb_name,
362 const char *domain_name, const char *str);
363 char *talloc_sub_specified(TALLOC_CTX *mem_ctx,
364 const char *input_string,
365 const char *username,
366 const char *domain,
367 uid_t uid,
368 gid_t gid);
369 char *talloc_sub_advanced(TALLOC_CTX *mem_ctx,
370 const char *servicename, const char *user,
371 const char *connectpath, gid_t gid,
372 const char *smb_name, const char *domain_name,
373 const char *str);
374 void standard_sub_advanced(const char *servicename, const char *user,
375 const char *connectpath, gid_t gid,
376 const char *smb_name, const char *domain_name,
377 char *str, size_t len);
378 char *standard_sub_conn(TALLOC_CTX *ctx, connection_struct *conn, const char *str);
380 /* The following definitions come from lib/sysacls.c */
382 int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p);
383 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p);
384 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
385 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
386 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d);
387 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
388 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
389 char *sys_acl_to_text(SMB_ACL_T acl_d, ssize_t *len_p);
390 SMB_ACL_T sys_acl_init(int count);
391 int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p);
392 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type);
393 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p);
394 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d);
395 int sys_acl_free_text(char *text);
396 int sys_acl_free_acl(SMB_ACL_T acl_d) ;
397 int sys_acl_free_qualifier(void *qual, SMB_ACL_TAG_T tagtype);
398 int sys_acl_valid(SMB_ACL_T acl_d);
399 SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle,
400 const char *path_p, SMB_ACL_TYPE_T type);
401 SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp);
402 int sys_acl_set_file(vfs_handle_struct *handle,
403 const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
404 int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
405 SMB_ACL_T acl_d);
406 int sys_acl_delete_def_file(vfs_handle_struct *handle,
407 const char *path);
408 int no_acl_syscall_error(int err);
410 /* The following definitions come from lib/sysquotas.c */
412 int sys_get_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
413 int sys_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
415 /* The following definitions come from lib/sysquotas_*.c */
417 int sys_get_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
418 int sys_set_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
420 int sys_get_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
421 int sys_set_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
423 int sys_get_nfs_quota(const char *path, const char *bdev,
424 enum SMB_QUOTA_TYPE qtype,
425 unid_t id, SMB_DISK_QUOTA *dp);
426 int sys_set_nfs_quota(const char *path, const char *bdev,
427 enum SMB_QUOTA_TYPE qtype,
428 unid_t id, SMB_DISK_QUOTA *dp);
430 /* The following definitions come from lib/system.c */
432 void *sys_memalign( size_t align, size_t size );
433 int sys_usleep(long usecs);
434 ssize_t sys_read(int fd, void *buf, size_t count);
435 ssize_t sys_write(int fd, const void *buf, size_t count);
436 ssize_t sys_writev(int fd, const struct iovec *iov, int iovcnt);
437 ssize_t sys_pread(int fd, void *buf, size_t count, SMB_OFF_T off);
438 ssize_t sys_pwrite(int fd, const void *buf, size_t count, SMB_OFF_T off);
439 ssize_t sys_send(int s, const void *msg, size_t len, int flags);
440 ssize_t sys_sendto(int s, const void *msg, size_t len, int flags, const struct sockaddr *to, socklen_t tolen);
441 ssize_t sys_recv(int fd, void *buf, size_t count, int flags);
442 ssize_t sys_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen);
443 int sys_fcntl_ptr(int fd, int cmd, void *arg);
444 int sys_fcntl_long(int fd, int cmd, long arg);
445 void update_stat_ex_mtime(struct stat_ex *dst, struct timespec write_ts);
446 void update_stat_ex_create_time(struct stat_ex *dst, struct timespec create_time);
447 int sys_stat(const char *fname, SMB_STRUCT_STAT *sbuf,
448 bool fake_dir_create_times);
449 int sys_fstat(int fd, SMB_STRUCT_STAT *sbuf,
450 bool fake_dir_create_times);
451 int sys_lstat(const char *fname,SMB_STRUCT_STAT *sbuf,
452 bool fake_dir_create_times);
453 int sys_ftruncate(int fd, SMB_OFF_T offset);
454 int sys_posix_fallocate(int fd, SMB_OFF_T offset, SMB_OFF_T len);
455 int sys_fallocate(int fd, enum vfs_fallocate_mode mode, SMB_OFF_T offset, SMB_OFF_T len);
456 SMB_OFF_T sys_lseek(int fd, SMB_OFF_T offset, int whence);
457 int sys_fseek(FILE *fp, SMB_OFF_T offset, int whence);
458 SMB_OFF_T sys_ftell(FILE *fp);
459 int sys_creat(const char *path, mode_t mode);
460 int sys_open(const char *path, int oflag, mode_t mode);
461 FILE *sys_fopen(const char *path, const char *type);
462 void kernel_flock(int fd, uint32 share_mode, uint32 access_mask);
463 SMB_STRUCT_DIR *sys_opendir(const char *name);
464 SMB_STRUCT_DIR *sys_fdopendir(int fd);
465 SMB_STRUCT_DIRENT *sys_readdir(SMB_STRUCT_DIR *dirp);
466 void sys_seekdir(SMB_STRUCT_DIR *dirp, long offset);
467 long sys_telldir(SMB_STRUCT_DIR *dirp);
468 void sys_rewinddir(SMB_STRUCT_DIR *dirp);
469 int sys_closedir(SMB_STRUCT_DIR *dirp);
470 int sys_mknod(const char *path, mode_t mode, SMB_DEV_T dev);
471 int sys_waitpid(pid_t pid,int *status,int options);
472 char *sys_getwd(char *s);
473 void set_effective_capability(enum smbd_capability capability);
474 void drop_effective_capability(enum smbd_capability capability);
475 long sys_random(void);
476 void sys_srandom(unsigned int seed);
477 int groups_max(void);
478 int sys_getgroups(int setlen, gid_t *gidset);
479 int sys_setgroups(gid_t UNUSED(primary_gid), int setlen, gid_t *gidset);
480 int sys_popen(const char *command);
481 int sys_pclose(int fd);
482 ssize_t sys_getxattr (const char *path, const char *name, void *value, size_t size);
483 ssize_t sys_lgetxattr (const char *path, const char *name, void *value, size_t size);
484 ssize_t sys_fgetxattr (int filedes, const char *name, void *value, size_t size);
485 ssize_t sys_listxattr (const char *path, char *list, size_t size);
486 ssize_t sys_llistxattr (const char *path, char *list, size_t size);
487 ssize_t sys_flistxattr (int filedes, char *list, size_t size);
488 int sys_removexattr (const char *path, const char *name);
489 int sys_lremovexattr (const char *path, const char *name);
490 int sys_fremovexattr (int filedes, const char *name);
491 int sys_setxattr (const char *path, const char *name, const void *value, size_t size, int flags);
492 int sys_lsetxattr (const char *path, const char *name, const void *value, size_t size, int flags);
493 int sys_fsetxattr (int filedes, const char *name, const void *value, size_t size, int flags);
494 uint32 unix_dev_major(SMB_DEV_T dev);
495 uint32 unix_dev_minor(SMB_DEV_T dev);
496 int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
497 int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
498 ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
499 int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
500 int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
501 int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
502 int sys_aio_suspend(const SMB_STRUCT_AIOCB * const cblist[], int n, const struct timespec *timeout);
503 int sys_aio_read(SMB_STRUCT_AIOCB *aiocb);
504 int sys_aio_write(SMB_STRUCT_AIOCB *aiocb);
505 ssize_t sys_aio_return(SMB_STRUCT_AIOCB *aiocb);
506 int sys_aio_cancel(int fd, SMB_STRUCT_AIOCB *aiocb);
507 int sys_aio_error(const SMB_STRUCT_AIOCB *aiocb);
508 int sys_aio_fsync(int op, SMB_STRUCT_AIOCB *aiocb);
509 int sys_aio_suspend(const SMB_STRUCT_AIOCB * const cblist[], int n, const struct timespec *timeout);
510 int sys_getpeereid( int s, uid_t *uid);
511 int sys_getnameinfo(const struct sockaddr *psa,
512 socklen_t salen,
513 char *host,
514 size_t hostlen,
515 char *service,
516 size_t servlen,
517 int flags);
518 int sys_connect(int fd, const struct sockaddr * addr);
520 /* The following definitions come from lib/system_smbd.c */
522 bool getgroups_unix_user(TALLOC_CTX *mem_ctx, const char *user,
523 gid_t primary_gid,
524 gid_t **ret_groups, uint32_t *p_ngroups);
526 /* The following definitions come from lib/tallocmsg.c */
528 void register_msg_pool_usage(struct messaging_context *msg_ctx);
530 /* The following definitions come from lib/time.c */
532 void push_dos_date(uint8_t *buf, int offset, time_t unixdate, int zone_offset);
533 void push_dos_date2(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
534 void push_dos_date3(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
535 uint32_t convert_time_t_to_uint32_t(time_t t);
536 time_t convert_uint32_t_to_time_t(uint32_t u);
537 bool nt_time_is_zero(const NTTIME *nt);
538 time_t generalized_to_unix_time(const char *str);
539 int get_server_zone_offset(void);
540 int set_server_zone_offset(time_t t);
541 char *timeval_string(TALLOC_CTX *ctx, const struct timeval *tp, bool hires);
542 char *current_timestring(TALLOC_CTX *ctx, bool hires);
543 void srv_put_dos_date(char *buf,int offset,time_t unixdate);
544 void srv_put_dos_date2(char *buf,int offset, time_t unixdate);
545 void srv_put_dos_date3(char *buf,int offset,time_t unixdate);
546 void round_timespec(enum timestamp_set_resolution res, struct timespec *ts);
547 void put_long_date_timespec(enum timestamp_set_resolution res, char *p, struct timespec ts);
548 void put_long_date(char *p, time_t t);
549 void dos_filetime_timespec(struct timespec *tsp);
550 time_t make_unix_date(const void *date_ptr, int zone_offset);
551 time_t make_unix_date2(const void *date_ptr, int zone_offset);
552 time_t make_unix_date3(const void *date_ptr, int zone_offset);
553 time_t srv_make_unix_date(const void *date_ptr);
554 time_t srv_make_unix_date2(const void *date_ptr);
555 time_t srv_make_unix_date3(const void *date_ptr);
556 struct timespec convert_time_t_to_timespec(time_t t);
557 struct timespec convert_timeval_to_timespec(const struct timeval tv);
558 struct timeval convert_timespec_to_timeval(const struct timespec ts);
559 struct timespec timespec_current(void);
560 struct timespec timespec_min(const struct timespec *ts1,
561 const struct timespec *ts2);
562 int timespec_compare(const struct timespec *ts1, const struct timespec *ts2);
563 void round_timespec_to_sec(struct timespec *ts);
564 void round_timespec_to_usec(struct timespec *ts);
565 struct timespec interpret_long_date(const char *p);
566 void TimeInit(void);
567 void get_process_uptime(struct timeval *ret_time);
568 void get_startup_time(struct timeval *ret_time);
569 time_t nt_time_to_unix_abs(const NTTIME *nt);
570 time_t uint64s_nt_time_to_unix_abs(const uint64_t *src);
571 void unix_timespec_to_nt_time(NTTIME *nt, struct timespec ts);
572 void unix_to_nt_time_abs(NTTIME *nt, time_t t);
573 const char *time_to_asc(const time_t t);
574 const char *display_time(NTTIME nttime);
575 bool nt_time_is_set(const NTTIME *nt);
577 /* The following definitions come from lib/username.c */
579 void flush_pwnam_cache(void);
580 char *get_user_home_dir(TALLOC_CTX *mem_ctx, const char *user);
581 struct passwd *Get_Pwnam_alloc(TALLOC_CTX *mem_ctx, const char *user);
583 /* The following definitions come from lib/util_names.c */
584 void gfree_netbios_names(void);
585 bool set_global_myname(const char *myname);
586 const char *global_myname(void);
587 bool set_global_myworkgroup(const char *myworkgroup);
588 const char *lp_workgroup(void);
589 const char *get_global_sam_name(void);
591 /* The following definitions come from lib/util.c */
593 enum protocol_types get_Protocol(void);
594 void set_Protocol(enum protocol_types p);
595 bool all_zero(const uint8_t *ptr, size_t size);
596 bool set_global_scope(const char *scope);
597 const char *global_scope(void);
598 void gfree_names(void);
599 void gfree_all( void );
600 const char *my_netbios_names(int i);
601 bool set_netbios_aliases(const char **str_array);
602 bool init_names(void);
603 bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf,
604 bool fake_dir_create_times);
605 bool socket_exist(const char *fname);
606 uint64_t get_file_size_stat(const SMB_STRUCT_STAT *sbuf);
607 SMB_OFF_T get_file_size(char *file_name);
608 char *attrib_string(uint16 mode);
609 void show_msg(char *buf);
610 void smb_set_enclen(char *buf,int len,uint16 enc_ctx_num);
611 void smb_setlen(char *buf,int len);
612 int set_message_bcc(char *buf,int num_bytes);
613 ssize_t message_push_blob(uint8 **outbuf, DATA_BLOB blob);
614 char *unix_clean_name(TALLOC_CTX *ctx, const char *s);
615 char *clean_name(TALLOC_CTX *ctx, const char *s);
616 ssize_t write_data_at_offset(int fd, const char *buffer, size_t N, SMB_OFF_T pos);
617 int set_blocking(int fd, bool set);
618 NTSTATUS reinit_after_fork(struct messaging_context *msg_ctx,
619 struct event_context *ev_ctx,
620 struct server_id id,
621 bool parent_longlived);
622 void *malloc_(size_t size);
623 void *memalign_array(size_t el_size, size_t align, unsigned int count);
624 void *calloc_array(size_t size, size_t nmemb);
625 void *Realloc(void *p, size_t size, bool free_old_on_error);
626 void add_to_large_array(TALLOC_CTX *mem_ctx, size_t element_size,
627 void *element, void *_array, uint32 *num_elements,
628 ssize_t *array_size);
629 char *get_myname(TALLOC_CTX *ctx);
630 char *get_mydnsdomname(TALLOC_CTX *ctx);
631 int interpret_protocol(const char *str,int def);
632 char *automount_lookup(TALLOC_CTX *ctx, const char *user_name);
633 char *automount_lookup(TALLOC_CTX *ctx, const char *user_name);
634 bool process_exists(const struct server_id pid);
635 const char *uidtoname(uid_t uid);
636 char *gidtoname(gid_t gid);
637 uid_t nametouid(const char *name);
638 gid_t nametogid(const char *name);
639 void smb_panic(const char *const why);
640 void log_stack_trace(void);
641 const char *readdirname(SMB_STRUCT_DIR *p);
642 bool is_in_path(const char *name, name_compare_entry *namelist, bool case_sensitive);
643 void set_namearray(name_compare_entry **ppname_array, const char *namelist);
644 void free_namearray(name_compare_entry *name_array);
645 bool fcntl_lock(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
646 bool fcntl_getlock(int fd, SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid);
647 bool is_myname(const char *s);
648 bool is_myworkgroup(const char *s);
649 void ra_lanman_string( const char *native_lanman );
650 const char *get_remote_arch_str(void);
651 void set_remote_arch(enum remote_arch_types type);
652 enum remote_arch_types get_remote_arch(void);
653 const char *tab_depth(int level, int depth);
654 int str_checksum(const char *s);
655 void zero_free(void *p, size_t size);
656 int set_maxfiles(int requested_max);
657 int smb_mkstemp(char *name_template);
658 void *smb_xmalloc_array(size_t size, unsigned int count);
659 char *myhostname(void);
660 char *lock_path(const char *name);
661 char *pid_path(const char *name);
662 char *lib_path(const char *name);
663 char *modules_path(const char *name);
664 char *data_path(const char *name);
665 char *state_path(const char *name);
666 char *cache_path(const char *name);
667 const char *shlib_ext(void);
668 bool parent_dirname(TALLOC_CTX *mem_ctx, const char *dir, char **parent,
669 const char **name);
670 bool ms_has_wild(const char *s);
671 bool ms_has_wild_w(const smb_ucs2_t *s);
672 bool mask_match(const char *string, const char *pattern, bool is_case_sensitive);
673 bool mask_match_search(const char *string, const char *pattern, bool is_case_sensitive);
674 bool mask_match_list(const char *string, char **list, int listLen, bool is_case_sensitive);
675 bool unix_wild_match(const char *pattern, const char *string);
676 bool name_to_fqdn(fstring fqdn, const char *name);
677 void *talloc_append_blob(TALLOC_CTX *mem_ctx, void *buf, DATA_BLOB blob);
678 uint32 map_share_mode_to_deny_mode(uint32 share_access, uint32 private_options);
679 pid_t procid_to_pid(const struct server_id *proc);
680 void set_my_vnn(uint32 vnn);
681 uint32 get_my_vnn(void);
682 void set_my_unique_id(uint64_t unique_id);
683 struct server_id pid_to_procid(pid_t pid);
684 struct server_id procid_self(void);
685 bool procid_equal(const struct server_id *p1, const struct server_id *p2);
686 bool cluster_id_equal(const struct server_id *id1,
687 const struct server_id *id2);
688 bool procid_is_me(const struct server_id *pid);
689 struct server_id interpret_pid(const char *pid_string);
690 char *procid_str(TALLOC_CTX *mem_ctx, const struct server_id *pid);
691 char *procid_str_static(const struct server_id *pid);
692 bool procid_valid(const struct server_id *pid);
693 bool procid_is_local(const struct server_id *pid);
694 bool trans_oob(uint32_t bufsize, uint32_t offset, uint32_t length);
695 bool is_offset_safe(const char *buf_base, size_t buf_len, char *ptr, size_t off);
696 char *get_safe_ptr(const char *buf_base, size_t buf_len, char *ptr, size_t off);
697 char *get_safe_str_ptr(const char *buf_base, size_t buf_len, char *ptr, size_t off);
698 int get_safe_SVAL(const char *buf_base, size_t buf_len, char *ptr, size_t off, int failval);
699 int get_safe_IVAL(const char *buf_base, size_t buf_len, char *ptr, size_t off, int failval);
700 void split_domain_user(TALLOC_CTX *mem_ctx,
701 const char *full_name,
702 char **domain,
703 char **user);
704 void *_talloc_zero_zeronull(const void *ctx, size_t size, const char *name);
705 void *_talloc_memdup_zeronull(const void *t, const void *p, size_t size, const char *name);
706 void *_talloc_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
707 void *_talloc_zero_array_zeronull(const void *ctx, size_t el_size, unsigned count, const char *name);
708 void *talloc_zeronull(const void *context, size_t size, const char *name);
709 const char *strip_hostname(const char *s);
710 bool tevent_req_poll_ntstatus(struct tevent_req *req,
711 struct tevent_context *ev,
712 NTSTATUS *status);
713 bool any_nt_status_not_ok(NTSTATUS err1, NTSTATUS err2, NTSTATUS *result);
714 int timeval_to_msec(struct timeval t);
715 char *valid_share_pathname(TALLOC_CTX *ctx, const char *dos_pathname);
717 /* The following definitions come from lib/util_cmdline.c */
719 struct user_auth_info *user_auth_info_init(TALLOC_CTX *mem_ctx);
720 const char *get_cmdline_auth_info_username(const struct user_auth_info *auth_info);
721 void set_cmdline_auth_info_username(struct user_auth_info *auth_info,
722 const char *username);
723 const char *get_cmdline_auth_info_domain(const struct user_auth_info *auth_info);
724 void set_cmdline_auth_info_domain(struct user_auth_info *auth_info,
725 const char *domain);
726 void set_cmdline_auth_info_password(struct user_auth_info *auth_info,
727 const char *password);
728 const char *get_cmdline_auth_info_password(const struct user_auth_info *auth_info);
729 bool set_cmdline_auth_info_signing_state(struct user_auth_info *auth_info,
730 const char *arg);
731 int get_cmdline_auth_info_signing_state(const struct user_auth_info *auth_info);
732 void set_cmdline_auth_info_use_ccache(struct user_auth_info *auth_info,
733 bool b);
734 bool get_cmdline_auth_info_use_ccache(const struct user_auth_info *auth_info);
735 void set_cmdline_auth_info_use_kerberos(struct user_auth_info *auth_info,
736 bool b);
737 bool get_cmdline_auth_info_use_kerberos(const struct user_auth_info *auth_info);
738 void set_cmdline_auth_info_fallback_after_kerberos(struct user_auth_info *auth_info,
739 bool b);
740 bool get_cmdline_auth_info_fallback_after_kerberos(const struct user_auth_info *auth_info);
741 void set_cmdline_auth_info_use_krb5_ticket(struct user_auth_info *auth_info);
742 void set_cmdline_auth_info_smb_encrypt(struct user_auth_info *auth_info);
743 void set_cmdline_auth_info_use_machine_account(struct user_auth_info *auth_info);
744 bool get_cmdline_auth_info_got_pass(const struct user_auth_info *auth_info);
745 bool get_cmdline_auth_info_smb_encrypt(const struct user_auth_info *auth_info);
746 bool get_cmdline_auth_info_use_machine_account(const struct user_auth_info *auth_info);
747 struct user_auth_info *get_cmdline_auth_info_copy(TALLOC_CTX *mem_ctx,
748 const struct user_auth_info *info);
749 bool set_cmdline_auth_info_machine_account_creds(struct user_auth_info *auth_info);
750 void set_cmdline_auth_info_getpass(struct user_auth_info *auth_info);
752 /* The following definitions come from lib/util_builtin.c */
754 bool lookup_builtin_rid(TALLOC_CTX *mem_ctx, uint32 rid, const char **name);
755 bool lookup_builtin_name(const char *name, uint32 *rid);
756 const char *builtin_domain_name(void);
757 bool sid_check_is_builtin(const struct dom_sid *sid);
758 bool sid_check_is_in_builtin(const struct dom_sid *sid);
760 /* The following definitions come from lib/util_file.c */
762 char **file_lines_pload(const char *syscmd, int *numlines);
763 void file_lines_free(char **lines);
765 /* The following definitions come from lib/util_nscd.c */
767 void smb_nscd_flush_user_cache(void);
768 void smb_nscd_flush_group_cache(void);
770 /* The following definitions come from lib/util_nttoken.c */
772 struct security_token *dup_nt_token(TALLOC_CTX *mem_ctx, const struct security_token *ptoken);
773 NTSTATUS merge_nt_token(TALLOC_CTX *mem_ctx,
774 const struct security_token *token_1,
775 const struct security_token *token_2,
776 struct security_token **token_out);
777 bool token_sid_in_ace(const struct security_token *token, const struct security_ace *ace);
779 /* The following definitions come from lib/util_sec.c */
781 void sec_init(void);
782 uid_t sec_initial_uid(void);
783 gid_t sec_initial_gid(void);
784 bool non_root_mode(void);
785 void gain_root_privilege(void);
786 void gain_root_group_privilege(void);
787 void set_effective_uid(uid_t uid);
788 void set_effective_gid(gid_t gid);
789 void save_re_uid(void);
790 void restore_re_uid_fromroot(void);
791 void restore_re_uid(void);
792 void save_re_gid(void);
793 void restore_re_gid(void);
794 int set_re_uid(void);
795 void become_user_permanently(uid_t uid, gid_t gid);
796 bool is_setuid_root(void) ;
798 /* The following definitions come from lib/util_sid.c */
800 char *sid_to_fstring(fstring sidstr_out, const struct dom_sid *sid);
801 char *sid_string_talloc(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
802 char *sid_string_dbg(const struct dom_sid *sid);
803 char *sid_string_tos(const struct dom_sid *sid);
804 bool sid_linearize(char *outbuf, size_t len, const struct dom_sid *sid);
805 bool non_mappable_sid(struct dom_sid *sid);
806 char *sid_binstring_hex(const struct dom_sid *sid);
807 struct netr_SamInfo3;
808 NTSTATUS sid_array_from_info3(TALLOC_CTX *mem_ctx,
809 const struct netr_SamInfo3 *info3,
810 struct dom_sid **user_sids,
811 uint32_t *num_user_sids,
812 bool include_user_group_rid,
813 bool skip_ressource_groups);
815 /* The following definitions come from lib/util_sock.c */
817 bool is_broadcast_addr(const struct sockaddr *pss);
818 bool is_loopback_ip_v4(struct in_addr ip);
819 bool is_loopback_addr(const struct sockaddr *pss);
820 bool is_zero_addr(const struct sockaddr_storage *pss);
821 void zero_ip_v4(struct in_addr *ip);
822 void in_addr_to_sockaddr_storage(struct sockaddr_storage *ss,
823 struct in_addr ip);
824 bool same_net(const struct sockaddr *ip1,
825 const struct sockaddr *ip2,
826 const struct sockaddr *mask);
827 bool sockaddr_equal(const struct sockaddr *ip1,
828 const struct sockaddr *ip2);
829 bool is_address_any(const struct sockaddr *psa);
830 uint16_t get_sockaddr_port(const struct sockaddr_storage *pss);
831 char *print_sockaddr(char *dest,
832 size_t destlen,
833 const struct sockaddr_storage *psa);
834 char *print_canonical_sockaddr(TALLOC_CTX *ctx,
835 const struct sockaddr_storage *pss);
836 const char *client_name(int fd);
837 int get_socket_port(int fd);
838 const char *client_addr(int fd, char *addr, size_t addrlen);
839 const char *client_socket_addr(int fd, char *addr, size_t addr_len);
840 int client_socket_port(int fd);
841 void set_smb_read_error(enum smb_read_errors *pre,
842 enum smb_read_errors newerr);
843 void cond_set_smb_read_error(enum smb_read_errors *pre,
844 enum smb_read_errors newerr);
845 bool is_a_socket(int fd);
846 void set_socket_options(int fd, const char *options);
847 ssize_t read_udp_v4_socket(int fd,
848 char *buf,
849 size_t len,
850 struct sockaddr_storage *psa);
851 NTSTATUS read_fd_with_timeout(int fd, char *buf,
852 size_t mincnt, size_t maxcnt,
853 unsigned int time_out,
854 size_t *size_ret);
855 NTSTATUS read_data(int fd, char *buffer, size_t N);
856 ssize_t write_data(int fd, const char *buffer, size_t N);
857 ssize_t write_data_iov(int fd, const struct iovec *orig_iov, int iovcnt);
858 bool send_keepalive(int client);
859 NTSTATUS read_smb_length_return_keepalive(int fd, char *inbuf,
860 unsigned int timeout,
861 size_t *len);
862 NTSTATUS receive_smb_raw(int fd,
863 char *buffer,
864 size_t buflen,
865 unsigned int timeout,
866 size_t maxlen,
867 size_t *p_len);
868 int open_socket_in(int type,
869 uint16_t port,
870 int dlevel,
871 const struct sockaddr_storage *psock,
872 bool rebind);
873 NTSTATUS open_socket_out(const struct sockaddr_storage *pss, uint16_t port,
874 int timeout, int *pfd);
875 struct tevent_req *open_socket_out_send(TALLOC_CTX *mem_ctx,
876 struct event_context *ev,
877 const struct sockaddr_storage *pss,
878 uint16_t port,
879 int timeout);
880 NTSTATUS open_socket_out_recv(struct tevent_req *req, int *pfd);
881 struct tevent_req *open_socket_out_defer_send(TALLOC_CTX *mem_ctx,
882 struct event_context *ev,
883 struct timeval wait_time,
884 const struct sockaddr_storage *pss,
885 uint16_t port,
886 int timeout);
887 NTSTATUS open_socket_out_defer_recv(struct tevent_req *req, int *pfd);
888 int open_udp_socket(const char *host, int port);
889 const char *get_peer_name(int fd, bool force_lookup);
890 const char *get_peer_addr(int fd, char *addr, size_t addr_len);
891 int create_pipe_sock(const char *socket_dir,
892 const char *socket_name,
893 mode_t dir_perms);
894 const char *get_mydnsfullname(void);
895 bool is_myname_or_ipaddr(const char *s);
896 struct tevent_req *getaddrinfo_send(TALLOC_CTX *mem_ctx,
897 struct tevent_context *ev,
898 struct fncall_context *ctx,
899 const char *node,
900 const char *service,
901 const struct addrinfo *hints);
902 int getaddrinfo_recv(struct tevent_req *req, struct addrinfo **res);
903 int poll_one_fd(int fd, int events, int timeout, int *revents);
904 int poll_intr_one_fd(int fd, int events, int timeout, int *revents);
905 struct tstream_context;
906 struct tevent_req *tstream_read_packet_send(TALLOC_CTX *mem_ctx,
907 struct tevent_context *ev,
908 struct tstream_context *stream,
909 size_t initial,
910 ssize_t (*more)(uint8_t *buf,
911 size_t buflen,
912 void *private_data),
913 void *private_data);
914 ssize_t tstream_read_packet_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
915 uint8_t **pbuf, int *perrno);
917 /* The following definitions come from lib/util_str.c */
919 bool next_token(const char **ptr, char *buff, const char *sep, size_t bufsize);
920 int StrCaseCmp(const char *s, const char *t);
921 int StrnCaseCmp(const char *s, const char *t, size_t len);
922 bool strnequal(const char *s1,const char *s2,size_t n);
923 bool strcsequal(const char *s1,const char *s2);
924 void strnorm(char *s, int case_default);
925 bool strisnormal(const char *s, int case_default);
926 char *push_skip_string(char *buf);
927 char *skip_string(const char *base, size_t len, char *buf);
928 size_t str_charnum(const char *s);
929 size_t str_ascii_charnum(const char *s);
930 bool trim_char(char *s,char cfront,char cback);
931 bool strhasupper(const char *s);
932 bool strhaslower(const char *s);
933 char *safe_strcpy_fn(const char *fn,
934 int line,
935 char *dest,
936 const char *src,
937 size_t maxlength);
938 char *safe_strcat_fn(const char *fn,
939 int line,
940 char *dest,
941 const char *src,
942 size_t maxlength);
943 char *alpha_strcpy_fn(const char *fn,
944 int line,
945 char *dest,
946 const char *src,
947 const char *other_safe_chars,
948 size_t maxlength);
949 char *StrnCpy_fn(const char *fn, int line,char *dest,const char *src,size_t n);
950 bool in_list(const char *s, const char *list, bool casesensitive);
951 void string_free(char **s);
952 bool string_set(char **dest,const char *src);
953 void string_sub2(char *s,const char *pattern, const char *insert, size_t len,
954 bool remove_unsafe_characters, bool replace_once,
955 bool allow_trailing_dollar);
956 void string_sub_once(char *s, const char *pattern,
957 const char *insert, size_t len);
958 void string_sub(char *s,const char *pattern, const char *insert, size_t len);
959 void fstring_sub(char *s,const char *pattern,const char *insert);
960 char *realloc_string_sub2(char *string,
961 const char *pattern,
962 const char *insert,
963 bool remove_unsafe_characters,
964 bool allow_trailing_dollar);
965 char *realloc_string_sub(char *string,
966 const char *pattern,
967 const char *insert);
968 char *talloc_string_sub2(TALLOC_CTX *mem_ctx, const char *src,
969 const char *pattern,
970 const char *insert,
971 bool remove_unsafe_characters,
972 bool replace_once,
973 bool allow_trailing_dollar);
974 char *talloc_string_sub(TALLOC_CTX *mem_ctx,
975 const char *src,
976 const char *pattern,
977 const char *insert);
978 void all_string_sub(char *s,const char *pattern,const char *insert, size_t len);
979 char *talloc_all_string_sub(TALLOC_CTX *ctx,
980 const char *src,
981 const char *pattern,
982 const char *insert);
983 char *octal_string(int i);
984 char *string_truncate(char *s, unsigned int length);
985 char *strchr_m(const char *src, char c);
986 char *strrchr_m(const char *s, char c);
987 char *strnrchr_m(const char *s, char c, unsigned int n);
988 char *strstr_m(const char *src, const char *findstr);
989 void strlower_m(char *s);
990 void strupper_m(char *s);
991 size_t strlen_m(const char *s);
992 size_t strlen_m_term(const char *s);
993 size_t strlen_m_term_null(const char *s);
994 int fstr_sprintf(fstring s, const char *fmt, ...);
995 bool str_list_sub_basic( char **list, const char *smb_name,
996 const char *domain_name );
997 bool str_list_substitute(char **list, const char *pattern, const char *insert);
999 char *ipstr_list_make(char **ipstr_list,
1000 const struct ip_service *ip_list,
1001 int ip_count);
1002 int ipstr_list_parse(const char *ipstr_list, struct ip_service **ip_list);
1003 void ipstr_list_free(char* ipstr_list);
1004 DATA_BLOB base64_decode_data_blob(const char *s);
1005 void base64_decode_inplace(char *s);
1006 char *base64_encode_data_blob(TALLOC_CTX *mem_ctx, DATA_BLOB data);
1007 uint64_t STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr);
1008 SMB_OFF_T conv_str_size(const char * str);
1009 void string_append(char **left, const char *right);
1010 bool add_string_to_array(TALLOC_CTX *mem_ctx,
1011 const char *str, const char ***strings,
1012 int *num);
1013 void sprintf_append(TALLOC_CTX *mem_ctx, char **string, ssize_t *len,
1014 size_t *bufsize, const char *fmt, ...);
1015 int asprintf_strupper_m(char **strp, const char *fmt, ...);
1016 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...);
1017 char *talloc_asprintf_strlower_m(TALLOC_CTX *t, const char *fmt, ...);
1018 char *sstring_sub(const char *src, char front, char back);
1019 bool validate_net_name( const char *name,
1020 const char *invalid_chars,
1021 int max_len);
1022 char *escape_shell_string(const char *src);
1023 char **str_list_make_v3(TALLOC_CTX *mem_ctx, const char *string, const char *sep);
1024 char *sanitize_username(TALLOC_CTX *mem_ctx, const char *username);
1026 /* The following definitions come from lib/util_unistr.c */
1028 void gfree_case_tables(void);
1029 void load_case_tables(void);
1030 size_t dos_PutUniCode(char *dst,const char *src, size_t len, bool null_terminate);
1031 int rpcstr_push(void *dest, const char *src, size_t dest_len, int flags);
1032 int rpcstr_push_talloc(TALLOC_CTX *ctx, smb_ucs2_t **dest, const char *src);
1033 bool isvalid83_w(smb_ucs2_t c);
1034 size_t strlen_w(const smb_ucs2_t *src);
1035 size_t strnlen_w(const smb_ucs2_t *src, size_t max);
1036 smb_ucs2_t *strchr_w(const smb_ucs2_t *s, smb_ucs2_t c);
1037 smb_ucs2_t *strchr_wa(const smb_ucs2_t *s, char c);
1038 smb_ucs2_t *strrchr_w(const smb_ucs2_t *s, smb_ucs2_t c);
1039 smb_ucs2_t *strnrchr_w(const smb_ucs2_t *s, smb_ucs2_t c, unsigned int n);
1040 smb_ucs2_t *strstr_w(const smb_ucs2_t *s, const smb_ucs2_t *ins);
1041 bool strlower_w(smb_ucs2_t *s);
1042 bool strupper_w(smb_ucs2_t *s);
1043 void strnorm_w(smb_ucs2_t *s, int case_default);
1044 int strcmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b);
1045 int strncmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b, size_t len);
1046 int strcasecmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b);
1047 int strncasecmp_w(const smb_ucs2_t *a, const smb_ucs2_t *b, size_t len);
1048 bool strequal_w(const smb_ucs2_t *s1, const smb_ucs2_t *s2);
1049 bool strnequal_w(const smb_ucs2_t *s1,const smb_ucs2_t *s2,size_t n);
1050 smb_ucs2_t *strdup_w(const smb_ucs2_t *src);
1051 smb_ucs2_t *strndup_w(const smb_ucs2_t *src, size_t len);
1052 smb_ucs2_t *strncpy_w(smb_ucs2_t *dest, const smb_ucs2_t *src, const size_t max);
1053 smb_ucs2_t *strncat_w(smb_ucs2_t *dest, const smb_ucs2_t *src, const size_t max);
1054 smb_ucs2_t *strcat_w(smb_ucs2_t *dest, const smb_ucs2_t *src);
1055 void string_replace_w(smb_ucs2_t *s, smb_ucs2_t oldc, smb_ucs2_t newc);
1056 bool trim_string_w(smb_ucs2_t *s, const smb_ucs2_t *front,
1057 const smb_ucs2_t *back);
1058 int strcmp_wa(const smb_ucs2_t *a, const char *b);
1059 int strncmp_wa(const smb_ucs2_t *a, const char *b, size_t len);
1060 smb_ucs2_t *strpbrk_wa(const smb_ucs2_t *s, const char *p);
1061 smb_ucs2_t *strstr_wa(const smb_ucs2_t *s, const char *ins);
1062 int toupper_ascii(int c);
1063 int tolower_ascii(int c);
1064 int isupper_ascii(int c);
1065 int islower_ascii(int c);
1067 /* The following definitions come from lib/version.c */
1069 const char *samba_version_string(void);
1071 /* The following definitions come from lib/wins_srv.c */
1073 bool wins_srv_is_dead(struct in_addr wins_ip, struct in_addr src_ip);
1074 void wins_srv_alive(struct in_addr wins_ip, struct in_addr src_ip);
1075 void wins_srv_died(struct in_addr wins_ip, struct in_addr src_ip);
1076 unsigned wins_srv_count(void);
1077 char **wins_srv_tags(void);
1078 void wins_srv_tags_free(char **list);
1079 struct in_addr wins_srv_ip_tag(const char *tag, struct in_addr src_ip);
1080 unsigned wins_srv_count_tag(const char *tag);
1082 /* The following definitions come from libsmb/cliconnect.c */
1084 ADS_STATUS cli_session_setup_spnego(struct cli_state *cli, const char *user,
1085 const char *pass, const char *user_domain,
1086 const char * dest_realm);
1088 NTSTATUS cli_session_setup(struct cli_state *cli,
1089 const char *user,
1090 const char *pass, int passlen,
1091 const char *ntpass, int ntpasslen,
1092 const char *workgroup);
1093 struct tevent_req *cli_session_setup_guest_create(TALLOC_CTX *mem_ctx,
1094 struct event_context *ev,
1095 struct cli_state *cli,
1096 struct tevent_req **psmbreq);
1097 struct tevent_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx,
1098 struct event_context *ev,
1099 struct cli_state *cli);
1100 NTSTATUS cli_session_setup_guest_recv(struct tevent_req *req);
1101 struct tevent_req *cli_ulogoff_send(TALLOC_CTX *mem_ctx,
1102 struct tevent_context *ev,
1103 struct cli_state *cli);
1104 NTSTATUS cli_ulogoff_recv(struct tevent_req *req);
1105 NTSTATUS cli_ulogoff(struct cli_state *cli);
1106 struct tevent_req *cli_tcon_andx_create(TALLOC_CTX *mem_ctx,
1107 struct event_context *ev,
1108 struct cli_state *cli,
1109 const char *share, const char *dev,
1110 const char *pass, int passlen,
1111 struct tevent_req **psmbreq);
1112 struct tevent_req *cli_tcon_andx_send(TALLOC_CTX *mem_ctx,
1113 struct event_context *ev,
1114 struct cli_state *cli,
1115 const char *share, const char *dev,
1116 const char *pass, int passlen);
1117 NTSTATUS cli_tcon_andx_recv(struct tevent_req *req);
1118 NTSTATUS cli_tcon_andx(struct cli_state *cli, const char *share,
1119 const char *dev, const char *pass, int passlen);
1120 struct tevent_req *cli_tdis_send(TALLOC_CTX *mem_ctx,
1121 struct tevent_context *ev,
1122 struct cli_state *cli);
1123 NTSTATUS cli_tdis_recv(struct tevent_req *req);
1124 NTSTATUS cli_tdis(struct cli_state *cli);
1125 NTSTATUS cli_negprot(struct cli_state *cli);
1126 struct tevent_req *cli_negprot_send(TALLOC_CTX *mem_ctx,
1127 struct event_context *ev,
1128 struct cli_state *cli);
1129 NTSTATUS cli_negprot_recv(struct tevent_req *req);
1130 bool cli_session_request(struct cli_state *cli,
1131 struct nmb_name *calling, struct nmb_name *called);
1132 NTSTATUS cli_connect(struct cli_state *cli,
1133 const char *host,
1134 struct sockaddr_storage *dest_ss);
1135 NTSTATUS cli_start_connection(struct cli_state **output_cli,
1136 const char *my_name,
1137 const char *dest_host,
1138 struct sockaddr_storage *dest_ss, int port,
1139 int signing_state, int flags);
1140 NTSTATUS cli_full_connection(struct cli_state **output_cli,
1141 const char *my_name,
1142 const char *dest_host,
1143 struct sockaddr_storage *dest_ss, int port,
1144 const char *service, const char *service_type,
1145 const char *user, const char *domain,
1146 const char *password, int flags,
1147 int signing_state);
1148 bool attempt_netbios_session_request(struct cli_state **ppcli, const char *srchost, const char *desthost,
1149 struct sockaddr_storage *pdest_ss);
1150 NTSTATUS cli_raw_tcon(struct cli_state *cli,
1151 const char *service, const char *pass, const char *dev,
1152 uint16 *max_xmit, uint16 *tid);
1153 struct cli_state *get_ipc_connect(char *server,
1154 struct sockaddr_storage *server_ss,
1155 const struct user_auth_info *user_info);
1156 struct cli_state *get_ipc_connect_master_ip(TALLOC_CTX *ctx,
1157 struct sockaddr_storage *mb_ip,
1158 const struct user_auth_info *user_info,
1159 char **pp_workgroup_out);
1160 struct cli_state *get_ipc_connect_master_ip_bcast(TALLOC_CTX *ctx,
1161 const struct user_auth_info *user_info,
1162 char **pp_workgroup_out);
1164 /* The following definitions come from libsmb/clidfs.c */
1166 NTSTATUS cli_cm_force_encryption(struct cli_state *c,
1167 const char *username,
1168 const char *password,
1169 const char *domain,
1170 const char *sharename);
1171 struct cli_state *cli_cm_open(TALLOC_CTX *ctx,
1172 struct cli_state *referring_cli,
1173 const char *server,
1174 const char *share,
1175 const struct user_auth_info *auth_info,
1176 bool show_hdr,
1177 bool force_encrypt,
1178 int max_protocol,
1179 int port,
1180 int name_type);
1181 void cli_cm_display(const struct cli_state *c);
1182 struct client_dfs_referral;
1183 NTSTATUS cli_dfs_get_referral(TALLOC_CTX *ctx,
1184 struct cli_state *cli,
1185 const char *path,
1186 struct client_dfs_referral **refs,
1187 size_t *num_refs,
1188 size_t *consumed);
1189 bool cli_resolve_path(TALLOC_CTX *ctx,
1190 const char *mountpt,
1191 const struct user_auth_info *dfs_auth_info,
1192 struct cli_state *rootcli,
1193 const char *path,
1194 struct cli_state **targetcli,
1195 char **pp_targetpath);
1197 bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
1198 struct cli_state *cli,
1199 const char *sharename,
1200 char **pp_newserver,
1201 char **pp_newshare,
1202 bool force_encrypt,
1203 const char *username,
1204 const char *password,
1205 const char *domain);
1207 /* The following definitions come from libsmb/clientgen.c */
1209 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero);
1210 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout);
1211 void cli_set_port(struct cli_state *cli, int port);
1212 bool cli_state_seqnum_persistent(struct cli_state *cli,
1213 uint16_t mid);
1214 bool cli_state_seqnum_remove(struct cli_state *cli,
1215 uint16_t mid);
1216 bool cli_receive_smb(struct cli_state *cli);
1217 bool cli_send_smb(struct cli_state *cli);
1218 void cli_setup_packet_buf(struct cli_state *cli, char *buf);
1219 void cli_setup_packet(struct cli_state *cli);
1220 void cli_setup_bcc(struct cli_state *cli, void *p);
1221 NTSTATUS cli_set_domain(struct cli_state *cli, const char *domain);
1222 NTSTATUS cli_set_username(struct cli_state *cli, const char *username);
1223 NTSTATUS cli_set_password(struct cli_state *cli, const char *password);
1224 NTSTATUS cli_init_creds(struct cli_state *cli, const char *username, const char *domain, const char *password);
1225 struct cli_state *cli_initialise(void);
1226 struct cli_state *cli_initialise_ex(int signing_state);
1227 void cli_nt_pipes_close(struct cli_state *cli);
1228 void cli_shutdown(struct cli_state *cli);
1229 void cli_sockopt(struct cli_state *cli, const char *options);
1230 uint16 cli_setpid(struct cli_state *cli, uint16 pid);
1231 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive);
1232 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
1233 struct cli_state *cli, uint16_t num_echos,
1234 DATA_BLOB data);
1235 NTSTATUS cli_echo_recv(struct tevent_req *req);
1236 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data);
1237 bool cli_ucs2(struct cli_state *cli);
1238 bool is_andx_req(uint8_t cmd);
1239 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
1240 uint8_t smb_command, uint8_t additional_flags,
1241 uint8_t wct, uint16_t *vwv,
1242 uint32_t num_bytes, const uint8_t *bytes,
1243 struct tevent_req **result_parent,
1244 uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
1245 uint32_t *pnum_bytes, uint8_t **pbytes);
1247 /* The following definitions come from libsmb/clierror.c */
1249 const char *cli_errstr(struct cli_state *cli);
1250 NTSTATUS cli_nt_error(struct cli_state *cli);
1251 void cli_dos_error(struct cli_state *cli, uint8 *eclass, uint32 *ecode);
1252 int cli_errno(struct cli_state *cli);
1253 bool cli_is_error(struct cli_state *cli);
1254 bool cli_is_nt_error(struct cli_state *cli);
1255 bool cli_is_dos_error(struct cli_state *cli);
1256 NTSTATUS cli_get_nt_error(struct cli_state *cli);
1257 void cli_set_nt_error(struct cli_state *cli, NTSTATUS status);
1258 void cli_reset_error(struct cli_state *cli);
1259 bool cli_state_is_connected(struct cli_state *cli);
1261 /* The following definitions come from libsmb/clifile.c */
1263 struct tevent_req *cli_setpathinfo_send(TALLOC_CTX *mem_ctx,
1264 struct tevent_context *ev,
1265 struct cli_state *cli,
1266 uint16_t level,
1267 const char *path,
1268 uint8_t *data,
1269 size_t data_len);
1270 NTSTATUS cli_setpathinfo_recv(struct tevent_req *req);
1271 NTSTATUS cli_setpathinfo(struct cli_state *cli,
1272 uint16_t level,
1273 const char *path,
1274 uint8_t *data,
1275 size_t data_len);
1277 struct tevent_req *cli_posix_symlink_send(TALLOC_CTX *mem_ctx,
1278 struct event_context *ev,
1279 struct cli_state *cli,
1280 const char *oldname,
1281 const char *newname);
1282 NTSTATUS cli_posix_symlink_recv(struct tevent_req *req);
1283 NTSTATUS cli_posix_symlink(struct cli_state *cli,
1284 const char *oldname,
1285 const char *newname);
1286 struct tevent_req *cli_posix_readlink_send(TALLOC_CTX *mem_ctx,
1287 struct event_context *ev,
1288 struct cli_state *cli,
1289 const char *fname,
1290 size_t len);
1291 NTSTATUS cli_posix_readlink_recv(struct tevent_req *req, struct cli_state *cli,
1292 char *retpath, size_t len);
1293 NTSTATUS cli_posix_readlink(struct cli_state *cli, const char *fname,
1294 char *linkpath, size_t len);
1295 struct tevent_req *cli_posix_hardlink_send(TALLOC_CTX *mem_ctx,
1296 struct event_context *ev,
1297 struct cli_state *cli,
1298 const char *oldname,
1299 const char *newname);
1300 NTSTATUS cli_posix_hardlink_recv(struct tevent_req *req);
1301 NTSTATUS cli_posix_hardlink(struct cli_state *cli,
1302 const char *oldname,
1303 const char *newname);
1304 uint32_t unix_perms_to_wire(mode_t perms);
1305 mode_t wire_perms_to_unix(uint32_t perms);
1306 struct tevent_req *cli_posix_getfacl_send(TALLOC_CTX *mem_ctx,
1307 struct event_context *ev,
1308 struct cli_state *cli,
1309 const char *fname);
1310 NTSTATUS cli_posix_getfacl_recv(struct tevent_req *req,
1311 TALLOC_CTX *mem_ctx,
1312 size_t *prb_size,
1313 char **retbuf);
1314 NTSTATUS cli_posix_getfacl(struct cli_state *cli,
1315 const char *fname,
1316 TALLOC_CTX *mem_ctx,
1317 size_t *prb_size,
1318 char **retbuf);
1319 struct tevent_req *cli_posix_stat_send(TALLOC_CTX *mem_ctx,
1320 struct event_context *ev,
1321 struct cli_state *cli,
1322 const char *fname);
1323 NTSTATUS cli_posix_stat_recv(struct tevent_req *req,
1324 SMB_STRUCT_STAT *sbuf);
1325 NTSTATUS cli_posix_stat(struct cli_state *cli,
1326 const char *fname,
1327 SMB_STRUCT_STAT *sbuf);
1328 struct tevent_req *cli_posix_chmod_send(TALLOC_CTX *mem_ctx,
1329 struct event_context *ev,
1330 struct cli_state *cli,
1331 const char *fname,
1332 mode_t mode);
1333 NTSTATUS cli_posix_chmod_recv(struct tevent_req *req);
1334 NTSTATUS cli_posix_chmod(struct cli_state *cli, const char *fname, mode_t mode);
1335 struct tevent_req *cli_posix_chown_send(TALLOC_CTX *mem_ctx,
1336 struct event_context *ev,
1337 struct cli_state *cli,
1338 const char *fname,
1339 uid_t uid,
1340 gid_t gid);
1341 NTSTATUS cli_posix_chown_recv(struct tevent_req *req);
1342 NTSTATUS cli_posix_chown(struct cli_state *cli,
1343 const char *fname,
1344 uid_t uid,
1345 gid_t gid);
1346 struct tevent_req *cli_rename_send(TALLOC_CTX *mem_ctx,
1347 struct event_context *ev,
1348 struct cli_state *cli,
1349 const char *fname_src,
1350 const char *fname_dst);
1351 NTSTATUS cli_rename_recv(struct tevent_req *req);
1352 NTSTATUS cli_rename(struct cli_state *cli, const char *fname_src, const char *fname_dst);
1353 struct tevent_req *cli_ntrename_send(TALLOC_CTX *mem_ctx,
1354 struct event_context *ev,
1355 struct cli_state *cli,
1356 const char *fname_src,
1357 const char *fname_dst);
1358 NTSTATUS cli_ntrename_recv(struct tevent_req *req);
1359 NTSTATUS cli_ntrename(struct cli_state *cli, const char *fname_src, const char *fname_dst);
1361 struct tevent_req *cli_nt_hardlink_send(TALLOC_CTX *mem_ctx,
1362 struct event_context *ev,
1363 struct cli_state *cli,
1364 const char *fname_src,
1365 const char *fname_dst);
1366 NTSTATUS cli_nt_hardlink_recv(struct tevent_req *req);
1367 NTSTATUS cli_nt_hardlink(struct cli_state *cli, const char *fname_src, const char *fname_dst);
1369 struct tevent_req *cli_unlink_send(TALLOC_CTX *mem_ctx,
1370 struct event_context *ev,
1371 struct cli_state *cli,
1372 const char *fname,
1373 uint16_t mayhave_attrs);
1374 NTSTATUS cli_unlink_recv(struct tevent_req *req);
1375 NTSTATUS cli_unlink(struct cli_state *cli, const char *fname, uint16_t mayhave_attrs);
1377 struct tevent_req *cli_mkdir_send(TALLOC_CTX *mem_ctx,
1378 struct event_context *ev,
1379 struct cli_state *cli,
1380 const char *dname);
1381 NTSTATUS cli_mkdir_recv(struct tevent_req *req);
1382 NTSTATUS cli_mkdir(struct cli_state *cli, const char *dname);
1383 struct tevent_req *cli_rmdir_send(TALLOC_CTX *mem_ctx,
1384 struct event_context *ev,
1385 struct cli_state *cli,
1386 const char *dname);
1387 NTSTATUS cli_rmdir_recv(struct tevent_req *req);
1388 NTSTATUS cli_rmdir(struct cli_state *cli, const char *dname);
1389 struct tevent_req *cli_nt_delete_on_close_send(TALLOC_CTX *mem_ctx,
1390 struct event_context *ev,
1391 struct cli_state *cli,
1392 uint16_t fnum,
1393 bool flag);
1394 NTSTATUS cli_nt_delete_on_close_recv(struct tevent_req *req);
1395 NTSTATUS cli_nt_delete_on_close(struct cli_state *cli, uint16_t fnum, bool flag);
1396 struct tevent_req *cli_ntcreate_send(TALLOC_CTX *mem_ctx,
1397 struct event_context *ev,
1398 struct cli_state *cli,
1399 const char *fname,
1400 uint32_t CreatFlags,
1401 uint32_t DesiredAccess,
1402 uint32_t FileAttributes,
1403 uint32_t ShareAccess,
1404 uint32_t CreateDisposition,
1405 uint32_t CreateOptions,
1406 uint8_t SecurityFlags);
1407 NTSTATUS cli_ntcreate_recv(struct tevent_req *req, uint16_t *pfnum);
1408 NTSTATUS cli_ntcreate(struct cli_state *cli,
1409 const char *fname,
1410 uint32_t CreatFlags,
1411 uint32_t DesiredAccess,
1412 uint32_t FileAttributes,
1413 uint32_t ShareAccess,
1414 uint32_t CreateDisposition,
1415 uint32_t CreateOptions,
1416 uint8_t SecurityFlags,
1417 uint16_t *pfid);
1418 uint8_t *smb_bytes_push_str(uint8_t *buf, bool ucs2, const char *str,
1419 size_t str_len, size_t *pconverted_size);
1420 uint8_t *smb_bytes_push_bytes(uint8_t *buf, uint8_t prefix,
1421 const uint8_t *bytes, size_t num_bytes);
1422 struct tevent_req *cli_open_create(TALLOC_CTX *mem_ctx,
1423 struct event_context *ev,
1424 struct cli_state *cli, const char *fname,
1425 int flags, int share_mode,
1426 struct tevent_req **psmbreq);
1427 struct tevent_req *cli_open_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
1428 struct cli_state *cli, const char *fname,
1429 int flags, int share_mode);
1430 NTSTATUS cli_open_recv(struct tevent_req *req, uint16_t *fnum);
1431 NTSTATUS cli_open(struct cli_state *cli, const char *fname, int flags, int share_mode, uint16_t *pfnum);
1432 struct tevent_req *cli_close_create(TALLOC_CTX *mem_ctx,
1433 struct event_context *ev,
1434 struct cli_state *cli, uint16_t fnum,
1435 struct tevent_req **psubreq);
1436 struct tevent_req *cli_close_send(TALLOC_CTX *mem_ctx,
1437 struct event_context *ev,
1438 struct cli_state *cli, uint16_t fnum);
1439 NTSTATUS cli_close_recv(struct tevent_req *req);
1440 NTSTATUS cli_close(struct cli_state *cli, uint16_t fnum);
1441 struct tevent_req *cli_ftruncate_send(TALLOC_CTX *mem_ctx,
1442 struct event_context *ev,
1443 struct cli_state *cli,
1444 uint16_t fnum,
1445 uint64_t size);
1446 NTSTATUS cli_ftruncate_recv(struct tevent_req *req);
1447 NTSTATUS cli_ftruncate(struct cli_state *cli, uint16_t fnum, uint64_t size);
1448 NTSTATUS cli_locktype(struct cli_state *cli, uint16_t fnum,
1449 uint32_t offset, uint32_t len,
1450 int timeout, unsigned char locktype);
1451 bool cli_lock(struct cli_state *cli, uint16_t fnum,
1452 uint32_t offset, uint32_t len, int timeout, enum brl_type lock_type);
1453 struct tevent_req *cli_unlock_send(TALLOC_CTX *mem_ctx,
1454 struct event_context *ev,
1455 struct cli_state *cli,
1456 uint16_t fnum,
1457 uint64_t offset,
1458 uint64_t len);
1459 NTSTATUS cli_unlock_recv(struct tevent_req *req);
1460 NTSTATUS cli_unlock(struct cli_state *cli, uint16_t fnum, uint32_t offset, uint32_t len);
1461 bool cli_lock64(struct cli_state *cli, uint16_t fnum,
1462 uint64_t offset, uint64_t len, int timeout, enum brl_type lock_type);
1463 struct tevent_req *cli_unlock64_send(TALLOC_CTX *mem_ctx,
1464 struct event_context *ev,
1465 struct cli_state *cli,
1466 uint16_t fnum,
1467 uint64_t offset,
1468 uint64_t len);
1469 NTSTATUS cli_unlock64_recv(struct tevent_req *req);
1470 NTSTATUS cli_unlock64(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
1471 struct tevent_req *cli_posix_lock_send(TALLOC_CTX *mem_ctx,
1472 struct event_context *ev,
1473 struct cli_state *cli,
1474 uint16_t fnum,
1475 uint64_t offset,
1476 uint64_t len,
1477 bool wait_lock,
1478 enum brl_type lock_type);
1479 NTSTATUS cli_posix_lock_recv(struct tevent_req *req);
1480 NTSTATUS cli_posix_lock(struct cli_state *cli, uint16_t fnum,
1481 uint64_t offset, uint64_t len,
1482 bool wait_lock, enum brl_type lock_type);
1483 struct tevent_req *cli_posix_unlock_send(TALLOC_CTX *mem_ctx,
1484 struct event_context *ev,
1485 struct cli_state *cli,
1486 uint16_t fnum,
1487 uint64_t offset,
1488 uint64_t len);
1489 NTSTATUS cli_posix_unlock_recv(struct tevent_req *req);
1490 NTSTATUS cli_posix_unlock(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
1491 struct tevent_req *cli_getattrE_send(TALLOC_CTX *mem_ctx,
1492 struct event_context *ev,
1493 struct cli_state *cli,
1494 uint16_t fnum);
1495 NTSTATUS cli_getattrE_recv(struct tevent_req *req,
1496 uint16_t *attr,
1497 SMB_OFF_T *size,
1498 time_t *change_time,
1499 time_t *access_time,
1500 time_t *write_time);
1501 NTSTATUS cli_getattrE(struct cli_state *cli,
1502 uint16_t fnum,
1503 uint16_t *attr,
1504 SMB_OFF_T *size,
1505 time_t *change_time,
1506 time_t *access_time,
1507 time_t *write_time);
1508 struct tevent_req *cli_setattrE_send(TALLOC_CTX *mem_ctx,
1509 struct event_context *ev,
1510 struct cli_state *cli,
1511 uint16_t fnum,
1512 time_t change_time,
1513 time_t access_time,
1514 time_t write_time);
1515 NTSTATUS cli_setattrE_recv(struct tevent_req *req);
1516 NTSTATUS cli_setattrE(struct cli_state *cli,
1517 uint16_t fnum,
1518 time_t change_time,
1519 time_t access_time,
1520 time_t write_time);
1521 struct tevent_req *cli_getatr_send(TALLOC_CTX *mem_ctx,
1522 struct event_context *ev,
1523 struct cli_state *cli,
1524 const char *fname);
1525 NTSTATUS cli_getatr_recv(struct tevent_req *req,
1526 uint16_t *attr,
1527 SMB_OFF_T *size,
1528 time_t *write_time);
1529 NTSTATUS cli_getatr(struct cli_state *cli,
1530 const char *fname,
1531 uint16_t *attr,
1532 SMB_OFF_T *size,
1533 time_t *write_time);
1534 struct tevent_req *cli_setatr_send(TALLOC_CTX *mem_ctx,
1535 struct event_context *ev,
1536 struct cli_state *cli,
1537 const char *fname,
1538 uint16_t attr,
1539 time_t mtime);
1540 NTSTATUS cli_setatr_recv(struct tevent_req *req);
1541 NTSTATUS cli_setatr(struct cli_state *cli,
1542 const char *fname,
1543 uint16_t attr,
1544 time_t mtime);
1545 struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
1546 struct event_context *ev,
1547 struct cli_state *cli,
1548 const char *fname);
1549 NTSTATUS cli_chkpath_recv(struct tevent_req *req);
1550 NTSTATUS cli_chkpath(struct cli_state *cli, const char *path);
1551 struct tevent_req *cli_dskattr_send(TALLOC_CTX *mem_ctx,
1552 struct event_context *ev,
1553 struct cli_state *cli);
1554 NTSTATUS cli_dskattr_recv(struct tevent_req *req, int *bsize, int *total,
1555 int *avail);
1556 NTSTATUS cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail);
1557 struct tevent_req *cli_ctemp_send(TALLOC_CTX *mem_ctx,
1558 struct event_context *ev,
1559 struct cli_state *cli,
1560 const char *path);
1561 NTSTATUS cli_ctemp_recv(struct tevent_req *req,
1562 TALLOC_CTX *ctx,
1563 uint16_t *pfnum,
1564 char **outfile);
1565 NTSTATUS cli_ctemp(struct cli_state *cli,
1566 TALLOC_CTX *ctx,
1567 const char *path,
1568 uint16_t *pfnum,
1569 char **out_path);
1570 NTSTATUS cli_raw_ioctl(struct cli_state *cli, uint16_t fnum, uint32_t code, DATA_BLOB *blob);
1571 NTSTATUS cli_set_ea_path(struct cli_state *cli, const char *path,
1572 const char *ea_name, const char *ea_val,
1573 size_t ea_len);
1574 NTSTATUS cli_set_ea_fnum(struct cli_state *cli, uint16_t fnum,
1575 const char *ea_name, const char *ea_val,
1576 size_t ea_len);
1577 struct tevent_req *cli_get_ea_list_path_send(TALLOC_CTX *mem_ctx,
1578 struct tevent_context *ev,
1579 struct cli_state *cli,
1580 const char *fname);
1581 NTSTATUS cli_get_ea_list_path_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1582 size_t *pnum_eas, struct ea_struct **peas);
1583 NTSTATUS cli_get_ea_list_path(struct cli_state *cli, const char *path,
1584 TALLOC_CTX *ctx,
1585 size_t *pnum_eas,
1586 struct ea_struct **pea_list);
1587 struct tevent_req *cli_posix_open_send(TALLOC_CTX *mem_ctx,
1588 struct event_context *ev,
1589 struct cli_state *cli,
1590 const char *fname,
1591 int flags,
1592 mode_t mode);
1593 NTSTATUS cli_posix_open_recv(struct tevent_req *req, uint16_t *pfnum);
1594 NTSTATUS cli_posix_open(struct cli_state *cli, const char *fname,
1595 int flags, mode_t mode, uint16_t *fnum);
1596 struct tevent_req *cli_posix_mkdir_send(TALLOC_CTX *mem_ctx,
1597 struct event_context *ev,
1598 struct cli_state *cli,
1599 const char *fname,
1600 mode_t mode);
1601 NTSTATUS cli_posix_mkdir_recv(struct tevent_req *req);
1602 NTSTATUS cli_posix_mkdir(struct cli_state *cli, const char *fname, mode_t mode);
1604 struct tevent_req *cli_posix_unlink_send(TALLOC_CTX *mem_ctx,
1605 struct event_context *ev,
1606 struct cli_state *cli,
1607 const char *fname);
1608 NTSTATUS cli_posix_unlink_recv(struct tevent_req *req);
1609 NTSTATUS cli_posix_unlink(struct cli_state *cli, const char *fname);
1611 struct tevent_req *cli_posix_rmdir_send(TALLOC_CTX *mem_ctx,
1612 struct event_context *ev,
1613 struct cli_state *cli,
1614 const char *fname);
1615 NTSTATUS cli_posix_rmdir_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx);
1616 NTSTATUS cli_posix_rmdir(struct cli_state *cli, const char *fname);
1617 struct tevent_req *cli_notify_send(TALLOC_CTX *mem_ctx,
1618 struct tevent_context *ev,
1619 struct cli_state *cli, uint16_t fnum,
1620 uint32_t buffer_size,
1621 uint32_t completion_filter, bool recursive);
1622 NTSTATUS cli_notify_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1623 uint32_t *pnum_changes,
1624 struct notify_change **pchanges);
1626 /* The following definitions come from libsmb/clifsinfo.c */
1628 struct tevent_req *cli_unix_extensions_version_send(TALLOC_CTX *mem_ctx,
1629 struct tevent_context *ev,
1630 struct cli_state *cli);
1631 NTSTATUS cli_unix_extensions_version_recv(struct tevent_req *req,
1632 uint16_t *pmajor, uint16_t *pminor,
1633 uint32_t *pcaplow,
1634 uint32_t *pcaphigh);
1635 NTSTATUS cli_unix_extensions_version(struct cli_state *cli, uint16 *pmajor,
1636 uint16 *pminor, uint32 *pcaplow,
1637 uint32 *pcaphigh);
1638 struct tevent_req *cli_set_unix_extensions_capabilities_send(
1639 TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli,
1640 uint16_t major, uint16_t minor, uint32_t caplow, uint32_t caphigh);
1641 NTSTATUS cli_set_unix_extensions_capabilities_recv(struct tevent_req *req);
1642 NTSTATUS cli_set_unix_extensions_capabilities(struct cli_state *cli,
1643 uint16 major, uint16 minor,
1644 uint32 caplow, uint32 caphigh);
1645 struct tevent_req *cli_get_fs_attr_info_send(TALLOC_CTX *mem_ctx,
1646 struct tevent_context *ev,
1647 struct cli_state *cli);
1648 NTSTATUS cli_get_fs_attr_info_recv(struct tevent_req *req, uint32_t *fs_attr);
1649 NTSTATUS cli_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr);
1650 NTSTATUS cli_get_fs_volume_info(struct cli_state *cli, fstring volume_name,
1651 uint32 *pserial_number, time_t *pdate);
1652 NTSTATUS cli_get_fs_full_size_info(struct cli_state *cli,
1653 uint64_t *total_allocation_units,
1654 uint64_t *caller_allocation_units,
1655 uint64_t *actual_allocation_units,
1656 uint64_t *sectors_per_allocation_unit,
1657 uint64_t *bytes_per_sector);
1658 NTSTATUS cli_get_posix_fs_info(struct cli_state *cli,
1659 uint32 *optimal_transfer_size,
1660 uint32 *block_size,
1661 uint64_t *total_blocks,
1662 uint64_t *blocks_available,
1663 uint64_t *user_blocks_available,
1664 uint64_t *total_file_nodes,
1665 uint64_t *free_file_nodes,
1666 uint64_t *fs_identifier);
1667 NTSTATUS cli_raw_ntlm_smb_encryption_start(struct cli_state *cli,
1668 const char *user,
1669 const char *pass,
1670 const char *domain);
1671 NTSTATUS cli_gss_smb_encryption_start(struct cli_state *cli);
1672 NTSTATUS cli_force_encryption(struct cli_state *c,
1673 const char *username,
1674 const char *password,
1675 const char *domain);
1677 /* The following definitions come from libsmb/clilist.c */
1679 NTSTATUS cli_list_old(struct cli_state *cli,const char *Mask,uint16 attribute,
1680 NTSTATUS (*fn)(const char *, struct file_info *,
1681 const char *, void *), void *state);
1682 NTSTATUS cli_list_trans(struct cli_state *cli, const char *mask,
1683 uint16_t attribute, int info_level,
1684 NTSTATUS (*fn)(const char *mnt, struct file_info *finfo,
1685 const char *mask, void *private_data),
1686 void *private_data);
1687 struct tevent_req *cli_list_send(TALLOC_CTX *mem_ctx,
1688 struct tevent_context *ev,
1689 struct cli_state *cli,
1690 const char *mask,
1691 uint16_t attribute,
1692 uint16_t info_level);
1693 NTSTATUS cli_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1694 struct file_info **finfo, size_t *num_finfo);
1695 NTSTATUS cli_list(struct cli_state *cli,const char *Mask,uint16 attribute,
1696 NTSTATUS (*fn)(const char *, struct file_info *, const char *,
1697 void *), void *state);
1699 /* The following definitions come from libsmb/climessage.c */
1701 struct tevent_req *cli_message_send(TALLOC_CTX *mem_ctx,
1702 struct tevent_context *ev,
1703 struct cli_state *cli,
1704 const char *host, const char *username,
1705 const char *message);
1706 NTSTATUS cli_message_recv(struct tevent_req *req);
1707 NTSTATUS cli_message(struct cli_state *cli, const char *host,
1708 const char *username, const char *message);
1710 /* The following definitions come from libsmb/clioplock.c */
1712 struct tevent_req *cli_oplock_ack_send(TALLOC_CTX *mem_ctx,
1713 struct tevent_context *ev,
1714 struct cli_state *cli,
1715 uint16_t fnum, uint8_t level);
1716 NTSTATUS cli_oplock_ack_recv(struct tevent_req *req);
1717 NTSTATUS cli_oplock_ack(struct cli_state *cli, uint16_t fnum, unsigned char level);
1718 void cli_oplock_handler(struct cli_state *cli,
1719 NTSTATUS (*handler)(struct cli_state *, uint16_t, unsigned char));
1721 /* The following definitions come from libsmb/cliprint.c */
1723 int cli_print_queue(struct cli_state *cli,
1724 void (*fn)(struct print_job_info *));
1725 int cli_printjob_del(struct cli_state *cli, int job);
1727 /* The following definitions come from libsmb/cliquota.c */
1729 NTSTATUS cli_get_quota_handle(struct cli_state *cli, uint16_t *quota_fnum);
1730 void free_ntquota_list(SMB_NTQUOTA_LIST **qt_list);
1731 NTSTATUS cli_get_user_quota(struct cli_state *cli, int quota_fnum,
1732 SMB_NTQUOTA_STRUCT *pqt);
1733 NTSTATUS cli_set_user_quota(struct cli_state *cli, int quota_fnum,
1734 SMB_NTQUOTA_STRUCT *pqt);
1735 NTSTATUS cli_list_user_quota(struct cli_state *cli, int quota_fnum,
1736 SMB_NTQUOTA_LIST **pqt_list);
1737 NTSTATUS cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum,
1738 SMB_NTQUOTA_STRUCT *pqt);
1739 NTSTATUS cli_set_fs_quota_info(struct cli_state *cli, int quota_fnum,
1740 SMB_NTQUOTA_STRUCT *pqt);
1742 /* The following definitions come from libsmb/clireadwrite.c */
1744 struct tevent_req *cli_read_andx_create(TALLOC_CTX *mem_ctx,
1745 struct event_context *ev,
1746 struct cli_state *cli, uint16_t fnum,
1747 off_t offset, size_t size,
1748 struct tevent_req **psmbreq);
1749 struct tevent_req *cli_read_andx_send(TALLOC_CTX *mem_ctx,
1750 struct event_context *ev,
1751 struct cli_state *cli, uint16_t fnum,
1752 off_t offset, size_t size);
1753 NTSTATUS cli_read_andx_recv(struct tevent_req *req, ssize_t *received,
1754 uint8_t **rcvbuf);
1755 struct tevent_req *cli_pull_send(TALLOC_CTX *mem_ctx,
1756 struct event_context *ev,
1757 struct cli_state *cli,
1758 uint16_t fnum, off_t start_offset,
1759 SMB_OFF_T size, size_t window_size,
1760 NTSTATUS (*sink)(char *buf, size_t n,
1761 void *priv),
1762 void *priv);
1763 NTSTATUS cli_pull_recv(struct tevent_req *req, SMB_OFF_T *received);
1764 NTSTATUS cli_pull(struct cli_state *cli, uint16_t fnum,
1765 off_t start_offset, SMB_OFF_T size, size_t window_size,
1766 NTSTATUS (*sink)(char *buf, size_t n, void *priv),
1767 void *priv, SMB_OFF_T *received);
1768 ssize_t cli_read(struct cli_state *cli, uint16_t fnum, char *buf,
1769 off_t offset, size_t size);
1770 NTSTATUS cli_smbwrite(struct cli_state *cli, uint16_t fnum, char *buf,
1771 off_t offset, size_t size1, size_t *ptotal);
1772 struct tevent_req *cli_write_andx_create(TALLOC_CTX *mem_ctx,
1773 struct event_context *ev,
1774 struct cli_state *cli, uint16_t fnum,
1775 uint16_t mode, const uint8_t *buf,
1776 off_t offset, size_t size,
1777 struct tevent_req **reqs_before,
1778 int num_reqs_before,
1779 struct tevent_req **psmbreq);
1780 struct tevent_req *cli_write_andx_send(TALLOC_CTX *mem_ctx,
1781 struct event_context *ev,
1782 struct cli_state *cli, uint16_t fnum,
1783 uint16_t mode, const uint8_t *buf,
1784 off_t offset, size_t size);
1785 NTSTATUS cli_write_andx_recv(struct tevent_req *req, size_t *pwritten);
1787 NTSTATUS cli_writeall(struct cli_state *cli, uint16_t fnum, uint16_t mode,
1788 const uint8_t *buf, off_t offset, size_t size,
1789 size_t *pwritten);
1791 struct tevent_req *cli_push_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
1792 struct cli_state *cli,
1793 uint16_t fnum, uint16_t mode,
1794 off_t start_offset, size_t window_size,
1795 size_t (*source)(uint8_t *buf, size_t n,
1796 void *priv),
1797 void *priv);
1798 NTSTATUS cli_push_recv(struct tevent_req *req);
1799 NTSTATUS cli_push(struct cli_state *cli, uint16_t fnum, uint16_t mode,
1800 off_t start_offset, size_t window_size,
1801 size_t (*source)(uint8_t *buf, size_t n, void *priv),
1802 void *priv);
1804 /* The following definitions come from libsmb/clisecdesc.c */
1806 struct security_descriptor *cli_query_secdesc(struct cli_state *cli, uint16_t fnum,
1807 TALLOC_CTX *mem_ctx);
1808 NTSTATUS cli_set_secdesc(struct cli_state *cli, uint16_t fnum,
1809 struct security_descriptor *sd);
1811 /* The following definitions come from libsmb/clispnego.c */
1813 DATA_BLOB spnego_gen_negTokenInit(TALLOC_CTX *ctx,
1814 const char *OIDs[],
1815 DATA_BLOB *psecblob,
1816 const char *principal);
1818 #ifndef ASN1_MAX_OIDS
1819 #define ASN1_MAX_OIDS 20
1820 #endif
1821 bool spnego_parse_negTokenInit(TALLOC_CTX *ctx,
1822 DATA_BLOB blob,
1823 char *OIDs[ASN1_MAX_OIDS],
1824 char **principal,
1825 DATA_BLOB *secblob);
1826 DATA_BLOB spnego_gen_krb5_wrap(TALLOC_CTX *ctx, const DATA_BLOB ticket, const uint8 tok_id[2]);
1827 bool spnego_parse_krb5_wrap(TALLOC_CTX *ctx, DATA_BLOB blob, DATA_BLOB *ticket, uint8 tok_id[2]);
1828 int spnego_gen_krb5_negTokenInit(TALLOC_CTX *ctx,
1829 const char *principal, int time_offset,
1830 DATA_BLOB *targ,
1831 DATA_BLOB *session_key_krb5, uint32 extra_ap_opts,
1832 time_t *expire_time);
1833 bool spnego_parse_challenge(TALLOC_CTX *ctx, const DATA_BLOB blob,
1834 DATA_BLOB *chal1, DATA_BLOB *chal2);
1835 DATA_BLOB spnego_gen_auth(TALLOC_CTX *ctx, DATA_BLOB blob);
1836 bool spnego_parse_auth(TALLOC_CTX *ctx, DATA_BLOB blob, DATA_BLOB *auth);
1837 DATA_BLOB spnego_gen_auth_response(TALLOC_CTX *ctx, DATA_BLOB *reply, NTSTATUS nt_status,
1838 const char *mechOID);
1839 bool spnego_parse_auth_response(TALLOC_CTX *ctx,
1840 DATA_BLOB blob, NTSTATUS nt_status,
1841 const char *mechOID,
1842 DATA_BLOB *auth);
1844 bool spnego_parse_auth_and_mic(TALLOC_CTX *ctx, DATA_BLOB blob,
1845 DATA_BLOB *auth, DATA_BLOB *signature);
1846 DATA_BLOB spnego_gen_auth_response_and_mic(TALLOC_CTX *ctx,
1847 NTSTATUS nt_status,
1848 const char *mechOID,
1849 DATA_BLOB *reply,
1850 DATA_BLOB *mechlistMIC);
1851 bool spnego_mech_list_blob(TALLOC_CTX *mem_ctx,
1852 char **oid_list, DATA_BLOB *data);
1854 /* The following definitions come from libsmb/clistr.c */
1856 size_t clistr_push_fn(const char *function,
1857 unsigned int line,
1858 struct cli_state *cli,
1859 void *dest,
1860 const char *src,
1861 int dest_len,
1862 int flags);
1863 size_t clistr_pull_fn(const char *function,
1864 unsigned int line,
1865 const char *inbuf,
1866 char *dest,
1867 const void *src,
1868 int dest_len,
1869 int src_len,
1870 int flags);
1871 size_t clistr_pull_talloc_fn(const char *function,
1872 unsigned int line,
1873 TALLOC_CTX *ctx,
1874 const char *base,
1875 uint16_t flags2,
1876 char **pp_dest,
1877 const void *src,
1878 int src_len,
1879 int flags);
1880 size_t clistr_align_out(struct cli_state *cli, const void *p, int flags);
1882 /* The following definitions come from libsmb/clitrans.c */
1884 struct tevent_req *cli_trans_send(
1885 TALLOC_CTX *mem_ctx, struct event_context *ev,
1886 struct cli_state *cli, uint8_t cmd,
1887 const char *pipe_name, uint16_t fid, uint16_t function, int flags,
1888 uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
1889 uint8_t *param, uint32_t num_param, uint32_t max_param,
1890 uint8_t *data, uint32_t num_data, uint32_t max_data);
1891 NTSTATUS cli_trans_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1892 uint16_t *recv_flags2,
1893 uint16_t **setup, uint8_t min_setup,
1894 uint8_t *num_setup,
1895 uint8_t **param, uint32_t min_param,
1896 uint32_t *num_param,
1897 uint8_t **data, uint32_t min_data,
1898 uint32_t *num_data);
1899 NTSTATUS cli_trans(TALLOC_CTX *mem_ctx, struct cli_state *cli,
1900 uint8_t trans_cmd,
1901 const char *pipe_name, uint16_t fid, uint16_t function,
1902 int flags,
1903 uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
1904 uint8_t *param, uint32_t num_param, uint32_t max_param,
1905 uint8_t *data, uint32_t num_data, uint32_t max_data,
1906 uint16_t *recv_flags2,
1907 uint16_t **rsetup, uint8_t min_rsetup, uint8_t *num_rsetup,
1908 uint8_t **rparam, uint32_t min_rparam, uint32_t *num_rparam,
1909 uint8_t **rdata, uint32_t min_rdata, uint32_t *num_rdata);
1911 /* The following definitions come from libsmb/conncache.c */
1913 NTSTATUS check_negative_conn_cache( const char *domain, const char *server);
1914 void add_failed_connection_entry(const char *domain, const char *server, NTSTATUS result) ;
1915 void flush_negative_conn_cache_for_domain(const char *domain);
1917 /* The following definitions come from libsmb/dsgetdcname.c */
1919 struct netr_DsRGetDCNameInfo;
1921 void debug_dsdcinfo_flags(int lvl, uint32_t flags);
1922 NTSTATUS dsgetdcname(TALLOC_CTX *mem_ctx,
1923 struct messaging_context *msg_ctx,
1924 const char *domain_name,
1925 const struct GUID *domain_guid,
1926 const char *site_name,
1927 uint32_t flags,
1928 struct netr_DsRGetDCNameInfo **info);
1930 /* The following definitions come from libsmb/errormap.c */
1932 NTSTATUS dos_to_ntstatus(uint8 eclass, uint32 ecode);
1933 void ntstatus_to_dos(NTSTATUS ntstatus, uint8 *eclass, uint32 *ecode);
1934 NTSTATUS werror_to_ntstatus(WERROR error);
1935 WERROR ntstatus_to_werror(NTSTATUS error);
1936 NTSTATUS map_nt_error_from_gss(uint32 gss_maj, uint32 minor);
1938 /* The following definitions come from libsmb/namecache.c */
1940 bool namecache_store(const char *name,
1941 int name_type,
1942 int num_names,
1943 struct ip_service *ip_list);
1944 bool namecache_fetch(const char *name,
1945 int name_type,
1946 struct ip_service **ip_list,
1947 int *num_names);
1948 bool namecache_delete(const char *name, int name_type);
1949 void namecache_flush(void);
1950 bool namecache_status_store(const char *keyname, int keyname_type,
1951 int name_type, const struct sockaddr_storage *keyip,
1952 const char *srvname);
1953 bool namecache_status_fetch(const char *keyname,
1954 int keyname_type,
1955 int name_type,
1956 const struct sockaddr_storage *keyip,
1957 char *srvname_out);
1959 /* The following definitions come from libsmb/namequery.c */
1961 bool saf_store( const char *domain, const char *servername );
1962 bool saf_join_store( const char *domain, const char *servername );
1963 bool saf_delete( const char *domain );
1964 char *saf_fetch( const char *domain );
1965 struct tevent_req *node_status_query_send(TALLOC_CTX *mem_ctx,
1966 struct tevent_context *ev,
1967 struct nmb_name *name,
1968 const struct sockaddr_storage *addr);
1969 NTSTATUS node_status_query_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1970 struct node_status **pnode_status,
1971 int *pnum_names,
1972 struct node_status_extra *extra);
1973 NTSTATUS node_status_query(TALLOC_CTX *mem_ctx, struct nmb_name *name,
1974 const struct sockaddr_storage *addr,
1975 struct node_status **pnode_status,
1976 int *pnum_names,
1977 struct node_status_extra *extra);
1978 bool name_status_find(const char *q_name,
1979 int q_type,
1980 int type,
1981 const struct sockaddr_storage *to_ss,
1982 fstring name);
1983 int ip_service_compare(struct ip_service *ss1, struct ip_service *ss2);
1984 struct tevent_req *name_query_send(TALLOC_CTX *mem_ctx,
1985 struct tevent_context *ev,
1986 const char *name, int name_type,
1987 bool bcast, bool recurse,
1988 const struct sockaddr_storage *addr);
1989 NTSTATUS name_query_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
1990 struct sockaddr_storage **addrs, int *num_addrs,
1991 uint8_t *flags);
1992 NTSTATUS name_query(const char *name, int name_type,
1993 bool bcast, bool recurse,
1994 const struct sockaddr_storage *to_ss,
1995 TALLOC_CTX *mem_ctx,
1996 struct sockaddr_storage **addrs,
1997 int *num_addrs, uint8_t *flags);
1998 NTSTATUS name_resolve_bcast(const char *name,
1999 int name_type,
2000 TALLOC_CTX *mem_ctx,
2001 struct sockaddr_storage **return_iplist,
2002 int *return_count);
2003 NTSTATUS resolve_wins(const char *name,
2004 int name_type,
2005 struct ip_service **return_iplist,
2006 int *return_count);
2007 NTSTATUS internal_resolve_name(const char *name,
2008 int name_type,
2009 const char *sitename,
2010 struct ip_service **return_iplist,
2011 int *return_count,
2012 const char *resolve_order);
2013 bool resolve_name(const char *name,
2014 struct sockaddr_storage *return_ss,
2015 int name_type,
2016 bool prefer_ipv4);
2017 NTSTATUS resolve_name_list(TALLOC_CTX *ctx,
2018 const char *name,
2019 int name_type,
2020 struct sockaddr_storage **return_ss_arr,
2021 unsigned int *p_num_entries);
2022 bool find_master_ip(const char *group, struct sockaddr_storage *master_ss);
2023 bool get_pdc_ip(const char *domain, struct sockaddr_storage *pss);
2024 NTSTATUS get_sorted_dc_list( const char *domain,
2025 const char *sitename,
2026 struct ip_service **ip_list,
2027 int *count,
2028 bool ads_only );
2029 NTSTATUS get_kdc_list( const char *realm,
2030 const char *sitename,
2031 struct ip_service **ip_list,
2032 int *count);
2034 /* The following definitions come from libsmb/namequery_dc.c */
2036 bool get_dc_name(const char *domain,
2037 const char *realm,
2038 fstring srv_name,
2039 struct sockaddr_storage *ss_out);
2041 /* The following definitions come from libsmb/nterr.c */
2043 const char *nt_errstr(NTSTATUS nt_code);
2044 const char *get_friendly_nt_error_msg(NTSTATUS nt_code);
2045 const char *get_nt_error_c_code(NTSTATUS nt_code);
2046 NTSTATUS nt_status_string_to_code(const char *nt_status_str);
2047 NTSTATUS nt_status_squash(NTSTATUS nt_status);
2049 /* The following definitions come from libsmb/ntlmssp.c */
2050 struct ntlmssp_state;
2051 NTSTATUS ntlmssp_set_username(struct ntlmssp_state *ntlmssp_state, const char *user) ;
2052 NTSTATUS ntlmssp_set_hashes(struct ntlmssp_state *ntlmssp_state,
2053 const uint8_t lm_hash[16],
2054 const uint8_t nt_hash[16]) ;
2055 NTSTATUS ntlmssp_set_password(struct ntlmssp_state *ntlmssp_state, const char *password) ;
2056 NTSTATUS ntlmssp_set_domain(struct ntlmssp_state *ntlmssp_state, const char *domain) ;
2057 void ntlmssp_want_feature_list(struct ntlmssp_state *ntlmssp_state, char *feature_list);
2058 void ntlmssp_want_feature(struct ntlmssp_state *ntlmssp_state, uint32_t feature);
2059 NTSTATUS ntlmssp_update(struct ntlmssp_state *ntlmssp_state,
2060 const DATA_BLOB in, DATA_BLOB *out) ;
2061 NTSTATUS ntlmssp_server_start(TALLOC_CTX *mem_ctx,
2062 bool is_standalone,
2063 const char *netbios_name,
2064 const char *netbios_domain,
2065 const char *dns_name,
2066 const char *dns_domain,
2067 struct ntlmssp_state **ntlmssp_state);
2068 NTSTATUS ntlmssp_client_start(TALLOC_CTX *mem_ctx,
2069 const char *netbios_name,
2070 const char *netbios_domain,
2071 bool use_ntlmv2,
2072 struct ntlmssp_state **_ntlmssp_state);
2074 /* The following definitions come from libsmb/passchange.c */
2076 NTSTATUS remote_password_change(const char *remote_machine, const char *user_name,
2077 const char *old_passwd, const char *new_passwd,
2078 char **err_str);
2080 /* The following definitions come from libsmb/samlogon_cache.c */
2082 bool netsamlogon_cache_init(void);
2083 bool netsamlogon_cache_shutdown(void);
2084 void netsamlogon_clear_cached_user(const struct dom_sid *user_sid);
2085 bool netsamlogon_cache_store(const char *username, struct netr_SamInfo3 *info3);
2086 struct netr_SamInfo3 *netsamlogon_cache_get(TALLOC_CTX *mem_ctx, const struct dom_sid *user_sid);
2087 bool netsamlogon_cache_have(const struct dom_sid *user_sid);
2089 /* The following definitions come from libsmb/smb_seal.c */
2091 NTSTATUS get_enc_ctx_num(const uint8_t *buf, uint16 *p_enc_ctx_num);
2092 bool common_encryption_on(struct smb_trans_enc_state *es);
2093 NTSTATUS common_ntlm_decrypt_buffer(struct ntlmssp_state *ntlmssp_state, char *buf);
2094 NTSTATUS common_ntlm_encrypt_buffer(struct ntlmssp_state *ntlmssp_state,
2095 uint16 enc_ctx_num,
2096 char *buf,
2097 char **ppbuf_out);
2098 NTSTATUS common_encrypt_buffer(struct smb_trans_enc_state *es, char *buffer, char **buf_out);
2099 NTSTATUS common_decrypt_buffer(struct smb_trans_enc_state *es, char *buf);
2100 void common_free_encryption_state(struct smb_trans_enc_state **pp_es);
2101 void common_free_enc_buffer(struct smb_trans_enc_state *es, char *buf);
2102 bool cli_encryption_on(struct cli_state *cli);
2103 void cli_free_encryption_context(struct cli_state *cli);
2104 void cli_free_enc_buffer(struct cli_state *cli, char *buf);
2105 NTSTATUS cli_decrypt_message(struct cli_state *cli);
2106 NTSTATUS cli_encrypt_message(struct cli_state *cli, char *buf, char **buf_out);
2108 /* The following definitions come from libsmb/clisigning.c */
2110 bool cli_simple_set_signing(struct cli_state *cli,
2111 const DATA_BLOB user_session_key,
2112 const DATA_BLOB response);
2113 bool cli_temp_set_signing(struct cli_state *cli);
2114 void cli_calculate_sign_mac(struct cli_state *cli, char *buf, uint32_t *seqnum);
2115 bool cli_check_sign_mac(struct cli_state *cli, const char *buf, uint32_t seqnum);
2116 bool client_is_signing_on(struct cli_state *cli);
2117 bool client_is_signing_allowed(struct cli_state *cli);
2118 bool client_is_signing_mandatory(struct cli_state *cli);
2119 void cli_set_signing_negotiated(struct cli_state *cli);
2121 /* The following definitions come from libsmb/smberr.c */
2123 const char *smb_dos_err_name(uint8 e_class, uint16 num);
2124 const char *get_dos_error_msg(WERROR result);
2125 const char *smb_dos_err_class(uint8 e_class);
2126 char *smb_dos_errstr(char *inbuf);
2127 WERROR map_werror_from_unix(int error);
2129 /* The following definitions come from libsmb/trustdom_cache.c */
2131 bool trustdom_cache_enable(void);
2132 bool trustdom_cache_shutdown(void);
2133 bool trustdom_cache_store(char* name, char* alt_name, const struct dom_sid *sid,
2134 time_t timeout);
2135 bool trustdom_cache_fetch(const char* name, struct dom_sid* sid);
2136 uint32 trustdom_cache_fetch_timestamp( void );
2137 bool trustdom_cache_store_timestamp( uint32 t, time_t timeout );
2138 void trustdom_cache_flush(void);
2139 void update_trustdom_cache( void );
2141 /* The following definitions come from libsmb/trusts_util.c */
2143 NTSTATUS trust_pw_change_and_store_it(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
2144 const char *domain,
2145 const char *account_name,
2146 unsigned char orig_trust_passwd_hash[16],
2147 enum netr_SchannelType sec_channel_type);
2148 NTSTATUS trust_pw_find_change_and_store_it(struct rpc_pipe_client *cli,
2149 TALLOC_CTX *mem_ctx,
2150 const char *domain) ;
2151 bool enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain,
2152 char ***domain_names, uint32 *num_domains,
2153 struct dom_sid **sids );
2154 NTSTATUS change_trust_account_password( const char *domain, const char *remote_machine);
2156 /* The following definitions come from param/loadparm.c */
2158 char *lp_smb_ports(void);
2159 char *lp_dos_charset(void);
2160 char *lp_unix_charset(void);
2161 char *lp_display_charset(void);
2162 char *lp_logfile(void);
2163 char *lp_configfile(void);
2164 char *lp_smb_passwd_file(void);
2165 char *lp_private_dir(void);
2166 char *lp_serverstring(void);
2167 int lp_printcap_cache_time(void);
2168 char *lp_addport_cmd(void);
2169 char *lp_enumports_cmd(void);
2170 char *lp_addprinter_cmd(void);
2171 char *lp_deleteprinter_cmd(void);
2172 char *lp_os2_driver_map(void);
2173 char *lp_lockdir(void);
2174 char *lp_statedir(void);
2175 char *lp_cachedir(void);
2176 char *lp_piddir(void);
2177 char *lp_mangling_method(void);
2178 int lp_mangle_prefix(void);
2179 char *lp_utmpdir(void);
2180 char *lp_wtmpdir(void);
2181 bool lp_utmp(void);
2182 char *lp_rootdir(void);
2183 char *lp_defaultservice(void);
2184 char *lp_msg_command(void);
2185 char *lp_get_quota_command(void);
2186 char *lp_set_quota_command(void);
2187 char *lp_auto_services(void);
2188 char *lp_passwd_program(void);
2189 char *lp_passwd_chat(void);
2190 char *lp_passwordserver(void);
2191 char *lp_name_resolve_order(void);
2192 char *lp_realm(void);
2193 const char *lp_afs_username_map(void);
2194 int lp_afs_token_lifetime(void);
2195 char *lp_log_nt_token_command(void);
2196 char *lp_username_map(void);
2197 const char *lp_logon_script(void);
2198 const char *lp_logon_path(void);
2199 const char *lp_logon_drive(void);
2200 const char *lp_logon_home(void);
2201 char *lp_remote_announce(void);
2202 char *lp_remote_browse_sync(void);
2203 bool lp_nmbd_bind_explicit_broadcast(void);
2204 const char **lp_wins_server_list(void);
2205 const char **lp_interfaces(void);
2206 const char *lp_socket_address(void);
2207 char *lp_nis_home_map_name(void);
2208 const char **lp_netbios_aliases(void);
2209 const char *lp_passdb_backend(void);
2210 const char **lp_preload_modules(void);
2211 char *lp_panic_action(void);
2212 char *lp_adduser_script(void);
2213 char *lp_renameuser_script(void);
2214 char *lp_deluser_script(void);
2215 const char *lp_guestaccount(void);
2216 char *lp_addgroup_script(void);
2217 char *lp_delgroup_script(void);
2218 char *lp_addusertogroup_script(void);
2219 char *lp_deluserfromgroup_script(void);
2220 char *lp_setprimarygroup_script(void);
2221 char *lp_addmachine_script(void);
2222 char *lp_shutdown_script(void);
2223 char *lp_abort_shutdown_script(void);
2224 char *lp_username_map_script(void);
2225 int lp_username_map_cache_time(void);
2226 char *lp_check_password_script(void);
2227 char *lp_wins_hook(void);
2228 const char *lp_template_homedir(void);
2229 const char *lp_template_shell(void);
2230 const char *lp_winbind_separator(void);
2231 int lp_acl_compatibility(void);
2232 bool lp_winbind_enum_users(void);
2233 bool lp_winbind_enum_groups(void);
2234 bool lp_winbind_use_default_domain(void);
2235 bool lp_winbind_trusted_domains_only(void);
2236 bool lp_winbind_nested_groups(void);
2237 int lp_winbind_expand_groups(void);
2238 bool lp_winbind_refresh_tickets(void);
2239 bool lp_winbind_offline_logon(void);
2240 bool lp_winbind_normalize_names(void);
2241 bool lp_winbind_rpc_only(void);
2242 bool lp_create_krb5_conf(void);
2243 int lp_winbind_max_domain_connections(void);
2244 const char *lp_idmap_backend(void);
2245 int lp_idmap_cache_time(void);
2246 int lp_idmap_negative_cache_time(void);
2247 int lp_keepalive(void);
2248 bool lp_passdb_expand_explicit(void);
2249 char *lp_ldap_suffix(void);
2250 char *lp_ldap_admin_dn(void);
2251 int lp_ldap_ssl(void);
2252 bool lp_ldap_ssl_ads(void);
2253 int lp_ldap_deref(void);
2254 int lp_ldap_follow_referral(void);
2255 int lp_ldap_passwd_sync(void);
2256 bool lp_ldap_delete_dn(void);
2257 int lp_ldap_replication_sleep(void);
2258 int lp_ldap_timeout(void);
2259 int lp_ldap_connection_timeout(void);
2260 int lp_ldap_page_size(void);
2261 int lp_ldap_debug_level(void);
2262 int lp_ldap_debug_threshold(void);
2263 char *lp_add_share_cmd(void);
2264 char *lp_change_share_cmd(void);
2265 char *lp_delete_share_cmd(void);
2266 char *lp_usershare_path(void);
2267 const char **lp_usershare_prefix_allow_list(void);
2268 const char **lp_usershare_prefix_deny_list(void);
2269 const char **lp_eventlog_list(void);
2270 bool lp_registry_shares(void);
2271 bool lp_usershare_allow_guests(void);
2272 bool lp_usershare_owner_only(void);
2273 bool lp_disable_netbios(void);
2274 bool lp_reset_on_zero_vc(void);
2275 bool lp_log_writeable_files_on_exit(void);
2276 bool lp_ms_add_printer_wizard(void);
2277 bool lp_dns_proxy(void);
2278 bool lp_wins_support(void);
2279 bool lp_we_are_a_wins_server(void);
2280 bool lp_wins_proxy(void);
2281 bool lp_local_master(void);
2282 bool lp_domain_logons(void);
2283 const char **lp_init_logon_delayed_hosts(void);
2284 int lp_init_logon_delay(void);
2285 bool lp_load_printers(void);
2286 bool lp_readraw(void);
2287 bool _lp_readraw(void);
2288 bool lp_large_readwrite(void);
2289 bool lp_writeraw(void);
2290 bool _lp_writeraw(void);
2291 bool lp_null_passwords(void);
2292 bool lp_obey_pam_restrictions(void);
2293 bool lp_encrypted_passwords(void);
2294 int lp_client_schannel(void);
2295 int lp_server_schannel(void);
2296 bool lp_syslog_only(void);
2297 bool lp_timestamp_logs(void);
2298 bool lp_debug_prefix_timestamp(void);
2299 bool lp_debug_hires_timestamp(void);
2300 bool lp_debug_pid(void);
2301 bool lp_debug_uid(void);
2302 bool lp_debug_class(void);
2303 bool lp_enable_core_files(void);
2304 bool lp_browse_list(void);
2305 bool lp_nis_home_map(void);
2306 bool lp_bind_interfaces_only(void);
2307 bool lp_pam_password_change(void);
2308 bool lp_unix_password_sync(void);
2309 bool lp_passwd_chat_debug(void);
2310 int lp_passwd_chat_timeout(void);
2311 bool lp_nt_pipe_support(void);
2312 bool lp_nt_status_support(void);
2313 bool lp_stat_cache(void);
2314 int lp_max_stat_cache_size(void);
2315 bool lp_allow_trusted_domains(void);
2316 bool lp_map_untrusted_to_domain(void);
2317 int lp_restrict_anonymous(void);
2318 bool lp_lanman_auth(void);
2319 bool lp_ntlm_auth(void);
2320 bool lp_client_plaintext_auth(void);
2321 bool lp_client_lanman_auth(void);
2322 bool lp_client_ntlmv2_auth(void);
2323 bool lp_host_msdfs(void);
2324 bool lp_kernel_oplocks(void);
2325 bool lp_enhanced_browsing(void);
2326 bool lp_use_mmap(void);
2327 bool lp_unix_extensions(void);
2328 bool lp_use_spnego(void);
2329 bool lp_client_use_spnego(void);
2330 bool lp_client_use_spnego_principal(void);
2331 bool lp_send_spnego_principal(void);
2332 bool lp_hostname_lookups(void);
2333 bool lp_change_notify(const struct share_params *p );
2334 bool lp_kernel_change_notify(const struct share_params *p );
2335 char * lp_dedicated_keytab_file(void);
2336 int lp_kerberos_method(void);
2337 bool lp_defer_sharing_violations(void);
2338 bool lp_enable_privileges(void);
2339 bool lp_enable_asu_support(void);
2340 int lp_os_level(void);
2341 int lp_max_ttl(void);
2342 int lp_max_wins_ttl(void);
2343 int lp_min_wins_ttl(void);
2344 int lp_max_log_size(void);
2345 int lp_max_open_files(void);
2346 int lp_open_files_db_hash_size(void);
2347 int lp_maxxmit(void);
2348 int lp_maxmux(void);
2349 int lp_passwordlevel(void);
2350 int lp_usernamelevel(void);
2351 int lp_deadtime(void);
2352 bool lp_getwd_cache(void);
2353 int lp_maxprotocol(void);
2354 int lp_minprotocol(void);
2355 int lp_security(void);
2356 const char **lp_auth_methods(void);
2357 bool lp_paranoid_server_security(void);
2358 int lp_maxdisksize(void);
2359 int lp_lpqcachetime(void);
2360 int lp_max_smbd_processes(void);
2361 bool _lp_disable_spoolss(void);
2362 int lp_syslog(void);
2363 int lp_lm_announce(void);
2364 int lp_lm_interval(void);
2365 int lp_machine_password_timeout(void);
2366 int lp_map_to_guest(void);
2367 int lp_oplock_break_wait_time(void);
2368 int lp_lock_spin_time(void);
2369 int lp_usershare_max_shares(void);
2370 const char *lp_socket_options(void);
2371 int lp_config_backend(void);
2372 int lp_smb2_max_read(void);
2373 int lp_smb2_max_write(void);
2374 int lp_smb2_max_trans(void);
2375 int lp_smb2_max_credits(void);
2376 char *lp_preexec(int );
2377 char *lp_postexec(int );
2378 char *lp_rootpreexec(int );
2379 char *lp_rootpostexec(int );
2380 char *lp_servicename(int );
2381 const char *lp_const_servicename(int );
2382 char *lp_pathname(int );
2383 char *lp_dontdescend(int );
2384 char *lp_username(int );
2385 const char **lp_invalid_users(int );
2386 const char **lp_valid_users(int );
2387 const char **lp_admin_users(int );
2388 const char **lp_svcctl_list(void);
2389 char *lp_cups_options(int );
2390 char *lp_cups_server(void);
2391 int lp_cups_encrypt(void);
2392 char *lp_iprint_server(void);
2393 int lp_cups_connection_timeout(void);
2394 const char *lp_ctdbd_socket(void);
2395 const char **lp_cluster_addresses(void);
2396 bool lp_clustering(void);
2397 int lp_ctdb_timeout(void);
2398 int lp_ctdb_locktime_warn_threshold(void);
2399 char *lp_printcommand(int );
2400 char *lp_lpqcommand(int );
2401 char *lp_lprmcommand(int );
2402 char *lp_lppausecommand(int );
2403 char *lp_lpresumecommand(int );
2404 char *lp_queuepausecommand(int );
2405 char *lp_queueresumecommand(int );
2406 const char *lp_printjob_username(int );
2407 const char **lp_hostsallow(int );
2408 const char **lp_hostsdeny(int );
2409 char *lp_magicscript(int );
2410 char *lp_magicoutput(int );
2411 char *lp_comment(int );
2412 char *lp_force_user(int );
2413 char *lp_force_group(int );
2414 const char **lp_readlist(int );
2415 const char **lp_writelist(int );
2416 const char **lp_printer_admin(int );
2417 char *lp_fstype(int );
2418 const char **lp_vfs_objects(int );
2419 char *lp_msdfs_proxy(int );
2420 char *lp_veto_files(int );
2421 char *lp_hide_files(int );
2422 char *lp_veto_oplocks(int );
2423 bool lp_msdfs_root(int );
2424 char *lp_aio_write_behind(int );
2425 char *lp_dfree_command(int );
2426 bool lp_autoloaded(int );
2427 bool lp_preexec_close(int );
2428 bool lp_rootpreexec_close(int );
2429 int lp_casesensitive(int );
2430 bool lp_preservecase(int );
2431 bool lp_shortpreservecase(int );
2432 bool lp_hide_dot_files(int );
2433 bool lp_hide_special_files(int );
2434 bool lp_hideunreadable(int );
2435 bool lp_hideunwriteable_files(int );
2436 bool lp_browseable(int );
2437 bool lp_access_based_share_enum(int );
2438 bool lp_readonly(int );
2439 bool lp_no_set_dir(int );
2440 bool lp_guest_ok(int );
2441 bool lp_guest_only(int );
2442 bool lp_administrative_share(int );
2443 bool lp_print_ok(int );
2444 bool lp_print_notify_backchannel(int );
2445 bool lp_map_hidden(int );
2446 bool lp_map_archive(int );
2447 bool lp_store_dos_attributes(int );
2448 bool lp_dmapi_support(int );
2449 bool lp_locking(const struct share_params *p );
2450 int lp_strict_locking(const struct share_params *p );
2451 bool lp_posix_locking(const struct share_params *p );
2452 bool lp_share_modes(int );
2453 bool lp_oplocks(int );
2454 bool lp_level2_oplocks(int );
2455 bool lp_onlyuser(int );
2456 bool lp_manglednames(const struct share_params *p );
2457 bool lp_widelinks(int );
2458 bool lp_symlinks(int );
2459 bool lp_syncalways(int );
2460 bool lp_strict_allocate(int );
2461 bool lp_strict_sync(int );
2462 bool lp_map_system(int );
2463 bool lp_delete_readonly(int );
2464 bool lp_fake_oplocks(int );
2465 bool lp_recursive_veto_delete(int );
2466 bool lp_dos_filemode(int );
2467 bool lp_dos_filetimes(int );
2468 bool lp_dos_filetime_resolution(int );
2469 bool lp_fake_dir_create_times(int);
2470 bool lp_async_smb_echo_handler(void);
2471 bool lp_multicast_dns_register(void);
2472 bool lp_blocking_locks(int );
2473 bool lp_inherit_perms(int );
2474 bool lp_inherit_acls(int );
2475 bool lp_inherit_owner(int );
2476 bool lp_use_client_driver(int );
2477 bool lp_default_devmode(int );
2478 bool lp_force_printername(int );
2479 bool lp_nt_acl_support(int );
2480 bool lp_force_unknown_acl_user(int );
2481 bool lp_ea_support(int );
2482 bool _lp_use_sendfile(int );
2483 bool lp_profile_acls(int );
2484 bool lp_map_acl_inherit(int );
2485 bool lp_afs_share(int );
2486 bool lp_acl_check_permissions(int );
2487 bool lp_acl_group_control(int );
2488 bool lp_acl_map_full_control(int );
2489 int lp_create_mask(int );
2490 int lp_force_create_mode(int );
2491 int lp_security_mask(int );
2492 int lp_force_security_mode(int );
2493 int lp_dir_mask(int );
2494 int lp_force_dir_mode(int );
2495 int lp_dir_security_mask(int );
2496 int lp_force_dir_security_mode(int );
2497 int lp_max_connections(int );
2498 int lp_defaultcase(int );
2499 int lp_minprintspace(int );
2500 int lp_printing(int );
2501 int lp_max_reported_jobs(int );
2502 int lp_oplock_contention_limit(int );
2503 int lp_csc_policy(int );
2504 int lp_write_cache_size(int );
2505 int lp_block_size(int );
2506 int lp_dfree_cache_time(int );
2507 int lp_allocation_roundup_size(int );
2508 int lp_aio_read_size(int );
2509 int lp_aio_write_size(int );
2510 int lp_map_readonly(int );
2511 int lp_directory_name_cache_size(int );
2512 int lp_smb_encrypt(int );
2513 char lp_magicchar(const struct share_params *p );
2514 int lp_winbind_cache_time(void);
2515 int lp_winbind_reconnect_delay(void);
2516 int lp_winbind_max_clients(void);
2517 const char **lp_winbind_nss_info(void);
2518 int lp_algorithmic_rid_base(void);
2519 int lp_name_cache_timeout(void);
2520 int lp_client_signing(void);
2521 int lp_server_signing(void);
2522 int lp_client_ldap_sasl_wrapping(void);
2523 char *lp_parm_talloc_string(int snum, const char *type, const char *option, const char *def);
2524 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def);
2525 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def);
2526 int lp_parm_int(int snum, const char *type, const char *option, int def);
2527 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def);
2528 bool lp_parm_bool(int snum, const char *type, const char *option, bool def);
2529 int lp_parm_enum(int snum, const char *type, const char *option,
2530 const struct enum_list *_enum, int def);
2531 char *canonicalize_servicename(TALLOC_CTX *ctx, const char *src);
2532 bool lp_add_home(const char *pszHomename, int iDefaultService,
2533 const char *user, const char *pszHomedir);
2534 int lp_add_service(const char *pszService, int iDefaultService);
2535 bool lp_add_printer(const char *pszPrintername, int iDefaultService);
2536 bool lp_parameter_is_valid(const char *pszParmName);
2537 bool lp_parameter_is_global(const char *pszParmName);
2538 bool lp_parameter_is_canonical(const char *parm_name);
2539 bool lp_canonicalize_parameter(const char *parm_name, const char **canon_parm,
2540 bool *inverse);
2541 bool lp_canonicalize_parameter_with_value(const char *parm_name,
2542 const char *val,
2543 const char **canon_parm,
2544 const char **canon_val);
2545 void show_parameter_list(void);
2546 bool lp_string_is_valid_boolean(const char *parm_value);
2547 bool lp_invert_boolean(const char *str, const char **inverse_str);
2548 bool lp_canonicalize_boolean(const char *str, const char**canon_str);
2549 bool service_ok(int iService);
2550 bool process_registry_service(const char *service_name);
2551 bool process_registry_shares(void);
2552 bool lp_config_backend_is_registry(void);
2553 bool lp_config_backend_is_file(void);
2554 bool lp_file_list_changed(void);
2555 bool lp_idmap_uid(uid_t *low, uid_t *high);
2556 bool lp_idmap_gid(gid_t *low, gid_t *high);
2557 const char *lp_ldap_machine_suffix(void);
2558 const char *lp_ldap_user_suffix(void);
2559 const char *lp_ldap_group_suffix(void);
2560 const char *lp_ldap_idmap_suffix(void);
2561 void *lp_local_ptr_by_snum(int snum, void *ptr);
2562 bool lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue);
2563 bool lp_set_cmdline(const char *pszParmName, const char *pszParmValue);
2564 bool lp_set_option(const char *option);
2565 void init_locals(void);
2566 bool lp_is_default(int snum, struct parm_struct *parm);
2567 bool dump_a_parameter(int snum, char *parm_name, FILE * f, bool isGlobal);
2568 struct parm_struct *lp_get_parameter(const char *param_name);
2569 struct parm_struct *lp_next_parameter(int snum, int *i, int allparameters);
2570 bool lp_snum_ok(int iService);
2571 void lp_add_one_printer(const char *name, const char *comment, void *pdata);
2572 bool lp_loaded(void);
2573 void lp_killunused(bool (*snumused) (int));
2574 void lp_kill_all_services(void);
2575 void lp_killservice(int iServiceIn);
2576 const char* server_role_str(uint32 role);
2577 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx,
2578 SMB_STRUCT_STAT *psbuf,
2579 const char *servicename,
2580 int snum,
2581 char **lines,
2582 int numlines,
2583 char **pp_sharepath,
2584 char **pp_comment,
2585 char **pp_cp_share_name,
2586 struct security_descriptor **ppsd,
2587 bool *pallow_guest);
2588 int load_usershare_service(const char *servicename);
2589 int load_usershare_shares(void);
2590 void gfree_loadparm(void);
2591 void lp_set_in_client(bool b);
2592 bool lp_is_in_client(void);
2593 bool lp_load(const char *pszFname,
2594 bool global_only,
2595 bool save_defaults,
2596 bool add_ipc,
2597 bool initialize_globals);
2598 bool lp_load_initial_only(const char *pszFname);
2599 bool lp_load_with_registry_shares(const char *pszFname,
2600 bool global_only,
2601 bool save_defaults,
2602 bool add_ipc,
2603 bool initialize_globals);
2604 int lp_numservices(void);
2605 void lp_dump(FILE *f, bool show_defaults, int maxtoprint);
2606 void lp_dump_one(FILE * f, bool show_defaults, int snum);
2607 int lp_servicenumber(const char *pszServiceName);
2608 bool share_defined(const char *service_name);
2609 struct share_params *get_share_params(TALLOC_CTX *mem_ctx,
2610 const char *sharename);
2611 struct share_iterator *share_list_all(TALLOC_CTX *mem_ctx);
2612 struct share_params *next_share(struct share_iterator *list);
2613 struct share_params *next_printer(struct share_iterator *list);
2614 struct share_params *snum2params_static(int snum);
2615 const char *volume_label(int snum);
2616 bool lp_domain_master(void);
2617 bool lp_domain_master_true_or_auto(void);
2618 bool lp_preferred_master(void);
2619 void lp_remove_service(int snum);
2620 void lp_copy_service(int snum, const char *new_name);
2621 int lp_default_server_announce(void);
2622 int lp_major_announce_version(void);
2623 int lp_minor_announce_version(void);
2624 void lp_set_name_resolve_order(const char *new_order);
2625 const char *lp_printername(int snum);
2626 void lp_set_logfile(const char *name);
2627 int lp_maxprintjobs(int snum);
2628 const char *lp_printcapname(void);
2629 bool lp_disable_spoolss( void );
2630 void lp_set_spoolss_state( uint32 state );
2631 uint32 lp_get_spoolss_state( void );
2632 bool lp_use_sendfile(int snum, struct smb_signing_state *signing_state);
2633 void set_use_sendfile(int snum, bool val);
2634 void set_store_dos_attributes(int snum, bool val);
2635 void lp_set_mangling_method(const char *new_method);
2636 bool lp_posix_pathnames(void);
2637 void lp_set_posix_pathnames(void);
2638 enum brl_flavour lp_posix_cifsu_locktype(files_struct *fsp);
2639 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val);
2640 int lp_min_receive_file_size(void);
2641 char* lp_perfcount_module(void);
2642 void lp_set_passdb_backend(const char *backend);
2643 void widelinks_warning(int snum);
2644 char *lp_ncalrpc_dir(void);
2646 /* The following definitions come from param/loadparm_server_role.c */
2648 int lp_server_role(void);
2649 void set_server_role(void);
2651 /* The following definitions come from param/util.c */
2653 uint32 get_int_param( const char* param );
2654 char* get_string_param( const char* param );
2656 /* The following definitions come from rpc_server/srv_rpc_register.c */
2658 struct rpc_srv_callbacks {
2659 bool (*init)(void *private_data);
2660 bool (*shutdown)(void *private_data);
2661 void *private_data;
2664 struct api_struct;
2665 struct ndr_interface_table;
2666 struct pipes_struct;
2667 NTSTATUS rpc_srv_register(int version, const char *clnt,
2668 const char *srv,
2669 const struct ndr_interface_table *iface,
2670 const struct api_struct *cmds, int size,
2671 const struct rpc_srv_callbacks *rpc_srv_cb);
2673 NTSTATUS rpc_srv_unregister(const struct ndr_interface_table *iface);
2675 /* The following definitions come from rpc_server/srv_pipe.c */
2676 struct ncacn_packet;
2677 bool create_next_pdu(struct pipes_struct *p);
2678 bool api_pipe_bind_auth3(struct pipes_struct *p, struct ncacn_packet *pkt);
2679 bool setup_fault_pdu(struct pipes_struct *p, NTSTATUS status);
2680 bool is_known_pipename(const char *cli_filename, struct ndr_syntax_id *syntax);
2682 /* The following definitions come from rpc_server/srv_pipe_hnd.c */
2684 struct pipes_struct *get_first_internal_pipe(void);
2685 struct pipes_struct *get_next_internal_pipe(struct pipes_struct *p);
2686 bool check_open_pipes(void);
2687 int close_internal_rpc_pipe_hnd(struct pipes_struct *p);
2689 bool fsp_is_np(struct files_struct *fsp);
2690 struct tsocket_address;
2691 NTSTATUS np_open(TALLOC_CTX *mem_ctx, const char *name,
2692 const struct tsocket_address *local_address,
2693 const struct tsocket_address *remote_address,
2694 struct client_address *client_id,
2695 struct auth_serversupplied_info *session_info,
2696 struct messaging_context *msg_ctx,
2697 struct fake_file_handle **phandle);
2698 bool np_read_in_progress(struct fake_file_handle *handle);
2699 struct tevent_req *np_write_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
2700 struct fake_file_handle *handle,
2701 const uint8_t *data, size_t len);
2702 NTSTATUS np_write_recv(struct tevent_req *req, ssize_t *pnwritten);
2703 struct tevent_req *np_read_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
2704 struct fake_file_handle *handle,
2705 uint8_t *data, size_t len);
2706 NTSTATUS np_read_recv(struct tevent_req *req, ssize_t *nread,
2707 bool *is_data_outstanding);
2709 ssize_t process_incoming_data(struct pipes_struct *p, char *data, size_t n);
2711 /* The following definitions come from rpc_server/srv_spoolss_nt.c */
2712 void srv_spoolss_cleanup(void);
2714 void do_drv_upgrade_printer(struct messaging_context *msg,
2715 void *private_data,
2716 uint32_t msg_type,
2717 struct server_id server_id,
2718 DATA_BLOB *data);
2719 void update_monitored_printq_cache(struct messaging_context *msg_ctx);
2721 /* The following definitions come from rpc_server/srv_svcctl_nt.c */
2723 bool init_service_op_table( void );
2724 bool shutdown_service_op_table(void);
2726 /* The following definitions come from lib/server_contexts.c */
2727 struct tevent_context *server_event_context(void);
2728 void server_event_context_free(void);
2729 struct messaging_context *server_messaging_context(void);
2730 void server_messaging_context_free(void);
2732 /* The following definitions come from lib/sessionid_tdb.c */
2733 struct sessionid;
2734 bool sessionid_init(void);
2735 struct db_record *sessionid_fetch_record(TALLOC_CTX *mem_ctx, const char *key);
2736 int sessionid_traverse(int (*fn)(struct db_record *rec, const char *key,
2737 struct sessionid *session,
2738 void *private_data),
2739 void *private_data);
2740 int sessionid_traverse_read(int (*fn)(const char *key,
2741 struct sessionid *session,
2742 void *private_data),
2743 void *private_data);
2745 /* The following definitions come from utils/passwd_util.c */
2747 char *stdin_new_passwd( void);
2748 char *get_pass( const char *prompt, bool stdin_get);
2750 /* The following definitions come from lib/avahi.c */
2752 struct AvahiPoll *tevent_avahi_poll(TALLOC_CTX *mem_ctx,
2753 struct tevent_context *ev);
2755 /* The following definitions come from lib/fncall.c */
2757 struct fncall_context *fncall_context_init(TALLOC_CTX *mem_ctx,
2758 int max_threads);
2759 struct tevent_req *fncall_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
2760 struct fncall_context *ctx,
2761 void (*fn)(void *private_data),
2762 void *private_data);
2763 int fncall_recv(struct tevent_req *req, int *perr);
2765 /* The following definitions come from libsmb/smbsock_connect.c */
2767 struct tevent_req *smbsock_connect_send(TALLOC_CTX *mem_ctx,
2768 struct tevent_context *ev,
2769 const struct sockaddr_storage *addr,
2770 uint16_t port,
2771 const char *called_name,
2772 int called_type,
2773 const char *calling_name,
2774 int calling_type);
2775 NTSTATUS smbsock_connect_recv(struct tevent_req *req, int *sock,
2776 uint16_t *ret_port);
2777 NTSTATUS smbsock_connect(const struct sockaddr_storage *addr, uint16_t port,
2778 const char *called_name, int called_type,
2779 const char *calling_name, int calling_type,
2780 int *pfd, uint16_t *ret_port, int sec_timeout);
2782 struct tevent_req *smbsock_any_connect_send(TALLOC_CTX *mem_ctx,
2783 struct tevent_context *ev,
2784 const struct sockaddr_storage *addrs,
2785 const char **called_names,
2786 int *called_types,
2787 const char **calling_names,
2788 int *calling_types,
2789 size_t num_addrs, uint16_t port);
2790 NTSTATUS smbsock_any_connect_recv(struct tevent_req *req, int *pfd,
2791 size_t *chosen_index, uint16_t *chosen_port);
2792 NTSTATUS smbsock_any_connect(const struct sockaddr_storage *addrs,
2793 const char **called_names,
2794 int *called_types,
2795 const char **calling_names,
2796 int *calling_types,
2797 size_t num_addrs,
2798 uint16_t port,
2799 int sec_timeout,
2800 int *pfd, size_t *chosen_index,
2801 uint16_t *chosen_port);
2803 /* The following definitions come from lib/util_wellknown.c */
2805 bool sid_check_is_wellknown_domain(const struct dom_sid *sid, const char **name);
2806 bool sid_check_is_in_wellknown_domain(const struct dom_sid *sid);
2807 bool lookup_wellknown_sid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
2808 const char **domain, const char **name);
2809 bool lookup_wellknown_name(TALLOC_CTX *mem_ctx, const char *name,
2810 struct dom_sid *sid, const char **domain);
2812 /* The following definitions come from lib/util_unixsids.c */
2814 bool sid_check_is_unix_users(const struct dom_sid *sid);
2815 bool sid_check_is_in_unix_users(const struct dom_sid *sid);
2816 void uid_to_unix_users_sid(uid_t uid, struct dom_sid *sid);
2817 void gid_to_unix_groups_sid(gid_t gid, struct dom_sid *sid);
2818 const char *unix_users_domain_name(void);
2819 bool lookup_unix_user_name(const char *name, struct dom_sid *sid);
2820 bool sid_check_is_unix_groups(const struct dom_sid *sid);
2821 bool sid_check_is_in_unix_groups(const struct dom_sid *sid);
2822 const char *unix_groups_domain_name(void);
2823 bool lookup_unix_group_name(const char *name, struct dom_sid *sid);
2825 /* The following definitions come from lib/filename_util.c */
2827 NTSTATUS get_full_smb_filename(TALLOC_CTX *ctx, const struct smb_filename *smb_fname,
2828 char **full_name);
2829 NTSTATUS create_synthetic_smb_fname(TALLOC_CTX *ctx, const char *base_name,
2830 const char *stream_name,
2831 const SMB_STRUCT_STAT *psbuf,
2832 struct smb_filename **smb_fname_out);
2833 NTSTATUS create_synthetic_smb_fname_split(TALLOC_CTX *ctx,
2834 const char *fname,
2835 const SMB_STRUCT_STAT *psbuf,
2836 struct smb_filename **smb_fname_out);
2837 const char *smb_fname_str_dbg(const struct smb_filename *smb_fname);
2838 const char *fsp_str_dbg(const struct files_struct *fsp);
2839 NTSTATUS copy_smb_filename(TALLOC_CTX *ctx,
2840 const struct smb_filename *smb_fname_in,
2841 struct smb_filename **smb_fname_out);
2842 bool is_ntfs_stream_smb_fname(const struct smb_filename *smb_fname);
2843 bool is_ntfs_default_stream_smb_fname(const struct smb_filename *smb_fname);
2845 /* The following definitions come from lib/dummyroot.c */
2847 void become_root(void);
2848 void unbecome_root(void);
2850 /* The following definitions come from lib/dummysmbd.c */
2852 int find_service(TALLOC_CTX *ctx, const char *service_in, char **p_service_out);
2853 bool conn_snum_used(int snum);
2854 void cancel_pending_lock_requests_by_fid(files_struct *fsp,
2855 struct byte_range_lock *br_lck,
2856 enum file_close_type close_type);
2857 void send_stat_cache_delete_message(struct messaging_context *msg_ctx,
2858 const char *name);
2859 NTSTATUS can_delete_directory(struct connection_struct *conn,
2860 const char *dirname);
2861 bool change_to_root_user(void);
2862 struct event_context *smbd_event_context(void);
2863 void contend_level2_oplocks_begin(files_struct *fsp,
2864 enum level2_contention_type type);
2865 void contend_level2_oplocks_end(files_struct *fsp,
2866 enum level2_contention_type type);
2868 #endif /* _PROTO_H_ */