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