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/>.
27 /* The following definitions come from auth/auth.c */
29 NTSTATUS
smb_register_auth(int version
, const char *name
, auth_init_function init
);
30 bool load_auth_module(struct auth_context
*auth_context
,
31 const char *module
, auth_methods
**ret
) ;
32 NTSTATUS
make_auth_context_subsystem(struct auth_context
**auth_context
) ;
33 NTSTATUS
make_auth_context_fixed(struct auth_context
**auth_context
, uchar chal
[8]) ;
35 /* The following definitions come from auth/auth_builtin.c */
37 NTSTATUS
auth_builtin_init(void);
39 /* The following definitions come from auth/auth_compat.c */
41 NTSTATUS
check_plaintext_password(const char *smb_name
, DATA_BLOB plaintext_password
, auth_serversupplied_info
**server_info
);
42 bool password_ok(const char *smb_name
, DATA_BLOB password_blob
);
44 /* The following definitions come from auth/auth_domain.c */
46 void attempt_machine_password_change(void);
47 NTSTATUS
auth_domain_init(void);
49 NTSTATUS
auth_netlogond_init(void);
51 /* The following definitions come from auth/auth_ntlmssp.c */
53 NTSTATUS
auth_ntlmssp_start(AUTH_NTLMSSP_STATE
**auth_ntlmssp_state
);
54 void auth_ntlmssp_end(AUTH_NTLMSSP_STATE
**auth_ntlmssp_state
);
55 NTSTATUS
auth_ntlmssp_update(AUTH_NTLMSSP_STATE
*auth_ntlmssp_state
,
56 const DATA_BLOB request
, DATA_BLOB
*reply
) ;
58 /* The following definitions come from auth/auth_sam.c */
60 NTSTATUS
auth_sam_init(void);
62 /* The following definitions come from auth/auth_server.c */
64 NTSTATUS
auth_server_init(void);
66 /* The following definitions come from auth/auth_unix.c */
68 NTSTATUS
auth_unix_init(void);
70 /* The following definitions come from auth/auth_util.c */
72 NTSTATUS
make_user_info_map(auth_usersupplied_info
**user_info
,
74 const char *client_domain
,
75 const char *wksta_name
,
76 DATA_BLOB
*lm_pwd
, DATA_BLOB
*nt_pwd
,
77 DATA_BLOB
*lm_interactive_pwd
, DATA_BLOB
*nt_interactive_pwd
,
80 bool make_user_info_netlogon_network(auth_usersupplied_info
**user_info
,
82 const char *client_domain
,
83 const char *wksta_name
,
84 uint32 logon_parameters
,
85 const uchar
*lm_network_pwd
,
87 const uchar
*nt_network_pwd
,
89 bool make_user_info_netlogon_interactive(auth_usersupplied_info
**user_info
,
91 const char *client_domain
,
92 const char *wksta_name
,
93 uint32 logon_parameters
,
95 const uchar lm_interactive_pwd
[16],
96 const uchar nt_interactive_pwd
[16],
97 const uchar
*dc_sess_key
);
98 bool make_user_info_for_reply(auth_usersupplied_info
**user_info
,
100 const char *client_domain
,
102 DATA_BLOB plaintext_password
);
103 NTSTATUS
make_user_info_for_reply_enc(auth_usersupplied_info
**user_info
,
104 const char *smb_name
,
105 const char *client_domain
,
106 DATA_BLOB lm_resp
, DATA_BLOB nt_resp
);
107 bool make_user_info_guest(auth_usersupplied_info
**user_info
) ;
108 NTSTATUS
make_server_info_sam(auth_serversupplied_info
**server_info
,
109 struct samu
*sampass
);
110 NTSTATUS
create_local_token(auth_serversupplied_info
*server_info
);
111 NTSTATUS
create_token_from_username(TALLOC_CTX
*mem_ctx
, const char *username
,
113 uid_t
*uid
, gid_t
*gid
,
114 char **found_username
,
115 struct nt_user_token
**token
);
116 bool user_in_group_sid(const char *username
, const DOM_SID
*group_sid
);
117 bool user_in_group(const char *username
, const char *groupname
);
118 NTSTATUS
make_server_info_pw(auth_serversupplied_info
**server_info
,
121 NTSTATUS
make_serverinfo_from_username(TALLOC_CTX
*mem_ctx
,
122 const char *username
,
124 struct auth_serversupplied_info
**presult
);
125 struct auth_serversupplied_info
*copy_serverinfo(TALLOC_CTX
*mem_ctx
,
126 const auth_serversupplied_info
*src
);
127 bool init_guest_info(void);
128 bool server_info_set_session_key(struct auth_serversupplied_info
*info
,
129 DATA_BLOB session_key
);
130 NTSTATUS
make_server_info_guest(TALLOC_CTX
*mem_ctx
,
131 auth_serversupplied_info
**server_info
);
132 bool copy_current_user(struct current_user
*dst
, struct current_user
*src
);
133 struct passwd
*smb_getpwnam( TALLOC_CTX
*mem_ctx
, char *domuser
,
134 fstring save_username
, bool create
);
135 NTSTATUS
make_server_info_info3(TALLOC_CTX
*mem_ctx
,
136 const char *sent_nt_username
,
138 auth_serversupplied_info
**server_info
,
139 struct netr_SamInfo3
*info3
);
140 NTSTATUS
make_server_info_wbcAuthUserInfo(TALLOC_CTX
*mem_ctx
,
141 const char *sent_nt_username
,
143 const struct wbcAuthUserInfo
*info
,
144 auth_serversupplied_info
**server_info
);
145 void free_user_info(auth_usersupplied_info
**user_info
);
146 bool make_auth_methods(struct auth_context
*auth_context
, auth_methods
**auth_method
) ;
147 bool is_trusted_domain(const char* dom_name
);
149 /* The following definitions come from auth/auth_winbind.c */
151 NTSTATUS
auth_winbind_init(void);
153 /* The following definitions come from auth/auth_wbc.c */
155 NTSTATUS
auth_wbc_init(void);
157 /* The following definitions come from auth/pampass.c */
159 bool smb_pam_claim_session(char *user
, char *tty
, char *rhost
);
160 bool smb_pam_close_session(char *user
, char *tty
, char *rhost
);
161 NTSTATUS
smb_pam_accountcheck(const char * user
);
162 NTSTATUS
smb_pam_passcheck(const char * user
, const char * password
);
163 bool smb_pam_passchange(const char * user
, const char * oldpassword
, const char * newpassword
);
164 NTSTATUS
smb_pam_accountcheck(const char * user
);
165 bool smb_pam_claim_session(char *user
, char *tty
, char *rhost
);
166 bool smb_pam_close_session(char *in_user
, char *tty
, char *rhost
);
168 /* The following definitions come from auth/pass_check.c */
170 void dfs_unlogin(void);
171 NTSTATUS
pass_check(const struct passwd
*pass
, const char *user
, const char *password
,
172 int pwlen
, bool (*fn
) (const char *, const char *), bool run_cracker
);
174 /* The following definitions come from auth/token_util.c */
176 bool nt_token_check_sid ( const DOM_SID
*sid
, const NT_USER_TOKEN
*token
);
177 bool nt_token_check_domain_rid( NT_USER_TOKEN
*token
, uint32 rid
);
178 NT_USER_TOKEN
*get_root_nt_token( void );
179 NTSTATUS
add_aliases(const DOM_SID
*domain_sid
,
180 struct nt_user_token
*token
);
181 NTSTATUS
create_builtin_users(const DOM_SID
*sid
);
182 NTSTATUS
create_builtin_administrators(const DOM_SID
*sid
);
183 struct nt_user_token
*create_local_nt_token(TALLOC_CTX
*mem_ctx
,
184 const DOM_SID
*user_sid
,
187 const DOM_SID
*groupsids
);
188 void debug_nt_user_token(int dbg_class
, int dbg_lev
, NT_USER_TOKEN
*token
);
189 void debug_unix_user_token(int dbg_class
, int dbg_lev
, uid_t uid
, gid_t gid
,
190 int n_groups
, gid_t
*groups
);
192 /* The following definitions come from groupdb/mapping.c */
194 NTSTATUS
add_initial_entry(gid_t gid
, const char *sid
, enum lsa_SidType sid_name_use
, const char *nt_name
, const char *comment
);
195 bool get_domain_group_from_sid(DOM_SID sid
, GROUP_MAP
*map
);
196 int smb_create_group(const char *unix_group
, gid_t
*new_gid
);
197 int smb_delete_group(const char *unix_group
);
198 int smb_set_primary_group(const char *unix_group
, const char* unix_user
);
199 int smb_add_user_group(const char *unix_group
, const char *unix_user
);
200 int smb_delete_user_group(const char *unix_group
, const char *unix_user
);
201 NTSTATUS
pdb_default_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
203 NTSTATUS
pdb_default_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
205 NTSTATUS
pdb_default_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
207 NTSTATUS
pdb_default_add_group_mapping_entry(struct pdb_methods
*methods
,
209 NTSTATUS
pdb_default_update_group_mapping_entry(struct pdb_methods
*methods
,
211 NTSTATUS
pdb_default_delete_group_mapping_entry(struct pdb_methods
*methods
,
213 NTSTATUS
pdb_default_enum_group_mapping(struct pdb_methods
*methods
,
214 const DOM_SID
*sid
, enum lsa_SidType sid_name_use
,
215 GROUP_MAP
**pp_rmap
, size_t *p_num_entries
,
217 NTSTATUS
pdb_default_create_alias(struct pdb_methods
*methods
,
218 const char *name
, uint32
*rid
);
219 NTSTATUS
pdb_default_delete_alias(struct pdb_methods
*methods
,
221 NTSTATUS
pdb_default_get_aliasinfo(struct pdb_methods
*methods
,
223 struct acct_info
*info
);
224 NTSTATUS
pdb_default_set_aliasinfo(struct pdb_methods
*methods
,
226 struct acct_info
*info
);
227 NTSTATUS
pdb_default_add_aliasmem(struct pdb_methods
*methods
,
228 const DOM_SID
*alias
, const DOM_SID
*member
);
229 NTSTATUS
pdb_default_del_aliasmem(struct pdb_methods
*methods
,
230 const DOM_SID
*alias
, const DOM_SID
*member
);
231 NTSTATUS
pdb_default_enum_aliasmem(struct pdb_methods
*methods
,
232 const DOM_SID
*alias
, DOM_SID
**pp_members
,
233 size_t *p_num_members
);
234 NTSTATUS
pdb_default_alias_memberships(struct pdb_methods
*methods
,
236 const DOM_SID
*domain_sid
,
237 const DOM_SID
*members
,
239 uint32
**pp_alias_rids
,
240 size_t *p_num_alias_rids
);
241 NTSTATUS
pdb_nop_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
243 NTSTATUS
pdb_nop_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
245 NTSTATUS
pdb_nop_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
247 NTSTATUS
pdb_nop_add_group_mapping_entry(struct pdb_methods
*methods
,
249 NTSTATUS
pdb_nop_update_group_mapping_entry(struct pdb_methods
*methods
,
251 NTSTATUS
pdb_nop_delete_group_mapping_entry(struct pdb_methods
*methods
,
253 NTSTATUS
pdb_nop_enum_group_mapping(struct pdb_methods
*methods
,
254 enum lsa_SidType sid_name_use
,
255 GROUP_MAP
**rmap
, size_t *num_entries
,
257 bool pdb_get_dom_grp_info(const DOM_SID
*sid
, struct acct_info
*info
);
258 bool pdb_set_dom_grp_info(const DOM_SID
*sid
, const struct acct_info
*info
);
259 NTSTATUS
pdb_create_builtin_alias(uint32 rid
);
261 /* The following definitions come from groupdb/mapping_ldb.c */
263 const struct mapping_backend
*groupdb_ldb_init(void);
265 /* The following definitions come from groupdb/mapping_tdb.c */
267 const struct mapping_backend
*groupdb_tdb_init(void);
269 /* The following definitions come from intl/lang_tdb.c */
271 bool lang_tdb_init(const char *lang
);
272 const char *lang_msg(const char *msgid
);
273 void lang_msg_free(const char *msgstr
);
274 char *lang_tdb_current(void);
276 /* The following definitions come from lib/access.c */
278 bool client_match(const char *tok
, const void *item
);
279 bool list_match(const char **list
,const void *item
,
280 bool (*match_fn
)(const char *, const void *));
281 bool allow_access(const char **deny_list
,
282 const char **allow_list
,
285 bool check_access(int sock
, const char **allow_list
, const char **deny_list
);
287 /* The following definitions come from lib/account_pol.c */
289 void account_policy_names_list(const char ***names
, int *num_names
);
290 const char *decode_account_policy_name(int field
);
291 const char *get_account_policy_attr(int field
);
292 const char *account_policy_get_desc(int field
);
293 int account_policy_name_to_fieldnum(const char *name
);
294 bool account_policy_get_default(int account_policy
, uint32
*val
);
295 bool init_account_policy(void);
296 bool account_policy_get(int field
, uint32
*value
);
297 bool account_policy_set(int field
, uint32 value
);
298 bool cache_account_policy_set(int field
, uint32 value
);
299 bool cache_account_policy_get(int field
, uint32
*value
);
300 struct db_context
*get_account_pol_db( void );
302 /* The following definitions come from lib/adt_tree.c */
305 /* The following definitions come from lib/afs.c */
307 char *afs_createtoken_str(const char *username
, const char *cell
);
308 bool afs_login(connection_struct
*conn
);
309 bool afs_login(connection_struct
*conn
);
310 char *afs_createtoken_str(const char *username
, const char *cell
);
312 /* The following definitions come from lib/afs_settoken.c */
314 int afs_syscall( int subcall
,
319 bool afs_settoken_str(const char *token_string
);
320 bool afs_settoken_str(const char *token_string
);
322 /* The following definitions come from lib/audit.c */
324 const char *audit_category_str(uint32 category
);
325 const char *audit_param_str(uint32 category
);
326 const char *audit_description_str(uint32 category
);
327 bool get_audit_category_from_param(const char *param
, uint32
*audit_category
);
328 const char *audit_policy_str(TALLOC_CTX
*mem_ctx
, uint32 policy
);
330 /* The following definitions come from lib/bitmap.c */
332 struct bitmap
*bitmap_allocate(int n
);
333 void bitmap_free(struct bitmap
*bm
);
334 struct bitmap
*bitmap_talloc(TALLOC_CTX
*mem_ctx
, int n
);
335 int bitmap_copy(struct bitmap
* const dst
, const struct bitmap
* const src
);
336 bool bitmap_set(struct bitmap
*bm
, unsigned i
);
337 bool bitmap_clear(struct bitmap
*bm
, unsigned i
);
338 bool bitmap_query(struct bitmap
*bm
, unsigned i
);
339 int bitmap_find(struct bitmap
*bm
, unsigned ofs
);
341 /* The following definitions come from lib/charcnv.c */
343 NTSTATUS
smb_register_charset(struct charset_functions
*funcs
);
344 char lp_failed_convert_char(void);
345 void lazy_initialize_conv(void);
346 void gfree_charcnv(void);
347 void init_iconv(void);
348 size_t convert_string(charset_t from
, charset_t to
,
349 void const *src
, size_t srclen
,
350 void *dest
, size_t destlen
, bool allow_bad_conv
);
351 size_t unix_strupper(const char *src
, size_t srclen
, char *dest
, size_t destlen
);
352 char *talloc_strdup_upper(TALLOC_CTX
*ctx
, const char *s
);
353 char *strupper_talloc(TALLOC_CTX
*ctx
, const char *s
);
354 size_t unix_strlower(const char *src
, size_t srclen
, char *dest
, size_t destlen
);
355 char *talloc_strdup_lower(TALLOC_CTX
*ctx
, const char *s
);
356 char *strlower_talloc(TALLOC_CTX
*ctx
, const char *s
);
357 size_t ucs2_align(const void *base_ptr
, const void *p
, int flags
);
358 size_t push_ascii(void *dest
, const char *src
, size_t dest_len
, int flags
);
359 size_t push_ascii_fstring(void *dest
, const char *src
);
360 size_t push_ascii_nstring(void *dest
, const char *src
);
361 size_t pull_ascii(char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
);
362 size_t pull_ascii_fstring(char *dest
, const void *src
);
363 size_t pull_ascii_nstring(char *dest
, size_t dest_len
, const void *src
);
364 size_t push_ucs2(const void *base_ptr
, void *dest
, const char *src
, size_t dest_len
, int flags
);
365 size_t push_utf8_fstring(void *dest
, const char *src
);
366 bool push_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
367 size_t *converted_size
);
368 size_t pull_ucs2(const void *base_ptr
, char *dest
, const void *src
, size_t dest_len
, size_t src_len
, int flags
);
369 size_t pull_ucs2_base_talloc(TALLOC_CTX
*ctx
,
370 const void *base_ptr
,
375 size_t pull_ucs2_fstring(char *dest
, const void *src
);
376 bool push_ucs2_talloc(TALLOC_CTX
*ctx
, smb_ucs2_t
**dest
, const char *src
,
377 size_t *converted_size
);
378 bool pull_utf8_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
379 size_t *converted_size
);
380 bool pull_ucs2_talloc(TALLOC_CTX
*ctx
, char **dest
, const smb_ucs2_t
*src
,
381 size_t *converted_size
);
382 bool pull_ascii_talloc(TALLOC_CTX
*ctx
, char **dest
, const char *src
,
383 size_t *converted_size
);
384 size_t push_string_check_fn(const char *function
, unsigned int line
,
385 void *dest
, const char *src
,
386 size_t dest_len
, int flags
);
387 size_t push_string_base(const char *function
, unsigned int line
,
388 const char *base
, uint16 flags2
,
389 void *dest
, const char *src
,
390 size_t dest_len
, int flags
);
391 size_t pull_string_fn(const char *function
,
393 const void *base_ptr
,
400 size_t pull_string_talloc_fn(const char *function
,
403 const void *base_ptr
,
409 size_t align_string(const void *base_ptr
, const char *p
, int flags
);
410 codepoint_t
next_codepoint(const char *str
, size_t *size
);
412 /* The following definitions come from lib/clobber.c */
414 void clobber_region(const char *fn
, unsigned int line
, char *dest
, size_t len
);
416 /* The following definitions come from lib/conn_tdb.c */
418 struct db_record
*connections_fetch_record(TALLOC_CTX
*mem_ctx
,
420 struct db_record
*connections_fetch_entry(TALLOC_CTX
*mem_ctx
,
421 connection_struct
*conn
,
423 int connections_traverse(int (*fn
)(struct db_record
*rec
,
426 int connections_forall(int (*fn
)(struct db_record
*rec
,
427 const struct connections_key
*key
,
428 const struct connections_data
*data
,
431 bool connections_init(bool rw
);
433 /* The following definitions come from lib/dbwrap_util.c */
435 int32_t dbwrap_fetch_int32(struct db_context
*db
, const char *keystr
);
436 int dbwrap_store_int32(struct db_context
*db
, const char *keystr
, int32_t v
);
437 bool dbwrap_fetch_uint32(struct db_context
*db
, const char *keystr
,
439 int dbwrap_store_uint32(struct db_context
*db
, const char *keystr
, uint32_t v
);
440 uint32_t dbwrap_change_uint32_atomic(struct db_context
*db
, const char *keystr
,
441 uint32_t *oldval
, uint32_t change_val
);
442 int32
dbwrap_change_int32_atomic(struct db_context
*db
, const char *keystr
,
443 int32
*oldval
, int32 change_val
);
444 NTSTATUS
dbwrap_trans_store(struct db_context
*db
, TDB_DATA key
, TDB_DATA dbuf
,
446 NTSTATUS
dbwrap_trans_delete(struct db_context
*db
, TDB_DATA key
);
447 NTSTATUS
dbwrap_trans_store_int32(struct db_context
*db
, const char *keystr
,
449 NTSTATUS
dbwrap_trans_store_uint32(struct db_context
*db
, const char *keystr
,
451 NTSTATUS
dbwrap_trans_store_bystring(struct db_context
*db
, const char *key
,
452 TDB_DATA data
, int flags
);
453 NTSTATUS
dbwrap_trans_delete_bystring(struct db_context
*db
, const char *key
);
455 /* The following definitions come from lib/debug.c */
457 void gfree_debugsyms(void);
458 const char *debug_classname_from_index(int ndx
);
459 int debug_add_class(const char *classname
);
460 int debug_lookup_classname(const char *classname
);
461 bool debug_parse_levels(const char *params_str
);
462 void debug_message(struct messaging_context
*msg_ctx
, void *private_data
, uint32_t msg_type
, struct server_id src
, DATA_BLOB
*data
);
463 void debug_init(void);
464 void debug_register_msgs(struct messaging_context
*msg_ctx
);
465 void setup_logging(const char *pname
, bool interactive
);
466 void debug_set_logfile(const char *name
);
467 bool reopen_logs( void );
468 void force_check_log_size( void );
469 bool need_to_check_log_size( void );
470 void check_log_size( void );
471 void dbgflush( void );
472 bool dbghdrclass(int level
, int cls
, const char *location
, const char *func
);
473 bool dbghdr(int level
, const char *location
, const char *func
);
474 TALLOC_CTX
*debug_ctx(void);
476 /* The following definitions come from lib/display_sec.c */
478 char *get_sec_mask_str(TALLOC_CTX
*ctx
, uint32 type
);
479 void display_sec_access(uint32_t *info
);
480 void display_sec_ace_flags(uint8_t flags
);
481 void display_sec_ace(SEC_ACE
*ace
);
482 void display_sec_acl(SEC_ACL
*sec_acl
);
483 void display_acl_type(uint16 type
);
484 void display_sec_desc(SEC_DESC
*sec
);
486 /* The following definitions come from lib/dmallocmsg.c */
488 void register_dmalloc_msgs(struct messaging_context
*msg_ctx
);
490 /* The following definitions come from lib/dprintf.c */
492 void display_set_stderr(void);
494 /* The following definitions come from lib/errmap_unix.c */
496 NTSTATUS
map_nt_error_from_unix(int unix_error
);
497 int map_errno_from_nt_status(NTSTATUS status
);
499 /* The following definitions come from lib/fault.c */
500 void fault_setup(void (*fn
)(void *));
501 void dump_core_setup(const char *progname
);
503 /* The following definitions come from lib/file_id.c */
505 struct file_id
vfs_file_id_from_sbuf(connection_struct
*conn
, const SMB_STRUCT_STAT
*sbuf
);
506 bool file_id_equal(const struct file_id
*id1
, const struct file_id
*id2
);
507 const char *file_id_string_tos(const struct file_id
*id
);
508 void push_file_id_16(char *buf
, const struct file_id
*id
);
509 void push_file_id_24(char *buf
, const struct file_id
*id
);
510 void pull_file_id_24(char *buf
, struct file_id
*id
);
512 /* The following definitions come from lib/gencache.c */
514 bool gencache_init(void);
515 bool gencache_shutdown(void);
516 bool gencache_set(const char *keystr
, const char *value
, time_t timeout
);
517 bool gencache_del(const char *keystr
);
518 bool gencache_get(const char *keystr
, char **valstr
, time_t *timeout
);
519 bool gencache_get_data_blob(const char *keystr
, DATA_BLOB
*blob
, bool *expired
);
520 bool gencache_set_data_blob(const char *keystr
, const DATA_BLOB
*blob
, time_t timeout
);
521 void gencache_iterate(void (*fn
)(const char* key
, const char *value
, time_t timeout
, void* dptr
),
522 void* data
, const char* keystr_pattern
);
523 int gencache_lock_entry( const char *key
);
524 void gencache_unlock_entry( const char *key
);
526 /* The following definitions come from lib/interface.c */
528 bool ismyaddr(const struct sockaddr
*ip
);
529 bool ismyip_v4(struct in_addr ip
);
530 bool is_local_net(const struct sockaddr
*from
);
531 void setup_linklocal_scope_id(struct sockaddr
*pss
);
532 bool is_local_net_v4(struct in_addr from
);
533 int iface_count(void);
534 int iface_count_v4_nl(void);
535 const struct in_addr
*first_ipv4_iface(void);
536 struct interface
*get_interface(int n
);
537 const struct sockaddr_storage
*iface_n_sockaddr_storage(int n
);
538 const struct in_addr
*iface_n_ip_v4(int n
);
539 const struct in_addr
*iface_n_bcast_v4(int n
);
540 const struct sockaddr_storage
*iface_n_bcast(int n
);
541 const struct sockaddr_storage
*iface_ip(const struct sockaddr
*ip
);
542 bool iface_local(const struct sockaddr
*ip
);
543 void load_interfaces(void);
544 void gfree_interfaces(void);
545 bool interfaces_changed(void);
547 /* The following definitions come from lib/ldap_debug_handler.c */
549 void init_ldap_debugging(void);
551 /* The following definitions come from lib/ldap_escape.c */
553 char *escape_ldap_string_alloc(const char *s
);
554 char *escape_rdn_val_string_alloc(const char *s
);
556 /* The following definitions come from lib/module.c */
558 NTSTATUS
smb_load_module(const char *module_name
);
559 int smb_load_modules(const char **modules
);
560 NTSTATUS
smb_probe_module(const char *subsystem
, const char *module
);
561 NTSTATUS
smb_load_module(const char *module_name
);
562 int smb_load_modules(const char **modules
);
563 NTSTATUS
smb_probe_module(const char *subsystem
, const char *module
);
564 void init_modules(void);
566 /* The following definitions come from lib/ms_fnmatch.c */
568 int ms_fnmatch(const char *pattern
, const char *string
, bool translate_pattern
,
569 bool is_case_sensitive
);
570 int gen_fnmatch(const char *pattern
, const char *string
);
572 /* The following definitions come from lib/pam_errors.c */
574 NTSTATUS
pam_to_nt_status(int pam_error
);
575 int nt_status_to_pam(NTSTATUS nt_status
);
576 NTSTATUS
pam_to_nt_status(int pam_error
);
577 int nt_status_to_pam(NTSTATUS nt_status
);
579 /* The following definitions come from lib/pidfile.c */
581 pid_t
pidfile_pid(const char *name
);
582 void pidfile_create(const char *program_name
);
584 /* The following definitions come from lib/popt_common.c */
586 void popt_common_set_auth_info(struct user_auth_info
*auth_info
);
588 /* The following definitions come from lib/privileges.c */
590 bool get_privileges_for_sids(SE_PRIV
*privileges
, DOM_SID
*slist
, int scount
);
591 NTSTATUS
privilege_enumerate_accounts(DOM_SID
**sids
, int *num_sids
);
592 NTSTATUS
privilege_enum_sids(const SE_PRIV
*mask
, TALLOC_CTX
*mem_ctx
,
593 DOM_SID
**sids
, int *num_sids
);
594 bool grant_privilege(const DOM_SID
*sid
, const SE_PRIV
*priv_mask
);
595 bool grant_privilege_by_name(DOM_SID
*sid
, const char *name
);
596 bool revoke_privilege(const DOM_SID
*sid
, const SE_PRIV
*priv_mask
);
597 bool revoke_all_privileges( DOM_SID
*sid
);
598 bool revoke_privilege_by_name(DOM_SID
*sid
, const char *name
);
599 NTSTATUS
privilege_create_account(const DOM_SID
*sid
);
600 NTSTATUS
privilege_set_init(PRIVILEGE_SET
*priv_set
);
601 NTSTATUS
privilege_set_init_by_ctx(TALLOC_CTX
*mem_ctx
, PRIVILEGE_SET
*priv_set
);
602 void privilege_set_free(PRIVILEGE_SET
*priv_set
);
603 NTSTATUS
dup_luid_attr(TALLOC_CTX
*mem_ctx
, LUID_ATTR
**new_la
, LUID_ATTR
*old_la
, int count
);
604 bool is_privileged_sid( const DOM_SID
*sid
);
605 bool grant_all_privileges( const DOM_SID
*sid
);
607 /* The following definitions come from lib/privileges_basic.c */
609 bool se_priv_copy( SE_PRIV
*dst
, const SE_PRIV
*src
);
610 bool se_priv_put_all_privileges(SE_PRIV
*mask
);
611 void se_priv_add( SE_PRIV
*mask
, const SE_PRIV
*addpriv
);
612 void se_priv_remove( SE_PRIV
*mask
, const SE_PRIV
*removepriv
);
613 bool se_priv_equal( const SE_PRIV
*mask1
, const SE_PRIV
*mask2
);
614 bool se_priv_from_name( const char *name
, SE_PRIV
*mask
);
615 void dump_se_priv( int dbg_cl
, int dbg_lvl
, const SE_PRIV
*mask
);
616 bool is_privilege_assigned(const SE_PRIV
*privileges
,
617 const SE_PRIV
*check
);
618 const char* get_privilege_dispname( const char *name
);
619 bool user_has_privileges(const NT_USER_TOKEN
*token
, const SE_PRIV
*privilege
);
620 bool user_has_any_privilege(NT_USER_TOKEN
*token
, const SE_PRIV
*privilege
);
621 int count_all_privileges( void );
622 LUID_ATTR
get_privilege_luid( SE_PRIV
*mask
);
623 const char *luid_to_privilege_name(const LUID
*set
);
624 bool se_priv_to_privilege_set( PRIVILEGE_SET
*set
, SE_PRIV
*mask
);
625 bool privilege_set_to_se_priv( SE_PRIV
*mask
, struct lsa_PrivilegeSet
*privset
);
627 /* The following definitions come from lib/readline.c */
629 void smb_readline_done(void);
630 char *smb_readline(const char *prompt
, void (*callback
)(void),
631 char **(completion_fn
)(const char *text
, int start
, int end
));
632 const char *smb_readline_get_line_buffer(void);
633 void smb_readline_ca_char(char c
);
634 int cmd_history(void);
636 /* The following definitions come from lib/recvfile.c */
638 ssize_t
sys_recvfile(int fromfd
,
642 ssize_t
sys_recvfile(int fromfd
,
646 ssize_t
drain_socket(int sockfd
, size_t count
);
648 /* The following definitions come from lib/secdesc.c */
650 uint32_t get_sec_info(const SEC_DESC
*sd
);
651 SEC_DESC_BUF
*sec_desc_merge(TALLOC_CTX
*ctx
, SEC_DESC_BUF
*new_sdb
, SEC_DESC_BUF
*old_sdb
);
652 SEC_DESC
*make_sec_desc(TALLOC_CTX
*ctx
,
653 enum security_descriptor_revision revision
,
655 const DOM_SID
*owner_sid
, const DOM_SID
*grp_sid
,
656 SEC_ACL
*sacl
, SEC_ACL
*dacl
, size_t *sd_size
);
657 SEC_DESC
*dup_sec_desc(TALLOC_CTX
*ctx
, const SEC_DESC
*src
);
658 NTSTATUS
marshall_sec_desc(TALLOC_CTX
*mem_ctx
,
659 struct security_descriptor
*secdesc
,
660 uint8
**data
, size_t *len
);
661 NTSTATUS
marshall_sec_desc_buf(TALLOC_CTX
*mem_ctx
,
662 struct sec_desc_buf
*secdesc_buf
,
663 uint8_t **data
, size_t *len
);
664 NTSTATUS
unmarshall_sec_desc(TALLOC_CTX
*mem_ctx
, uint8
*data
, size_t len
,
665 struct security_descriptor
**psecdesc
);
666 NTSTATUS
unmarshall_sec_desc_buf(TALLOC_CTX
*mem_ctx
, uint8_t *data
, size_t len
,
667 struct sec_desc_buf
**psecdesc_buf
);
668 SEC_DESC
*make_standard_sec_desc(TALLOC_CTX
*ctx
, const DOM_SID
*owner_sid
, const DOM_SID
*grp_sid
,
669 SEC_ACL
*dacl
, size_t *sd_size
);
670 SEC_DESC_BUF
*make_sec_desc_buf(TALLOC_CTX
*ctx
, size_t len
, SEC_DESC
*sec_desc
);
671 SEC_DESC_BUF
*dup_sec_desc_buf(TALLOC_CTX
*ctx
, SEC_DESC_BUF
*src
);
672 NTSTATUS
sec_desc_add_sid(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, DOM_SID
*sid
, uint32 mask
, size_t *sd_size
);
673 NTSTATUS
sec_desc_mod_sid(SEC_DESC
*sd
, DOM_SID
*sid
, uint32 mask
);
674 NTSTATUS
sec_desc_del_sid(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, DOM_SID
*sid
, size_t *sd_size
);
675 NTSTATUS
se_create_child_secdesc(TALLOC_CTX
*ctx
,
678 const SEC_DESC
*parent_ctr
,
679 const DOM_SID
*owner_sid
,
680 const DOM_SID
*group_sid
,
682 NTSTATUS
se_create_child_secdesc_buf(TALLOC_CTX
*ctx
,
683 SEC_DESC_BUF
**ppsdb
,
684 const SEC_DESC
*parent_ctr
,
687 /* The following definitions come from lib/select.c */
689 void sys_select_signal(char c
);
690 int sys_select(int maxfd
, fd_set
*readfds
, fd_set
*writefds
, fd_set
*errorfds
, struct timeval
*tval
);
691 int sys_select_intr(int maxfd
, fd_set
*readfds
, fd_set
*writefds
, fd_set
*errorfds
, struct timeval
*tval
);
693 /* The following definitions come from lib/sendfile.c */
695 ssize_t
sys_sendfile(int tofd
, int fromfd
, const DATA_BLOB
*header
, SMB_OFF_T offset
, size_t count
);
697 /* The following definitions come from lib/server_mutex.c */
699 struct named_mutex
*grab_named_mutex(TALLOC_CTX
*mem_ctx
, const char *name
,
702 /* The following definitions come from lib/sharesec.c */
704 SEC_DESC
*get_share_security_default( TALLOC_CTX
*ctx
, size_t *psize
, uint32 def_access
);
705 SEC_DESC
*get_share_security( TALLOC_CTX
*ctx
, const char *servicename
,
707 bool set_share_security(const char *share_name
, SEC_DESC
*psd
);
708 bool delete_share_security(const char *servicename
);
709 bool share_access_check(const NT_USER_TOKEN
*token
, const char *sharename
,
710 uint32 desired_access
);
711 bool parse_usershare_acl(TALLOC_CTX
*ctx
, const char *acl_str
, SEC_DESC
**ppsd
);
713 /* The following definitions come from lib/smbldap.c */
715 int smb_ldap_start_tls(LDAP
*ldap_struct
, int version
);
716 int smb_ldap_setup_conn(LDAP
**ldap_struct
, const char *uri
);
717 int smb_ldap_upgrade_conn(LDAP
*ldap_struct
, int *new_version
) ;
718 int smb_ldap_setup_full_conn(LDAP
**ldap_struct
, const char *uri
);
719 int smbldap_search(struct smbldap_state
*ldap_state
,
720 const char *base
, int scope
, const char *filter
,
721 const char *attrs
[], int attrsonly
,
723 int smbldap_search_paged(struct smbldap_state
*ldap_state
,
724 const char *base
, int scope
, const char *filter
,
725 const char **attrs
, int attrsonly
, int pagesize
,
726 LDAPMessage
**res
, void **cookie
);
727 int smbldap_modify(struct smbldap_state
*ldap_state
, const char *dn
, LDAPMod
*attrs
[]);
728 int smbldap_add(struct smbldap_state
*ldap_state
, const char *dn
, LDAPMod
*attrs
[]);
729 int smbldap_delete(struct smbldap_state
*ldap_state
, const char *dn
);
730 int smbldap_extended_operation(struct smbldap_state
*ldap_state
,
731 LDAP_CONST
char *reqoid
, struct berval
*reqdata
,
732 LDAPControl
**serverctrls
, LDAPControl
**clientctrls
,
733 char **retoidp
, struct berval
**retdatap
);
734 int smbldap_search_suffix (struct smbldap_state
*ldap_state
,
735 const char *filter
, const char **search_attr
,
736 LDAPMessage
** result
);
737 void smbldap_free_struct(struct smbldap_state
**ldap_state
) ;
738 NTSTATUS
smbldap_init(TALLOC_CTX
*mem_ctx
, struct event_context
*event_ctx
,
739 const char *location
,
740 struct smbldap_state
**smbldap_state
);
741 bool smbldap_has_control(LDAP
*ld
, const char *control
);
742 bool smbldap_has_extension(LDAP
*ld
, const char *extension
);
743 bool smbldap_has_naming_context(LDAP
*ld
, const char *naming_context
);
744 bool smbldap_set_creds(struct smbldap_state
*ldap_state
, bool anon
, const char *dn
, const char *secret
);
746 /* The following definitions come from lib/smbldap_util.c */
748 NTSTATUS
smbldap_search_domain_info(struct smbldap_state
*ldap_state
,
749 LDAPMessage
** result
, const char *domain_name
,
752 /* The following definitions come from lib/smbrun.c */
754 int smbrun_no_sanitize(const char *cmd
, int *outfd
);
755 int smbrun(const char *cmd
, int *outfd
);
756 int smbrunsecret(const char *cmd
, const char *secret
);
758 /* The following definitions come from lib/sock_exec.c */
760 int sock_exec(const char *prog
);
762 /* The following definitions come from lib/substitute.c */
764 void free_local_machine_name(void);
765 bool set_local_machine_name(const char *local_name
, bool perm
);
766 const char *get_local_machine_name(void);
767 bool set_remote_machine_name(const char *remote_name
, bool perm
);
768 const char *get_remote_machine_name(void);
769 void sub_set_smb_name(const char *name
);
770 void set_current_user_info(const char *smb_name
, const char *unix_name
,
772 const char *get_current_username(void);
773 void standard_sub_basic(const char *smb_name
, const char *domain_name
,
774 char *str
, size_t len
);
775 char *talloc_sub_basic(TALLOC_CTX
*mem_ctx
, const char *smb_name
,
776 const char *domain_name
, const char *str
);
777 char *alloc_sub_basic(const char *smb_name
, const char *domain_name
,
779 char *talloc_sub_specified(TALLOC_CTX
*mem_ctx
,
780 const char *input_string
,
781 const char *username
,
785 char *talloc_sub_advanced(TALLOC_CTX
*mem_ctx
,
786 const char *servicename
, const char *user
,
787 const char *connectpath
, gid_t gid
,
788 const char *smb_name
, const char *domain_name
,
790 void standard_sub_advanced(const char *servicename
, const char *user
,
791 const char *connectpath
, gid_t gid
,
792 const char *smb_name
, const char *domain_name
,
793 char *str
, size_t len
);
794 char *standard_sub_conn(TALLOC_CTX
*ctx
, connection_struct
*conn
, const char *str
);
796 /* The following definitions come from lib/sysacls.c */
798 int sys_acl_get_entry(SMB_ACL_T acl_d
, int entry_id
, SMB_ACL_ENTRY_T
*entry_p
);
799 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T
*type_p
);
800 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T
*permset_p
);
801 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d
);
802 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d
);
803 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
);
804 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
);
805 char *sys_acl_to_text(SMB_ACL_T acl_d
, ssize_t
*len_p
);
806 SMB_ACL_T
sys_acl_init(int count
);
807 int sys_acl_create_entry(SMB_ACL_T
*acl_p
, SMB_ACL_ENTRY_T
*entry_p
);
808 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T tag_type
);
809 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d
, void *qual_p
);
810 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T permset_d
);
811 int sys_acl_free_text(char *text
);
812 int sys_acl_free_acl(SMB_ACL_T acl_d
) ;
813 int sys_acl_free_qualifier(void *qual
, SMB_ACL_TAG_T tagtype
);
814 int sys_acl_valid(SMB_ACL_T acl_d
);
815 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
816 const char *path_p
, SMB_ACL_TYPE_T type
);
817 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
818 int sys_acl_set_file(vfs_handle_struct
*handle
,
819 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
820 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
822 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
824 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
825 const char *path_p
, SMB_ACL_TYPE_T type
);
826 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
827 int sys_acl_set_file(vfs_handle_struct
*handle
,
828 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
829 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
831 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
833 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
834 const char *path_p
, SMB_ACL_TYPE_T type
);
835 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
836 int sys_acl_set_file(vfs_handle_struct
*handle
,
837 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
838 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
840 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
842 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
843 const char *path_p
, SMB_ACL_TYPE_T type
);
844 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
845 int sys_acl_set_file(vfs_handle_struct
*handle
,
846 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
847 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
849 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
851 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
852 const char *path_p
, SMB_ACL_TYPE_T type
);
853 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
854 int sys_acl_set_file(vfs_handle_struct
*handle
,
855 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
856 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
858 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
860 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
861 const char *path_p
, SMB_ACL_TYPE_T type
);
862 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
863 int sys_acl_set_file(vfs_handle_struct
*handle
,
864 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
865 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
867 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
869 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
870 const char *path_p
, SMB_ACL_TYPE_T type
);
871 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
);
872 int sys_acl_set_file(vfs_handle_struct
*handle
,
873 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
);
874 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
876 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
878 int no_acl_syscall_error(int err
);
880 /* The following definitions come from lib/sysquotas.c */
882 int sys_get_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
883 int sys_set_quota(const char *path
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
885 /* The following definitions come from lib/sysquotas_*.c */
887 int sys_get_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
888 int sys_set_vfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
890 int sys_get_xfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
891 int sys_set_xfs_quota(const char *path
, const char *bdev
, enum SMB_QUOTA_TYPE qtype
, unid_t id
, SMB_DISK_QUOTA
*dp
);
893 /* The following definitions come from lib/system.c */
895 void *sys_memalign( size_t align
, size_t size
);
896 int sys_usleep(long usecs
);
897 ssize_t
sys_read(int fd
, void *buf
, size_t count
);
898 ssize_t
sys_write(int fd
, const void *buf
, size_t count
);
899 ssize_t
sys_writev(int fd
, const struct iovec
*iov
, int iovcnt
);
900 ssize_t
sys_pread(int fd
, void *buf
, size_t count
, SMB_OFF_T off
);
901 ssize_t
sys_pwrite(int fd
, const void *buf
, size_t count
, SMB_OFF_T off
);
902 ssize_t
sys_send(int s
, const void *msg
, size_t len
, int flags
);
903 ssize_t
sys_sendto(int s
, const void *msg
, size_t len
, int flags
, const struct sockaddr
*to
, socklen_t tolen
);
904 ssize_t
sys_recv(int fd
, void *buf
, size_t count
, int flags
);
905 ssize_t
sys_recvfrom(int s
, void *buf
, size_t len
, int flags
, struct sockaddr
*from
, socklen_t
*fromlen
);
906 int sys_fcntl_ptr(int fd
, int cmd
, void *arg
);
907 int sys_fcntl_long(int fd
, int cmd
, long arg
);
908 int sys_stat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
909 int sys_fstat(int fd
,SMB_STRUCT_STAT
*sbuf
);
910 int sys_lstat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
911 int sys_ftruncate(int fd
, SMB_OFF_T offset
);
912 SMB_OFF_T
sys_lseek(int fd
, SMB_OFF_T offset
, int whence
);
913 int sys_fseek(FILE *fp
, SMB_OFF_T offset
, int whence
);
914 SMB_OFF_T
sys_ftell(FILE *fp
);
915 int sys_creat(const char *path
, mode_t mode
);
916 int sys_open(const char *path
, int oflag
, mode_t mode
);
917 FILE *sys_fopen(const char *path
, const char *type
);
918 void kernel_flock(int fd
, uint32 share_mode
);
919 SMB_STRUCT_DIR
*sys_opendir(const char *name
);
920 SMB_STRUCT_DIRENT
*sys_readdir(SMB_STRUCT_DIR
*dirp
);
921 void sys_seekdir(SMB_STRUCT_DIR
*dirp
, long offset
);
922 long sys_telldir(SMB_STRUCT_DIR
*dirp
);
923 void sys_rewinddir(SMB_STRUCT_DIR
*dirp
);
924 int sys_closedir(SMB_STRUCT_DIR
*dirp
);
925 int sys_mknod(const char *path
, mode_t mode
, SMB_DEV_T dev
);
926 int sys_waitpid(pid_t pid
,int *status
,int options
);
927 char *sys_getwd(char *s
);
928 void set_effective_capability(enum smbd_capability capability
);
929 void drop_effective_capability(enum smbd_capability capability
);
930 long sys_random(void);
931 void sys_srandom(unsigned int seed
);
932 int groups_max(void);
933 int sys_getgroups(int setlen
, gid_t
*gidset
);
934 int sys_setgroups(gid_t
UNUSED(primary_gid
), int setlen
, gid_t
*gidset
);
935 void sys_setpwent(void);
936 struct passwd
*sys_getpwent(void);
937 void sys_endpwent(void);
938 struct passwd
*sys_getpwnam(const char *name
);
939 struct passwd
*sys_getpwuid(uid_t uid
);
940 struct group
*sys_getgrnam(const char *name
);
941 struct group
*sys_getgrgid(gid_t gid
);
942 int sys_popen(const char *command
);
943 int sys_pclose(int fd
);
944 ssize_t
sys_getxattr (const char *path
, const char *name
, void *value
, size_t size
);
945 ssize_t
sys_lgetxattr (const char *path
, const char *name
, void *value
, size_t size
);
946 ssize_t
sys_fgetxattr (int filedes
, const char *name
, void *value
, size_t size
);
947 ssize_t
sys_listxattr (const char *path
, char *list
, size_t size
);
948 ssize_t
sys_llistxattr (const char *path
, char *list
, size_t size
);
949 ssize_t
sys_flistxattr (int filedes
, char *list
, size_t size
);
950 int sys_removexattr (const char *path
, const char *name
);
951 int sys_lremovexattr (const char *path
, const char *name
);
952 int sys_fremovexattr (int filedes
, const char *name
);
953 int sys_setxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
);
954 int sys_lsetxattr (const char *path
, const char *name
, const void *value
, size_t size
, int flags
);
955 int sys_fsetxattr (int filedes
, const char *name
, const void *value
, size_t size
, int flags
);
956 uint32
unix_dev_major(SMB_DEV_T dev
);
957 uint32
unix_dev_minor(SMB_DEV_T dev
);
958 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
);
959 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
);
960 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
);
961 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
);
962 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
);
963 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
);
964 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
);
965 int sys_aio_read(SMB_STRUCT_AIOCB
*aiocb
);
966 int sys_aio_write(SMB_STRUCT_AIOCB
*aiocb
);
967 ssize_t
sys_aio_return(SMB_STRUCT_AIOCB
*aiocb
);
968 int sys_aio_cancel(int fd
, SMB_STRUCT_AIOCB
*aiocb
);
969 int sys_aio_error(const SMB_STRUCT_AIOCB
*aiocb
);
970 int sys_aio_fsync(int op
, SMB_STRUCT_AIOCB
*aiocb
);
971 int sys_aio_suspend(const SMB_STRUCT_AIOCB
* const cblist
[], int n
, const struct timespec
*timeout
);
972 int sys_getpeereid( int s
, uid_t
*uid
);
973 int sys_getnameinfo(const struct sockaddr
*psa
,
980 int sys_connect(int fd
, const struct sockaddr
* addr
);
982 /* The following definitions come from lib/system_smbd.c */
984 bool getgroups_unix_user(TALLOC_CTX
*mem_ctx
, const char *user
,
986 gid_t
**ret_groups
, size_t *p_ngroups
);
988 /* The following definitions come from lib/tallocmsg.c */
990 void register_msg_pool_usage(struct messaging_context
*msg_ctx
);
992 /* The following definitions come from lib/time.c */
994 void push_dos_date(uint8_t *buf
, int offset
, time_t unixdate
, int zone_offset
);
995 void push_dos_date2(uint8_t *buf
,int offset
,time_t unixdate
, int zone_offset
);
996 void push_dos_date3(uint8_t *buf
,int offset
,time_t unixdate
, int zone_offset
);
997 time_t pull_dos_date(const uint8_t *date_ptr
, int zone_offset
);
998 time_t pull_dos_date2(const uint8_t *date_ptr
, int zone_offset
);
999 time_t pull_dos_date3(const uint8_t *date_ptr
, int zone_offset
);
1000 uint32
convert_time_t_to_uint32(time_t t
);
1001 time_t convert_uint32_to_time_t(uint32 u
);
1002 bool nt_time_is_zero(const NTTIME
*nt
);
1003 time_t generalized_to_unix_time(const char *str
);
1004 int get_server_zone_offset(void);
1005 int set_server_zone_offset(time_t t
);
1006 char *current_timestring(TALLOC_CTX
*ctx
, bool hires
);
1007 void srv_put_dos_date(char *buf
,int offset
,time_t unixdate
);
1008 void srv_put_dos_date2(char *buf
,int offset
, time_t unixdate
);
1009 void srv_put_dos_date3(char *buf
,int offset
,time_t unixdate
);
1010 void put_long_date_timespec(char *p
, struct timespec ts
);
1011 void put_long_date(char *p
, time_t t
);
1012 struct timespec
get_create_timespec(const SMB_STRUCT_STAT
*st
,bool fake_dirs
);
1013 struct timespec
get_atimespec(const SMB_STRUCT_STAT
*pst
);
1014 void set_atimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1015 struct timespec
get_mtimespec(const SMB_STRUCT_STAT
*pst
);
1016 void set_mtimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1017 struct timespec
get_ctimespec(const SMB_STRUCT_STAT
*pst
);
1018 void set_ctimespec(SMB_STRUCT_STAT
*pst
, struct timespec ts
);
1019 void dos_filetime_timespec(struct timespec
*tsp
);
1020 time_t srv_make_unix_date(const void *date_ptr
);
1021 time_t srv_make_unix_date2(const void *date_ptr
);
1022 time_t srv_make_unix_date3(const void *date_ptr
);
1023 time_t convert_timespec_to_time_t(struct timespec ts
);
1024 struct timespec
convert_time_t_to_timespec(time_t t
);
1025 struct timespec
convert_timeval_to_timespec(const struct timeval tv
);
1026 struct timeval
convert_timespec_to_timeval(const struct timespec ts
);
1027 struct timespec
timespec_current(void);
1028 struct timespec
timespec_min(const struct timespec
*ts1
,
1029 const struct timespec
*ts2
);
1030 int timespec_compare(const struct timespec
*ts1
, const struct timespec
*ts2
);
1031 struct timespec
interpret_long_date(const char *p
);
1032 void cli_put_dos_date(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1033 void cli_put_dos_date2(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1034 void cli_put_dos_date3(struct cli_state
*cli
, char *buf
, int offset
, time_t unixdate
);
1035 time_t cli_make_unix_date(struct cli_state
*cli
, const void *date_ptr
);
1036 time_t cli_make_unix_date2(struct cli_state
*cli
, const void *date_ptr
);
1037 time_t cli_make_unix_date3(struct cli_state
*cli
, const void *date_ptr
);
1038 bool nt_time_equals(const NTTIME
*nt1
, const NTTIME
*nt2
);
1039 void TimeInit(void);
1040 void get_process_uptime(struct timeval
*ret_time
);
1041 time_t nt_time_to_unix_abs(const NTTIME
*nt
);
1042 time_t uint64s_nt_time_to_unix_abs(const uint64_t *src
);
1043 void unix_timespec_to_nt_time(NTTIME
*nt
, struct timespec ts
);
1044 void unix_to_nt_time_abs(NTTIME
*nt
, time_t t
);
1045 bool null_mtime(time_t mtime
);
1046 const char *time_to_asc(const time_t t
);
1047 const char *display_time(NTTIME nttime
);
1048 bool nt_time_is_set(const NTTIME
*nt
);
1050 /* The following definitions come from lib/username.c */
1052 char *get_user_home_dir(TALLOC_CTX
*mem_ctx
, const char *user
);
1053 struct passwd
*Get_Pwnam_alloc(TALLOC_CTX
*mem_ctx
, const char *user
);
1055 /* The following definitions come from lib/util.c */
1057 bool all_zero(const uint8_t *ptr
, size_t size
);
1058 bool set_global_myname(const char *myname
);
1059 const char *global_myname(void);
1060 bool set_global_myworkgroup(const char *myworkgroup
);
1061 const char *lp_workgroup(void);
1062 bool set_global_scope(const char *scope
);
1063 const char *global_scope(void);
1064 void gfree_names(void);
1065 void gfree_all( void );
1066 const char *my_netbios_names(int i
);
1067 bool set_netbios_aliases(const char **str_array
);
1068 bool init_names(void);
1069 struct user_auth_info
*user_auth_info_init(TALLOC_CTX
*mem_ctx
);
1070 const char *get_cmdline_auth_info_username(const struct user_auth_info
*auth_info
);
1071 void set_cmdline_auth_info_username(struct user_auth_info
*auth_info
,
1072 const char *username
);
1073 void set_cmdline_auth_info_password(struct user_auth_info
*auth_info
,
1074 const char *password
);
1075 const char *get_cmdline_auth_info_password(const struct user_auth_info
*auth_info
);
1076 bool set_cmdline_auth_info_signing_state(struct user_auth_info
*auth_info
,
1078 int get_cmdline_auth_info_signing_state(const struct user_auth_info
*auth_info
);
1079 void set_cmdline_auth_info_use_kerberos(struct user_auth_info
*auth_info
,
1081 bool get_cmdline_auth_info_use_kerberos(const struct user_auth_info
*auth_info
);
1082 void set_cmdline_auth_info_fallback_after_kerberos(struct user_auth_info
*auth_info
,
1084 bool get_cmdline_auth_info_fallback_after_kerberos(const struct user_auth_info
*auth_info
);
1085 void set_cmdline_auth_info_use_krb5_ticket(struct user_auth_info
*auth_info
);
1086 void set_cmdline_auth_info_smb_encrypt(struct user_auth_info
*auth_info
);
1087 void set_cmdline_auth_info_use_machine_account(struct user_auth_info
*auth_info
);
1088 bool get_cmdline_auth_info_got_pass(const struct user_auth_info
*auth_info
);
1089 bool get_cmdline_auth_info_smb_encrypt(const struct user_auth_info
*auth_info
);
1090 bool get_cmdline_auth_info_use_machine_account(const struct user_auth_info
*auth_info
);
1091 struct user_auth_info
*get_cmdline_auth_info_copy(TALLOC_CTX
*mem_ctx
,
1092 const struct user_auth_info
*info
);
1093 bool set_cmdline_auth_info_machine_account_creds(struct user_auth_info
*auth_info
);
1094 void set_cmdline_auth_info_getpass(struct user_auth_info
*auth_info
);
1095 bool add_gid_to_array_unique(TALLOC_CTX
*mem_ctx
, gid_t gid
,
1096 gid_t
**gids
, size_t *num_gids
);
1097 bool file_exist_stat(const char *fname
,SMB_STRUCT_STAT
*sbuf
);
1098 bool socket_exist(const char *fname
);
1099 bool directory_exist_stat(char *dname
,SMB_STRUCT_STAT
*st
);
1100 uint64_t get_file_size_stat(const SMB_STRUCT_STAT
*sbuf
);
1101 SMB_OFF_T
get_file_size(char *file_name
);
1102 char *attrib_string(uint16 mode
);
1103 void show_msg(char *buf
);
1104 void smb_set_enclen(char *buf
,int len
,uint16 enc_ctx_num
);
1105 void smb_setlen(char *buf
,int len
);
1106 int set_message_bcc(char *buf
,int num_bytes
);
1107 ssize_t
message_push_blob(uint8
**outbuf
, DATA_BLOB blob
);
1108 char *unix_clean_name(TALLOC_CTX
*ctx
, const char *s
);
1109 char *clean_name(TALLOC_CTX
*ctx
, const char *s
);
1110 ssize_t
write_data_at_offset(int fd
, const char *buffer
, size_t N
, SMB_OFF_T pos
);
1111 int set_blocking(int fd
, bool set
);
1112 void smb_msleep(unsigned int t
);
1113 bool reinit_after_fork(struct messaging_context
*msg_ctx
,
1114 struct event_context
*ev_ctx
,
1115 bool parent_longlived
);
1116 bool yesno(const char *p
);
1117 void *malloc_(size_t size
);
1118 void *memalign_array(size_t el_size
, size_t align
, unsigned int count
);
1119 void *calloc_array(size_t size
, size_t nmemb
);
1120 void *Realloc(void *p
, size_t size
, bool free_old_on_error
);
1121 void add_to_large_array(TALLOC_CTX
*mem_ctx
, size_t element_size
,
1122 void *element
, void *_array
, uint32
*num_elements
,
1123 ssize_t
*array_size
);
1124 char *get_myname(TALLOC_CTX
*ctx
);
1125 char *get_mydnsdomname(TALLOC_CTX
*ctx
);
1126 int interpret_protocol(const char *str
,int def
);
1127 char *automount_lookup(TALLOC_CTX
*ctx
, const char *user_name
);
1128 char *automount_lookup(TALLOC_CTX
*ctx
, const char *user_name
);
1129 bool process_exists(const struct server_id pid
);
1130 const char *uidtoname(uid_t uid
);
1131 char *gidtoname(gid_t gid
);
1132 uid_t
nametouid(const char *name
);
1133 gid_t
nametogid(const char *name
);
1134 void smb_panic(const char *const why
);
1135 void log_stack_trace(void);
1136 const char *readdirname(SMB_STRUCT_DIR
*p
);
1137 bool is_in_path(const char *name
, name_compare_entry
*namelist
, bool case_sensitive
);
1138 void set_namearray(name_compare_entry
**ppname_array
, const char *namelist
);
1139 void free_namearray(name_compare_entry
*name_array
);
1140 bool fcntl_lock(int fd
, int op
, SMB_OFF_T offset
, SMB_OFF_T count
, int type
);
1141 bool fcntl_getlock(int fd
, SMB_OFF_T
*poffset
, SMB_OFF_T
*pcount
, int *ptype
, pid_t
*ppid
);
1142 bool is_myname(const char *s
);
1143 bool is_myworkgroup(const char *s
);
1144 void ra_lanman_string( const char *native_lanman
);
1145 const char *get_remote_arch_str(void);
1146 void set_remote_arch(enum remote_arch_types type
);
1147 enum remote_arch_types
get_remote_arch(void);
1148 const char *tab_depth(int level
, int depth
);
1149 int str_checksum(const char *s
);
1150 void zero_free(void *p
, size_t size
);
1151 int set_maxfiles(int requested_max
);
1152 int smb_mkstemp(char *name_template
);
1153 void *smb_xmalloc_array(size_t size
, unsigned int count
);
1154 char *myhostname(void);
1155 char *lock_path(const char *name
);
1156 char *pid_path(const char *name
);
1157 char *lib_path(const char *name
);
1158 char *modules_path(const char *name
);
1159 char *data_path(const char *name
);
1160 char *state_path(const char *name
);
1161 char *cache_path(const char *name
);
1162 const char *shlib_ext(void);
1163 bool parent_dirname(TALLOC_CTX
*mem_ctx
, const char *dir
, char **parent
,
1165 bool ms_has_wild(const char *s
);
1166 bool ms_has_wild_w(const smb_ucs2_t
*s
);
1167 bool mask_match(const char *string
, const char *pattern
, bool is_case_sensitive
);
1168 bool mask_match_search(const char *string
, const char *pattern
, bool is_case_sensitive
);
1169 bool mask_match_list(const char *string
, char **list
, int listLen
, bool is_case_sensitive
);
1170 bool unix_wild_match(const char *pattern
, const char *string
);
1171 bool name_to_fqdn(fstring fqdn
, const char *name
);
1172 void *talloc_append_blob(TALLOC_CTX
*mem_ctx
, void *buf
, DATA_BLOB blob
);
1173 uint32
map_share_mode_to_deny_mode(uint32 share_access
, uint32 private_options
);
1174 pid_t
procid_to_pid(const struct server_id
*proc
);
1175 void set_my_vnn(uint32 vnn
);
1176 uint32
get_my_vnn(void);
1177 struct server_id
pid_to_procid(pid_t pid
);
1178 struct server_id
procid_self(void);
1179 struct server_id
server_id_self(void);
1180 bool procid_equal(const struct server_id
*p1
, const struct server_id
*p2
);
1181 bool cluster_id_equal(const struct server_id
*id1
,
1182 const struct server_id
*id2
);
1183 bool procid_is_me(const struct server_id
*pid
);
1184 struct server_id
interpret_pid(const char *pid_string
);
1185 char *procid_str(TALLOC_CTX
*mem_ctx
, const struct server_id
*pid
);
1186 char *procid_str_static(const struct server_id
*pid
);
1187 bool procid_valid(const struct server_id
*pid
);
1188 bool procid_is_local(const struct server_id
*pid
);
1189 int this_is_smp(void);
1190 bool trans_oob(uint32_t bufsize
, uint32_t offset
, uint32_t length
);
1191 bool is_offset_safe(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1192 char *get_safe_ptr(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1193 char *get_safe_str_ptr(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
);
1194 int get_safe_SVAL(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
, int failval
);
1195 int get_safe_IVAL(const char *buf_base
, size_t buf_len
, char *ptr
, size_t off
, int failval
);
1196 void split_domain_user(TALLOC_CTX
*mem_ctx
,
1197 const char *full_name
,
1200 void *_talloc_zero_zeronull(const void *ctx
, size_t size
, const char *name
);
1201 void *_talloc_memdup_zeronull(const void *t
, const void *p
, size_t size
, const char *name
);
1202 void *_talloc_array_zeronull(const void *ctx
, size_t el_size
, unsigned count
, const char *name
);
1203 void *_talloc_zero_array_zeronull(const void *ctx
, size_t el_size
, unsigned count
, const char *name
);
1204 void *talloc_zeronull(const void *context
, size_t size
, const char *name
);
1205 NTSTATUS
split_ntfs_stream_name(TALLOC_CTX
*mem_ctx
, const char *fname
,
1206 char **pbase
, char **pstream
);
1207 bool is_valid_policy_hnd(const struct policy_handle
*hnd
);
1208 bool policy_hnd_equal(const struct policy_handle
*hnd1
,
1209 const struct policy_handle
*hnd2
);
1210 const char *strip_hostname(const char *s
);
1212 /* The following definitions come from lib/util_file.c */
1214 char **file_lines_pload(const char *syscmd
, int *numlines
);
1215 void file_lines_free(char **lines
);
1217 /* The following definitions come from lib/util_nscd.c */
1219 void smb_nscd_flush_user_cache(void);
1220 void smb_nscd_flush_group_cache(void);
1222 /* The following definitions come from lib/util_nttoken.c */
1224 NT_USER_TOKEN
*dup_nt_token(TALLOC_CTX
*mem_ctx
, const NT_USER_TOKEN
*ptoken
);
1225 NTSTATUS
merge_nt_token(TALLOC_CTX
*mem_ctx
,
1226 const struct nt_user_token
*token_1
,
1227 const struct nt_user_token
*token_2
,
1228 struct nt_user_token
**token_out
);
1229 bool token_sid_in_ace(const NT_USER_TOKEN
*token
, const SEC_ACE
*ace
);
1231 /* The following definitions come from lib/util_pw.c */
1233 struct passwd
*tcopy_passwd(TALLOC_CTX
*mem_ctx
, const struct passwd
*from
) ;
1234 void flush_pwnam_cache(void);
1235 struct passwd
*getpwnam_alloc(TALLOC_CTX
*mem_ctx
, const char *name
);
1236 struct passwd
*getpwuid_alloc(TALLOC_CTX
*mem_ctx
, uid_t uid
) ;
1238 /* The following definitions come from lib/util_reg.c */
1240 const char *reg_type_lookup(enum winreg_Type type
);
1241 WERROR
reg_pull_multi_sz(TALLOC_CTX
*mem_ctx
, const void *buf
, size_t len
,
1242 uint32
*num_values
, char ***values
);
1244 /* The following definitions come from lib/util_reg_api.c */
1246 WERROR
registry_pull_value(TALLOC_CTX
*mem_ctx
,
1247 struct registry_value
**pvalue
,
1248 enum winreg_Type type
, uint8
*data
,
1249 uint32 size
, uint32 length
);
1250 WERROR
registry_push_value(TALLOC_CTX
*mem_ctx
,
1251 const struct registry_value
*value
,
1252 DATA_BLOB
*presult
);
1254 /* The following definitions come from lib/util_seaccess.c */
1256 void se_map_generic(uint32
*access_mask
, const struct generic_mapping
*mapping
);
1257 void security_acl_map_generic(struct security_acl
*sa
, const struct generic_mapping
*mapping
);
1258 void se_map_standard(uint32
*access_mask
, struct standard_mapping
*mapping
);
1259 NTSTATUS
se_access_check(const SEC_DESC
*sd
, const NT_USER_TOKEN
*token
,
1260 uint32 acc_desired
, uint32
*acc_granted
);
1261 NTSTATUS
samr_make_sam_obj_sd(TALLOC_CTX
*ctx
, SEC_DESC
**psd
, size_t *sd_size
);
1263 /* The following definitions come from lib/util_sec.c */
1265 void sec_init(void);
1266 uid_t
sec_initial_uid(void);
1267 gid_t
sec_initial_gid(void);
1268 bool non_root_mode(void);
1269 void gain_root_privilege(void);
1270 void gain_root_group_privilege(void);
1271 void set_effective_uid(uid_t uid
);
1272 void set_effective_gid(gid_t gid
);
1273 void save_re_uid(void);
1274 void restore_re_uid_fromroot(void);
1275 void restore_re_uid(void);
1276 void save_re_gid(void);
1277 void restore_re_gid(void);
1278 int set_re_uid(void);
1279 void become_user_permanently(uid_t uid
, gid_t gid
);
1280 bool is_setuid_root(void) ;
1282 /* The following definitions come from lib/util_sid.c */
1284 const char *sid_type_lookup(uint32 sid_type
) ;
1285 NT_USER_TOKEN
*get_system_token(void) ;
1286 const char *get_global_sam_name(void) ;
1287 char *sid_to_fstring(fstring sidstr_out
, const DOM_SID
*sid
);
1288 char *sid_string_talloc(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
);
1289 char *sid_string_dbg(const DOM_SID
*sid
);
1290 char *sid_string_tos(const DOM_SID
*sid
);
1291 bool string_to_sid(DOM_SID
*sidout
, const char *sidstr
);
1292 DOM_SID
*string_sid_talloc(TALLOC_CTX
*mem_ctx
, const char *sidstr
);
1293 bool sid_append_rid(DOM_SID
*sid
, uint32 rid
);
1294 bool sid_compose(DOM_SID
*dst
, const DOM_SID
*domain_sid
, uint32 rid
);
1295 bool sid_split_rid(DOM_SID
*sid
, uint32
*rid
);
1296 bool sid_peek_rid(const DOM_SID
*sid
, uint32
*rid
);
1297 bool sid_peek_check_rid(const DOM_SID
*exp_dom_sid
, const DOM_SID
*sid
, uint32
*rid
);
1298 void sid_copy(DOM_SID
*dst
, const DOM_SID
*src
);
1299 bool sid_linearize(char *outbuf
, size_t len
, const DOM_SID
*sid
);
1300 bool sid_parse(const char *inbuf
, size_t len
, DOM_SID
*sid
);
1301 int sid_compare(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1302 int sid_compare_domain(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1303 bool sid_equal(const DOM_SID
*sid1
, const DOM_SID
*sid2
);
1304 bool non_mappable_sid(DOM_SID
*sid
);
1305 char *sid_binstring(const DOM_SID
*sid
);
1306 char *sid_binstring_hex(const DOM_SID
*sid
);
1307 DOM_SID
*sid_dup_talloc(TALLOC_CTX
*ctx
, const DOM_SID
*src
);
1308 NTSTATUS
add_sid_to_array(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1309 DOM_SID
**sids
, size_t *num
);
1310 NTSTATUS
add_sid_to_array_unique(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1311 DOM_SID
**sids
, size_t *num_sids
);
1312 void del_sid_from_array(const DOM_SID
*sid
, DOM_SID
**sids
, size_t *num
);
1313 bool add_rid_to_array_unique(TALLOC_CTX
*mem_ctx
,
1314 uint32 rid
, uint32
**pp_rids
, size_t *p_num
);
1315 bool is_null_sid(const DOM_SID
*sid
);
1316 bool is_sid_in_token(const NT_USER_TOKEN
*token
, const DOM_SID
*sid
);
1317 NTSTATUS
sid_array_from_info3(TALLOC_CTX
*mem_ctx
,
1318 const struct netr_SamInfo3
*info3
,
1319 DOM_SID
**user_sids
,
1320 size_t *num_user_sids
,
1321 bool include_user_group_rid
,
1322 bool skip_ressource_groups
);
1324 /* The following definitions come from lib/util_sock.c */
1326 bool interpret_string_addr_internal(struct addrinfo
**ppres
,
1327 const char *str
, int flags
);
1328 bool is_broadcast_addr(const struct sockaddr
*pss
);
1329 bool interpret_string_addr(struct sockaddr_storage
*pss
,
1332 bool is_loopback_ip_v4(struct in_addr ip
);
1333 bool is_loopback_addr(const struct sockaddr
*pss
);
1334 bool is_zero_addr(const struct sockaddr
*pss
);
1335 void zero_ip_v4(struct in_addr
*ip
);
1336 void zero_sockaddr(struct sockaddr_storage
*pss
);
1337 void in_addr_to_sockaddr_storage(struct sockaddr_storage
*ss
,
1339 bool same_net(const struct sockaddr
*ip1
,
1340 const struct sockaddr
*ip2
,
1341 const struct sockaddr
*mask
);
1342 bool sockaddr_equal(const struct sockaddr
*ip1
,
1343 const struct sockaddr
*ip2
);
1344 bool is_address_any(const struct sockaddr
*psa
);
1345 uint16_t get_sockaddr_port(const struct sockaddr_storage
*pss
);
1346 char *print_sockaddr(char *dest
,
1348 const struct sockaddr_storage
*psa
);
1349 char *print_canonical_sockaddr(TALLOC_CTX
*ctx
,
1350 const struct sockaddr_storage
*pss
);
1351 void set_sockaddr_port(struct sockaddr
*psa
, uint16_t port
);
1352 const char *client_name(int fd
);
1353 int get_socket_port(int fd
);
1354 const char *client_addr(int fd
, char *addr
, size_t addrlen
);
1355 const char *client_socket_addr(int fd
, char *addr
, size_t addr_len
);
1356 int client_socket_port(int fd
);
1357 void set_smb_read_error(enum smb_read_errors
*pre
,
1358 enum smb_read_errors newerr
);
1359 void cond_set_smb_read_error(enum smb_read_errors
*pre
,
1360 enum smb_read_errors newerr
);
1361 bool is_a_socket(int fd
);
1362 void set_socket_options(int fd
, const char *options
);
1363 ssize_t
read_udp_v4_socket(int fd
,
1366 struct sockaddr_storage
*psa
);
1367 NTSTATUS
read_socket_with_timeout(int fd
, char *buf
,
1368 size_t mincnt
, size_t maxcnt
,
1369 unsigned int time_out
,
1371 NTSTATUS
read_data(int fd
, char *buffer
, size_t N
);
1372 ssize_t
write_data(int fd
, const char *buffer
, size_t N
);
1373 ssize_t
write_data_iov(int fd
, const struct iovec
*orig_iov
, int iovcnt
);
1374 bool send_keepalive(int client
);
1375 NTSTATUS
read_smb_length_return_keepalive(int fd
, char *inbuf
,
1376 unsigned int timeout
,
1378 NTSTATUS
read_smb_length(int fd
, char *inbuf
, unsigned int timeout
,
1380 NTSTATUS
receive_smb_raw(int fd
,
1383 unsigned int timeout
,
1386 int open_socket_in(int type
,
1389 const struct sockaddr_storage
*psock
,
1391 NTSTATUS
open_socket_out(const struct sockaddr_storage
*pss
, uint16_t port
,
1392 int timeout
, int *pfd
);
1393 struct tevent_req
*open_socket_out_send(TALLOC_CTX
*mem_ctx
,
1394 struct event_context
*ev
,
1395 const struct sockaddr_storage
*pss
,
1398 NTSTATUS
open_socket_out_recv(struct tevent_req
*req
, int *pfd
);
1399 struct tevent_req
*open_socket_out_defer_send(TALLOC_CTX
*mem_ctx
,
1400 struct event_context
*ev
,
1401 struct timeval wait_time
,
1402 const struct sockaddr_storage
*pss
,
1405 NTSTATUS
open_socket_out_defer_recv(struct tevent_req
*req
, int *pfd
);
1406 bool open_any_socket_out(struct sockaddr_storage
*addrs
, int num_addrs
,
1407 int timeout
, int *fd_index
, int *fd
);
1408 int open_udp_socket(const char *host
, int port
);
1409 const char *get_peer_name(int fd
, bool force_lookup
);
1410 const char *get_peer_addr(int fd
, char *addr
, size_t addr_len
);
1411 int create_pipe_sock(const char *socket_dir
,
1412 const char *socket_name
,
1414 const char *get_mydnsfullname(void);
1415 bool is_myname_or_ipaddr(const char *s
);
1416 struct tevent_req
*read_smb_send(TALLOC_CTX
*mem_ctx
,
1417 struct tevent_context
*ev
,
1419 ssize_t
read_smb_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
1420 uint8_t **pbuf
, int *perrno
);
1422 /* The following definitions come from lib/util_str.c */
1424 bool next_token(const char **ptr
, char *buff
, const char *sep
, size_t bufsize
);
1425 bool next_token_talloc(TALLOC_CTX
*ctx
,
1429 bool next_token_no_ltrim_talloc(TALLOC_CTX
*ctx
,
1433 int StrCaseCmp(const char *s
, const char *t
);
1434 int StrnCaseCmp(const char *s
, const char *t
, size_t len
);
1435 bool strnequal(const char *s1
,const char *s2
,size_t n
);
1436 bool strcsequal(const char *s1
,const char *s2
);
1437 void strnorm(char *s
, int case_default
);
1438 bool strisnormal(const char *s
, int case_default
);
1439 char *push_skip_string(char *buf
);
1440 char *skip_string(const char *base
, size_t len
, char *buf
);
1441 size_t str_charnum(const char *s
);
1442 size_t str_ascii_charnum(const char *s
);
1443 bool trim_char(char *s
,char cfront
,char cback
);
1444 bool strhasupper(const char *s
);
1445 bool strhaslower(const char *s
);
1446 char *safe_strcpy_fn(const char *fn
,
1451 char *safe_strcat_fn(const char *fn
,
1456 char *alpha_strcpy_fn(const char *fn
,
1460 const char *other_safe_chars
,
1462 char *StrnCpy_fn(const char *fn
, int line
,char *dest
,const char *src
,size_t n
);
1463 bool in_list(const char *s
, const char *list
, bool casesensitive
);
1464 void string_free(char **s
);
1465 bool string_set(char **dest
,const char *src
);
1466 void string_sub2(char *s
,const char *pattern
, const char *insert
, size_t len
,
1467 bool remove_unsafe_characters
, bool replace_once
,
1468 bool allow_trailing_dollar
);
1469 void string_sub_once(char *s
, const char *pattern
,
1470 const char *insert
, size_t len
);
1471 void string_sub(char *s
,const char *pattern
, const char *insert
, size_t len
);
1472 void fstring_sub(char *s
,const char *pattern
,const char *insert
);
1473 char *realloc_string_sub2(char *string
,
1474 const char *pattern
,
1476 bool remove_unsafe_characters
,
1477 bool allow_trailing_dollar
);
1478 char *realloc_string_sub(char *string
,
1479 const char *pattern
,
1480 const char *insert
);
1481 char *talloc_string_sub2(TALLOC_CTX
*mem_ctx
, const char *src
,
1482 const char *pattern
,
1484 bool remove_unsafe_characters
,
1486 bool allow_trailing_dollar
);
1487 char *talloc_string_sub(TALLOC_CTX
*mem_ctx
,
1489 const char *pattern
,
1490 const char *insert
);
1491 void all_string_sub(char *s
,const char *pattern
,const char *insert
, size_t len
);
1492 char *talloc_all_string_sub(TALLOC_CTX
*ctx
,
1494 const char *pattern
,
1495 const char *insert
);
1496 char *octal_string(int i
);
1497 char *string_truncate(char *s
, unsigned int length
);
1498 char *strchr_m(const char *src
, char c
);
1499 char *strrchr_m(const char *s
, char c
);
1500 char *strnrchr_m(const char *s
, char c
, unsigned int n
);
1501 char *strstr_m(const char *src
, const char *findstr
);
1502 void strlower_m(char *s
);
1503 void strupper_m(char *s
);
1504 size_t strlen_m(const char *s
);
1505 size_t strlen_m_term(const char *s
);
1506 size_t strlen_m_term_null(const char *s
);
1507 char *binary_string_rfc2254(char *buf
, int len
);
1508 char *binary_string(char *buf
, int len
);
1509 int fstr_sprintf(fstring s
, const char *fmt
, ...);
1510 bool str_list_sub_basic( char **list
, const char *smb_name
,
1511 const char *domain_name
);
1512 bool str_list_substitute(char **list
, const char *pattern
, const char *insert
);
1513 bool str_list_check(const char **list
, const char *s
);
1514 bool str_list_check_ci(const char **list
, const char *s
);
1516 char *ipstr_list_make(char **ipstr_list
,
1517 const struct ip_service
*ip_list
,
1519 int ipstr_list_parse(const char *ipstr_list
, struct ip_service
**ip_list
);
1520 void ipstr_list_free(char* ipstr_list
);
1521 void rfc1738_unescape(char *buf
);
1522 DATA_BLOB
base64_decode_data_blob(const char *s
);
1523 void base64_decode_inplace(char *s
);
1524 char *base64_encode_data_blob(TALLOC_CTX
*mem_ctx
, DATA_BLOB data
);
1525 uint64_t STR_TO_SMB_BIG_UINT(const char *nptr
, const char **entptr
);
1526 SMB_OFF_T
conv_str_size(const char * str
);
1527 void string_append(char **left
, const char *right
);
1528 bool add_string_to_array(TALLOC_CTX
*mem_ctx
,
1529 const char *str
, const char ***strings
,
1531 void sprintf_append(TALLOC_CTX
*mem_ctx
, char **string
, ssize_t
*len
,
1532 size_t *bufsize
, const char *fmt
, ...);
1533 int asprintf_strupper_m(char **strp
, const char *fmt
, ...);
1534 char *talloc_asprintf_strupper_m(TALLOC_CTX
*t
, const char *fmt
, ...);
1535 char *talloc_asprintf_strlower_m(TALLOC_CTX
*t
, const char *fmt
, ...);
1536 char *sstring_sub(const char *src
, char front
, char back
);
1537 bool validate_net_name( const char *name
,
1538 const char *invalid_chars
,
1540 char *escape_shell_string(const char *src
);
1541 char **str_list_make_v3(TALLOC_CTX
*mem_ctx
, const char *string
, const char *sep
);
1543 /* The following definitions come from lib/util_unistr.c */
1545 void gfree_case_tables(void);
1546 void load_case_tables(void);
1547 void init_valid_table(void);
1548 size_t dos_PutUniCode(char *dst
,const char *src
, size_t len
, bool null_terminate
);
1549 char *skip_unibuf(char *src
, size_t len
);
1550 int rpcstr_pull(char* dest
, void *src
, int dest_len
, int src_len
, int flags
);
1551 int rpcstr_pull_talloc(TALLOC_CTX
*ctx
,
1556 int rpcstr_push(void *dest
, const char *src
, size_t dest_len
, int flags
);
1557 int rpcstr_push_talloc(TALLOC_CTX
*ctx
, smb_ucs2_t
**dest
, const char *src
);
1558 smb_ucs2_t
toupper_w(smb_ucs2_t val
);
1559 smb_ucs2_t
tolower_w( smb_ucs2_t val
);
1560 bool islower_w(smb_ucs2_t c
);
1561 bool isupper_w(smb_ucs2_t c
);
1562 bool isvalid83_w(smb_ucs2_t c
);
1563 size_t strlen_w(const smb_ucs2_t
*src
);
1564 size_t strnlen_w(const smb_ucs2_t
*src
, size_t max
);
1565 smb_ucs2_t
*strchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
);
1566 smb_ucs2_t
*strchr_wa(const smb_ucs2_t
*s
, char c
);
1567 smb_ucs2_t
*strrchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
);
1568 smb_ucs2_t
*strnrchr_w(const smb_ucs2_t
*s
, smb_ucs2_t c
, unsigned int n
);
1569 smb_ucs2_t
*strstr_w(const smb_ucs2_t
*s
, const smb_ucs2_t
*ins
);
1570 bool strlower_w(smb_ucs2_t
*s
);
1571 bool strupper_w(smb_ucs2_t
*s
);
1572 void strnorm_w(smb_ucs2_t
*s
, int case_default
);
1573 int strcmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
);
1574 int strncmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
, size_t len
);
1575 int strcasecmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
);
1576 int strncasecmp_w(const smb_ucs2_t
*a
, const smb_ucs2_t
*b
, size_t len
);
1577 bool strequal_w(const smb_ucs2_t
*s1
, const smb_ucs2_t
*s2
);
1578 bool strnequal_w(const smb_ucs2_t
*s1
,const smb_ucs2_t
*s2
,size_t n
);
1579 smb_ucs2_t
*strdup_w(const smb_ucs2_t
*src
);
1580 smb_ucs2_t
*strndup_w(const smb_ucs2_t
*src
, size_t len
);
1581 smb_ucs2_t
*strncpy_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
, const size_t max
);
1582 smb_ucs2_t
*strncat_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
, const size_t max
);
1583 smb_ucs2_t
*strcat_w(smb_ucs2_t
*dest
, const smb_ucs2_t
*src
);
1584 void string_replace_w(smb_ucs2_t
*s
, smb_ucs2_t oldc
, smb_ucs2_t newc
);
1585 bool trim_string_w(smb_ucs2_t
*s
, const smb_ucs2_t
*front
,
1586 const smb_ucs2_t
*back
);
1587 int strcmp_wa(const smb_ucs2_t
*a
, const char *b
);
1588 int strncmp_wa(const smb_ucs2_t
*a
, const char *b
, size_t len
);
1589 smb_ucs2_t
*strpbrk_wa(const smb_ucs2_t
*s
, const char *p
);
1590 smb_ucs2_t
*strstr_wa(const smb_ucs2_t
*s
, const char *ins
);
1591 int toupper_ascii(int c
);
1592 int tolower_ascii(int c
);
1593 int isupper_ascii(int c
);
1594 int islower_ascii(int c
);
1596 /* The following definitions come from lib/util_uuid.c */
1598 void smb_uuid_pack(const struct GUID uu
, UUID_FLAT
*ptr
);
1599 void smb_uuid_unpack(const UUID_FLAT in
, struct GUID
*uu
);
1600 char *guid_binstring(const struct GUID
*guid
);
1602 /* The following definitions come from lib/version.c */
1604 const char *samba_version_string(void);
1606 /* The following definitions come from lib/winbind_util.c */
1608 bool winbind_lookup_name(const char *dom_name
, const char *name
, DOM_SID
*sid
,
1609 enum lsa_SidType
*name_type
);
1610 bool winbind_lookup_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
1611 const char **domain
, const char **name
,
1612 enum lsa_SidType
*name_type
);
1613 bool winbind_ping(void);
1614 bool winbind_sid_to_uid(uid_t
*puid
, const DOM_SID
*sid
);
1615 bool winbind_uid_to_sid(DOM_SID
*sid
, uid_t uid
);
1616 bool winbind_sid_to_gid(gid_t
*pgid
, const DOM_SID
*sid
);
1617 bool winbind_gid_to_sid(DOM_SID
*sid
, gid_t gid
);
1618 struct passwd
* winbind_getpwnam(const char * sname
);
1619 struct passwd
* winbind_getpwsid(const DOM_SID
*sid
);
1620 wbcErr
wb_is_trusted_domain(const char *domain
);
1621 bool winbind_lookup_rids(TALLOC_CTX
*mem_ctx
,
1622 const DOM_SID
*domain_sid
,
1623 int num_rids
, uint32
*rids
,
1624 const char **domain_name
,
1625 const char ***names
, enum lsa_SidType
**types
);
1626 bool winbind_allocate_uid(uid_t
*uid
);
1627 bool winbind_allocate_gid(gid_t
*gid
);
1628 bool winbind_get_groups(TALLOC_CTX
*mem_ctx
,
1629 const char *account
,
1630 uint32_t *num_groups
,
1632 bool winbind_get_sid_aliases(TALLOC_CTX
*mem_ctx
,
1633 const DOM_SID
*dom_sid
,
1634 const DOM_SID
*members
,
1636 uint32_t **pp_alias_rids
,
1637 size_t *p_num_alias_rids
);
1640 /* The following definitions come from lib/wins_srv.c */
1642 bool wins_srv_is_dead(struct in_addr wins_ip
, struct in_addr src_ip
);
1643 void wins_srv_alive(struct in_addr wins_ip
, struct in_addr src_ip
);
1644 void wins_srv_died(struct in_addr wins_ip
, struct in_addr src_ip
);
1645 unsigned wins_srv_count(void);
1646 char **wins_srv_tags(void);
1647 void wins_srv_tags_free(char **list
);
1648 struct in_addr
wins_srv_ip_tag(const char *tag
, struct in_addr src_ip
);
1649 unsigned wins_srv_count_tag(const char *tag
);
1651 /* The following definitions come from libads/ads_status.c */
1653 ADS_STATUS
ads_build_error(enum ads_error_type etype
,
1654 int rc
, int minor_status
);
1655 ADS_STATUS
ads_build_nt_error(enum ads_error_type etype
,
1656 NTSTATUS nt_status
);
1657 NTSTATUS
ads_ntstatus(ADS_STATUS status
);
1658 const char *ads_errstr(ADS_STATUS status
);
1659 NTSTATUS
gss_err_to_ntstatus(uint32 maj
, uint32 min
);
1661 /* The following definitions come from libads/ads_struct.c */
1663 char *ads_build_path(const char *realm
, const char *sep
, const char *field
, int reverse
);
1664 char *ads_build_dn(const char *realm
);
1665 char *ads_build_domain(const char *dn
);
1666 ADS_STRUCT
*ads_init(const char *realm
,
1667 const char *workgroup
,
1668 const char *ldap_server
);
1669 void ads_destroy(ADS_STRUCT
**ads
);
1671 /* The following definitions come from libads/ads_utils.c */
1673 uint32
ads_acb2uf(uint32 acb
);
1674 uint32
ads_uf2acb(uint32 uf
);
1675 uint32
ads_uf2atype(uint32 uf
);
1676 uint32
ads_gtype2atype(uint32 gtype
);
1677 enum lsa_SidType
ads_atype_map(uint32 atype
);
1678 const char *ads_get_ldap_server_name(ADS_STRUCT
*ads
);
1680 /* The following definitions come from libads/authdata.c */
1682 struct PAC_LOGON_INFO
*get_logon_info_from_pac(struct PAC_DATA
*pac_data
);
1683 NTSTATUS
kerberos_return_pac(TALLOC_CTX
*mem_ctx
,
1687 time_t *expire_time
,
1688 time_t *renew_till_time
,
1689 const char *cache_name
,
1691 bool add_netbios_addr
,
1692 time_t renewable_time
,
1693 struct PAC_DATA
**pac_ret
);
1694 NTSTATUS
kerberos_return_info3_from_pac(TALLOC_CTX
*mem_ctx
,
1698 time_t *expire_time
,
1699 time_t *renew_till_time
,
1700 const char *cache_name
,
1702 bool add_netbios_addr
,
1703 time_t renewable_time
,
1704 struct netr_SamInfo3
**info3
);
1706 /* The following definitions come from libads/cldap.c */
1707 bool ads_cldap_netlogon(TALLOC_CTX
*mem_ctx
,
1710 uint32_t nt_version
,
1711 struct netlogon_samlogon_response
**reply
);
1712 bool ads_cldap_netlogon_5(TALLOC_CTX
*mem_ctx
,
1715 struct NETLOGON_SAM_LOGON_RESPONSE_EX
*reply5
);
1717 /* The following definitions come from libads/disp_sec.c */
1719 void ads_disp_sd(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, SEC_DESC
*sd
);
1721 /* The following definitions come from libads/dns.c */
1723 NTSTATUS
ads_dns_lookup_ns(TALLOC_CTX
*ctx
,
1724 const char *dnsdomain
,
1725 struct dns_rr_ns
**nslist
,
1727 bool sitename_store(const char *realm
, const char *sitename
);
1728 char *sitename_fetch(const char *realm
);
1729 bool stored_sitename_changed(const char *realm
, const char *sitename
);
1730 NTSTATUS
ads_dns_query_dcs(TALLOC_CTX
*ctx
,
1732 const char *sitename
,
1733 struct dns_rr_srv
**dclist
,
1735 NTSTATUS
ads_dns_query_gcs(TALLOC_CTX
*ctx
,
1737 const char *sitename
,
1738 struct dns_rr_srv
**dclist
,
1740 NTSTATUS
ads_dns_query_kdcs(TALLOC_CTX
*ctx
,
1741 const char *dns_forest_name
,
1742 const char *sitename
,
1743 struct dns_rr_srv
**dclist
,
1745 NTSTATUS
ads_dns_query_pdc(TALLOC_CTX
*ctx
,
1746 const char *dns_domain_name
,
1747 struct dns_rr_srv
**dclist
,
1749 NTSTATUS
ads_dns_query_dcs_guid(TALLOC_CTX
*ctx
,
1750 const char *dns_forest_name
,
1751 const struct GUID
*domain_guid
,
1752 struct dns_rr_srv
**dclist
,
1755 /* The following definitions come from libads/kerberos.c */
1757 int kerberos_kinit_password_ext(const char *principal
,
1758 const char *password
,
1760 time_t *expire_time
,
1761 time_t *renew_till_time
,
1762 const char *cache_name
,
1764 bool add_netbios_addr
,
1765 time_t renewable_time
,
1766 NTSTATUS
*ntstatus
);
1767 int ads_kinit_password(ADS_STRUCT
*ads
);
1768 int ads_kdestroy(const char *cc_name
);
1769 char* kerberos_standard_des_salt( void );
1770 bool kerberos_secrets_store_des_salt( const char* salt
);
1771 char* kerberos_secrets_fetch_des_salt( void );
1772 char *kerberos_get_default_realm_from_ccache( void );
1773 bool kerberos_secrets_store_salting_principal(const char *service
,
1775 const char *principal
);
1776 int kerberos_kinit_password(const char *principal
,
1777 const char *password
,
1779 const char *cache_name
);
1780 bool create_local_private_krb5_conf_for_domain(const char *realm
,
1782 const char *sitename
,
1783 struct sockaddr_storage
*pss
);
1786 /* The following definitions come from libsmb/credentials.c */
1788 char *credstr(const unsigned char *cred
);
1789 void creds_server_init(uint32 neg_flags
,
1791 struct netr_Credential
*clnt_chal
,
1792 struct netr_Credential
*srv_chal
,
1793 const unsigned char mach_pw
[16],
1794 struct netr_Credential
*init_chal_out
);
1795 bool netlogon_creds_server_check(const struct dcinfo
*dc
,
1796 const struct netr_Credential
*rcv_cli_chal_in
);
1797 bool netlogon_creds_server_step(struct dcinfo
*dc
,
1798 const struct netr_Authenticator
*received_cred
,
1799 struct netr_Authenticator
*cred_out
);
1800 void cred_hash3(unsigned char *out
, const unsigned char *in
, const unsigned char *key
, int forw
);
1802 /* The following definitions come from libads/kerberos_keytab.c */
1804 int ads_keytab_add_entry(ADS_STRUCT
*ads
, const char *srvPrinc
);
1805 int ads_keytab_flush(ADS_STRUCT
*ads
);
1806 int ads_keytab_create_default(ADS_STRUCT
*ads
);
1807 int ads_keytab_list(const char *keytab_name
);
1809 /* The following definitions come from libads/kerberos_verify.c */
1811 NTSTATUS
ads_verify_ticket(TALLOC_CTX
*mem_ctx
,
1814 const DATA_BLOB
*ticket
,
1816 struct PAC_DATA
**pac_data
,
1818 DATA_BLOB
*session_key
,
1819 bool use_replay_cache
);
1821 /* The following definitions come from libads/krb5_errs.c */
1824 /* The following definitions come from libads/krb5_setpw.c */
1826 ADS_STATUS
ads_krb5_set_password(const char *kdc_host
, const char *princ
,
1827 const char *newpw
, int time_offset
);
1828 ADS_STATUS
kerberos_set_password(const char *kpasswd_server
,
1829 const char *auth_principal
, const char *auth_password
,
1830 const char *target_principal
, const char *new_password
,
1832 ADS_STATUS
ads_set_machine_password(ADS_STRUCT
*ads
,
1833 const char *machine_account
,
1834 const char *password
);
1836 /* The following definitions come from libads/ldap.c */
1838 bool ads_sitename_match(ADS_STRUCT
*ads
);
1839 bool ads_closest_dc(ADS_STRUCT
*ads
);
1840 ADS_STATUS
ads_connect(ADS_STRUCT
*ads
);
1841 ADS_STATUS
ads_connect_user_creds(ADS_STRUCT
*ads
);
1842 ADS_STATUS
ads_connect_gc(ADS_STRUCT
*ads
);
1843 void ads_disconnect(ADS_STRUCT
*ads
);
1844 ADS_STATUS
ads_do_search_all_fn(ADS_STRUCT
*ads
, const char *bind_path
,
1845 int scope
, const char *expr
, const char **attrs
,
1846 bool (*fn
)(ADS_STRUCT
*, char *, void **, void *),
1848 char *ads_parent_dn(const char *dn
);
1849 ADS_MODLIST
ads_init_mods(TALLOC_CTX
*ctx
);
1850 ADS_STATUS
ads_mod_str(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1851 const char *name
, const char *val
);
1852 ADS_STATUS
ads_mod_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1853 const char *name
, const char **vals
);
1854 ADS_STATUS
ads_gen_mod(ADS_STRUCT
*ads
, const char *mod_dn
, ADS_MODLIST mods
);
1855 ADS_STATUS
ads_gen_add(ADS_STRUCT
*ads
, const char *new_dn
, ADS_MODLIST mods
);
1856 ADS_STATUS
ads_del_dn(ADS_STRUCT
*ads
, char *del_dn
);
1857 char *ads_ou_string(ADS_STRUCT
*ads
, const char *org_unit
);
1858 char *ads_default_ou_string(ADS_STRUCT
*ads
, const char *wknguid
);
1859 ADS_STATUS
ads_add_strlist(TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
,
1860 const char *name
, const char **vals
);
1861 uint32
ads_get_kvno(ADS_STRUCT
*ads
, const char *account_name
);
1862 uint32_t ads_get_machine_kvno(ADS_STRUCT
*ads
, const char *machine_name
);
1863 ADS_STATUS
ads_clear_service_principal_names(ADS_STRUCT
*ads
, const char *machine_name
);
1864 ADS_STATUS
ads_add_service_principal_name(ADS_STRUCT
*ads
, const char *machine_name
,
1865 const char *my_fqdn
, const char *spn
);
1866 ADS_STATUS
ads_create_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
1867 const char *org_unit
);
1868 ADS_STATUS
ads_move_machine_acct(ADS_STRUCT
*ads
, const char *machine_name
,
1869 const char *org_unit
, bool *moved
);
1870 int ads_count_replies(ADS_STRUCT
*ads
, void *res
);
1871 ADS_STATUS
ads_USN(ADS_STRUCT
*ads
, uint32
*usn
);
1872 ADS_STATUS
ads_current_time(ADS_STRUCT
*ads
);
1873 ADS_STATUS
ads_domain_func_level(ADS_STRUCT
*ads
, uint32
*val
);
1874 ADS_STATUS
ads_domain_sid(ADS_STRUCT
*ads
, DOM_SID
*sid
);
1875 ADS_STATUS
ads_site_dn(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char **site_name
);
1876 ADS_STATUS
ads_site_dn_for_machine(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, const char *computer_name
, const char **site_dn
);
1877 ADS_STATUS
ads_upn_suffixes(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, char ***suffixes
, size_t *num_suffixes
);
1878 ADS_STATUS
ads_get_joinable_ous(ADS_STRUCT
*ads
,
1879 TALLOC_CTX
*mem_ctx
,
1882 ADS_STATUS
ads_get_sid_from_extended_dn(TALLOC_CTX
*mem_ctx
,
1883 const char *extended_dn
,
1884 enum ads_extended_dn_flags flags
,
1886 char* ads_get_dnshostname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
1887 char* ads_get_upn( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
1888 char* ads_get_samaccountname( ADS_STRUCT
*ads
, TALLOC_CTX
*ctx
, const char *machine_name
);
1889 ADS_STATUS
ads_join_realm(ADS_STRUCT
*ads
, const char *machine_name
,
1890 uint32 account_type
, const char *org_unit
);
1891 ADS_STATUS
ads_leave_realm(ADS_STRUCT
*ads
, const char *hostname
);
1892 ADS_STATUS
ads_find_samaccount(ADS_STRUCT
*ads
,
1893 TALLOC_CTX
*mem_ctx
,
1894 const char *samaccountname
,
1896 const char **dn_ret
);
1897 ADS_STATUS
ads_config_path(ADS_STRUCT
*ads
,
1898 TALLOC_CTX
*mem_ctx
,
1899 char **config_path
);
1900 const char *ads_get_extended_right_name_by_guid(ADS_STRUCT
*ads
,
1901 const char *config_path
,
1902 TALLOC_CTX
*mem_ctx
,
1903 const struct GUID
*rights_guid
);
1904 ADS_STATUS
ads_check_ou_dn(TALLOC_CTX
*mem_ctx
,
1906 const char **account_ou
);
1908 /* The following definitions come from libads/ldap_printer.c */
1910 ADS_STATUS
ads_mod_printer_entry(ADS_STRUCT
*ads
, char *prt_dn
,
1911 TALLOC_CTX
*ctx
, const ADS_MODLIST
*mods
);
1912 ADS_STATUS
ads_add_printer_entry(ADS_STRUCT
*ads
, char *prt_dn
,
1913 TALLOC_CTX
*ctx
, ADS_MODLIST
*mods
);
1914 WERROR
get_remote_printer_publishing_data(struct rpc_pipe_client
*cli
,
1915 TALLOC_CTX
*mem_ctx
,
1917 const char *printer
);
1918 bool get_local_printer_publishing_data(TALLOC_CTX
*mem_ctx
,
1920 NT_PRINTER_DATA
*data
);
1922 /* The following definitions come from libads/ldap_schema.c */
1924 ADS_STATUS
ads_get_attrnames_by_oids(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
,
1925 const char *schema_path
,
1926 const char **OIDs
, size_t num_OIDs
,
1927 char ***OIDs_out
, char ***names
, size_t *count
);
1928 const char *ads_get_attrname_by_guid(ADS_STRUCT
*ads
,
1929 const char *schema_path
,
1930 TALLOC_CTX
*mem_ctx
,
1931 const struct GUID
*schema_guid
);
1932 const char *ads_get_attrname_by_oid(ADS_STRUCT
*ads
, const char *schema_path
, TALLOC_CTX
*mem_ctx
, const char * OID
);
1933 ADS_STATUS
ads_schema_path(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, char **schema_path
);
1934 ADS_STATUS
ads_check_posix_schema_mapping(TALLOC_CTX
*mem_ctx
,
1936 enum wb_posix_mapping map_type
,
1937 struct posix_schema
**s
) ;
1939 /* The following definitions come from libads/ldap_user.c */
1941 ADS_STATUS
ads_add_user_acct(ADS_STRUCT
*ads
, const char *user
,
1942 const char *container
, const char *fullname
);
1943 ADS_STATUS
ads_add_group_acct(ADS_STRUCT
*ads
, const char *group
,
1944 const char *container
, const char *comment
);
1946 /* The following definitions come from libads/ldap_utils.c */
1948 ADS_STATUS
ads_ranged_search(ADS_STRUCT
*ads
,
1949 TALLOC_CTX
*mem_ctx
,
1954 const char *range_attr
,
1956 size_t *num_strings
);
1957 ADS_STATUS
ads_ranged_search_internal(ADS_STRUCT
*ads
,
1958 TALLOC_CTX
*mem_ctx
,
1964 const char *range_attr
,
1966 size_t *num_strings
,
1971 /* The following definitions come from libads/ndr.c */
1973 void ndr_print_ads_auth_flags(struct ndr_print
*ndr
, const char *name
, uint32_t r
);
1974 void ndr_print_ads_struct(struct ndr_print
*ndr
, const char *name
, const struct ads_struct
*r
);
1976 /* The following definitions come from libads/sasl.c */
1978 ADS_STATUS
ads_sasl_bind(ADS_STRUCT
*ads
);
1980 /* The following definitions come from libads/sasl_wrapping.c */
1982 ADS_STATUS
ads_setup_sasl_wrapping(ADS_STRUCT
*ads
,
1983 const struct ads_saslwrap_ops
*ops
,
1984 void *private_data
);
1985 ADS_STATUS
ads_setup_sasl_wrapping(ADS_STRUCT
*ads
,
1986 const struct ads_saslwrap_ops
*ops
,
1987 void *private_data
);
1989 /* The following definitions come from libads/util.c */
1991 ADS_STATUS
ads_change_trust_account_password(ADS_STRUCT
*ads
, char *host_principal
);
1992 ADS_STATUS
ads_guess_service_principal(ADS_STRUCT
*ads
,
1993 char **returned_principal
);
1995 /* The following definitions come from libgpo/gpo_filesync.c */
1997 NTSTATUS
gpo_copy_file(TALLOC_CTX
*mem_ctx
,
1998 struct cli_state
*cli
,
1999 const char *nt_path
,
2000 const char *unix_path
);
2001 NTSTATUS
gpo_sync_directories(TALLOC_CTX
*mem_ctx
,
2002 struct cli_state
*cli
,
2003 const char *nt_path
,
2004 const char *local_path
);
2006 /* The following definitions come from libgpo/gpo_ini.c */
2008 NTSTATUS
parse_gpt_ini(TALLOC_CTX
*mem_ctx
,
2009 const char *filename
,
2011 char **display_name
);
2013 /* The following definitions come from libgpo/gpo_reg.c */
2015 struct nt_user_token
*registry_create_system_token(TALLOC_CTX
*mem_ctx
);
2016 WERROR
gp_init_reg_ctx(TALLOC_CTX
*mem_ctx
,
2017 const char *initial_path
,
2018 uint32_t desired_access
,
2019 const struct nt_user_token
*token
,
2020 struct gp_registry_context
**reg_ctx
);
2021 void gp_free_reg_ctx(struct gp_registry_context
*reg_ctx
);
2022 WERROR
gp_store_reg_subkey(TALLOC_CTX
*mem_ctx
,
2023 const char *subkeyname
,
2024 struct registry_key
*curr_key
,
2025 struct registry_key
**new_key
);
2026 WERROR
gp_read_reg_subkey(TALLOC_CTX
*mem_ctx
,
2027 struct gp_registry_context
*reg_ctx
,
2028 const char *subkeyname
,
2029 struct registry_key
**key
);
2030 WERROR
gp_store_reg_val_sz(TALLOC_CTX
*mem_ctx
,
2031 struct registry_key
*key
,
2032 const char *val_name
,
2034 WERROR
gp_read_reg_val_sz(TALLOC_CTX
*mem_ctx
,
2035 struct registry_key
*key
,
2036 const char *val_name
,
2038 WERROR
gp_reg_state_store(TALLOC_CTX
*mem_ctx
,
2041 const struct nt_user_token
*token
,
2042 struct GROUP_POLICY_OBJECT
*gpo_list
);
2043 WERROR
gp_reg_state_read(TALLOC_CTX
*mem_ctx
,
2046 struct GROUP_POLICY_OBJECT
**gpo_list
);
2047 WERROR
gp_secure_key(TALLOC_CTX
*mem_ctx
,
2049 struct registry_key
*key
,
2050 const DOM_SID
*sid
);
2051 void dump_reg_val(int lvl
, const char *direction
,
2052 const char *key
, const char *subkey
,
2053 struct registry_value
*val
);
2054 void dump_reg_entry(uint32_t flags
,
2056 struct gp_registry_entry
*entry
);
2057 void dump_reg_entries(uint32_t flags
,
2059 struct gp_registry_entry
*entries
,
2060 size_t num_entries
);
2061 bool add_gp_registry_entry_to_array(TALLOC_CTX
*mem_ctx
,
2062 struct gp_registry_entry
*entry
,
2063 struct gp_registry_entry
**entries
,
2065 WERROR
reg_apply_registry_entry(TALLOC_CTX
*mem_ctx
,
2066 struct registry_key
*root_key
,
2067 struct gp_registry_context
*reg_ctx
,
2068 struct gp_registry_entry
*entry
,
2069 const struct nt_user_token
*token
,
2073 #include "librpc/gen_ndr/ndr_dfs.h"
2074 #include "librpc/gen_ndr/ndr_dssetup.h"
2075 #include "librpc/gen_ndr/ndr_echo.h"
2076 #include "librpc/gen_ndr/ndr_eventlog.h"
2077 #include "librpc/gen_ndr/ndr_krb5pac.h"
2078 #include "librpc/gen_ndr/ndr_lsa.h"
2079 #include "librpc/gen_ndr/ndr_misc.h"
2080 #include "librpc/gen_ndr/ndr_netlogon.h"
2081 #include "librpc/gen_ndr/ndr_notify.h"
2082 #include "librpc/gen_ndr/ndr_ntsvcs.h"
2083 #include "librpc/gen_ndr/ndr_samr.h"
2084 #include "librpc/gen_ndr/ndr_security.h"
2085 #include "librpc/gen_ndr/ndr_srvsvc.h"
2086 #include "librpc/gen_ndr/ndr_svcctl.h"
2087 #include "librpc/gen_ndr/ndr_winreg.h"
2088 #include "librpc/gen_ndr/ndr_wkssvc.h"
2090 #include "librpc/gen_ndr/srv_dfs.h"
2091 #include "librpc/gen_ndr/srv_dssetup.h"
2092 #include "librpc/gen_ndr/srv_echo.h"
2093 #include "librpc/gen_ndr/srv_eventlog.h"
2094 #include "librpc/gen_ndr/srv_initshutdown.h"
2095 #include "librpc/gen_ndr/srv_lsa.h"
2096 #include "librpc/gen_ndr/srv_netlogon.h"
2097 #include "librpc/gen_ndr/srv_ntsvcs.h"
2098 #include "librpc/gen_ndr/srv_samr.h"
2099 #include "librpc/gen_ndr/srv_srvsvc.h"
2100 #include "librpc/gen_ndr/srv_svcctl.h"
2101 #include "librpc/gen_ndr/srv_winreg.h"
2102 #include "librpc/gen_ndr/srv_wkssvc.h"
2103 #include "librpc/gen_ndr/srv_spoolss.h"
2105 #include "librpc/ndr/libndr.h"
2107 /* The following definitions come from librpc/ndr/util.c */
2109 enum ndr_err_code
ndr_push_server_id(struct ndr_push
*ndr
, int ndr_flags
, const struct server_id
*r
);
2110 enum ndr_err_code
ndr_pull_server_id(struct ndr_pull
*ndr
, int ndr_flags
, struct server_id
*r
);
2111 void ndr_print_server_id(struct ndr_print
*ndr
, const char *name
, const struct server_id
*r
);
2112 enum ndr_err_code
ndr_push_file_id(struct ndr_push
*ndr
, int ndr_flags
, const struct file_id
*r
);
2113 enum ndr_err_code
ndr_pull_file_id(struct ndr_pull
*ndr
, int ndr_flags
, struct file_id
*r
);
2114 void ndr_print_file_id(struct ndr_print
*ndr
, const char *name
, const struct file_id
*r
);
2115 _PUBLIC_
void ndr_print_bool(struct ndr_print
*ndr
, const char *name
, const bool b
);
2116 _PUBLIC_
void ndr_print_sockaddr_storage(struct ndr_print
*ndr
, const char *name
, const struct sockaddr_storage
*ss
);
2117 const char *ndr_errstr(enum ndr_err_code err
);
2119 /* The following definitions come from librpc/ndr/sid.c */
2121 char *dom_sid_string(TALLOC_CTX
*mem_ctx
, const struct dom_sid
*sid
);
2123 /* The following definitions come from librpc/rpc/binding.c */
2125 const char *epm_floor_string(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
);
2126 _PUBLIC_
char *dcerpc_binding_string(TALLOC_CTX
*mem_ctx
, const struct dcerpc_binding
*b
);
2127 _PUBLIC_ NTSTATUS
dcerpc_parse_binding(TALLOC_CTX
*mem_ctx
, const char *s
, struct dcerpc_binding
**b_out
);
2128 _PUBLIC_ NTSTATUS
dcerpc_floor_get_lhs_data(const struct epm_floor
*epm_floor
,
2129 struct ndr_syntax_id
*syntax
);
2130 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
);
2131 enum dcerpc_transport_t
dcerpc_transport_by_endpoint_protocol(int prot
);
2132 _PUBLIC_
enum dcerpc_transport_t
dcerpc_transport_by_tower(const struct epm_tower
*tower
);
2133 _PUBLIC_
const char *derpc_transport_string_by_transport(enum dcerpc_transport_t t
);
2134 _PUBLIC_ NTSTATUS
dcerpc_binding_from_tower(TALLOC_CTX
*mem_ctx
,
2135 struct epm_tower
*tower
,
2136 struct dcerpc_binding
**b_out
);
2137 _PUBLIC_ NTSTATUS
dcerpc_binding_build_tower(TALLOC_CTX
*mem_ctx
,
2138 const struct dcerpc_binding
*binding
,
2139 struct epm_tower
*tower
);
2141 /* The following definitions come from librpc/rpc/dcerpc.c */
2143 struct rpc_request
*dcerpc_ndr_request_send(struct dcerpc_pipe
*p
, const struct GUID
*object
,
2144 const struct ndr_interface_table
*table
, uint32_t opnum
,
2145 TALLOC_CTX
*mem_ctx
, void *r
);
2146 NTSTATUS
dcerpc_ndr_request_recv(struct rpc_request
*req
);
2147 _PUBLIC_ NTSTATUS
dcerpc_pipe_connect(TALLOC_CTX
*parent_ctx
, struct dcerpc_pipe
**pp
,
2148 const char *binding_string
, const struct ndr_interface_table
*table
,
2149 struct cli_credentials
*credentials
, struct event_context
*ev
,
2150 struct loadparm_context
*lp_ctx
);
2152 /* The following definitions come from libsmb/cliconnect.c */
2154 ADS_STATUS
cli_session_setup_spnego(struct cli_state
*cli
, const char *user
,
2155 const char *pass
, const char *user_domain
,
2156 const char * dest_realm
);
2158 NTSTATUS
cli_session_setup(struct cli_state
*cli
,
2160 const char *pass
, int passlen
,
2161 const char *ntpass
, int ntpasslen
,
2162 const char *workgroup
);
2163 struct tevent_req
*cli_session_setup_guest_send(TALLOC_CTX
*mem_ctx
,
2164 struct event_context
*ev
,
2165 struct cli_state
*cli
);
2166 NTSTATUS
cli_session_setup_guest_recv(struct tevent_req
*req
);
2167 bool cli_ulogoff(struct cli_state
*cli
);
2168 struct tevent_req
*cli_tcon_andx_send(TALLOC_CTX
*mem_ctx
,
2169 struct event_context
*ev
,
2170 struct cli_state
*cli
,
2171 const char *share
, const char *dev
,
2172 const char *pass
, int passlen
);
2173 NTSTATUS
cli_tcon_andx_recv(struct tevent_req
*req
);
2174 NTSTATUS
cli_tcon_andx(struct cli_state
*cli
, const char *share
,
2175 const char *dev
, const char *pass
, int passlen
);
2176 bool cli_tdis(struct cli_state
*cli
);
2177 void cli_negprot_sendsync(struct cli_state
*cli
);
2178 NTSTATUS
cli_negprot(struct cli_state
*cli
);
2179 struct tevent_req
*cli_negprot_send(TALLOC_CTX
*mem_ctx
,
2180 struct event_context
*ev
,
2181 struct cli_state
*cli
);
2182 NTSTATUS
cli_negprot_recv(struct tevent_req
*req
);
2183 bool cli_session_request(struct cli_state
*cli
,
2184 struct nmb_name
*calling
, struct nmb_name
*called
);
2185 NTSTATUS
cli_connect(struct cli_state
*cli
,
2187 struct sockaddr_storage
*dest_ss
);
2188 NTSTATUS
cli_start_connection(struct cli_state
**output_cli
,
2189 const char *my_name
,
2190 const char *dest_host
,
2191 struct sockaddr_storage
*dest_ss
, int port
,
2192 int signing_state
, int flags
,
2194 NTSTATUS
cli_full_connection(struct cli_state
**output_cli
,
2195 const char *my_name
,
2196 const char *dest_host
,
2197 struct sockaddr_storage
*dest_ss
, int port
,
2198 const char *service
, const char *service_type
,
2199 const char *user
, const char *domain
,
2200 const char *password
, int flags
,
2203 bool attempt_netbios_session_request(struct cli_state
**ppcli
, const char *srchost
, const char *desthost
,
2204 struct sockaddr_storage
*pdest_ss
);
2205 NTSTATUS
cli_raw_tcon(struct cli_state
*cli
,
2206 const char *service
, const char *pass
, const char *dev
,
2207 uint16
*max_xmit
, uint16
*tid
);
2208 struct cli_state
*get_ipc_connect(char *server
,
2209 struct sockaddr_storage
*server_ss
,
2210 const struct user_auth_info
*user_info
);
2211 struct cli_state
*get_ipc_connect_master_ip(TALLOC_CTX
*ctx
,
2212 struct ip_service
*mb_ip
,
2213 const struct user_auth_info
*user_info
,
2214 char **pp_workgroup_out
);
2215 struct cli_state
*get_ipc_connect_master_ip_bcast(TALLOC_CTX
*ctx
,
2216 const struct user_auth_info
*user_info
,
2217 char **pp_workgroup_out
);
2219 /* The following definitions come from libsmb/clidfs.c */
2221 NTSTATUS
cli_cm_force_encryption(struct cli_state
*c
,
2222 const char *username
,
2223 const char *password
,
2225 const char *sharename
);
2226 struct cli_state
*cli_cm_open(TALLOC_CTX
*ctx
,
2227 struct cli_state
*referring_cli
,
2230 const struct user_auth_info
*auth_info
,
2236 void cli_cm_display(const struct cli_state
*c
);
2237 bool cli_dfs_get_referral(TALLOC_CTX
*ctx
,
2238 struct cli_state
*cli
,
2240 CLIENT_DFS_REFERRAL
**refs
,
2243 bool cli_resolve_path(TALLOC_CTX
*ctx
,
2244 const char *mountpt
,
2245 const struct user_auth_info
*dfs_auth_info
,
2246 struct cli_state
*rootcli
,
2248 struct cli_state
**targetcli
,
2249 char **pp_targetpath
);
2251 /* The following definitions come from libsmb/clidgram.c */
2253 bool cli_send_mailslot(struct messaging_context
*msg_ctx
,
2254 bool unique
, const char *mailslot
,
2257 const char *srcname
, int src_type
,
2258 const char *dstname
, int dest_type
,
2259 const struct sockaddr_storage
*dest_ss
);
2260 bool send_getdc_request(TALLOC_CTX
*mem_ctx
,
2261 struct messaging_context
*msg_ctx
,
2262 struct sockaddr_storage
*dc_ss
,
2263 const char *domain_name
,
2265 uint32_t nt_version
);
2266 bool receive_getdc_response(TALLOC_CTX
*mem_ctx
,
2267 struct sockaddr_storage
*dc_ss
,
2268 const char *domain_name
,
2269 uint32_t *nt_version
,
2270 const char **dc_name
,
2271 struct netlogon_samlogon_response
**reply
);
2273 /* The following definitions come from libsmb/clientgen.c */
2275 int cli_set_message(char *buf
,int num_words
,int num_bytes
,bool zero
);
2276 unsigned int cli_set_timeout(struct cli_state
*cli
, unsigned int timeout
);
2277 void cli_set_port(struct cli_state
*cli
, int port
);
2278 bool cli_state_seqnum_persistent(struct cli_state
*cli
,
2280 bool cli_state_seqnum_remove(struct cli_state
*cli
,
2282 bool cli_receive_smb(struct cli_state
*cli
);
2283 ssize_t
cli_receive_smb_data(struct cli_state
*cli
, char *buffer
, size_t len
);
2284 bool cli_receive_smb_readX_header(struct cli_state
*cli
);
2285 bool cli_send_smb(struct cli_state
*cli
);
2286 bool cli_send_smb_direct_writeX(struct cli_state
*cli
,
2289 void cli_setup_packet_buf(struct cli_state
*cli
, char *buf
);
2290 void cli_setup_packet(struct cli_state
*cli
);
2291 void cli_setup_bcc(struct cli_state
*cli
, void *p
);
2292 NTSTATUS
cli_set_domain(struct cli_state
*cli
, const char *domain
);
2293 NTSTATUS
cli_set_username(struct cli_state
*cli
, const char *username
);
2294 NTSTATUS
cli_set_password(struct cli_state
*cli
, const char *password
);
2295 NTSTATUS
cli_init_creds(struct cli_state
*cli
, const char *username
, const char *domain
, const char *password
);
2296 struct cli_state
*cli_initialise(void);
2297 struct cli_state
*cli_initialise_ex(int signing_state
);
2298 void cli_nt_pipes_close(struct cli_state
*cli
);
2299 void cli_shutdown(struct cli_state
*cli
);
2300 void cli_sockopt(struct cli_state
*cli
, const char *options
);
2301 uint16
cli_setpid(struct cli_state
*cli
, uint16 pid
);
2302 bool cli_set_case_sensitive(struct cli_state
*cli
, bool case_sensitive
);
2303 bool cli_send_keepalive(struct cli_state
*cli
);
2304 struct tevent_req
*cli_echo_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2305 struct cli_state
*cli
, uint16_t num_echos
,
2307 NTSTATUS
cli_echo_recv(struct tevent_req
*req
);
2308 NTSTATUS
cli_echo(struct cli_state
*cli
, uint16_t num_echos
, DATA_BLOB data
);
2309 bool cli_ucs2(struct cli_state
*cli
);
2310 bool is_andx_req(uint8_t cmd
);
2312 /* The following definitions come from libsmb/clierror.c */
2314 const char *cli_errstr(struct cli_state
*cli
);
2315 NTSTATUS
cli_nt_error(struct cli_state
*cli
);
2316 void cli_dos_error(struct cli_state
*cli
, uint8
*eclass
, uint32
*ecode
);
2317 int cli_errno(struct cli_state
*cli
);
2318 bool cli_is_error(struct cli_state
*cli
);
2319 bool cli_is_nt_error(struct cli_state
*cli
);
2320 bool cli_is_dos_error(struct cli_state
*cli
);
2321 NTSTATUS
cli_get_nt_error(struct cli_state
*cli
);
2322 void cli_set_nt_error(struct cli_state
*cli
, NTSTATUS status
);
2323 void cli_reset_error(struct cli_state
*cli
);
2325 /* The following definitions come from libsmb/clifile.c */
2327 uint32_t unix_perms_to_wire(mode_t perms
);
2328 mode_t
wire_perms_to_unix(uint32_t perms
);
2329 bool cli_unix_getfacl(struct cli_state
*cli
, const char *name
, size_t *prb_size
, char **retbuf
);
2330 bool cli_unix_stat(struct cli_state
*cli
, const char *name
, SMB_STRUCT_STAT
*sbuf
);
2331 bool cli_unix_symlink(struct cli_state
*cli
, const char *oldname
, const char *newname
);
2332 bool cli_unix_hardlink(struct cli_state
*cli
, const char *oldname
, const char *newname
);
2333 bool cli_unix_chmod(struct cli_state
*cli
, const char *fname
, mode_t mode
);
2334 bool cli_unix_chown(struct cli_state
*cli
, const char *fname
, uid_t uid
, gid_t gid
);
2335 bool cli_rename(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
2336 bool cli_ntrename(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
2337 bool cli_nt_hardlink(struct cli_state
*cli
, const char *fname_src
, const char *fname_dst
);
2338 bool cli_unlink_full(struct cli_state
*cli
, const char *fname
, uint16_t attrs
);
2339 bool cli_unlink(struct cli_state
*cli
, const char *fname
);
2340 struct tevent_req
*cli_mkdir_send(TALLOC_CTX
*mem_ctx
,
2341 struct event_context
*ev
,
2342 struct cli_state
*cli
,
2344 NTSTATUS
cli_mkdir_recv(struct tevent_req
*req
);
2345 NTSTATUS
cli_mkdir(struct cli_state
*cli
, const char *dname
);
2346 struct tevent_req
*cli_rmdir_send(TALLOC_CTX
*mem_ctx
,
2347 struct event_context
*ev
,
2348 struct cli_state
*cli
,
2350 NTSTATUS
cli_rmdir_recv(struct tevent_req
*req
);
2351 NTSTATUS
cli_rmdir(struct cli_state
*cli
, const char *dname
);
2352 int cli_nt_delete_on_close(struct cli_state
*cli
, int fnum
, bool flag
);
2353 int cli_nt_create_full(struct cli_state
*cli
, const char *fname
,
2354 uint32_t CreatFlags
, uint32_t DesiredAccess
,
2355 uint32_t FileAttributes
, uint32_t ShareAccess
,
2356 uint32_t CreateDisposition
, uint32_t CreateOptions
,
2357 uint8_t SecuityFlags
);
2358 struct tevent_req
*cli_ntcreate_send(TALLOC_CTX
*mem_ctx
,
2359 struct event_context
*ev
,
2360 struct cli_state
*cli
,
2362 uint32_t CreatFlags
,
2363 uint32_t DesiredAccess
,
2364 uint32_t FileAttributes
,
2365 uint32_t ShareAccess
,
2366 uint32_t CreateDisposition
,
2367 uint32_t CreateOptions
,
2368 uint8_t SecurityFlags
);
2369 NTSTATUS
cli_ntcreate_recv(struct tevent_req
*req
, uint16_t *pfnum
);
2370 NTSTATUS
cli_ntcreate(struct cli_state
*cli
,
2372 uint32_t CreatFlags
,
2373 uint32_t DesiredAccess
,
2374 uint32_t FileAttributes
,
2375 uint32_t ShareAccess
,
2376 uint32_t CreateDisposition
,
2377 uint32_t CreateOptions
,
2378 uint8_t SecurityFlags
,
2380 int cli_nt_create(struct cli_state
*cli
, const char *fname
, uint32_t DesiredAccess
);
2381 uint8_t *smb_bytes_push_str(uint8_t *buf
, bool ucs2
, const char *str
,
2382 size_t str_len
, size_t *pconverted_size
);
2383 struct tevent_req
*cli_open_create(TALLOC_CTX
*mem_ctx
,
2384 struct event_context
*ev
,
2385 struct cli_state
*cli
, const char *fname
,
2386 int flags
, int share_mode
,
2387 struct tevent_req
**psmbreq
);
2388 struct tevent_req
*cli_open_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2389 struct cli_state
*cli
, const char *fname
,
2390 int flags
, int share_mode
);
2391 NTSTATUS
cli_open_recv(struct tevent_req
*req
, int *fnum
);
2392 int cli_open(struct cli_state
*cli
, const char *fname
, int flags
, int share_mode
);
2393 struct tevent_req
*cli_close_create(TALLOC_CTX
*mem_ctx
,
2394 struct event_context
*ev
,
2395 struct cli_state
*cli
, int fnum
,
2396 struct tevent_req
**psubreq
);
2397 struct tevent_req
*cli_close_send(TALLOC_CTX
*mem_ctx
,
2398 struct event_context
*ev
,
2399 struct cli_state
*cli
, int fnum
);
2400 NTSTATUS
cli_close_recv(struct tevent_req
*req
);
2401 bool cli_close(struct cli_state
*cli
, int fnum
);
2402 bool cli_ftruncate(struct cli_state
*cli
, int fnum
, uint64_t size
);
2403 NTSTATUS
cli_locktype(struct cli_state
*cli
, int fnum
,
2404 uint32_t offset
, uint32_t len
,
2405 int timeout
, unsigned char locktype
);
2406 bool cli_lock(struct cli_state
*cli
, int fnum
,
2407 uint32_t offset
, uint32_t len
, int timeout
, enum brl_type lock_type
);
2408 bool cli_unlock(struct cli_state
*cli
, int fnum
, uint32_t offset
, uint32_t len
);
2409 bool cli_lock64(struct cli_state
*cli
, int fnum
,
2410 uint64_t offset
, uint64_t len
, int timeout
, enum brl_type lock_type
);
2411 bool cli_unlock64(struct cli_state
*cli
, int fnum
, uint64_t offset
, uint64_t len
);
2412 bool cli_posix_lock(struct cli_state
*cli
, int fnum
,
2413 uint64_t offset
, uint64_t len
,
2414 bool wait_lock
, enum brl_type lock_type
);
2415 bool cli_posix_unlock(struct cli_state
*cli
, int fnum
, uint64_t offset
, uint64_t len
);
2416 bool cli_posix_getlock(struct cli_state
*cli
, int fnum
, uint64_t *poffset
, uint64_t *plen
);
2417 bool cli_getattrE(struct cli_state
*cli
, int fd
,
2418 uint16_t *attr
, SMB_OFF_T
*size
,
2419 time_t *change_time
,
2420 time_t *access_time
,
2421 time_t *write_time
);
2422 bool cli_getatr(struct cli_state
*cli
, const char *fname
,
2423 uint16_t *attr
, SMB_OFF_T
*size
, time_t *write_time
);
2424 bool cli_setattrE(struct cli_state
*cli
, int fd
,
2428 bool cli_setatr(struct cli_state
*cli
, const char *fname
, uint16_t attr
, time_t t
);
2429 struct tevent_req
*cli_chkpath_send(TALLOC_CTX
*mem_ctx
,
2430 struct event_context
*ev
,
2431 struct cli_state
*cli
,
2433 NTSTATUS
cli_chkpath_recv(struct tevent_req
*req
);
2434 NTSTATUS
cli_chkpath(struct cli_state
*cli
, const char *path
);
2435 struct tevent_req
*cli_dskattr_send(TALLOC_CTX
*mem_ctx
,
2436 struct event_context
*ev
,
2437 struct cli_state
*cli
);
2438 NTSTATUS
cli_dskattr_recv(struct tevent_req
*req
, int *bsize
, int *total
,
2440 NTSTATUS
cli_dskattr(struct cli_state
*cli
, int *bsize
, int *total
, int *avail
);
2441 int cli_ctemp(struct cli_state
*cli
, const char *path
, char **tmp_path
);
2442 NTSTATUS
cli_raw_ioctl(struct cli_state
*cli
, int fnum
, uint32_t code
, DATA_BLOB
*blob
);
2443 bool cli_set_ea_path(struct cli_state
*cli
, const char *path
, const char *ea_name
, const char *ea_val
, size_t ea_len
);
2444 bool cli_set_ea_fnum(struct cli_state
*cli
, int fnum
, const char *ea_name
, const char *ea_val
, size_t ea_len
);
2445 bool cli_get_ea_list_path(struct cli_state
*cli
, const char *path
,
2448 struct ea_struct
**pea_list
);
2449 bool cli_get_ea_list_fnum(struct cli_state
*cli
, int fnum
,
2452 struct ea_struct
**pea_list
);
2453 int cli_posix_open(struct cli_state
*cli
, const char *fname
, int flags
, mode_t mode
);
2454 int cli_posix_mkdir(struct cli_state
*cli
, const char *fname
, mode_t mode
);
2455 bool cli_posix_unlink(struct cli_state
*cli
, const char *fname
);
2456 int cli_posix_rmdir(struct cli_state
*cli
, const char *fname
);
2458 /* The following definitions come from libsmb/clifsinfo.c */
2460 bool cli_unix_extensions_version(struct cli_state
*cli
, uint16
*pmajor
, uint16
*pminor
,
2461 uint32
*pcaplow
, uint32
*pcaphigh
);
2462 bool cli_set_unix_extensions_capabilities(struct cli_state
*cli
, uint16 major
, uint16 minor
,
2463 uint32 caplow
, uint32 caphigh
);
2464 bool cli_get_fs_attr_info(struct cli_state
*cli
, uint32
*fs_attr
);
2465 bool cli_get_fs_volume_info_old(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
);
2466 bool cli_get_fs_volume_info(struct cli_state
*cli
, fstring volume_name
, uint32
*pserial_number
, time_t *pdate
);
2467 bool cli_get_fs_full_size_info(struct cli_state
*cli
,
2468 uint64_t *total_allocation_units
,
2469 uint64_t *caller_allocation_units
,
2470 uint64_t *actual_allocation_units
,
2471 uint64_t *sectors_per_allocation_unit
,
2472 uint64_t *bytes_per_sector
);
2473 bool cli_get_posix_fs_info(struct cli_state
*cli
,
2474 uint32
*optimal_transfer_size
,
2476 uint64_t *total_blocks
,
2477 uint64_t *blocks_available
,
2478 uint64_t *user_blocks_available
,
2479 uint64_t *total_file_nodes
,
2480 uint64_t *free_file_nodes
,
2481 uint64_t *fs_identifier
);
2482 NTSTATUS
cli_raw_ntlm_smb_encryption_start(struct cli_state
*cli
,
2485 const char *domain
);
2486 NTSTATUS
cli_gss_smb_encryption_start(struct cli_state
*cli
);
2487 NTSTATUS
cli_force_encryption(struct cli_state
*c
,
2488 const char *username
,
2489 const char *password
,
2490 const char *domain
);
2492 /* The following definitions come from libsmb/clikrb5.c */
2494 bool unwrap_edata_ntstatus(TALLOC_CTX
*mem_ctx
,
2496 DATA_BLOB
*edata_out
);
2497 bool unwrap_pac(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*auth_data
, DATA_BLOB
*unwrapped_pac_data
);
2498 int cli_krb5_get_ticket(const char *principal
, time_t time_offset
,
2499 DATA_BLOB
*ticket
, DATA_BLOB
*session_key_krb5
,
2500 uint32 extra_ap_opts
, const char *ccname
,
2501 time_t *tgs_expire
);
2503 /* The following definitions come from libsmb/clilist.c */
2505 int cli_list_new(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
2506 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
2507 int cli_list_old(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
2508 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
2509 int cli_list(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
2510 void (*fn
)(const char *, file_info
*, const char *, void *), void *state
);
2512 /* The following definitions come from libsmb/climessage.c */
2514 int cli_message_start_build(struct cli_state
*cli
, const char *host
, const char *username
);
2515 bool cli_message_start(struct cli_state
*cli
, const char *host
, const char *username
,
2517 int cli_message_text_build(struct cli_state
*cli
, const char *msg
, int len
, int grp
);
2518 bool cli_message_text(struct cli_state
*cli
, const char *msg
, int len
, int grp
);
2519 int cli_message_end_build(struct cli_state
*cli
, int grp
);
2520 bool cli_message_end(struct cli_state
*cli
, int grp
);
2522 /* The following definitions come from libsmb/clioplock.c */
2524 struct tevent_req
*cli_oplock_ack_send(TALLOC_CTX
*mem_ctx
,
2525 struct tevent_context
*ev
,
2526 struct cli_state
*cli
,
2527 uint16_t fnum
, uint8_t level
);
2528 NTSTATUS
cli_oplock_ack_recv(struct tevent_req
*req
);
2529 bool cli_oplock_ack(struct cli_state
*cli
, int fnum
, unsigned char level
);
2530 void cli_oplock_handler(struct cli_state
*cli
,
2531 bool (*handler
)(struct cli_state
*, int, unsigned char));
2533 /* The following definitions come from libsmb/cliprint.c */
2535 int cli_print_queue(struct cli_state
*cli
,
2536 void (*fn
)(struct print_job_info
*));
2537 int cli_printjob_del(struct cli_state
*cli
, int job
);
2538 int cli_spl_open(struct cli_state
*cli
, const char *fname
, int flags
, int share_mode
);
2539 bool cli_spl_close(struct cli_state
*cli
, int fnum
);
2541 /* The following definitions come from libsmb/cliquota.c */
2543 bool cli_get_quota_handle(struct cli_state
*cli
, int *quota_fnum
);
2544 void free_ntquota_list(SMB_NTQUOTA_LIST
**qt_list
);
2545 bool cli_get_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2546 bool cli_set_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2547 bool cli_list_user_quota(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_LIST
**pqt_list
);
2548 bool cli_get_fs_quota_info(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2549 bool cli_set_fs_quota_info(struct cli_state
*cli
, int quota_fnum
, SMB_NTQUOTA_STRUCT
*pqt
);
2550 void dump_ntquota(SMB_NTQUOTA_STRUCT
*qt
, bool _verbose
, bool _numeric
, void (*_sidtostring
)(fstring str
, DOM_SID
*sid
, bool _numeric
));
2551 void dump_ntquota_list(SMB_NTQUOTA_LIST
**qtl
, bool _verbose
, bool _numeric
, void (*_sidtostring
)(fstring str
, DOM_SID
*sid
, bool _numeric
));
2553 /* The following definitions come from libsmb/clirap.c */
2555 bool cli_api(struct cli_state
*cli
,
2556 char *param
, int prcnt
, int mprcnt
,
2557 char *data
, int drcnt
, int mdrcnt
,
2558 char **rparam
, unsigned int *rprcnt
,
2559 char **rdata
, unsigned int *rdrcnt
);
2560 bool cli_NetWkstaUserLogon(struct cli_state
*cli
,char *user
, char *workstation
);
2561 int cli_RNetShareEnum(struct cli_state
*cli
, void (*fn
)(const char *, uint32
, const char *, void *), void *state
);
2562 bool cli_NetServerEnum(struct cli_state
*cli
, char *workgroup
, uint32 stype
,
2563 void (*fn
)(const char *, uint32
, const char *, void *),
2565 bool cli_oem_change_password(struct cli_state
*cli
, const char *user
, const char *new_password
,
2566 const char *old_password
);
2567 bool cli_qpathinfo(struct cli_state
*cli
,
2569 time_t *change_time
,
2570 time_t *access_time
,
2574 bool cli_setpathinfo(struct cli_state
*cli
, const char *fname
,
2580 bool cli_qpathinfo2(struct cli_state
*cli
, const char *fname
,
2581 struct timespec
*create_time
,
2582 struct timespec
*access_time
,
2583 struct timespec
*write_time
,
2584 struct timespec
*change_time
,
2585 SMB_OFF_T
*size
, uint16
*mode
,
2587 bool cli_qpathinfo_streams(struct cli_state
*cli
, const char *fname
,
2588 TALLOC_CTX
*mem_ctx
,
2589 unsigned int *pnum_streams
,
2590 struct stream_struct
**pstreams
);
2591 bool cli_qfilename(struct cli_state
*cli
, int fnum
, char *name
, size_t namelen
);
2592 bool cli_qfileinfo(struct cli_state
*cli
, int fnum
,
2593 uint16
*mode
, SMB_OFF_T
*size
,
2594 struct timespec
*create_time
,
2595 struct timespec
*access_time
,
2596 struct timespec
*write_time
,
2597 struct timespec
*change_time
,
2599 bool cli_qpathinfo_basic( struct cli_state
*cli
, const char *name
,
2600 SMB_STRUCT_STAT
*sbuf
, uint32
*attributes
);
2601 bool cli_qfileinfo_test(struct cli_state
*cli
, int fnum
, int level
, char **poutdata
, uint32
*poutlen
);
2602 NTSTATUS
cli_qpathinfo_alt_name(struct cli_state
*cli
, const char *fname
, fstring alt_name
);
2604 /* The following definitions come from libsmb/clirap2.c */
2606 int cli_NetGroupDelete(struct cli_state
*cli
, const char *group_name
);
2607 int cli_NetGroupAdd(struct cli_state
*cli
, RAP_GROUP_INFO_1
*grinfo
);
2608 int cli_RNetGroupEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, void *), void *state
);
2609 int cli_RNetGroupEnum0(struct cli_state
*cli
,
2610 void (*fn
)(const char *, void *),
2612 int cli_NetGroupDelUser(struct cli_state
* cli
, const char *group_name
, const char *user_name
);
2613 int cli_NetGroupAddUser(struct cli_state
* cli
, const char *group_name
, const char *user_name
);
2614 int cli_NetGroupGetUsers(struct cli_state
* cli
, const char *group_name
, void (*fn
)(const char *, void *), void *state
);
2615 int cli_NetUserGetGroups(struct cli_state
* cli
, const char *user_name
, void (*fn
)(const char *, void *), void *state
);
2616 int cli_NetUserDelete(struct cli_state
*cli
, const char * user_name
);
2617 int cli_NetUserAdd(struct cli_state
*cli
, RAP_USER_INFO_1
* userinfo
);
2618 int cli_RNetUserEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, const char *, const char *, void *), void *state
);
2619 int cli_RNetUserEnum0(struct cli_state
*cli
,
2620 void (*fn
)(const char *, void *),
2622 int cli_NetFileClose(struct cli_state
*cli
, uint32 file_id
);
2623 int cli_NetFileGetInfo(struct cli_state
*cli
, uint32 file_id
, void (*fn
)(const char *, const char *, uint16
, uint16
, uint32
));
2624 int cli_NetFileEnum(struct cli_state
*cli
, const char * user
,
2625 const char * base_path
,
2626 void (*fn
)(const char *, const char *, uint16
, uint16
,
2628 int cli_NetShareAdd(struct cli_state
*cli
, RAP_SHARE_INFO_2
* sinfo
);
2629 int cli_NetShareDelete(struct cli_state
*cli
, const char * share_name
);
2630 bool cli_get_pdc_name(struct cli_state
*cli
, const char *workgroup
, char **pdc_name
);
2631 bool cli_get_server_domain(struct cli_state
*cli
);
2632 bool cli_get_server_type(struct cli_state
*cli
, uint32
*pstype
);
2633 bool cli_get_server_name(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
2635 bool cli_ns_check_server_type(struct cli_state
*cli
, char *workgroup
, uint32 stype
);
2636 bool cli_NetWkstaUserLogoff(struct cli_state
*cli
, const char *user
, const char *workstation
);
2637 int cli_NetPrintQEnum(struct cli_state
*cli
,
2638 void (*qfn
)(const char*,uint16
,uint16
,uint16
,const char*,const char*,const char*,const char*,const char*,uint16
,uint16
),
2639 void (*jfn
)(uint16
,const char*,const char*,const char*,const char*,uint16
,uint16
,const char*,uint
,uint
,const char*));
2640 int cli_NetPrintQGetInfo(struct cli_state
*cli
, const char *printer
,
2641 void (*qfn
)(const char*,uint16
,uint16
,uint16
,const char*,const char*,const char*,const char*,const char*,uint16
,uint16
),
2642 void (*jfn
)(uint16
,const char*,const char*,const char*,const char*,uint16
,uint16
,const char*,uint
,uint
,const char*));
2643 int cli_RNetServiceEnum(struct cli_state
*cli
, void (*fn
)(const char *, const char *, void *), void *state
);
2644 int cli_NetSessionEnum(struct cli_state
*cli
, void (*fn
)(char *, char *, uint16
, uint16
, uint16
, uint
, uint
, uint
, char *));
2645 int cli_NetSessionGetInfo(struct cli_state
*cli
, const char *workstation
,
2646 void (*fn
)(const char *, const char *, uint16
, uint16
, uint16
, uint
, uint
, uint
, const char *));
2647 int cli_NetSessionDel(struct cli_state
*cli
, const char *workstation
);
2648 int cli_NetConnectionEnum(struct cli_state
*cli
, const char *qualifier
,
2649 void (*fn
)(uint16_t conid
, uint16_t contype
,
2650 uint16_t numopens
, uint16_t numusers
,
2651 uint32_t contime
, const char *username
,
2652 const char *netname
));
2654 /* The following definitions come from libsmb/clireadwrite.c */
2656 struct tevent_req
*cli_read_andx_create(TALLOC_CTX
*mem_ctx
,
2657 struct event_context
*ev
,
2658 struct cli_state
*cli
, int fnum
,
2659 off_t offset
, size_t size
,
2660 struct tevent_req
**psmbreq
);
2661 struct tevent_req
*cli_read_andx_send(TALLOC_CTX
*mem_ctx
,
2662 struct event_context
*ev
,
2663 struct cli_state
*cli
, int fnum
,
2664 off_t offset
, size_t size
);
2665 NTSTATUS
cli_read_andx_recv(struct tevent_req
*req
, ssize_t
*received
,
2667 struct tevent_req
*cli_pull_send(TALLOC_CTX
*mem_ctx
,
2668 struct event_context
*ev
,
2669 struct cli_state
*cli
,
2670 uint16_t fnum
, off_t start_offset
,
2671 SMB_OFF_T size
, size_t window_size
,
2672 NTSTATUS (*sink
)(char *buf
, size_t n
,
2675 NTSTATUS
cli_pull_recv(struct tevent_req
*req
, SMB_OFF_T
*received
);
2676 NTSTATUS
cli_pull(struct cli_state
*cli
, uint16_t fnum
,
2677 off_t start_offset
, SMB_OFF_T size
, size_t window_size
,
2678 NTSTATUS (*sink
)(char *buf
, size_t n
, void *priv
),
2679 void *priv
, SMB_OFF_T
*received
);
2680 ssize_t
cli_read(struct cli_state
*cli
, int fnum
, char *buf
,
2681 off_t offset
, size_t size
);
2682 ssize_t
cli_readraw(struct cli_state
*cli
, int fnum
, char *buf
, off_t offset
, size_t size
);
2683 ssize_t
cli_write(struct cli_state
*cli
,
2684 int fnum
, uint16 write_mode
,
2685 const char *buf
, off_t offset
, size_t size
);
2686 ssize_t
cli_smbwrite(struct cli_state
*cli
,
2687 int fnum
, char *buf
, off_t offset
, size_t size1
);
2688 struct tevent_req
*cli_write_andx_create(TALLOC_CTX
*mem_ctx
,
2689 struct event_context
*ev
,
2690 struct cli_state
*cli
, uint16_t fnum
,
2691 uint16_t mode
, const uint8_t *buf
,
2692 off_t offset
, size_t size
,
2693 struct tevent_req
**reqs_before
,
2694 int num_reqs_before
,
2695 struct tevent_req
**psmbreq
);
2696 struct tevent_req
*cli_write_andx_send(TALLOC_CTX
*mem_ctx
,
2697 struct event_context
*ev
,
2698 struct cli_state
*cli
, uint16_t fnum
,
2699 uint16_t mode
, const uint8_t *buf
,
2700 off_t offset
, size_t size
);
2701 NTSTATUS
cli_write_andx_recv(struct tevent_req
*req
, size_t *pwritten
);
2703 struct tevent_req
*cli_push_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2704 struct cli_state
*cli
,
2705 uint16_t fnum
, uint16_t mode
,
2706 off_t start_offset
, size_t window_size
,
2707 size_t (*source
)(uint8_t *buf
, size_t n
,
2710 NTSTATUS
cli_push_recv(struct tevent_req
*req
);
2711 NTSTATUS
cli_push(struct cli_state
*cli
, uint16_t fnum
, uint16_t mode
,
2712 off_t start_offset
, size_t window_size
,
2713 size_t (*source
)(uint8_t *buf
, size_t n
, void *priv
),
2716 /* The following definitions come from libsmb/clisecdesc.c */
2718 SEC_DESC
*cli_query_secdesc(struct cli_state
*cli
, int fnum
,
2719 TALLOC_CTX
*mem_ctx
);
2720 bool cli_set_secdesc(struct cli_state
*cli
, int fnum
, SEC_DESC
*sd
);
2722 /* The following definitions come from libsmb/clispnego.c */
2724 DATA_BLOB
spnego_gen_negTokenInit(char guid
[16],
2726 const char *principal
);
2727 DATA_BLOB
gen_negTokenInit(const char *OID
, DATA_BLOB blob
);
2728 bool spnego_parse_negTokenInit(DATA_BLOB blob
,
2729 char *OIDs
[ASN1_MAX_OIDS
],
2731 DATA_BLOB
gen_negTokenTarg(const char *OIDs
[], DATA_BLOB blob
);
2732 bool parse_negTokenTarg(DATA_BLOB blob
, char *OIDs
[ASN1_MAX_OIDS
], DATA_BLOB
*secblob
);
2733 DATA_BLOB
spnego_gen_krb5_wrap(const DATA_BLOB ticket
, const uint8 tok_id
[2]);
2734 bool spnego_parse_krb5_wrap(DATA_BLOB blob
, DATA_BLOB
*ticket
, uint8 tok_id
[2]);
2735 int spnego_gen_negTokenTarg(const char *principal
, int time_offset
,
2737 DATA_BLOB
*session_key_krb5
, uint32 extra_ap_opts
,
2738 time_t *expire_time
);
2739 bool spnego_parse_challenge(const DATA_BLOB blob
,
2740 DATA_BLOB
*chal1
, DATA_BLOB
*chal2
);
2741 DATA_BLOB
spnego_gen_auth(DATA_BLOB blob
);
2742 bool spnego_parse_auth(DATA_BLOB blob
, DATA_BLOB
*auth
);
2743 DATA_BLOB
spnego_gen_auth_response(DATA_BLOB
*reply
, NTSTATUS nt_status
,
2744 const char *mechOID
);
2745 bool spnego_parse_auth_response(DATA_BLOB blob
, NTSTATUS nt_status
,
2746 const char *mechOID
,
2749 /* The following definitions come from libsmb/clistr.c */
2751 size_t clistr_push_fn(const char *function
,
2753 struct cli_state
*cli
,
2758 size_t clistr_pull_fn(const char *function
,
2766 size_t clistr_pull_talloc_fn(const char *function
,
2774 size_t clistr_align_out(struct cli_state
*cli
, const void *p
, int flags
);
2775 size_t clistr_align_in(struct cli_state
*cli
, const void *p
, int flags
);
2777 /* The following definitions come from libsmb/clitrans.c */
2779 bool cli_send_trans(struct cli_state
*cli
, int trans
,
2780 const char *pipe_name
,
2782 uint16
*setup
, unsigned int lsetup
, unsigned int msetup
,
2783 const char *param
, unsigned int lparam
, unsigned int mparam
,
2784 const char *data
, unsigned int ldata
, unsigned int mdata
);
2785 bool cli_receive_trans(struct cli_state
*cli
,int trans
,
2786 char **param
, unsigned int *param_len
,
2787 char **data
, unsigned int *data_len
);
2788 bool cli_send_nt_trans(struct cli_state
*cli
,
2791 uint16
*setup
, unsigned int lsetup
, unsigned int msetup
,
2792 char *param
, unsigned int lparam
, unsigned int mparam
,
2793 char *data
, unsigned int ldata
, unsigned int mdata
);
2794 bool cli_receive_nt_trans(struct cli_state
*cli
,
2795 char **param
, unsigned int *param_len
,
2796 char **data
, unsigned int *data_len
);
2797 struct tevent_req
*cli_trans_send(
2798 TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
2799 struct cli_state
*cli
, uint8_t cmd
,
2800 const char *pipe_name
, uint16_t fid
, uint16_t function
, int flags
,
2801 uint16_t *setup
, uint8_t num_setup
, uint8_t max_setup
,
2802 uint8_t *param
, uint32_t num_param
, uint32_t max_param
,
2803 uint8_t *data
, uint32_t num_data
, uint32_t max_data
);
2804 NTSTATUS
cli_trans_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
2805 uint16_t **setup
, uint8_t *num_setup
,
2806 uint8_t **param
, uint32_t *num_param
,
2807 uint8_t **data
, uint32_t *num_data
);
2808 NTSTATUS
cli_trans(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
2810 const char *pipe_name
, uint16_t fid
, uint16_t function
,
2812 uint16_t *setup
, uint8_t num_setup
, uint8_t max_setup
,
2813 uint8_t *param
, uint32_t num_param
, uint32_t max_param
,
2814 uint8_t *data
, uint32_t num_data
, uint32_t max_data
,
2815 uint16_t **rsetup
, uint8_t *num_rsetup
,
2816 uint8_t **rparam
, uint32_t *num_rparam
,
2817 uint8_t **rdata
, uint32_t *num_rdata
);
2819 /* The following definitions come from libsmb/conncache.c */
2821 NTSTATUS
check_negative_conn_cache_timeout( const char *domain
, const char *server
, unsigned int failed_cache_timeout
);
2822 NTSTATUS
check_negative_conn_cache( const char *domain
, const char *server
);
2823 void add_failed_connection_entry(const char *domain
, const char *server
, NTSTATUS result
) ;
2824 void delete_negative_conn_cache(const char *domain
, const char *server
);
2825 void flush_negative_conn_cache( void );
2826 void flush_negative_conn_cache_for_domain(const char *domain
);
2828 /* The following definitions come from ../librpc/rpc/dcerpc_error.c */
2830 const char *dcerpc_errstr(TALLOC_CTX
*mem_ctx
, uint32_t fault_code
);
2832 /* The following definitions come from libsmb/dsgetdcname.c */
2834 void debug_dsdcinfo_flags(int lvl
, uint32_t flags
);
2835 NTSTATUS
dsgetdcname(TALLOC_CTX
*mem_ctx
,
2836 struct messaging_context
*msg_ctx
,
2837 const char *domain_name
,
2838 struct GUID
*domain_guid
,
2839 const char *site_name
,
2841 struct netr_DsRGetDCNameInfo
**info
);
2843 /* The following definitions come from libsmb/errormap.c */
2845 NTSTATUS
dos_to_ntstatus(uint8 eclass
, uint32 ecode
);
2846 void ntstatus_to_dos(NTSTATUS ntstatus
, uint8
*eclass
, uint32
*ecode
);
2847 NTSTATUS
werror_to_ntstatus(WERROR error
);
2848 WERROR
ntstatus_to_werror(NTSTATUS error
);
2849 NTSTATUS
map_nt_error_from_gss(uint32 gss_maj
, uint32 minor
);
2851 /* The following definitions come from libsmb/namecache.c */
2853 bool namecache_enable(void);
2854 bool namecache_store(const char *name
,
2857 struct ip_service
*ip_list
);
2858 bool namecache_fetch(const char *name
,
2860 struct ip_service
**ip_list
,
2862 bool namecache_delete(const char *name
, int name_type
);
2863 void namecache_flush(void);
2864 bool namecache_status_store(const char *keyname
, int keyname_type
,
2865 int name_type
, const struct sockaddr_storage
*keyip
,
2866 const char *srvname
);
2867 bool namecache_status_fetch(const char *keyname
,
2870 const struct sockaddr_storage
*keyip
,
2873 /* The following definitions come from libsmb/namequery.c */
2875 bool saf_store( const char *domain
, const char *servername
);
2876 bool saf_join_store( const char *domain
, const char *servername
);
2877 bool saf_delete( const char *domain
);
2878 char *saf_fetch( const char *domain
);
2879 NODE_STATUS_STRUCT
*node_status_query(int fd
,
2880 struct nmb_name
*name
,
2881 const struct sockaddr_storage
*to_ss
,
2883 struct node_status_extra
*extra
);
2884 bool name_status_find(const char *q_name
,
2887 const struct sockaddr_storage
*to_ss
,
2889 int ip_service_compare(struct ip_service
*ss1
, struct ip_service
*ss2
);
2890 struct sockaddr_storage
*name_query(int fd
,
2895 const struct sockaddr_storage
*to_ss
,
2899 XFILE
*startlmhosts(const char *fname
);
2900 bool getlmhostsent(TALLOC_CTX
*ctx
, XFILE
*fp
, char **pp_name
, int *name_type
,
2901 struct sockaddr_storage
*pss
);
2902 void endlmhosts(XFILE
*fp
);
2903 NTSTATUS
name_resolve_bcast(const char *name
,
2905 struct ip_service
**return_iplist
,
2907 NTSTATUS
resolve_wins(const char *name
,
2909 struct ip_service
**return_iplist
,
2911 NTSTATUS
internal_resolve_name(const char *name
,
2913 const char *sitename
,
2914 struct ip_service
**return_iplist
,
2916 const char *resolve_order
);
2917 bool resolve_name(const char *name
,
2918 struct sockaddr_storage
*return_ss
,
2920 NTSTATUS
resolve_name_list(TALLOC_CTX
*ctx
,
2923 struct sockaddr_storage
**return_ss_arr
,
2924 unsigned int *p_num_entries
);
2925 bool find_master_ip(const char *group
, struct sockaddr_storage
*master_ss
);
2926 bool get_pdc_ip(const char *domain
, struct sockaddr_storage
*pss
);
2927 NTSTATUS
get_sorted_dc_list( const char *domain
,
2928 const char *sitename
,
2929 struct ip_service
**ip_list
,
2932 NTSTATUS
get_kdc_list( const char *realm
,
2933 const char *sitename
,
2934 struct ip_service
**ip_list
,
2937 /* The following definitions come from libsmb/namequery_dc.c */
2939 bool get_dc_name(const char *domain
,
2942 struct sockaddr_storage
*ss_out
);
2944 /* The following definitions come from libsmb/nmblib.c */
2946 void debug_nmb_packet(struct packet_struct
*p
);
2947 void put_name(char *dest
, const char *name
, int pad
, unsigned int name_type
);
2948 char *nmb_namestr(const struct nmb_name
*n
);
2949 struct packet_struct
*copy_packet(struct packet_struct
*packet
);
2950 void free_packet(struct packet_struct
*packet
);
2951 struct packet_struct
*parse_packet(char *buf
,int length
,
2952 enum packet_type packet_type
,
2955 struct packet_struct
*read_packet(int fd
,enum packet_type packet_type
);
2956 void make_nmb_name( struct nmb_name
*n
, const char *name
, int type
);
2957 bool nmb_name_equal(struct nmb_name
*n1
, struct nmb_name
*n2
);
2958 int build_packet(char *buf
, size_t buflen
, struct packet_struct
*p
);
2959 bool send_packet(struct packet_struct
*p
);
2960 struct packet_struct
*receive_packet(int fd
,enum packet_type type
,int t
);
2961 struct packet_struct
*receive_nmb_packet(int fd
, int t
, int trn_id
);
2962 struct packet_struct
*receive_dgram_packet(int fd
, int t
,
2963 const char *mailslot_name
);
2964 bool match_mailslot_name(struct packet_struct
*p
, const char *mailslot_name
);
2965 int matching_len_bits(unsigned char *p1
, unsigned char *p2
, size_t len
);
2966 void sort_query_replies(char *data
, int n
, struct in_addr ip
);
2967 char *name_mangle(TALLOC_CTX
*mem_ctx
, char *In
, char name_type
);
2968 int name_extract(char *buf
,int ofs
, fstring name
);
2969 int name_len(char *s1
);
2971 /* The following definitions come from libsmb/nterr.c */
2973 const char *nt_errstr(NTSTATUS nt_code
);
2974 const char *get_friendly_nt_error_msg(NTSTATUS nt_code
);
2975 const char *get_nt_error_c_code(NTSTATUS nt_code
);
2976 NTSTATUS
nt_status_string_to_code(const char *nt_status_str
);
2977 NTSTATUS
nt_status_squash(NTSTATUS nt_status
);
2979 /* The following definitions come from libsmb/ntlmssp.c */
2981 void debug_ntlmssp_flags(uint32 neg_flags
);
2982 NTSTATUS
ntlmssp_set_username(NTLMSSP_STATE
*ntlmssp_state
, const char *user
) ;
2983 NTSTATUS
ntlmssp_set_hashes(NTLMSSP_STATE
*ntlmssp_state
,
2984 const unsigned char lm_hash
[16],
2985 const unsigned char nt_hash
[16]) ;
2986 NTSTATUS
ntlmssp_set_password(NTLMSSP_STATE
*ntlmssp_state
, const char *password
) ;
2987 NTSTATUS
ntlmssp_set_domain(NTLMSSP_STATE
*ntlmssp_state
, const char *domain
) ;
2988 NTSTATUS
ntlmssp_set_workstation(NTLMSSP_STATE
*ntlmssp_state
, const char *workstation
) ;
2989 NTSTATUS
ntlmssp_store_response(NTLMSSP_STATE
*ntlmssp_state
,
2990 DATA_BLOB response
) ;
2991 void ntlmssp_want_feature_list(NTLMSSP_STATE
*ntlmssp_state
, char *feature_list
);
2992 void ntlmssp_want_feature(NTLMSSP_STATE
*ntlmssp_state
, uint32 feature
);
2993 NTSTATUS
ntlmssp_update(NTLMSSP_STATE
*ntlmssp_state
,
2994 const DATA_BLOB in
, DATA_BLOB
*out
) ;
2995 void ntlmssp_end(NTLMSSP_STATE
**ntlmssp_state
);
2996 DATA_BLOB
ntlmssp_weaken_keys(NTLMSSP_STATE
*ntlmssp_state
, TALLOC_CTX
*mem_ctx
);
2997 NTSTATUS
ntlmssp_server_start(NTLMSSP_STATE
**ntlmssp_state
);
2998 NTSTATUS
ntlmssp_client_start(NTLMSSP_STATE
**ntlmssp_state
);
3000 /* The following definitions come from libsmb/ntlmssp_sign.c */
3002 NTSTATUS
ntlmssp_sign_packet(NTLMSSP_STATE
*ntlmssp_state
,
3003 const uchar
*data
, size_t length
,
3004 const uchar
*whole_pdu
, size_t pdu_length
,
3006 NTSTATUS
ntlmssp_check_packet(NTLMSSP_STATE
*ntlmssp_state
,
3007 const uchar
*data
, size_t length
,
3008 const uchar
*whole_pdu
, size_t pdu_length
,
3009 const DATA_BLOB
*sig
) ;
3010 NTSTATUS
ntlmssp_seal_packet(NTLMSSP_STATE
*ntlmssp_state
,
3011 uchar
*data
, size_t length
,
3012 uchar
*whole_pdu
, size_t pdu_length
,
3014 NTSTATUS
ntlmssp_unseal_packet(NTLMSSP_STATE
*ntlmssp_state
,
3015 uchar
*data
, size_t length
,
3016 uchar
*whole_pdu
, size_t pdu_length
,
3018 NTSTATUS
ntlmssp_sign_init(NTLMSSP_STATE
*ntlmssp_state
);
3020 /* The following definitions come from libsmb/passchange.c */
3022 NTSTATUS
remote_password_change(const char *remote_machine
, const char *user_name
,
3023 const char *old_passwd
, const char *new_passwd
,
3026 /* The following definitions come from libsmb/samlogon_cache.c */
3028 bool netsamlogon_cache_init(void);
3029 bool netsamlogon_cache_shutdown(void);
3030 void netsamlogon_clear_cached_user(struct netr_SamInfo3
*info3
);
3031 bool netsamlogon_cache_store(const char *username
, struct netr_SamInfo3
*info3
);
3032 struct netr_SamInfo3
*netsamlogon_cache_get(TALLOC_CTX
*mem_ctx
, const DOM_SID
*user_sid
);
3033 bool netsamlogon_cache_have(const DOM_SID
*user_sid
);
3035 /* The following definitions come from libsmb/smb_seal.c */
3037 NTSTATUS
get_enc_ctx_num(const uint8_t *buf
, uint16
*p_enc_ctx_num
);
3038 bool common_encryption_on(struct smb_trans_enc_state
*es
);
3039 NTSTATUS
common_ntlm_decrypt_buffer(NTLMSSP_STATE
*ntlmssp_state
, char *buf
);
3040 NTSTATUS
common_ntlm_encrypt_buffer(NTLMSSP_STATE
*ntlmssp_state
,
3044 NTSTATUS
common_encrypt_buffer(struct smb_trans_enc_state
*es
, char *buffer
, char **buf_out
);
3045 NTSTATUS
common_decrypt_buffer(struct smb_trans_enc_state
*es
, char *buf
);
3046 void common_free_encryption_state(struct smb_trans_enc_state
**pp_es
);
3047 void common_free_enc_buffer(struct smb_trans_enc_state
*es
, char *buf
);
3048 bool cli_encryption_on(struct cli_state
*cli
);
3049 void cli_free_encryption_context(struct cli_state
*cli
);
3050 void cli_free_enc_buffer(struct cli_state
*cli
, char *buf
);
3051 NTSTATUS
cli_decrypt_message(struct cli_state
*cli
);
3052 NTSTATUS
cli_encrypt_message(struct cli_state
*cli
, char *buf
, char **buf_out
);
3054 /* The following definitions come from libsmb/clisigning.c */
3056 bool cli_simple_set_signing(struct cli_state
*cli
,
3057 const DATA_BLOB user_session_key
,
3058 const DATA_BLOB response
);
3059 bool cli_temp_set_signing(struct cli_state
*cli
);
3060 void cli_calculate_sign_mac(struct cli_state
*cli
, char *buf
, uint32_t *seqnum
);
3061 bool cli_check_sign_mac(struct cli_state
*cli
, const char *buf
, uint32_t seqnum
);
3062 bool client_is_signing_on(struct cli_state
*cli
);
3063 bool client_is_signing_allowed(struct cli_state
*cli
);
3064 bool client_is_signing_mandatory(struct cli_state
*cli
);
3065 void cli_set_signing_negotiated(struct cli_state
*cli
);
3067 /* The following definitions come from smbd/signing.c */
3069 struct smbd_server_connection
;
3070 bool srv_check_sign_mac(struct smbd_server_connection
*conn
,
3071 const char *inbuf
, uint32_t *seqnum
);
3072 void srv_calculate_sign_mac(struct smbd_server_connection
*conn
,
3073 char *outbuf
, uint32_t seqnum
);
3074 void srv_cancel_sign_response(struct smbd_server_connection
*conn
);
3075 bool srv_init_signing(struct smbd_server_connection
*conn
);
3076 void srv_set_signing_negotiated(struct smbd_server_connection
*conn
);
3077 bool srv_is_signing_active(struct smbd_server_connection
*conn
);
3078 bool srv_is_signing_negotiated(struct smbd_server_connection
*conn
);
3079 void srv_set_signing(struct smbd_server_connection
*conn
,
3080 const DATA_BLOB user_session_key
,
3081 const DATA_BLOB response
);
3083 /* The following definitions come from libsmb/smberr.c */
3085 const char *smb_dos_err_name(uint8 e_class
, uint16 num
);
3086 const char *get_dos_error_msg(WERROR result
);
3087 const char *smb_dos_err_class(uint8 e_class
);
3088 char *smb_dos_errstr(char *inbuf
);
3089 WERROR
map_werror_from_unix(int error
);
3091 /* The following definitions come from libsmb/spnego.c */
3093 ssize_t
read_spnego_data(DATA_BLOB data
, SPNEGO_DATA
*token
);
3094 ssize_t
write_spnego_data(DATA_BLOB
*blob
, SPNEGO_DATA
*spnego
);
3095 bool free_spnego_data(SPNEGO_DATA
*spnego
);
3097 /* The following definitions come from libsmb/trustdom_cache.c */
3099 bool trustdom_cache_enable(void);
3100 bool trustdom_cache_shutdown(void);
3101 bool trustdom_cache_store(char* name
, char* alt_name
, const DOM_SID
*sid
,
3103 bool trustdom_cache_fetch(const char* name
, DOM_SID
* sid
);
3104 uint32
trustdom_cache_fetch_timestamp( void );
3105 bool trustdom_cache_store_timestamp( uint32 t
, time_t timeout
);
3106 void trustdom_cache_flush(void);
3107 void update_trustdom_cache( void );
3109 /* The following definitions come from libsmb/trusts_util.c */
3111 NTSTATUS
trust_pw_change_and_store_it(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
3113 unsigned char orig_trust_passwd_hash
[16],
3114 uint32 sec_channel_type
);
3115 NTSTATUS
trust_pw_find_change_and_store_it(struct rpc_pipe_client
*cli
,
3116 TALLOC_CTX
*mem_ctx
,
3117 const char *domain
) ;
3118 bool enumerate_domain_trusts( TALLOC_CTX
*mem_ctx
, const char *domain
,
3119 char ***domain_names
, uint32
*num_domains
,
3122 /* The following definitions come from libsmb/unexpected.c */
3124 void unexpected_packet(struct packet_struct
*p
);
3125 void clear_unexpected(time_t t
);
3126 struct packet_struct
*receive_unexpected(enum packet_type packet_type
, int id
,
3127 const char *mailslot_name
);
3129 /* The following definitions come from locking/brlock.c */
3131 bool brl_same_context(const struct lock_context
*ctx1
,
3132 const struct lock_context
*ctx2
);
3133 NTSTATUS
brl_lock_failed(files_struct
*fsp
, const struct lock_struct
*lock
, bool blocking_lock
);
3134 void brl_init(bool read_only
);
3135 void brl_shutdown(void);
3137 NTSTATUS
brl_lock_windows_default(struct byte_range_lock
*br_lck
,
3138 struct lock_struct
*plock
,
3139 bool blocking_lock
);
3141 NTSTATUS
brl_lock(struct messaging_context
*msg_ctx
,
3142 struct byte_range_lock
*br_lck
,
3144 struct server_id pid
,
3147 enum brl_type lock_type
,
3148 enum brl_flavour lock_flav
,
3151 struct blocking_lock_record
*blr
);
3152 bool brl_unlock(struct messaging_context
*msg_ctx
,
3153 struct byte_range_lock
*br_lck
,
3155 struct server_id pid
,
3158 enum brl_flavour lock_flav
);
3159 bool brl_unlock_windows_default(struct messaging_context
*msg_ctx
,
3160 struct byte_range_lock
*br_lck
,
3161 const struct lock_struct
*plock
);
3162 bool brl_locktest(struct byte_range_lock
*br_lck
,
3164 struct server_id pid
,
3167 enum brl_type lock_type
,
3168 enum brl_flavour lock_flav
);
3169 NTSTATUS
brl_lockquery(struct byte_range_lock
*br_lck
,
3171 struct server_id pid
,
3174 enum brl_type
*plock_type
,
3175 enum brl_flavour lock_flav
);
3176 bool brl_lock_cancel(struct byte_range_lock
*br_lck
,
3178 struct server_id pid
,
3181 enum brl_flavour lock_flav
,
3182 struct blocking_lock_record
*blr
);
3183 bool brl_lock_cancel_default(struct byte_range_lock
*br_lck
,
3184 struct lock_struct
*plock
);
3185 void brl_close_fnum(struct messaging_context
*msg_ctx
,
3186 struct byte_range_lock
*br_lck
);
3187 int brl_forall(void (*fn
)(struct file_id id
, struct server_id pid
,
3188 enum brl_type lock_type
,
3189 enum brl_flavour lock_flav
,
3190 br_off start
, br_off size
,
3191 void *private_data
),
3192 void *private_data
);
3193 struct byte_range_lock
*brl_get_locks(TALLOC_CTX
*mem_ctx
,
3195 struct byte_range_lock
*brl_get_locks_readonly(TALLOC_CTX
*mem_ctx
,
3197 void brl_register_msgs(struct messaging_context
*msg_ctx
);
3199 /* The following definitions come from locking/locking.c */
3201 const char *lock_type_name(enum brl_type lock_type
);
3202 const char *lock_flav_name(enum brl_flavour lock_flav
);
3203 void init_strict_lock_struct(files_struct
*fsp
,
3207 enum brl_type lock_type
,
3208 struct lock_struct
*plock
);
3209 bool strict_lock_default(files_struct
*fsp
,
3210 struct lock_struct
*plock
);
3211 void strict_unlock_default(files_struct
*fsp
,
3212 struct lock_struct
*plock
);
3213 NTSTATUS
query_lock(files_struct
*fsp
,
3217 enum brl_type
*plock_type
,
3218 enum brl_flavour lock_flav
);
3219 struct byte_range_lock
*do_lock(struct messaging_context
*msg_ctx
,
3224 enum brl_type lock_type
,
3225 enum brl_flavour lock_flav
,
3229 struct blocking_lock_record
*blr
);
3230 NTSTATUS
do_unlock(struct messaging_context
*msg_ctx
,
3235 enum brl_flavour lock_flav
);
3236 NTSTATUS
do_lock_cancel(files_struct
*fsp
,
3240 enum brl_flavour lock_flav
,
3241 struct blocking_lock_record
*blr
);
3242 void locking_close_file(struct messaging_context
*msg_ctx
,
3244 bool locking_init(void);
3245 bool locking_init_readonly(void);
3246 bool locking_end(void);
3247 char *share_mode_str(TALLOC_CTX
*ctx
, int num
, const struct share_mode_entry
*e
);
3248 struct share_mode_lock
*get_share_mode_lock(TALLOC_CTX
*mem_ctx
,
3249 const struct file_id id
,
3250 const char *servicepath
,
3252 const struct timespec
*old_write_time
);
3253 struct share_mode_lock
*fetch_share_mode_unlocked(TALLOC_CTX
*mem_ctx
,
3254 const struct file_id id
,
3255 const char *servicepath
,
3257 bool rename_share_filename(struct messaging_context
*msg_ctx
,
3258 struct share_mode_lock
*lck
,
3259 const char *servicepath
,
3260 const char *newname
);
3261 void get_file_infos(struct file_id id
,
3262 bool *delete_on_close
,
3263 struct timespec
*write_time
);
3264 bool is_valid_share_mode_entry(const struct share_mode_entry
*e
);
3265 bool is_deferred_open_entry(const struct share_mode_entry
*e
);
3266 bool is_unused_share_mode_entry(const struct share_mode_entry
*e
);
3267 void set_share_mode(struct share_mode_lock
*lck
, files_struct
*fsp
,
3268 uid_t uid
, uint16 mid
, uint16 op_type
);
3269 void add_deferred_open(struct share_mode_lock
*lck
, uint16 mid
,
3270 struct timeval request_time
,
3272 bool del_share_mode(struct share_mode_lock
*lck
, files_struct
*fsp
);
3273 void del_deferred_open_entry(struct share_mode_lock
*lck
, uint16 mid
);
3274 bool remove_share_oplock(struct share_mode_lock
*lck
, files_struct
*fsp
);
3275 bool downgrade_share_oplock(struct share_mode_lock
*lck
, files_struct
*fsp
);
3276 NTSTATUS
can_set_delete_on_close(files_struct
*fsp
, bool delete_on_close
,
3278 void set_delete_on_close_token(struct share_mode_lock
*lck
, const UNIX_USER_TOKEN
*tok
);
3279 void set_delete_on_close_lck(struct share_mode_lock
*lck
, bool delete_on_close
, const UNIX_USER_TOKEN
*tok
);
3280 bool set_delete_on_close(files_struct
*fsp
, bool delete_on_close
, const UNIX_USER_TOKEN
*tok
);
3281 bool set_sticky_write_time(struct file_id fileid
, struct timespec write_time
);
3282 bool set_write_time(struct file_id fileid
, struct timespec write_time
);
3283 int share_mode_forall(void (*fn
)(const struct share_mode_entry
*, const char *,
3284 const char *, void *),
3285 void *private_data
);
3287 /* The following definitions come from locking/posix.c */
3289 bool is_posix_locked(files_struct
*fsp
,
3290 uint64_t *pu_offset
,
3292 enum brl_type
*plock_type
,
3293 enum brl_flavour lock_flav
);
3294 bool posix_locking_init(bool read_only
);
3295 bool posix_locking_end(void);
3296 void reduce_windows_lock_ref_count(files_struct
*fsp
, unsigned int dcount
);
3297 int fd_close_posix(struct files_struct
*fsp
);
3298 bool set_posix_lock_windows_flavour(files_struct
*fsp
,
3301 enum brl_type lock_type
,
3302 const struct lock_context
*lock_ctx
,
3303 const struct lock_struct
*plocks
,
3306 bool release_posix_lock_windows_flavour(files_struct
*fsp
,
3309 enum brl_type deleted_lock_type
,
3310 const struct lock_context
*lock_ctx
,
3311 const struct lock_struct
*plocks
,
3313 bool set_posix_lock_posix_flavour(files_struct
*fsp
,
3316 enum brl_type lock_type
,
3318 bool release_posix_lock_posix_flavour(files_struct
*fsp
,
3321 const struct lock_context
*lock_ctx
,
3322 const struct lock_struct
*plocks
,
3325 /* The following definitions come from modules/vfs_default.c */
3327 int vfswrap_lstat(vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
);
3328 ssize_t
vfswrap_llistxattr(struct vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
);
3329 ssize_t
vfswrap_flistxattr(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, char *list
, size_t size
);
3330 NTSTATUS
vfs_default_init(void);
3332 /* The following definitions come from nmbd/asyncdns.c */
3334 int asyncdns_fd(void);
3335 void kill_async_dns_child(void);
3336 void start_async_dns(void);
3337 void run_dns_queue(void);
3338 bool queue_dns_query(struct packet_struct
*p
,struct nmb_name
*question
);
3339 bool queue_dns_query(struct packet_struct
*p
,struct nmb_name
*question
);
3340 void kill_async_dns_child(void);
3342 /* The following definitions come from nmbd/nmbd.c */
3344 struct event_context
*nmbd_event_context(void);
3345 struct messaging_context
*nmbd_messaging_context(void);
3347 /* The following definitions come from nmbd/nmbd_become_dmb.c */
3349 void add_domain_names(time_t t
);
3351 /* The following definitions come from nmbd/nmbd_become_lmb.c */
3353 void insert_permanent_name_into_unicast( struct subnet_record
*subrec
,
3354 struct nmb_name
*nmbname
, uint16 nb_type
);
3355 void unbecome_local_master_browser(struct subnet_record
*subrec
, struct work_record
*work
,
3356 bool force_new_election
);
3357 void become_local_master_browser(struct subnet_record
*subrec
, struct work_record
*work
);
3358 void set_workgroup_local_master_browser_name( struct work_record
*work
, const char *newname
);
3360 /* The following definitions come from nmbd/nmbd_browserdb.c */
3362 void update_browser_death_time( struct browse_cache_record
*browc
);
3363 struct browse_cache_record
*create_browser_in_lmb_cache( const char *work_name
,
3364 const char *browser_name
,
3365 struct in_addr ip
);
3366 struct browse_cache_record
*find_browser_in_lmb_cache( const char *browser_name
);
3367 void expire_lmb_browsers( time_t t
);
3369 /* The following definitions come from nmbd/nmbd_browsesync.c */
3371 void dmb_expire_and_sync_browser_lists(time_t t
);
3372 void announce_and_sync_with_domain_master_browser( struct subnet_record
*subrec
,
3373 struct work_record
*work
);
3374 void collect_all_workgroup_names_from_wins_server(time_t t
);
3375 void sync_all_dmbs(time_t t
);
3377 /* The following definitions come from nmbd/nmbd_elections.c */
3379 void check_master_browser_exists(time_t t
);
3380 void run_elections(time_t t
);
3381 void process_election(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3382 bool check_elections(void);
3383 void nmbd_message_election(struct messaging_context
*msg
,
3386 struct server_id server_id
,
3389 /* The following definitions come from nmbd/nmbd_incomingdgrams.c */
3391 void tell_become_backup(void);
3392 void process_host_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3393 void process_workgroup_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3394 void process_local_master_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3395 void process_master_browser_announce(struct subnet_record
*subrec
,
3396 struct packet_struct
*p
,char *buf
);
3397 void process_lm_host_announce(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
, int len
);
3398 void process_get_backup_list_request(struct subnet_record
*subrec
,
3399 struct packet_struct
*p
,char *buf
);
3400 void process_reset_browser(struct subnet_record
*subrec
,
3401 struct packet_struct
*p
,char *buf
);
3402 void process_announce_request(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
);
3403 void process_lm_announce_request(struct subnet_record
*subrec
, struct packet_struct
*p
, char *buf
, int len
);
3405 /* The following definitions come from nmbd/nmbd_incomingrequests.c */
3407 void process_name_release_request(struct subnet_record
*subrec
,
3408 struct packet_struct
*p
);
3409 void process_name_refresh_request(struct subnet_record
*subrec
,
3410 struct packet_struct
*p
);
3411 void process_name_registration_request(struct subnet_record
*subrec
,
3412 struct packet_struct
*p
);
3413 void process_node_status_request(struct subnet_record
*subrec
, struct packet_struct
*p
);
3414 void process_name_query_request(struct subnet_record
*subrec
, struct packet_struct
*p
);
3416 /* The following definitions come from nmbd/nmbd_lmhosts.c */
3418 void load_lmhosts_file(const char *fname
);
3419 bool find_name_in_lmhosts(struct nmb_name
*nmbname
, struct name_record
**namerecp
);
3421 /* The following definitions come from nmbd/nmbd_logonnames.c */
3423 void add_logon_names(void);
3425 /* The following definitions come from nmbd/nmbd_mynames.c */
3427 void register_my_workgroup_one_subnet(struct subnet_record
*subrec
);
3428 bool register_my_workgroup_and_names(void);
3429 void release_wins_names(void);
3430 void refresh_my_names(time_t t
);
3432 /* The following definitions come from nmbd/nmbd_namelistdb.c */
3434 void set_samba_nb_type(void);
3435 void remove_name_from_namelist(struct subnet_record
*subrec
,
3436 struct name_record
*namerec
);
3437 struct name_record
*find_name_on_subnet(struct subnet_record
*subrec
,
3438 const struct nmb_name
*nmbname
,
3440 struct name_record
*find_name_for_remote_broadcast_subnet(struct nmb_name
*nmbname
,
3442 void update_name_ttl( struct name_record
*namerec
, int ttl
);
3443 bool add_name_to_subnet( struct subnet_record
*subrec
,
3448 enum name_source source
,
3450 struct in_addr
*iplist
);
3451 void standard_success_register(struct subnet_record
*subrec
,
3452 struct userdata_struct
*userdata
,
3453 struct nmb_name
*nmbname
, uint16 nb_flags
, int ttl
,
3454 struct in_addr registered_ip
);
3455 void standard_fail_register( struct subnet_record
*subrec
,
3456 struct nmb_name
*nmbname
);
3457 bool find_ip_in_name_record( struct name_record
*namerec
, struct in_addr ip
);
3458 void add_ip_to_name_record( struct name_record
*namerec
, struct in_addr new_ip
);
3459 void remove_ip_from_name_record( struct name_record
*namerec
,
3460 struct in_addr remove_ip
);
3461 void standard_success_release( struct subnet_record
*subrec
,
3462 struct userdata_struct
*userdata
,
3463 struct nmb_name
*nmbname
,
3464 struct in_addr released_ip
);
3465 void expire_names(time_t t
);
3466 void add_samba_names_to_subnet( struct subnet_record
*subrec
);
3467 void dump_name_record( struct name_record
*namerec
, XFILE
*fp
);
3468 void dump_all_namelists(void);
3470 /* The following definitions come from nmbd/nmbd_namequery.c */
3472 bool query_name(struct subnet_record
*subrec
, const char *name
, int type
,
3473 query_name_success_function success_fn
,
3474 query_name_fail_function fail_fn
,
3475 struct userdata_struct
*userdata
);
3476 bool query_name_from_wins_server(struct in_addr ip_to
,
3477 const char *name
, int type
,
3478 query_name_success_function success_fn
,
3479 query_name_fail_function fail_fn
,
3480 struct userdata_struct
*userdata
);
3482 /* The following definitions come from nmbd/nmbd_nameregister.c */
3484 void register_name(struct subnet_record
*subrec
,
3485 const char *name
, int type
, uint16 nb_flags
,
3486 register_name_success_function success_fn
,
3487 register_name_fail_function fail_fn
,
3488 struct userdata_struct
*userdata
);
3489 void wins_refresh_name(struct name_record
*namerec
);
3491 /* The following definitions come from nmbd/nmbd_namerelease.c */
3493 void release_name(struct subnet_record
*subrec
, struct name_record
*namerec
,
3494 release_name_success_function success_fn
,
3495 release_name_fail_function fail_fn
,
3496 struct userdata_struct
*userdata
);
3498 /* The following definitions come from nmbd/nmbd_nodestatus.c */
3500 bool node_status(struct subnet_record
*subrec
, struct nmb_name
*nmbname
,
3501 struct in_addr send_ip
, node_status_success_function success_fn
,
3502 node_status_fail_function fail_fn
, struct userdata_struct
*userdata
);
3504 /* The following definitions come from nmbd/nmbd_packets.c */
3506 uint16
get_nb_flags(char *buf
);
3507 void set_nb_flags(char *buf
, uint16 nb_flags
);
3508 struct response_record
*queue_register_name( struct subnet_record
*subrec
,
3509 response_function resp_fn
,
3510 timeout_response_function timeout_fn
,
3511 register_name_success_function success_fn
,
3512 register_name_fail_function fail_fn
,
3513 struct userdata_struct
*userdata
,
3514 struct nmb_name
*nmbname
,
3516 void queue_wins_refresh(struct nmb_name
*nmbname
,
3517 response_function resp_fn
,
3518 timeout_response_function timeout_fn
,
3520 struct in_addr refresh_ip
,
3522 struct response_record
*queue_register_multihomed_name( struct subnet_record
*subrec
,
3523 response_function resp_fn
,
3524 timeout_response_function timeout_fn
,
3525 register_name_success_function success_fn
,
3526 register_name_fail_function fail_fn
,
3527 struct userdata_struct
*userdata
,
3528 struct nmb_name
*nmbname
,
3530 struct in_addr register_ip
,
3531 struct in_addr wins_ip
);
3532 struct response_record
*queue_release_name( struct subnet_record
*subrec
,
3533 response_function resp_fn
,
3534 timeout_response_function timeout_fn
,
3535 release_name_success_function success_fn
,
3536 release_name_fail_function fail_fn
,
3537 struct userdata_struct
*userdata
,
3538 struct nmb_name
*nmbname
,
3540 struct in_addr release_ip
,
3541 struct in_addr dest_ip
);
3542 struct response_record
*queue_query_name( struct subnet_record
*subrec
,
3543 response_function resp_fn
,
3544 timeout_response_function timeout_fn
,
3545 query_name_success_function success_fn
,
3546 query_name_fail_function fail_fn
,
3547 struct userdata_struct
*userdata
,
3548 struct nmb_name
*nmbname
);
3549 struct response_record
*queue_query_name_from_wins_server( struct in_addr to_ip
,
3550 response_function resp_fn
,
3551 timeout_response_function timeout_fn
,
3552 query_name_success_function success_fn
,
3553 query_name_fail_function fail_fn
,
3554 struct userdata_struct
*userdata
,
3555 struct nmb_name
*nmbname
);
3556 struct response_record
*queue_node_status( struct subnet_record
*subrec
,
3557 response_function resp_fn
,
3558 timeout_response_function timeout_fn
,
3559 node_status_success_function success_fn
,
3560 node_status_fail_function fail_fn
,
3561 struct userdata_struct
*userdata
,
3562 struct nmb_name
*nmbname
,
3563 struct in_addr send_ip
);
3564 void reply_netbios_packet(struct packet_struct
*orig_packet
,
3565 int rcode
, enum netbios_reply_type_code rcv_code
, int opcode
,
3566 int ttl
, char *data
,int len
);
3567 void queue_packet(struct packet_struct
*packet
);
3568 void run_packet_queue(void);
3569 void retransmit_or_expire_response_records(time_t t
);
3570 bool listen_for_packets(bool run_election
);
3571 bool send_mailslot(bool unique
, const char *mailslot
,char *buf
, size_t len
,
3572 const char *srcname
, int src_type
,
3573 const char *dstname
, int dest_type
,
3574 struct in_addr dest_ip
,struct in_addr src_ip
,
3577 /* The following definitions come from nmbd/nmbd_processlogon.c */
3579 bool initialize_nmbd_proxy_logon(void);
3581 void process_logon_packet(struct packet_struct
*p
, char *buf
,int len
,
3582 const char *mailslot
);
3584 /* The following definitions come from nmbd/nmbd_responserecordsdb.c */
3586 void remove_response_record(struct subnet_record
*subrec
,
3587 struct response_record
*rrec
);
3588 struct response_record
*make_response_record( struct subnet_record
*subrec
,
3589 struct packet_struct
*p
,
3590 response_function resp_fn
,
3591 timeout_response_function timeout_fn
,
3592 success_function success_fn
,
3593 fail_function fail_fn
,
3594 struct userdata_struct
*userdata
);
3595 struct response_record
*find_response_record(struct subnet_record
**ppsubrec
,
3597 bool is_refresh_already_queued(struct subnet_record
*subrec
, struct name_record
*namerec
);
3599 /* The following definitions come from nmbd/nmbd_sendannounce.c */
3601 void send_browser_reset(int reset_type
, const char *to_name
, int to_type
, struct in_addr to_ip
);
3602 void broadcast_announce_request(struct subnet_record
*subrec
, struct work_record
*work
);
3603 void announce_my_server_names(time_t t
);
3604 void announce_my_lm_server_names(time_t t
);
3605 void reset_announce_timer(void);
3606 void announce_myself_to_domain_master_browser(time_t t
);
3607 void announce_my_servers_removed(void);
3608 void announce_remote(time_t t
);
3609 void browse_sync_remote(time_t t
);
3611 /* The following definitions come from nmbd/nmbd_serverlistdb.c */
3613 void remove_all_servers(struct work_record
*work
);
3614 struct server_record
*find_server_in_workgroup(struct work_record
*work
, const char *name
);
3615 void remove_server_from_workgroup(struct work_record
*work
, struct server_record
*servrec
);
3616 struct server_record
*create_server_on_workgroup(struct work_record
*work
,
3617 const char *name
,int servertype
,
3618 int ttl
, const char *comment
);
3619 void update_server_ttl(struct server_record
*servrec
, int ttl
);
3620 void expire_servers(struct work_record
*work
, time_t t
);
3621 void write_browse_list_entry(XFILE
*fp
, const char *name
, uint32 rec_type
,
3622 const char *local_master_browser_name
, const char *description
);
3623 void write_browse_list(time_t t
, bool force_write
);
3625 /* The following definitions come from nmbd/nmbd_subnetdb.c */
3627 void close_subnet(struct subnet_record
*subrec
);
3628 struct subnet_record
*make_normal_subnet(const struct interface
*iface
);
3629 bool create_subnets(void);
3630 bool we_are_a_wins_client(void);
3631 struct subnet_record
*get_next_subnet_maybe_unicast(struct subnet_record
*subrec
);
3632 struct subnet_record
*get_next_subnet_maybe_unicast_or_wins_server(struct subnet_record
*subrec
);
3634 /* The following definitions come from nmbd/nmbd_synclists.c */
3636 void sync_browse_lists(struct work_record
*work
,
3637 char *name
, int nm_type
,
3638 struct in_addr ip
, bool local
, bool servers
);
3639 void sync_check_completion(void);
3641 /* The following definitions come from nmbd/nmbd_winsproxy.c */
3643 void make_wins_proxy_name_query_request( struct subnet_record
*subrec
,
3644 struct packet_struct
*incoming_packet
,
3645 struct nmb_name
*question_name
);
3647 /* The following definitions come from nmbd/nmbd_winsserver.c */
3649 struct name_record
*find_name_on_wins_subnet(const struct nmb_name
*nmbname
, bool self_only
);
3650 bool wins_store_changed_namerec(const struct name_record
*namerec
);
3651 bool add_name_to_wins_subnet(const struct name_record
*namerec
);
3652 bool remove_name_from_wins_namelist(struct name_record
*namerec
);
3653 void dump_wins_subnet_namelist(XFILE
*fp
);
3654 bool packet_is_for_wins_server(struct packet_struct
*packet
);
3655 bool initialise_wins(void);
3656 void wins_process_name_refresh_request( struct subnet_record
*subrec
,
3657 struct packet_struct
*p
);
3658 void wins_process_name_registration_request(struct subnet_record
*subrec
,
3659 struct packet_struct
*p
);
3660 void wins_process_multihomed_name_registration_request( struct subnet_record
*subrec
,
3661 struct packet_struct
*p
);
3662 void fetch_all_active_wins_1b_names(void);
3663 void send_wins_name_query_response(int rcode
, struct packet_struct
*p
,
3664 struct name_record
*namerec
);
3665 void wins_process_name_query_request(struct subnet_record
*subrec
,
3666 struct packet_struct
*p
);
3667 void wins_process_name_release_request(struct subnet_record
*subrec
,
3668 struct packet_struct
*p
);
3669 void initiate_wins_processing(time_t t
);
3670 void wins_write_name_record(struct name_record
*namerec
, XFILE
*fp
);
3671 void wins_write_database(time_t t
, bool background
);
3672 void nmbd_wins_new_entry(struct messaging_context
*msg
,
3675 struct server_id server_id
,
3678 /* The following definitions come from nmbd/nmbd_workgroupdb.c */
3680 struct work_record
*find_workgroup_on_subnet(struct subnet_record
*subrec
,
3682 struct work_record
*create_workgroup_on_subnet(struct subnet_record
*subrec
,
3683 const char *name
, int ttl
);
3684 void update_workgroup_ttl(struct work_record
*work
, int ttl
);
3685 void initiate_myworkgroup_startup(struct subnet_record
*subrec
, struct work_record
*work
);
3686 void dump_workgroups(bool force_write
);
3687 void expire_workgroups_and_servers(time_t t
);
3689 /* The following definitions come from param/loadparm.c */
3691 char *lp_smb_ports(void);
3692 char *lp_dos_charset(void);
3693 char *lp_unix_charset(void);
3694 char *lp_display_charset(void);
3695 char *lp_logfile(void);
3696 char *lp_configfile(void);
3697 char *lp_smb_passwd_file(void);
3698 char *lp_private_dir(void);
3699 char *lp_serverstring(void);
3700 int lp_printcap_cache_time(void);
3701 char *lp_addport_cmd(void);
3702 char *lp_enumports_cmd(void);
3703 char *lp_addprinter_cmd(void);
3704 char *lp_deleteprinter_cmd(void);
3705 char *lp_os2_driver_map(void);
3706 char *lp_lockdir(void);
3707 char *lp_statedir(void);
3708 char *lp_cachedir(void);
3709 char *lp_piddir(void);
3710 char *lp_mangling_method(void);
3711 int lp_mangle_prefix(void);
3712 char *lp_utmpdir(void);
3713 char *lp_wtmpdir(void);
3715 char *lp_rootdir(void);
3716 char *lp_defaultservice(void);
3717 char *lp_msg_command(void);
3718 char *lp_get_quota_command(void);
3719 char *lp_set_quota_command(void);
3720 char *lp_auto_services(void);
3721 char *lp_passwd_program(void);
3722 char *lp_passwd_chat(void);
3723 char *lp_passwordserver(void);
3724 char *lp_name_resolve_order(void);
3725 char *lp_realm(void);
3726 const char *lp_afs_username_map(void);
3727 int lp_afs_token_lifetime(void);
3728 char *lp_log_nt_token_command(void);
3729 char *lp_username_map(void);
3730 const char *lp_logon_script(void);
3731 const char *lp_logon_path(void);
3732 const char *lp_logon_drive(void);
3733 const char *lp_logon_home(void);
3734 char *lp_remote_announce(void);
3735 char *lp_remote_browse_sync(void);
3736 const char **lp_wins_server_list(void);
3737 const char **lp_interfaces(void);
3738 const char *lp_socket_address(void);
3739 char *lp_nis_home_map_name(void);
3740 const char **lp_netbios_aliases(void);
3741 const char *lp_passdb_backend(void);
3742 const char **lp_preload_modules(void);
3743 char *lp_panic_action(void);
3744 char *lp_adduser_script(void);
3745 char *lp_renameuser_script(void);
3746 char *lp_deluser_script(void);
3747 const char *lp_guestaccount(void);
3748 char *lp_addgroup_script(void);
3749 char *lp_delgroup_script(void);
3750 char *lp_addusertogroup_script(void);
3751 char *lp_deluserfromgroup_script(void);
3752 char *lp_setprimarygroup_script(void);
3753 char *lp_addmachine_script(void);
3754 char *lp_shutdown_script(void);
3755 char *lp_abort_shutdown_script(void);
3756 char *lp_username_map_script(void);
3757 char *lp_check_password_script(void);
3758 char *lp_wins_hook(void);
3759 const char *lp_template_homedir(void);
3760 const char *lp_template_shell(void);
3761 const char *lp_winbind_separator(void);
3762 int lp_acl_compatibility(void);
3763 bool lp_winbind_enum_users(void);
3764 bool lp_winbind_enum_groups(void);
3765 bool lp_winbind_use_default_domain(void);
3766 bool lp_winbind_trusted_domains_only(void);
3767 bool lp_winbind_nested_groups(void);
3768 int lp_winbind_expand_groups(void);
3769 bool lp_winbind_refresh_tickets(void);
3770 bool lp_winbind_offline_logon(void);
3771 bool lp_winbind_normalize_names(void);
3772 bool lp_winbind_rpc_only(void);
3773 const char **lp_idmap_domains(void);
3774 const char *lp_idmap_backend(void);
3775 char *lp_idmap_alloc_backend(void);
3776 int lp_idmap_cache_time(void);
3777 int lp_idmap_negative_cache_time(void);
3778 int lp_keepalive(void);
3779 bool lp_passdb_expand_explicit(void);
3780 char *lp_ldap_suffix(void);
3781 char *lp_ldap_admin_dn(void);
3782 int lp_ldap_ssl(void);
3783 bool lp_ldap_ssl_ads(void);
3784 int lp_ldap_passwd_sync(void);
3785 bool lp_ldap_delete_dn(void);
3786 int lp_ldap_replication_sleep(void);
3787 int lp_ldap_timeout(void);
3788 int lp_ldap_connection_timeout(void);
3789 int lp_ldap_page_size(void);
3790 int lp_ldap_debug_level(void);
3791 int lp_ldap_debug_threshold(void);
3792 char *lp_add_share_cmd(void);
3793 char *lp_change_share_cmd(void);
3794 char *lp_delete_share_cmd(void);
3795 char *lp_usershare_path(void);
3796 const char **lp_usershare_prefix_allow_list(void);
3797 const char **lp_usershare_prefix_deny_list(void);
3798 const char **lp_eventlog_list(void);
3799 bool lp_registry_shares(void);
3800 bool lp_usershare_allow_guests(void);
3801 bool lp_usershare_owner_only(void);
3802 bool lp_disable_netbios(void);
3803 bool lp_reset_on_zero_vc(void);
3804 bool lp_ms_add_printer_wizard(void);
3805 bool lp_dns_proxy(void);
3806 bool lp_wins_support(void);
3807 bool lp_we_are_a_wins_server(void);
3808 bool lp_wins_proxy(void);
3809 bool lp_local_master(void);
3810 bool lp_domain_logons(void);
3811 const char **lp_init_logon_delayed_hosts(void);
3812 int lp_init_logon_delay(void);
3813 bool lp_load_printers(void);
3814 bool lp_readraw(void);
3815 bool lp_large_readwrite(void);
3816 bool lp_writeraw(void);
3817 bool lp_null_passwords(void);
3818 bool lp_obey_pam_restrictions(void);
3819 bool lp_encrypted_passwords(void);
3820 bool lp_update_encrypted(void);
3821 int lp_client_schannel(void);
3822 int lp_server_schannel(void);
3823 bool lp_syslog_only(void);
3824 bool lp_timestamp_logs(void);
3825 bool lp_debug_prefix_timestamp(void);
3826 bool lp_debug_hires_timestamp(void);
3827 bool lp_debug_pid(void);
3828 bool lp_debug_uid(void);
3829 bool lp_debug_class(void);
3830 bool lp_enable_core_files(void);
3831 bool lp_browse_list(void);
3832 bool lp_nis_home_map(void);
3833 bool lp_bind_interfaces_only(void);
3834 bool lp_pam_password_change(void);
3835 bool lp_unix_password_sync(void);
3836 bool lp_passwd_chat_debug(void);
3837 int lp_passwd_chat_timeout(void);
3838 bool lp_nt_pipe_support(void);
3839 bool lp_nt_status_support(void);
3840 bool lp_stat_cache(void);
3841 int lp_max_stat_cache_size(void);
3842 bool lp_allow_trusted_domains(void);
3843 bool lp_map_untrusted_to_domain(void);
3844 int lp_restrict_anonymous(void);
3845 bool lp_lanman_auth(void);
3846 bool lp_ntlm_auth(void);
3847 bool lp_client_plaintext_auth(void);
3848 bool lp_client_lanman_auth(void);
3849 bool lp_client_ntlmv2_auth(void);
3850 bool lp_host_msdfs(void);
3851 bool lp_kernel_oplocks(void);
3852 bool lp_enhanced_browsing(void);
3853 bool lp_use_mmap(void);
3854 bool lp_unix_extensions(void);
3855 bool lp_use_spnego(void);
3856 bool lp_client_use_spnego(void);
3857 bool lp_hostname_lookups(void);
3858 bool lp_change_notify(const struct share_params
*p
);
3859 bool lp_kernel_change_notify(const struct share_params
*p
);
3860 char * lp_dedicated_keytab_file(void);
3861 int lp_kerberos_method(void);
3862 bool lp_defer_sharing_violations(void);
3863 bool lp_enable_privileges(void);
3864 bool lp_enable_asu_support(void);
3865 int lp_os_level(void);
3866 int lp_max_ttl(void);
3867 int lp_max_wins_ttl(void);
3868 int lp_min_wins_ttl(void);
3869 int lp_max_log_size(void);
3870 int lp_max_open_files(void);
3871 int lp_open_files_db_hash_size(void);
3872 int lp_maxxmit(void);
3873 int lp_maxmux(void);
3874 int lp_passwordlevel(void);
3875 int lp_usernamelevel(void);
3876 int lp_deadtime(void);
3877 bool lp_getwd_cache(void);
3878 int lp_maxprotocol(void);
3879 int lp_minprotocol(void);
3880 int lp_security(void);
3881 const char **lp_auth_methods(void);
3882 bool lp_paranoid_server_security(void);
3883 int lp_maxdisksize(void);
3884 int lp_lpqcachetime(void);
3885 int lp_max_smbd_processes(void);
3886 bool _lp_disable_spoolss(void);
3887 int lp_syslog(void);
3888 int lp_lm_announce(void);
3889 int lp_lm_interval(void);
3890 int lp_machine_password_timeout(void);
3891 int lp_map_to_guest(void);
3892 int lp_oplock_break_wait_time(void);
3893 int lp_lock_spin_time(void);
3894 int lp_usershare_max_shares(void);
3895 const char *lp_socket_options(void);
3896 int lp_config_backend(void);
3897 char *lp_preexec(int );
3898 char *lp_postexec(int );
3899 char *lp_rootpreexec(int );
3900 char *lp_rootpostexec(int );
3901 char *lp_servicename(int );
3902 const char *lp_const_servicename(int );
3903 char *lp_pathname(int );
3904 char *lp_dontdescend(int );
3905 char *lp_username(int );
3906 const char **lp_invalid_users(int );
3907 const char **lp_valid_users(int );
3908 const char **lp_admin_users(int );
3909 const char **lp_svcctl_list(void);
3910 char *lp_cups_options(int );
3911 char *lp_cups_server(void);
3912 int lp_cups_encrypt(void);
3913 char *lp_iprint_server(void);
3914 int lp_cups_connection_timeout(void);
3915 const char *lp_ctdbd_socket(void);
3916 const char **lp_cluster_addresses(void);
3917 bool lp_clustering(void);
3918 char *lp_printcommand(int );
3919 char *lp_lpqcommand(int );
3920 char *lp_lprmcommand(int );
3921 char *lp_lppausecommand(int );
3922 char *lp_lpresumecommand(int );
3923 char *lp_queuepausecommand(int );
3924 char *lp_queueresumecommand(int );
3925 const char *lp_printjob_username(int );
3926 const char **lp_hostsallow(int );
3927 const char **lp_hostsdeny(int );
3928 char *lp_magicscript(int );
3929 char *lp_magicoutput(int );
3930 char *lp_comment(int );
3931 char *lp_force_user(int );
3932 char *lp_force_group(int );
3933 const char **lp_readlist(int );
3934 const char **lp_writelist(int );
3935 const char **lp_printer_admin(int );
3936 char *lp_fstype(int );
3937 const char **lp_vfs_objects(int );
3938 char *lp_msdfs_proxy(int );
3939 char *lp_veto_files(int );
3940 char *lp_hide_files(int );
3941 char *lp_veto_oplocks(int );
3942 bool lp_msdfs_root(int );
3943 char *lp_aio_write_behind(int );
3944 char *lp_dfree_command(int );
3945 bool lp_autoloaded(int );
3946 bool lp_preexec_close(int );
3947 bool lp_rootpreexec_close(int );
3948 int lp_casesensitive(int );
3949 bool lp_preservecase(int );
3950 bool lp_shortpreservecase(int );
3951 bool lp_hide_dot_files(int );
3952 bool lp_hide_special_files(int );
3953 bool lp_hideunreadable(int );
3954 bool lp_hideunwriteable_files(int );
3955 bool lp_browseable(int );
3956 bool lp_access_based_share_enum(int );
3957 bool lp_readonly(int );
3958 bool lp_no_set_dir(int );
3959 bool lp_guest_ok(int );
3960 bool lp_guest_only(int );
3961 bool lp_administrative_share(int );
3962 bool lp_print_ok(int );
3963 bool lp_map_hidden(int );
3964 bool lp_map_archive(int );
3965 bool lp_store_dos_attributes(int );
3966 bool lp_dmapi_support(int );
3967 bool lp_locking(const struct share_params
*p
);
3968 int lp_strict_locking(const struct share_params
*p
);
3969 bool lp_posix_locking(const struct share_params
*p
);
3970 bool lp_share_modes(int );
3971 bool lp_oplocks(int );
3972 bool lp_level2_oplocks(int );
3973 bool lp_onlyuser(int );
3974 bool lp_manglednames(const struct share_params
*p
);
3975 bool lp_widelinks(int );
3976 bool lp_symlinks(int );
3977 bool lp_syncalways(int );
3978 bool lp_strict_allocate(int );
3979 bool lp_strict_sync(int );
3980 bool lp_map_system(int );
3981 bool lp_delete_readonly(int );
3982 bool lp_fake_oplocks(int );
3983 bool lp_recursive_veto_delete(int );
3984 bool lp_dos_filemode(int );
3985 bool lp_dos_filetimes(int );
3986 bool lp_dos_filetime_resolution(int );
3987 bool lp_fake_dir_create_times(int );
3988 bool lp_blocking_locks(int );
3989 bool lp_inherit_perms(int );
3990 bool lp_inherit_acls(int );
3991 bool lp_inherit_owner(int );
3992 bool lp_use_client_driver(int );
3993 bool lp_default_devmode(int );
3994 bool lp_force_printername(int );
3995 bool lp_nt_acl_support(int );
3996 bool lp_force_unknown_acl_user(int );
3997 bool lp_ea_support(int );
3998 bool _lp_use_sendfile(int );
3999 bool lp_profile_acls(int );
4000 bool lp_map_acl_inherit(int );
4001 bool lp_afs_share(int );
4002 bool lp_acl_check_permissions(int );
4003 bool lp_acl_group_control(int );
4004 bool lp_acl_map_full_control(int );
4005 int lp_create_mask(int );
4006 int lp_force_create_mode(int );
4007 int lp_security_mask(int );
4008 int lp_force_security_mode(int );
4009 int lp_dir_mask(int );
4010 int lp_force_dir_mode(int );
4011 int lp_dir_security_mask(int );
4012 int lp_force_dir_security_mode(int );
4013 int lp_max_connections(int );
4014 int lp_defaultcase(int );
4015 int lp_minprintspace(int );
4016 int lp_printing(int );
4017 int lp_max_reported_jobs(int );
4018 int lp_oplock_contention_limit(int );
4019 int lp_csc_policy(int );
4020 int lp_write_cache_size(int );
4021 int lp_block_size(int );
4022 int lp_dfree_cache_time(int );
4023 int lp_allocation_roundup_size(int );
4024 int lp_aio_read_size(int );
4025 int lp_aio_write_size(int );
4026 int lp_map_readonly(int );
4027 int lp_directory_name_cache_size(int );
4028 int lp_smb_encrypt(int );
4029 char lp_magicchar(const struct share_params
*p
);
4030 int lp_winbind_cache_time(void);
4031 int lp_winbind_reconnect_delay(void);
4032 const char **lp_winbind_nss_info(void);
4033 int lp_algorithmic_rid_base(void);
4034 int lp_name_cache_timeout(void);
4035 int lp_client_signing(void);
4036 int lp_server_signing(void);
4037 int lp_client_ldap_sasl_wrapping(void);
4038 char *lp_parm_talloc_string(int snum
, const char *type
, const char *option
, const char *def
);
4039 const char *lp_parm_const_string(int snum
, const char *type
, const char *option
, const char *def
);
4040 const char **lp_parm_string_list(int snum
, const char *type
, const char *option
, const char **def
);
4041 int lp_parm_int(int snum
, const char *type
, const char *option
, int def
);
4042 unsigned long lp_parm_ulong(int snum
, const char *type
, const char *option
, unsigned long def
);
4043 bool lp_parm_bool(int snum
, const char *type
, const char *option
, bool def
);
4044 int lp_parm_enum(int snum
, const char *type
, const char *option
,
4045 const struct enum_list
*_enum
, int def
);
4046 bool lp_add_home(const char *pszHomename
, int iDefaultService
,
4047 const char *user
, const char *pszHomedir
);
4048 int lp_add_service(const char *pszService
, int iDefaultService
);
4049 bool lp_add_printer(const char *pszPrintername
, int iDefaultService
);
4050 bool lp_parameter_is_valid(const char *pszParmName
);
4051 bool lp_parameter_is_global(const char *pszParmName
);
4052 bool lp_parameter_is_canonical(const char *parm_name
);
4053 bool lp_canonicalize_parameter(const char *parm_name
, const char **canon_parm
,
4055 bool lp_canonicalize_parameter_with_value(const char *parm_name
,
4057 const char **canon_parm
,
4058 const char **canon_val
);
4059 void show_parameter_list(void);
4060 bool lp_string_is_valid_boolean(const char *parm_value
);
4061 bool lp_invert_boolean(const char *str
, const char **inverse_str
);
4062 bool lp_canonicalize_boolean(const char *str
, const char**canon_str
);
4063 bool service_ok(int iService
);
4064 bool lp_config_backend_is_registry(void);
4065 bool lp_config_backend_is_file(void);
4066 bool lp_file_list_changed(void);
4067 bool lp_idmap_uid(uid_t
*low
, uid_t
*high
);
4068 bool lp_idmap_gid(gid_t
*low
, gid_t
*high
);
4069 const char *lp_ldap_machine_suffix(void);
4070 const char *lp_ldap_user_suffix(void);
4071 const char *lp_ldap_group_suffix(void);
4072 const char *lp_ldap_idmap_suffix(void);
4073 void *lp_local_ptr_by_snum(int snum
, void *ptr
);
4074 bool lp_do_parameter(int snum
, const char *pszParmName
, const char *pszParmValue
);
4075 void init_locals(void);
4076 bool lp_is_default(int snum
, struct parm_struct
*parm
);
4077 bool dump_a_parameter(int snum
, char *parm_name
, FILE * f
, bool isGlobal
);
4078 struct parm_struct
*lp_get_parameter(const char *param_name
);
4079 struct parm_struct
*lp_next_parameter(int snum
, int *i
, int allparameters
);
4080 bool lp_snum_ok(int iService
);
4081 void lp_add_one_printer(const char *name
, const char *comment
, void *pdata
);
4082 bool lp_loaded(void);
4083 void lp_killunused(bool (*snumused
) (int));
4084 void lp_kill_all_services(void);
4085 void lp_killservice(int iServiceIn
);
4086 const char* server_role_str(uint32 role
);
4087 enum usershare_err
parse_usershare_file(TALLOC_CTX
*ctx
,
4088 SMB_STRUCT_STAT
*psbuf
,
4089 const char *servicename
,
4093 char **pp_sharepath
,
4096 bool *pallow_guest
);
4097 int load_usershare_service(const char *servicename
);
4098 int load_usershare_shares(void);
4099 void gfree_loadparm(void);
4100 void lp_set_in_client(bool b
);
4101 bool lp_is_in_client(void);
4102 bool lp_load_ex(const char *pszFname
,
4106 bool initialize_globals
,
4107 bool allow_include_registry
,
4108 bool allow_registry_shares
);
4109 bool lp_load(const char *pszFname
,
4113 bool initialize_globals
);
4114 bool lp_load_initial_only(const char *pszFname
);
4115 bool lp_load_with_registry_shares(const char *pszFname
,
4119 bool initialize_globals
);
4120 int lp_numservices(void);
4121 void lp_dump(FILE *f
, bool show_defaults
, int maxtoprint
);
4122 void lp_dump_one(FILE * f
, bool show_defaults
, int snum
);
4123 int lp_servicenumber(const char *pszServiceName
);
4124 bool share_defined(const char *service_name
);
4125 struct share_params
*get_share_params(TALLOC_CTX
*mem_ctx
,
4126 const char *sharename
);
4127 struct share_iterator
*share_list_all(TALLOC_CTX
*mem_ctx
);
4128 struct share_params
*next_share(struct share_iterator
*list
);
4129 struct share_params
*next_printer(struct share_iterator
*list
);
4130 struct share_params
*snum2params_static(int snum
);
4131 const char *volume_label(int snum
);
4132 int lp_server_role(void);
4133 bool lp_domain_master(void);
4134 bool lp_preferred_master(void);
4135 void lp_remove_service(int snum
);
4136 void lp_copy_service(int snum
, const char *new_name
);
4137 int lp_default_server_announce(void);
4138 int lp_major_announce_version(void);
4139 int lp_minor_announce_version(void);
4140 void lp_set_name_resolve_order(const char *new_order
);
4141 const char *lp_printername(int snum
);
4142 void lp_set_logfile(const char *name
);
4143 int lp_maxprintjobs(int snum
);
4144 const char *lp_printcapname(void);
4145 bool lp_disable_spoolss( void );
4146 void lp_set_spoolss_state( uint32 state
);
4147 uint32
lp_get_spoolss_state( void );
4148 bool lp_use_sendfile(int snum
, struct smb_signing_state
*signing_state
);
4149 void set_use_sendfile(int snum
, bool val
);
4150 void set_store_dos_attributes(int snum
, bool val
);
4151 void lp_set_mangling_method(const char *new_method
);
4152 bool lp_posix_pathnames(void);
4153 void lp_set_posix_pathnames(void);
4154 enum brl_flavour
lp_posix_cifsu_locktype(files_struct
*fsp
);
4155 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val
);
4156 int lp_min_receive_file_size(void);
4157 char* lp_perfcount_module(void);
4160 /* The following definitions come from param/params.c */
4162 bool pm_process( const char *FileName
,
4163 bool (*sfunc
)(const char *, void *),
4164 bool (*pfunc
)(const char *, const char *, void *),
4167 /* The following definitions come from param/util.c */
4169 uint32
get_int_param( const char* param
);
4170 char* get_string_param( const char* param
);
4172 /* The following definitions come from passdb/login_cache.c */
4174 bool login_cache_init(void);
4175 bool login_cache_shutdown(void);
4176 LOGIN_CACHE
* login_cache_read(struct samu
*sampass
);
4177 bool login_cache_write(const struct samu
*sampass
, LOGIN_CACHE entry
);
4178 bool login_cache_delentry(const struct samu
*sampass
);
4180 /* The following definitions come from passdb/lookup_sid.c */
4182 bool lookup_name(TALLOC_CTX
*mem_ctx
,
4183 const char *full_name
, int flags
,
4184 const char **ret_domain
, const char **ret_name
,
4185 DOM_SID
*ret_sid
, enum lsa_SidType
*ret_type
);
4186 bool lookup_name_smbconf(TALLOC_CTX
*mem_ctx
,
4187 const char *full_name
, int flags
,
4188 const char **ret_domain
, const char **ret_name
,
4189 DOM_SID
*ret_sid
, enum lsa_SidType
*ret_type
);
4190 NTSTATUS
lookup_sids(TALLOC_CTX
*mem_ctx
, int num_sids
,
4191 const DOM_SID
**sids
, int level
,
4192 struct lsa_dom_info
**ret_domains
,
4193 struct lsa_name_info
**ret_names
);
4194 bool lookup_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
4195 const char **ret_domain
, const char **ret_name
,
4196 enum lsa_SidType
*ret_type
);
4197 void store_uid_sid_cache(const DOM_SID
*psid
, uid_t uid
);
4198 void store_gid_sid_cache(const DOM_SID
*psid
, gid_t gid
);
4199 void uid_to_sid(DOM_SID
*psid
, uid_t uid
);
4200 void gid_to_sid(DOM_SID
*psid
, gid_t gid
);
4201 bool sid_to_uid(const DOM_SID
*psid
, uid_t
*puid
);
4202 bool sid_to_gid(const DOM_SID
*psid
, gid_t
*pgid
);
4204 /* The following definitions come from passdb/machine_sid.c */
4206 DOM_SID
*get_global_sam_sid(void);
4207 void reset_global_sam_sid(void) ;
4208 bool sid_check_is_domain(const DOM_SID
*sid
);
4209 bool sid_check_is_in_our_domain(const DOM_SID
*sid
);
4211 /* The following definitions come from passdb/passdb.c */
4213 const char *my_sam_name(void);
4214 struct samu
*samu_new( TALLOC_CTX
*ctx
);
4215 NTSTATUS
samu_set_unix(struct samu
*user
, const struct passwd
*pwd
);
4216 NTSTATUS
samu_alloc_rid_unix(struct samu
*user
, const struct passwd
*pwd
);
4217 char *pdb_encode_acct_ctrl(uint32 acct_ctrl
, size_t length
);
4218 uint32
pdb_decode_acct_ctrl(const char *p
);
4219 void pdb_sethexpwd(char p
[33], const unsigned char *pwd
, uint32 acct_ctrl
);
4220 bool pdb_gethexpwd(const char *p
, unsigned char *pwd
);
4221 void pdb_sethexhours(char *p
, const unsigned char *hours
);
4222 bool pdb_gethexhours(const char *p
, unsigned char *hours
);
4223 int algorithmic_rid_base(void);
4224 uid_t
algorithmic_pdb_user_rid_to_uid(uint32 user_rid
);
4225 uid_t
max_algorithmic_uid(void);
4226 uint32
algorithmic_pdb_uid_to_user_rid(uid_t uid
);
4227 gid_t
pdb_group_rid_to_gid(uint32 group_rid
);
4228 gid_t
max_algorithmic_gid(void);
4229 uint32
algorithmic_pdb_gid_to_group_rid(gid_t gid
);
4230 bool algorithmic_pdb_rid_is_user(uint32 rid
);
4231 bool lookup_global_sam_name(const char *name
, int flags
, uint32_t *rid
,
4232 enum lsa_SidType
*type
);
4233 NTSTATUS
local_password_change(const char *user_name
,
4235 const char *new_passwd
,
4238 bool init_samu_from_buffer(struct samu
*sampass
, uint32_t level
,
4239 uint8
*buf
, uint32 buflen
);
4240 uint32
init_buffer_from_samu (uint8
**buf
, struct samu
*sampass
, bool size_only
);
4241 bool pdb_copy_sam_account(struct samu
*dst
, struct samu
*src
);
4242 bool pdb_update_bad_password_count(struct samu
*sampass
, bool *updated
);
4243 bool pdb_update_autolock_flag(struct samu
*sampass
, bool *updated
);
4244 bool pdb_increment_bad_password_count(struct samu
*sampass
);
4245 bool is_dc_trusted_domain_situation(const char *domain_name
);
4246 bool get_trust_pw_clear(const char *domain
, char **ret_pwd
,
4247 const char **account_name
, uint32
*channel
);
4248 bool get_trust_pw_hash(const char *domain
, uint8 ret_pwd
[16],
4249 const char **account_name
, uint32
*channel
);
4250 struct samr_LogonHours
get_logon_hours_from_pdb(TALLOC_CTX
*mem_ctx
,
4252 NTSTATUS
smb_create_user(TALLOC_CTX
*mem_ctx
,
4253 uint32_t acct_flags
,
4254 const char *account
,
4255 struct passwd
**passwd_p
);
4257 /* The following definitions come from passdb/pdb_compat.c */
4259 uint32
pdb_get_user_rid (const struct samu
*sampass
);
4260 uint32
pdb_get_group_rid (struct samu
*sampass
);
4261 bool pdb_set_user_sid_from_rid (struct samu
*sampass
, uint32 rid
, enum pdb_value_state flag
);
4262 bool pdb_set_group_sid_from_rid (struct samu
*sampass
, uint32 grid
, enum pdb_value_state flag
);
4264 /* The following definitions come from passdb/pdb_get_set.c */
4266 uint32
pdb_get_acct_ctrl(const struct samu
*sampass
);
4267 time_t pdb_get_logon_time(const struct samu
*sampass
);
4268 time_t pdb_get_logoff_time(const struct samu
*sampass
);
4269 time_t pdb_get_kickoff_time(const struct samu
*sampass
);
4270 time_t pdb_get_bad_password_time(const struct samu
*sampass
);
4271 time_t pdb_get_pass_last_set_time(const struct samu
*sampass
);
4272 time_t pdb_get_pass_can_change_time(const struct samu
*sampass
);
4273 time_t pdb_get_pass_can_change_time_noncalc(const struct samu
*sampass
);
4274 time_t pdb_get_pass_must_change_time(const struct samu
*sampass
);
4275 bool pdb_get_pass_can_change(const struct samu
*sampass
);
4276 uint16
pdb_get_logon_divs(const struct samu
*sampass
);
4277 uint32
pdb_get_hours_len(const struct samu
*sampass
);
4278 const uint8
*pdb_get_hours(const struct samu
*sampass
);
4279 const uint8
*pdb_get_nt_passwd(const struct samu
*sampass
);
4280 const uint8
*pdb_get_lanman_passwd(const struct samu
*sampass
);
4281 const uint8
*pdb_get_pw_history(const struct samu
*sampass
, uint32
*current_hist_len
);
4282 const char *pdb_get_plaintext_passwd(const struct samu
*sampass
);
4283 const DOM_SID
*pdb_get_user_sid(const struct samu
*sampass
);
4284 const DOM_SID
*pdb_get_group_sid(struct samu
*sampass
);
4285 enum pdb_value_state
pdb_get_init_flags(const struct samu
*sampass
, enum pdb_elements element
);
4286 const char *pdb_get_username(const struct samu
*sampass
);
4287 const char *pdb_get_domain(const struct samu
*sampass
);
4288 const char *pdb_get_nt_username(const struct samu
*sampass
);
4289 const char *pdb_get_fullname(const struct samu
*sampass
);
4290 const char *pdb_get_homedir(const struct samu
*sampass
);
4291 const char *pdb_get_dir_drive(const struct samu
*sampass
);
4292 const char *pdb_get_logon_script(const struct samu
*sampass
);
4293 const char *pdb_get_profile_path(const struct samu
*sampass
);
4294 const char *pdb_get_acct_desc(const struct samu
*sampass
);
4295 const char *pdb_get_workstations(const struct samu
*sampass
);
4296 const char *pdb_get_comment(const struct samu
*sampass
);
4297 const char *pdb_get_munged_dial(const struct samu
*sampass
);
4298 uint16
pdb_get_bad_password_count(const struct samu
*sampass
);
4299 uint16
pdb_get_logon_count(const struct samu
*sampass
);
4300 uint32
pdb_get_unknown_6(const struct samu
*sampass
);
4301 void *pdb_get_backend_private_data(const struct samu
*sampass
, const struct pdb_methods
*my_methods
);
4302 bool pdb_set_acct_ctrl(struct samu
*sampass
, uint32 acct_ctrl
, enum pdb_value_state flag
);
4303 bool pdb_set_logon_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4304 bool pdb_set_logoff_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4305 bool pdb_set_kickoff_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4306 bool pdb_set_bad_password_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4307 bool pdb_set_pass_can_change_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4308 bool pdb_set_pass_must_change_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4309 bool pdb_set_pass_last_set_time(struct samu
*sampass
, time_t mytime
, enum pdb_value_state flag
);
4310 bool pdb_set_hours_len(struct samu
*sampass
, uint32 len
, enum pdb_value_state flag
);
4311 bool pdb_set_logon_divs(struct samu
*sampass
, uint16 hours
, enum pdb_value_state flag
);
4312 bool pdb_set_init_flags(struct samu
*sampass
, enum pdb_elements element
, enum pdb_value_state value_flag
);
4313 bool pdb_set_user_sid(struct samu
*sampass
, const DOM_SID
*u_sid
, enum pdb_value_state flag
);
4314 bool pdb_set_user_sid_from_string(struct samu
*sampass
, fstring u_sid
, enum pdb_value_state flag
);
4315 bool pdb_set_group_sid(struct samu
*sampass
, const DOM_SID
*g_sid
, enum pdb_value_state flag
);
4316 bool pdb_set_username(struct samu
*sampass
, const char *username
, enum pdb_value_state flag
);
4317 bool pdb_set_domain(struct samu
*sampass
, const char *domain
, enum pdb_value_state flag
);
4318 bool pdb_set_nt_username(struct samu
*sampass
, const char *nt_username
, enum pdb_value_state flag
);
4319 bool pdb_set_fullname(struct samu
*sampass
, const char *full_name
, enum pdb_value_state flag
);
4320 bool pdb_set_logon_script(struct samu
*sampass
, const char *logon_script
, enum pdb_value_state flag
);
4321 bool pdb_set_profile_path(struct samu
*sampass
, const char *profile_path
, enum pdb_value_state flag
);
4322 bool pdb_set_dir_drive(struct samu
*sampass
, const char *dir_drive
, enum pdb_value_state flag
);
4323 bool pdb_set_homedir(struct samu
*sampass
, const char *home_dir
, enum pdb_value_state flag
);
4324 bool pdb_set_acct_desc(struct samu
*sampass
, const char *acct_desc
, enum pdb_value_state flag
);
4325 bool pdb_set_workstations(struct samu
*sampass
, const char *workstations
, enum pdb_value_state flag
);
4326 bool pdb_set_comment(struct samu
*sampass
, const char *comment
, enum pdb_value_state flag
);
4327 bool pdb_set_munged_dial(struct samu
*sampass
, const char *munged_dial
, enum pdb_value_state flag
);
4328 bool pdb_set_nt_passwd(struct samu
*sampass
, const uint8 pwd
[NT_HASH_LEN
], enum pdb_value_state flag
);
4329 bool pdb_set_lanman_passwd(struct samu
*sampass
, const uint8 pwd
[LM_HASH_LEN
], enum pdb_value_state flag
);
4330 bool pdb_set_pw_history(struct samu
*sampass
, const uint8
*pwd
, uint32 historyLen
, enum pdb_value_state flag
);
4331 bool pdb_set_plaintext_pw_only(struct samu
*sampass
, const char *password
, enum pdb_value_state flag
);
4332 bool pdb_set_bad_password_count(struct samu
*sampass
, uint16 bad_password_count
, enum pdb_value_state flag
);
4333 bool pdb_set_logon_count(struct samu
*sampass
, uint16 logon_count
, enum pdb_value_state flag
);
4334 bool pdb_set_unknown_6(struct samu
*sampass
, uint32 unkn
, enum pdb_value_state flag
);
4335 bool pdb_set_hours(struct samu
*sampass
, const uint8
*hours
, enum pdb_value_state flag
);
4336 bool pdb_set_backend_private_data(struct samu
*sampass
, void *private_data
,
4337 void (*free_fn
)(void **),
4338 const struct pdb_methods
*my_methods
,
4339 enum pdb_value_state flag
);
4340 bool pdb_set_pass_can_change(struct samu
*sampass
, bool canchange
);
4341 bool pdb_set_plaintext_passwd(struct samu
*sampass
, const char *plaintext
);
4342 uint32
pdb_build_fields_present(struct samu
*sampass
);
4344 /* The following definitions come from passdb/pdb_interface.c */
4346 NTSTATUS
smb_register_passdb(int version
, const char *name
, pdb_init_function init
) ;
4347 struct pdb_init_function_entry
*pdb_find_backend_entry(const char *name
);
4348 struct event_context
*pdb_get_event_context(void);
4349 NTSTATUS
make_pdb_method_name(struct pdb_methods
**methods
, const char *selected
);
4350 bool pdb_getsampwnam(struct samu
*sam_acct
, const char *username
) ;
4351 bool guest_user_info( struct samu
*user
);
4352 bool pdb_getsampwsid(struct samu
*sam_acct
, const DOM_SID
*sid
) ;
4353 NTSTATUS
pdb_create_user(TALLOC_CTX
*mem_ctx
, const char *name
, uint32 flags
,
4355 NTSTATUS
pdb_delete_user(TALLOC_CTX
*mem_ctx
, struct samu
*sam_acct
);
4356 NTSTATUS
pdb_add_sam_account(struct samu
*sam_acct
) ;
4357 NTSTATUS
pdb_update_sam_account(struct samu
*sam_acct
) ;
4358 NTSTATUS
pdb_delete_sam_account(struct samu
*sam_acct
) ;
4359 NTSTATUS
pdb_rename_sam_account(struct samu
*oldname
, const char *newname
);
4360 NTSTATUS
pdb_update_login_attempts(struct samu
*sam_acct
, bool success
);
4361 bool pdb_getgrsid(GROUP_MAP
*map
, DOM_SID sid
);
4362 bool pdb_getgrgid(GROUP_MAP
*map
, gid_t gid
);
4363 bool pdb_getgrnam(GROUP_MAP
*map
, const char *name
);
4364 NTSTATUS
pdb_create_dom_group(TALLOC_CTX
*mem_ctx
, const char *name
,
4366 NTSTATUS
pdb_delete_dom_group(TALLOC_CTX
*mem_ctx
, uint32 rid
);
4367 NTSTATUS
pdb_add_group_mapping_entry(GROUP_MAP
*map
);
4368 NTSTATUS
pdb_update_group_mapping_entry(GROUP_MAP
*map
);
4369 NTSTATUS
pdb_delete_group_mapping_entry(DOM_SID sid
);
4370 bool pdb_enum_group_mapping(const DOM_SID
*sid
, enum lsa_SidType sid_name_use
, GROUP_MAP
**pp_rmap
,
4371 size_t *p_num_entries
, bool unix_only
);
4372 NTSTATUS
pdb_enum_group_members(TALLOC_CTX
*mem_ctx
,
4374 uint32
**pp_member_rids
,
4375 size_t *p_num_members
);
4376 NTSTATUS
pdb_enum_group_memberships(TALLOC_CTX
*mem_ctx
, struct samu
*user
,
4377 DOM_SID
**pp_sids
, gid_t
**pp_gids
,
4378 size_t *p_num_groups
);
4379 NTSTATUS
pdb_set_unix_primary_group(TALLOC_CTX
*mem_ctx
, struct samu
*user
);
4380 NTSTATUS
pdb_add_groupmem(TALLOC_CTX
*mem_ctx
, uint32 group_rid
,
4382 NTSTATUS
pdb_del_groupmem(TALLOC_CTX
*mem_ctx
, uint32 group_rid
,
4384 NTSTATUS
pdb_create_alias(const char *name
, uint32
*rid
);
4385 NTSTATUS
pdb_delete_alias(const DOM_SID
*sid
);
4386 NTSTATUS
pdb_get_aliasinfo(const DOM_SID
*sid
, struct acct_info
*info
);
4387 NTSTATUS
pdb_set_aliasinfo(const DOM_SID
*sid
, struct acct_info
*info
);
4388 NTSTATUS
pdb_add_aliasmem(const DOM_SID
*alias
, const DOM_SID
*member
);
4389 NTSTATUS
pdb_del_aliasmem(const DOM_SID
*alias
, const DOM_SID
*member
);
4390 NTSTATUS
pdb_enum_aliasmem(const DOM_SID
*alias
,
4391 DOM_SID
**pp_members
, size_t *p_num_members
);
4392 NTSTATUS
pdb_enum_alias_memberships(TALLOC_CTX
*mem_ctx
,
4393 const DOM_SID
*domain_sid
,
4394 const DOM_SID
*members
, size_t num_members
,
4395 uint32
**pp_alias_rids
,
4396 size_t *p_num_alias_rids
);
4397 NTSTATUS
pdb_lookup_rids(const DOM_SID
*domain_sid
,
4401 enum lsa_SidType
*attrs
);
4402 NTSTATUS
pdb_lookup_names(const DOM_SID
*domain_sid
,
4406 enum lsa_SidType
*attrs
);
4407 bool pdb_get_account_policy(int policy_index
, uint32
*value
);
4408 bool pdb_set_account_policy(int policy_index
, uint32 value
);
4409 bool pdb_get_seq_num(time_t *seq_num
);
4410 bool pdb_uid_to_rid(uid_t uid
, uint32
*rid
);
4411 bool pdb_uid_to_sid(uid_t uid
, DOM_SID
*sid
);
4412 bool pdb_gid_to_sid(gid_t gid
, DOM_SID
*sid
);
4413 bool pdb_sid_to_id(const DOM_SID
*sid
, union unid_t
*id
,
4414 enum lsa_SidType
*type
);
4415 bool pdb_rid_algorithm(void);
4416 bool pdb_new_rid(uint32
*rid
);
4417 bool initialize_password_db(bool reload
, struct event_context
*event_ctx
);
4418 struct pdb_search
*pdb_search_init(TALLOC_CTX
*mem_ctx
,
4419 enum pdb_search_type type
);
4420 struct pdb_search
*pdb_search_users(TALLOC_CTX
*mem_ctx
, uint32 acct_flags
);
4421 struct pdb_search
*pdb_search_groups(TALLOC_CTX
*mem_ctx
);
4422 struct pdb_search
*pdb_search_aliases(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
);
4423 uint32
pdb_search_entries(struct pdb_search
*search
,
4424 uint32 start_idx
, uint32 max_entries
,
4425 struct samr_displayentry
**result
);
4426 bool pdb_get_trusteddom_pw(const char *domain
, char** pwd
, DOM_SID
*sid
,
4427 time_t *pass_last_set_time
);
4428 bool pdb_set_trusteddom_pw(const char* domain
, const char* pwd
,
4429 const DOM_SID
*sid
);
4430 bool pdb_del_trusteddom_pw(const char *domain
);
4431 NTSTATUS
pdb_enum_trusteddoms(TALLOC_CTX
*mem_ctx
, uint32
*num_domains
,
4432 struct trustdom_info
***domains
);
4433 NTSTATUS
make_pdb_method( struct pdb_methods
**methods
) ;
4435 /* The following definitions come from passdb/pdb_ldap.c */
4437 const char** get_userattr_list( TALLOC_CTX
*mem_ctx
, int schema_ver
);
4438 int ldapsam_search_suffix_by_name(struct ldapsam_privates
*ldap_state
,
4440 LDAPMessage
** result
,
4442 const char **talloc_attrs(TALLOC_CTX
*mem_ctx
, ...);
4443 NTSTATUS
pdb_init_ldapsam_compat(struct pdb_methods
**pdb_method
, const char *location
);
4444 NTSTATUS
pdb_init_ldapsam(struct pdb_methods
**pdb_method
, const char *location
);
4445 NTSTATUS
pdb_ldap_init(void);
4447 /* The following definitions come from passdb/pdb_nds.c */
4449 int pdb_nds_get_password(
4450 struct smbldap_state
*ldap_state
,
4454 int pdb_nds_set_password(
4455 struct smbldap_state
*ldap_state
,
4458 NTSTATUS
pdb_nds_init(void);
4460 /* The following definitions come from passdb/pdb_smbpasswd.c */
4462 NTSTATUS
pdb_smbpasswd_init(void) ;
4464 /* The following definitions come from passdb/pdb_wbc_sam.c */
4466 NTSTATUS
pdb_wbc_sam_init(void);
4468 /* The following definitions come from passdb/pdb_tdb.c */
4470 bool init_sam_from_buffer_v2(struct samu
*sampass
, uint8
*buf
, uint32 buflen
);
4471 NTSTATUS
pdb_tdbsam_init(void);
4473 /* The following definitions come from passdb/secrets.c */
4475 bool secrets_init(void);
4476 struct db_context
*secrets_db_ctx(void);
4477 void secrets_shutdown(void);
4478 void *secrets_fetch(const char *key
, size_t *size
);
4479 bool secrets_store(const char *key
, const void *data
, size_t size
);
4480 bool secrets_delete(const char *key
);
4481 bool secrets_store_domain_sid(const char *domain
, const DOM_SID
*sid
);
4482 bool secrets_fetch_domain_sid(const char *domain
, DOM_SID
*sid
);
4483 bool secrets_store_domain_guid(const char *domain
, struct GUID
*guid
);
4484 bool secrets_fetch_domain_guid(const char *domain
, struct GUID
*guid
);
4485 void *secrets_get_trust_account_lock(TALLOC_CTX
*mem_ctx
, const char *domain
);
4486 uint32
get_default_sec_channel(void);
4487 bool secrets_fetch_trust_account_password_legacy(const char *domain
,
4489 time_t *pass_last_set_time
,
4491 bool secrets_fetch_trust_account_password(const char *domain
, uint8 ret_pwd
[16],
4492 time_t *pass_last_set_time
,
4494 bool secrets_fetch_trusted_domain_password(const char *domain
, char** pwd
,
4495 DOM_SID
*sid
, time_t *pass_last_set_time
);
4496 bool secrets_store_trusted_domain_password(const char* domain
, const char* pwd
,
4497 const DOM_SID
*sid
);
4498 bool secrets_delete_machine_password(const char *domain
);
4499 bool secrets_delete_machine_password_ex(const char *domain
);
4500 bool secrets_delete_domain_sid(const char *domain
);
4501 bool secrets_store_machine_password(const char *pass
, const char *domain
, uint32 sec_channel
);
4502 char *secrets_fetch_machine_password(const char *domain
,
4503 time_t *pass_last_set_time
,
4505 bool trusted_domain_password_delete(const char *domain
);
4506 bool secrets_store_ldap_pw(const char* dn
, char* pw
);
4507 bool fetch_ldap_pw(char **dn
, char** pw
);
4508 NTSTATUS
secrets_trusted_domains(TALLOC_CTX
*mem_ctx
, uint32
*num_domains
,
4509 struct trustdom_info
***domains
);
4510 bool secrets_store_afs_keyfile(const char *cell
, const struct afs_keyfile
*keyfile
);
4511 bool secrets_fetch_afs_key(const char *cell
, struct afs_key
*result
);
4512 void secrets_fetch_ipc_userpass(char **username
, char **domain
, char **password
);
4513 bool secrets_store_schannel_session_info(TALLOC_CTX
*mem_ctx
,
4514 const char *remote_machine
,
4515 const struct dcinfo
*pdc
);
4516 bool secrets_restore_schannel_session_info(TALLOC_CTX
*mem_ctx
,
4517 const char *remote_machine
,
4518 struct dcinfo
**ppdc
);
4519 bool secrets_store_generic(const char *owner
, const char *key
, const char *secret
);
4520 char *secrets_fetch_generic(const char *owner
, const char *key
);
4521 bool secrets_store_local_schannel_key(uint8_t schannel_key
[16]);
4522 bool secrets_fetch_local_schannel_key(uint8_t schannel_key
[16]);
4524 /* The following definitions come from passdb/util_builtin.c */
4526 bool lookup_builtin_rid(TALLOC_CTX
*mem_ctx
, uint32 rid
, const char **name
);
4527 bool lookup_builtin_name(const char *name
, uint32
*rid
);
4528 const char *builtin_domain_name(void);
4529 bool sid_check_is_builtin(const DOM_SID
*sid
);
4530 bool sid_check_is_in_builtin(const DOM_SID
*sid
);
4532 /* The following definitions come from passdb/util_unixsids.c */
4534 bool sid_check_is_unix_users(const DOM_SID
*sid
);
4535 bool sid_check_is_in_unix_users(const DOM_SID
*sid
);
4536 bool uid_to_unix_users_sid(uid_t uid
, DOM_SID
*sid
);
4537 bool gid_to_unix_groups_sid(gid_t gid
, DOM_SID
*sid
);
4538 const char *unix_users_domain_name(void);
4539 bool lookup_unix_user_name(const char *name
, DOM_SID
*sid
);
4540 bool sid_check_is_unix_groups(const DOM_SID
*sid
);
4541 bool sid_check_is_in_unix_groups(const DOM_SID
*sid
);
4542 const char *unix_groups_domain_name(void);
4543 bool lookup_unix_group_name(const char *name
, DOM_SID
*sid
);
4545 /* The following definitions come from passdb/util_wellknown.c */
4547 bool sid_check_is_wellknown_domain(const DOM_SID
*sid
, const char **name
);
4548 bool sid_check_is_in_wellknown_domain(const DOM_SID
*sid
);
4549 bool lookup_wellknown_sid(TALLOC_CTX
*mem_ctx
, const DOM_SID
*sid
,
4550 const char **domain
, const char **name
);
4551 bool lookup_wellknown_name(TALLOC_CTX
*mem_ctx
, const char *name
,
4552 DOM_SID
*sid
, const char **domain
);
4554 /* The following definitions come from printing/load.c */
4556 void load_printers(void);
4558 /* The following definitions come from printing/lpq_parse.c */
4560 bool parse_lpq_entry(enum printing_types printing_type
,char *line
,
4561 print_queue_struct
*buf
,
4562 print_status_struct
*status
,bool first
);
4564 /* The following definitions come from printing/notify.c */
4566 int print_queue_snum(const char *qname
);
4567 void print_notify_send_messages(struct messaging_context
*msg_ctx
,
4568 unsigned int timeout
);
4569 void notify_printer_status_byname(const char *sharename
, uint32 status
);
4570 void notify_printer_status(int snum
, uint32 status
);
4571 void notify_job_status_byname(const char *sharename
, uint32 jobid
, uint32 status
,
4573 void notify_job_status(const char *sharename
, uint32 jobid
, uint32 status
);
4574 void notify_job_total_bytes(const char *sharename
, uint32 jobid
,
4576 void notify_job_total_pages(const char *sharename
, uint32 jobid
,
4578 void notify_job_username(const char *sharename
, uint32 jobid
, char *name
);
4579 void notify_job_name(const char *sharename
, uint32 jobid
, char *name
);
4580 void notify_job_submitted(const char *sharename
, uint32 jobid
,
4582 void notify_printer_driver(int snum
, char *driver_name
);
4583 void notify_printer_comment(int snum
, char *comment
);
4584 void notify_printer_sharename(int snum
, char *share_name
);
4585 void notify_printer_printername(int snum
, char *printername
);
4586 void notify_printer_port(int snum
, char *port_name
);
4587 void notify_printer_location(int snum
, char *location
);
4588 void notify_printer_byname( const char *printername
, uint32 change
, const char *value
);
4590 /* The following definitions come from printing/nt_printing.c */
4592 bool nt_printing_init(struct messaging_context
*msg_ctx
);
4593 uint32
update_c_setprinter(bool initialize
);
4594 uint32
get_c_setprinter(void);
4595 int get_builtin_ntforms(nt_forms_struct
**list
);
4596 bool get_a_builtin_ntform_by_string(const char *form_name
, nt_forms_struct
*form
);
4597 int get_ntforms(nt_forms_struct
**list
);
4598 int write_ntforms(nt_forms_struct
**list
, int number
);
4599 bool add_a_form(nt_forms_struct
**list
, struct spoolss_AddFormInfo1
*form
, int *count
);
4600 bool delete_a_form(nt_forms_struct
**list
, const char *del_name
, int *count
, WERROR
*ret
);
4601 void update_a_form(nt_forms_struct
**list
, struct spoolss_AddFormInfo1
*form
, int count
);
4602 int get_ntdrivers(fstring
**list
, const char *architecture
, uint32 version
);
4603 const char *get_short_archi(const char *long_archi
);
4604 WERROR
clean_up_driver_struct(struct pipes_struct
*rpc_pipe
,
4605 NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
,
4607 WERROR
move_driver_to_download_area(struct pipes_struct
*p
,
4608 NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract
,
4609 uint32 level
, WERROR
*perr
);
4610 int pack_devicemode(NT_DEVICEMODE
*nt_devmode
, uint8
*buf
, int buflen
);
4611 uint32
del_a_printer(const char *sharename
);
4612 NT_DEVICEMODE
*construct_nt_devicemode(const fstring default_devicename
);
4613 void free_nt_devicemode(NT_DEVICEMODE
**devmode_ptr
);
4614 int unpack_devicemode(NT_DEVICEMODE
**nt_devmode
, const uint8
*buf
, int buflen
);
4615 int add_new_printer_key( NT_PRINTER_DATA
*data
, const char *name
);
4616 int delete_printer_key( NT_PRINTER_DATA
*data
, const char *name
);
4617 int lookup_printerkey( NT_PRINTER_DATA
*data
, const char *name
);
4618 int get_printer_subkeys( NT_PRINTER_DATA
*data
, const char* key
, fstring
**subkeys
);
4619 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
);
4620 WERROR
check_published_printers(void);
4621 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
4623 WERROR
nt_printer_publish(Printer_entry
*print_hnd
, int snum
, int action
);
4624 WERROR
check_published_printers(void);
4625 bool is_printer_published(Printer_entry
*print_hnd
, int snum
,
4627 WERROR
delete_all_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
);
4628 WERROR
delete_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
);
4629 WERROR
add_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
,
4630 uint32 type
, uint8
*data
, int real_len
);
4631 struct regval_blob
* get_printer_data( NT_PRINTER_INFO_LEVEL_2
*p2
, const char *key
, const char *value
);
4632 WERROR
mod_a_printer(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
);
4633 bool set_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
);
4634 bool del_driver_init(const char *drivername
);
4635 WERROR
save_driver_init(NT_PRINTER_INFO_LEVEL
*printer
, uint32 level
, uint8
*data
, uint32 data_len
);
4636 WERROR
get_a_printer( Printer_entry
*print_hnd
,
4637 NT_PRINTER_INFO_LEVEL
**pp_printer
,
4639 const char *sharename
);
4640 WERROR
get_a_printer_search( Printer_entry
*print_hnd
,
4641 NT_PRINTER_INFO_LEVEL
**pp_printer
,
4643 const char *sharename
);
4644 uint32
free_a_printer(NT_PRINTER_INFO_LEVEL
**pp_printer
, uint32 level
);
4645 uint32
add_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
);
4646 WERROR
get_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL
*driver
, uint32_t level
,
4647 const char *drivername
, const char *architecture
, uint32_t version
);
4648 uint32
free_a_printer_driver(NT_PRINTER_DRIVER_INFO_LEVEL driver
, uint32 level
);
4649 bool printer_driver_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
);
4650 bool printer_driver_files_in_use ( NT_PRINTER_DRIVER_INFO_LEVEL_3
*info
);
4651 WERROR
delete_printer_driver(struct pipes_struct
*rpc_pipe
,
4652 NT_PRINTER_DRIVER_INFO_LEVEL_3
*info_3
,
4653 uint32 version
, bool delete_files
);
4654 WERROR
nt_printing_setsec(const char *sharename
, SEC_DESC_BUF
*secdesc_ctr
);
4655 bool nt_printing_getsec(TALLOC_CTX
*ctx
, const char *sharename
, SEC_DESC_BUF
**secdesc_ctr
);
4656 void map_printer_permissions(SEC_DESC
*sd
);
4657 void map_job_permissions(SEC_DESC
*sd
);
4658 bool print_access_check(struct auth_serversupplied_info
*server_info
, int snum
,
4660 bool print_time_access_check(const char *servicename
);
4661 char* get_server_name( Printer_entry
*printer
);
4663 /* The following definitions come from printing/pcap.c */
4665 bool pcap_cache_add_specific(struct pcap_cache
**ppcache
, const char *name
, const char *comment
);
4666 void pcap_cache_destroy_specific(struct pcap_cache
**ppcache
);
4667 bool pcap_cache_add(const char *name
, const char *comment
);
4668 bool pcap_cache_loaded(void);
4669 void pcap_cache_replace(const struct pcap_cache
*cache
);
4670 void pcap_cache_reload(void);
4671 bool pcap_printername_ok(const char *printername
);
4672 void pcap_printer_fn_specific(const struct pcap_cache
*, void (*fn
)(const char *, const char *, void *), void *);
4673 void pcap_printer_fn(void (*fn
)(const char *, const char *, void *), void *);
4675 /* The following definitions come from printing/print_aix.c */
4677 bool aix_cache_reload(void);
4679 /* The following definitions come from printing/print_cups.c */
4681 bool cups_cache_reload(void);
4682 bool cups_pull_comment_location(NT_PRINTER_INFO_LEVEL_2
*printer
);
4684 /* The following definitions come from printing/print_generic.c */
4687 /* The following definitions come from printing/print_iprint.c */
4689 bool iprint_cache_reload(void);
4691 /* The following definitions come from printing/print_svid.c */
4693 bool sysv_cache_reload(void);
4695 /* The following definitions come from printing/printfsp.c */
4697 NTSTATUS
print_fsp_open(struct smb_request
*req
, connection_struct
*conn
,
4699 uint16_t current_vuid
, files_struct
*fsp
,
4700 SMB_STRUCT_STAT
*psbuf
);
4701 void print_fsp_end(files_struct
*fsp
, enum file_close_type close_type
);
4703 /* The following definitions come from printing/printing.c */
4705 uint16
pjobid_to_rap(const char* sharename
, uint32 jobid
);
4706 bool rap_to_pjobid(uint16 rap_jobid
, fstring sharename
, uint32
*pjobid
);
4707 bool print_backend_init(struct messaging_context
*msg_ctx
);
4708 void printing_end(void);
4709 int unpack_pjob( uint8
*buf
, int buflen
, struct printjob
*pjob
);
4710 uint32
sysjob_to_jobid(int unix_jobid
);
4711 void pjob_delete(const char* sharename
, uint32 jobid
);
4712 void start_background_queue(void);
4713 bool print_notify_register_pid(int snum
);
4714 bool print_notify_deregister_pid(int snum
);
4715 bool print_job_exists(const char* sharename
, uint32 jobid
);
4716 int print_job_fd(const char* sharename
, uint32 jobid
);
4717 char *print_job_fname(const char* sharename
, uint32 jobid
);
4718 NT_DEVICEMODE
*print_job_devmode(const char* sharename
, uint32 jobid
);
4719 bool print_job_set_place(const char *sharename
, uint32 jobid
, int place
);
4720 bool print_job_set_name(const char *sharename
, uint32 jobid
, char *name
);
4721 bool print_job_delete(struct auth_serversupplied_info
*server_info
, int snum
,
4722 uint32 jobid
, WERROR
*errcode
);
4723 bool print_job_pause(struct auth_serversupplied_info
*server_info
, int snum
,
4724 uint32 jobid
, WERROR
*errcode
);
4725 bool print_job_resume(struct auth_serversupplied_info
*server_info
, int snum
,
4726 uint32 jobid
, WERROR
*errcode
);
4727 ssize_t
print_job_write(int snum
, uint32 jobid
, const char *buf
, SMB_OFF_T pos
, size_t size
);
4728 int print_queue_length(int snum
, print_status_struct
*pstatus
);
4729 uint32
print_job_start(struct auth_serversupplied_info
*server_info
, int snum
,
4730 const char *jobname
, NT_DEVICEMODE
*nt_devmode
);
4731 void print_job_endpage(int snum
, uint32 jobid
);
4732 bool print_job_end(int snum
, uint32 jobid
, enum file_close_type close_type
);
4733 int print_queue_status(int snum
,
4734 print_queue_struct
**ppqueue
,
4735 print_status_struct
*status
);
4736 bool print_queue_pause(struct auth_serversupplied_info
*server_info
, int snum
,
4738 bool print_queue_resume(struct auth_serversupplied_info
*server_info
, int snum
,
4740 bool print_queue_purge(struct auth_serversupplied_info
*server_info
, int snum
,
4743 /* The following definitions come from printing/printing_db.c */
4745 struct tdb_print_db
*get_print_db_byname(const char *printername
);
4746 void release_print_db( struct tdb_print_db
*pdb
);
4747 void close_all_print_db(void);
4748 TDB_DATA
get_printer_notify_pid_list(TDB_CONTEXT
*tdb
, const char *printer_name
, bool cleanlist
);
4750 /* The following definitions come from profile/profile.c */
4752 void set_profile_level(int level
, struct server_id src
);
4753 bool profile_setup(struct messaging_context
*msg_ctx
, bool rdonly
);
4755 /* The following definitions come from registry/reg_api.c */
4757 WERROR
reg_openhive(TALLOC_CTX
*mem_ctx
, const char *hive
,
4758 uint32 desired_access
,
4759 const struct nt_user_token
*token
,
4760 struct registry_key
**pkey
);
4761 WERROR
reg_openkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*parent
,
4762 const char *name
, uint32 desired_access
,
4763 struct registry_key
**pkey
);
4764 WERROR
reg_enumkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4765 uint32 idx
, char **name
, NTTIME
*last_write_time
);
4766 WERROR
reg_enumvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4767 uint32 idx
, char **pname
, struct registry_value
**pval
);
4768 WERROR
reg_queryvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4769 const char *name
, struct registry_value
**pval
);
4770 WERROR
reg_queryinfokey(struct registry_key
*key
, uint32_t *num_subkeys
,
4771 uint32_t *max_subkeylen
, uint32_t *max_subkeysize
,
4772 uint32_t *num_values
, uint32_t *max_valnamelen
,
4773 uint32_t *max_valbufsize
, uint32_t *secdescsize
,
4774 NTTIME
*last_changed_time
);
4775 WERROR
reg_createkey(TALLOC_CTX
*ctx
, struct registry_key
*parent
,
4776 const char *subkeypath
, uint32 desired_access
,
4777 struct registry_key
**pkey
,
4778 enum winreg_CreateAction
*paction
);
4779 WERROR
reg_deletekey(struct registry_key
*parent
, const char *path
);
4780 WERROR
reg_setvalue(struct registry_key
*key
, const char *name
,
4781 const struct registry_value
*val
);
4782 WERROR
reg_deletevalue(struct registry_key
*key
, const char *name
);
4783 WERROR
reg_getkeysecurity(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
4784 struct security_descriptor
**psecdesc
);
4785 WERROR
reg_setkeysecurity(struct registry_key
*key
,
4786 struct security_descriptor
*psecdesc
);
4787 WERROR
reg_getversion(uint32_t *version
);
4788 WERROR
reg_restorekey(struct registry_key
*key
, const char *fname
);
4789 WERROR
reg_savekey(struct registry_key
*key
, const char *fname
);
4790 WERROR
reg_deleteallvalues(struct registry_key
*key
);
4791 WERROR
reg_open_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
4792 uint32 desired_access
, const struct nt_user_token
*token
,
4793 struct registry_key
**pkey
);
4794 WERROR
reg_deletekey_recursive(TALLOC_CTX
*ctx
,
4795 struct registry_key
*parent
,
4797 WERROR
reg_deletesubkeys_recursive(TALLOC_CTX
*ctx
,
4798 struct registry_key
*parent
,
4800 WERROR
reg_create_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
4801 uint32 desired_access
,
4802 const struct nt_user_token
*token
,
4803 enum winreg_CreateAction
*paction
,
4804 struct registry_key
**pkey
);
4805 WERROR
reg_delete_path(const struct nt_user_token
*token
,
4806 const char *orig_path
);
4808 /* The following definitions come from registry/reg_backend_current_version.c */
4811 /* The following definitions come from registry/reg_backend_db.c */
4813 WERROR
init_registry_key(const char *add_path
);
4814 WERROR
init_registry_data(void);
4815 WERROR
regdb_init(void);
4816 WERROR
regdb_open( void );
4817 int regdb_close( void );
4818 WERROR
regdb_transaction_start(void);
4819 WERROR
regdb_transaction_commit(void);
4820 WERROR
regdb_transaction_cancel(void);
4821 int regdb_get_seqnum(void);
4822 bool regdb_store_keys(const char *key
, struct regsubkey_ctr
*ctr
);
4823 int regdb_fetch_keys(const char *key
, struct regsubkey_ctr
*ctr
);
4824 int regdb_fetch_values(const char* key
, struct regval_ctr
*values
);
4825 bool regdb_store_values(const char *key
, struct regval_ctr
*values
);
4826 bool regdb_subkeys_need_update(struct regsubkey_ctr
*subkeys
);
4827 bool regdb_values_need_update(struct regval_ctr
*values
);
4829 /* The following definitions come from registry/reg_backend_hkpt_params.c */
4832 /* The following definitions come from registry/reg_backend_netlogon_params.c */
4835 /* The following definitions come from registry/reg_backend_perflib.c */
4838 /* The following definitions come from registry/reg_backend_printing.c */
4841 /* The following definitions come from registry/reg_backend_prod_options.c */
4844 /* The following definitions come from registry/reg_backend_shares.c */
4847 /* The following definitions come from registry/reg_backend_smbconf.c */
4850 /* The following definitions come from registry/reg_backend_tcpip_params.c */
4853 /* The following definitions come from registry/reg_cachehook.c */
4855 WERROR
reghook_cache_init(void);
4856 WERROR
reghook_cache_add(const char *keyname
, REGISTRY_OPS
*ops
);
4857 REGISTRY_OPS
*reghook_cache_find(const char *keyname
);
4858 void reghook_dump_cache( int debuglevel
);
4860 /* The following definitions come from registry/reg_dispatcher.c */
4862 bool store_reg_keys( REGISTRY_KEY
*key
, struct regsubkey_ctr
*subkeys
);
4863 bool store_reg_values(REGISTRY_KEY
*key
, struct regval_ctr
*val
);
4864 WERROR
create_reg_subkey(REGISTRY_KEY
*key
, const char *subkey
);
4865 WERROR
delete_reg_subkey(REGISTRY_KEY
*key
, const char *subkey
);
4866 int fetch_reg_keys( REGISTRY_KEY
*key
, struct regsubkey_ctr
*subkey_ctr
);
4867 int fetch_reg_values(REGISTRY_KEY
*key
, struct regval_ctr
*val
);
4868 bool regkey_access_check( REGISTRY_KEY
*key
, uint32 requested
, uint32
*granted
,
4869 const struct nt_user_token
*token
);
4870 WERROR
regkey_get_secdesc(TALLOC_CTX
*mem_ctx
, REGISTRY_KEY
*key
,
4871 struct security_descriptor
**psecdesc
);
4872 WERROR
regkey_set_secdesc(REGISTRY_KEY
*key
,
4873 struct security_descriptor
*psecdesc
);
4874 bool reg_subkeys_need_update(REGISTRY_KEY
*key
, struct regsubkey_ctr
*subkeys
);
4875 bool reg_values_need_update(REGISTRY_KEY
*key
, struct regval_ctr
*values
);
4877 /* The following definitions come from registry/reg_eventlog.c */
4879 bool eventlog_init_keys(void);
4880 bool eventlog_add_source( const char *eventlog
, const char *sourcename
,
4881 const char *messagefile
);
4883 /* The following definitions come from registry/reg_init_basic.c */
4885 WERROR
registry_init_common(void);
4886 WERROR
registry_init_basic(void);
4888 /* The following definitions come from registry/reg_init_full.c */
4890 WERROR
registry_init_full(void);
4892 /* The following definitions come from registry/reg_init_smbconf.c */
4894 NTSTATUS
registry_create_admin_token(TALLOC_CTX
*mem_ctx
,
4895 NT_USER_TOKEN
**ptoken
);
4896 WERROR
registry_init_smbconf(const char *keyname
);
4898 /* The following definitions come from registry/reg_objects.c */
4900 WERROR
regsubkey_ctr_init(TALLOC_CTX
*mem_ctx
, struct regsubkey_ctr
**ctr
);
4901 WERROR
regsubkey_ctr_set_seqnum(struct regsubkey_ctr
*ctr
, int seqnum
);
4902 int regsubkey_ctr_get_seqnum(struct regsubkey_ctr
*ctr
);
4903 WERROR
regsubkey_ctr_addkey( struct regsubkey_ctr
*ctr
, const char *keyname
);
4904 WERROR
regsubkey_ctr_delkey( struct regsubkey_ctr
*ctr
, const char *keyname
);
4905 bool regsubkey_ctr_key_exists( struct regsubkey_ctr
*ctr
, const char *keyname
);
4906 int regsubkey_ctr_numkeys( struct regsubkey_ctr
*ctr
);
4907 char* regsubkey_ctr_specific_key( struct regsubkey_ctr
*ctr
, uint32 key_index
);
4908 int regval_ctr_numvals(struct regval_ctr
*ctr
);
4909 struct regval_blob
* dup_registry_value(struct regval_blob
*val
);
4910 void free_registry_value(struct regval_blob
*val
);
4911 uint8
* regval_data_p(struct regval_blob
*val
);
4912 uint32
regval_size(struct regval_blob
*val
);
4913 char* regval_name(struct regval_blob
*val
);
4914 uint32
regval_type(struct regval_blob
*val
);
4915 struct regval_blob
* regval_ctr_specific_value(struct regval_ctr
*ctr
,
4917 bool regval_ctr_key_exists(struct regval_ctr
*ctr
, const char *value
);
4918 struct regval_blob
*regval_compose(TALLOC_CTX
*ctx
, const char *name
,
4920 const char *data_p
, size_t size
);
4921 int regval_ctr_addvalue(struct regval_ctr
*ctr
, const char *name
, uint16 type
,
4922 const char *data_p
, size_t size
);
4923 int regval_ctr_copyvalue(struct regval_ctr
*ctr
, struct regval_blob
*val
);
4924 int regval_ctr_delvalue(struct regval_ctr
*ctr
, const char *name
);
4925 struct regval_blob
* regval_ctr_getvalue(struct regval_ctr
*ctr
,
4927 uint32
regval_dword(struct regval_blob
*val
);
4928 char *regval_sz(struct regval_blob
*val
);
4930 /* The following definitions come from registry/reg_perfcount.c */
4932 void perfcount_init_keys( void );
4933 uint32
reg_perfcount_get_base_index(void);
4934 uint32
reg_perfcount_get_last_counter(uint32 base_index
);
4935 uint32
reg_perfcount_get_last_help(uint32 last_counter
);
4936 uint32
reg_perfcount_get_counter_help(uint32 base_index
, char **retbuf
);
4937 uint32
reg_perfcount_get_counter_names(uint32 base_index
, char **retbuf
);
4938 bool _reg_perfcount_get_counter_data(TDB_DATA key
, TDB_DATA
*data
);
4939 bool _reg_perfcount_get_instance_info(PERF_INSTANCE_DEFINITION
*inst
,
4942 PERF_OBJECT_TYPE
*obj
,
4943 TDB_CONTEXT
*names
);
4944 bool _reg_perfcount_add_instance(PERF_OBJECT_TYPE
*obj
,
4947 TDB_CONTEXT
*names
);
4948 uint32
reg_perfcount_get_perf_data_block(uint32 base_index
,
4950 PERF_DATA_BLOCK
*block
,
4951 const char *object_ids
);
4952 WERROR
reg_perfcount_get_hkpd(prs_struct
*ps
, uint32 max_buf_size
, uint32
*outbuf_len
, const char *object_ids
);
4954 /* The following definitions come from registry/reg_util.c */
4956 bool reg_split_path(char *path
, char **base
, char **new_path
);
4957 bool reg_split_key(char *path
, char **base
, char **key
);
4958 char *normalize_reg_path(TALLOC_CTX
*ctx
, const char *keyname
);
4959 void normalize_dbkey(char *key
);
4960 char *reg_remaining_path(TALLOC_CTX
*ctx
, const char *key
);
4961 int regval_convert_multi_sz( uint16
*multi_string
, size_t byte_len
, char ***values
);
4962 size_t regval_build_multi_sz( char **values
, uint16
**buffer
);
4964 /* The following definitions come from registry/reg_util_legacy.c */
4966 WERROR
regkey_open_internal( TALLOC_CTX
*ctx
, REGISTRY_KEY
**regkey
,
4968 const struct nt_user_token
*token
,
4969 uint32 access_desired
);
4971 /* The following definitions come from registry/regfio.c */
4974 /* The following definitions come from rpc_client/cli_lsarpc.c */
4976 NTSTATUS
rpccli_lsa_open_policy(struct rpc_pipe_client
*cli
,
4977 TALLOC_CTX
*mem_ctx
,
4978 bool sec_qos
, uint32 des_access
,
4979 struct policy_handle
*pol
);
4980 NTSTATUS
rpccli_lsa_open_policy2(struct rpc_pipe_client
*cli
,
4981 TALLOC_CTX
*mem_ctx
, bool sec_qos
,
4982 uint32 des_access
, struct policy_handle
*pol
);
4983 NTSTATUS
rpccli_lsa_lookup_sids(struct rpc_pipe_client
*cli
,
4984 TALLOC_CTX
*mem_ctx
,
4985 struct policy_handle
*pol
,
4987 const DOM_SID
*sids
,
4990 enum lsa_SidType
**ptypes
);
4991 NTSTATUS
rpccli_lsa_lookup_names(struct rpc_pipe_client
*cli
,
4992 TALLOC_CTX
*mem_ctx
,
4993 struct policy_handle
*pol
, int num_names
,
4995 const char ***dom_names
,
4998 enum lsa_SidType
**types
);
4999 bool fetch_domain_sid( char *domain
, char *remote_machine
, DOM_SID
*psid
);
5001 /* The following definitions come from rpc_client/cli_netlogon.c */
5003 NTSTATUS
rpccli_netlogon_setup_creds(struct rpc_pipe_client
*cli
,
5004 const char *server_name
,
5006 const char *clnt_name
,
5007 const char *machine_account
,
5008 const unsigned char machine_pwd
[16],
5009 enum netr_SchannelType sec_chan_type
,
5010 uint32_t *neg_flags_inout
);
5011 NTSTATUS
rpccli_netlogon_sam_logon(struct rpc_pipe_client
*cli
,
5012 TALLOC_CTX
*mem_ctx
,
5013 uint32 logon_parameters
,
5015 const char *username
,
5016 const char *password
,
5017 const char *workstation
,
5019 NTSTATUS
rpccli_netlogon_sam_network_logon(struct rpc_pipe_client
*cli
,
5020 TALLOC_CTX
*mem_ctx
,
5021 uint32 logon_parameters
,
5023 const char *username
,
5025 const char *workstation
,
5026 const uint8 chal
[8],
5027 DATA_BLOB lm_response
,
5028 DATA_BLOB nt_response
,
5029 struct netr_SamInfo3
**info3
);
5030 NTSTATUS
rpccli_netlogon_sam_network_logon_ex(struct rpc_pipe_client
*cli
,
5031 TALLOC_CTX
*mem_ctx
,
5032 uint32 logon_parameters
,
5034 const char *username
,
5036 const char *workstation
,
5037 const uint8 chal
[8],
5038 DATA_BLOB lm_response
,
5039 DATA_BLOB nt_response
,
5040 struct netr_SamInfo3
**info3
);
5041 NTSTATUS
rpccli_netlogon_set_trust_password(struct rpc_pipe_client
*cli
,
5042 TALLOC_CTX
*mem_ctx
,
5043 const unsigned char orig_trust_passwd_hash
[16],
5044 const char *new_trust_pwd_cleartext
,
5045 const unsigned char new_trust_passwd_hash
[16],
5046 uint32_t sec_channel_type
);
5048 /* The following definitions come from rpc_client/cli_pipe.c */
5050 struct tevent_req
*rpc_api_pipe_req_send(TALLOC_CTX
*mem_ctx
,
5051 struct event_context
*ev
,
5052 struct rpc_pipe_client
*cli
,
5054 prs_struct
*req_data
);
5055 NTSTATUS
rpc_api_pipe_req_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
5056 prs_struct
*reply_pdu
);
5057 NTSTATUS
rpc_api_pipe_req(TALLOC_CTX
*mem_ctx
, struct rpc_pipe_client
*cli
,
5059 prs_struct
*in_data
,
5060 prs_struct
*out_data
);
5061 struct tevent_req
*rpc_pipe_bind_send(TALLOC_CTX
*mem_ctx
,
5062 struct event_context
*ev
,
5063 struct rpc_pipe_client
*cli
,
5064 struct cli_pipe_auth_data
*auth
);
5065 NTSTATUS
rpc_pipe_bind_recv(struct tevent_req
*req
);
5066 NTSTATUS
rpc_pipe_bind(struct rpc_pipe_client
*cli
,
5067 struct cli_pipe_auth_data
*auth
);
5068 unsigned int rpccli_set_timeout(struct rpc_pipe_client
*cli
,
5069 unsigned int timeout
);
5070 bool rpccli_get_pwd_hash(struct rpc_pipe_client
*cli
, uint8_t nt_hash
[16]);
5071 NTSTATUS
rpccli_anon_bind_data(TALLOC_CTX
*mem_ctx
,
5072 struct cli_pipe_auth_data
**presult
);
5073 NTSTATUS
rpccli_ntlmssp_bind_data(TALLOC_CTX
*mem_ctx
,
5074 enum pipe_auth_type auth_type
,
5075 enum pipe_auth_level auth_level
,
5077 const char *username
,
5078 const char *password
,
5079 struct cli_pipe_auth_data
**presult
);
5080 NTSTATUS
rpccli_schannel_bind_data(TALLOC_CTX
*mem_ctx
, const char *domain
,
5081 enum pipe_auth_level auth_level
,
5082 const uint8_t sess_key
[16],
5083 struct cli_pipe_auth_data
**presult
);
5084 NTSTATUS
rpccli_kerberos_bind_data(TALLOC_CTX
*mem_ctx
,
5085 enum pipe_auth_level auth_level
,
5086 const char *service_princ
,
5087 const char *username
,
5088 const char *password
,
5089 struct cli_pipe_auth_data
**presult
);
5090 NTSTATUS
rpc_pipe_open_tcp(TALLOC_CTX
*mem_ctx
, const char *host
,
5091 const struct ndr_syntax_id
*abstract_syntax
,
5092 struct rpc_pipe_client
**presult
);
5093 NTSTATUS
rpc_pipe_open_ncalrpc(TALLOC_CTX
*mem_ctx
, const char *socket_path
,
5094 const struct ndr_syntax_id
*abstract_syntax
,
5095 struct rpc_pipe_client
**presult
);
5096 NTSTATUS
rpc_pipe_open_internal(TALLOC_CTX
*mem_ctx
, const struct ndr_syntax_id
*abstract_syntax
,
5097 NTSTATUS (*dispatch
) (struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
, const struct ndr_interface_table
*table
, uint32_t opnum
, void *r
),
5098 struct auth_serversupplied_info
*serversupplied_info
,
5099 struct rpc_pipe_client
**presult
);
5100 NTSTATUS
cli_rpc_pipe_open_noauth(struct cli_state
*cli
,
5101 const struct ndr_syntax_id
*interface
,
5102 struct rpc_pipe_client
**presult
);
5103 NTSTATUS
cli_rpc_pipe_open_ntlmssp(struct cli_state
*cli
,
5104 const struct ndr_syntax_id
*interface
,
5105 enum pipe_auth_level auth_level
,
5107 const char *username
,
5108 const char *password
,
5109 struct rpc_pipe_client
**presult
);
5110 NTSTATUS
cli_rpc_pipe_open_spnego_ntlmssp(struct cli_state
*cli
,
5111 const struct ndr_syntax_id
*interface
,
5112 enum pipe_auth_level auth_level
,
5114 const char *username
,
5115 const char *password
,
5116 struct rpc_pipe_client
**presult
);
5117 NTSTATUS
get_schannel_session_key(struct cli_state
*cli
,
5120 struct rpc_pipe_client
**presult
);
5121 NTSTATUS
cli_rpc_pipe_open_schannel_with_key(struct cli_state
*cli
,
5122 const struct ndr_syntax_id
*interface
,
5123 enum pipe_auth_level auth_level
,
5125 struct netlogon_creds_CredentialState
**pdc
,
5126 struct rpc_pipe_client
**presult
);
5127 NTSTATUS
cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state
*cli
,
5128 const struct ndr_syntax_id
*interface
,
5129 enum pipe_auth_level auth_level
,
5131 const char *username
,
5132 const char *password
,
5133 struct rpc_pipe_client
**presult
);
5134 NTSTATUS
cli_rpc_pipe_open_schannel(struct cli_state
*cli
,
5135 const struct ndr_syntax_id
*interface
,
5136 enum pipe_auth_level auth_level
,
5138 struct rpc_pipe_client
**presult
);
5139 NTSTATUS
cli_rpc_pipe_open_krb5(struct cli_state
*cli
,
5140 const struct ndr_syntax_id
*interface
,
5141 enum pipe_auth_level auth_level
,
5142 const char *service_princ
,
5143 const char *username
,
5144 const char *password
,
5145 struct rpc_pipe_client
**presult
);
5146 NTSTATUS
cli_get_session_key(TALLOC_CTX
*mem_ctx
,
5147 struct rpc_pipe_client
*cli
,
5148 DATA_BLOB
*session_key
);
5149 NTSTATUS
rpc_pipe_open_local(TALLOC_CTX
*mem_ctx
,
5150 struct rpc_cli_smbd_conn
*conn
,
5151 const struct ndr_syntax_id
*syntax
,
5152 struct rpc_pipe_client
**presult
);
5154 /* The following definitions come from rpc_client/rpc_transport_np.c */
5156 struct tevent_req
*rpc_transport_np_init_send(TALLOC_CTX
*mem_ctx
,
5157 struct event_context
*ev
,
5158 struct cli_state
*cli
,
5159 const struct ndr_syntax_id
*abstract_syntax
);
5160 NTSTATUS
rpc_transport_np_init_recv(struct tevent_req
*req
,
5161 TALLOC_CTX
*mem_ctx
,
5162 struct rpc_cli_transport
**presult
);
5163 NTSTATUS
rpc_transport_np_init(TALLOC_CTX
*mem_ctx
, struct cli_state
*cli
,
5164 const struct ndr_syntax_id
*abstract_syntax
,
5165 struct rpc_cli_transport
**presult
);
5166 struct cli_state
*rpc_pipe_np_smb_conn(struct rpc_pipe_client
*p
);
5168 /* The following definitions come from rpc_client/rpc_transport_smbd.c */
5170 struct tevent_req
*rpc_cli_smbd_conn_init_send(TALLOC_CTX
*mem_ctx
,
5171 struct event_context
*ev
,
5172 void (*stdout_callback
)(char *buf
,
5176 NTSTATUS
rpc_cli_smbd_conn_init_recv(struct tevent_req
*req
,
5177 TALLOC_CTX
*mem_ctx
,
5178 struct rpc_cli_smbd_conn
**pconn
);
5179 NTSTATUS
rpc_cli_smbd_conn_init(TALLOC_CTX
*mem_ctx
,
5180 struct rpc_cli_smbd_conn
**pconn
,
5181 void (*stdout_callback
)(char *buf
,
5186 struct tevent_req
*rpc_transport_smbd_init_send(TALLOC_CTX
*mem_ctx
,
5187 struct event_context
*ev
,
5188 struct rpc_cli_smbd_conn
*conn
,
5189 const struct ndr_syntax_id
*abstract_syntax
);
5190 NTSTATUS
rpc_transport_smbd_init_recv(struct tevent_req
*req
,
5191 TALLOC_CTX
*mem_ctx
,
5192 struct rpc_cli_transport
**presult
);
5193 NTSTATUS
rpc_transport_smbd_init(TALLOC_CTX
*mem_ctx
,
5194 struct rpc_cli_smbd_conn
*conn
,
5195 const struct ndr_syntax_id
*abstract_syntax
,
5196 struct rpc_cli_transport
**presult
);
5198 /* The following definitions come from rpc_client/rpc_transport_sock.c */
5200 NTSTATUS
rpc_transport_sock_init(TALLOC_CTX
*mem_ctx
, int fd
,
5201 struct rpc_cli_transport
**presult
);
5203 /* The following definitions come from rpc_client/cli_reg.c */
5205 NTSTATUS
rpccli_winreg_Connect(struct rpc_pipe_client
*cli
, TALLOC_CTX
*mem_ctx
,
5206 uint32 reg_type
, uint32 access_mask
,
5207 struct policy_handle
*reg_hnd
);
5209 /* The following definitions come from rpc_client/cli_samr.c */
5211 NTSTATUS
rpccli_samr_chgpasswd_user(struct rpc_pipe_client
*cli
,
5212 TALLOC_CTX
*mem_ctx
,
5213 struct policy_handle
*user_handle
,
5214 const char *newpassword
,
5215 const char *oldpassword
);
5216 NTSTATUS
rpccli_samr_chgpasswd_user2(struct rpc_pipe_client
*cli
,
5217 TALLOC_CTX
*mem_ctx
,
5218 const char *username
,
5219 const char *newpassword
,
5220 const char *oldpassword
);
5221 NTSTATUS
rpccli_samr_chng_pswd_auth_crap(struct rpc_pipe_client
*cli
,
5222 TALLOC_CTX
*mem_ctx
,
5223 const char *username
,
5224 DATA_BLOB new_nt_password_blob
,
5225 DATA_BLOB old_nt_hash_enc_blob
,
5226 DATA_BLOB new_lm_password_blob
,
5227 DATA_BLOB old_lm_hash_enc_blob
);
5228 NTSTATUS
rpccli_samr_chgpasswd_user3(struct rpc_pipe_client
*cli
,
5229 TALLOC_CTX
*mem_ctx
,
5230 const char *username
,
5231 const char *newpassword
,
5232 const char *oldpassword
,
5233 struct samr_DomInfo1
**dominfo1
,
5234 struct samr_ChangeReject
**reject
);
5235 void get_query_dispinfo_params(int loop_count
, uint32
*max_entries
,
5237 NTSTATUS
rpccli_try_samr_connects(struct rpc_pipe_client
*cli
,
5238 TALLOC_CTX
*mem_ctx
,
5239 uint32_t access_mask
,
5240 struct policy_handle
*connect_pol
);
5242 /* The following definitions come from rpc_client/cli_spoolss.c */
5244 WERROR
rpccli_spoolss_openprinter_ex(struct rpc_pipe_client
*cli
,
5245 TALLOC_CTX
*mem_ctx
,
5246 const char *printername
,
5247 uint32_t access_desired
,
5248 struct policy_handle
*handle
);
5249 WERROR
rpccli_spoolss_getprinterdriver2(struct rpc_pipe_client
*cli
,
5250 TALLOC_CTX
*mem_ctx
,
5251 struct policy_handle
*handle
,
5252 const char *architecture
,
5255 uint32_t client_major_version
,
5256 uint32_t client_minor_version
,
5257 union spoolss_DriverInfo
*info
,
5258 uint32_t *server_major_version
,
5259 uint32_t *server_minor_version
);
5260 WERROR
rpccli_spoolss_addprinterex(struct rpc_pipe_client
*cli
,
5261 TALLOC_CTX
*mem_ctx
,
5262 struct spoolss_SetPrinterInfoCtr
*info_ctr
);
5263 WERROR
rpccli_spoolss_getprinter(struct rpc_pipe_client
*cli
,
5264 TALLOC_CTX
*mem_ctx
,
5265 struct policy_handle
*handle
,
5268 union spoolss_PrinterInfo
*info
);
5269 WERROR
rpccli_spoolss_getjob(struct rpc_pipe_client
*cli
,
5270 TALLOC_CTX
*mem_ctx
,
5271 struct policy_handle
*handle
,
5275 union spoolss_JobInfo
*info
);
5276 WERROR
rpccli_spoolss_enumforms(struct rpc_pipe_client
*cli
,
5277 TALLOC_CTX
*mem_ctx
,
5278 struct policy_handle
*handle
,
5282 union spoolss_FormInfo
**info
);
5283 WERROR
rpccli_spoolss_enumprintprocessors(struct rpc_pipe_client
*cli
,
5284 TALLOC_CTX
*mem_ctx
,
5285 const char *servername
,
5286 const char *environment
,
5290 union spoolss_PrintProcessorInfo
**info
);
5291 WERROR
rpccli_spoolss_enumprintprocessordatatypes(struct rpc_pipe_client
*cli
,
5292 TALLOC_CTX
*mem_ctx
,
5293 const char *servername
,
5294 const char *print_processor_name
,
5298 union spoolss_PrintProcDataTypesInfo
**info
);
5299 WERROR
rpccli_spoolss_enumports(struct rpc_pipe_client
*cli
,
5300 TALLOC_CTX
*mem_ctx
,
5301 const char *servername
,
5305 union spoolss_PortInfo
**info
);
5306 WERROR
rpccli_spoolss_enummonitors(struct rpc_pipe_client
*cli
,
5307 TALLOC_CTX
*mem_ctx
,
5308 const char *servername
,
5312 union spoolss_MonitorInfo
**info
);
5313 WERROR
rpccli_spoolss_enumjobs(struct rpc_pipe_client
*cli
,
5314 TALLOC_CTX
*mem_ctx
,
5315 struct policy_handle
*handle
,
5321 union spoolss_JobInfo
**info
);
5322 WERROR
rpccli_spoolss_enumprinterdrivers(struct rpc_pipe_client
*cli
,
5323 TALLOC_CTX
*mem_ctx
,
5325 const char *environment
,
5329 union spoolss_DriverInfo
**info
);
5330 WERROR
rpccli_spoolss_enumprinters(struct rpc_pipe_client
*cli
,
5331 TALLOC_CTX
*mem_ctx
,
5337 union spoolss_PrinterInfo
**info
);
5338 WERROR
rpccli_spoolss_getprinterdata(struct rpc_pipe_client
*cli
,
5339 TALLOC_CTX
*mem_ctx
,
5340 struct policy_handle
*handle
,
5341 const char *value_name
,
5343 enum winreg_Type
*type
,
5344 union spoolss_PrinterData
*data
);
5345 WERROR
rpccli_spoolss_enumprinterkey(struct rpc_pipe_client
*cli
,
5346 TALLOC_CTX
*mem_ctx
,
5347 struct policy_handle
*handle
,
5348 const char *key_name
,
5349 const char ***key_buffer
,
5351 WERROR
rpccli_spoolss_enumprinterdataex(struct rpc_pipe_client
*cli
,
5352 TALLOC_CTX
*mem_ctx
,
5353 struct policy_handle
*handle
,
5354 const char *key_name
,
5357 struct spoolss_PrinterEnumValues
**info
);
5359 /* The following definitions come from rpc_client/init_spoolss.c */
5361 bool init_systemtime(struct spoolss_Time
*r
,
5362 struct tm
*unixtime
);
5363 WERROR
pull_spoolss_PrinterData(TALLOC_CTX
*mem_ctx
,
5364 const DATA_BLOB
*blob
,
5365 union spoolss_PrinterData
*data
,
5366 enum winreg_Type type
);
5367 WERROR
push_spoolss_PrinterData(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
,
5368 enum winreg_Type type
,
5369 union spoolss_PrinterData
*data
);
5371 /* The following definitions come from rpc_client/init_lsa.c */
5373 void init_lsa_String(struct lsa_String
*name
, const char *s
);
5374 void init_lsa_StringLarge(struct lsa_StringLarge
*name
, const char *s
);
5375 void init_lsa_AsciiString(struct lsa_AsciiString
*name
, const char *s
);
5376 void init_lsa_AsciiStringLarge(struct lsa_AsciiStringLarge
*name
, const char *s
);
5378 /* The following definitions come from rpc_client/init_netlogon.c */
5380 void init_netr_SamBaseInfo(struct netr_SamBaseInfo
*r
,
5384 NTTIME last_password_change
,
5385 NTTIME allow_password_change
,
5386 NTTIME force_password_change
,
5387 const char *account_name
,
5388 const char *full_name
,
5389 const char *logon_script
,
5390 const char *profile_path
,
5391 const char *home_directory
,
5392 const char *home_drive
,
5393 uint16_t logon_count
,
5394 uint16_t bad_password_count
,
5396 uint32_t primary_gid
,
5397 struct samr_RidWithAttributeArray groups
,
5398 uint32_t user_flags
,
5399 struct netr_UserSessionKey key
,
5400 const char *logon_server
,
5402 struct dom_sid2
*domain_sid
,
5403 struct netr_LMSessionKey LMSessKey
,
5404 uint32_t acct_flags
);
5405 void init_netr_SamInfo3(struct netr_SamInfo3
*r
,
5409 NTTIME last_password_change
,
5410 NTTIME allow_password_change
,
5411 NTTIME force_password_change
,
5412 const char *account_name
,
5413 const char *full_name
,
5414 const char *logon_script
,
5415 const char *profile_path
,
5416 const char *home_directory
,
5417 const char *home_drive
,
5418 uint16_t logon_count
,
5419 uint16_t bad_password_count
,
5421 uint32_t primary_gid
,
5422 struct samr_RidWithAttributeArray groups
,
5423 uint32_t user_flags
,
5424 struct netr_UserSessionKey key
,
5425 const char *logon_server
,
5427 struct dom_sid2
*domain_sid
,
5428 struct netr_LMSessionKey LMSessKey
,
5429 uint32_t acct_flags
,
5431 struct netr_SidAttr
*sids
);
5432 NTSTATUS
serverinfo_to_SamInfo3(struct auth_serversupplied_info
*server_info
,
5433 uint8_t *pipe_session_key
,
5434 size_t pipe_session_key_len
,
5435 struct netr_SamInfo3
*sam3
);
5436 void init_netr_IdentityInfo(struct netr_IdentityInfo
*r
,
5437 const char *domain_name
,
5438 uint32_t parameter_control
,
5439 uint32_t logon_id_low
,
5440 uint32_t logon_id_high
,
5441 const char *account_name
,
5442 const char *workstation
);
5443 void init_netr_NetworkInfo(struct netr_NetworkInfo
*r
,
5444 const char *domain_name
,
5445 uint32_t parameter_control
,
5446 uint32_t logon_id_low
,
5447 uint32_t logon_id_high
,
5448 const char *account_name
,
5449 const char *workstation
,
5450 uint8_t challenge
[8],
5451 struct netr_ChallengeResponse nt
,
5452 struct netr_ChallengeResponse lm
);
5453 void init_netr_PasswordInfo(struct netr_PasswordInfo
*r
,
5454 const char *domain_name
,
5455 uint32_t parameter_control
,
5456 uint32_t logon_id_low
,
5457 uint32_t logon_id_high
,
5458 const char *account_name
,
5459 const char *workstation
,
5460 struct samr_Password lmpassword
,
5461 struct samr_Password ntpassword
);
5462 void init_netr_CryptPassword(const char *pwd
,
5463 unsigned char session_key
[16],
5464 struct netr_CryptPassword
*pwd_buf
);
5466 /* The following definitions come from rpc_client/init_samr.c */
5468 void init_samr_CryptPasswordEx(const char *pwd
,
5469 DATA_BLOB
*session_key
,
5470 struct samr_CryptPasswordEx
*pwd_buf
);
5471 void init_samr_CryptPassword(const char *pwd
,
5472 DATA_BLOB
*session_key
,
5473 struct samr_CryptPassword
*pwd_buf
);
5475 /* The following definitions come from rpc_client/ndr.c */
5477 NTSTATUS
cli_do_rpc_ndr(struct rpc_pipe_client
*cli
,
5478 TALLOC_CTX
*mem_ctx
,
5479 const struct ndr_interface_table
*table
,
5480 uint32 opnum
, void *r
);
5482 /* The following definitions come from rpc_parse/parse_misc.c */
5484 bool smb_io_time(const char *desc
, NTTIME
*nttime
, prs_struct
*ps
, int depth
);
5485 bool smb_io_system_time(const char *desc
, prs_struct
*ps
, int depth
, SYSTEMTIME
*systime
);
5486 bool make_systemtime(SYSTEMTIME
*systime
, struct tm
*unixtime
);
5487 bool smb_io_uuid(const char *desc
, struct GUID
*uuid
,
5488 prs_struct
*ps
, int depth
);
5489 void init_unistr2(UNISTR2
*str
, const char *buf
, enum unistr2_term_codes flags
);
5491 /* The following definitions come from rpc_parse/parse_prs.c */
5493 void prs_dump(const char *name
, int v
, prs_struct
*ps
);
5494 void prs_dump_before(const char *name
, int v
, prs_struct
*ps
);
5495 void prs_dump_region(const char *name
, int v
, prs_struct
*ps
,
5496 int from_off
, int to_off
);
5497 void prs_debug(prs_struct
*ps
, int depth
, const char *desc
, const char *fn_name
);
5498 bool prs_init(prs_struct
*ps
, uint32 size
, TALLOC_CTX
*ctx
, bool io
);
5499 void prs_mem_free(prs_struct
*ps
);
5500 void prs_mem_clear(prs_struct
*ps
);
5501 char *prs_alloc_mem_(prs_struct
*ps
, size_t size
, unsigned int count
);
5502 char *prs_alloc_mem(prs_struct
*ps
, size_t size
, unsigned int count
);
5503 TALLOC_CTX
*prs_get_mem_context(prs_struct
*ps
);
5504 void prs_give_memory(prs_struct
*ps
, char *buf
, uint32 size
, bool is_dynamic
);
5505 char *prs_take_memory(prs_struct
*ps
, uint32
*psize
);
5506 bool prs_set_buffer_size(prs_struct
*ps
, uint32 newsize
);
5507 bool prs_grow(prs_struct
*ps
, uint32 extra_space
);
5508 bool prs_force_grow(prs_struct
*ps
, uint32 extra_space
);
5509 char *prs_data_p(prs_struct
*ps
);
5510 uint32
prs_data_size(prs_struct
*ps
);
5511 uint32
prs_offset(prs_struct
*ps
);
5512 bool prs_set_offset(prs_struct
*ps
, uint32 offset
);
5513 bool prs_append_prs_data(prs_struct
*dst
, prs_struct
*src
);
5514 bool prs_append_some_data(prs_struct
*dst
, void *src_base
, uint32_t start
,
5516 bool prs_append_some_prs_data(prs_struct
*dst
, prs_struct
*src
, int32 start
, uint32 len
);
5517 bool prs_copy_data_in(prs_struct
*dst
, const char *src
, uint32 len
);
5518 bool prs_copy_data_out(char *dst
, prs_struct
*src
, uint32 len
);
5519 bool prs_copy_all_data_out(char *dst
, prs_struct
*src
);
5520 void prs_set_endian_data(prs_struct
*ps
, bool endian
);
5521 bool prs_align(prs_struct
*ps
);
5522 bool prs_align_uint16(prs_struct
*ps
);
5523 bool prs_align_uint64(prs_struct
*ps
);
5524 bool prs_align_custom(prs_struct
*ps
, uint8 boundary
);
5525 bool prs_align_needed(prs_struct
*ps
, uint32 needed
);
5526 char *prs_mem_get(prs_struct
*ps
, uint32 extra_size
);
5527 void prs_switch_type(prs_struct
*ps
, bool io
);
5528 void prs_force_dynamic(prs_struct
*ps
);
5529 void prs_set_session_key(prs_struct
*ps
, const char sess_key
[16]);
5530 bool prs_uint8(const char *name
, prs_struct
*ps
, int depth
, uint8
*data8
);
5531 bool prs_pointer( const char *name
, prs_struct
*ps
, int depth
,
5532 void *dta
, size_t data_size
,
5533 bool (*prs_fn
)(const char*, prs_struct
*, int, void*) );
5534 bool prs_uint16(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
);
5535 bool prs_uint32(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
);
5536 bool prs_int32(const char *name
, prs_struct
*ps
, int depth
, int32
*data32
);
5537 bool prs_uint64(const char *name
, prs_struct
*ps
, int depth
, uint64
*data64
);
5538 bool prs_ntstatus(const char *name
, prs_struct
*ps
, int depth
, NTSTATUS
*status
);
5539 bool prs_dcerpc_status(const char *name
, prs_struct
*ps
, int depth
, NTSTATUS
*status
);
5540 bool prs_werror(const char *name
, prs_struct
*ps
, int depth
, WERROR
*status
);
5541 bool prs_uint8s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint8
*data8s
, int len
);
5542 bool prs_uint16s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint16
*data16s
, int len
);
5543 bool prs_uint16uni(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint16
*data16s
, int len
);
5544 bool prs_uint32s(bool charmode
, const char *name
, prs_struct
*ps
, int depth
, uint32
*data32s
, int len
);
5545 bool prs_unistr(const char *name
, prs_struct
*ps
, int depth
, UNISTR
*str
);
5546 bool prs_string(const char *name
, prs_struct
*ps
, int depth
, char *str
, int max_buf_size
);
5547 bool prs_string_alloc(const char *name
, prs_struct
*ps
, int depth
, const char **str
);
5548 bool prs_uint16_pre(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
, uint32
*offset
);
5549 bool prs_uint16_post(const char *name
, prs_struct
*ps
, int depth
, uint16
*data16
,
5550 uint32 ptr_uint16
, uint32 start_offset
);
5551 bool prs_uint32_pre(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
, uint32
*offset
);
5552 bool prs_uint32_post(const char *name
, prs_struct
*ps
, int depth
, uint32
*data32
,
5553 uint32 ptr_uint32
, uint32 data_size
);
5554 int tdb_prs_store(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, prs_struct
*ps
);
5555 int tdb_prs_fetch(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, prs_struct
*ps
, TALLOC_CTX
*mem_ctx
);
5556 bool prs_hash1(prs_struct
*ps
, uint32 offset
, int len
);
5557 void schannel_encode(struct schannel_auth_struct
*a
, enum pipe_auth_level auth_level
,
5558 enum schannel_direction direction
,
5559 RPC_AUTH_SCHANNEL_CHK
* verf
,
5560 char *data
, size_t data_len
);
5561 bool schannel_decode(struct schannel_auth_struct
*a
, enum pipe_auth_level auth_level
,
5562 enum schannel_direction direction
,
5563 RPC_AUTH_SCHANNEL_CHK
* verf
, char *data
, size_t data_len
);
5564 bool prs_init_data_blob(prs_struct
*prs
, DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
);
5565 bool prs_data_blob(prs_struct
*prs
, DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
);
5567 /* The following definitions come from rpc_parse/parse_rpc.c */
5569 const char *get_pipe_name_from_iface(const struct ndr_syntax_id
*interface
);
5570 void init_rpc_hdr(RPC_HDR
*hdr
, enum RPC_PKT_TYPE pkt_type
, uint8 flags
,
5571 uint32 call_id
, int data_len
, int auth_len
);
5572 bool smb_io_rpc_hdr(const char *desc
, RPC_HDR
*rpc
, prs_struct
*ps
, int depth
);
5573 void init_rpc_context(RPC_CONTEXT
*rpc_ctx
, uint16 context_id
,
5574 const RPC_IFACE
*abstract
, const RPC_IFACE
*transfer
);
5575 void init_rpc_hdr_rb(RPC_HDR_RB
*rpc
,
5576 uint16 max_tsize
, uint16 max_rsize
, uint32 assoc_gid
,
5577 RPC_CONTEXT
*context
);
5578 bool smb_io_rpc_context(const char *desc
, RPC_CONTEXT
*rpc_ctx
, prs_struct
*ps
, int depth
);
5579 bool smb_io_rpc_hdr_rb(const char *desc
, RPC_HDR_RB
*rpc
, prs_struct
*ps
, int depth
);
5580 void init_rpc_hdr_ba(RPC_HDR_BA
*rpc
,
5581 uint16 max_tsize
, uint16 max_rsize
, uint32 assoc_gid
,
5582 const char *pipe_addr
,
5583 uint8 num_results
, uint16 result
, uint16 reason
,
5584 RPC_IFACE
*transfer
);
5585 bool smb_io_rpc_hdr_ba(const char *desc
, RPC_HDR_BA
*rpc
, prs_struct
*ps
, int depth
);
5586 void init_rpc_hdr_req(RPC_HDR_REQ
*hdr
, uint32 alloc_hint
, uint16 opnum
);
5587 bool smb_io_rpc_hdr_req(const char *desc
, RPC_HDR_REQ
*rpc
, prs_struct
*ps
, int depth
);
5588 bool smb_io_rpc_hdr_resp(const char *desc
, RPC_HDR_RESP
*rpc
, prs_struct
*ps
, int depth
);
5589 bool smb_io_rpc_hdr_fault(const char *desc
, RPC_HDR_FAULT
*rpc
, prs_struct
*ps
, int depth
);
5590 void init_rpc_hdr_auth(RPC_HDR_AUTH
*rai
,
5591 uint8 auth_type
, uint8 auth_level
,
5593 uint32 auth_context_id
);
5594 bool smb_io_rpc_hdr_auth(const char *desc
, RPC_HDR_AUTH
*rai
, prs_struct
*ps
, int depth
);
5595 bool rpc_auth_verifier_chk(RPC_AUTH_VERIFIER
*rav
,
5596 const char *signature
, uint32 msg_type
);
5597 void init_rpc_auth_verifier(RPC_AUTH_VERIFIER
*rav
,
5598 const char *signature
, uint32 msg_type
);
5599 bool smb_io_rpc_auth_verifier(const char *desc
, RPC_AUTH_VERIFIER
*rav
, prs_struct
*ps
, int depth
);
5600 bool smb_io_rpc_schannel_verifier(const char *desc
, RPC_AUTH_VERIFIER
*rav
, prs_struct
*ps
, int depth
);
5601 void init_rpc_auth_schannel_neg(RPC_AUTH_SCHANNEL_NEG
*neg
,
5602 const char *domain
, const char *myname
);
5603 bool smb_io_rpc_auth_schannel_neg(const char *desc
, RPC_AUTH_SCHANNEL_NEG
*neg
,
5604 prs_struct
*ps
, int depth
);
5605 bool smb_io_rpc_auth_schannel_chk(const char *desc
, int auth_len
,
5606 RPC_AUTH_SCHANNEL_CHK
* chk
,
5607 prs_struct
*ps
, int depth
);
5609 /* The following definitions come from lib/eventlog/eventlog.c */
5611 TDB_CONTEXT
*elog_init_tdb( char *tdbfilename
);
5612 char *elog_tdbname(TALLOC_CTX
*ctx
, const char *name
);
5613 int elog_tdb_size( TDB_CONTEXT
* tdb
, int *MaxSize
, int *Retention
);
5614 bool prune_eventlog( TDB_CONTEXT
* tdb
);
5615 ELOG_TDB
*elog_open_tdb( const char *logname
, bool force_clear
, bool read_only
);
5616 int elog_close_tdb( ELOG_TDB
*etdb
, bool force_close
);
5617 bool parse_logentry( TALLOC_CTX
*mem_ctx
, char *line
, struct eventlog_Record_tdb
*entry
, bool * eor
);
5618 size_t fixup_eventlog_record_tdb(struct eventlog_Record_tdb
*r
);
5619 struct eventlog_Record_tdb
*evlog_pull_record_tdb(TALLOC_CTX
*mem_ctx
,
5621 uint32_t record_number
);
5622 NTSTATUS
evlog_push_record_tdb(TALLOC_CTX
*mem_ctx
,
5624 struct eventlog_Record_tdb
*r
,
5625 uint32_t *record_number
);
5626 NTSTATUS
evlog_push_record(TALLOC_CTX
*mem_ctx
,
5628 struct EVENTLOGRECORD
*r
,
5629 uint32_t *record_number
);
5630 struct EVENTLOGRECORD
*evlog_pull_record(TALLOC_CTX
*mem_ctx
,
5632 uint32_t record_number
);
5633 NTSTATUS
evlog_evt_entry_to_tdb_entry(TALLOC_CTX
*mem_ctx
,
5634 const struct EVENTLOGRECORD
*e
,
5635 struct eventlog_Record_tdb
*t
);
5636 NTSTATUS
evlog_tdb_entry_to_evt_entry(TALLOC_CTX
*mem_ctx
,
5637 const struct eventlog_Record_tdb
*t
,
5638 struct EVENTLOGRECORD
*e
);
5639 NTSTATUS
evlog_convert_tdb_to_evt(TALLOC_CTX
*mem_ctx
,
5642 uint32_t *num_records_p
);
5644 /* The following definitions come from rpc_server/srv_eventlog_nt.c */
5646 /* The following definitions come from rpc_server/srv_lsa_hnd.c */
5648 size_t num_pipe_handles(struct handle_list
*list
);
5649 bool init_pipe_handle_list(pipes_struct
*p
,
5650 const struct ndr_syntax_id
*syntax
);
5651 bool create_policy_hnd(pipes_struct
*p
, struct policy_handle
*hnd
, void *data_ptr
);
5652 bool find_policy_by_hnd(pipes_struct
*p
, const struct policy_handle
*hnd
,
5654 bool close_policy_hnd(pipes_struct
*p
, struct policy_handle
*hnd
);
5655 void close_policy_by_pipe(pipes_struct
*p
);
5656 bool pipe_access_check(pipes_struct
*p
);
5658 void *_policy_handle_create(struct pipes_struct
*p
, struct policy_handle
*hnd
,
5659 uint32_t access_granted
, size_t data_size
,
5660 const char *type
, NTSTATUS
*pstatus
);
5661 #define policy_handle_create(_p, _hnd, _access, _type, _pstatus) \
5662 (_type *)_policy_handle_create((_p), (_hnd), (_access), sizeof(_type), #_type, \
5665 void *_policy_handle_find(struct pipes_struct
*p
,
5666 const struct policy_handle
*hnd
,
5667 uint32_t access_required
, uint32_t *paccess_granted
,
5668 const char *name
, const char *location
,
5670 #define policy_handle_find(_p, _hnd, _access_required, _access_granted, _type, _pstatus) \
5671 (_type *)_policy_handle_find((_p), (_hnd), (_access_required), \
5672 (_access_granted), #_type, __location__, (_pstatus))
5675 /* The following definitions come from rpc_server/srv_pipe.c */
5677 bool create_next_pdu(pipes_struct
*p
);
5678 bool api_pipe_bind_auth3(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5679 bool setup_fault_pdu(pipes_struct
*p
, NTSTATUS status
);
5680 bool setup_cancel_ack_reply(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5681 bool check_bind_req(struct pipes_struct
*p
, RPC_IFACE
* abstract
,
5682 RPC_IFACE
* transfer
, uint32 context_id
);
5683 NTSTATUS
rpc_pipe_register_commands(int version
, const char *clnt
,
5685 const struct ndr_syntax_id
*interface
,
5686 const struct api_struct
*cmds
, int size
);
5687 NTSTATUS
rpc_srv_register(int version
, const char *clnt
,
5689 const struct ndr_interface_table
*iface
,
5690 const struct api_struct
*cmds
, int size
);
5691 bool is_known_pipename(const char *cli_filename
, struct ndr_syntax_id
*syntax
);
5692 bool api_pipe_bind_req(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5693 bool api_pipe_alter_context(pipes_struct
*p
, prs_struct
*rpc_in_p
);
5694 bool api_pipe_ntlmssp_auth_process(pipes_struct
*p
, prs_struct
*rpc_in
,
5695 uint32
*p_ss_padding_len
, NTSTATUS
*pstatus
);
5696 bool api_pipe_schannel_process(pipes_struct
*p
, prs_struct
*rpc_in
, uint32
*p_ss_padding_len
);
5697 void free_pipe_rpc_context( PIPE_RPC_FNS
*list
);
5698 bool api_pipe_request(pipes_struct
*p
);
5700 /* The following definitions come from rpc_server/srv_pipe_hnd.c */
5702 pipes_struct
*get_first_internal_pipe(void);
5703 pipes_struct
*get_next_internal_pipe(pipes_struct
*p
);
5705 bool fsp_is_np(struct files_struct
*fsp
);
5706 NTSTATUS
np_open(TALLOC_CTX
*mem_ctx
, const char *name
,
5707 const char *client_address
,
5708 struct auth_serversupplied_info
*server_info
,
5709 struct fake_file_handle
**phandle
);
5710 struct tevent_req
*np_write_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
5711 struct fake_file_handle
*handle
,
5712 const uint8_t *data
, size_t len
);
5713 NTSTATUS
np_write_recv(struct tevent_req
*req
, ssize_t
*pnwritten
);
5714 struct tevent_req
*np_read_send(TALLOC_CTX
*mem_ctx
, struct event_context
*ev
,
5715 struct fake_file_handle
*handle
,
5716 uint8_t *data
, size_t len
);
5717 NTSTATUS
np_read_recv(struct tevent_req
*req
, ssize_t
*nread
,
5718 bool *is_data_outstanding
);
5720 /* The following definitions come from rpc_server/srv_samr_util.c */
5722 void copy_id18_to_sam_passwd(struct samu
*to
,
5723 struct samr_UserInfo18
*from
);
5724 void copy_id20_to_sam_passwd(struct samu
*to
,
5725 struct samr_UserInfo20
*from
);
5726 void copy_id21_to_sam_passwd(const char *log_prefix
,
5728 struct samr_UserInfo21
*from
);
5729 void copy_id23_to_sam_passwd(struct samu
*to
,
5730 struct samr_UserInfo23
*from
);
5731 void copy_id24_to_sam_passwd(struct samu
*to
,
5732 struct samr_UserInfo24
*from
);
5733 void copy_id25_to_sam_passwd(struct samu
*to
,
5734 struct samr_UserInfo25
*from
);
5735 void copy_id26_to_sam_passwd(struct samu
*to
,
5736 struct samr_UserInfo26
*from
);
5738 /* The following definitions come from rpc_server/srv_spoolss_nt.c */
5740 WERROR
delete_printer_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, const char *sharename
);
5741 void do_drv_upgrade_printer(struct messaging_context
*msg
,
5744 struct server_id server_id
,
5746 void update_monitored_printq_cache( void );
5747 void reset_all_printerdata(struct messaging_context
*msg
,
5750 struct server_id server_id
,
5752 bool convert_devicemode(const char *printername
,
5753 const struct spoolss_DeviceMode
*devmode
,
5754 NT_DEVICEMODE
**pp_nt_devmode
);
5755 WERROR
set_printer_dataex(NT_PRINTER_INFO_LEVEL
*printer
,
5756 const char *key
, const char *value
,
5757 uint32_t type
, uint8_t *data
, int real_len
);
5758 void spoolss_notify_server_name(int snum
,
5759 struct spoolss_Notify
*data
,
5760 print_queue_struct
*queue
,
5761 NT_PRINTER_INFO_LEVEL
*printer
,
5762 TALLOC_CTX
*mem_ctx
);
5763 void spoolss_notify_printer_name(int snum
,
5764 struct spoolss_Notify
*data
,
5765 print_queue_struct
*queue
,
5766 NT_PRINTER_INFO_LEVEL
*printer
,
5767 TALLOC_CTX
*mem_ctx
);
5768 void spoolss_notify_share_name(int snum
,
5769 struct spoolss_Notify
*data
,
5770 print_queue_struct
*queue
,
5771 NT_PRINTER_INFO_LEVEL
*printer
,
5772 TALLOC_CTX
*mem_ctx
);
5773 void spoolss_notify_port_name(int snum
,
5774 struct spoolss_Notify
*data
,
5775 print_queue_struct
*queue
,
5776 NT_PRINTER_INFO_LEVEL
*printer
,
5777 TALLOC_CTX
*mem_ctx
);
5778 void spoolss_notify_driver_name(int snum
,
5779 struct spoolss_Notify
*data
,
5780 print_queue_struct
*queue
,
5781 NT_PRINTER_INFO_LEVEL
*printer
,
5782 TALLOC_CTX
*mem_ctx
);
5783 void spoolss_notify_comment(int snum
,
5784 struct spoolss_Notify
*data
,
5785 print_queue_struct
*queue
,
5786 NT_PRINTER_INFO_LEVEL
*printer
,
5787 TALLOC_CTX
*mem_ctx
);
5788 void spoolss_notify_location(int snum
,
5789 struct spoolss_Notify
*data
,
5790 print_queue_struct
*queue
,
5791 NT_PRINTER_INFO_LEVEL
*printer
,
5792 TALLOC_CTX
*mem_ctx
);
5793 void spoolss_notify_sepfile(int snum
,
5794 struct spoolss_Notify
*data
,
5795 print_queue_struct
*queue
,
5796 NT_PRINTER_INFO_LEVEL
*printer
,
5797 TALLOC_CTX
*mem_ctx
);
5798 void spoolss_notify_print_processor(int snum
,
5799 struct spoolss_Notify
*data
,
5800 print_queue_struct
*queue
,
5801 NT_PRINTER_INFO_LEVEL
*printer
,
5802 TALLOC_CTX
*mem_ctx
);
5803 void spoolss_notify_parameters(int snum
,
5804 struct spoolss_Notify
*data
,
5805 print_queue_struct
*queue
,
5806 NT_PRINTER_INFO_LEVEL
*printer
,
5807 TALLOC_CTX
*mem_ctx
);
5808 void spoolss_notify_datatype(int snum
,
5809 struct spoolss_Notify
*data
,
5810 print_queue_struct
*queue
,
5811 NT_PRINTER_INFO_LEVEL
*printer
,
5812 TALLOC_CTX
*mem_ctx
);
5813 void spoolss_notify_attributes(int snum
,
5814 struct spoolss_Notify
*data
,
5815 print_queue_struct
*queue
,
5816 NT_PRINTER_INFO_LEVEL
*printer
,
5817 TALLOC_CTX
*mem_ctx
);
5818 void spoolss_notify_cjobs(int snum
,
5819 struct spoolss_Notify
*data
,
5820 print_queue_struct
*queue
,
5821 NT_PRINTER_INFO_LEVEL
*printer
,
5822 TALLOC_CTX
*mem_ctx
);
5823 void construct_info_data(struct spoolss_Notify
*info_data
,
5824 enum spoolss_NotifyType type
,
5827 struct spoolss_DeviceMode
*construct_dev_mode(TALLOC_CTX
*mem_ctx
,
5828 const char *servicename
);
5829 WERROR
add_port_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, const char *portname
, const char *uri
);
5830 bool add_printer_hook(TALLOC_CTX
*ctx
, NT_USER_TOKEN
*token
, NT_PRINTER_INFO_LEVEL
*printer
);
5831 WERROR
enumports_hook(TALLOC_CTX
*ctx
, int *count
, char ***lines
);
5833 /* The following definitions come from rpc_server/srv_srvsvc_nt.c */
5835 char *valid_share_pathname(TALLOC_CTX
*ctx
, const char *dos_pathname
);
5837 /* The following definitions come from rpc_server/srv_svcctl_nt.c */
5839 bool init_service_op_table( void );
5841 /* The following definitions come from rpcclient/cmd_dfs.c */
5844 /* The following definitions come from rpcclient/cmd_dssetup.c */
5847 /* The following definitions come from rpcclient/cmd_echo.c */
5850 /* The following definitions come from rpcclient/cmd_lsarpc.c */
5853 /* The following definitions come from rpcclient/cmd_netlogon.c */
5856 /* The following definitions come from rpcclient/cmd_ntsvcs.c */
5859 /* The following definitions come from rpcclient/cmd_samr.c */
5862 /* The following definitions come from rpcclient/cmd_shutdown.c */
5865 /* The following definitions come from rpcclient/cmd_spoolss.c */
5868 /* The following definitions come from rpcclient/cmd_srvsvc.c */
5871 /* The following definitions come from rpcclient/cmd_test.c */
5874 /* The following definitions come from rpcclient/cmd_wkssvc.c */
5877 /* The following definitions come from rpcclient/rpcclient.c */
5880 /* The following definitions come from services/services_db.c */
5882 void svcctl_init_keys( void );
5883 SEC_DESC
*svcctl_get_secdesc( TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
5884 bool svcctl_set_secdesc( TALLOC_CTX
*ctx
, const char *name
, SEC_DESC
*sec_desc
, NT_USER_TOKEN
*token
);
5885 const char *svcctl_lookup_dispname(TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
5886 const char *svcctl_lookup_description(TALLOC_CTX
*ctx
, const char *name
, NT_USER_TOKEN
*token
);
5887 struct regval_ctr
*svcctl_fetch_regvalues( const char *name
, NT_USER_TOKEN
*token
);
5889 /* The following definitions come from services/svc_netlogon.c */
5892 /* The following definitions come from services/svc_rcinit.c */
5895 /* The following definitions come from services/svc_spoolss.c */
5898 /* The following definitions come from services/svc_winreg.c */
5901 /* The following definitions come from services/svc_wins.c */
5904 /* The following definitions come from smbd/aio.c */
5906 void initialize_async_io_handler(void);
5907 bool schedule_aio_read_and_X(connection_struct
*conn
,
5908 struct smb_request
*req
,
5909 files_struct
*fsp
, SMB_OFF_T startpos
,
5911 bool schedule_aio_write_and_X(connection_struct
*conn
,
5912 struct smb_request
*req
,
5913 files_struct
*fsp
, char *data
,
5916 int wait_for_aio_completion(files_struct
*fsp
);
5917 void cancel_aio_by_fsp(files_struct
*fsp
);
5918 void smbd_aio_complete_mid(unsigned int mid
);
5920 /* The following definitions come from smbd/blocking.c */
5922 void process_blocking_lock_queue(void);
5923 bool push_blocking_lock_request( struct byte_range_lock
*br_lck
,
5924 struct smb_request
*req
,
5929 enum brl_type lock_type
,
5930 enum brl_flavour lock_flav
,
5933 uint32 blocking_pid
);
5934 void cancel_pending_lock_requests_by_fid(files_struct
*fsp
, struct byte_range_lock
*br_lck
);
5935 void remove_pending_lock_requests_by_mid(int mid
);
5936 bool blocking_lock_was_deferred(int mid
);
5937 struct blocking_lock_record
*blocking_lock_cancel(files_struct
*fsp
,
5941 enum brl_flavour lock_flav
,
5942 unsigned char locktype
,
5945 /* The following definitions come from smbd/change_trust_pw.c */
5947 NTSTATUS
change_trust_account_password( const char *domain
, const char *remote_machine
);
5949 /* The following definitions come from smbd/chgpasswd.c */
5951 bool chgpasswd(const char *name
, const struct passwd
*pass
,
5952 const char *oldpass
, const char *newpass
, bool as_root
);
5953 bool chgpasswd(const char *name
, const struct passwd
*pass
,
5954 const char *oldpass
, const char *newpass
, bool as_root
);
5955 bool check_lanman_password(char *user
, uchar
* pass1
,
5956 uchar
* pass2
, struct samu
**hnd
);
5957 bool change_lanman_password(struct samu
*sampass
, uchar
*pass2
);
5958 NTSTATUS
pass_oem_change(char *user
,
5959 uchar password_encrypted_with_lm_hash
[516],
5960 const uchar old_lm_hash_encrypted
[16],
5961 uchar password_encrypted_with_nt_hash
[516],
5962 const uchar old_nt_hash_encrypted
[16],
5963 uint32
*reject_reason
);
5964 NTSTATUS
change_oem_password(struct samu
*hnd
, char *old_passwd
, char *new_passwd
, bool as_root
, uint32
*samr_reject_reason
);
5966 /* The following definitions come from smbd/close.c */
5968 void set_close_write_time(struct files_struct
*fsp
, struct timespec ts
);
5969 NTSTATUS
close_file(struct smb_request
*req
, files_struct
*fsp
,
5970 enum file_close_type close_type
);
5971 void msg_close_file(struct messaging_context
*msg_ctx
,
5974 struct server_id server_id
,
5976 NTSTATUS
delete_all_streams(connection_struct
*conn
, const char *fname
);
5978 /* The following definitions come from smbd/conn.c */
5980 void conn_init(void);
5981 int conn_num_open(void);
5982 bool conn_snum_used(int snum
);
5983 connection_struct
*conn_find(unsigned cnum
);
5984 connection_struct
*conn_new(void);
5985 bool conn_close_all(void);
5986 bool conn_idle_all(time_t t
);
5987 void conn_clear_vuid_caches(uint16 vuid
);
5988 void conn_free_internal(connection_struct
*conn
);
5989 void conn_free(connection_struct
*conn
);
5990 void msg_force_tdis(struct messaging_context
*msg
,
5993 struct server_id server_id
,
5996 /* The following definitions come from smbd/connection.c */
5998 bool yield_connection(connection_struct
*conn
, const char *name
);
5999 int count_current_connections( const char *sharename
, bool clear
);
6000 int count_all_current_connections(void);
6001 bool claim_connection(connection_struct
*conn
, const char *name
,
6003 bool register_message_flags(bool doreg
, uint32 msg_flags
);
6005 /* The following definitions come from smbd/dfree.c */
6007 uint64_t sys_disk_free(connection_struct
*conn
, const char *path
, bool small_query
,
6008 uint64_t *bsize
,uint64_t *dfree
,uint64_t *dsize
);
6009 uint64_t get_dfree_info(connection_struct
*conn
,
6016 /* The following definitions come from smbd/dir.c */
6018 bool make_dir_struct(TALLOC_CTX
*ctx
,
6026 void init_dptrs(void);
6027 char *dptr_path(int key
);
6028 char *dptr_wcard(int key
);
6029 uint16
dptr_attr(int key
);
6030 void dptr_close(int *key
);
6031 void dptr_closecnum(connection_struct
*conn
);
6032 void dptr_idlecnum(connection_struct
*conn
);
6033 void dptr_closepath(char *path
,uint16 spid
);
6034 NTSTATUS
dptr_create(connection_struct
*conn
, const char *path
, bool old_handle
, bool expect_close
,uint16 spid
,
6035 const char *wcard
, bool wcard_has_wild
, uint32 attr
, struct dptr_struct
**dptr_ret
);
6036 int dptr_CloseDir(struct dptr_struct
*dptr
);
6037 void dptr_SeekDir(struct dptr_struct
*dptr
, long offset
);
6038 long dptr_TellDir(struct dptr_struct
*dptr
);
6039 bool dptr_has_wild(struct dptr_struct
*dptr
);
6040 int dptr_dnum(struct dptr_struct
*dptr
);
6041 const char *dptr_ReadDirName(TALLOC_CTX
*ctx
,
6042 struct dptr_struct
*dptr
,
6044 SMB_STRUCT_STAT
*pst
);
6045 bool dptr_SearchDir(struct dptr_struct
*dptr
, const char *name
, long *poffset
, SMB_STRUCT_STAT
*pst
);
6046 void dptr_DirCacheAdd(struct dptr_struct
*dptr
, const char *name
, long offset
);
6047 void dptr_init_search_op(struct dptr_struct
*dptr
);
6048 bool dptr_fill(char *buf1
,unsigned int key
);
6049 struct dptr_struct
*dptr_fetch(char *buf
,int *num
);
6050 struct dptr_struct
*dptr_fetch_lanman2(int dptr_num
);
6051 bool dir_check_ftype(connection_struct
*conn
, uint32 mode
, uint32 dirtype
);
6052 bool get_dir_entry(TALLOC_CTX
*ctx
,
6053 connection_struct
*conn
,
6056 char **pp_fname_out
,
6061 bool ask_sharemode
);
6062 bool is_visible_file(connection_struct
*conn
, const char *dir_path
, const char *name
, SMB_STRUCT_STAT
*pst
, bool use_veto
);
6063 struct smb_Dir
*OpenDir(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
6064 const char *name
, const char *mask
, uint32 attr
);
6065 const char *ReadDirName(struct smb_Dir
*dirp
, long *poffset
,
6066 SMB_STRUCT_STAT
*sbuf
);
6067 void RewindDir(struct smb_Dir
*dirp
, long *poffset
);
6068 void SeekDir(struct smb_Dir
*dirp
, long offset
);
6069 long TellDir(struct smb_Dir
*dirp
);
6070 void DirCacheAdd(struct smb_Dir
*dirp
, const char *name
, long offset
);
6071 bool SearchDir(struct smb_Dir
*dirp
, const char *name
, long *poffset
);
6072 NTSTATUS
can_delete_directory(struct connection_struct
*conn
,
6073 const char *dirname
);
6075 /* The following definitions come from smbd/dmapi.c */
6077 const void *dmapi_get_current_session(void);
6078 bool dmapi_have_session(void);
6079 bool dmapi_new_session(void);
6080 bool dmapi_destroy_session(void);
6081 uint32
dmapi_file_flags(const char * const path
);
6083 /* The following definitions come from smbd/dnsregister.c */
6085 bool smbd_setup_mdns_registration(struct tevent_context
*ev
,
6086 TALLOC_CTX
*mem_ctx
,
6089 /* The following definitions come from smbd/dosmode.c */
6091 mode_t
unix_mode(connection_struct
*conn
, int dosmode
, const char *fname
,
6092 const char *inherit_from_dir
);
6093 uint32
dos_mode_msdfs(connection_struct
*conn
, const char *path
,SMB_STRUCT_STAT
*sbuf
);
6094 int dos_attributes_to_stat_dos_flags(uint32_t dosmode
);
6095 uint32
dos_mode(connection_struct
*conn
, const char *path
,SMB_STRUCT_STAT
*sbuf
);
6096 int file_set_dosmode(connection_struct
*conn
, const char *fname
,
6097 uint32 dosmode
, SMB_STRUCT_STAT
*st
,
6098 const char *parent_dir
,
6100 int file_ntimes(connection_struct
*conn
, const char *fname
,
6101 struct smb_file_time
*ft
);
6102 bool set_sticky_write_time_path(connection_struct
*conn
, const char *fname
,
6103 struct file_id fileid
, const struct timespec mtime
);
6104 bool set_sticky_write_time_fsp(struct files_struct
*fsp
, const struct timespec mtime
);
6105 bool update_write_time(struct files_struct
*fsp
);
6107 /* The following definitions come from smbd/error.c */
6109 bool use_nt_status(void);
6110 void error_packet_set(char *outbuf
, uint8 eclass
, uint32 ecode
, NTSTATUS ntstatus
, int line
, const char *file
);
6111 int error_packet(char *outbuf
, uint8 eclass
, uint32 ecode
, NTSTATUS ntstatus
, int line
, const char *file
);
6112 void reply_nt_error(struct smb_request
*req
, NTSTATUS ntstatus
,
6113 int line
, const char *file
);
6114 void reply_force_nt_error(struct smb_request
*req
, NTSTATUS ntstatus
,
6115 int line
, const char *file
);
6116 void reply_dos_error(struct smb_request
*req
, uint8 eclass
, uint32 ecode
,
6117 int line
, const char *file
);
6118 void reply_both_error(struct smb_request
*req
, uint8 eclass
, uint32 ecode
,
6119 NTSTATUS status
, int line
, const char *file
);
6120 void reply_openerror(struct smb_request
*req
, NTSTATUS status
);
6121 void reply_unix_error(struct smb_request
*req
, uint8 defclass
, uint32 defcode
,
6122 NTSTATUS defstatus
, int line
, const char *file
);
6124 /* The following definitions come from smbd/fake_file.c */
6126 enum FAKE_FILE_TYPE
is_fake_file(const char *fname
);
6127 NTSTATUS
open_fake_file(struct smb_request
*req
, connection_struct
*conn
,
6128 uint16_t current_vuid
,
6129 enum FAKE_FILE_TYPE fake_file_type
,
6132 files_struct
**result
);
6133 NTSTATUS
close_fake_file(struct smb_request
*req
, files_struct
*fsp
);
6135 /* The following definitions come from smbd/file_access.c */
6137 bool can_access_file_acl(struct connection_struct
*conn
,
6139 uint32_t access_mask
);
6140 bool can_delete_file_in_directory(connection_struct
*conn
, const char *fname
);
6141 bool can_access_file_data(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
, uint32 access_mask
);
6142 bool can_write_to_file(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
);
6143 bool directory_has_default_acl(connection_struct
*conn
, const char *fname
);
6145 /* The following definitions come from smbd/fileio.c */
6147 ssize_t
read_file(files_struct
*fsp
,char *data
,SMB_OFF_T pos
,size_t n
);
6148 void trigger_write_time_update(struct files_struct
*fsp
);
6149 void trigger_write_time_update_immediate(struct files_struct
*fsp
);
6150 ssize_t
write_file(struct smb_request
*req
,
6155 void delete_write_cache(files_struct
*fsp
);
6156 void set_filelen_write_cache(files_struct
*fsp
, SMB_OFF_T file_size
);
6157 ssize_t
flush_write_cache(files_struct
*fsp
, enum flush_reason_enum reason
);
6158 NTSTATUS
sync_file(connection_struct
*conn
, files_struct
*fsp
, bool write_through
);
6159 int fsp_stat(files_struct
*fsp
, SMB_STRUCT_STAT
*pst
);
6161 /* The following definitions come from smbd/filename.c */
6163 NTSTATUS
unix_convert(TALLOC_CTX
*ctx
,
6164 connection_struct
*conn
,
6165 const char *orig_path
,
6166 bool allow_wcard_last_component
,
6167 char **pp_conv_path
,
6168 char **pp_saved_last_component
,
6169 SMB_STRUCT_STAT
*pst
);
6170 NTSTATUS
check_name(connection_struct
*conn
, const char *name
);
6171 int get_real_filename(connection_struct
*conn
, const char *path
,
6172 const char *name
, TALLOC_CTX
*mem_ctx
,
6175 /* The following definitions come from smbd/files.c */
6177 NTSTATUS
file_new(struct smb_request
*req
, connection_struct
*conn
,
6178 files_struct
**result
);
6179 void file_close_conn(connection_struct
*conn
);
6180 void file_close_pid(uint16 smbpid
, int vuid
);
6181 void file_init(void);
6182 void file_close_user(int vuid
);
6183 void file_dump_open_table(void);
6184 files_struct
*file_find_fd(int fd
);
6185 files_struct
*file_find_dif(struct file_id id
, unsigned long gen_id
);
6186 files_struct
*file_find_fsp(files_struct
*orig_fsp
);
6187 files_struct
*file_find_di_first(struct file_id id
);
6188 files_struct
*file_find_di_next(files_struct
*start_fsp
);
6189 files_struct
*file_find_print(void);
6190 bool file_find_subpath(files_struct
*dir_fsp
);
6191 void file_sync_all(connection_struct
*conn
);
6192 void file_free(struct smb_request
*req
, files_struct
*fsp
);
6193 files_struct
*file_fnum(uint16 fnum
);
6194 files_struct
*file_fsp(struct smb_request
*req
, uint16 fid
);
6195 void dup_file_fsp(struct smb_request
*req
, files_struct
*from
,
6196 uint32 access_mask
, uint32 share_access
,
6197 uint32 create_options
, files_struct
*to
);
6199 /* The following definitions come from smbd/ipc.c */
6201 void send_trans_reply(connection_struct
*conn
,
6202 struct smb_request
*req
,
6203 char *rparam
, int rparam_len
,
6204 char *rdata
, int rdata_len
,
6205 bool buffer_too_large
);
6206 void reply_trans(struct smb_request
*req
);
6207 void reply_transs(struct smb_request
*req
);
6209 /* The following definitions come from smbd/lanman.c */
6211 void api_reply(connection_struct
*conn
, uint16 vuid
,
6212 struct smb_request
*req
,
6213 char *data
, char *params
,
6214 int tdscnt
, int tpscnt
,
6215 int mdrcnt
, int mprcnt
);
6217 /* The following definitions come from smbd/mangle.c */
6219 void mangle_reset_cache(void);
6220 void mangle_change_to_posix(void);
6221 bool mangle_is_mangled(const char *s
, const struct share_params
*p
);
6222 bool mangle_is_8_3(const char *fname
, bool check_case
,
6223 const struct share_params
*p
);
6224 bool mangle_is_8_3_wildcards(const char *fname
, bool check_case
,
6225 const struct share_params
*p
);
6226 bool mangle_must_mangle(const char *fname
,
6227 const struct share_params
*p
);
6228 bool mangle_lookup_name_from_8_3(TALLOC_CTX
*ctx
,
6230 char **out
, /* talloced on the given context. */
6231 const struct share_params
*p
);
6232 bool name_to_8_3(const char *in
,
6235 const struct share_params
*p
);
6237 /* The following definitions come from smbd/mangle_hash.c */
6239 const struct mangle_fns
*mangle_hash_init(void);
6241 /* The following definitions come from smbd/mangle_hash2.c */
6243 const struct mangle_fns
*mangle_hash2_init(void);
6244 const struct mangle_fns
*posix_mangle_init(void);
6246 /* The following definitions come from smbd/map_username.c */
6248 bool map_username(fstring user
);
6250 /* The following definitions come from smbd/message.c */
6252 void reply_sends(struct smb_request
*req
);
6253 void reply_sendstrt(struct smb_request
*req
);
6254 void reply_sendtxt(struct smb_request
*req
);
6255 void reply_sendend(struct smb_request
*req
);
6257 /* The following definitions come from smbd/msdfs.c */
6259 bool is_msdfs_link(connection_struct
*conn
,
6261 SMB_STRUCT_STAT
*sbufp
);
6262 NTSTATUS
get_referred_path(TALLOC_CTX
*ctx
,
6263 const char *dfs_path
,
6264 struct junction_map
*jucn
,
6266 bool *self_referralp
);
6267 int setup_dfs_referral(connection_struct
*orig_conn
,
6268 const char *dfs_path
,
6269 int max_referral_level
,
6270 char **ppdata
, NTSTATUS
*pstatus
);
6271 bool create_junction(TALLOC_CTX
*ctx
,
6272 const char *dfs_path
,
6273 struct junction_map
*jucn
);
6274 bool create_msdfs_link(const struct junction_map
*jucn
);
6275 bool remove_msdfs_link(const struct junction_map
*jucn
);
6276 struct junction_map
*enum_msdfs_links(TALLOC_CTX
*ctx
, size_t *p_num_jn
);
6277 NTSTATUS
resolve_dfspath(TALLOC_CTX
*ctx
,
6278 connection_struct
*conn
,
6280 const char *name_in
,
6281 char **pp_name_out
);
6282 NTSTATUS
resolve_dfspath_wcard(TALLOC_CTX
*ctx
,
6283 connection_struct
*conn
,
6285 const char *name_in
,
6287 bool *ppath_contains_wcard
);
6288 NTSTATUS
create_conn_struct(TALLOC_CTX
*ctx
,
6289 connection_struct
**pconn
,
6292 struct auth_serversupplied_info
*server_info
,
6295 /* The following definitions come from smbd/negprot.c */
6297 void reply_negprot(struct smb_request
*req
);
6299 /* The following definitions come from smbd/notify.c */
6301 void change_notify_reply(connection_struct
*conn
,
6302 struct smb_request
*req
, uint32 max_param
,
6303 struct notify_change_buf
*notify_buf
);
6304 NTSTATUS
change_notify_create(struct files_struct
*fsp
, uint32 filter
,
6306 NTSTATUS
change_notify_add_request(struct smb_request
*req
,
6308 uint32 filter
, bool recursive
,
6309 struct files_struct
*fsp
);
6310 void remove_pending_change_notify_requests_by_mid(uint16 mid
);
6311 void remove_pending_change_notify_requests_by_fid(files_struct
*fsp
,
6313 void notify_fname(connection_struct
*conn
, uint32 action
, uint32 filter
,
6315 char *notify_filter_string(TALLOC_CTX
*mem_ctx
, uint32 filter
);
6316 struct sys_notify_context
*sys_notify_context_create(connection_struct
*conn
,
6317 TALLOC_CTX
*mem_ctx
,
6318 struct event_context
*ev
);
6319 NTSTATUS
sys_notify_watch(struct sys_notify_context
*ctx
,
6320 struct notify_entry
*e
,
6321 void (*callback
)(struct sys_notify_context
*ctx
,
6323 struct notify_event
*ev
),
6324 void *private_data
, void *handle
);
6326 /* The following definitions come from smbd/notify_inotify.c */
6328 NTSTATUS
inotify_watch(struct sys_notify_context
*ctx
,
6329 struct notify_entry
*e
,
6330 void (*callback
)(struct sys_notify_context
*ctx
,
6332 struct notify_event
*ev
),
6336 /* The following definitions come from smbd/notify_internal.c */
6338 struct notify_context
*notify_init(TALLOC_CTX
*mem_ctx
, struct server_id server
,
6339 struct messaging_context
*messaging_ctx
,
6340 struct event_context
*ev
,
6341 connection_struct
*conn
);
6342 NTSTATUS
notify_add(struct notify_context
*notify
, struct notify_entry
*e0
,
6343 void (*callback
)(void *, const struct notify_event
*),
6344 void *private_data
);
6345 NTSTATUS
notify_remove(struct notify_context
*notify
, void *private_data
);
6346 NTSTATUS
notify_remove_onelevel(struct notify_context
*notify
,
6347 const struct file_id
*fid
,
6348 void *private_data
);
6349 void notify_onelevel(struct notify_context
*notify
, uint32_t action
,
6350 uint32_t filter
, struct file_id fid
, const char *name
);
6351 void notify_trigger(struct notify_context
*notify
,
6352 uint32_t action
, uint32_t filter
, const char *path
);
6354 /* The following definitions come from smbd/ntquotas.c */
6356 int vfs_get_ntquota(files_struct
*fsp
, enum SMB_QUOTA_TYPE qtype
, DOM_SID
*psid
, SMB_NTQUOTA_STRUCT
*qt
);
6357 int vfs_set_ntquota(files_struct
*fsp
, enum SMB_QUOTA_TYPE qtype
, DOM_SID
*psid
, SMB_NTQUOTA_STRUCT
*qt
);
6358 int vfs_get_user_ntquota_list(files_struct
*fsp
, SMB_NTQUOTA_LIST
**qt_list
);
6359 void *init_quota_handle(TALLOC_CTX
*mem_ctx
);
6361 /* The following definitions come from smbd/nttrans.c */
6363 void send_nt_replies(connection_struct
*conn
,
6364 struct smb_request
*req
, NTSTATUS nt_error
,
6365 char *params
, int paramsize
,
6366 char *pdata
, int datasize
);
6367 bool is_ntfs_stream_name(const char *fname
);
6368 void reply_ntcreate_and_X(struct smb_request
*req
);
6369 void reply_ntcancel(struct smb_request
*req
);
6370 void reply_ntrename(struct smb_request
*req
);
6371 void reply_nttrans(struct smb_request
*req
);
6372 void reply_nttranss(struct smb_request
*req
);
6374 /* The following definitions come from smbd/open.c */
6376 NTSTATUS
smb1_file_se_access_check(const struct security_descriptor
*sd
,
6377 const NT_USER_TOKEN
*token
,
6378 uint32_t access_desired
,
6379 uint32_t *access_granted
);
6380 NTSTATUS
fd_close(files_struct
*fsp
);
6381 void change_file_owner_to_parent(connection_struct
*conn
,
6382 const char *inherit_from_dir
,
6384 NTSTATUS
change_dir_owner_to_parent(connection_struct
*conn
,
6385 const char *inherit_from_dir
,
6387 SMB_STRUCT_STAT
*psbuf
);
6388 bool is_executable(const char *fname
);
6389 bool is_stat_open(uint32 access_mask
);
6390 bool request_timed_out(struct timeval request_time
,
6391 struct timeval timeout
);
6392 bool open_match_attributes(connection_struct
*conn
,
6394 uint32 old_dos_attr
,
6395 uint32 new_dos_attr
,
6396 mode_t existing_unx_mode
,
6397 mode_t new_unx_mode
,
6398 mode_t
*returned_unx_mode
);
6399 NTSTATUS
fcb_or_dos_open(struct smb_request
*req
,
6400 connection_struct
*conn
,
6401 files_struct
*fsp_to_dup_into
,
6407 uint32 share_access
,
6408 uint32 create_options
);
6409 bool map_open_params_to_ntcreate(const char *fname
, int deny_mode
, int open_func
,
6410 uint32
*paccess_mask
,
6411 uint32
*pshare_mode
,
6412 uint32
*pcreate_disposition
,
6413 uint32
*pcreate_options
);
6414 NTSTATUS
open_file_fchmod(struct smb_request
*req
, connection_struct
*conn
,
6416 SMB_STRUCT_STAT
*psbuf
, files_struct
**result
);
6417 NTSTATUS
close_file_fchmod(struct smb_request
*req
, files_struct
*fsp
);
6418 NTSTATUS
create_directory(connection_struct
*conn
, struct smb_request
*req
, const char *directory
);
6419 void msg_file_was_renamed(struct messaging_context
*msg
,
6422 struct server_id server_id
,
6424 struct case_semantics_state
;
6425 struct case_semantics_state
*set_posix_case_semantics(TALLOC_CTX
*mem_ctx
,
6426 connection_struct
*conn
);
6427 NTSTATUS
open_streams_for_delete(connection_struct
*conn
,
6429 NTSTATUS
create_file_default(connection_struct
*conn
,
6430 struct smb_request
*req
,
6431 uint16_t root_dir_fid
,
6433 uint32_t create_file_flags
,
6434 uint32_t access_mask
,
6435 uint32_t share_access
,
6436 uint32_t create_disposition
,
6437 uint32_t create_options
,
6438 uint32_t file_attributes
,
6439 uint32_t oplock_request
,
6440 uint64_t allocation_size
,
6441 struct security_descriptor
*sd
,
6442 struct ea_list
*ea_list
,
6444 files_struct
**result
,
6446 SMB_STRUCT_STAT
*psbuf
);
6447 NTSTATUS
get_relative_fid_filename(connection_struct
*conn
,
6448 struct smb_request
*req
,
6449 uint16_t root_dir_fid
,
6450 const char *fname
, char **new_fname
);
6452 /* The following definitions come from smbd/oplock.c */
6454 int32
get_number_of_exclusive_open_oplocks(void);
6455 void break_kernel_oplock(struct messaging_context
*msg_ctx
, files_struct
*fsp
);
6456 bool set_file_oplock(files_struct
*fsp
, int oplock_type
);
6457 void release_file_oplock(files_struct
*fsp
);
6458 bool remove_oplock(files_struct
*fsp
);
6459 bool downgrade_oplock(files_struct
*fsp
);
6460 bool should_notify_deferred_opens(void);
6461 void break_level2_to_none_async(files_struct
*fsp
);
6462 void reply_to_oplock_break_requests(files_struct
*fsp
);
6463 void process_oplock_async_level2_break_message(struct messaging_context
*msg_ctx
,
6466 struct server_id src
,
6468 void contend_level2_oplocks_begin(files_struct
*fsp
,
6469 enum level2_contention_type type
);
6470 void contend_level2_oplocks_end(files_struct
*fsp
,
6471 enum level2_contention_type type
);
6472 void share_mode_entry_to_message(char *msg
, const struct share_mode_entry
*e
);
6473 void message_to_share_mode_entry(struct share_mode_entry
*e
, char *msg
);
6474 bool init_oplocks(struct messaging_context
*msg_ctx
);
6476 /* The following definitions come from smbd/oplock_irix.c */
6478 struct kernel_oplocks
*irix_init_kernel_oplocks(TALLOC_CTX
*mem_ctx
) ;
6480 /* The following definitions come from smbd/oplock_linux.c */
6482 void linux_set_lease_capability(void);
6483 int linux_set_lease_sighandler(int fd
);
6484 int linux_setlease(int fd
, int leasetype
);
6485 struct kernel_oplocks
*linux_init_kernel_oplocks(TALLOC_CTX
*mem_ctx
) ;
6487 /* The following definitions come from smbd/oplock_onefs.c */
6489 struct kernel_oplocks
*onefs_init_kernel_oplocks(TALLOC_CTX
*mem_ctx
);
6491 /* The following definitions come from smbd/password.c */
6493 user_struct
*get_valid_user_struct(uint16 vuid
);
6494 bool is_partial_auth_vuid(uint16 vuid
);
6495 user_struct
*get_partial_auth_user_struct(uint16 vuid
);
6496 void invalidate_vuid(uint16 vuid
);
6497 void invalidate_all_vuids(void);
6498 int register_initial_vuid(void);
6499 int register_existing_vuid(uint16 vuid
,
6500 auth_serversupplied_info
*server_info
,
6501 DATA_BLOB response_blob
,
6502 const char *smb_name
);
6503 void add_session_user(const char *user
);
6504 void add_session_workgroup(const char *workgroup
);
6505 const char *get_session_workgroup(void);
6506 bool user_in_netgroup(const char *user
, const char *ngname
);
6507 bool user_in_list(const char *user
,const char **list
);
6508 bool authorise_login(int snum
, fstring user
, DATA_BLOB password
,
6511 /* The following definitions come from smbd/pipes.c */
6513 NTSTATUS
open_np_file(struct smb_request
*smb_req
, const char *name
,
6514 struct files_struct
**pfsp
);
6515 void reply_open_pipe_and_X(connection_struct
*conn
, struct smb_request
*req
);
6516 void reply_pipe_write(struct smb_request
*req
);
6517 void reply_pipe_write_and_X(struct smb_request
*req
);
6518 void reply_pipe_read_and_X(struct smb_request
*req
);
6519 void reply_pipe_close(connection_struct
*conn
, struct smb_request
*req
);
6521 /* The following definitions come from smbd/posix_acls.c */
6523 void create_file_sids(const SMB_STRUCT_STAT
*psbuf
, DOM_SID
*powner_sid
, DOM_SID
*pgroup_sid
);
6524 bool nt4_compatible_acls(void);
6525 NTSTATUS
unpack_nt_owners(int snum
, uid_t
*puser
, gid_t
*pgrp
, uint32 security_info_sent
, const SEC_DESC
*psd
);
6526 SMB_ACL_T
free_empty_sys_acl(connection_struct
*conn
, SMB_ACL_T the_acl
);
6527 NTSTATUS
posix_fget_nt_acl(struct files_struct
*fsp
, uint32_t security_info
,
6529 NTSTATUS
posix_get_nt_acl(struct connection_struct
*conn
, const char *name
,
6530 uint32_t security_info
, SEC_DESC
**ppdesc
);
6531 int try_chown(connection_struct
*conn
, const char *fname
, uid_t uid
, gid_t gid
);
6532 NTSTATUS
append_parent_acl(files_struct
*fsp
,
6533 const SEC_DESC
*pcsd
,
6534 SEC_DESC
**pp_new_sd
);
6535 NTSTATUS
set_nt_acl(files_struct
*fsp
, uint32 security_info_sent
, const SEC_DESC
*psd
);
6536 int get_acl_group_bits( connection_struct
*conn
, const char *fname
, mode_t
*mode
);
6537 int chmod_acl(connection_struct
*conn
, const char *name
, mode_t mode
);
6538 int inherit_access_posix_acl(connection_struct
*conn
, const char *inherit_from_dir
,
6539 const char *name
, mode_t mode
);
6540 int fchmod_acl(files_struct
*fsp
, mode_t mode
);
6541 bool set_unix_posix_default_acl(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
,
6542 uint16 num_def_acls
, const char *pdata
);
6543 bool set_unix_posix_acl(connection_struct
*conn
, files_struct
*fsp
, const char *fname
, uint16 num_acls
, const char *pdata
);
6544 SEC_DESC
*get_nt_acl_no_snum( TALLOC_CTX
*ctx
, const char *fname
);
6546 /* The following definitions come from smbd/process.c */
6548 void smbd_setup_sig_term_handler(void);
6549 void smbd_setup_sig_hup_handler(void);
6550 bool srv_send_smb(int fd
, char *buffer
,
6551 bool no_signing
, uint32_t seqnum
,
6553 struct smb_perfcount_data
*pcd
);
6554 int srv_set_message(char *buf
,
6558 void init_smb_request(struct smb_request
*req
,
6560 size_t unread_bytes
,
6562 void remove_deferred_open_smb_message(uint16 mid
);
6563 void schedule_deferred_open_smb_message(uint16 mid
);
6564 bool open_was_deferred(uint16 mid
);
6565 struct pending_message_list
*get_open_deferred_message(uint16 mid
);
6566 bool push_deferred_smb_message(struct smb_request
*req
,
6567 struct timeval request_time
,
6568 struct timeval timeout
,
6569 char *private_data
, size_t priv_len
);
6570 struct idle_event
*event_add_idle(struct event_context
*event_ctx
,
6571 TALLOC_CTX
*mem_ctx
,
6572 struct timeval interval
,
6574 bool (*handler
)(const struct timeval
*now
,
6575 void *private_data
),
6576 void *private_data
);
6577 NTSTATUS
allow_new_trans(struct trans_state
*list
, int mid
);
6578 void reply_outbuf(struct smb_request
*req
, uint8 num_words
, uint32 num_bytes
);
6579 const char *smb_fn_name(int type
);
6580 void add_to_common_flags2(uint32 v
);
6581 void remove_from_common_flags2(uint32 v
);
6582 void construct_reply_common_req(struct smb_request
*req
, char *outbuf
);
6583 size_t req_wct_ofs(struct smb_request
*req
);
6584 void chain_reply(struct smb_request
*req
);
6585 bool req_is_in_chain(struct smb_request
*req
);
6586 void check_reload(time_t t
);
6587 void smbd_process(void);
6589 /* The following definitions come from smbd/quotas.c */
6591 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6592 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6593 bool disk_quotas(const char *path
,
6597 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6598 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6599 bool disk_quotas(const char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6600 bool disk_quotas_vxfs(const char *name
, char *path
, uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
);
6601 bool disk_quotas(const char *path
,uint64_t *bsize
,uint64_t *dfree
,uint64_t *dsize
);
6602 bool disk_quotas(const char *path
,uint64_t *bsize
,uint64_t *dfree
,uint64_t *dsize
);
6604 /* The following definitions come from smbd/reply.c */
6606 NTSTATUS
check_path_syntax(char *path
);
6607 NTSTATUS
check_path_syntax_wcard(char *path
, bool *p_contains_wcard
);
6608 NTSTATUS
check_path_syntax_posix(char *path
);
6609 size_t srvstr_get_path_wcard(TALLOC_CTX
*ctx
,
6617 bool *contains_wcard
);
6618 size_t srvstr_get_path(TALLOC_CTX
*ctx
,
6626 size_t srvstr_get_path_req_wcard(TALLOC_CTX
*mem_ctx
, struct smb_request
*req
,
6627 char **pp_dest
, const char *src
, int flags
,
6628 NTSTATUS
*err
, bool *contains_wcard
);
6629 size_t srvstr_get_path_req(TALLOC_CTX
*mem_ctx
, struct smb_request
*req
,
6630 char **pp_dest
, const char *src
, int flags
,
6632 bool check_fsp_open(connection_struct
*conn
, struct smb_request
*req
,
6634 bool check_fsp(connection_struct
*conn
, struct smb_request
*req
,
6636 bool check_fsp_ntquota_handle(connection_struct
*conn
, struct smb_request
*req
,
6638 bool fsp_belongs_conn(connection_struct
*conn
, struct smb_request
*req
,
6640 void reply_special(char *inbuf
);
6641 void reply_tcon(struct smb_request
*req
);
6642 void reply_tcon_and_X(struct smb_request
*req
);
6643 void reply_unknown_new(struct smb_request
*req
, uint8 type
);
6644 void reply_ioctl(struct smb_request
*req
);
6645 void reply_checkpath(struct smb_request
*req
);
6646 void reply_getatr(struct smb_request
*req
);
6647 void reply_setatr(struct smb_request
*req
);
6648 void reply_dskattr(struct smb_request
*req
);
6649 void reply_search(struct smb_request
*req
);
6650 void reply_fclose(struct smb_request
*req
);
6651 void reply_open(struct smb_request
*req
);
6652 void reply_open_and_X(struct smb_request
*req
);
6653 void reply_ulogoffX(struct smb_request
*req
);
6654 void reply_mknew(struct smb_request
*req
);
6655 void reply_ctemp(struct smb_request
*req
);
6656 NTSTATUS
unlink_internals(connection_struct
*conn
, struct smb_request
*req
,
6657 uint32 dirtype
, const char *name_in
, bool has_wild
);
6658 void reply_unlink(struct smb_request
*req
);
6659 void reply_readbraw(struct smb_request
*req
);
6660 void reply_lockread(struct smb_request
*req
);
6661 void reply_read(struct smb_request
*req
);
6662 void reply_read_and_X(struct smb_request
*req
);
6663 void error_to_writebrawerr(struct smb_request
*req
);
6664 void reply_writebraw(struct smb_request
*req
);
6665 void reply_writeunlock(struct smb_request
*req
);
6666 void reply_write(struct smb_request
*req
);
6667 bool is_valid_writeX_buffer(const uint8_t *inbuf
);
6668 void reply_write_and_X(struct smb_request
*req
);
6669 void reply_lseek(struct smb_request
*req
);
6670 void reply_flush(struct smb_request
*req
);
6671 void reply_exit(struct smb_request
*req
);
6672 void reply_close(struct smb_request
*req
);
6673 void reply_writeclose(struct smb_request
*req
);
6674 void reply_lock(struct smb_request
*req
);
6675 void reply_unlock(struct smb_request
*req
);
6676 void reply_tdis(struct smb_request
*req
);
6677 void reply_echo(struct smb_request
*req
);
6678 void reply_printopen(struct smb_request
*req
);
6679 void reply_printclose(struct smb_request
*req
);
6680 void reply_printqueue(struct smb_request
*req
);
6681 void reply_printwrite(struct smb_request
*req
);
6682 void reply_mkdir(struct smb_request
*req
);
6683 NTSTATUS
rmdir_internals(TALLOC_CTX
*ctx
,
6684 connection_struct
*conn
,
6685 const char *directory
);
6686 void reply_rmdir(struct smb_request
*req
);
6687 NTSTATUS
rename_internals_fsp(connection_struct
*conn
,
6690 const char *newname_last_component
,
6692 bool replace_if_exists
);
6693 NTSTATUS
rename_internals(TALLOC_CTX
*ctx
,
6694 connection_struct
*conn
,
6695 struct smb_request
*req
,
6696 const char *name_in
,
6697 const char *newname_in
,
6699 bool replace_if_exists
,
6702 uint32_t access_mask
);
6703 void reply_mv(struct smb_request
*req
);
6704 NTSTATUS
copy_file(TALLOC_CTX
*ctx
,
6705 connection_struct
*conn
,
6710 bool target_is_directory
);
6711 void reply_copy(struct smb_request
*req
);
6712 uint32
get_lock_pid(const uint8_t *data
, int data_offset
,
6713 bool large_file_format
);
6714 uint64_t get_lock_count(const uint8_t *data
, int data_offset
,
6715 bool large_file_format
);
6716 uint64_t get_lock_offset(const uint8_t *data
, int data_offset
,
6717 bool large_file_format
, bool *err
);
6718 void reply_lockingX(struct smb_request
*req
);
6719 void reply_readbmpx(struct smb_request
*req
);
6720 void reply_readbs(struct smb_request
*req
);
6721 void reply_setattrE(struct smb_request
*req
);
6722 void reply_writebmpx(struct smb_request
*req
);
6723 void reply_writebs(struct smb_request
*req
);
6724 void reply_getattrE(struct smb_request
*req
);
6726 /* The following definitions come from smbd/seal.c */
6728 uint16_t srv_enc_ctx(void);
6729 bool is_encrypted_packet(const uint8_t *inbuf
);
6730 void srv_free_enc_buffer(char *buf
);
6731 NTSTATUS
srv_decrypt_buffer(char *buf
);
6732 NTSTATUS
srv_encrypt_buffer(char *buf
, char **buf_out
);
6733 NTSTATUS
srv_request_encryption_setup(connection_struct
*conn
,
6734 unsigned char **ppdata
,
6735 size_t *p_data_size
,
6736 unsigned char **pparam
,
6737 size_t *p_param_size
);
6738 NTSTATUS
srv_encryption_start(connection_struct
*conn
);
6739 void server_encryption_shutdown(void);
6741 /* The following definitions come from smbd/sec_ctx.c */
6743 bool unix_token_equal(const UNIX_USER_TOKEN
*t1
, const UNIX_USER_TOKEN
*t2
);
6744 bool push_sec_ctx(void);
6745 void set_sec_ctx(uid_t uid
, gid_t gid
, int ngroups
, gid_t
*groups
, NT_USER_TOKEN
*token
);
6746 void set_root_sec_ctx(void);
6747 bool pop_sec_ctx(void);
6748 void init_sec_ctx(void);
6750 /* The following definitions come from smbd/server.c */
6752 int smbd_server_fd(void);
6753 int get_client_fd(void);
6754 struct event_context
*smbd_event_context(void);
6755 struct messaging_context
*smbd_messaging_context(void);
6756 struct memcache
*smbd_memcache(void);
6757 void reload_printers(void);
6758 bool reload_services(bool test
);
6759 void exit_server(const char *const explanation
);
6760 void exit_server_cleanly(const char *const explanation
);
6761 void exit_server_fault(void);
6763 /* The following definitions come from smbd/service.c */
6765 bool set_conn_connectpath(connection_struct
*conn
, const char *connectpath
);
6766 bool set_current_service(connection_struct
*conn
, uint16 flags
, bool do_chdir
);
6767 void load_registry_shares(void);
6768 int add_home_service(const char *service
, const char *username
, const char *homedir
);
6769 int find_service(fstring service
);
6770 connection_struct
*make_connection(const char *service_in
, DATA_BLOB password
,
6771 const char *pdev
, uint16 vuid
,
6773 void close_cnum(connection_struct
*conn
, uint16 vuid
);
6775 /* The following definitions come from smbd/session.c */
6777 bool session_init(void);
6778 bool session_claim(user_struct
*vuser
);
6779 void session_yield(user_struct
*vuser
);
6780 int list_sessions(TALLOC_CTX
*mem_ctx
, struct sessionid
**session_list
);
6782 /* The following definitions come from smbd/sesssetup.c */
6784 NTSTATUS
parse_spnego_mechanisms(DATA_BLOB blob_in
,
6785 DATA_BLOB
*pblob_out
,
6786 char **kerb_mechOID
);
6787 void reply_sesssetup_and_X(struct smb_request
*req
);
6789 /* The following definitions come from smbd/share_access.c */
6791 bool token_contains_name_in_list(const char *username
,
6793 const char *sharename
,
6794 const struct nt_user_token
*token
,
6796 bool user_ok_token(const char *username
, const char *domain
,
6797 const struct nt_user_token
*token
, int snum
);
6798 bool is_share_read_only_for_token(const char *username
,
6800 const struct nt_user_token
*token
,
6801 connection_struct
*conn
);
6803 /* The following definitions come from smbd/srvstr.c */
6805 size_t srvstr_push_fn(const char *function
, unsigned int line
,
6806 const char *base_ptr
, uint16 smb_flags2
, void *dest
,
6807 const char *src
, int dest_len
, int flags
);
6808 ssize_t
message_push_string(uint8
**outbuf
, const char *str
, int flags
);
6810 /* The following definitions come from smbd/statcache.c */
6812 void stat_cache_add( const char *full_orig_name
,
6813 char *translated_path
,
6814 bool case_sensitive
);
6815 bool stat_cache_lookup(connection_struct
*conn
,
6819 SMB_STRUCT_STAT
*pst
);
6820 void send_stat_cache_delete_message(const char *name
);
6821 void stat_cache_delete(const char *name
);
6822 unsigned int fast_string_hash(TDB_DATA
*key
);
6823 bool reset_stat_cache( void );
6825 /* The following definitions come from smbd/statvfs.c */
6827 int sys_statvfs(const char *path
, vfs_statvfs_struct
*statbuf
);
6829 /* The following definitions come from smbd/trans2.c */
6831 uint64_t smb_roundup(connection_struct
*conn
, uint64_t val
);
6832 NTSTATUS
get_ea_value(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
6833 files_struct
*fsp
, const char *fname
,
6834 const char *ea_name
, struct ea_struct
*pea
);
6835 NTSTATUS
get_ea_names_from_file(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
,
6836 files_struct
*fsp
, const char *fname
,
6837 char ***pnames
, size_t *pnum_names
);
6838 NTSTATUS
set_ea(connection_struct
*conn
, files_struct
*fsp
, const char *fname
, struct ea_list
*ea_list
);
6839 struct ea_list
*read_ea_list_entry(TALLOC_CTX
*ctx
, const char *pdata
, size_t data_size
, size_t *pbytes_used
);
6840 void send_trans2_replies(connection_struct
*conn
,
6841 struct smb_request
*req
,
6846 int max_data_bytes
);
6847 unsigned char *create_volume_objectid(connection_struct
*conn
, unsigned char objid
[16]);
6848 NTSTATUS
hardlink_internals(TALLOC_CTX
*ctx
,
6849 connection_struct
*conn
,
6850 const char *oldname_in
,
6851 const char *newname_in
);
6852 NTSTATUS
smb_set_file_time(connection_struct
*conn
,
6855 const SMB_STRUCT_STAT
*psbuf
,
6856 struct smb_file_time
*ft
,
6857 bool setting_write_time
);
6858 void reply_findclose(struct smb_request
*req
);
6859 void reply_findnclose(struct smb_request
*req
);
6860 void reply_trans2(struct smb_request
*req
);
6861 void reply_transs2(struct smb_request
*req
);
6863 /* The following definitions come from smbd/uid.c */
6865 bool change_to_guest(void);
6866 void conn_clear_vuid_cache(connection_struct
*conn
, uint16_t vuid
);
6867 bool change_to_user(connection_struct
*conn
, uint16 vuid
);
6868 bool change_to_root_user(void);
6869 bool become_authenticated_pipe_user(pipes_struct
*p
);
6870 bool unbecome_authenticated_pipe_user(void);
6871 void become_root(void);
6872 void unbecome_root(void);
6873 bool become_user(connection_struct
*conn
, uint16 vuid
);
6874 bool unbecome_user(void);
6876 /* The following definitions come from smbd/utmp.c */
6878 void sys_utmp_claim(const char *username
, const char *hostname
,
6879 const char *ip_addr_str
,
6880 const char *id_str
, int id_num
);
6881 void sys_utmp_yield(const char *username
, const char *hostname
,
6882 const char *ip_addr_str
,
6883 const char *id_str
, int id_num
);
6884 void sys_utmp_yield(const char *username
, const char *hostname
,
6885 const char *ip_addr_str
,
6886 const char *id_str
, int id_num
);
6887 void sys_utmp_claim(const char *username
, const char *hostname
,
6888 const char *ip_addr_str
,
6889 const char *id_str
, int id_num
);
6891 /* The following definitions come from smbd/vfs.c */
6893 NTSTATUS
smb_register_vfs(int version
, const char *name
, const vfs_op_tuple
*vfs_op_tuples
);
6894 bool vfs_init_custom(connection_struct
*conn
, const char *vfs_object
);
6895 void *vfs_add_fsp_extension_notype(vfs_handle_struct
*handle
,
6896 files_struct
*fsp
, size_t ext_size
,
6897 void (*destroy_fn
)(void *p_data
));
6898 void vfs_remove_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
6899 void *vfs_memctx_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
6900 void *vfs_fetch_fsp_extension(vfs_handle_struct
*handle
, files_struct
*fsp
);
6901 bool smbd_vfs_init(connection_struct
*conn
);
6902 bool vfs_directory_exist(connection_struct
*conn
, const char *dname
, SMB_STRUCT_STAT
*st
);
6903 bool vfs_object_exist(connection_struct
*conn
,const char *fname
,SMB_STRUCT_STAT
*sbuf
);
6904 bool vfs_file_exist(connection_struct
*conn
, const char *fname
,SMB_STRUCT_STAT
*sbuf
);
6905 ssize_t
vfs_read_data(files_struct
*fsp
, char *buf
, size_t byte_count
);
6906 ssize_t
vfs_pread_data(files_struct
*fsp
, char *buf
,
6907 size_t byte_count
, SMB_OFF_T offset
);
6908 ssize_t
vfs_write_data(struct smb_request
*req
,
6912 ssize_t
vfs_pwrite_data(struct smb_request
*req
,
6917 int vfs_allocate_file_space(files_struct
*fsp
, uint64_t len
);
6918 int vfs_set_filelen(files_struct
*fsp
, SMB_OFF_T len
);
6919 int vfs_fill_sparse(files_struct
*fsp
, SMB_OFF_T len
);
6920 SMB_OFF_T
vfs_transfer_file(files_struct
*in
, files_struct
*out
, SMB_OFF_T n
);
6921 char *vfs_readdirname(connection_struct
*conn
, void *p
, SMB_STRUCT_STAT
*sbuf
);
6922 int vfs_ChDir(connection_struct
*conn
, const char *path
);
6923 char *vfs_GetWd(TALLOC_CTX
*ctx
, connection_struct
*conn
);
6924 NTSTATUS
check_reduced_name(connection_struct
*conn
, const char *fname
);
6926 /* The following definitions come from torture/denytest.c */
6928 bool torture_denytest1(int dummy
);
6929 bool torture_denytest2(int dummy
);
6931 /* The following definitions come from torture/mangle_test.c */
6933 bool torture_mangle(int dummy
);
6935 /* The following definitions come from torture/nbio.c */
6937 double nbio_total(void);
6938 void nb_alarm(int ignore
);
6939 void nbio_shmem(int n
);
6940 void nb_setup(struct cli_state
*cli
);
6941 void nb_unlink(const char *fname
);
6942 void nb_createx(const char *fname
,
6943 unsigned create_options
, unsigned create_disposition
, int handle
);
6944 void nb_writex(int handle
, int offset
, int size
, int ret_size
);
6945 void nb_readx(int handle
, int offset
, int size
, int ret_size
);
6946 void nb_close(int handle
);
6947 void nb_rmdir(const char *fname
);
6948 void nb_rename(const char *oldname
, const char *newname
);
6949 void nb_qpathinfo(const char *fname
);
6950 void nb_qfileinfo(int fnum
);
6951 void nb_qfsinfo(int level
);
6952 void nb_findfirst(const char *mask
);
6953 void nb_flush(int fnum
);
6954 void nb_deltree(const char *dname
);
6955 void nb_cleanup(void);
6957 /* The following definitions come from torture/scanner.c */
6959 bool torture_trans2_scan(int dummy
);
6960 bool torture_nttrans_scan(int dummy
);
6962 /* The following definitions come from torture/torture.c */
6964 void start_timer(void);
6965 double end_timer(void);
6966 void *shm_setup(int size
);
6967 bool smbcli_parse_unc(const char *unc_name
, TALLOC_CTX
*mem_ctx
,
6968 char **hostname
, char **sharename
);
6969 void torture_open_connection_free_unclist(char **unc_list
);
6970 bool torture_open_connection(struct cli_state
**c
, int conn_index
);
6971 bool torture_cli_session_setup2(struct cli_state
*cli
, uint16
*new_vuid
);
6972 bool torture_close_connection(struct cli_state
*c
);
6973 bool torture_ioctl_test(int dummy
);
6974 bool torture_chkpath_test(int dummy
);
6976 /* The following definitions come from torture/utable.c */
6978 bool torture_utable(int dummy
);
6979 bool torture_casetable(int dummy
);
6981 /* The following definitions come from utils/passwd_util.c */
6983 char *stdin_new_passwd( void);
6984 char *get_pass( const char *prompt
, bool stdin_get
);
6986 /* The following definitions come from winbindd/idmap.c */
6988 bool idmap_is_offline(void);
6989 bool idmap_is_online(void);
6990 NTSTATUS
smb_register_idmap(int version
, const char *name
,
6991 struct idmap_methods
*methods
);
6992 NTSTATUS
smb_register_idmap_alloc(int version
, const char *name
,
6993 struct idmap_alloc_methods
*methods
);
6994 void idmap_close(void);
6995 NTSTATUS
idmap_init_cache(void);
6996 NTSTATUS
idmap_allocate_uid(struct unixid
*id
);
6997 NTSTATUS
idmap_allocate_gid(struct unixid
*id
);
6998 NTSTATUS
idmap_set_uid_hwm(struct unixid
*id
);
6999 NTSTATUS
idmap_set_gid_hwm(struct unixid
*id
);
7000 NTSTATUS
idmap_backends_unixid_to_sid(const char *domname
,
7002 NTSTATUS
idmap_backends_sid_to_unixid(const char *domname
,
7004 NTSTATUS
idmap_new_mapping(const struct dom_sid
*psid
, enum id_type type
,
7005 struct unixid
*pxid
);
7006 NTSTATUS
idmap_set_mapping(const struct id_map
*map
);
7007 NTSTATUS
idmap_remove_mapping(const struct id_map
*map
);
7009 /* The following definitions come from winbindd/idmap_cache.c */
7011 bool idmap_cache_find_sid2uid(const struct dom_sid
*sid
, uid_t
*puid
,
7013 bool idmap_cache_find_uid2sid(uid_t uid
, struct dom_sid
*sid
, bool *expired
);
7014 void idmap_cache_set_sid2uid(const struct dom_sid
*sid
, uid_t uid
);
7015 bool idmap_cache_find_sid2gid(const struct dom_sid
*sid
, gid_t
*pgid
,
7017 bool idmap_cache_find_gid2sid(gid_t gid
, struct dom_sid
*sid
, bool *expired
);
7018 void idmap_cache_set_sid2gid(const struct dom_sid
*sid
, gid_t gid
);
7021 /* The following definitions come from winbindd/idmap_nss.c */
7023 NTSTATUS
idmap_nss_init(void);
7025 /* The following definitions come from winbindd/idmap_passdb.c */
7027 NTSTATUS
idmap_passdb_init(void);
7029 /* The following definitions come from winbindd/idmap_tdb.c */
7031 bool idmap_tdb_tdb_close(TDB_CONTEXT
*tdbctx
);
7032 NTSTATUS
idmap_alloc_tdb_init(void);
7033 NTSTATUS
idmap_tdb_init(void);
7035 /* The following definitions come from winbindd/idmap_util.c */
7037 NTSTATUS
idmap_uid_to_sid(const char *domname
, DOM_SID
*sid
, uid_t uid
);
7038 NTSTATUS
idmap_gid_to_sid(const char *domname
, DOM_SID
*sid
, gid_t gid
);
7039 NTSTATUS
idmap_sid_to_uid(const char *dom_name
, DOM_SID
*sid
, uid_t
*uid
);
7040 NTSTATUS
idmap_sid_to_gid(const char *domname
, DOM_SID
*sid
, gid_t
*gid
);
7042 /* The following definitions come from winbindd/nss_info.c */
7045 /* The following definitions come from winbindd/nss_info_template.c */
7047 NTSTATUS
nss_info_template_init( void );
7049 /* The following definitions come from lib/avahi.c */
7051 struct AvahiPoll
*tevent_avahi_poll(TALLOC_CTX
*mem_ctx
,
7052 struct tevent_context
*ev
);
7054 /* The following definitions come from smbd/avahi_register.c */
7056 void *avahi_start_register(TALLOC_CTX
*mem_ctx
, struct tevent_context
*ev
,
7061 #endif /* _PROTO_H_ */